@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  color: #333;
  background: #fff;
}

#wrapper {
  width: 100%;
  max-width: 750px;
  margin: auto;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 3.59vw;
  }
  #wrapper {
    max-width: 100%;
  }
}
.drawer .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1000;
}

.drawer .icon__bars {
  width: 32px;
  height: 23px;
}

.drawer .icon__bar1,
.drawer .icon__bar2,
.drawer .icon__bar3 {
  position: absolute;
  width: 32px;
  height: 3px;
  background: #333;
  left: 0;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}

.drawer .icon__bar1 {
  top: 0;
}

.drawer .icon__bar2 {
  top: 10px;
}

.drawer .icon__bar3 {
  top: 20px;
}

.drawer .icon.is-active .icon__bar1 {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.drawer .icon.is-active .icon__bar2 {
  display: none;
}

.drawer .icon.is-active .icon__bar3 {
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer .content {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-105%);
  transform: translateY(-105%);
  background: #e5f5fd;
  padding: 60px 50px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow-y: scroll;
  z-index: 250;
}

.drawer .content.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.drawer .content__item a {
  display: block;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1c6ac2;
  border-bottom: 1px dashed #1c6ac2;
  padding: 27px 0;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.drawer .content__item a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  .drawer .icon {
    right: 2.56vw;
  }
  .drawer .icon__bars {
    width: 5.38vw;
    height: 3.85vw;
  }
  .drawer .icon__bar1,
  .drawer .icon__bar2,
  .drawer .icon__bar3 {
    width: 5.38vw;
    height: 0.51vw;
  }
  .drawer .icon__bar2 {
    top: 1.67vw;
  }
  .drawer .icon__bar3 {
    top: 3.33vw;
  }
  .drawer .content {
    padding: 6.15vw 7.69vw;
  }
  .drawer .content__item a {
    font-size: 3.46vw;
    padding: 4.62vw 0;
  }
  .drawer .content__item a:hover {
    opacity: 1;
  }
}
#footer {
  position: relative;
  color: #fff;
  padding: 80px 0 120px;
  background-image: url("../images/footer-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#footer .fix-contents {
  position: fixed;
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 15px 20px 5px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 30;
}

#footer .fix-contents.is-visible {
  opacity: 1;
  pointer-events: auto;
}

#footer .btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#footer .btn a {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

#footer .btn a:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

#footer .sub-wrap {
  position: fixed;
  width: 100%;
  max-width: 750px;
  bottom: 110px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 29;
}

#footer .sub-wrap.is-active {
  opacity: 1;
  pointer-events: auto;
}

#footer .sub-btns {
  width: 70%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 22px 14px 18px 18px;
}

#footer .sub-btn a {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .sub-btn a:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

#footer .sub-btn img {
  -o-object-fit: contain;
  object-fit: contain;
}

#footer .page-top {
  position: absolute;
  width: 70px;
  height: 70px;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#footer .page-top a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .page-top a:hover {
  opacity: 0.8;
}

#footer .inner {
  padding: 0 50px;
}

#footer .logo {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
}

#footer .logo a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .logo a:hover {
  opacity: 0.8;
}

#footer .menus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 0 50px;
  margin-top: 20px;
}

#footer .menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5019607843);
  padding: 10px 20px 10px 40px;
}

#footer .menu a span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footer .menu a:hover span {
  opacity: 0.8;
}

#footer .menu a span::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

#footer .copyright {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  #footer {
    padding: 12.82vw 0 17.95vw;
  }
  #footer .fix-contents {
    max-width: 100%;
    padding: 2.56vw 2.56vw 1.28vw;
  }
  #footer .btn a:hover {
    -webkit-transform: none;
    transform: none;
  }
  #footer .sub-wrap {
    max-width: 100%;
    bottom: 15.38vw;
  }
  #footer .sub-btns {
    gap: 1.28vw;
    border-radius: 2.56vw;
    padding: 12px 8px 8px 12px;
  }
  #footer .sub-btn a:hover {
    -webkit-transform: none;
    transform: none;
  }
  #footer .page-top {
    width: 12.82vw;
    height: 12.82vw;
    top: -6.41vw;
  }
  #footer .page-top a:hover {
    opacity: 1;
  }
  #footer .inner {
    padding: 0 5.13vw;
  }
  #footer .logo {
    max-width: 46.15vw;
  }
  #footer .logo a:hover {
    opacity: 1;
  }
  #footer .menus {
    gap: 0 2.56vw;
    margin-top: 5.13vw;
  }
  #footer .menu a {
    padding: 1.28vw 0 1.28vw 5.13vw;
  }
  #footer .menu a span {
    font-size: 3.08vw;
    line-height: 1.35;
    letter-spacing: 0;
  }
  #footer .menu a:hover span {
    opacity: 1;
  }
  #footer .menu a span::before {
    width: 1.54vw;
    height: 1.54vw;
    left: -4.1vw;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
  }
  #footer .copyright {
    font-size: 2.56vw;
    line-height: 1.8;
    margin-top: 5.13vw;
  }
}
#header {
  position: fixed;
  width: 100%;
  height: 80px;
  max-width: 750px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  -webkit-box-shadow: 0px 10px 8px -6px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 8px -6px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

