@charset "UTF-8";

/* index
--------------------------------------------------*/
.mv {
  position: relative;
  height: calc(100vh - 8rem - 6.4rem);
  max-height: 64rem;
}
.mv .img {
  width: 80%;
  height: 100%;
  margin-left: auto;
  border-radius: 1rem 0 0 1rem;
  overflow: hidden;
  z-index: 1;
}
.mv .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .txt {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 2;
}
.mv .txt h1 {
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  gap: .5rem;
}
.mv .txt h1 span {
  padding: 1rem;
  color: var(--ac);
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: .08em;
  background-color: #fff;
}
@media (min-width: 960px) {
  .mv {
    height: calc(100vh - 12rem * 2);
    max-height: 96rem;
  }
  .mv .img {
    width: calc(50% + 48rem);
  }
  .mv .txt h1 span {
    font-size: 4.8rem;
  }
}

.sec_news {
  padding-top: 6.4rem;
}
.sec_news header {
  margin-bottom: 2.4rem;
  padding-left: 2.4rem;
}
.sec_news .more {
  margin-top: 4.8rem;
}
.sec_news .more .c_btn {
  margin: 0 auto;
}
@media (min-width: 960px) {
  .sec_news {
    padding-top: 12.8rem;
  }
  .sec_news .c_inner {
    position: relative;
    display: flex;
  }
  .sec_news header {
    width: 48rem;
    min-height: calc((1.6rem* 1.6 + 49px)* 4);
    margin-bottom: 0;
    padding-left: 8rem;
  }
  .sec_news .c_post_list {
    flex: 1;
  }
  .sec_news .more {
    position: absolute;
    left: 8rem;
    bottom: 0;
  }
  .sec_news .more .c_btn {
    width: 30rem;
  }
  .sec_news .c_post_list .item a {
    flex-direction: row;
    gap: 0;
  }
  .sec_news .c_post_list .item a .info {
    width: 16rem;
  }
}

.sec_service {
  margin-top: 6.4rem;
  padding: 6.4rem 0;
  background-color: var(--bc);
}
.sec_service header {
  margin-bottom: 2.4rem;
}
.sec_service header .c_hdl_0201 {
  align-items: center;
}
.sec_service ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.sec_service ul li {
  width: calc((100% - 2.4rem) / 2);
}
.sec_service ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 4rem 0;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 .5rem 1.5rem rgb(198 198 198 / 30%);
}
.sec_service ul li a .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: .2rem solid var(--ac);
}
.sec_service ul li a .img img {
  width: 4rem;
  height: 4rem;
}
.sec_service ul li a .txt {
  color: var(--fc);
  font-weight: 600;
  line-height: 2;
}
.sec_service .more {
  margin-top: 4.8rem;
}
.sec_service .more .c_btn {
  margin: 0 auto;
}
@media (min-width: 960px) {
  .sec_service {
    margin-top: 12.8rem;
    padding: 12.8rem 0;
  }
  .sec_service header {
    margin-bottom: 4.8rem;
  }
  .sec_service ul {
    gap: 4.8rem;
    width: 96rem;
    margin: 0 auto;
  }
  .sec_service ul li {
    width: 28.8rem;
  }
  .sec_service ul li a {
    /* transition: opacity .4s var(--tf); */
    transition: scale .4s var(--tf);
  }
  .sec_service ul li a:hover {
    /* opacity: .6; */
    scale: 1.1;
  }
  .sec_service ul li a .img {
    width: 16rem;
    height: 16rem;
  }
  .sec_service ul li a .img img {
    width: 8rem;
    height: 8rem;
  }
  .sec_service ul li a .txt {
    font-size: 2rem;
  }
  .sec_service .more {
    margin-top: 6.4rem;
  }
}

