@charset "UTF-8";
main {
  display: block;
}

div,
span,
p,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
img {
  margin: 0;
  padding: 0;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

a {
  word-break: break-all;
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

img {
  display: block;
  width: 100%;
  vertical-align: top;
}

table {
  border-spacing: 0;
}

table,
tr,
th,
td {
  border-collapse: collapse;
}

dt {
  font-weight: 500;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #343434;
}
@media screen and (max-width: 960px) {
  body {
    font-size: 1.6rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: #0724a4;
}

a {
  color: #0724a4;
}
a.hover-underline {
  position: relative;
}
a.hover-underline:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0724a4;
  transition: all 0.3s ease;
}
a.hover-underline:hover {
  transition: all 0.3s ease;
}
a.hover-underline:hover::before {
  width: 100%;
}
a.hover-opacity {
  transition: all 0.3s ease;
  opacity: 1;
}
a.hover-opacity:hover {
  opacity: 0.6;
}

.wp-block-separator {
  border-top: 1px solid;
}

.title {
  font-size: 2.8rem;
  color: #0724a4;
  line-height: 1;
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.title--en {
  color: #9ca7d5;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  margin-top: 12px;
  display: block;
}
@media screen and (max-width: 960px) {
  .title--en {
    font-size: 10px;
    margin-top: 6px;
  }
}

.text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 960px) {
  .text {
    line-height: 1.8;
  }
}

.flex {
  display: flex;
}

.lineSides {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 12px;
  padding-right: 12px;
}
.lineSides::before, .lineSides::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background-color: #9ca7d5;
}
.lineSides::before {
  left: 0;
}
.lineSides::after {
  right: 0;
}

.line-left {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 12px;
}
.line-left::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 1px;
  background-color: #0724a4;
  border-radius: 100px;
  left: 0;
}

.line-left-long {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 40px;
}
.line-left-long::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 1px;
  background-color: #c1c7e2;
  border-radius: 100px;
  left: 0;
}

.grecaptcha-badge {
  visibility: hidden;
}