#header .logo {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}

#header .logo a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#header .logo a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  #header {
    height: 12.82vw;
    max-width: 100%;
  }
  #header .logo {
    max-width: 48.21vw;
  }
  #header .logo a:hover {
    opacity: 1;
  }
}
.l-inner {
  padding: 0 20px;
}

@media screen and (max-width: 750px) {
  .l-inner {
    padding: 0 2.56vw;
  }
}
.c-cta {
  position: relative;
  background: #fff8eb;
  padding: 45px 0;
}

.c-cta::before,
.c-cta::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: #9a8d6c;
}

.c-cta::before {
  top: 10px;
}

.c-cta::after {
  bottom: 10px;
}

.c-cta .title {
  width: 69%;
  margin-inline: auto;
}

.c-cta .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 30px;
  margin-top: 20px;
}

.c-cta .item__title {
  width: 100%;
  max-width: 216px;
  margin-inline: auto;
}

.c-cta .btn {
  margin-top: 10px;
}

.c-cta .tel {
  margin-top: 10px;
}

.c-cta .btn a,
.c-cta .tel a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-cta .btn a:hover,
.c-cta .tel a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  .c-cta {
    padding: 10.26vw 0;
  }
  .c-cta::before {
    top: 2.56vw;
  }
  .c-cta::after {
    bottom: 2.56vw;
  }
  .c-cta .items {
    gap: 2.56vw;
    margin-top: 3.85vw;
  }
  .c-cta .item__title {
    max-width: 28.21vw;
  }
  .c-cta .btn {
    margin-top: 1.28vw;
  }
  .c-cta .tel {
    margin-top: 1.28vw;
  }
  .c-cta .btn a:hover,
  .c-cta .tel a:hover {
    opacity: 1;
  }
}
.c-more {
  text-align: center;
  -webkit-transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.c-more.is-open {
  height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
}

.c-more .more__image {
  position: relative;
  display: inline-block;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.c-more .more__image:hover {
  opacity: 0.8;
}

.c-more .more__image.is-open {
  opacity: 0;
  pointer-events: none;
}

.c-more .more__image::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  border-right: 2px solid #00acef;
  border-bottom: 2px solid #00acef;
  -webkit-animation: arrow-fade-move 2s ease-in-out infinite;
  animation: arrow-fade-move 2s ease-in-out infinite;
}

.c-more .more__image.is-open::before {
  bottom: -16px;
  -webkit-animation: none;
  animation: none;
  opacity: 1;
}

@-webkit-keyframes arrow-fade-move {
  0% {
    bottom: -10px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: -16px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    opacity: 0;
  }
}

@keyframes arrow-fade-move {
  0% {
    bottom: -10px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    bottom: -16px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    opacity: 0;
  }
}
.c-more .more__image img {
  width: 98px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 750px) {
  .c-more .more__image:hover {
    opacity: 1;
  }
  .c-more .more__image::before {
    width: 2.05vw;
    height: 2.05vw;
    bottom: -3.85vw;
  }
  .c-more .more__image.is-open::before {
    bottom: -16px;
    -webkit-animation: none;
    animation: none;
    opacity: 1;
  }
  @-webkit-keyframes arrow-fade-move {
    0% {
      bottom: -2.56vw;
      -webkit-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      bottom: -3.85vw;
      -webkit-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
      opacity: 0;
    }
  }
  @keyframes arrow-fade-move {
    0% {
      bottom: -2.56vw;
      -webkit-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      bottom: -3.85vw;
      -webkit-transform: translateX(-50%) rotate(45deg);
      transform: translateX(-50%) rotate(45deg);
      opacity: 0;
    }
  }
  .c-more .more__image img {
    width: 19.49vw;
  }
}
#about {
  position: relative;
  padding: 50px 0 145px;
}

#about .bg {
  position: absolute;
  top: 0;
  left: 0%;
  z-index: -1;
}

#about .row {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

#about .section-title {
  width: calc(17% - 5px);
}

#about .section-title img {
  width: 55%;
}

#about .box {
  width: calc(83% - 5px);
  padding-top: 190px;
}

#about .sub-title img {
  width: 59%;
  margin-left: 0;
}

#about .text {
  margin-top: 10px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#about .text.is-open {
  max-height: 100%;
}

#about .more {
  margin-top: 10px;
}

#about .more.is-open {
  margin-top: 0;
}

@media screen and (max-width: 750px) {
  #about {
    padding: 10.26vw 0 20.51vw;
  }
  #about .row {
    gap: 1.28vw;
  }
  #about .section-title {
    width: calc(17% - 1.28vw);
  }
  #about .section-title img {
    width: 65%;
  }
  #about .box {
    width: calc(83% - 1.28vw);
    padding-top: 23.08vw;
  }
  #about .text {
    margin-top: 1.28vw;
  }
  #about .more {
    margin-top: 2.56vw;
  }
}
#clinic {
  position: relative;
  background: #e5f5fd;
  padding: 20px 0 50px;
}