.sec_greeting {
  position: relative;
  margin-top: 6.4rem;
  padding-bottom: 6.4rem;
}
.sec_greeting .c_inner::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75%;
  height: calc((100% - 6.4rem)* .8);
  border-radius: 0 1rem 1rem 0;
  background-color: var(--bc);
}
.sec_greeting .img {
  border-radius: 1rem;
  overflow: hidden;
}
.sec_greeting .img img {
  width: 100%;
}
.sec_greeting .txt {
  margin-top: 4.8rem;
}
.sec_greeting .txt header {
  margin-left: 2.4rem;
  margin-bottom: 2.4rem;
}
.sec_greeting .txt p:not([class]) {
  line-height: 2;
}
.sec_greeting .txt .more {
  margin-top: 4.8rem;
}
.sec_greeting .txt .more .c_btn {
  margin: 0 auto;
}
@media (min-width: 960px) {
  .sec_greeting {
    margin-top: 12.8rem;
    padding-bottom: 12.8rem;
  }
  .sec_greeting .c_inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .sec_greeting .c_inner::before {
    bottom: 0;
    width: calc(50% + 70rem);
    height: calc(100% - 12.8rem);
  }
  .sec_greeting .img {
    width: 60rem;
  }
  .sec_greeting .txt {
    flex: 1;
    margin-top: 0;
    padding: 0 8rem;
  }
  .sec_greeting .txt header {
    margin-left: 0;
  }
  .sec_greeting .txt .more .c_btn {
    margin: 0;
  }
}

.sec_recruit {
  position: relative;
  margin-top: 6.4rem;
  padding-bottom: 6.4rem;
}
.sec_recruit .c_inner::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  height: calc((100% - 6.4rem)* .8);
  border-radius: 1rem 0 0 1rem;
  background-color: var(--bc);
}
.sec_recruit .img {
  border-radius: 1rem;
  overflow: hidden;
}
.sec_recruit .img img {
  width: 100%;
}
.sec_recruit .txt {
  margin-top: 4.8rem;
}
.sec_recruit .txt header {
  margin-left: 2.4rem;
  margin-bottom: 2.4rem;
}
.sec_recruit .txt p:not([class]) {
  line-height: 2;
}
.sec_recruit .txt .more {
  margin-top: 4.8rem;
}
.sec_recruit .txt .more .c_btn {
  margin: 0 auto;
}
@media (min-width: 960px) {
  .sec_recruit {
    margin-top: 12.8rem;
    padding-bottom: 12.8rem;
  }
  .sec_recruit .c_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .sec_recruit .c_inner::before {
    bottom: 0;
    width: calc(50% + 70rem);
    height: calc(100% - 12.8rem);
  }
  .sec_recruit .img {
    width: 60rem;
  }
  .sec_recruit .txt {
    flex: 1;
    margin-top: 0;
    padding: 0 8rem;
  }
  .sec_recruit .txt header {
    margin-left: 0;
  }
  .sec_recruit .txt .more .c_btn {
    margin: 0;
  }
}

