@charset "UTF-8";
@font-face {
  font-family: "Callifornia";
  src: url("./fonts/Callifornia.woff") format("woff"), url("./fonts/Callifornia.otf") format("opentype"), url("./fonts/Callifornia.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(15px, 1.5vw, 16px);
  font-weight: 500;
  line-height: 2.1;
  color: #192343;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  body {
    line-height: 2.0;
  }
}
@media screen and (max-width: 480px) {
  body {
    line-height: 1.8;
  }
}
:root {
  --kon: #2e4b9b;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --cormorant: "cormorant-garamond", serif;
  --callifornia: "Callifornia", cursive;
}
/* デフォルト（PC） */
.pc {
  display: block;
}
.tb, .sp {
  display: none;
}
/* タブレット表示（768px〜1079px） */
@media (max-width: 1079px) and (min-width: 768px) {
  .pc, .sp {
    display: none;
  }
  .tb {
    display: block;
  }
}
/* スマホ表示（〜767px） */
@media (max-width: 767px) {
  .pc, .tb {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* main */
main a {
  color: var(--kon);
}
main p a:hover {
  color: #EA3636 !important;
}
/* font */
.cormorant {
  font-family: var(--cormorant) !important;
}
.callifornia {
  font-family: var(--callifornia) !important;
}
.sans {
  font-family: var(--font-sans);
}
.italic {
  font-style: italic;
}
/* color */
.white {
  color: #fff !important;
}
.black {
  color: #000 !important;
}
.kon {
  color: #192343 !important;
}
.gray {
  color: #808080;
}
.deep-blue {
  color: #2A54C7;
}
.bold, b {
  font-weight: bold;
}
/* shadow */
.text-shadow-white {
  text-shadow: 2px 2px 0px white !important;
}
.text-shadow-kon {
  text-shadow: 2px 2px 0px #17375E !important;
  color: #fff !important;
}
.half-kon {
  position: relative;
}
.half-kon + .half-kon {
  padding-top: 0;
}
.half-kon::after {
  content: "";
  position: absolute;
  top: 16.5vw;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #17375E;
  z-index: -1;
}
@media (max-width: 1080px) {
  .half-kon::after {
    top: 30vw;
  }
}
@media (max-width: 768px) {
  .half-kon::after {
    top: 32.5vw;
  }
}
.alR {
  text-align: right;
}
.alC {
  text-align: center;
}
.alC span {
  display: inline-block;
}
/* section */
section {
  padding: 4em 0px;
  position: relative;
}
@media screen and (max-width: 768px) {
  section:last-child {
    padding: 3em 0px;
    position: relative;
  }
}
.head-wrap + section {
  padding: 2em 0px 5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .head-wrap + section {
    padding: 1.5em 0px 3em;
    position: relative;
  }
}
section:last-child {
  padding: 4em 0px 6em;
  position: relative;
}
@media screen and (max-width: 768px) {
  section:last-child {
    padding: 3em 0px 4em;
    position: relative;
  }
}
section:last-child {
  padding: 4em 0px 6em;
  position: relative;
}
@media (max-width: 768px) {
  section:last-child {
    padding: 3em 0px 4em;
    position: relative;
  }
}
section .inner {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
  padding: 0;
}
section .inner + .inner {
  margin-top: 1.0em;
}
section .inner:nth-of-type(n+2) {
  padding-top: 2em;
}
.head-wrap {
  padding: 6em 0 0;
}
@media (max-width: 1100px) {
  .head-wrap {
    padding: 4.5em 0 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 3em 0px;
  }
  .head-wrap + section {
    padding: 2em 0px 3em;
    position: relative;
  }
  section p {
    font-family: "Noto sans JP", san-serif;
  }
}
section .content-title + .inner {
  padding-top: 1.0em;
}
section .flex-box {
  display: flex;
  gap: 3em;
}
section .flex-box .left {
  flex: 4;
}
section .flex-box .right {
  flex: 2;
}
@media (max-width: 1080px) {
  section .flex-box {
    flex-direction: column;
  }
}
/* voice */
.voice-box {
  background-color: #FDFDFD;
  border: 3px solid #C9D1E5;
  border-radius: 10px;
  padding: 2.5% 3% 3%;
}
.half-kon .voice-box {
  margin-bottom: 4.0em;
}
.voice-box h5 {
  color: #142760;
  font-size: 1.2em;
  line-height: 1.5em;
}
.voice-box p + h5, .voice-box div + h5, .voice-box ul + h5 {
  margin-top: 2.5em !important;
}
.voice-box p + .chart {
  margin-top: 2.3em !important;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.back-ground-kon {
  background-color: #17375E;
  color: #fff;
}
.back-ground-gray {
  background-color: #F5F5F5;
}
.back-ground-purple {
  background-color: #E9ECF5;
}
.display-flex {
  display: flex !important;
}
@media (max-width: 768px) {
  .voice-box p + .chart {
    margin-top: 2.3em !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
/* seminar */
.seminar-box h5 {
  color: #2E4B9B;
  font-size: 1.4em;
}
/* title-wrap */
.title-wrap {
  line-height: normal;
}
.title-wrap h2 {
  font-family: "cormorant-garamond", serif;
  font-weight: 400;
  font-style: italic;
  color: #2e4b9b;
  font-size: clamp(2.4em, 4.4vw, 4.4em);
}
.title-wrap h2.news {
  font-size: clamp(2.6em, 7vw, 4.8em);
}
.title-wrap h2.link {
  font-size: clamp(2.0em, 3.4vw, 3.8em);
}
.title-wrap h3 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.45em;
  font-weight: 600;
  color: #142760;
  margin-bottom: 1em;
  padding-left: 0.8em;
}
.title-wrap h3::before {
  content: "";
  position: absolute;
  left: 0;
  width: 7px;
  height: 1em;
  background-color: #142760;
  top: 8px;
}
.title-wrap .sub-title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: 1.0em;
  margin-bottom: 1.0em;
}
.title-wrap h3.white {
  color: #fff;
}
.title-wrap h3.white::before {
  background-color: #fff;
}
@media (max-width: 768px) {
  .title-wrap .sub-title {
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-top: 1.0em;
    margin-bottom: 1.0em;
  }
}
/* content-title */
.content-title {
  padding-bottom: 3em;
  width: 93%;
  margin-left: auto;
  margin-right: auto;
}
.content-title h1 {
  font-size: clamp(1.3em, 3.0vw, 1.7em);
  position: relative;
  text-align: center;
  color: #142760;
  line-height: normal;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  font-feature-settings: "palt"1;
  -webkit-font-feature-settings: 'palt'1; // for Android 4.4 font-feature-settings: 'palt' 1;
}
  .content-title h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.65em;
    width: 100%;
    height: 4px;
    background-color: #2E4B9B;
  }
  .content-title h1:only-child {
   margin-bottom: 1.0em;
  }
  .content-title h1.white::after {
    background-color: #fff;
  }
  .content-title h1 span {
    display: inline-block;
  }
  .content-title .name-wrap {
    text-align: center;
    margin-top: 2em;
    font-size: 1.2em;
  }
  @media (max-width: 768px) {
    .content-title .name-wrap {
      font-size: 1.1em;
    }
    .content-title .name-wrap span {
      display: inline-block;
    }
  }
  .content-title .name-wrap .name {
    font-size: 1.4em;
    font-family: var(--font-serif);
    font-weight: bold;
  }
  @media (max-width: 768px) {
    .content-title {
      padding-bottom: 2.5em;
    }
  }
  @media (max-width: 620px) {
    .content-title {
      padding-bottom: 2.0em;
    }
  }
  @media (max-width: 480px) {
    .content-title {
      padding-bottom: 2.0em;
    }
  }
ul+.content-title {
 margin-top:4.0em;
}

  h4 {
    color: #2e4b9b;
    font-size: 1.4em;
    line-height: 1.8;
    text-align: center;
  }
  h5 {
    color: #2e4b9b;
    font-size: 1.4em;
    font-family: var(--font-sans);
    border-bottom: 2px solid #BBC3DD;
    padding-bottom: 0.5em;
    line-height: 1.5em;
  }
  ol {
    font-size: 0.9em;
    list-style: none;
    counter-reset: number;
  }
  ol li {
    counter-increment: number;
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 1em;
  }
  ol li::before {
    content: counter(number);
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 1.5em;
    height: 1.5em;
    background-color: #2E4B9B;
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media screen and (max-width: 480px) {
    ol li::before {
      top: 0.4em;
    }
  }
  ol.shiro li::before {
    background-color: #fff;
    color: #2E4B9B;
    border: 1px solid #2E4B9B;
  }
  h4 span {
    display: inline-block;
    text-align: center;
  }
  h4.align_left {
   text-align: left;
	  margin-bottom: 0.5em;
  }
  .main-image {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
    padding: 1em 0px;
    position: relative
  }
  .main-image img {
    width: 100%;
    height: auto
  }
  .main-image p {
    position: absolute;
    right: 1.0em;
    bottom: 2.0em;
    font-size: 0.9em;
    font-family: "Klee One", cursive;
    font-weight: 600;
    padding: 0.1em 0.7em;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    display: block;
  }
  @media (max-width: 768px) {
    .main-image {
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      width: 100vw;
      max-width: 100vw;
      padding: 0.5em 0px 1.0em;
      position: relative
    }
    .main-image p {
      font-size: 0.8em;
      right: 0.5em;
      bottom: 1.75em;
    }
  }
  @media (max-width: 480px) {
    .main-image p {
      position: relative;
      text-align: right;
      width: 98%;
      margin: 2.3em auto -2.0em;
      padding: 0;
      padding-bottom: 0;
      background-color: rgba(255, 255, 255, 0);
      display: block;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
    }
  }
  .breadcrumb {
    font-size: 0.8em;
  }
  .breadcrumb a {
    margin-right: 0.5em;
  }
  .breadcrumb a:hover {
    color: #EA3636;
  }
  .breadcrumb span {
    margin-left: 0.5em;
  }
  .content > *:nth-child(n+2) {
    margin-top: 1.96em;
  }
  .content .image-wrap {
    background-color: #fff;
    padding: 5%;
    margin-top: 0.6em !important;
    height: calc(100% - 3.0em);
    ;
    padding-bottom: 2.0em
  }
  .content .image-wrap img {
    width: 80%;
    margin: auto;
  }
  .content .image-wrap + h3 {
    margin-top: 2.0em;
  }
  @media (max-width: 1080px) {
    .content .image-wrap img {
      width: 100%;
      margin: auto;
    }
  }
  /* success-wrap */
  .success-wrap {
    align-items: center;
    background-color: #2A54C7;
    display: flex;
    padding: 0.5em 2em;
    margin-top: 2em;
    border-radius: 5em;
    line-height: normal;
  }
  .success-wrap span {
    font-family: var(--callifornia);
    font-size: clamp(1.4em, 4vw, 1.8em);
    padding-right: 0.8em;
    white-space: nowrap;
    transform: rotate(-8deg);
    display: inline-block;
  }
  .success-wrap p {
    font-family: "Klee One", cursive;
    font-weight: 700;
    font-size: 0.95em;
  }
  @media (max-width: 768px) {
    .success-wrap {
      flex-direction: column;
      padding-bottom: 1.2em;
      border-radius: 2em
    }
    .success-wrap span {
      margin: auto auto 0.3em;
      text-align: center;
      font-size: clamp(1.8em, 6vw, 2.4em);
      padding: 0px;
    }
  }
  /* .col2 */
  .col2 {
    display: flex;
    gap: 3%;
    font-weight: 500;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .col2 > div {
    width: 48%;
  }
  .col2 > div + div {
    margin-top: 0 !important;
  }
  .content.col2 .image-wrap img {
    width: 100%;
    margin: auto;
  }
  .col2 + .col2 {
    margin-top: 2.0em;
  }
  .col3 + .col2 {
    margin-top: 4.0em;
  }
  @media (max-width: 1080px) {
    .col2 {
      display: block;
    }
    .col2 > div {
      width: 100%;
    }
    .col2 > div + div {
      margin-top: 2.0em !important;
    }
  }
  /* .col3 */
  .col3 {
    display: flex;
    gap: 3%;
    font-family: var(--font-sans);
    font-weight: 500;
    justify-content: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .col3 .item {
    text-align: center;
    width: 33%;
  }
  .col3 .item p {
    font-size: clamp(0.8em, 2vw, 0.9em);
    line-height: normal;
    margin-top: 8px;
  }
  .col3 .item img {
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
  p + .col3 {
    margin-top: 2.0em !important;
  }
  div + .col3 {
    margin-top: 3.0em !important;
  }
  div.col3 + .col3 {
    margin-top: 2.0em !important;
  }
  .col3.width100 {
    width: 100%;
  }
  .col3.width100 .item {
    text-align: center;
    width: 38%;
  }
  @media (max-width: 768px) {
    .col3 {
      width: 100%;
    }
    .col3 .item {
      flex: 1 1 30%;
    }
  }
  .image-max-length {
    width: 50%;
  }
  @media (max-width: 768px) {
    .image-max-length {
      width: 80%;
    }
  }
  .image-max-length .item {
    max-width: 280px;
  }
  /* .irregular  */
  .irregular {
    position: relative;
    text-align: center;
    font-family: var(--font-sans);
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(0.8em, 2vw, 0.9em);
    line-height: normal;
    margin-top: 9px !important;
  }
  /* .col4 */
  .col4 {
    display: flex;
    gap: 3%;
    font-family: var(--font-sans);
    font-weight: 500;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .col4 .item {
    flex: 1 1 calc(20% - 20px);
    text-align: center;
  }
  .col4 .item img {
    width: 100%;
    height: auto;
  }
  .col4 .item p {
    font-size: clamp(0.6em, 2vw, 0.9em);
    line-height: normal;
    margin-top: 9px;
  }
  .col4 .item p span {
    display: inline-block;
  }
  p + .col4 {
    margin-top: 2.0em !important;
  }
  div + .col4 {
    margin-top: 3.0em !important;
  }
  @media (max-width: 768px) {
    .col4 {
      width: 100%;
    }
    .col4 .item {
      flex: 1 1 40%;
    }
  }
  .arrow {
    width: clamp(1.5em, 4vw, 3em);
    position: relative;
    top: -0.7em;
  }
  /* main-visual-sec */
  .main-visual-sec {
    overflow: hidden;
    padding: 5.5em 0px 0px;
  }
  .main-visual-sec .lead-wrap {
    position: relative;
    max-width: 1500px;
    width: 95%;
    margin: 0 auto;
    font-weight: 500;
  }
  .main-visual-sec .lead-wrap h1 {
    font-size: clamp(1.6em, 3.0vw, 2.4em);
    line-height: 1.4em;
    margin-bottom: 0.7em;
    padding-left: 0.3em;
    font-weight: 500;
  }
  .main-visual-sec .lead-wrap p.callifornia {
    position: absolute;
    top: 20%;
    right: -20%;
    transform: translateX(-50%) rotate(-6deg);
    z-index: 2;
    white-space: nowrap;
    color: #2A54C7;
    text-shadow: 2px 2px 0px white;
    font-size: clamp(2em, 7vw, 7em);
  }
  @media screen and (min-width: 601px) {
    .main-visual-sec .lead-text {
      display: none;
    }
  }
  @media screen and (max-width: 600px) {
    .main-visual-sec .lead-text {
      display: inline-block;
      font-size: clamp(0.8em, 1.6vw, 1.5em);
      line-height: 2.2em;
      padding: 1.3em 0px;
      text-align: center;
      font-family: "Klee One", cursive;
      font-weight: 400;
      font-style: normal;
      line-height: 1.8em;
    }
  }
  .main-visual-sec .lead-text_img {
    max-width: 1400px;
    margin: auto;
    width: 92%;
    padding: 3.4vw 0px;
  }
  @media screen and (max-width: 600px) {
    .main-visual-sec .lead-text_img {
      display: none;
    }
  }
  .main-visual {
    max-height: 650px;
    background-color: #17375E;
	  overflow: hidden;
  }
  @media (min-width: 1800px) {
    .main-visual-sec .lead-wrap h1 {
      font-size: clamp(1.4em, 3.4vw, 2.8em);
      line-height: 2.4em;
      margin-bottom: 0.7em;
      padding-left: 0.3em;
      font-weight: 500;
    }
  }
  @media (max-width: 1300px) {
    .main-visual-sec {
      overflow: hidden;
      padding: 4.5em 0px 0px;
    }
    .main-visual-sec .lead-wrap h1 {
      margin-bottom: 0.6em;
    }
  }
  @media (max-width: 1080px) {
    .main-visual-sec {
      overflow: hidden;
      padding: 4.5em 0px 0px;
    }
  }
  @media (max-width: 768px) {
    .main-visual-sec .lead-text {
      text-align: left;
    }
    .main-visual-sec .lead-text br {
      display: none;
    }
    .main-visual-sec .lead-text {
      font-size: clamp(1.0em, 2.2vw, 1.6em);
      line-height: 1.7em;
      padding: 1em 0px;
      text-align: justify;
      font-family: "Klee One", cursive;
      font-weight: 400;
      font-style: normal;
    }
  }
  .swiper-slide img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 3s ease;
  }
  @media screen and (min-width: 601px) {
    .swiper-slide img.pc {
      display: inline-block;
    }
  }
  @media screen and (max-width: 600px) {
    .swiper-slide img.pc {
      display: none;
    }
  }
  @media screen and (min-width: 601px) {
    .swiper-slide img.sp {
      display: none;
    }
  }
  @media screen and (max-width: 600px) {
    .swiper-slide img.sp {
      display: inline-block;
    }
  }
  .main-visual-sec .lead-wrap h1 {
    font-size: clamp(1.4em, 2.8vw, 2.8em);
  }
  .swiper-slide-active img {
    transform: scale(1.08);
  }
  .news-sec .news-section {
    display: flex;
    gap: 7em;
    width: 100%;
  }
  .news-sec .news-section .left {}
  .news-sec .news-section .right {
    flex: 1;
    width: 100%;
  }
  @media (max-width: 480px) {
    .main-visual-sec .lead-wrap h1 {
      text-align: center;
    }
    .main-visual-sec .lead-wrap p.callifornia {
      position: absolute;
      top: 90%;
      right: -23%;
      transform: translateX(-50%) rotate(-6deg);
      z-index: 2;
      white-space: nowrap;
      color: #2A54C7;
      text-shadow: 2px 2px 0px white;
      font-size: clamp(2em, 4vw, 4em);
    }
  }
  @media (max-width: 1080px) {
    .news-sec .news-section {
      flex-direction: column;
      justify-content: space-between;
      gap: 2em;
    }
    .news-sec .news-section .left {
      display: flex;
      justify-content: space-between;
      margin-bottom: -2.0em;
    }
  }
  .news-list li {
    display: flex;
    gap: 0.5em;
    background: transparent;
    padding: 1em 0px;
    border-bottom: 1px dotted #98a6b6;
  }
  @media (max-width: 768px) {
    .news-list li {
      flex-direction: column;
    }
  }
  .news-list li .news-date {
    color: #2E4B9B;
    letter-spacing: 1px;
    margin-right: 1.2em;
    font-family: var(--font-serif);
    font-weight: 700;
  }
  @media (max-width: 768px) {
    .news-list li .news-date {
      padding-bottom: 0.5em;
      display: inline-block;
    }
  }
  .news-list li .news-label {
    background-color: #232F53;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.9em;
    padding: 0.2em 0.7em 0.3em;
    margin-right: 1.2em;
  }
  .news-list li .news-title {
    color: #000;
  }
  /* .message-sec */
  .message-sec {
    position: relative;
    overflow: hidden;
    padding: 5em 0;
  }
  .message-sec .flex-box {
    position: relative;
    align-items: center;
  }
  .message-sec .flex-box .left {
    flex: 1;
  }
  .message-sec .flex-box .right {
    flex: 1;
    position: relative;
  }
  .message-sec h2 {
    white-space: nowrap;
  }
  @media (max-width: 1080px) {
    .message-sec {
      position: relative;
      overflow: hidden;
      padding: 3em 0;
    }
  }
  @media (max-width: 768px) {
    .message-sec {
      padding: 0;
    }
    .message-sec h2 {
      white-space: wrap;
    }
  }
  /* .message-block */
  .message-block {
    margin: 2em 0px 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    position: relative;
    z-index: 2
  }
  .message-block .name {
    font-size: 0.9em;
    margin-bottom: 0;
    margin: 0 0 0 0;
  }
  .overview-sec {
    background-image: url("../images/index/overview-sec-02.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1em;
    padding-bottom: 0;
    position: relative;
  }
  .overview-sec .left {
    position: relative;
    z-index: 1;
  }
  .overview-sec:after {
    content: "";
    width: 100vw;
    background-color: #FFF;
    display: block;
    height: calc(8.1vw + 1.0em);
    position: absolute;
    bottom: 0;
    z-index: 1
  }
  .overview-sec .medeical_message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.0em;
    position: relative;
    z-index: 2;
  }
  .overview-sec .medeical_message .message-block {
    margin: 0;
  }
  .overview-sec .medeical_message .img-block {
    -webkit-flex: 1;
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 10%;
    width: 80%;
    margin-top: 2.0em;
  }
  .overview-sec .medeical_message p + .custom-button {
    margin-top: 3.0em;
  }
  .overview-sec img.pc_img {
    display: inline-block;
  }
  .overview-sec img.sp_img {
    display: none;
  }
  @media (max-width: 820px) {
    .overview-sec .medeical_message {
      display: block;
    }
    .overview-sec:after {
      height: calc(9.6vw + 2.0em)
    }
  }
  .overview-sec img.pc_img {
    display: none;
  }
  .overview-sec img.sp_img {
    display: inline-block;
  }
  @media (max-width: 820px) {
    .overview-sec .medeical_message .img-block {
      width: 90%;
      margin-left: auto;
      margin-right: auto;
      margin-top: 4.0em;
    }
  }
  /* .intro-sec */
  .intro-sec {
    position: relative;
    overflow: hidden;
  }
  .intro-sec::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: #17375E;
    z-index: -2;
  }
  .intro-sec .intro-image {
    margin-bottom: 2.0em;
  }
  /* .catch-inner  */
  .catch-inner {
    text-align: center;
    margin-bottom: 4em;
  }
  .catch-inner .catch-title {
    font-size: clamp(25px, 4vw, 50px);
    font-weight: 500;
  }
  .catch-inner .catch-lead {
    font-size: 1.1em;
  }
  .message-sec p + .custom-button {
    margin-top: 2.0em;
  }
  .intro-sec .inner {
    position: relative;
    z-index: 10
  }
  @media (max-width: 820px) {
    .catch-inner {
      text-align: left;
    }
    .content-wrap {
      position: relative;
      top: -1.5em;
    }
    .overview-sec {
      text-align: center;
      margin-bottom: 0em;
    }
    .overview-sec::before {
      background-image: url(../images/index/overview-sec-01_sp.png);
      background-size: contain;
      bottom: 30px;
      max-width: 100%;
      background-position: center;
      transform: translate(0%, 0%);
    }
  }
  .message-inner {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }
  .text-column {
    width: 600px;
    position: relative;
    z-index: 2
  }
  .text-column h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #000;
  }
  .text-column p {
    font-size: 1.0rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
  }
  .text-column .name {
    font-size: 1rem;
  }
  .text-column .name + p {
    margin-top: 1.0em;
  }
  .button-link {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #3b5093;
    border-radius: 50px;
    color: #3b5093;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  .button-link:hover {
    background-color: #3b5093;
    color: #fff;
  }
  .image-overflow {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: calc((50vw - 1200px) / 2 + 800px); /* ← 右にはみ出す */
    z-index: 1;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
    max-width: 600px;
  }
  .image-overflow img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
  }
  @media (max-width: 820px) {
    .message-inner {
      flex-direction: column;
      padding: 30px 0;
    }
    .text-column {
      width: 100%;
      box-shadow: none;
      background: #fff;
    }
    .image-overflow {
      position: static;
      width: 75%;
      height: auto;
      margin-top: 4.0em;
    }
    .image-overflow img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }
  }
  /* member-slider-sec */
  .member-slider-sec {
    padding: 0;
  }
  .member-slider-sec::before {
    content: "";
    position: absolute;
    top: -100%;
    width: 100%;
    height: 150%;
    background: #17375E;
    transform: skewY(-8deg);
    z-index: -1;
  }
  .skew-slider {}
  .back-ground-8 {
    position: relative;
    margin-top: -100px;
  }
  .back-ground-8::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 80%;
    background-color: #17375E;
    transform: rotate(-8deg);
    z-index: -2;
  }
  .skew-slider .swiper-slide img {
    transition: transform 0.1s linear;
    will-change: transform;
    margin-top: 100%;
  }
  @media (max-width: 1080px) {
    .skew-slider .swiper-slide img {
      margin-top: 50%
    }
  }
  @media (max-width: 768px) {
    .back-ground-8 {
      position: relative;
      margin-top: -200px;
      padding-top: 180px;
      height: 200%;
    }
    .back-ground-8::before {
      height: 94%;
    }
  }
  @media (max-width: 768px) {
    .link-sec {
      padding: 0px 0px 5em;
      margin-top: 1em;
    }
  }
  .link-sec > p {
    position: absolute;
    top: -10%;
    right: -20%;
    transform: translateX(-50%) rotate(-8deg);
    z-index: 2;
    white-space: nowrap;
    color: #2A54C7;
    text-shadow: 2px 2px 0px white;
    font-size: clamp(3em, 7vw, 6em);
  }
  .link-sec .flex-box2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0px;
    text-align: center;
  }
  .link-sec .flex-box2 .left {
    flex: 1;
  }
  .link-sec .flex-box2 .right {
    flex: 1;
  }
  .insta-sec {
    background-color: #f4f5f7;
  }
  .insta-sec .title-wrap h2 {
    text-align: center;
  }
  .insta-sec .title-wrap p {
    text-align: center;
    line-height: 2.0em;
  }
  .insta-sec .custom-button {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2.0em !important
  }
  .insta-sec .lightwidget_wrap {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    margin-top: 2.0em;
  }
  @media (max-width: 768px) {
    .link-sec .flex-box2 {
      flex-direction: column;
      gap: 3em;
    }
    .insta-sec {
      text-align: center;
    }
    .link-sec > p {
      position: absolute;
      top: -3%;
    }
  }
  .insta-sec .title-wrap p {
    margin-top: 1em;
    text-align: center;
  }
  .insta-sec .title-wrap p span {
    display: inline-block;
  }
  @media (max-width: 480px) {
    .insta-sec .title-wrap p {
      margin-top: 1em;
      text-align: justify;
    }
    .insta-sec .title-wrap p span {
      display: inline;
    }
    .insta-sec .title-wrap p.sub-title {
      text-align: center;
    }
  }