#clinic::before {
  content: "";
  width: 100%;
  height: 155px;
  position: absolute;
  top: -105px;
  left: 0;
  background-image: url(../images/section-bg-wave01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

#clinic .decoration01 {
  position: absolute;
  top: 30px;
  right: 50px;
  z-index: 1;
}

#clinic .decoration01 img {
  width: 94px;
  height: 77px;
  -o-object-fit: contain;
  object-fit: contain;
}

#clinic .section-title {
  width: 35.8%;
  margin-inline: auto;
}

#clinic .items {
  margin-top: 32px;
}

#clinic .item {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#1c6ac2), to(#00acef));
  background: -webkit-linear-gradient(left, #1c6ac2 0%, #00acef 100%);
  background: linear-gradient(to right, #1c6ac2 0%, #00acef 100%);
  border-radius: 10px;
  padding: 2px;
}

#clinic .item:not(:first-of-type) {
  margin-top: 20px;
}

#clinic .body {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
}

#clinic .head {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

#clinic .image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 310px;
  flex: 0 0 310px;
}

#clinic .box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#clinic .title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3571428571;
  letter-spacing: 0.05em;
  text-align: center;
}

#clinic .sns-lists {
  gap: 20px;
  margin-top: 20px;
}

#clinic .sns-list {
  width: 32px;
}

#clinic .sns-list--x {
  width: 27px;
}

#clinic .sns-list a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#clinic .sns-list a:hover {
  opacity: 0.8;
}

#clinic .dl {
  border-bottom: 1px dashed #ccc;
  padding: 15px 20px;
}

#clinic .dl:last-child {
  border-bottom: none;
}

#clinic .dt {
  width: 21%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1c6ac2;
}

#clinic .dd {
  width: 79%;
  line-height: 1.56;
  letter-spacing: 0;
}

#clinic .tel-btn {
  width: 100%;
}

#clinic .tel-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 3px;
  border: 2px solid #1c6ac2;
  border-radius: 17.5px;
  padding: 7.5px 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#clinic .tel-btn a:hover {
  opacity: 0.8;
}

#clinic .tel-btn .icon img {
  width: 12px;
  height: 15px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
}

#clinic .tel-link {
  position: relative;
  top: -1px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1c6ac2;
}

#clinic .row {
  gap: 20px;
  margin-top: 15px;
}

#clinic .btns {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}

#clinic .btn a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#clinic .btn a:hover {
  opacity: 0.8;
}

#clinic .map {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 390px;
  flex: 0 0 390px;
  position: relative;
  width: 100%;
  aspect-ratio: 390/180;
}

#clinic .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

#clinic .sns {
  margin-top: 50px;
}

#clinic .sns__title {
  width: 30%;
  margin-inline: auto;
}

#clinic .sns__icons {
  gap: 30px;
  margin-top: 24px;
}

#clinic .sns__icon a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#clinic .sns__icon a:hover {
  opacity: 0.8;
}

#clinic .sns__icon img {
  width: 71px;
  height: 71px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 750px) {
  #clinic {
    padding: 5.13vw 0 12.82vw;
  }
  #clinic::before {
    height: 20.77vw;
    top: -14.1vw;
  }
  #clinic .decoration01 {
    top: 7.69vw;
    right: 6.41vw;
  }
  #clinic .decoration01 img {
    width: 12.56vw;
    height: 10.26vw;
  }
  #clinic .section-title {
    width: 53.3%;
  }
  #clinic .items {
    margin-top: 6.15vw;
  }
  #clinic .item {
    border-radius: 2.56vw;
  }
  #clinic .item:not(:first-of-type) {
    margin-top: 3.08vw;
  }
  #clinic .body {
    border-radius: 2.05vw;
    padding: 7.69vw 5.13vw;
  }
  #clinic .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4.1vw;
  }
  #clinic .image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #clinic .title {
    font-size: 5.13vw;
    line-height: 1.5;
  }
  #clinic .sns-lists {
    gap: 5.13vw;
    margin-top: 1.28vw;
  }
  #clinic .sns-list {
    width: 8.21vw;
  }
  #clinic .sns-list--x {
    width: 6.92vw;
  }
  #clinic .sns-list a:hover {
    opacity: 1;
  }
  #clinic .dl-wrap {
    margin-top: 2.56vw;
  }
  #clinic .dl {
    padding: 2.56vw 0;
  }
  #clinic .dt {
    width: 23%;
    font-size: 3.33vw;
  }
  #clinic .dd {
    width: 77%;
    line-height: 1.71;
  }
  #clinic .tel-btn a {
    gap: 0.77vw;
    border-radius: 4.49vw;
    padding: 1.92vw 4.1vw;
  }
  #clinic .tel-btn a:hover {
    opacity: 1;
  }
  #clinic .tel-btn .icon img {
    width: 3.08vw;
    height: 3.85vw;
  }
  #clinic .tel-link {
    top: -0.26vw;
    font-size: 4.1vw;
  }
  #clinic .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4.1vw;
    margin-top: 2.56vw;
  }
  #clinic .btns {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  #clinic .btn a:hover {
    opacity: 1;
  }
  #clinic .map {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    aspect-ratio: 330/150;
  }
  #clinic .map iframe {
    border-radius: 2.56vw;
  }
  #clinic .sns {
    margin-top: 10.26vw;
  }
  #clinic .sns__title {
    width: 46.2%;
  }
  #clinic .sns__icons {
    gap: 6.15vw;
    margin-top: 5.13vw;
  }
  #clinic .sns__icon a:hover {
    opacity: 1;
  }
  #clinic .sns__icon img {
    width: 14.62vw;
    height: 14.62vw;
  }
}
#comment {
  position: relative;
  padding: 170px 0 150px;
}