/* service
--------------------------------------------------*/
.sec_service_header header .c_hdl_0201 {
  align-items: center;
  margin-bottom: 2.4rem;
}
.sec_service_header header ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.6rem;
}
.sec_service_header header ul li .c_btn {
  margin: 0 auto;
}
.sec_service_content {
  margin-top: 6.4rem;
}
.sec_service_content h3 {
  margin-bottom: 4rem;
  padding: 1.6rem 0;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  border-radius: 1rem;
  background-color: var(--ac);
}
.sec_service_content h3 small {
  display: block;
  font-size: .8em;
}
.sec_service_content .list {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
.sec_service_content .list .item .box {
  display: flex;
  flex-direction: column;
  gap: 2.4rem 0;
}
.sec_service_content .list .item .box .img img {
  width: 100%;
  border-radius: 1rem;
}
.sec_service_content .list .item .box .txt h4 {
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: 700;
}
.sec_service_content .list .item .box .txt p {
  line-height: 2;
}
@media (min-width: 960px) {
  .sec_service_header header .c_hdl_0201 {
    margin-bottom: 4.8rem;
  }
  .sec_service_header header ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .sec_service_header header ul li .c_btn {
    min-width: 30rem;
  }
  .sec_service_content {
    margin-top: 9.6rem;
  }
  .sec_service_content h3 {
    margin-bottom: 6.4rem;
    font-size: 2.4rem;
  }
  .sec_service_content .list {
    gap: 9.6rem;
  }
  .sec_service_content .list .item .box {
    flex-direction: row;
  }
  .sec_service_content .list .item .box .txt {
    flex: 1;
    padding: 4rem;
  }
  .sec_service_content .list .item .box .img {
    width: 48rem;
  }
}

/* clinic
--------------------------------------------------*/
.sec_clinic_concept {
  position: relative;
  padding-bottom: 6.4rem;
}
.sec_clinic_concept .c_inner::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  height: calc((100% - 6.4rem)* .8);
  border-radius: 0 1rem 1rem 0;
  background-color: var(--bc);
}
.sec_clinic_concept .img {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.sec_clinic_concept .img img {
  width: 100%;
}
.sec_clinic_concept .txt {
  position: relative;
  margin-top: 4.8rem;
}
.sec_clinic_concept .txt header {
  margin-left: 2.4rem;
  margin-bottom: 2.4rem;
}
.sec_clinic_concept .txt p:not([class]) {
  line-height: 2;
}
.sec_clinic_concept .txt .more {
  margin-top: 4.8rem;
}
.sec_clinic_concept .txt .more .c_btn {
  margin: 0 auto;
}
@media (min-width: 960px) {
  .sec_clinic_concept {
    padding-bottom: 12.8rem;
  }
  .sec_clinic_concept .c_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .sec_clinic_concept .c_inner::before {
    bottom: 0;
    width: calc(50% + 70rem);
    height: calc(100% - 12.8rem);
  }
  .sec_clinic_concept .img {
    width: 60rem;
  }
  .sec_clinic_concept .txt {
    flex: 1;
    margin-top: 0;
    padding: 0 8rem;
  }
  .sec_clinic_concept .txt header {
    margin-left: 0;
  }
  .sec_clinic_concept .txt .more .c_btn {
    margin: 0;
  }
}

.sec_clinic_facilities {
  margin-top: 6.4rem;
}
.sec_clinic_facilities header .c_hdl_0201 {
  align-items: center;
  margin-bottom: 2.4rem;
}
.sec_clinic_facilities .list {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.sec_clinic_facilities .list .item {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.sec_clinic_facilities .list .item .img img {
  width: 100%;
  border-radius: 1rem;
}
.sec_clinic_facilities .list .item .txt h3 {
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.sec_clinic_facilities .list .item .txt p {
  line-height: 2;
}
@media (min-width: 960px) {
  .sec_clinic_facilities {
    margin-top: 12.8rem;
  }
  .sec_clinic_facilities header .c_hdl_0201 {
    margin-bottom: 4.8rem;
  }
  .sec_clinic_facilities .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6.4rem;
  }
  .sec_clinic_facilities .list .item .txt h3 {
    font-size: 2.4rem;
  }
}

/* staff
--------------------------------------------------*/
.sec_staff_doctor header {
  margin-bottom: 2.4rem;
}
.sec_staff_doctor header .c_hdl_0201 {
  align-items: center;
}
.sec_staff_doctor .box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.sec_staff_doctor .box .img img {
  width: 100%;
  border-radius: 1rem;
}
.sec_staff_doctor .box .name {
  display: flex;
  align-items: flex-end;
  gap: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 3.2rem;
  padding-bottom: 1.6rem;
  border-bottom: .3rem dotted var(--ac);
}
.sec_staff_doctor .box .name h3 {
  font-weight: 600;
  line-height: 2;
}
/* .sec_staff_doctor .box .name ruby {
  position: relative;
}
.sec_staff_doctor .box .name ruby rb {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
}
.sec_staff_doctor .box .name ruby rt {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  font-weight: 600;
  white-space: nowrap;
} */
.sec_staff_doctor .box .name ruby {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
}
.sec_staff_doctor .box .name ruby rt {
  font-size: 1.4rem;
  font-weight: 600;
}
.sec_staff_doctor .box p {
  line-height: 2;
}
.biograph {
  margin-top: 6.4rem;
  padding: 2.4rem;
  border-radius: 1rem;
  background-color: #FAF3F3;
}
.biograph h3 {
  color: var(--ac);
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 2;
}
.biograph ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 2.4rem;
  border-radius: 1rem;
  background-color: #fff;
}
.biograph ul li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
}
.biograph ul li::before {
  content: '';
  display: block;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background-color: var(--ac);
}
.biograph ul li .date {
  white-space: nowrap;
}
.biograph ul li .desc {
  line-height: 1.6;
}
@media (min-width: 960px) {
  .sec_staff_doctor header {
    margin-bottom: 4.8rem;
  }
  .sec_staff_doctor .box {
    flex-direction: row;
    gap: 6.4rem;
  }
  .sec_staff_doctor .box .img {
    width: 48rem;
  }
  .sec_staff_doctor .box .txt {
    flex: 1;
  }
  .sec_staff_doctor .box .name {
    margin-top: 2.4rem;
  }
  .sec_staff_doctor .box .name h3 {
    font-size: 2.4rem;
  }
  /* .sec_staff_doctor .box .name ruby rb {
    font-size: 3.2rem;
  } */
  .sec_staff_doctor .box .name ruby {
    font-size: 3.2rem;
  }
  .sec_staff_doctor .box .name ruby rt {
    font-size: 1.6rem;
  }
  .biograph {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 0;
  }
  .biograph h3 {
    width: 40rem;
  }
  .biograph ul {
    flex: 1;
    gap: 0;
    padding: 2.4rem 4rem;
  }
  .biograph ul li .desc {
    line-height: 2;
  }
}

/* recruit
--------------------------------------------------*/
.sec_recruit_guideline header {
  margin-bottom: 6.4rem;
}
.sec_recruit_guideline header .c_hdl_0201 {
  align-items: center;
  margin-bottom: 2.4rem;
}
.sec_recruit_guideline header ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 2.4rem;
}
.sec_recruit_guideline header ul li .c_btn {
  margin: 0 auto;
}
.sec_recruit_guideline .list {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
.sec_recruit_guideline .list .item h3 {
  margin-bottom: 4rem;
  padding-left: 2rem;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  border-left: 1rem solid var(--ac);
}
.sec_recruit_guideline .note {
  padding: 1rem 2rem;
  line-height: 1.6;
  border: .1rem solid #D6CECE;
}
.sec_recruit_guideline .note a {
    color: #37a;
    text-decoration: underline;
}
@media (min-width: 960px) {
  .sec_recruit_guideline header {
    margin-bottom: 9.6rem;
  }
  .sec_recruit_guideline header .c_hdl_0201 {
    margin-bottom: 4.8rem;
  }
  .sec_recruit_guideline header ul {
    display: flex;
    justify-content: center;
  }
  .sec_recruit_guideline header ul li .c_btn {
    min-width: 30rem;
  }
  .sec_recruit_guideline .list .item h3 {
    font-size: 3.2rem;
  }
  .sec_recruit_guideline .note {
    padding: 2rem 3rem;
    text-align: center;
  }
	.sec_recruit_guideline .note a {
		transition: opacity .4s var(--tf);
	}
	.sec_recruit_guideline .note a:hover {
		opacity: .6;
	}
}

/* access
--------------------------------------------------*/
.sec_access_map header {
  margin-bottom: 2.4rem;
}
.sec_access_map header .c_hdl_0201 {
  align-items: center;
}
.sec_access_map .map {
  position: relative;
  width: 100%;
}
.sec_access_map .map::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.sec_access_map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .sec_access_map header {
    margin-bottom: 4.8rem;
  }
  .sec_access_map header .c_hdl_0201 {
    margin-bottom: 4.8rem;
  }
  .sec_access_map .map::before {
    padding-top: 46rem;
  }
}