.section-image_s {
   width: 70%;
    position: relative;
	  margin: 2.0em auto 4.0em;
  }
@media screen and (max-width: 800px) {
.section-image_s {
	  margin: 3.0em auto 3.0em;
  }
	}
@media screen and (max-width: 600px) {
 .section-image_s {
	 width: 80%;
  }
	}
 .section-image_s p {
    text-align: center;
   font-size: clamp(3.0em, 6.0em, 6.0em);
    line-height: 1.0em;
    margin-top: 1.0em;
    font-weight: 400;
    font-style: italic;
    font-family: var(--callifornia);
    position: absolute;
    bottom: -0.5em;
    left: 50%;
    color: #FF8674;
    text-shadow: 1px 1px 0px #FFF;
    -webkit-transform: translate(-50%, 0); /* Safari用 */
    transform: translate(-50%, 0);
	 width: 100%;
  }
.section-image_s.margin {
	  margin: 0 auto 8.0em;
  }
.section-image_s.margin_S {
	  margin: 0 auto 0;
  }
  /* .card-sec */
  .card-sec {
    position: relative;
    padding: 0px;
    border: 2px solid #142760;
    border-radius: 10px;
    padding: 0 1.2em;
    background-color: #fff;
    margin-top: 3.5em !important;
  }
  .card-sec .card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 1.5em;
  }
  /* contact */
  .card-sec .contact-image {
    position: absolute;
    top: -1.8em;
    width: clamp(150px, 4vw, 200px);
    height: auto;
    left: 1em;
  }
  .card-sec .padding {
    padding: 0.8em 0 1.2em;
  }
  .card-sec h6 {
    background-color: #2E4B9B;
    color: #FFF;
    font-size: 1.1em;
    padding: 0.1em 1.0em;
    display: block;
    border-radius: 5px;
    margin-top: -1.2em;
    position: relative;
    width: 8.0em;
    white-space: nowrap;
  }
  /* figure */
  .popover .inner figure {
    flex: 1;
    position: relative;
  }
  .popover .inner figure img {
    width: 100%;
  }
  .popover .inner figure p {
    position: absolute;
    bottom: -15%;
    left: 4%;
    font-size: clamp(2.6em, 5vw, 3.4em);
    white-space: nowrap;
    transform: rotate(-8deg);
    text-shadow: 0px 3px 0px #FFF;
  }
  @media (max-width: 768px) {
    .popover .inner figure p {
      position: absolute;
      bottom: -5%;
    }
  }
  .popover .inner .content {
    width: 100%;
    auto;
    overflow-x: hidden;
  }
  .popover .inner figure.float_r {
    float: right;
    width: 50%;
    margin-left: 3.0em;
    margin-bottom: 3.0em;
    margin-top: -2.0em;
    margin-right: -2.0em;
  }
  .popover .inner figure.float_l {
    float: left;
    width: 35%;
    margin-right: 3.0em;
    margin-bottom: 3.0em;
    padding-top: 10px;
    font-family: var(--font-sans);
    text-align: center;
    line-height: 1.4em;
  }
  .popover .inner div.float_l {
    float: left;
    width: 35%;
    margin-right: 3.0em;
    margin-bottom: 3.0em;
    padding-top: 10px;
    font-family: var(--font-sans);
    text-align: center;
    line-height: 1.4em;
  }
  .popover .inner figure.float_l p {
    margin-top: 9px;
    font-size: 0.9em;
  }
  .popover .inner div.float_l p {
    margin-top: 9px;
    font-size: 0.9em;
  }
  .popover .inner figure p.eng {
    position: absolute;
    bottom: -6%;
    right: 1%;
    font-size: clamp(2em, 4vw, 4em);
    white-space: nowrap;
    transform: rotate(-8deg);
    text-shadow: 0px 3px 0px #192343;
    color: #FFF;
    ba
  }
  .popover .inner .content {
    overflow-x: hidden;
    padding: 2em 2em 4em 2em;
  }
  @media (max-width: 768px) {
    .popover .inner .content {
      overflow-x: hidden;
      padding: 1.5em 1.5em 3em 1.5em;
    }
    .popover .inner figure.float_r {
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2.0em;
    }
    .popover .inner figure.float_l {
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2.0em;
    }
    .popover .inner div.float_l {
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2.0em;
    }
  }
  .popover .inner .content p {
    text-align: justify;
  }
  .popover .inner .content p span {
    display: inline-block;
  }
  .doctor-profile.float_r {
    float: right;
    margin-left: 4.0em;
    margin-bottom: 3.0em;
  }
  @media (max-width: 1080px) {
    .doctor-profile.float_r {
      width: 30% !important;
      margin-left: 3em;
		 margin-bottom: 1.0em;
    }
  }
  @media (max-width: 720px) {
    .doctor-profile.float_r {
      width: 40% !important;
      margin-left: 1.5em;
    }
  }
  .button {
    display: flex;
    align-items: center;
    border: 1px solid #2E4B9B;
    border-radius: 999px;
    padding: 0.3em 1em 0.3em 0.3em;
    text-decoration: none;
    color: #1A2551;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
    overflow: hidden;
    font-family: var(--font-sans);
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    background: #fff;
  }
  .button::before {
    content: "→";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2E4B9B;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 1em;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
  }
  .button:hover {
    background-color: #2E4B9B;
    color: white !important;
  }
  .button:hover::before {
    background-color: white !important;
    color: #2E4B9B;
    transform: translateX(4px);
  }
  .button-wrap {
    margin-top: 2em;
    display: inline-block;
  }
  .list-flex {
    gap: 0em !important;
  }
  .list-flex > * {
    flex: 1;
  }
  .list-flex > ul li {
    text-indent: -1.0em;
    padding-left: 1.0em;
  }
  @media (max-width: 1080px) {
    .popover .inner figure p.eng {
      font-size: clamp(2em, 4vw, 4em);
    }
  }
  @media (max-width: 768px) {
    .popover .inner figure {
      margin-bottom: 2.0em;
    }
    .popover .inner figure p.eng {
      position: absolute;
      bottom: -6%;
      right: 1%;
      font-size: clamp(2em, 5vw, 4em);
      white-space: nowrap;
      transform: rotate(-8deg);
      text-shadow: 0px 3px 0px #192343;
    }
  }
  /* .tabs-sec { padding: 0em; padding-bottom: 3em;} */
  .tabs-sec .tabs {
    display: flex;
	  gap: 13px;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .tabs-sec .tabs a {
    padding: 12px 24px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s;
    flex: 1;
    text-align: center;
    font-size: 1.0em;
    white-space: nowrap;
    line-height: normal;
    font-family: var(--font-sans);
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
	   background-color: #2E4B9B;
	    border-radius: 6px;
	  position: relative;
	  border: solid 2px #2E4B9B;
  }
  .tabs-sec .tabs .dli-chevron-down {
  display: block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0.7em;
  height: 0.7em;
  border: 0.15em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
	  margin-left: 0.8em;
	  margin: 0.7em auto 0;
}



  .tabs-sec .tabs a:hover {
    background-color: #fff;
    color: #2E4B9B !important;
	  border: solid 2px #2E4B9B;
  }

  .tabs-sec .tabs a:hover  .dli-chevron-down {
 color: #2E4B9B !important;
}
  /* thumbnail */
  .thumbnail {
    position: relative;
    margin: auto;
    margin-bottom: 6em;
    width: 80%;
  }
  .thumbnail .text {
    width: 100%;
    position: absolute;
    bottom: -4.5em;
    left: 50%;
    transform: translate(-50%, 0%);
    line-height: normal;
    text-align: center;
  }
  .thumbnail .text h6 {
    font-family: var(--cormorant);
    font-size: clamp(2.4em, 5.8vw, 3.8em);
    ;
    font-style: italic;
    text-shadow: 2px 2px 0px white;
    font-weight: 300;
    color: #2E4B9B;
    line-height: 1;
  }
  .thumbnail .text p {
    font-size: clamp(1.2em, 4vw, 1.2em);
    letter-spacing: 4px;
    margin-top: 1.0em;
    font-family: "Noto Serif JP", serif;
  }
  /* staff */
  .staff-wrap {
    display: flex;
    flex-wrap: wrap;
    row-gap: 4.0em;
    column-gap: 4%;
  }
  .staff-wrap .item {
    width: 22%;
    box-sizing: border-box;
  }
  @media (max-width: 1080px) {
    .staff-wrap {
      display: flex;
      flex-wrap: wrap;
      row-gap: 4.0em;
      column-gap: 4%;
    }
    .thumbnail .text {
      bottom: -4.5em;
    }
    .staff-wrap .item {
      width: 30.66%;
      box-sizing: border-box;
    }
  }
  @media (max-width: 768px) {
    .tabs-sec .tabs a {
      font-size: 1.0em;
      border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }
    .staff-wrap {
      display: flex;
      flex-wrap: wrap;
      row-gap: 2.0em;
      column-gap: 0%;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
    }
    .thumbnail {
      position: relative;
      margin: auto;
      margin-bottom: 6em;
      width: 100%;
    }
    .thumbnail .text {
      bottom: -4em;
    }
    .staff-wrap .item {
      width: 47.75%;
      box-sizing: border-box;
    }
  }
  .part-time {
    position: relative;
  }
  @media (max-width: 1080px) {
    .part-time {
      margin-top: -4em;
    }
  }
  .part-time .section-image {
    margin-bottom: 6.0em;
    position: relative;
  }
  .part-time .section-image+.section-image {
    margin-top: -3.0em;
    position: relative;
  }
  .part-time .section-image p {
    text-align: center;
    font-size: 9vw;
    line-height: 1.0em;
    margin-top: 1.0em;
    font-weight: 400;
    font-style: italic;
    font-family: var(--callifornia);
    position: absolute;
    bottom: -0.5em;
    left: 50%;
    color: #2E4B9B;
    text-shadow: 2px 2px 0px #FFF;
    -webkit-transform: translate(-50%, 0); /* Safari用 */
    transform: translate(-50%, 0);
	  width: 100%;
  }
  .part-time .staff-wrap {
    margin-bottom: 4.0em;
    row-gap: 1em;
  }
.section-image_staff {
   width: 50%;
    position: relative;
	  margin: 2.0em auto 4.0em;
  }
@media screen and (max-width: 1000px) {
.section-image_staff {
	  margin: 3.0em auto 3.0em;
	width: 60%;
  }
	}
@media screen and (max-width: 800px) {
.section-image_staff {
	  margin: 3.0em auto 3.0em;
	width: 65%;
  }
	}
@media screen and (max-width: 600px) {
 .section-image_staff {
	 width: 70%;
  }
	}
@media screen and (max-width: 480px) {
 .section-image_staff {
	 width: 80%;
  }
	}
.col2 .section-image_staff {
   width: 100%;
    position: relative;
	  margin: 2.0em auto 4.0em;
  }
@media screen and (max-width: 1000px) {
.col2 .section-image_staff {
	  margin: 3.0em auto 3.0em;
	width: 100%;
  }
	}
@media screen and (max-width: 800px) {
.col2 .section-image_staff {
	  margin: 3.0em auto 3.0em;
	width: 100%;
  }
	}
@media screen and (max-width: 600px) {
 .col2 .section-image_staff {
	 width: 70%;
  }
	}
@media screen and (max-width: 480px) {
 .col2 .section-image_staff {
	 width: 80%;
  }
	}

 .section-image_staff p {
    text-align: center;
    margin-top: 0.7em;
    font-weight: 500;
	 font-family: "Zen Kurenaido", sans-serif;
  font-weight: 600;
  font-style: normal;
	 font-size: 1.4em;
	 line-height: 1.6em;
	 letter-spacing: 2px;
  }
@media screen and (max-width: 800px) {
 .section-image_staff p {
	 font-size: 1.2em;
  }
	}
@media screen and (max-width: 600px) {
 .section-image_staff p {
	 font-size: 1.1em;
	  letter-spacing: 1px;
  }
	}
 .section-image_staff p>span {
   display: inline-block;
  }

  /* doctor-profile */
  .doctor-profile figure {
    margin-bottom: 1em;
  }
  .doctor-info {
    margin-top: 1.0em;
  }
  .doctor-info p {
    font-size: clamp(1.0em, 1.4vw, 1.0em);
    margin-bottom: 0.5em;
    margin-top: 1.0em;
    line-height: 1.5em;
  }
  .doctor-info p span {
    display: inline-block;
  }
  .doctor-info p span.small {
    font-size: 0.8em;
  }
  .doctor-info h2 {
    line-height: 1;
    font-size: clamp(1.2em, 3.0vw, 1.2em);
    display: flex;
    white-space: nowrap;
    align-items: baseline;
  }
  .doctor-info h2 span {
    font-size: 0.9em;
    margin-top: 1.0em;
    font-weight: 400;
    font-style: italic;
    font-family: var(--callifornia);
  }
  .doctor-info h2 b {
    margin-right: 0.7em;
  }
  @media (max-width: 600px) {
    .doctor-info h2 {
      display: block;
    }
    .doctor-info h2 span {
      display: block;
    }
  }
  /* doctor-content-info */
  .doctor-content-info {
    font-size: clamp(1.0em, 3vw, 1.1em);
    line-height: 1.6em;
    margin-top: 0 !important;
  }
  .doctor-content-info h2 {
    font-size: 1.2em;
    margin-top: 0.5em;
    margin-bottom: 1.2em;
    padding-bottom: 1.0em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    width: auto;
    width: 50%
  }
  .doctor-content-info h2 span {
    font-size: 0.6em;
    font-family: var(--cormorant);
    font-style: italic;
    margin-left: 1em;
    font-weight: normal;
  }
  .doctor-content-info p span {
    display: inline-block;
  }
  @media (max-width: 680px) {
    .doctor-content-info h2 {
      width: 100%
    }
  }
  /* doctor-name */
  .doctor-name {
    font-size: 1.1em;
    white-space: nowrap;
  }
  @media (max-width: 680px) {
    .doctor-name {
      font-size: 0.8em;
      white-space: nowrap;
    }
  }
  .doctor-name h2 {
    font-size: 1.2em;
    line-height: 1;
  }
  .doctor-name h2 b {
    margin-right: 0.6em;
    line-height: 1.5em;
  }
  .doctor-name h2 span {
    font-size: 0.8em;
    font-weight: normal;
  }
  .doctor-name02 {
    font-size: 1.1em;
    white-space: nowrap;
  }
  @media (max-width: 680px) {
    .doctor-name02 {
      font-size: 1.0em;
      white-space: nowrap;
    }
  }
  .doctor-name02 h2 {
    font-size: 1.6em;
    line-height: 1;
  }
  .doctor-name02 h2 b {
    margin-right: 0.6em;
    line-height: 1.5em;
  }
  .doctor-name02 h2 span {
    font-size: 0.8em;
    font-weight: normal;
  }
  /* popover */
  .popover {
    display: block;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95);
    transition: opacity 0.2s ease, transform 0.2s ease;
    background: #192343;
    z-index: 200;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100dvh;
    pointer-events: none;
  }
  .popover::before {
    content: "";
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    width: 40px;
    height: 40px;
    background-image: url("../images/common/close.png");
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 100;
  }
  .popover.visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
  }
  .popover .inner {
    width: 90%;
    background-color: #FFF;
    color: #192343;
    height: padding: 0;
    scrollbar-width: none;
    max-width: 900px;
  }
  .popover .inner .flex-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.6em;
  }
  .scroll {
    height: 100vh;
    scrollbar-width: none;
    overflow-y: scroll
  }
  @media (max-width: 1400px) {
    .popover .inner .flex-box {
      flex-direction: row;
    }
    .popover .inner .doctor-detail .block ul li {
      line-height: 1.4em;
      font-size: 0.9em;
    }
  }
  @media (max-width: 768px) {
    .popover .inner {
      height: auto;
    }
    .popover .inner .flex-box {
      display: block;
      overflow-y: scroll !important;
    }
    .staff-wrap .popover .inner figure {
      width: 50%;
      margin: 0 auto;
      padding-top: 1em;
    }
  }
  /* doctor-detail */
  .popover .inner .doctor-detail {
    padding: 1em 1em 1em;
    height: 100vh;
    width: 65%;
    scrollbar-width: none;
  }
  .popover .inner .doctor-detail hr {
    border: none;
    border-top: 1px solid #516884;
    opacity: 0.4;
    margin-top: 20px !important;
    margin-bottom: 25px !important;
    height: 1px;
  }
  .popover .inner .doctor-detail h2 {
    font-size: 1.6em;
    line-height: 1.4em;
    font-weight: 600;
    margin-bottom: 0.3em;
  }
  .popover .inner .doctor-detail h2 span {
    font-family: var(--cormorant);
    font-style: Italic;
    font-size: 0.6em;
    padding-left: 0.8em;
    letter-spacing: 2px;
  }
  .popover .inner .doctor-detail p {
    font-size: 0.85em !important;
    line-height: 1.8em;
  }
  .popover .inner .doctor-detail .block {
    margin: 1.0em 0px;
  }
  .popover .inner .doctor-detail .block > ul.specialty {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .popover .inner .doctor-detail .block h4 {
    color: #fff;
    background-color: #192343;
    font-size: 0.95em;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.3em 0.5em;
    line-height: normal;
    margin-bottom: 0.0em;
  }
  .popover .inner .doctor-detail .block ul {
    padding-left: 0.4em;
    padding-top: 0.6em;
  }
  .popover .inner .doctor-detail .block ul li {
    line-height: 1.4em;
    font-size: 0.9em;
  }
  .popover .inner .doctor-detail .block ul li + li {
    margin-top: 0.4em;
  }
  .popover .inner .doctor-detail .block ul.specialty li + li {
    margin-top: 0;
    margin-left: 1.0em;
  }
  .popover .inner .doctor-detail h3 {
    font-weight: 400;
    font-size: 0.95em;
  }
  @media (max-width: 1400px) {
    .popover .inner .doctor-detail {
      padding: 1em 1em 1em;
      overflow-y: auto;
      height: 100%;
      width: 65%;
      padding-bottom: 4.0em;
    }
    .popover .inner .doctor-detail .block ul li + li {
      margin-top: 0.5em;
    }
    .popover .inner .doctor-detail .block ul.specialty li + li {
      margin-top: 0;
      margin-left: 1.0em;
    }
  }
  @media (max-width: 480px) {
    .staff-wrap .popover .inner figure {
      width: 70%;
      margin: 0 auto;
      padding-top: 1em;
    }
  }
  @media (max-width: 768px) {
    .popover .inner {
      overflow-y: scroll;
      position: relative;
    }
    .popover .inner .doctor-detail {
      padding: 1em 1.0em 2em;
      width: 100%;
      overflow-y: hidden !important;
      height: auto;
    }
  }
  .prof-card {
    background-color: #EEEEEE;
    max-width: 560px;
    margin: 0 auto;
  }
  .prof-card .text {
    text-align: center;
    padding: 1em 1em 2.0em;
  }
  .prof-card .text .position {
    font-size: 1.0em;
    line-height: 1.7em;
  }
  .prof-card .text .position h2 {
    font-size: 1.7em;
    margin-top: 0.1em;
  }
  .prof-card .text .callifornia {
    padding: 0px 0px 0px;
    font-size: 1.3em;
    margin-top: -0.3em;
  }
  .popover .label {
    font-weight: bold;
    color: #142760;
    font-size: 1.2rem;
    position: relative;
    font-family: var(--font-sans);
    padding-left: 2.5em;
  }
  .popover .label::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: left;
  }
  /* 番号ごとのクラス */
  .label {
    position: relative;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1em;
  }
  .label::before {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    width: 2em;
    height: 2em;
  }
  .label span {
    padding-left: 2.5em;
  }
  p + .label {
    padding-top: 2.0em;
    ;
  }
  div + .label {
    margin-top: 3.0em !important;
  }
  .label.mark-01::before {
    background-image: url("../images/common/mark-01.svg");
  }
  .label.mark-02::before {
    background-image: url("../images/common/mark-02.svg");
  }
  .label.mark-03::before {
    background-image: url("../images/common/mark-03.svg");
  }
  .label.mark-04::before {
    background-image: url("../images/common/mark-04.svg");
  }
  .label.mark-05::before {
    background-image: url("../images/common/mark-05.svg");
  }
  /* paragraph */
  .paragraph {
    position: relative;
    margin-top: 0;
  }
  .content-title + .paragraph {
    margin-top: -1.5em !important;
  }
  .paragraph p+p {
    margin-top: 1.0em;
  }
  .paragraph .img-container {
    float: right;
    padding-left: 3.5em;
    width: 30%;
    max-width: 300px;
    margin-bottom: 2.0em;
  }
  .paragraph .img-container-l {
    float: right;
    padding-left: 3.5em;
    width: 40%;
    max-width: 400px;
    margin-bottom: 2.0em;
    margin-top: 10px;
  }
  .paragraph .img-container-l2 {
    float: right;
    padding-left: 3.5em;
    width: 30%;
    max-width: 400px;
    margin-bottom: 2.0em;
    margin-top: 10px;
  }
  .paragraph .img-container.left, .paragraph .img-container-l.left {
    float: left;
    padding-left: 0em;
    padding-right: 1.5em;
    width: 45%;
    max-width: 350px;
  }
  .paragraph .img-container img, .paragraph .img-container-l img {
    width: 100%;
  }
  .site-header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5em 0.8em 1.5em;
    position: fixed;
    z-index: 5;
    width: 100%;
  }
  .site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    gap: 1em;
    max-width: 1800px;
    width: 95%;
  }
  @media (max-width: 768px) {
    .paragraph .img-container {
      float: right;
      padding-left: 2.0em;
      width: 45%;
      max-width: 450px;
    }
  }
  .paragraph .img-container p {
    font-size: clamp(0.9em, 2vw, 0.9em);
    line-height: 1.5em;
    margin-top: 8px
  }
  .list01 li {
    text-indent: -1.0em;
    margin-left: 1.0em;
  }
  .list01 li + li {
    margin-top: 0.6em;
  }
  .model_mouse {
    margin-top: 3.0em;
  }
  .model_mouse p + img {
    margin-top: 2.5em !important;
  }
  .doctor_message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row-reverse;
  }
  @media (max-width: 768px) {
    .doctor_message {
      display: block;
    }
  }
  .doctor-profile {
    font-size: 0.8em;
    width: 23% !important;
    margin-top: 0.7em;
    margin-left: 4%;
  }
  .doctor_message .doctor-profile {
    font-size: 1.0em;
  }
  @media (max-width: 1080px) {
    .doctor_message .doctor-profile {
      width: 35% !important;
    }
  }
  @media (max-width: 768px) {
    .doctor_message .doctor-profile {
      width: 45% !important;
      margin: auto;
      margin-bottom: 1.5em;
      font-size: 1.2em;
      line-height: 2.0em;
    }
  }
  .doctor_message .doctor-txt {
    -webkit-flex: 1;
    flex: 1;
  }
  @media (max-width: 768px) {
    .sp_center {
      text-align: center;
    }
  }
  .doctor_message .doctor-name {
    line-height: 2.8em !important;
  }
  @media (max-width: 768px) {
    .doctor_message .doctor-name {
      text-align: center;
      font-size: 1.0em !important;
    }
  }
  .schedule_link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    border: solid 4px #DEDEDE;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    padding: 1.0em;
  }
  .liver {
    padding-top: 0;
  }
  .guide_space {
    padding-top: 85px;
    margin-top: -85px;
  }
  @media (max-width: 768px) {
    .schedule_link {
      flex-direction: column;
    }
    .schedule_link .custom-button {
      margin-top: 1.0em;
    }
  }
  .resident_message {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .resident_message .resident_txt {
    -webkit-flex: 1;
    flex: 1;
  }
  .resident_message .pamphlet {
    margin-left: 5%;
    font-size: 0.8em;
    width: 30% !important;
    margin-top: 0.7em;
  }
  .resident_message .pamphlet p {
    text-align: center;
    margin-top: 8px;
    font-size: 1.1em;
  }
  .resident_message .pamphlet p a {
    color: #FFF !important;
    text-decoration: underline;
  }
  .resident_message .pamphlet p a:hover {
    color: #EA3636 !important;
    text-decoration: underline;
  }
  @media (max-width: 1080px) {
    .resident_message .pamphlet {
      width: 35% !important;
    }
  }
  @media (max-width: 768px) {
    .resident_message {
      display: block;
    }
    .resident_message .pamphlet {
      margin-left: auto;
      margin-right: auto;
      margin-top: 2.0em;
      width: 80% !important;
    }
  }
  section .button-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2.0em !important;
  }
  section .button-flex .custom-button {
    margin-top: 0;
  }
  section .button-flex .custom-button + .custom-button {
    margin-left: 2.0em;
  }
  @media screen and (max-width: 1080px) {
    section .button-flex {
      flex-direction: column;
      justify-content: center;
    }
    section .button-flex .custom-button + .custom-button {
      margin-top: 1.5em;
      margin-left: auto;
      margin-right: auto;
    }
  }
  section .access {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
  }
  section .access > .map {
    width: 47.5%
  }
  section .access > .map {
    position: relative;
    width: 47.5%;
    height: 0;
    padding-top: 40%; /* 比率を4:3に固定 */
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
  }
  /* Google Mapのiframe */
  section .access > .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  section .access > .contact_data {
    width: 47.5%;
    margin-top: -0.5em;
  }
  @media screen and (max-width: 1000px) {
    section .access {
      display: block;
    }
    section .access > .map {
      width: 100%;
      padding-top: 65%; /* 比率を4:3に固定 */
    }
    section .access > .contact_data {
      margin-top: 3.0em;
      width: 100%;
    }
  }
  /* career */
  @media (max-width: 820px) {
    h4.career_c {
      text-align: justify;
      font-feature-settings: "palt"1;
      -webkit-font-feature-settings: 'palt'1; // for Android 4.4 font-feature-settings: 'palt' 1;
    }
    h4.career_c > br.br_sp {
      display: none;
    }
    h4.career_c span {
      display: inline-block;
    }
  }
  @media (max-width: 480px) {
    h4.career_c {
      font-size: 4.6vw;
    }
  }
  .site-header {
    z-index: 100;
  }
  .site-header .header-inner .site-logo {
    width: 25%;
    max-width: 450px;
    min-width: 250px;
  }
  .site-header .header-inner .site-logo a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
  }
  .site-header .header-inner .site-logo a img {
    width: 100%;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
  }
  .hamburger span {
    display: block;
    width: 25px;
    min-height: 0.2em;
    background-color: #17375e;
    transition: 0.3s;
    border-radius: 10px;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5.5px, 5.5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  /* ナビメニュー */
  .site-nav ul {
    list-style: none;
    display: flex;
    gap: 0em 3em;
    flex-wrap: wrap;
    justify-content: flex-end;
    position: relative;
  }
  .site-nav ul li a {
    font-size: 1.2em;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-decoration: none;
    line-height: normal;
  }
  .site-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #2E4B9B;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
  }
  .site-nav ul li a:hover::after {
    transform: scaleX(1);
  }
  .site-nav ul li.cr:after {
    content: "";
    bottom: -7px;
    left: 0;
    width: auto;
    height: 3px;
    background-color: #2E4B9B;
    position: absolute;
  }
  @media (max-width: 1700px) {
    .site-nav ul {
      gap: 0em 2em;
    }
    .site-nav ul li a {
      font-size: 1.1em;
    }
  }
  @media (max-width: 1400px) {
    .site-nav ul {
      gap: 0em 1.8em;
    }
    .site-nav ul li a {
      font-size: 1.1m;
    }
  }
  @media (max-width: 1300px) {
    .site-nav ul {
      gap: 0em 1.4em;
    }
    .site-nav ul li a {
      font-size: 1.0em;
      ;
      font-weight: 600;
      position: relative;
      display: inline-block;
      text-decoration: none;
      line-height: normal;
    }
  }
  @media (max-width: 1100px) {
    .site-header {
      padding: 1.3em 0.5em;
    }
    .site-header .header-inner {
      display: flex;
    }
    .site-header .site-logo a img {
      width: 70%;
      max-width: 250px;
    }
    .hamburger {
      display: flex;
    }
    .site-nav {
      position: absolute;
      top: 61px;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      display: none;
      z-index: 9;
      height: auto;
      padding: 2em 0px;
    }
    .site-nav ul {
      flex-direction: column;
      row-gap: 1.5em;
    }
    .site-nav ul li {
      text-align: center;
    }
    .site-nav.open {
      display: block;
    }
    .site-nav ul li a {
      font-size: clamp(0.75em, 4.33vw, 1.2em);
      font-weight: 500;
      position: relative;
      display: inline-block;
      text-decoration: none;
      line-height: normal;
    }
  }
  footer .content {
    align-items: center;
    background-color: #17375E;
    color: #fff;
    padding: 2em 0px 1.7em;
    display: flex;
    flex-direction: column;
  }
  .footer-message {
    font-size: 1.1em;
  }
  .footer-logo {
    width: 75%;
    max-width: 350px;
    margin-top: 0.7em !important
  }
  .footer-address {
    font-family: var(--font-sans);
    text-align: center;
    font-size: 0.9em;
  }
  .footer-address a {
    font-weight: 400;
    font-style: "Noto Sans JP", sans-serif;
    border-bottom: solid 1px #FFF;
  }
  .footer-address a:hover {
    opacity: 0.6;
  }
  .footer-tel {
    font-size: 2em;
    font-weight: 500;
    margin-top: 0.5em !important;
  }
  .footer-nav {
    margin-top: 2.0em !important;
  }
  .footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2em;
    font-weight: 500;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9em;
  }
  .footer-nav ul li a:hover {
    opacity: 0.6;
  }
  footer .footer-copy {
    background-color: #192343;
    color: #fff;
    font-size: 0.7em;
    text-align: center;
    padding: 0.8em;
  }
  .page-top {
    position: fixed;
    right: 1.2em;
    bottom: 1.2em;
    width: 3em;
    height: 3em;
    z-index: 10;
    background: #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 0px 5px rgba(46, 75, 155, 0.25);
  }
  .page-top:hover {
    background-color: #2A54C7;
  }
  @media (max-width: 768px) {
    .page-top {
      position: fixed;
      right: 1em;
      bottom: 1em;
      width: 2.5em;
      height: 2.5em;
      z-index: 10;
      background: #fff;
      border-radius: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 0px 0px 5px rgba(46, 75, 155, 0.25);
    }
    .page-top:hover {
      background-color: #2A54C7;
    }
    .page-top img {
      width: 40%;
    }
  }
  @media (max-width: 1100px) {
    .footer-nav {
      display: none;
    }
  }
  /* リンクボタンラッパー */
  .custom-button {
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  /* リンクボタン本体 */
  .custom-button a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 23px 23px 23px 50px;
    background-color: #fff; /* 通常：白背景 */
    color: #192343; /* 通常：青文字 */
    border-radius: 9999px;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    border: 1px solid #2E4B9B;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    font-family: "Noto sans JP", sans-serif;
  }
  /* テキストラベル */
  .custom-button .label {
    z-index: 1;
    position: relative;
    margin-left: 26px;
    transition: transform 0.4s ease, color 0.4s ease, margin-left 0.4s ease;
  }
  /* 丸い矢印 */
  .custom-button .icon-circle {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2E4B9B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1.1em;
    transition: left 0.4s ease-in-out, background-color 0.4s ease, color 0.4s ease;
    font-weight: 300;
  }
  /* ホバー時の反転 */
  .custom-button a:hover {
    background-color: #2E4B9B;
    color: #fff;
    border-color: #2E4B9B;
    padding: 23px 50px 23px 23px;
  }
  .custom-button a:hover .icon-circle {
    left: calc(100% - 58px);
    background-color: #fff;
    color: #2E4B9B;
  }
  .custom-button a:hover .label {
    transform: translateX(-25px);
    color: #fff;
  }
  div + .custom-button {
    margin-top: 2.0em;
  }
  p + .custom-button {
    margin-top: 1.0em;
  }
  p + .custom-button.alC {
    margin-top: 2.0em;
  }
  @media (max-width: 1200px) {
    .custom-button a {
      font-size: 16px;
      line-height: 18px;
    }
  }
  /* ▼ レスポンシブ（70%縮小） */
  @media (max-width: 768px) {
    .custom-button a {
      padding: 10px 15px 10px 20px;
      font-size: 13px;
      border-width: 1.5px;
    }
    .custom-button .label {
      margin-left: 18px;
      transform: translateX(0);
      transition: transform 0.4s ease, color 0.4s ease, margin-left 0.4s ease;
    }
    .custom-button a:hover {
      padding: 10px 25px 10px 10px;
    }
    .custom-button a:hover .label {
      transform: translateX(-14px);
    }
    .custom-button .icon-circle {
      width: 22px;
      height: 22px;
      font-size: 14px;
      left: 11px;
    }
    .custom-button a:hover .icon-circle {
      left: calc(100% - 33px);
    }
    div + .custom-button {
      margin-top: 1.0em;
    }
  }
  .custom-button_s {
    display: inline-block;
    position: relative;
    z-index: 1;
    position: relative;
    margin-top: 3.0em !important;
  }
  .custom-button_s img {
    position: absolute;
    top: -70%;
    right: -26%;
    width: 60px;
    height: auto;
    transform: rotate(-5deg);
  }
  /* リンクボタン本体 */
  .custom-button_s a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 23px 23px 23px 50px;
    background-color: #fff; /* 通常：白背景 */
    color: #192343; /* 通常：青文字 */
    border-radius: 9999px;
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    border: 1px solid #2E4B9B;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    font-family: "Noto sans JP", sans-serif;
  }
  /* テキストラベル */
  .custom-button_s .label {
    z-index: 1;
    position: relative;
    margin-left: 26px;
    transition: transform 0.4s ease, color 0.4s ease, margin-left 0.4s ease;
  }
  /* 丸い矢印 */
  .custom-button_s .icon-circle {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2E4B9B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1.1em;
    transition: left 0.4s ease-in-out, background-color 0.4s ease, color 0.4s ease;
    font-weight: 300;
  }
  /* ホバー時の反転 */
  .custom-button_s a:hover {
    background-color: #2E4B9B;
    color: #fff;
    border-color: #2E4B9B;
    padding: 23px 50px 23px 23px;
  }
  .custom-button_s a:hover .icon-circle {
    left: calc(100% - 58px);
    background-color: #fff;
    color: #2E4B9B;
  }
  .custom-button_s a:hover .label {
    transform: translateX(-25px);
    color: #fff;
  }
  .custom-button_s a {
    padding: 10px 15px 10px 20px;
    font-size: 13px;
    border-width: 1.5px;
  }
  .custom-button_s .label {
    margin-left: 18px;
    transform: translateX(0);
    transition: transform 0.4s ease, color 0.4s ease, margin-left 0.4s ease;
  }
  .custom-button_s a:hover {
    padding: 10px 25px 10px 10px;
  }
  .custom-button_s a:hover .label {
    transform: translateX(-14px);
  }
  .custom-button_s .icon-circle {
    width: 22px;
    height: 22px;
    font-size: 14px;
    left: 11px;
  }
  .custom-button_s a:hover .icon-circle {
    left: calc(100% - 33px);
  }
  div + .custom-button {
    margin-top: 2.0em;
  }
  @media (max-width: 768px) {
    div + .custom-button {
      margin-top: 1em;
    }
  }
  /* お問い合わせフォーム */
  #customForm {
    margin-top: 3.0em;
    padding: 2.0em;
    background-color: #F8F8F9;
    border: solid 4px #C8D1E5;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
  }
  #customForm table {
    width: 100%;
  }
  #customForm td {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    width: 100%;
    vertical-align: middle;
  }
  #customForm th {
    padding-right: 5.0em;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    white-space: nowrap;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
  #customForm th span {
    display: inline;
    background-color: #2A54C7;
    padding: 0.3em 0.5em 0.4em;
    font-family: var(--font-sans);
    margin-left: 1.0em;
    font-size: 0.8em;
    color: #FFF;
  }
  #customForm input {
    border: solid 1px rgba(25, 35, 67, 0.6);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    padding: 0.2em 0.3em;
    width: 70%;
    font-family: var(--font-sans);
    background-color: #FFF;
  }
  #customForm textarea {
    border: solid 1px rgba(25, 35, 67, 0.6);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    padding: 0.2em 0.3em;
    width: 100%;
    font-family: var(--font-sans);
    background-color: #FFF;
  }
  #customForm .form_b {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1.0em;
  }
  #customForm .form_b button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.8em 2.0em;
    ;
    background-color: #fff; /* 通常：白背景 */
    color: #2E4B9B; /* 通常：青文字 */
    border-radius: 9999px;
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    border: 1px solid #2E4B9B;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    font-family: "Noto sans JP", sans-serif;
    font-size: 1.4em;
  }
  #customForm .form_b button:hover {
    background-color: #2E4B9B;
    color: #FFF;
  }
  .contact .custom-button {
    margin-top: 3.0em;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form_t {
    background-color: #2E4B9B;
    color: #FFF;
    margin-top: 1.5em;
    margin-bottom: 1.0em;
    line-height: 1.1em;
    font-size: 1.3em;
    padding: 0.5em 0.7em 0.6em;
  }
  @media (max-width: 1200px) {
    .form_t {
      font-size: 1.1em;
    }
  }
  @media (max-width: 768px) {
    .form_t {
      font-size: 1.0em;
      margin-bottom: 1.5em;
      line-height: 1.1em;
      font-size: 1.2m;
      padding: 0.6em 0.7em 0.7em;
    }
  }
  @media (max-width: 768px) {
    #customForm td {
      display: block;
      width: 100%;
      padding-top: 0;
      padding-bottom: 1.4em;
    }
    #customForm th {
      display: block;
      width: 100%;
      padding-top: 0;
      padding-bottom: 0.5em
    }
    #customForm input {
      width: 100%;
    }
    #customForm .form_b {
      margin-top: 0em;
    }
    #customForm .form_b button {
      font-size: 1.2em;
    }
  }
  /* お問い合わせフォーム */
  #mail_form {
    margin-top: 3.0em;
    padding: 2.0em;
    background-color: #F8F8F9;
    border: solid 4px #C8D1E5;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
  }
  #mail_form dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    align-items: center;
  }
  #mail_form dl dt {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    width: 100%;
    vertical-align: middle;
    width: 16.0em;
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    align-items: center;
  }
  #mail_form dl dd {
    padding-right: 5.0em;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    white-space: nowrap;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
  }
  #mail_form dl dt span {
    display: inline;
    background-color: #2A54C7;
    padding: 0.2em 0.5em 0.3em;
    font-family: var(--font-sans);
    margin-left: 1.0em;
    font-size: 0.8em;
    color: #FFF;
    margin-bottom: 0;
    line-height: 1.5em;
  }
  #mail_form input {
    border: solid 1px rgba(25, 35, 67, 0.6);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    padding: 0.2em 0.3em;
    width: 100%;
    font-family: var(--font-sans);
    background-color: #FFF;
  }
  #mail_form textarea {
    border: solid 1px rgba(25, 35, 67, 0.6);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    padding: 0.2em 0.3em;
    font-family: var(--font-sans);
    background-color: #FFF;
  }
  #mail_form .form_b {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 1.0em;
  }
  #mail_form .form_b button, #mail_form .form_b input {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.8em 5.0em 0.8em 2.5em;
    width: 10.0em;
    background-color: #fff; /* 通常：白背景 */
    color: #2E4B9B; /* 通常：青文字 */
    border-radius: 9999px;
    text-decoration: none;
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    border: 1px solid #2E4B9B;
    overflow: hidden;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    font-family: "Noto sans JP", sans-serif;
    font-size: 1.4em;
    display: inline-block;
  }
  #mail_form .form_b button:hover, #mail_form .form_b input:hover {
    background-color: #2E4B9B;
    color: #FFF;
  }
  .contact .custom-button {
    margin-top: 3.0em;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .form_t {
    background-color: #2E4B9B;
    color: #FFF;
    margin-top: 1.5em;
    margin-bottom: -0.5em;
    line-height: 1.1em;
    font-size: 1.3em;
    padding: 0.5em 0.7em 0.6em;
  }
  @media (max-width: 1200px) {
    .form_t {
      font-size: 1.1em;
    }
  }
  @media (max-width: 768px) {
    .form_t {
      font-size: 1.0em;
      margin-bottom: -1.0em;
      line-height: 1.1em;
      font-size: 1.2em;
      padding: 0.6em 0.7em 0.7em;
    }
  }
  @media (max-width: 768px) {
    #mail_form dl {
      display: block;
    }
    #mail_form dl dt {
      display: block;
      width: 100%;
      padding-top: 1.0em;
      padding-bottom: 0.5em;
    }
    #mail_form dl dd {
      display: block;
      width: 100% !important;
      padding: 0;
      padding-top: 0;
      padding-bottom: 0.5em;
    }
    #mail_form input {
      width: 100% !important;
    }
    #mail_form textarea {
      width: 100% !important;
    }
    #mail_form .form_b {
      margin-top: 1.0em;
    }
    #mail_form .form_b input {
      font-size: 1.2em;
      width: 10.0em !important;
      text-align: center;
    }
  }
  .office_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .office_img > li {
    width: 33.33%;
    line-height: 1.6em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 1.1em;
    font-family: var(--font-sans);
    justify-content: center;
  }
  .office_img > li.bg {
    background-color: #17375E;
    color: #FFF;
  }
  .office_staff {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    column-gap: 3%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .office_staff > div {
    width: 30%;
  }
  .office_img > li.klee, .office_img > li.klee p, .office_img > li.klee p span {
    font-family: "Klee One", cursive;
    font-weight: 700;
  }
  .office_img > li span {
    display: inline-block;
  }
  @media (max-width: 768px) {
    .office_img > li {
      width: 50%;
      font-size: 1.0em
    }
    .office_img > li:nth-child(1) {
      order: 1;
    }
    .office_img > li:nth-child(2) {
      order: 2;
    }
    .office_img > li:nth-child(3) {
      order: 4;
    }
    .office_img > li:nth-child(4) {
      order: 3;
    }
    .office_img > li:nth-child(5) {
      order: 5;
    }
    .office_img > li:nth-child(6) {
      order: 6;
    }
    .office_img > li:nth-child(7) {
      order: 8;
    }
    .office_img > li:nth-child(8) {
      order: 7;
    }
    .office_img > li:nth-child(9) {
      order: 9;
    }
    .office_img > li.last {
      width: 100%;
    }
  }
  .association {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    border: solid 4px #DEDEDE;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    padding: 1.0em;
    margin-top: 4.0em;
  }
  .association > dt {
    width: 40%;
    margin-right: 3%;
  }
  .association > dd > h2 {
    font-size: 1.3em;
  }
  .association > dd > h2 span {
    display: inline-block;
  }
  .association > dd p.catch {
    margin-bottom: 1.0em;
    margin-top: 1.0em;
    font-size: 1.1em;
    font-weight: 600;
  }
  @media (max-width: 768px) {
    .association {
      flex-direction: column-reverse;
    }
    .association dd {
      text-align: center;
    }
    .association dd h2 {
      font-size: 1.3em;
    }
    .association dt {
      width: 60%;
      margin-top: 2.0em;
    }
    .association > dd p.catch {
      font-size: 1.0em;
    }
  }
  figure.single {
    width: 50%;
    margin: auto;
    margin-bottom: 2.0em;
  }
  @media (max-width: 768px) {
    figure.single {
      width: 70%;
      margin: auto;
      margin-bottom: 2.0em;
    }
  }
  .inner + figure.single {
    margin-top: 4.0em;
    font-family: var(--font-sans);
  }
  figure.single p {
    font-size: clamp(0.8em, 2vw, 0.9em);
    line-height: normal;
    margin-top: 8px;
    text-align: center;
  }
  @media (max-width: 768px) {
    .sp_flex {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      flex-direction: column-reverse;
    }
    .paragraph .img-container-l {
      float: none;
      padding-left: 0;
      width: 100%;
      max-width: 900px;
      margin-bottom: 0em;
      margin-top: 3.0em;
    }
  }

.question {
	background-color: rgba(202,209,229,0.3);
	padding: 1.0em;
	border-radius: 1.0em;
	overflow: hidden;
}
.question+.question {
	margin-top: 1.7em;
}