#comment .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/comment-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

#comment .decoration01 {
  position: absolute;
  top: 25px;
  left: 40px;
  z-index: 1;
}

#comment .decoration01 img {
  width: 110px;
  height: 82px;
  -o-object-fit: contain;
  object-fit: contain;
}

#comment .decoration02 {
  position: absolute;
  top: 60px;
  right: -20px;
  z-index: 1;
}

#comment .decoration02 img {
  width: 140px;
  height: 92px;
  -o-object-fit: contain;
  object-fit: contain;
}

#comment .inner {
  position: relative;
  z-index: 1;
}

#comment .section-title {
  width: 56%;
  margin-inline: auto;
}

#comment .body {
  background: #fff;
  padding: 100px 20px 60px;
  margin-top: -70px;
}

#comment .row {
  gap: 20px;
}

#comment .contents {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 280px;
  flex: 0 0 280px;
}

#comment .image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#comment .title {
  position: absolute;
  width: 100%;
  bottom: 20px;
  left: -20px;
}

@media screen and (max-width: 750px) {
  #comment {
    padding: 17.95vw 0 23.08vw;
  }
  #comment .decoration01 {
    top: -3.85vw;
    left: 5.13vw;
  }
  #comment .decoration01 img {
    width: 14.62vw;
    height: 11.03vw;
  }
  #comment .decoration02 {
    top: 0;
    right: -2.56vw;
  }
  #comment .decoration02 img {
    width: 18.72vw;
    height: 12.31vw;
  }
  #comment .section-title {
    width: 82%;
  }
  #comment .body {
    padding: 8.97vw 2.56vw 6.41vw;
    margin-top: -2.56vw;
  }
  #comment .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.56vw;
  }
  #comment .contents {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 51.28vw;
    margin-inline: auto;
  }
  #comment .title {
    width: 100%;
    max-width: 45.64vw;
    margin-inline: auto;
    bottom: 2.56vw;
    left: -2.56vw;
  }
  #comment .text {
    letter-spacing: 0;
    margin-top: 1.28vw;
  }
}
#downtime {
  position: relative;
  padding: 170px 0 135px;
}

#downtime .decoration01 {
  position: absolute;
  top: 85px;
  left: 50px;
  z-index: 1;
}

#downtime .decoration01 img {
  width: 131px;
  height: 79px;
  -o-object-fit: contain;
  object-fit: contain;
}

#downtime .decoration02 {
  position: absolute;
  bottom: 70px;
  left: 50px;
  z-index: 1;
}

#downtime .decoration02 img {
  width: 54px;
  height: 55px;
  -o-object-fit: contain;
  object-fit: contain;
}

#downtime .section-title {
  width: 73.2%;
  margin-inline: auto;
}

#downtime .body {
  margin-top: 32px;
}

#downtime .title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 0.7692307692;
  letter-spacing: 0.05em;
  color: #fff;
  background: #14427a;
  padding: 25px 20px;
  text-align: center;
}

#downtime .dl {
  padding: 15px 20px;
  border-bottom: 1px dashed #ccc;
}

#downtime .dl:last-child {
  border-bottom: none;
}

#downtime .dt {
  width: 34%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
  color: #1c6ac2;
}

#downtime .dd {
  width: 66%;
  letter-spacing: 0;
}

@media screen and (max-width: 750px) {
  #downtime {
    padding: 25.64vw 0 17.95vw;
  }
  #downtime .decoration01 {
    top: 10.26vw;
    left: 6.41vw;
  }
  #downtime .decoration01 img {
    width: 17.44vw;
    height: 10.51vw;
  }
  #downtime .decoration02 {
    bottom: 8.97vw;
    left: 8.97vw;
  }
  #downtime .decoration02 img {
    width: 7.18vw;
    height: 7.44vw;
  }
  #downtime .body {
    margin-top: 6.15vw;
  }
  #downtime .title {
    font-size: 3.85vw;
    padding: 2.31vw 2.56vw;
  }
  #downtime .dl {
    padding: 2.56vw;
  }
  #downtime .dt {
    width: 34%;
    font-size: 3.33vw;
    line-height: 1.69;
  }
  #downtime .dd {
    width: 66%;
    line-height: 1.71;
  }
  #downtime .dl:last-of-type .dd {
    font-size: 3.49vw;
  }
}
#faq {
  position: relative;
  background: #e5f5fd;
  padding: 50px 0 0;
}

#faq::after {
  content: "";
  width: 100%;
  height: 155px;
  position: absolute;
  bottom: -145px;
  left: 0;
  background-image: url("../images/section-bg-wave02.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

#faq .decoration01 {
  position: absolute;
  top: 60px;
  right: 40px;
}