.sec_access_info {
  margin-top: 6.4rem;
}
.sec_access_info header {
  margin-bottom: 2.4rem;
}
.sec_access_info header .c_hdl_0201 {
  align-items: center;
}
.sec_access_info table tr td ul li {
  list-style-type: disc;
  margin-left: 1em;
  margin-bottom: .5em;
}
.sec_access_info table tr td a {
  color: #37a;
  text-decoration: underline;
}
@media (min-width: 960px) {
  .sec_access_info {
    margin-top: 9.6rem;
  }
  .sec_access_info header {
    margin-bottom: 4.8rem;
  }
  .sec_access_info header .c_hdl_0201 {
    margin-bottom: 4.8rem;
  }
  .sec_access_info table tr td a {
		transition: opacity .4s var(--tf);
	}
	.sec_access_info table tr td a:hover {
		opacity: .6;
	}
}

/* privacypolicy
--------------------------------------------------*/
.p_content.privacypolicy .inner h5 {
  margin: 2.4rem 0;
  font-weight: 700;
  line-height: 2;
}
.p_content.privacypolicy .inner span {
  display: block;
  padding-left: 1em;
}
@media (min-width: 960px) {
  .p_content.privacypolicy .inner {
    padding-left: 4rem;
  }
}

/* contact
--------------------------------------------------*/
.form .list {
  margin-top: 3.5em;
  padding: 2em 0;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
}
.form .list dt {
  float: left;
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-bottom: 1.6em;
}
.form .list dt .lbl {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.form .list dt .sub {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.form .list dt .sub.required {
  background-color: #C55;
}
.form .list dt .sub.any {
  background-color: #999;
}
.form .list dd:not(:last-child) {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #E8E8E8;
}
.form input:not([type=checkbox],[class=c_btn]),
.form select,
.form textarea {
  width: 100%;
  padding: 16px;
  font-size: 1.6rem;
  border: 1px solid #e2e2e2;
  background-color: #f9f9f9;
  border-radius: 3px;
}
.form .check {
  display: flex;
  justify-content: center;
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: .08em;
}
.form .check input[type=checkbox] {
  display: none;
}
.form .check input[type=checkbox] + span {
	display: flex;
	position: relative;
	padding-left: 4rem;
}
.form .check input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid #999;
	transition: .2s linear;
  transform: translateY(-50%);
}
.form .check input[type=checkbox]:checked + span::before {
	top: 50%;
	left: .5rem;
	width: 1.6rem;
	height: 2.4rem;
	border-top: 0;
	border-left: 0;
	border-right: 5px solid var(--ac);
	border-bottom: 5px solid var(--ac);
  transform: translateY(-60%) rotate(45deg);
}
.form .btn {
  margin-top: 3.2rem;
  text-align: center;
}
.form .btn input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 33rem;
  padding: 2.4rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  border: none;
  border-radius: 5rem;
  background-color: var(--ac);
  cursor: pointer;
}
.form .btn input:disabled {
  color: #aaa;
  background-color: #e8e8e8;
}
.form .wpcf7-not-valid-tip {
  margin-top: .8em;
}
.form .wpcf7-list-item {
  margin: 0;
}
.form .wpcf7-spinner {
  margin: 0 !important;
  width: 0 !important;
}
.wpcf7 form .wpcf7-response-output {
  margin: 4rem 0 0 !important;
  padding: 2rem !important;
  line-height: 1.6;
}
.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}
@media (min-width: 960px) {
  .form .list dt {
    width: 25%;
    margin-top: 1em;
    padding-right: 5%;
  }
  .form .list dd {
    padding-left: 25%;
  }
  .form .btn input {
    width: 36rem;
    transition: background-color .3s var(--tf);
  }
  .form .btn input:not([disabled]):hover {
    background-color: var(--sc);
  }
  .wpcf7 form .wpcf7-response-output {
    text-align: center;
  }
}