.pc {
  display: block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .br_sp {
    display: block;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width: 960px) {
  .br_pc {
    display: none;
  }
}

.js-animate {
  opacity: 0;
}

.js-animate.is-animated {
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: var(--delay, 0s);
}

.js-animate.is-animated[data-animation=fadeIn] {
  animation-name: fadeIn;
}

.js-animate.is-animated[data-animation=fadeInFromTop] {
  animation-name: fadeInFromTop;
}

.js-animate.is-animated[data-animation=fadeInFromLeft] {
  animation-name: fadeInFromLeft;
}

.js-animate.is-animated[data-animation=fadeInBlur] {
  animation-duration: 1.5s;
  animation-name: fadeInBlur;
}

.js-animate.is-animated[data-animation=clipRight] {
  animation-name: clipRight;
  animation-timing-function: ease-in-out;
}

.js-animate.is-animated[data-animation=clipLeft] {
  animation-name: clipLeft;
  animation-timing-function: ease-in-out;
}

.js-animate.is-animated[data-animation=slideUpIcon] {
  transform: translateY(150%);
  animation-name: slideUpIcon;
  animation-duration: 0.8s;
  animation-timing-function: ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInBlur {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes slideUpIcon {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes clipRight {
  from {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 1;
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
@keyframes clipLeft {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 1;
  }
  to {
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    opacity: 1;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  max-height: 106px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .header {
    transition: all 0.3s ease;
    max-height: auto;
  }
}
.header__inner {
  justify-content: space-between;
  align-items: center;
  margin-left: 3.889%;
}
@media screen and (max-width: 960px) {
  .header__inner {
    margin-left: 5%;
    margin-right: 5%;
  }
}
.header__logo {
  font-size: 2.8rem;
  font-weight: 500;
  color: #0724a4;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  .header__logo {
    font-size: 1.8rem;
  }
}
.header__logo span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .header__logo span {
    font-size: 0.8rem;
  }
}
.header__nav {
  gap: 3.96%;
  align-items: center;
  justify-content: flex-end;
  width: 73%;
}
@media screen and (max-width: 960px) {
  .header__nav {
    display: none;
  }
}
.header__nav-item {
  font-size: clamp(0.7rem, 0.332rem + 1.09vw, 1.8rem);
  font-weight: 400;
  color: #0724a4;
  line-height: 1.9;
}
.header__nav-item .current::before {
  width: 100%;
}
.header__nav-item:last-of-type {
  width: 19.796%;
}
.header__nav-item:last-of-type a {
  width: 100%;
  padding: 32px 0;
  background-color: #0724a4;
  border-bottom-left-radius: 8px;
}
.header__nav-item:last-of-type a:before {
  display: none;
}
.header__nav-item:last-of-type .button-online {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header__nav-item:last-of-type .button-online .online-icon {
  width: 16%;
  height: auto;
  aspect-ratio: 1/1;
}
.header__nav-sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .header__nav-sp {
    display: block;
    position: fixed;
    right: -100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    transition: 0.3s ease;
  }
  .header__nav-sp.active {
    right: 0;
    transition: 0.3s ease;
  }
}
.header__hamburger {
  display: none;
}
@media screen and (max-width: 960px) {
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }
  .header__hamburger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
  }
  .header__hamburger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .header__hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__hamburger.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@media screen and (max-width: 960px) {
  .header .header__nav-sp {
    padding: 20px;
    margin-top: 59px;
    background: #e8edf5;
  }
  .header .header__nav-item {
    font-size: 18px;
    border-bottom: 1px solid #c1c7e2;
  }
  .header .header__nav-item a {
    display: block;
    width: 100%;
    padding: 10px;
  }
  .header .header__nav-item:last-of-type {
    width: 100%;
    border-bottom: none !important;
    margin-top: 10px;
  }
  .header .header__nav-item:last-of-type a {
    border-radius: 10px;
    padding: 20px 0;
  }
}
.header__sp-right {
  display: none;
}
@media screen and (max-width: 960px) {
  .header__sp-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16%;
    gap: 32px;
    flex-basis: 30%;
  }
}
.header__button-online {
  display: none;
}
@media screen and (max-width: 960px) {
  .header__button-online {
    color: #fff;
    background-color: #0724a4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 10px;
    padding: 20px 0;
    min-width: 115px;
  }
  .header__button-online .online-icon {
    width: 16%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.footer__top {
  background-color: #f2f5fe;
}
.footer__top .footer__inner {
  padding-top: 56px;
  padding-bottom: 40px;
  margin-bottom: 0;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .footer__top .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.footer__top .footer__box {
  gap: 20px;
  width: 71%;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
}
@media screen and (max-width: 960px) {
  .footer__top .footer__box {
    width: 100%;
  }
}
.footer__top .footer__box-wrapper {
  background-color: #fff;
  width: 42.958%;
  padding: 4.695% 0 4.344%;
  border: 1px solid #c1c7e2;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .footer__top .footer__box-wrapper {
    width: 100%;
    padding: 8% 0;
  }
}
.footer__top .footer__box-text {
  color: #0724a4;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  -webkit-text-decoration: underline 1px solid #c1c7e2;
          text-decoration: underline 1px solid #c1c7e2;
  text-underline-offset: 6px;
}
.footer__top .footer__box-text br {
  display: none;
}
@media screen and (max-width: 1010px) {
  .footer__top .footer__box-text br {
    display: inline;
  }
}
@media screen and (max-width: 960px) {
  .footer__top .footer__box-text br {
    display: none;
  }
}
.footer__top .footer__box-link {
  display: block;
  margin: 25px auto 0;
  width: 60.99%;
}
@media screen and (max-width: 1010px) {
  .footer__top .footer__box-link {
    width: 70%;
    max-width: 280px;
  }
}
@media screen and (max-width: 960px) {
  .footer__top .footer__box-link {
    width: 80%;
    margin-top: 10px;
  }
}
.footer__top .footer__box-tel {
  font-size: 3.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  margin-top: 30px;
  display: block;
}
@media screen and (max-width: 1010px) {
  .footer__top .footer__box-tel {
    font-size: 2.4rem;
    margin-top: 54px;
  }
}
@media screen and (max-width: 960px) {
  .footer__top .footer__box-tel {
    font-size: 3rem;
    margin-top: 10px;
  }
  .footer__top .footer__box-tel span {
    font-size: 2rem;
  }
}
.footer__top .footer__box-tel span {
  font-size: 1.7rem;
}
.footer__top .footer__box-buttons {
  width: 100%;
  justify-content: flex-end;
  gap: 16px;
}
@media screen and (max-width: 960px) {
  .footer__top .footer__box-buttons {
    justify-content: center;
    flex-direction: column;
  }
}
.footer__top .footer__box-button {
  width: 249px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 960px) {
  .footer__top .footer__box-button {
    width: 100%;
  }
}
.footer__top .footer__box-button-2 {
  width: 228px;
}
@media screen and (max-width: 960px) {
  .footer__top .footer__box-button-2 {
    width: 100%;
  }
}
.footer__bottom {
  position: relative;
}
.footer__bottom::before {
  display: block;
  content: "";
  background: url(../img/footer/decoration.png) no-repeat center center;
  background-size: contain;
  width: 27.362%;
  max-width: 394px;
  height: auto;
  aspect-ratio: 466/642;
  position: absolute;
  right: 0;
  top: -7%;
  z-index: -1;
}
.footer__bottom .footer__inner {
  padding-top: 80px;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
}
.footer__bottom .footer__titleEn {
  display: inline-block;
}
.footer__bottom .footer__box {
  width: 50.5%;
  width: auto;
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__box {
    width: 100%;
  }
}
.footer__bottom .footer__box:nth-of-type(2) {
  width: auto;
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__box:nth-of-type(2) {
    width: 100%;
  }
}
.footer__bottom .footer__address {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 24px;
}
.footer__bottom .footer__label {
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid #c1c7e2;
  border-bottom: 1px solid #c1c7e2;
  margin-top: 12px;
  color: #0724a4;
  font-family: "Noto Sans JP", sans-serif;
}
.footer__bottom .footer__time {
  margin-top: 32px;
}
.footer__bottom .footer__time-table {
  height: 100%;
  table-layout: auto;
  border-collapse: collapse;
  text-align: center;
  margin-top: 10px;
}
.footer__bottom .footer__time-tr {
  border-bottom: 1px solid #c1c7e2;
}
.footer__bottom .footer__time-tr:first-of-type {
  border-top: 1px solid #c1c7e2;
  border-bottom: 1px dotted #c1c7e2;
}
.footer__bottom .footer__time-th {
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #0724a4;
}
.footer__bottom .footer__time-th:first-of-type {
  padding: 0;
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__time-th {
    font-size: 14px;
  }
}
.footer__bottom .footer__time-td {
  font-size: 14px;
  color: #343434;
  padding: 12px 16px;
  border: none;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__time-td {
    padding: 10px 5px;
    font-size: 12px;
  }
}
.footer__bottom .footer__time-td-x {
  color: #0724a4;
}
.footer__bottom .footer__time-td sup {
  position: absolute;
  top: 5px;
  right: 10px;
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__time-td sup {
    top: 3px;
    right: 0px;
  }
}
.footer__bottom .footer__time-td:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  padding: 0;
}
.footer__bottom .footer__time-thead {
  border: none;
}
.footer__bottom .footer__time-thead .footer__time-tr {
  border-bottom: none;
}
.footer__bottom .footer__time-caption {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  caption-side: bottom;
  text-align: left;
  margin-top: 10px;
}
.footer__bottom .footer__nav {
  border-left: 1px solid #c1c7e2;
  padding: 10px 24px;
  gap: 40px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 1081px) {
  .footer__bottom .footer__nav {
    flex-direction: column;
    padding-right: 0;
    gap: 12px;
  }
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__nav {
    border-left: none;
    font-size: 1.3rem;
    padding: 0;
    margin-top: 20px;
    gap: 18px;
  }
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__nav-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer__bottom .footer__nav-item {
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__nav-item {
    margin-bottom: 18px;
    width: 50%;
  }
}
.footer__bottom .footer__nav-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .footer__bottom .footer__nav-item:nth-of-type(n + 3) {
    margin-bottom: 0;
  }
}
.footer__bottom .footer__copy {
  font-size: 1rem;
  color: #9ca7d5;
  margin-top: 20px;
  width: 100%;
  text-align: right;
}

.main {
  margin-top: 104px;
}
@media screen and (max-width: 960px) {
  .main {
    margin-top: 59px;
  }
}

.section__wrap {
  margin-top: 106px;
}
@media screen and (max-width: 960px) {
  .section__wrap {
    margin-top: 50px;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 140px;
}
@media screen and (max-width: 960px) {
  .container {
    margin-bottom: 80px;
  }
}

.c-button {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 18px;
  border: 1px solid #0724a4;
  border-radius: 100px;
  position: relative;
  text-align: center;
  line-height: 1;
}
.c-button__link {
  color: #0724a4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s ease;
}
.c-button__link:hover {
  background-color: #0724a4;
  color: #fff;
  transition: all 0.3s ease;
}
.c-button__link:hover::after {
  background: url(../img/common/arrow-right-white.svg) no-repeat;
  width: 18px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.c-button::after {
  content: "";
  background: url(../img/common/arrow-right.svg) no-repeat;
  width: 18px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.c-modal-button {
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  border: 1px solid #0724a4;
  border-radius: 100px;
  position: relative;
  text-align: center;
  width: 297px;
  margin-left: auto !important;
  margin-right: auto !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.c-modal-button__link {
  color: #0724a4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s ease;
}
.c-modal-button::after {
  content: "";
  background: url(../img/common/modal-plus.svg) no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-modal-button:hover {
  background-color: #0724a4;
  transition: all 0.3s ease;
}
.c-modal-button:hover .c-modal-button__link {
  color: #fff;
}
.c-modal-button:hover::after {
  background: url(../img/common/modal-plus-white.svg) no-repeat;
}

.c-list {
  background-color: #f2f5fe;
  padding: 32px;
  padding-right: 64px;
  padding-left: 30px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .c-list {
    padding: 16px;
    width: 100%;
  }
}
.c-list__item {
  margin-bottom: 8px;
  text-indent: 0;
  position: relative;
  padding-left: 24px;
}
.c-list__item:last-of-type {
  margin-bottom: 0;
}
.c-list__item::before {
  content: "";
  background: url(../img/common/check-circle.svg) no-repeat;
  display: inline-block;
  width: 26px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 2px;
}
@media screen and (max-width: 960px) {
  .c-list__item::before {
    width: 20px;
    height: 20px;
    background-size: contain;
    top: 5px;
  }
}

.c-column-list {
  background-color: #f2f5fe;
  padding: 24px 32px;
  border-radius: 4px;
  width: 90.142%;
  gap: 8px;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .c-column-list {
    padding: 16px;
    width: 100%;
  }
}
.c-column-list .c-list {
  padding: 0;
  padding-right: 0;
  padding-left: 0;
}
.c-column-list .c-list__item {
  margin-bottom: 8px;
  text-indent: 0;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 960px) {
  .c-column-list .c-list__item {
    padding-left: 24px;
  }
}
.c-column-list .c-list__item:last-of-type {
  margin-bottom: 0;
}
.c-column-list .c-list__item::before {
  content: "";
  background: url(../img/common/check-circle.svg) no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 2px;
}
@media screen and (max-width: 960px) {
  .c-column-list .c-list__item::before {
    width: 20px;
    height: 20px;
    background-size: contain;
    top: 0;
  }
}

.c-number-list {
  counter-reset: my-counter;
  padding: 24px 32px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .c-number-list {
    padding: 16px;
    width: 100%;
  }
}
.c-number-list__item {
  margin-bottom: 8px;
  text-indent: 0;
  position: relative;
  padding-left: 1.5em;
}
@media screen and (max-width: 960px) {
  .c-number-list__item {
    margin-bottom: 4px;
    padding-left: 1.2em;
  }
}
.c-number-list__item:last-of-type {
  margin-bottom: 0;
}
.c-number-list__item::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 18px;
  width: 18px;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 0;
}
@media screen and (max-width: 960px) {
  .c-number-list__item::before {
    height: 16px;
    width: 16px;
    font-size: 12px;
    top: 7px;
  }
}

.sidenav {
  width: 188px;
  position: relative;
  height: auto;
}
@media screen and (max-width: 960px) {
  .sidenav {
    display: none;
  }
}
.sidenav .lwptoc {
  position: sticky;
  top: 104px;
  margin: 0;
}
.sidenav .lwptoc_i {
  color: #0724a4;
  background: none;
  padding: 0;
  width: 100%;
}
.sidenav .lwptoc_header {
  margin-bottom: 20px;
  color: #9ca7d5;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.sidenav .lwptoc_item {
  line-height: 1;
  margin-top: 16px !important;
}
.sidenav .lwptoc_item:first-of-type {
  margin-top: 0;
}
.sidenav .lwptoc_item > a {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid #c1c7e2 !important;
  padding-right: 15px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s ease;
}
.sidenav .lwptoc_item > a::after {
  content: "";
  background: url(../img/common/sidenav-arrow-down.svg) no-repeat;
  position: absolute;
  top: 5px;
  right: 0;
  width: 12px;
  height: 12px;
}
.sidenav .lwptoc_item > a:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}
.sidenav .lwptoc_item a:visited {
  color: inherit;
}
.sidenav .lwptoc_item br {
  display: none;
}
.sidenav .lwptoc-notInherit .lwptoc_i div a {
  border-bottom: 1px solid #c1c7e2 !important;
}
.sidenav .lwptoc-light .lwptoc_i A {
  color: inherit;
}

.c-breadcrumbs {
  max-width: 1200px;
  width: 90%;
  margin: 24px auto 0;
  font-size: 12px;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .c-breadcrumbs {
    font-size: 10px;
    margin: 10px auto 0;
  }
}
.c-breadcrumbs__link {
  color: #9ca7d5;
  transition: all 0.3s ease;
}
.c-breadcrumbs__link:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}
.c-breadcrumbs__current {
  color: #0724a4;
}

.page__header {
  padding: 64px 0;
  border-bottom: 1px solid #ededed;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page__header {
    padding: 52px 0 26px;
  }
}
.page__header--title {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.page__header--title-ja {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}
@media screen and (max-width: 960px) {
  .page__header--title-ja {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.page__header--title-en {
  font-family: "Cormorant", serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #9ca7d5;
  display: block;
}
@media screen and (max-width: 960px) {
  .page__header--title-en {
    font-size: 10px;
  }
}
.page__header--excerpt {
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: right;
  color: #0724a4;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0;
}
@media screen and (max-width: 960px) {
  .page__header--excerpt {
    font-size: 12px;
    margin-top: 20px;
    text-align: left;
    line-height: 1.4;
  }
}
.page__header::after {
  content: "";
  width: 90%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(to right, #0724a4 88px, transparent 88px, transparent);
  position: absolute;
  bottom: -1.1px;
  left: 50%;
  transform: translateX(-50%);
}
.page__header-department {
  padding-bottom: 24px;
}

.c-factor-tune {
  align-items: stretch;
  font-family: "Noto Sans JP", sans-serif;
  color: #103770;
}
@media screen and (max-width: 960px) {
  .c-factor-tune {
    flex-direction: column;
  }
}
.c-factor-tune__wrap {
  width: 50%;
  border-radius: 24px;
  padding: 2%;
}
@media screen and (max-width: 960px) {
  .c-factor-tune__wrap {
    border-radius: 12px;
    width: 100%;
  }
}
.c-factor-tune__wrap.minus {
  background: #dff1f4;
}
.c-factor-tune__wrap.plus {
  background: #fffbda;
}
.c-factor-tune__title {
  text-align: center;
  margin: 7.25% 0px;
}
@media screen and (max-width: 960px) {
  .c-factor-tune__title {
    margin: 3% 0px;
  }
}
.c-factor-tune__description {
  text-align: center;
  font-size: 2rem;
  margin: 4.834% 0px 7.25% 0px;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .c-factor-tune__description {
    margin: 3% 0px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.c-factor-tune__description--text {
  text-align: center;
  font-size: 1.6rem;
  padding: 22px 0px 0px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .c-factor-tune__description--text {
    font-size: 1.3rem;
  }
}
.c-factor-tune__list--item {
  background: #fff;
  border: 1px solid #103770;
  list-style: none;
  padding: 3.865% 5.8%;
  margin: 10px 0px;
  border-radius: 4px;
}
@media screen and (max-width: 960px) {
  .c-factor-tune__list--item {
    padding: 2% 3%;
  }
}
.c-factor-tune__list--item-noimg .c-factor-tune__list--title {
  width: 100%;
}
.c-factor-tune__list--item-noimg .c-factor-tune__list--title img {
  width: 14.08%;
}
.c-factor-tune__list--title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-factor-tune__list--title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  gap: 10px;
  margin-bottom: 8px;
  font-weight: bold;
  width: 86%;
}
@media screen and (max-width: 960px) {
  .c-factor-tune__list--title {
    font-size: 1.5rem;
  }
}
.c-factor-tune__list--title img {
  width: 16%;
}
.c-factor-tune__list--illust {
  width: 12%;
}
.c-factor-tune__list--text {
  margin: 8px 0px;
}
.c-factor-tune__list--text .kome {
  font-size: 1rem;
}
.c-factor-tune__point {
  border: dashed 2px #103770;
  height: auto;
  border-radius: 72px;
  display: flex;
  padding: 6px 4px;
  align-items: center;
  background: #fff;
  margin: 20px 0px;
}
@media screen and (max-width: 960px) {
  .c-factor-tune__point {
    border-radius: 20px;
  }
}
.c-factor-tune__point--img {
  width: 23.526%;
}
.c-factor-tune__point--text {
  display: inline;
  font-size: 1.4rem;
  padding: 10px 15px;
  color: #000;
  line-height: 1.65;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.overlay.active {
  transition: opacity 0.3s ease;
  opacity: 1;
  pointer-events: all;
}

.factor-tune-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  padding: 64px 40px;
  background-color: #fff;
  width: 80.556%;
  max-width: 1080px;
  max-height: 95%;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal {
    width: 90%;
    max-width: initial;
    padding: 32px 16px;
  }
}
.factor-tune-modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__close {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}
.factor-tune-modal__header--img {
  width: 67.8%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__header--img {
    width: 100%;
  }
}
.factor-tune-modal__content {
  margin-top: 48px;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__content {
    margin-top: 24px;
  }
}
.factor-tune-modal__content--text {
  width: 90%;
  margin: 0 auto;
  font-weight: 500;
  color: #103770;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__content--text {
    width: 100%;
  }
}
.factor-tune-modal__policy--container {
  margin-top: 48px;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__policy--container {
    margin-top: 24px;
    flex-direction: column;
  }
}
.factor-tune-modal__policy--title {
  width: 100%;
  text-align: center;
  margin-bottom: 22px;
}
.factor-tune-modal__policy--title img {
  width: 35%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__policy--title img {
    width: 50%;
  }
}
.factor-tune-modal__policy--inner {
  width: 50%;
  border-radius: 24px;
  padding: 3%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__policy--inner {
    width: 100%;
  }
}
.factor-tune-modal__policy--inner.minus {
  background: #dff1f4;
}
.factor-tune-modal__policy--inner.plus {
  background: #fffbda;
}
.factor-tune-modal__policy--inner-title {
  width: 60%;
  margin: 0 auto 6.82%;
}
.factor-tune-modal__policy--inner-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #103770;
  background: #fff;
  border: 1px solid #103770;
  padding: 4.546%;
  border-radius: 20px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__policy--inner-text {
    padding: 4%;
  }
}
.factor-tune-modal__policy--inner-text p {
  margin-bottom: 20px;
}
.factor-tune-modal__policy--inner-text p:last-of-type {
  margin-bottom: 0;
}
.factor-tune-modal__policy--inner-text p span {
  font-size: 1.4rem;
  color: #e60012;
}
@media screen and (max-width: 960px) {
  .factor-tune-modal__policy--inner-text p span {
    font-size: 1.2rem;
  }
}
.factor-tune-modal__policy--inner-text hr {
  margin: 10px 0px;
  background-color: #e60012;
  height: 1px;
  border: none;
}
.factor-tune-modal.active {
  transition: opacity 0.3s ease;
  opacity: 1;
  pointer-events: all;
}

.home .fv {
  padding-top: 96px;
  padding-bottom: 54px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .home .fv {
    padding-top: 60px;
    padding-bottom: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
  }
}
.home .fv__inner {
  justify-content: space-between;
  align-items: stretch;
}
.home .fv__inner--left {
  flex-direction: column;
  justify-content: space-between;
  width: 56%;
}
@media screen and (max-width: 960px) {
  .home .fv__inner--left {
    width: auto;
    margin-bottom: 0;
    position: absolute;
    left: 6.67%;
    top: calc(20px + 10.985%);
    z-index: 2;
  }
}
.home .fv__inner--right {
  position: relative;
  width: 35.424%;
}
@media screen and (max-width: 960px) {
  .home .fv__inner--right {
    width: 57%;
    margin: 0 0 0 auto;
  }
}
.home .fv__title {
  font-size: 46px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-top: 16.222%;
}
@media screen and (max-width: 1024px) {
  .home .fv__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  .home .fv__title {
    font-size: 26px;
    line-height: 1.5;
    margin-top: 0;
  }
}
@media screen and (max-width: 960px) {
  .home .fv__title span {
    display: block;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #9ca7d5;
    margin-top: 15px;
  }
}
.home .fv__img {
  width: 100%;
  margin-bottom: 66px;
  position: relative;
}
.home .fv__img.pc {
  display: block;
}
@media screen and (max-width: 960px) {
  .home .fv__img.pc {
    display: none;
  }
}
.home .fv__img.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .home .fv__img.sp {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .home .fv__img {
    margin-bottom: 0;
  }
}
.home .fv__name {
  position: absolute;
  bottom: 13px;
  right: 21px;
}
@media screen and (max-width: 960px) {
  .home .fv__name {
    right: 18px;
    bottom: 21px;
  }
}
.home .fv__name span {
  display: block;
  font-weight: 500;
  text-align: right;
}
.home .fv__name span:first-of-type {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 960px) {
  .home .fv__name span:first-of-type {
    font-size: 8px;
  }
}
.home .fv__name span:last-of-type {
  font-size: 22px;
}
@media screen and (max-width: 960px) {
  .home .fv__name span:last-of-type {
    font-size: 14px;
  }
}
.home .fv__decoration {
  position: absolute;
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #9ca7d5;
  white-space: nowrap;
  bottom: 0;
  right: 20.19%;
}
@media screen and (max-width: 1024px) {
  .home .fv__decoration {
    bottom: -40px;
  }
}
@media screen and (max-width: 960px) {
  .home .fv__decoration {
    display: none;
  }
}
.home .fv__scroll {
  border: 0.57px solid #c1c7e2;
  outline: 0.57px solid #c1c7e2;
  outline-offset: 3px;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  right: -38px;
  padding: 33px 27px 19px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .home .fv__scroll {
    display: none;
  }
}
.home .fv__scroll--text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #0724a4;
}
.home .fv__scroll--arrow {
  width: 4.16px;
  height: 16.11px;
}
.home .fv__bg {
  position: absolute;
  top: 16%;
  left: 42%;
  width: 31.667%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}
@media screen and (max-width: 960px) {
  .home .fv__bg {
    left: 50%;
    top: 24%;
    transform: translateX(-50%);
    width: 50.67%;
  }
}
@keyframes float {
  0% {
    transform: translateY(0px) scale(1);
  }
  33% {
    transform: translateY(60px) scale(1.3);
  }
  66% {
    transform: translateY(-30px) scale(1.3);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
@media screen and (max-width: 960px) {
  @keyframes float {
    0% {
      transform: translateY(0px) translateX(-50%) scale(1);
    }
    33% {
      transform: translateY(30px) translateX(-50%) scale(1.3);
    }
    66% {
      transform: translateY(-30px) translateX(-50%) scale(1.3);
    }
    100% {
      transform: translateY(0px) translateX(-50%) scale(1);
    }
  }
}
@media screen and (max-width: 960px) {
  .home .fv__text {
    font-size: 14px;
    line-height: 2.2;
    font-weight: 500;
    letter-spacing: 0.04em;
    width: 90%;
    margin: 38px auto 0;
  }
}
.home .department__title {
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .home .department__title {
    margin-bottom: 24px;
  }
}
.home .department__inner {
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .home .department__inner {
    flex-direction: column;
  }
}
.home .department__link {
  width: 48.334%;
  border-bottom: 1px solid #c1c7e2;
  margin-bottom: 3%;
}
@media screen and (max-width: 960px) {
  .home .department__link {
    width: 100%;
    margin-bottom: 0;
  }
}
.home .department__link--item {
  align-items: center;
  padding: 0 2.76% 5.518%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .home .department__link--item {
    padding: 4% 0;
    padding-left: 1.334%;
  }
}
.home .department__link--icon {
  width: 8.76%;
}
@media screen and (max-width: 960px) {
  .home .department__link--icon {
    width: 11.265%;
  }
}
.home .department__link--text-ja {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: #0724a4;
  margin-left: 1.825%;
  margin-right: 2.92%;
}
@media screen and (max-width: 960px) {
  .home .department__link--text-ja {
    font-size: 18px;
    flex-basis: 80%;
    line-height: 1.2;
    margin-right: 0;
    margin-left: 5.106%;
  }
}
@media screen and (max-width: 960px) {
  .home .department__link--text-ja .department__link--text-en {
    line-height: 1.2;
    display: block;
    margin-top: 8px;
    font-size: 10px;
  }
}
.home .department__link--text-en {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #9ca7d5;
}
@media screen and (max-width: 960px) {
  .home .department__link--text-en {
    flex-basis: 44%;
    line-height: 1.2;
  }
}
.home .department__link--arrow {
  width: 4.167%;
  height: auto;
  position: absolute;
  right: 0;
}
.home .department__link:first-of-type {
  width: 100%;
  margin-bottom: 4%;
}
@media screen and (max-width: 960px) {
  .home .department__link:first-of-type {
    margin-bottom: 0;
  }
}
.home .department__link:first-of-type .department__link--item {
  padding: 2.667% 0 2.667%;
  padding-left: 1.334%;
}
@media screen and (max-width: 960px) {
  .home .department__link:first-of-type .department__link--item {
    padding: 4% 0;
    padding-left: 1.334%;
  }
}
.home .department__link:first-of-type .department__link--icon {
  width: 5.5%;
}
@media screen and (max-width: 960px) {
  .home .department__link:first-of-type .department__link--icon {
    width: 11.265%;
  }
}
.home .department__link:first-of-type .department__link--text-ja {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #0724a4;
}
@media screen and (max-width: 960px) {
  .home .department__link:first-of-type .department__link--text-ja {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 960px) {
  .home .department__link:first-of-type .department__link--text-ja .department__link--text-en {
    line-height: 1.2;
    display: block;
  }
}
.home .department__link:first-of-type .department__link--arrow {
  width: 2%;
  height: 16.11px;
}
@media screen and (max-width: 960px) {
  .home .department__link:first-of-type .department__link--arrow {
    width: 4.167%;
    height: auto;
  }
}
.home .department__link:nth-of-type(4), .home .department__link:nth-of-type(5) {
  margin-bottom: 0;
}
.home .doctor__inner {
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .home .doctor__inner {
    flex-direction: column;
  }
}
.home .doctor__inner--left {
  width: 31.834%;
}
@media screen and (max-width: 960px) {
  .home .doctor__inner--left {
    width: 100%;
    margin-bottom: 60px;
  }
}
.home .doctor__inner--left .doctor__img {
  width: 100%;
}
.home .doctor__inner--left .doctor__text {
  margin-top: 24px;
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .home .doctor__inner--left .doctor__text {
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: center;
  }
}
.home .doctor__inner--left .doctor__position {
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.home .doctor__inner--left .doctor__name-ja {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.home .doctor__inner--left .doctor__name-en {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #9ca7d5;
}
.home .doctor__inner--left .doctor__links--item {
  margin-bottom: 10px;
  align-items: center;
}
.home .doctor__inner--left .doctor__links--item:first-of-type .doctor__links--icon {
  width: 10.995%;
}
.home .doctor__inner--left .doctor__links--item:last-of-type {
  margin-bottom: 0;
}
.home .doctor__inner--left .doctor__links--icon {
  width: 6.284%;
  margin-right: 10px;
}
.home .doctor__inner--left .doctor__links--text {
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0%;
  text-decoration-thickness: 0%;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: #343434;
}
.home .doctor__inner--right {
  width: 60%;
}
@media screen and (max-width: 960px) {
  .home .doctor__inner--right {
    width: 100%;
  }
}
.home .doctor__inner--right .doctor__profile--title {
  font-size: 20px;
}
.home .doctor__inner--right .doctor__profile--text {
  margin-bottom: 48px;
}
@media screen and (max-width: 960px) {
  .home .doctor__inner--right .doctor__profile--text {
    margin-bottom: 60px;
  }
}
.home .doctor__inner--right .doctor__profile--text-academic {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.home .doctor__inner--right .doctor__profile--text-academic > span:nth-of-type(odd) {
  width: 4em;
}
.home .doctor__inner--right .doctor__profile--text-academic > span:nth-of-type(even) {
  width: calc(100% - 4em);
}
@media screen and (max-width: 960px) {
  .home .doctor__inner--right .doctor__profile--text-activity {
    letter-spacing: 0;
  }
}
.home .doctor__inner--right .doctor__profile--text:last-of-type {
  margin-bottom: 0;
}
.home .about {
  position: relative;
}
.home .about__container {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 93px;
}
@media screen and (max-width: 960px) {
  .home .about__container {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 960px) {
  .home .about__inner--left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.home .about__inner--right {
  width: 50.5%;
}
@media screen and (max-width: 960px) {
  .home .about__inner--right {
    width: 100%;
  }
}
.home .about__text {
  margin-bottom: 48px;
}
@media screen and (max-width: 960px) {
  .home .about__text {
    margin-bottom: 24px;
  }
}
.home .about__button--link {
  display: block;
  width: 228px;
}
@media screen and (max-width: 960px) {
  .home .about__button--link {
    width: 100%;
  }
}
.home .about__background {
  position: absolute;
  width: 68.056%;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .home .about__background {
    display: none;
  }
}
.home .about__img {
  margin-bottom: 20px;
}
.home .information__inner {
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .home .information__inner {
    flex-direction: column;
  }
}
.home .information__inner--right {
  width: 65.167%;
}
@media screen and (max-width: 960px) {
  .home .information__inner--right {
    width: 100%;
  }
}
.home .information__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .home .information__list {
    margin-top: 20px;
  }
}
.home .information__list--item {
  display: flex;
  align-items: flex-start;
  padding: 4.094% 2.047%;
  padding-right: 8%;
  border-bottom: 1px solid #c1c7e2;
  position: relative;
}
@media screen and (max-width: 960px) {
  .home .information__list--item {
    flex-direction: column;
    align-items: flex-start;
    padding: 6% 8% 6% 0;
  }
}
.home .information__list--item:after {
  content: "";
  background: url(../img/common/arrow-right.svg) no-repeat;
  background-size: contain;
  width: 2.61%;
  height: auto;
  aspect-ratio: 20/12;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.047%;
}
@media screen and (max-width: 960px) {
  .home .information__list--item:after {
    width: 4.167%;
    height: auto;
  }
}
.home .information--date {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  margin-right: 3.837%;
  color: #9ca7d5;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .home .information--date {
    margin-right: 0;
    font-size: 12px;
  }
}
.home .information--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  color: #343434;
  flex: 1;
}
@media screen and (max-width: 960px) {
  .home .information--title {
    font-size: 14px;
  }
}
.home .information--title a {
  color: #343434;
  transition: all 0.3s ease;
}
.home .information--title a:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}
.home .information__button--link {
  display: block;
  width: 228px;
  margin: 0 0 0 auto;
  padding-right: 0;
}
@media screen and (max-width: 960px) {
  .home .information__button--link {
    width: 100%;
  }
}
.home .faq__inner {
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .home .faq__inner {
    flex-direction: column;
  }
}
.home .faq__inner--right {
  width: 65.167%;
}
@media screen and (max-width: 960px) {
  .home .faq__inner--right {
    width: 100%;
  }
}
.home .faq__list {
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .home .faq__list {
    margin-top: 20px;
  }
}
.home .faq__list--item {
  padding-right: 0;
  border-bottom: 1px solid #c1c7e2;
}
.home .faq__list--item .faq--title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.9;
  cursor: pointer;
  position: relative;
  padding-right: 8.44%;
  padding-left: 4.44%;
  transition: all 0.3s linear;
  padding: 4.094% 10% 4.094% 6%;
}
@media screen and (max-width: 960px) {
  .home .faq__list--item .faq--title {
    line-height: 1.5;
    padding-left: 6%;
    padding: 6% 8.44% 6% 6%;
  }
}
.home .faq__list--item .faq--title:hover {
  opacity: 0.6;
  transition: all 0.3s linear;
}
.home .faq__list--item .faq--title::before {
  content: "Q.";
  font-weight: 500;
  font-size: 23px;
  line-height: 1;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 960px) {
  .home .faq__list--item .faq--title::before {
    font-size: 16px;
    top: 23px;
  }
}
.home .faq__list--item .faq--title::after {
  content: "";
  background: url(../img/common/plus.svg) no-repeat;
  background-size: contain;
  width: 2.09%;
  height: auto;
  aspect-ratio: 19/18;
  position: absolute;
  top: 44%;
  right: 2.09%;
}
@media screen and (max-width: 960px) {
  .home .faq__list--item .faq--title::after {
    width: 15px;
    height: auto;
    right: 0;
    top: 40%;
  }
}
.home .faq__list--item .faq--content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
  position: relative;
  padding-left: 4.44%;
  padding-right: 8.44%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 960px) {
  .home .faq__list--item .faq--content {
    padding-left: 6%;
  }
}
.home .faq__list--item .faq--content::before {
  content: "A.";
  font-family: "Noto Serif JP";
  font-weight: 500;
  font-size: 23px;
  line-height: 1;
  color: #0724a4;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 960px) {
  .home .faq__list--item .faq--content::before {
    font-size: 16px;
    top: 5px;
  }
}
.home .faq__list--item.active .faq--title::after {
  background: url(../img/common/minus.svg) no-repeat;
  background-size: contain;
}
.home .faq__list--item.active .faq--content {
  transition: all 0.3s linear;
  max-height: 1000px;
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .home .faq__list--item.active .faq--content {
    margin-bottom: 20px;
  }
}

.page-template-page-department .department {
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department {
    margin-top: 40px;
  }
}
.page-template-page-department .department__text {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__text {
    margin-bottom: 40px;
  }
}
.page-template-page-department .department__inner {
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__inner {
    flex-direction: column;
  }
}
.page-template-page-department .department__link {
  width: 48.334%;
  border-bottom: 1px solid #c1c7e2;
  margin-bottom: 3%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link {
    width: 100%;
    margin-bottom: 0;
  }
}
.page-template-page-department .department__link--item {
  align-items: center;
  padding: 0 2.76% 5.518%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link--item {
    padding: 4% 0;
    padding-left: 1.334%;
  }
}
.page-template-page-department .department__link--icon {
  width: 8.76%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link--icon {
    width: 11.265%;
  }
}
.page-template-page-department .department__link--text-ja {
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  color: #0724a4;
  margin-left: 1.825%;
  margin-right: 2.92%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link--text-ja {
    font-size: 18px;
    flex-basis: 80%;
    line-height: 1.2;
    margin-right: 0;
    margin-left: 5.106%;
  }
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link--text-ja .department__link--text-en {
    line-height: 1.2;
    display: block;
    margin-top: 8px;
    font-size: 10px;
  }
}
.page-template-page-department .department__link--text-en {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #9ca7d5;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link--text-en {
    flex-basis: 44%;
    line-height: 1.2;
  }
}
.page-template-page-department .department__link--arrow {
  width: 4.167%;
  height: auto;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link--arrow {
    width: 4.167%;
    height: auto;
  }
}
.page-template-page-department .department__link:first-of-type {
  width: 100%;
  margin-bottom: 4%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link:first-of-type {
    margin-bottom: 0;
  }
}
.page-template-page-department .department__link:first-of-type .department__link--item {
  padding: 2.667% 0 2.667%;
  padding-left: 1.334%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link:first-of-type .department__link--item {
    padding: 4% 0;
    padding-left: 1.334%;
  }
}
.page-template-page-department .department__link:first-of-type .department__link--icon {
  width: 5.5%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link:first-of-type .department__link--icon {
    width: 11.265%;
  }
}
.page-template-page-department .department__link:first-of-type .department__link--text-ja {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #0724a4;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link:first-of-type .department__link--text-ja {
    font-size: 18px;
    flex-basis: 80%;
    line-height: 1.2;
    margin-right: 0;
    margin-left: 5.106%;
  }
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link:first-of-type .department__link--text-ja .department__link--text-en {
    line-height: 1.2;
    display: block;
    margin-top: 8px;
    font-size: 10px;
  }
}
.page-template-page-department .department__link:first-of-type .department__link--arrow {
  width: 2%;
  height: 16.11px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department .department__link:first-of-type .department__link--arrow {
    width: 4.167%;
    height: auto;
  }
}
.page-template-page-department .department__link:nth-of-type(4), .page-template-page-department .department__link:nth-of-type(5) {
  margin-bottom: 0;
}

.page-template-page-department-detail .department-detail {
  margin-top: 52px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail {
    margin-top: 45px;
  }
}
.page-template-page-department-detail .department-detail__container {
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__container {
    flex-direction: column;
  }
}
.page-template-page-department-detail .department-detail__content {
  width: calc(100% - 300px);
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__content {
    width: 100%;
  }
}
.page-template-page-department-detail .department-detail__content > p > .c-button {
  display: block;
  width: 256px;
  margin-left: auto !important;
  margin-right: 0 !important;
  margin-bottom: 0;
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__content > p > .c-button {
    margin-top: 40px;
    width: 100%;
  }
}
.page-template-page-department-detail .department-detail__content .alignwide {
  max-width: initial;
}
.page-template-page-department-detail .department-detail__content .is-type-video {
  max-width: initial;
}
.page-template-page-department-detail .department-detail__section {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__section {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.page-template-page-department-detail .department-detail__section:first-of-type {
  margin-top: 0;
}
.page-template-page-department-detail .department-detail__section:last-of-type {
  margin-bottom: 0;
}
.page-template-page-department-detail .department-detail__section > * {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__section > * {
    margin-bottom: 20px;
  }
}
.page-template-page-department-detail .department-detail__section > .mb24 {
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__section > .mb24 {
    margin-bottom: 12px;
  }
}
.page-template-page-department-detail .department-detail__section > .mb32 {
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__section > .mb32 {
    margin-bottom: 16px;
  }
}
.page-template-page-department-detail .department-detail__section--title {
  font-size: 26px;
  padding-bottom: 24px;
  margin-bottom: 48px;
  line-height: 1.7;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__section--title {
    font-size: 22px;
    padding-bottom: 12px;
    margin-bottom: 29px;
  }
}
.page-template-page-department-detail .department-detail__section--title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: #0724a4;
}
.page-template-page-department-detail .department-detail__voice--inner {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__voice--inner {
    margin-bottom: 30px;
    gap: 10px;
  }
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__voice--inner > div:first-of-type {
    width: 30% !important;
    flex-basis: 30% !important;
    flex-grow: initial !important;
  }
}
.page-template-page-department-detail .department-detail__voice--text {
  padding-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__voice--text {
    padding-bottom: 8px;
  }
}
.page-template-page-department-detail .department-detail__voice--role {
  font-size: 13px;
  font-weight: 500;
  margin-top: 8px;
}
.page-template-page-department-detail .department-detail__flow--inner {
  padding-top: 64px;
  padding-bottom: 64px;
  margin-bottom: 48px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__flow--inner {
    padding-top: 5%;
    padding-bottom: 5%;
    margin-bottom: 24px;
  }
}
.page-template-page-department-detail .department-detail__flow--item {
  border-radius: 4px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__flow--item {
    padding: 16px !important;
    max-width: 90%;
  }
}
.page-template-page-department-detail .department-detail__flow--item:last-of-type {
  margin-bottom: 0;
}
.page-template-page-department-detail .department-detail__flow--title {
  font-size: 18px;
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__flow--title {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.page-template-page-department-detail .department-detail__flow--title span {
  font-size: 15px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__flow--title span {
    font-size: 12px;
  }
}
.page-template-page-department-detail .department-detail__flow--title span:first-of-type {
  font-size: 20px;
  margin-right: 4px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__flow--title span:first-of-type {
    font-size: 16px;
  }
}
.page-template-page-department-detail .department-detail__faq .department-detail__section--title {
  margin-bottom: 32px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__faq .department-detail__section--title {
    margin-bottom: 16px;
  }
}
.page-template-page-department-detail .department-detail__faq--item {
  padding: 32px 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #c1c7e2;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__faq--item {
    padding: 16px 0;
  }
}
.page-template-page-department-detail .department-detail__faq--item:last-of-type {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__faq--item:last-of-type {
    margin-bottom: 40px;
  }
}
.page-template-page-department-detail .department-detail__faq--question {
  font-size: 18px;
  font-weight: 500;
  padding-left: 34px;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__faq--question {
    font-size: 16px;
    padding-left: 24px;
    margin-bottom: 12px;
  }
}
.page-template-page-department-detail .department-detail__faq--question::before {
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  content: "Q.";
  position: absolute;
  left: 0;
  top: 5px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__faq--question::before {
    font-size: 18px;
  }
}
.page-template-page-department-detail .department-detail__faq--answer {
  padding-left: 34px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__faq--answer {
    padding-left: 24px;
  }
}
.page-template-page-department-detail .department-detail__faq--answer::before {
  font-family: "Noto Serif JP", serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
  color: #0724a4;
  content: "A.";
  position: absolute;
  left: 0;
  top: 2px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__faq--answer::before {
    font-size: 18px;
  }
}
.page-template-page-department-detail .department-detail__faq--answer span {
  font-size: 13px;
  color: #0724a4;
}
.page-template-page-department-detail .department-detail__features {
  margin-bottom: 56px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__features {
    margin-bottom: 28px;
  }
}
.page-template-page-department-detail .department-detail__features--title {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid #c1c7e2;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__features--title {
    font-size: 16px;
  }
}
.page-template-page-department-detail .department-detail__features--sub-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__features--sub-title {
    font-size: 14px;
  }
}
.page-template-page-department-detail .department-detail__features--text {
  margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__features--text {
    margin-bottom: 8px;
  }
}
.page-template-page-department-detail .department-detail__features--text:last-of-type {
  margin-bottom: 0;
}
.page-template-page-department-detail .department-detail__foctor-tune {
  margin-top: 0;
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__foctor-tune {
    margin-bottom: 40px;
  }
}
.page-template-page-department-detail .department-detail__foctor-tune--title-img {
  margin-bottom: 24px;
  width: 22.223%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__foctor-tune--title-img {
    width: 50%;
  }
}
.page-template-page-department-detail .department-detail__case {
  margin-bottom: 83px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__case {
    margin-bottom: 40px;
  }
}
.page-template-page-department-detail .department-detail__case--inner {
  gap: 0;
}
.page-template-page-department-detail .department-detail__case--title {
  font-size: 20px;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__case--title {
    margin-bottom: 16px;
  }
}
.page-template-page-department-detail .department-detail__case--title span {
  font-size: 15px;
  font-weight: 500;
  margin-left: 24px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__case--title span {
    font-size: 12px;
    margin-left: 12px;
  }
}
.page-template-page-department-detail .department-detail__case--before p, .page-template-page-department-detail .department-detail__case--after p {
  font-family: "Cormorant", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 9px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__case--before p, .page-template-page-department-detail .department-detail__case--after p {
    font-size: 18px;
  }
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__case--inner > div {
    width: 40%;
  }
}
.page-template-page-department-detail .department-detail__case--inner > div:nth-of-type(2) {
  width: 20%;
}
.page-template-page-department-detail .department-detail__related-goods--inner {
  padding: 48px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--inner {
    padding-top: 4%;
  }
}
.page-template-page-department-detail .department-detail__related-goods--item {
  border-radius: 4px;
  margin-bottom: 12px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--item {
    padding: 16px !important;
    width: 92% !important;
    max-width: initial;
  }
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--item > div {
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--item > div > div > div {
    border-right: none;
  }
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--item > div > div > div > div:first-of-type {
    flex-basis: 40% !important;
  }
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--item > div > div > div > div:last-of-type {
    flex-basis: 55% !important;
  }
}
.page-template-page-department-detail .department-detail__related-goods--title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--title {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.page-template-page-department-detail .department-detail__related-goods--text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--text {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
.page-template-page-department-detail .department-detail__related-goods--price-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
}
.page-template-page-department-detail .department-detail__related-goods--price-text {
  font-size: 20px;
  line-height: 1;
}
.page-template-page-department-detail .department-detail__related-goods--price-text span {
  font-size: 12px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 16px;
  color: #878787;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--price-text span {
    margin-left: 10px;
    margin-left: 8px;
  }
}
.page-template-page-department-detail .department-detail__related-goods--price-text span:first-of-type {
  font-size: 10px;
  margin-left: 0;
  color: #343434;
}
.page-template-page-department-detail .department-detail__related-goods--annotation {
  font-size: 13px;
  line-height: 1;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__related-goods--annotation {
    margin-bottom: 12px;
    font-size: 12px;
  }
}
.page-template-page-department-detail .department-detail__related-goods--right .c-button {
  display: block;
  margin-top: 24px;
  margin-left: auto;
  margin-right: 0;
  width: 205px;
  padding: 12px;
  line-height: 1;
}
.page-template-page-department-detail .department-detail__related-goods--right .c-button::after {
  background-size: contain;
  width: 16px;
  height: 9px;
}
.page-template-page-department-detail .department-detail__related-goods--right .c-button__link {
  line-height: 1;
}
.page-template-page-department-detail .department-detail__treatment--accordion {
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion {
    margin-bottom: 10px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-title {
  font-size: 22px;
  font-weight: 500;
  padding: 18px 24px;
  padding-right: 43px;
  position: relative;
  background-color: #f2f5fe;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-title {
    font-size: 18px;
    padding: 10px 12px;
    padding-right: 22px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  width: 20px;
  height: 20px;
  background: url(../img/common/plus.svg) no-repeat;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-title::before {
    width: 16px;
    height: 16px;
    right: 12px;
    background-size: contain;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-content {
    padding: 0 12px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-content > div {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-content > div {
    margin-bottom: 20px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-content > div:last-of-type {
  margin-bottom: 0;
}
.page-template-page-department-detail .department-detail__treatment--accordion-content h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-content h5 {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-content .c-list {
  margin-top: 12px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-content .c-list {
    margin-top: 8px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-content .c-column-list .c-list {
  margin-top: 0;
}
.page-template-page-department-detail .department-detail__treatment--accordion-content .department-detail__features--title {
  font-size: 18px;
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 1px solid #c1c7e2;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-content .department-detail__features--title {
    font-size: 16px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-content .department-detail__features--sub-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-content .department-detail__features--sub-title {
    font-size: 16px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-content .department-detail__features--text {
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion-content .department-detail__features--text {
    margin-bottom: 16px;
  }
}
.page-template-page-department-detail .department-detail__treatment--accordion-content .department-detail__features--item:last-of-type .department-detail__features--text {
  margin-bottom: 0;
}
.page-template-page-department-detail .department-detail__treatment--accordion.active .department-detail__treatment--accordion-title {
  background-color: #9ca7d5;
  color: #fff;
}
.page-template-page-department-detail .department-detail__treatment--accordion.active .department-detail__treatment--accordion-title::before {
  background: url(../img/common/minus-white.svg) no-repeat;
}
.page-template-page-department-detail .department-detail__treatment--accordion.active .department-detail__treatment--accordion-content {
  border: 1px solid #9ca7d5;
  border-top: none;
  transition: all 0.3s linear;
  max-height: 3000px;
  padding: 32px 24px 56px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__treatment--accordion.active .department-detail__treatment--accordion-content {
    padding: 16px 12px;
  }
}
.page-template-page-department-detail .department-detail__products {
  font-family: "Noto Sans JP", sans-serif;
}
.page-template-page-department-detail .department-detail__products--inner {
  border: 4px solid #d0d0d0;
  border-radius: 14px;
  padding: 10px 22px 40px 22px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--inner {
    border-width: 2px;
    padding: 20px;
  }
}
.page-template-page-department-detail .department-detail__products--title {
  text-align: center;
  font-size: 3rem;
  line-height: 1.1;
  color: #000;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--title {
    font-size: 2.2rem;
  }
}
.page-template-page-department-detail .department-detail__products--title span {
  font-size: 2rem;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--title span {
    font-size: 1.6rem;
  }
}
.page-template-page-department-detail .department-detail__products--description {
  display: flex;
  margin: 30px auto;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--description {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.page-template-page-department-detail .department-detail__products--description-text {
  width: 83%;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--description-text {
    width: 100%;
    font-size: 1.4rem;
  }
}
.page-template-page-department-detail .department-detail__products--description-icon {
  width: 15.267%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--description-icon {
    width: 25%;
    margin-bottom: 10px;
  }
}
.page-template-page-department-detail .department-detail__products--about {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--about {
    flex-direction: column;
    align-items: center;
  }
}
.page-template-page-department-detail .department-detail__products--about-text {
  width: 82%;
  color: #0724a4;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--about-text {
    width: 100%;
    margin-bottom: 10px;
  }
}
.page-template-page-department-detail .department-detail__products--about-text h4 {
  border-bottom: 1px dashed #103770;
  padding-bottom: 5px;
  font-size: 2.2rem;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--about-text h4 {
    font-size: 1.8rem;
  }
}
.page-template-page-department-detail .department-detail__products--about-text p {
  font-size: 1.4rem;
  margin-top: 10px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--about-text p {
    font-size: 1.3rem;
  }
}
.page-template-page-department-detail .department-detail__products--about-image {
  width: 16.442%;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--about-image {
    width: 50%;
  }
}
.page-template-page-department-detail .department-detail__products--about-image figcaption {
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--about-image figcaption {
    font-size: 1.3rem;
  }
}
.page-template-page-department-detail .department-detail__products--size01 {
  display: block;
  text-align: center;
  margin: 30px 0px;
}
.page-template-page-department-detail .department-detail__products--size02-title {
  border-bottom: 1px dashed #103770;
  padding-bottom: 5px;
  font-size: 2.2rem;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--size02-title {
    font-size: 1.8rem;
  }
}
.page-template-page-department-detail .department-detail__products--size02-title span {
  background: linear-gradient(transparent 50%, #fee10a 50%);
}
.page-template-page-department-detail .department-detail__products--size02-image {
  display: block;
  text-align: center;
  margin: 30px 0px;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__products--size02-image {
    margin: 20px 0px;
  }
}
.page-template-page-department-detail .department-detail__products--safety {
  display: flex;
  margin-bottom: 10px;
}
.page-template-page-department-detail .department-detail__products--safety-text {
  color: #0724a4;
}
@media screen and (max-width: 960px) {
  .page-template-page-department-detail .department-detail__note-banner > figure {
    max-width: initial;
  }
}

.page-id-484 .c-list {
  width: 100%;
  padding-right: 43px;
}

.page-template-page-supplements .product_section h3.prod_catch {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.page-template-page-supplements .product_section h4 {
  font-size: 1.2rem;
  padding: 15px 0;
}
.page-template-page-supplements .product_section h2,
.page-template-page-supplements .product_section h3,
.page-template-page-supplements .product_section h4 {
  font-weight: 500;
}
.page-template-page-supplements .product_section h2 {
  margin: 20px auto 40px;
  background: #3366ff;
  color: #fff;
  padding: 5px 0;
}
.page-template-page-supplements .product_section h3 {
  padding: 10px 0;
  color: #333;
  font-size: 22px;
}
.page-template-page-supplements .product_section h3 span {
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: inline-block;
}
.page-template-page-supplements .product_block {
  text-align: center;
  margin-top: 80px;
}
.page-template-page-supplements .product_block li {
  text-align: left;
}
.page-template-page-supplements .product_block_top p {
  text-align: left;
}
.page-template-page-supplements .product_block ul,
.page-template-page-supplements .product_block ol {
  display: inline-block;
}
.page-template-page-supplements .product_section .product_mon {
  margin: 20px auto;
}
.page-template-page-supplements .product_mon {
  background: #f9f9f9;
  padding: 20px;
  margin-top: 40px;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
}
.page-template-page-supplements .product_mon_right,
.page-template-page-supplements .product_mon_left {
  display: flex;
  align-items: center;
}
.page-template-page-supplements .product_mon_left {
  flex-flow: row-reverse;
}
.page-template-page-supplements .product_block li a:link,
.page-template-page-supplements .product_block li a:visited {
  color: #3366ff;
  font-weight: 500;
}
.page-template-page-supplements .product_block li a:hover {
  opacity: 0.8;
}
.page-template-page-supplements .product_block_top_inner {
  display: flex;
}
.page-template-page-supplements .product_block_top_inner p {
  box-sizing: border-box;
  padding: 0 10px;
  line-height: 200%;
}
.page-template-page-supplements .product_block_top_inner p img {
  width: 200px;
  height: auto;
  border-radius: 50%;
}
.page-template-page-supplements .link_pdf,
.page-template-page-supplements .link_to_supli,
.page-template-page-supplements .link_to_online {
  text-align: center;
  margin: 10px auto 20px auto;
}
.page-template-page-supplements .link_pdf a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 20px;
}
.page-template-page-supplements .link_to_supli a,
.page-template-page-supplements .link_to_online a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
}
.page-template-page-supplements .link_pdf a:link,
.page-template-page-supplements .link_pdf a:visited {
  background: #111188;
  color: #fff;
}
.page-template-page-supplements .link_to_supli a:link,
.page-template-page-supplements .link_to_supli a:visited {
  font-weight: 500;
  border: 2px solid #111188;
  color: #111188;
}
.page-template-page-supplements .link_to_online {
  margin-bottom: 40px;
}
.page-template-page-supplements .link_to_online a:link,
.page-template-page-supplements .link_to_online a:visited {
  font-weight: 500;
  border: 2px solid #9e751e;
  background-color: #fff;
  color: #9e751e;
}
.page-template-page-supplements .link_pdf a:hover {
  opacity: 0.7;
}
.page-template-page-supplements .link_to_supli a:hover {
  background: #ffed14;
  border: 2px solid #ffed14;
}
.page-template-page-supplements .link_to_online a:hover {
  background: #9e751e;
  border: 2px solid #9e751e;
  color: #fff;
}
.page-template-page-supplements .link_pdf a span:after {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f1c1";
  padding-left: 10px;
}
.page-template-page-supplements .product_section .product_mon {
  margin: 20px auto;
}
.page-template-page-supplements .product_mon {
  background: #f9f9f9;
  padding: 20px;
  margin-top: 40px;
  box-sizing: border-box;
  border-radius: 20px;
  position: relative;
}
.page-template-page-supplements .product_mon_right,
.page-template-page-supplements .product_mon_left {
  display: flex;
  align-items: center;
}
.page-template-page-supplements .product_mon_left {
  flex-flow: row-reverse;
}
.page-template-page-supplements .mon_description {
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #e0edff;
  position: relative;
  background: #e0edff;
  border-radius: 10px;
  line-height: 170%;
}
.page-template-page-supplements p.mon_description {
  text-align: left;
}
.page-template-page-supplements .mon_description:before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -15px;
  border: 15px solid transparent;
}
.page-template-page-supplements .product_mon_left .mon_description:before {
  right: 100%;
  border-right: 15px solid #e0edff;
}
.page-template-page-supplements .product_mon_right .mon_description:before {
  left: 100%;
  border-left: 15px solid #e0edff;
}
.page-template-page-supplements .mon_face {
  font-size: 13px;
  text-align: center;
}
.page-template-page-supplements .mon_face img {
  width: 120px;
  margin: 0 auto;
}
.page-template-page-supplements .icon_voice {
  position: absolute;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  display: inline-block;
  right: 0;
  text-align: center;
  top: -10px;
  z-index: 2;
  font-weight: 700;
  font-size: 12px;
  background-color: #3366ff;
  color: #fff;
}
.page-template-page-supplements .link_form {
  text-align: center;
  margin: 40px auto 20px auto;
}
.page-template-page-supplements .link_form a {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 10px;
}
.page-template-page-supplements .link_form a:link,
.page-template-page-supplements .link_form a:visited {
  background: #111188;
  color: #fff;
}
.page-template-page-supplements .link_form a:hover {
  opacity: 0.7;
}
.page-template-page-supplements .link_form a span:after {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f07a";
  padding-left: 10px;
}
@media screen and (max-width: 960px) {
  .page-template-page-supplements {
    /* INDEX_PROD */
  }
  .page-template-page-supplements .product_block_top_inner {
    display: block;
  }
  .page-template-page-supplements .product_section h2.prod_catch {
    font-size: 1.4rem;
  }
  .page-template-page-supplements .product_block_top_inner p img {
    width: 50%;
    margin: 0 auto 10px auto;
    display: block;
  }
  .page-template-page-supplements .icon_voice {
    top: -55px;
  }
  .page-template-page-supplements .product_mon_right,
  .page-template-page-supplements .product_mon_left {
    display: block;
  }
  .page-template-page-supplements .mon_description {
    margin-bottom: 20px;
  }
  .page-template-page-supplements .product_mon_left .mon_description:before,
  .page-template-page-supplements .product_mon_right .mon_description:before {
    top: 100%;
    border: 15px solid transparent;
    left: 50%;
    margin-left: -15px;
    border-top: 15px solid #e0edff;
    margin-top: 0;
  }
  .page-template-page-supplements .product_block ul,
  .page-template-page-supplements .product_block ol {
    padding-left: 1rem;
  }
  .page-template-page-supplements .product_block li {
    margin-bottom: 5px;
  }
  .page-template-page-supplements .prod_2_over {
    background: #fff;
    padding-bottom: 40px;
  }
  .page-template-page-supplements .prod_2 {
    display: block;
    justify-content: center;
  }
  .page-template-page-supplements .prod_2 figure {
    width: 80%;
    margin: 10px auto 20px auto;
  }
  .page-template-page-supplements .prod_2 figure img {
    width: 100%;
    height: auto;
    border-radius: 0;
  }
  .page-template-page-supplements .product_block {
    margin-top: 40px;
  }
}

.page-template-page-takashima-note .single-takashima__header--title {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  color: #0724a4;
}
.page-template-page-takashima-note .single-takashima__header--date {
  font-size: 14px;
  color: #9ca7d5;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  width: 90%;
  max-width: 1200px;
  margin: 16px auto 0;
}
.page-template-page-takashima-note .single-takashima__content {
  margin-top: 88px;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content > * {
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .page-template-page-takashima-note .single-takashima__content > .entry-content > * {
    margin-bottom: 30px;
  }
}
.page-template-page-takashima-note .single-takashima__content > .entry-content h2 {
  font-family: "Noto Serif JP", serif;
  padding-bottom: 24px;
  margin-bottom: 30px;
  line-height: 1.7;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page-template-page-takashima-note .single-takashima__content > .entry-content h2 {
    padding-bottom: 12px;
    margin-bottom: 29px;
  }
}
.page-template-page-takashima-note .single-takashima__content > .entry-content h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: #0724a4;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content a {
  position: relative;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content a:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0724a4;
  transition: all 0.3s ease;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content a:hover:before {
  width: 100%;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content blockquote {
  margin: 0 0 20px;
  padding: 1em 1.5em;
  background: #f9f9f9;
  border-left: 5px solid #0724a4;
  color: #555;
  font-style: italic;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content code {
  background-color: #f5f5f5;
  color: #0724a4;
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 0.95em;
  border-radius: 4px;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content ul li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  text-indent: 0;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content ul li:last-of-type {
  margin-bottom: 0;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 2px;
  color: #333;
  font-size: 1em;
  line-height: 1.5;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content ol {
  counter-reset: my-counter;
  width: -moz-fit-content;
  width: fit-content;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content ol li {
  margin-bottom: 8px;
  text-indent: 0;
  position: relative;
  padding-left: 1.5em;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 0;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content table thead {
  border-bottom: 2px solid;
}
.page-template-page-takashima-note .single-takashima__content > .entry-content table td {
  border-top: none;
}
.page-template-page-takashima-note .btn_center {
  text-align: center;
}
.page-template-page-takashima-note .btn_center a {
  width: 228px;
  display: inline-grid;
  color: #0724a4;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s ease;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid #0724a4;
  border-radius: 100px;
  position: relative;
  background: #fff;
  margin: 60px 20px 0;
}
.page-template-page-takashima-note .btn_center a:hover {
  background-color: #0724a4;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.archive-takashima {
  margin-top: 88px;
}
.archive-takashima .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}
.archive-takashima__inner {
  margin-top: 80px;
}
.archive-takashima__inner:first-of-type {
  margin-top: 0;
}
.archive-takashima__list {
  width: 49%;
  margin-bottom: 40px;
  background: #f9f9f9;
  box-sizing: border-box;
  padding: 20px;
  box-shadow: 5px 5px 0 #f0f0f0;
}
.archive-takashima__list--days {
  display: flex;
  align-items: center;
}
.archive-takashima__list--date {
  font-size: 12px;
  background: #111188;
  font-weight: 500;
  display: inline-block;
  line-height: 100%;
  padding: 5px 10px;
  color: #fff;
  border-radius: 20px;
  margin-right: 5px;
}
.archive-takashima__list--title {
  line-height: 150%;
}
.archive-takashima__list--title a {
  color: #003677;
  text-decoration: none;
  font-weight: 500;
}
.archive-takashima__list--title a:hover {
  color: #61c7dd;
  opacity: 0.8;
  transition: 0.5s;
}
.archive-takashima__list--meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.archive-takashima__list--meta img {
  width: 22.904% !important;
  height: auto !important;
  margin-right: 10px;
  border-radius: 5px;
}
.archive-takashima__list--meta:not(:has(img)) .archive-takashima__list--excerpt {
  width: 100%;
}
.archive-takashima__list--excerpt {
  line-height: 170%;
  width: calc(77.096% - 10px);
}
.archive-takashima .read-more {
  font-size: 12px;
}
.archive-takashima .read-more:hover {
  opacity: 0.8;
  color: #61c7dd;
  transition: 0.5s;
}

@media screen and (max-width: 960px) {
  .archive-takashima {
    margin-top: 40px !important;
  }
  .archive-takashima__list {
    width: 100%;
  }
  .archive-takashima__list--days {
    flex-wrap: wrap;
  }
  .archive-takashima__list--date {
    margin-bottom: 10px;
  }
  .archive-takashima__list--meta {
    flex-wrap: wrap;
    justify-content: center;
  }
  .archive-takashima__list--meta img {
    width: 120px !important;
    justify-content: center;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .archive-takashima__list--excerpt {
    width: 100% !important;
  }
  .page-template-page-takashima-note .single-takashima__content {
    margin-top: 40px;
  }
  .page-template-page-takashima-note .single-takashima__header--title {
    font-size: 20px !important;
    line-height: 1.5 !important;
  }
  .page-template-page-takashima-note .btn_center a {
    margin: 20px 0px 0;
  }
}
.page-template-page-clinic .info_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
}
.page-template-page-clinic .info_desc {
  width: 55%;
}
.page-template-page-clinic .info_gmap {
  width: 40%;
}
.page-template-page-clinic .info_desc dt,
.page-template-page-clinic .info_desc dd {
  box-sizing: border-box;
}
.page-template-page-clinic .info_desc dt {
  background: #f0f0f0;
  padding: 5px;
  font-weight: 500;
}
.page-template-page-clinic .info_desc dd {
  padding: 5px;
}
.page-template-page-clinic .info_desc li {
  list-style: disc;
  text-indent: -1rem;
  padding-left: 1rem;
}
.page-template-page-clinic .info_desc ul {
  margin-left: -1.6rem;
  margin-top: 10px;
  padding-left: 50px;
}
.page-template-page-clinic .info_desc ul:nth-of-type(2) li {
  list-style: none;
}
.page-template-page-clinic .info_desc .fa-subway:before {
  color: #3366ff;
  font-size: 1.1rem;
  line-height: 120%;
}
.page-template-page-clinic .tokutei {
  margin-top: 30px;
}
.page-template-page-clinic .tokutei h2 {
  background: #f0f0f0;
  padding: 5px 0;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 1px;
  color: #333;
  text-align: center;
}
.page-template-page-clinic .tokutei dl {
  display: flex;
  flex-wrap: wrap;
}
.page-template-page-clinic .tokutei dt,
.page-template-page-clinic .tokutei dd {
  margin: 10px auto;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ccc;
}
.page-template-page-clinic .tokutei dt {
  width: 30%;
}
.page-template-page-clinic .tokutei dd {
  width: 70%;
}
@media screen and (max-width: 960px) {
  .page-template-page-clinic .info_wrap {
    display: block;
    margin-top: 40px;
  }
  .page-template-page-clinic .info_desc,
  .page-template-page-clinic .info_gmap {
    width: 90%;
    margin: 20px auto;
  }
  .page-template-page-clinic .tokutei dl {
    display: block;
  }
  .page-template-page-clinic .tokutei dt,
  .page-template-page-clinic .tokutei dd {
    margin: 10px auto;
    padding-bottom: 10px;
    border-bottom: none;
  }
  .page-template-page-clinic .tokutei dt {
    width: 100%;
    margin-bottom: 5px;
    padding-bottom: 0;
    font-weight: 500;
  }
  .page-template-page-clinic .tokutei dd {
    width: 100%;
    border-bottom: 1px dotted #ccc;
  }
  .page-template-page-clinic .tokutei dt::before {
    content: "［";
  }
  .page-template-page-clinic .tokutei dt::after {
    content: "］";
  }
}

.page-template-page-contact .grecaptcha-badge {
  visibility: visible;
}
.page-template-page-contact input[type=text],
.page-template-page-contact input[type=tel],
.page-template-page-contact input[type=email] {
  border: 1px solid #ccc;
  font-size: 1.1rem;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  background-color: #fafafa;
}
.page-template-page-contact .dl_wrap {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #999;
}
.page-template-page-contact .contact {
  padding-top: 80px;
}
.page-template-page-contact .contact .dl_wrap {
  opacity: 1;
}
.page-template-page-contact .contact dt {
  width: 16rem;
}
.page-template-page-contact .contact dd {
  flex: 1;
  line-height: 100%;
}
.page-template-page-contact .contact input[type=text],
.page-template-page-contact .contact textarea {
  border: 1px solid #ccc;
  font-size: 1.1rem;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  background-color: #fafafa;
}
.page-template-page-contact .contact textarea {
  font-family: "Noto Sans JP", sans-serif;
  height: 300px;
}
.page-template-page-contact .contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.page-template-page-contact .contact select {
  border-radius: 0;
  font-size: 1.2rem;
  padding: 5px;
  background-color: #fafafa;
  border: 1px solid #ccc;
  padding-right: 20px;
}
.page-template-page-contact .contact .select_wrap {
  position: relative;
}
.page-template-page-contact .contact .select_wrap:after {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  position: absolute;
  top: 10px;
  left: 30px;
  color: #ccc;
}
.page-template-page-contact .contact .radio_wrap label {
  margin-right: 10px;
  vertical-align: middle;
}
.page-template-page-contact .contact input[type=submit],
.page-template-page-contact .contact input[type=button],
.page-template-page-contact .confirm input[type=submit],
.page-template-page-contact .confirm input[type=button] {
  width: 228px;
  color: #0724a4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s ease;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid #0724a4;
  border-radius: 100px;
  position: relative;
  background: #fff;
}
.page-template-page-contact .contact input[type=submit]:hover,
.page-template-page-contact .contact input[type=button]:hover,
.page-template-page-contact .confirm input[type=submit]:hover,
.page-template-page-contact .confirm input[type=button]:hover {
  background-color: #0724a4;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.page-template-page-contact .btn_center {
  text-align: center;
}
.page-template-page-contact .wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}
.page-template-page-contact .wpcf7-spinner {
  display: none !important;
}
.page-template-page-contact .wpcf7-form.sent .wpcf7-response-output {
  display: none;
}
@media screen and (max-width: 960px) {
  .page-template-page-contact .contact {
    padding-top: 40px;
  }
  .page-template-page-contact .dl_wrap {
    flex-wrap: wrap;
  }
  .page-template-page-contact .contact dt {
    width: 100%;
    margin-bottom: 5px;
  }
}

.page-template-page-confirm .confirm {
  text-align: center;
}
.page-template-page-confirm .confirm h1 {
  margin-bottom: 20px;
}
.page-template-page-confirm .confirm h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.page-template-page-confirm .confirm p {
  line-height: 150%;
}
.page-template-page-confirm .confirm .btn_center {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.page-template-page-confirm .confirm .btn_center input {
  margin: 10px;
}
.page-template-page-confirm .formTable {
  margin-top: 20px;
  margin: 20px auto;
}
.page-template-page-confirm .formTable th,
.page-template-page-confirm .formTable td {
  padding: 10px;
}
.page-template-page-confirm .formTable td {
  text-align: left;
}
.page-template-page-confirm .formTable th {
  background: rgba(158, 117, 30, 0.3) 60%;
  font-weight: 500;
  text-align: left;
}
.page-template-page-confirm .contact input[type=submit],
.page-template-page-confirm .contact input[type=button],
.page-template-page-confirm .confirm input[type=submit],
.page-template-page-confirm .confirm input[type=button] {
  width: 228px;
  color: #0724a4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s ease;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid #0724a4;
  border-radius: 100px;
  position: relative;
  background: #fff;
}
.page-template-page-confirm .contact input[type=submit]:hover,
.page-template-page-confirm .contact input[type=button]:hover,
.page-template-page-confirm .confirm input[type=submit]:hover,
.page-template-page-confirm .confirm input[type=button]:hover {
  background-color: #0724a4;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.page-template-page-confirm .wpcf7-spinner {
  display: none;
}

.page-template-page-thanks {
  text-align: center;
}
.page-template-page-thanks h2 {
  margin-bottom: 20px;
}
.page-template-page-thanks .btn_center {
  margin-top: 40px;
}
.page-template-page-thanks .btn_center a {
  text-align: center;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s ease;
  padding-top: 16px;
  padding-bottom: 16px;
  border: 1px solid #0724a4;
  border-radius: 100px;
  position: relative;
  background: #fff;
  width: 228px;
  color: #0724a4;
  margin: 0 auto;
  display: block;
}
.page-template-page-thanks .btn_center a:hover {
  background-color: #0724a4;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-template-page-online .online_top_h {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online_top_h {
    margin-top: 40px;
  }
}
.page-template-page-online .online_top_h span {
  font-size: 1rem;
  letter-spacing: 2px;
}
.page-template-page-online .online_top_p {
  color: #f00;
  text-align: center;
  font-weight: 500;
}
.page-template-page-online .online_top_p span {
  background: linear-gradient(transparent 60%, #ffff66 0%);
  font-size: 17px;
}
.page-template-page-online .online_top_sub {
  text-align: center;
  background: #003677;
  margin-top: 10px;
  font-size: 25px;
  width: 400px;
  border: 2px solid #003677;
  border-radius: 5px;
  color: #fff;
  margin: 10px auto 20px;
  padding: 10px;
}
@media screen and (max-width: 959px) {
  .page-template-page-online .online_top_sub {
    font-size: 20px;
    padding: 10px 0;
    width: auto;
  }
}
.page-template-page-online .online_top_sub a {
  -webkit-text-decoration: underline #fff;
  text-decoration: underline #fff;
  color: #fff;
}
.page-template-page-online .online_info {
  padding: 40px 0;
  background-color: #fff;
  border: 3px solid #003677;
  max-width: 900px;
  margin: 0 auto;
}
.page-template-page-online .online_info ul {
  list-style: none;
  padding: 0;
}
.page-template-page-online .online_info_tel {
  font-size: 2rem;
}
.page-template-page-online .online_qr {
  background-color: #fafafa;
  padding: 50px 0;
}
.page-template-page-online .online_qr img {
  padding: 10px;
  background: #fff;
}
.page-template-page-online .online_box.online_rei {
  margin-top: 40px;
}
.page-template-page-online .online_box.online_rei h4 {
  text-align: center;
  margin-bottom: 20px;
}
.page-template-page-online .online_box.online_rei h4 span {
  color: #fff;
  background-color: #3366ff;
  display: inline-block;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 1rem;
  font-size: 0.9rem;
  margin-right: 10px;
}
.page-template-page-online .online_box.online_rei h4 span:last-child {
  margin-right: 0;
}
.page-template-page-online .online_info {
  margin-bottom: 0;
  padding: 40px 0;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online_info {
    padding: 20px 0;
  }
}
.page-template-page-online .online_info_title {
  font-size: 26px;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online_info_title {
    font-size: 20px;
  }
}
.page-template-page-online .online__time {
  margin-top: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online__time {
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
.page-template-page-online .online__time-table {
  height: 100%;
  table-layout: auto;
  border-collapse: collapse;
  text-align: center;
  margin-top: 10px;
  margin: 0 auto;
  width: 590px;
}
.page-template-page-online .online__time-table table {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online__time-table {
    width: 90%;
    margin: 0 auto;
  }
}
.page-template-page-online .online__time-tr {
  border-bottom: 1px solid #c1c7e2;
}
.page-template-page-online .online__time-tr:first-of-type {
  border-top: 1px solid #c1c7e2;
  border-bottom: 1px dotted #c1c7e2;
}
.page-template-page-online .online__time-th {
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #0724a4;
}
.page-template-page-online .online__time-th:first-of-type {
  padding: 0;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online__time-th {
    font-size: 14px;
  }
}
.page-template-page-online .online__time-td {
  font-size: 16px;
  color: #343434;
  padding: 12px 16px;
  border: none;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online__time-td {
    padding: 10px 5px;
    font-size: 12px;
  }
}
.page-template-page-online .online__time-td-x {
  color: #0724a4;
}
.page-template-page-online .online__time-td sup {
  position: absolute;
  top: 5px;
  right: 10px;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online__time-td sup {
    top: 3px;
    right: 0px;
  }
}
.page-template-page-online .online__time-td:first-of-type {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  padding: 0;
}
.page-template-page-online .online__time-thead {
  border: none;
}
.page-template-page-online .online__time-thead .online__time-tr {
  border-bottom: none;
}
.page-template-page-online .online__time-caption {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  caption-side: bottom;
  text-align: left;
  margin-top: 10px;
}
.page-template-page-online .online_info_tel {
  font-size: 26px;
}
@media screen and (max-width: 960px) {
  .page-template-page-online .online_info_tel {
    font-size: 20px;
  }
}
.page-template-page-online .online_qr {
  background-color: #fafafa;
  padding: 50px 0;
}
.page-template-page-online .online_qr img {
  padding: 10px;
  background: #fff;
}
.page-template-page-online .caution_tmp p {
  line-height: 140%;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px 0;
  margin-top: 20px;
  border: 2px solid #555;
}
.page-template-page-online .online {
  padding-top: 50px;
  max-width: 900px;
  margin: 0 auto;
}
.page-template-page-online .online_flow_inner {
  padding: 20px;
  box-sizing: border-box;
  background: #e9e9e9;
}
.page-template-page-online .online .online_flow {
  text-align: center;
}
.page-template-page-online .online ol {
  display: inline-block;
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-template-page-online .online ol li {
  padding: 10px 30px;
  border: 4px solid #3366ff;
  border-radius: 50px;
  margin-bottom: 20px;
  color: #3366ff;
  font-weight: 500;
  position: relative;
  background: #fff;
}
.page-template-page-online .online ol li img {
  padding: 10px;
  background: #fff;
  border-radius: 5px;
}
.page-template-page-online .online ol li:first-child {
  border-radius: 20px;
}
.page-template-page-online .online ol li.important {
  border: 4px solid #3366ff;
  color: #fff;
  background: #3366ff;
}
.page-template-page-online .online ol li::after {
  color: #3366ff;
  font-family: "Font Awesome 5 Free";
  content: "\f063";
  font-weight: 900;
  display: block;
  position: absolute;
  bottom: -29px;
  left: 0;
  right: 0;
}
.page-template-page-online .online ol li:last-child::after {
  display: none;
}
.page-template-page-online .online ol li p img {
  width: 110px;
  height: 110px;
  margin-top: 10px;
  margin: 10px auto 0;
}
.page-template-page-online .online h2 {
  background-color: #e0edff;
  padding: 10px 0;
  line-height: 100%;
  font-weight: 500;
  text-align: center;
  font-size: 26px;
  color: #333;
}
.page-template-page-online .online h3 {
  line-height: 100%;
  text-align: center;
  padding: 20px;
  margin: 20px auto;
  font-size: 1.1rem;
}

.post-type-archive-information .archive-information {
  margin-top: 88px;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information {
    margin-top: 40px;
  }
}
.post-type-archive-information .archive-information__inner {
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__inner {
    margin-top: 40px;
    flex-direction: column;
  }
}
.post-type-archive-information .archive-information__inner:first-of-type {
  margin-top: 0;
}
.post-type-archive-information .archive-information__year-label {
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: #0724a4;
  width: 200px;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__year-label {
    width: 100%;
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.post-type-archive-information .archive-information__list {
  width: calc(100% - 200px);
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__list {
    width: 100%;
  }
}
.post-type-archive-information .archive-information__list--item {
  display: flex;
  align-items: flex-start;
  padding: 32px 46px 32px 16px;
  border-bottom: 1px solid #c1c7e2;
  position: relative;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__list--item {
    padding: 4% 8% 4% 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.post-type-archive-information .archive-information__list--item:after {
  content: "";
  background: url(../img/common/arrow-right.svg) no-repeat;
  background-size: contain;
  width: 20.4px;
  height: auto;
  aspect-ratio: 20/12;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.047%;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__list--item:after {
    width: 4.167%;
    height: auto;
  }
}
.post-type-archive-information .archive-information__list--date {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  margin-right: 30px;
  color: #9ca7d5;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__list--date {
    margin-right: 0;
    font-size: 12px;
  }
}
.post-type-archive-information .archive-information__list--title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  color: #343434;
  flex: 1;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__list--title {
    font-size: 14px;
  }
}
.post-type-archive-information .archive-information__pagination {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__pagination {
    margin-top: 20px;
  }
}
.post-type-archive-information .archive-information__pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.post-type-archive-information .archive-information__pagination .page-numbers .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #c1c7e2;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #0724a4;
  transition: all 0.3s ease;
}
@media screen and (max-width: 960px) {
  .post-type-archive-information .archive-information__pagination .page-numbers .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
.post-type-archive-information .archive-information__pagination .page-numbers .page-numbers.current {
  background-color: #0724a4;
  color: #fff;
  border: none;
}
.post-type-archive-information .archive-information__pagination .page-numbers .page-numbers:hover {
  transition: all 0.3s ease;
  background-color: #0724a4;
  color: #fff;
  border: none;
}

.single-information .single-information {
  margin-bottom: 140px;
}
@media screen and (max-width: 960px) {
  .single-information .single-information {
    margin-bottom: 70px;
  }
}
.single-information .single-information__header--title {
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  color: #0724a4;
}
@media screen and (max-width: 960px) {
  .single-information .single-information__header--title {
    font-size: 22px;
  }
}
.single-information .single-information__header--date {
  font-size: 14px;
  color: #9ca7d5;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  width: 90%;
  max-width: 1200px;
  margin: 16px auto 0;
}
@media screen and (max-width: 960px) {
  .single-information .single-information__header--date {
    font-size: 12px;
    margin: 8px auto 0;
  }
}
.single-information .single-information__content {
  margin-top: 88px;
  margin-bottom: 64px;
}
@media screen and (max-width: 960px) {
  .single-information .single-information__content {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.single-information .single-information__content--inner > * {
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .single-information .single-information__content--inner > * {
    margin-bottom: 30px;
  }
}
.single-information .single-information__content--inner h2 {
  font-family: "Noto Serif JP", serif;
  padding-bottom: 24px;
  margin-bottom: 30px;
  line-height: 1.7;
  position: relative;
}
@media screen and (max-width: 960px) {
  .single-information .single-information__content--inner h2 {
    padding-bottom: 12px;
    margin-bottom: 29px;
  }
}
.single-information .single-information__content--inner h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: #0724a4;
}
.single-information .single-information__content--inner a {
  position: relative;
}
.single-information .single-information__content--inner a:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #0724a4;
  transition: all 0.3s ease;
}
.single-information .single-information__content--inner a:hover:before {
  width: 100%;
}
.single-information .single-information__content--inner blockquote {
  margin: 0 0 20px;
  padding: 1em 1.5em;
  background: #f9f9f9;
  border-left: 5px solid #0724a4;
  color: #555;
  font-style: italic;
}
.single-information .single-information__content--inner code {
  background-color: #f5f5f5;
  color: #0724a4;
  padding: 0.2em 0.4em;
  margin: 0;
  font-size: 0.95em;
  border-radius: 4px;
}
.single-information .single-information__content--inner ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.single-information .single-information__content--inner ul li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.5em;
  text-indent: 0;
}
.single-information .single-information__content--inner ul li:last-of-type {
  margin-bottom: 0;
}
.single-information .single-information__content--inner ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 2px;
  color: #333;
  font-size: 1em;
  line-height: 1.5;
}
.single-information .single-information__content--inner ol {
  counter-reset: my-counter;
  width: -moz-fit-content;
  width: fit-content;
}
.single-information .single-information__content--inner ol li {
  margin-bottom: 8px;
  text-indent: 0;
  position: relative;
  padding-left: 1.5em;
}
.single-information .single-information__content--inner ol li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  border: 1px solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  width: 20px;
  line-height: 1;
  position: absolute;
  top: 5px;
  left: 0;
}
.single-information .single-information__content--inner table thead {
  border-bottom: 2px solid;
}
.single-information .single-information__content--inner table td {
  border-top: none;
}
.single-information .single-information__content--inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
@media screen and (max-width: 960px) {
  .single-information .single-information__content--inner p {
    font-size: 16px;
  }
}
.single-information .single-information .c-button {
  display: block;
  width: 245px;
  padding-right: initial;
  padding-left: 20px;
  margin: 0 auto;
}
.single-information .single-information .c-button::after {
  background: url(../img/common/arrow-left.svg) no-repeat;
  right: initial;
  left: 20px;
}
.single-information .single-information .c-button:hover::after {
  background: url(../img/common/arrow-left-white.svg) no-repeat;
}

.page-template-page-privacy-policy .privacy-policy {
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .page-template-page-privacy-policy .privacy-policy {
    margin-top: 40px;
  }
}
.page-template-page-privacy-policy .privacy-policy__text {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .page-template-page-privacy-policy .privacy-policy__text {
    margin-bottom: 40px;
  }
}
.page-template-page-privacy-policy .privacy-policy__text2 {
  margin-bottom: 20px;
}
.page-template-page-privacy-policy .privacy-policy__list {
  margin-bottom: 60px;
  padding-left: 1.5em;
}
.page-template-page-privacy-policy .privacy-policy__list-item {
  list-style: disc;
}
.page-template-page-privacy-policy .privacy-policy__title {
  font-size: 26px;
  padding-bottom: 12px;
  margin-bottom: 24px;
  line-height: 1.7;
  position: relative;
}
@media screen and (max-width: 960px) {
  .page-template-page-privacy-policy .privacy-policy__title {
    font-size: 22px;
    padding-bottom: 12px;
    margin-bottom: 20px;
  }
}
.page-template-page-privacy-policy .privacy-policy__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 1px;
  background-color: #0724a4;
}
.page-template-page-privacy-policy .privacy-policy__contact {
  margin-top: 30px;
}
.page-template-page-privacy-policy .privacy-policy__contact-title {
  font-size: 22px;
  margin-bottom: 10px;
  position: relative;
}
.page-template-page-privacy-policy .privacy-policy__contact-text {
  font-family: "Noto Sans JP", sans-serif;
}

.page-404 {
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .page-404 {
    margin-top: 40px;
  }
}
.page-404__title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .page-404__title {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.page-404__text {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .page-404__text {
    margin-bottom: 20px;
    font-size: 13px;
  }
}
.page-404__button {
  text-align: center;
}
.page-404__button--link {
  display: block;
  width: 245px;
  padding-right: initial;
  padding-left: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .page-404__button--link {
    width: 100%;
  }
}
.page-404__button--link:hover:after {
  background: url(../img/common/arrow-left-white.svg) no-repeat;
}
.page-404__button--link::after {
  background: url(../img/common/arrow-left.svg) no-repeat;
  right: initial;
  left: 20px;
}/*# sourceMappingURL=style.css.map */