#faq .decoration01 img {
  width: 106px;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

#faq .section-title {
  width: 30%;
  margin-inline: auto;
}

#faq .items {
  margin-top: 40px;
}

#faq .item:not(:first-of-type) {
  margin-top: 10px;
}

#faq .accordion {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1c6ac2), to(#00acef));
  background: -webkit-linear-gradient(left, #1c6ac2 0%, #00acef 100%);
  background: linear-gradient(to right, #1c6ac2 0%, #00acef 100%);
  padding: 20px 20px 20px 24px;
  cursor: pointer;
}

#faq .question {
  gap: 12px;
}

#faq .en {
  position: relative;
  top: -5px;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

#faq .en--accent {
  top: 0;
  color: #00acef;
}

#faq .title {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6842105263;
  letter-spacing: 0.01em;
}

#faq .btn {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

#faq .btn::before,
#faq .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#faq .btn::before {
  width: 2px;
  height: 18px;
}

#faq .btn::after {
  width: 18px;
  height: 2px;
}

#faq .item.active .btn::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}

#faq .body {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#faq .answer {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-top: none;
  padding: 20px 36px 20px 24px;
}

#faq .text {
  letter-spacing: 0;
}

@media screen and (max-width: 750px) {
  #faq {
    padding: 10.26vw 0 5.13vw;
  }
  #faq::after {
    height: 20.77vw;
    bottom: -17.95vw;
  }
  #faq .decoration01 {
    top: 11.54vw;
    right: 6.41vw;
  }
  #faq .decoration01 img {
    width: 14.1vw;
    height: 9.23vw;
  }
  #faq .items {
    margin-top: 5.13vw;
  }
  #faq .item:not(:first-of-type) {
    margin-top: 2.56vw;
  }
  #faq .accordion {
    gap: 3.85vw;
    padding: 2.56vw;
  }
  #faq .question {
    gap: 3.85vw;
  }
  #faq .en {
    top: 0;
    font-size: 3.85vw;
  }
  #faq .en--accent {
    top: 1.54vw;
  }
  #faq .title {
    font-size: 3.59vw;
    line-height: 1.43;
  }
  #faq .btn {
    width: 3.85vw;
    height: 3.85vw;
  }
  #faq .btn::before {
    width: 0.44vw;
    height: 3.85vw;
  }
  #faq .btn::after {
    width: 3.85vw;
    height: 0.44vw;
  }
  #faq .answer {
    gap: 3.85vw;
    padding: 5.13vw 2.56vw;
  }
}
#flow {
  position: relative;
  background: #e5f5fd;
  padding: 20px 0 0;
}

#flow::before {
  content: "";
  width: 100%;
  height: 155px;
  position: absolute;
  top: -95px;
  left: 0;
  background-image: url("../images/section-bg-wave01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

#flow::after {
  content: "";
  width: 100%;
  height: 155px;
  position: absolute;
  bottom: -145px;
  left: 0;
  background-image: url("../images/section-bg-wave02.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

#flow .inner {
  position: relative;
}

#flow .decoration01 {
  position: absolute;
  top: -70px;
  right: 100px;
}

#flow .decoration01 img {
  width: 93px;
  height: 77px;
  -o-object-fit: contain;
  object-fit: contain;
}

#flow .section-title {
  width: 28.8%;
  margin-inline: auto;
}

#flow .items {
  padding-right: 110px;
  margin-top: 32px;
}

#flow .item {
  position: relative;
  min-height: 260px;
  background: #fff;
  border-radius: 0 10px 10px 0;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 35px 45px 50px 90px;
}

#flow .item::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 60px;
  left: 50px;
  border-left: 1px dashed #1c6ac2;
  z-index: 1;
}

#flow .item:last-of-type::before {
  display: none;
}

#flow .item:not(:first-of-type) {
  margin-top: 20px;
}

#flow .title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1c6ac2;
}

#flow .number {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

#flow .number img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

#flow .text {
  letter-spacing: 0;
  padding-right: 100px;
  margin-top: 16px;
}

#flow .item:nth-of-type(1) .text {
  padding-right: 92px;
}

#flow .image {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  right: -90px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#flow .item:nth-of-type(4) .image {
  top: 30px;
  -webkit-transform: none;
  transform: none;
}

#flow .lists {
  background: #f2f2f2;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}

#flow .list:not(:first-of-type) {
  margin-top: 10px;
}

#flow .list__title {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1c6ac2;
  padding-left: 25px;
}

#flow .list__title::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #1c6ac2;
}

#flow .list__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0em;
  margin-top: 5px;
}