/* thanks
--------------------------------------------------*/
.thanks.more {
  margin-top: 4.8rem;
}
.thanks.more .c_btn {
  margin: 0 auto;
}
@media (min-width: 960px) {
  .thanks.more {
    margin-top: 6.4rem;
  }
}

/* post
--------------------------------------------------*/
.p_cat h2 {
  margin-bottom: 1.6rem;
  padding: 1.6rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  border-radius: 1rem;
  background-color: var(--ac);
}
.p_cat ul li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem 2.4rem;
}
.p_cat ul li a::before {
  content: '';
  display: block;
  width: .8rem;
  height: .2rem;
  background-color: #BCBCBC;
}
.p_cat ul li a span {
  color: var(--fc);
  font-size: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 960px) {
  .p_cat ul li a {
    transition: opacity .4s var(--tf);
  }
  .p_cat ul li a:hover {
    opacity: .6;
  }
}

.navigation {
  margin-top: 4rem;
}
.navigation .nav-links {
  display: flex;
  column-gap: 1.6rem;
  justify-content: center;
}
.navigation .nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  color: #333;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border-radius: 1rem;
  background-color: var(--bc);
}
.navigation .nav-links .page-numbers.current {
  color: #fff;
  background-color: var(--ac);
}
.navigation .nav-links .page-numbers.dots {
  background-color: inherit;
}
.navigation .nav-links .page-numbers.prev,
.navigation .nav-links .page-numbers.next {
  display: block;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.navigation .nav-links .page-numbers.prev::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-left: .25rem solid var(--fc);
  border-bottom: .25rem solid var(--fc);
  transform: translate(-40%, -50%) rotate(45deg);
}
.navigation .nav-links .page-numbers.next::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-top: .25rem solid var(--fc);
  border-right: .25rem solid var(--fc);
  transform: translate(-60%, -50%) rotate(45deg);
}
@media (min-width: 960px) {
  .navigation .nav-links .page-numbers {
    width: 3em;
    height: 3em;
    transition: color .4s var(--tf), background-color .4s var(--tf);
  }
  .navigation .nav-links .page-numbers:hover {
    color: #fff;
    background-color: var(--ac);
  }
  .navigation .nav-links .page-numbers.prev:hover::after,
  .navigation .nav-links .page-numbers.next:hover::after {
    border-color: #fff;
  }
}

/* p_header
--------------------------------------------------*/
.p_header {
  margin-bottom: 4.8rem;
}
.p_header .info {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.p_header .cat {
  display: inline-block;
  padding: 0 1.6rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.6;
  border-radius: .4rem;
  background-color: var(--ac);
}
.p_header .date {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
}
.p_header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .08em;
}
.p_thumb {
  margin-bottom: 3.2rem;
}
@media (min-width: 960px) {
  .p_header {
    margin-bottom: 6.4rem;
  }
  .p_header h1 {
    font-size: 3.2rem;
  }
  .p_thumb {
    margin-bottom: 6.4rem;
  }
}

/* p_content
--------------------------------------------------*/
.p_content > *:first-child {
  margin-top: 0;
}
.p_content > *:last-child {
  margin-bottom: 0;
}
.p_content h2 {
  position: relative;
  margin: 4.8rem 0 2.4rem;
  padding: 1.6rem 2.4rem;
  color: var(--ac);
  font-size: clamp(2rem, 4.83091vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  border-radius: 1rem;
  background-color: #F7EFEF;
}
.p_content h3 {
  margin: 4rem 0 2.4rem;
	padding-left: 1.5rem;
  font-size: clamp(1.8rem, 4.34782vw, 2rem);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .08em;
	border-left: 1rem solid var(--ac);
}
.p_content h4 {
	margin: 3.2rem 0 2.4rem;
	font-weight: 700;
	line-height: 1.6;
}
.p_content a {
	color: #37a;
	text-decoration: underline;
}
.p_content a:not(.noimg)[target="_blank"]::after {
	content: '';
	display: inline-block;
	margin-left: .4em;
	margin-right: .6em;
	width: .8em;
	height: .8em;
	background-image: url(../img/icon-link.svg);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}
.p_content p {
  margin: 2.4rem 0;
  line-height: 2;
}
.p_content strong {
	font-weight: 700;
}
.p_content em {
	font-style: italic;
}
.p_content sup {
	font-size: .8em;
  vertical-align: super;
}
.p_content sub {
	font-size: .8em;
  vertical-align: sub;
}
.p_content s {
	text-decoration: line-through;
}
.p_content ul {
	list-style: disc;
}
.p_content ol {
	list-style: decimal;
}
.p_content ul,
.p_content ol {
  margin: 2.4rem 0;
	padding-left: 1.7em;
}
.p_content ul li,
.p_content ol li {
  margin: 1rem 0;
  line-height: 1.6;
}
.p_content .wp-block-image {
  margin: 2.4rem 0;
}
.p_content figcaption {
  margin-top: 1rem;
	color: #888;
	line-height: 1.2;
	letter-spacing: .08em;
	text-align: center;
}
.p_content .wp-block-code {
  margin: 2.4rem 0;
	padding: 3rem;
	background-color: #f9f9f9;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
}
.p_content .wp-block-code code {
	font-family: monospace;
	line-height: 2.2;
	letter-spacing: .08em;
	text-wrap: nowrap;
	overflow: auto;
}
.p_content blockquote {
  margin: 2.4rem 0;
	position: relative;
	padding: 4rem 3rem;
	border: 1px solid #e8e8e8;
	background-color: #f9f9f9;
}
.p_content blockquote::before,
.p_content blockquote::after {
	position: absolute;
	content: '"';
	font-size: 3.2rem;
	font-weight: 700;
	color: #d3d3d3;
}
.p_content blockquote::before {
	top: 1rem;
	left: 1rem;
}
.p_content blockquote::after {
	right: 1rem;
	bottom: 1rem;
	transform: rotate(180deg);
}
.p_content blockquote p img {
	width: 100% !important;
	height: 100%;
	object-fit: contain;
}
.p_content blockquote cite {
  display: block;
  margin-top: 1em;
  color: #888;
  line-height: 1.6;
  text-align: right;
  word-break: break-all;
}
.p_content blockquote .wp-block-image:first-child {
	margin-top: 0 !important;
}
.p_content .wp-block-table {
  margin: 2.4rem 0;
	overflow-x: auto;
	overflow-y: hidden;
	white-space: nowrap;
}
.p_content .wp-block-table table {
	width: 100%;
}
.p_content .wp-block-table th,
.p_content .wp-block-table td {
	padding: 1em;
	line-height: 2;
	letter-spacing: .08em;
	border: 1px solid #e8e8e8;
}
.p_content .wp-block-gallery {
	position: relative;
	margin: 2.4rem 0;
}
.p_content .instagram-media {
	margin: 3em auto 0 !important;
}
@media (min-width: 960px) {
	.p_content a {
		transition: opacity .4s var(--tf);
	}
	.p_content a:hover {
		opacity: .6;
	}
}

/* p_pagination
--------------------------------------------------*/
.p_pagination {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 4rem;
}
.p_pagination .next a, .p_pagination .prev a, .p_pagination .back a {
  color: inherit;
}
.p_pagination .next span, .p_pagination .prev span, .p_pagination .back span {
  line-height: 2;
}
.p_pagination .next a, .p_pagination .prev a {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1.6rem;
}
.p_pagination .next a::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #bcbcbc;
  border-right: 2px solid #bcbcbc;
  transform: rotate(225deg);
}
.p_pagination .prev a::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #bcbcbc;
  border-right: 2px solid #bcbcbc;
  transform: rotate(45deg);
}
@media (min-width: 960px) {
  .p_pagination {
    align-items: center;
    justify-content: center;
    gap: 9.6rem;
  }
  .p_pagination .next {
    flex: 1;
    justify-items: flex-end;
  }
  .p_pagination .prev {
    flex: 1;
    justify-items: flex-start;
  }
  .p_pagination a {
    transition: opacity .4s var(--tf);
  }
  .p_pagination a:hover {
    opacity: .6;
  }
}

.recaptcha_area {
  margin-top: 6.4rem;
  text-align: center;
}
.recaptcha_area p {
  display: inline-block;
  text-align: left;
}
.grecaptcha-badge {
  bottom: 8rem !important;
}
@media (min-width: 960px) {
  .grecaptcha-badge {
    bottom: 10rem !important;
  }
}