@media screen and (max-width: 750px) {
  #flow {
    padding: 5.13vw 0 7.69vw;
  }
  #flow::before {
    height: 20.77vw;
    top: -12.82vw;
  }
  #flow::after {
    height: 20.77vw;
    bottom: -17.95vw;
  }
  #flow .decoration01 {
    top: -10.26vw;
    right: 15.38vw;
  }
  #flow .decoration01 img {
    width: 12.31vw;
    height: 10.26vw;
  }
  #flow .items {
    padding-right: 2.56vw;
    margin-top: 6.15vw;
  }
  #flow .item {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    border-radius: 0 2.56vw 2.56vw 0;
    padding: 6.15vw 5.13vw 7.69vw 12.82vw;
  }
  #flow .item::before {
    top: 12.82vw;
    left: 7.44vw;
  }
  #flow .item:not(:first-of-type) {
    margin-top: 3.85vw;
  }
  #flow .title {
    font-size: 5.13vw;
    text-align: center;
  }
  #flow .number {
    top: 5.13vw;
    left: 2.56vw;
  }
  #flow .number img {
    width: 10.26vw;
    height: 12.31vw;
  }
  #flow .contents {
    margin-top: 5.13vw;
  }
  #flow .text {
    padding-right: 0;
    margin-top: 2.56vw;
  }
  #flow .item:nth-of-type(1) .text {
    padding-right: 0;
  }
  #flow .image {
    position: relative;
    width: 38.46vw;
    height: 38.46vw;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #flow .item:nth-of-type(4) .image {
    top: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  #flow .lists {
    border-radius: 2.56vw;
    padding: 5.13vw 3.85vw;
    margin-top: 5.13vw;
  }
  #flow .list:not(:first-of-type) {
    margin-top: 3.85vw;
  }
  #flow .list__title {
    font-size: 3.85vw;
    padding-left: 3.85vw;
  }
  #flow .list__title::before {
    width: 2.56vw;
    height: 2.56vw;
    top: calc(50% + 2px);
  }
  #flow .list__text {
    font-size: 3.08vw;
    line-height: 1.6;
    margin-top: 1.79vw;
  }
}
#fv {
  position: relative;
  background-image: url("../images/fv-bg.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px 0 160px;
  margin-top: 80px;
}

#fv .title {
  width: 97%;
}

#fv .box {
  position: relative;
  width: calc(100% + 20px);
  left: -20px;
  margin-top: 30px;
}

#fv .banner {
  margin-top: 30px;
}

#fv .banner a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#fv .banner a:hover {
  opacity: 0.8;
}

#fv .btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

#fv .btn a {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}

#fv .btn a:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

#fv .sub-wrap {
  position: absolute;
  width: 100%;
  max-width: 750px;
  bottom: 255px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 10;
}

#fv .sub-wrap.is-active {
  opacity: 1;
  pointer-events: auto;
}

#fv .sub-btns {
  width: 70%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 22px 14px 18px 18px;
}

#fv .sub-btn a {
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#fv .sub-btn a:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

#fv .sub-btn img {
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width: 750px) {
  #fv {
    padding: 4.1vw 0 15.38vw;
    margin-top: 12.82vw;
  }
  #fv .box {
    width: calc(100% + 2.56vw);
    left: -2.56vw;
    margin-top: 4.1vw;
  }
  #fv .banner {
    margin-top: 5.13vw;
  }
  #fv .banner a:hover {
    opacity: 1;
  }
  #fv .btns {
    margin-top: 5.13vw;
  }
  #fv .btn a:hover {
    -webkit-transform: none;
    transform: none;
  }
  #fv .sub-wrap {
    max-width: 100%;
    bottom: 27.44vw;
  }
  #fv .sub-btns {
    gap: 1.28vw;
    border-radius: 2.56vw;
    padding: 12px 8px 8px 12px;
  }
  #fv .sub-btn a:hover {
    -webkit-transform: none;
    transform: none;
  }
}
#price {
  position: relative;
  padding: 165px 0 50px;
}

#price .decoration01 {
  position: absolute;
  top: 25px;
  left: 30px;
  z-index: 1;
}

#price .decoration01 img {
  width: 84px;
  height: 67px;
  -o-object-fit: contain;
  object-fit: contain;
}

#price .decoration02 {
  position: absolute;
  top: 110px;
  right: 50px;
  z-index: 1;
}

#price .decoration02 img {
  width: 103px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

#price .section-title {
  width: 40%;
  margin-inline: auto;
}

#price .items {
  margin-top: 30px;
}

#price .item {
  padding: 16px 10px 16px 20px;
  border-bottom: 1px dashed #ccc;
}

#price .item:last-of-type {
  border-bottom: none;
}

#price .row {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

#price .menu {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#price .menu__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

#price .menu__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 7px;
}

#price .price {
  width: 100%;
  max-width: 250px;
  margin-inline: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#price .price__text {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}

#price .price__text .accent {
  display: inline-block;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  color: #1c6ac2;
  padding: 0 5px 0 10px;
}

#price .box {
  background: #f2f2f2;
}

#price .box__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  background: #112a55;
  padding: 10px;
  text-align: center;
}

#price .box__items {
  margin-top: 0;
}

#price .texts {
  margin-top: 24px;
}

#price .texts .title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #1c6ac2;
  padding-left: 18px;
}

#price .title::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #1c6ac2;
}

#price .text {
  letter-spacing: 0.01em;
  margin-top: 5px;
}

#price .payment {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  margin-top: 10px;
}

#price .banner {
  margin-top: 40px;
}

#price .banner a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#price .banner a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  #price {
    padding: 20.51vw 0 10.26vw;
  }
  #price .decoration01 {
    top: 1.28vw;
    left: 3.85vw;
  }
  #price .decoration01 img {
    width: 11.28vw;
    height: 8.97vw;
  }
  #price .decoration02 {
    top: 12.82vw;
    right: 7.69vw;
  }
  #price .decoration02 img {
    width: 13.85vw;
    height: 10.51vw;
  }
  #price .items {
    margin-top: 3.85vw;
  }
  #price .item {
    padding: 2.56vw 2.56vw 2.56vw 5.13vw;
  }
  #price .menu__title {
    font-size: 3.85vw;
  }
  #price .menu__text {
    font-size: 2.56vw;
    margin-top: 1.28vw;
  }
  #price .price {
    max-width: 35.9vw;
  }
  #price .price__text {
    font-size: 2.56vw;
  }
  #price .price__text .accent {
    font-size: 5.13vw;
    padding: 0 0.64vw 0 1.28vw;
  }
  #price .box__title {
    font-size: 3.85vw;
    padding: 1.41vw 2.56vw;
  }
  #price .box__items {
    margin-top: 0;
  }
  #price .texts {
    margin-top: 5.13vw;
  }
  #price .texts .title {
    font-size: 3.85vw;
    padding-left: 3.33vw;
  }
  #price .title::before {
    width: 1.79vw;
    height: 1.79vw;
    top: calc(50% + 0.26vw);
  }
  #price .text {
    margin-top: 1.28vw;
  }
  #price .payment {
    max-width: 53.33vw;
    margin-top: 5.13vw;
  }
  #price .banner {
    margin-top: 5.13vw;
  }
  #price .banner a:hover {
    opacity: 1;
  }
}
#reason {
  position: relative;
  background: #e5f5fd;
  padding: 20px 0 0;
}

#reason::before {
  content: "";
  width: 100%;
  height: 155px;
  position: absolute;
  top: -115px;
  left: 0;
  background-image: url("../images/section-bg-wave01.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

#reason::after {
  content: "";
  width: 100%;
  height: 155px;
  position: absolute;
  bottom: -145px;
  left: 0;
  background-image: url("../images/section-bg-wave02.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}

#reason .decoration01 {
  position: absolute;
  top: -95px;
  left: 50px;
}

#reason .decoration01 img {
  width: 105px;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
}

#reason .decoration02 {
  position: absolute;
  top: 15px;
  right: 20px;
}

#reason .decoration02 img {
  width: 97px;
  height: 96px;
  -o-object-fit: contain;
  object-fit: contain;
}

#reason .section-title {
  width: 62.7%;
  margin-inline: auto;
}

#reason .items {
  margin-top: 50px;
}

#reason .item {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#1c6ac2), to(#00acef));
  background: -webkit-linear-gradient(left, #1c6ac2 0%, #00acef 100%);
  background: linear-gradient(to right, #1c6ac2 0%, #00acef 100%);
  border-radius: 150px 10px 10px 10px;
  padding: 2px;
}

#reason .item:not(:first-of-type) {
  margin-top: 60px;
}

#reason .body {
  background: #fff;
  border-radius: 148px 8px 8px 8px;
  padding: 40px 25px;
}

#reason .number {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 1;
}

#reason .number img {
  width: 90px;
  height: 106px;
  -o-object-fit: contain;
  object-fit: contain;
}

#reason .title {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5333333333;
  letter-spacing: 0.05em;
  text-align: center;
}

#reason .title .accent {
  color: #1c6ac2;
}

#reason .image {
  width: 87%;
  margin-inline: auto;
  margin-top: 10px;
}

#reason .text {
  margin-top: 10px;
}

#reason .units {
  margin-top: 40px;
}

#reason .unit:not(:first-of-type) {
  margin-top: 30px;
}

#reason .unit__title {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1c6ac2), to(#00acef));
  background: -webkit-linear-gradient(left, #1c6ac2 0%, #00acef 100%);
  background: linear-gradient(to right, #1c6ac2 0%, #00acef 100%);
  border-radius: 25px;
  padding: 8px 10px 12px;
  text-align: center;
}

#reason .unit__row {
  gap: 30px;
  margin-top: 16px;
}

#reason .unit__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
}

#reason .unit__image img {
  height: auto;
  aspect-ratio: 260/180;
}

#reason .unit__contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#reason .unit__head {
  background: #fff8eb;
}

#reason .unit__head-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4375;
  letter-spacing: 0.05em;
  padding: 7px;
  text-align: center;
}

#reason .unit__head-title .accent {
  color: #1c6ac2;
}

#reason .unit__text {
  letter-spacing: 0;
}

#reason .unit:nth-of-type(3) .unit__text {
  font-size: 15.9px;
}

#reason .unit__price {
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 10px;
  text-align: center;
}

#reason .unit__price .accent {
  color: #1c6ac2;
}

#reason .middle {
  display: inline-block;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-left: 5px;
}

#reason .big {
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

#reason .item:nth-of-type(3) .row {
  width: 85%;
  gap: 10px;
  margin-inline: auto;
}

#reason .item:nth-of-type(3) .title {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 285px;
  flex: 0 0 285px;
  text-align: left;
}

#reason .item:nth-of-type(3) .image {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#reason .item:nth-of-type(3) .text {
  font-size: 15.9px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#reason .item:nth-of-type(3) .more {
  margin-top: 10px;
}

#reason .item:nth-of-type(3) .more.is-open {
  margin-top: 0;
}

#reason .banner {
  margin-top: 50px;
}

#reason .banner a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#reason .banner a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 750px) {
  #reason {
    padding: 5.13vw 0 7.69vw;
  }
  #reason::before {
    height: 20.77vw;
    top: -12.82vw;
  }
  #reason::after {
    height: 20.77vw;
    bottom: -12.82vw;
  }
  #reason .decoration01 {
    top: -15.38vw;
    left: 5.13vw;
  }
  #reason .decoration01 img {
    width: 14.1vw;
    width: 12.05vw;
  }
  #reason .decoration02 {
    top: -1.28vw;
    right: 5.13vw;
  }
  #reason .decoration02 img {
    width: 13.08vw;
    width: 12.82vw;
  }
  #reason .items {
    margin-top: 8.21vw;
  }
  #reason .item {
    border-radius: 20.51vw 2.56vw 2.56vw 2.56vw;
  }
  #reason .item:not(:first-of-type) {
    margin-top: 7.69vw;
  }
  #reason .body {
    border-radius: 20vw 2.05vw 2.05vw 2.05vw;
    padding: 7.69vw 5.13vw;
  }
  #reason .number {
    top: -2.56vw;
  }
  #reason .number img {
    width: 12.05vw;
    height: 14.1vw;
  }
  #reason .title {
    font-size: 5.13vw;
  }
  #reason .item:nth-of-type(2) .title {
    padding-left: 7.69vw;
  }
  #reason .title.title--fz {
    font-size: 4.1vw;
    letter-spacing: 0;
  }
  #reason .image {
    width: 91%;
    margin-top: 1.28vw;
  }
  #reason .text {
    margin-top: 1.28vw;
  }
  #reason .units {
    margin-top: 5.13vw;
  }
  #reason .unit:not(:first-of-type) {
    margin-top: 3.85vw;
  }
  #reason .unit__title {
    font-size: 3.85vw;
    border-radius: 3.21vw;
    padding: 1.03vw 2.56vw 1.54vw;
  }
  #reason .unit__row {
    gap: 4.1vw;
    margin-top: 2.56vw;
  }
  #reason .unit__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.85vw;
    flex: 0 0 33.85vw;
  }
  #reason .unit__image img {
    aspect-ratio: 132/91;
  }
  #reason .unit__head-title {
    font-size: 3.33vw;
    padding: 1.54vw;
  }
  #reason .unit__text {
    letter-spacing: 0;
    margin-top: 1.28vw;
  }
  #reason .unit:nth-of-type(3) .unit__text {
    font-size: 3.59vw;
  }
  #reason .unit:nth-of-type(4) .unit__text,
  #reason .unit:nth-of-type(5) .unit__text {
    font-size: 3.46vw;
  }
  #reason .unit__price {
    font-size: 2.56vw;
    margin-top: 2.56vw;
  }
  #reason .middle {
    font-size: 3.85vw;
    padding-left: 0.77vw;
  }
  #reason .big {
    font-size: 6.67vw;
  }
  #reason .item:nth-of-type(3) .body {
    padding: 10.26vw 5.13vw 7.69vw;
  }
  #reason .item:nth-of-type(3) .row {
    width: 100%;
    gap: 0;
  }
  #reason .item:nth-of-type(3) .title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50vw;
    flex: 0 0 50vw;
  }
  #reason .item:nth-of-type(3) .image {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  #reason .item:nth-of-type(3) .text {
    font-size: 3.59vw;
  }
  #reason .item:nth-of-type(3) .more {
    margin-top: 1.28vw;
  }
  #reason .banner {
    margin-top: 7.69vw;
  }
  #reason .banner a:hover {
    opacity: 1;
  }
}
#recommend {
  position: relative;
  padding: 0 0 50px;
  padding: 20px 0 50px;
  margin-top: -75px;
}

#recommend .decoration01 {
  position: absolute;
  top: 30px;
  left: 40px;
}

#recommend .decoration01 img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

#recommend .decoration02 {
  position: absolute;
  top: 50px;
  right: 30px;
}

#recommend .decoration02 img {
  width: 108px;
  height: 72px;
  -o-object-fit: contain;
  object-fit: contain;
}

#recommend .section-title {
  width: 64.4%;
  margin-inline: auto;
}

#recommend .image {
  width: 90%;
  margin-inline: auto;
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  #recommend {
    padding: 5.13vw 0 7.69vw;
    margin-top: -11.54vw;
  }
  #recommend .decoration01 {
    top: 5.13vw;
    left: 5.13vw;
  }
  #recommend .decoration01 img {
    width: 7.95vw;
    height: 7.95vw;
  }
  #recommend .decoration02 {
    top: 7.69vw;
    right: 5.13vw;
  }
  #recommend .decoration02 img {
    width: 14.36vw;
    height: 9.49vw;
  }
  #recommend .image {
    width: 100%;
    margin-top: 4.1vw;
  }
}
.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
