@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 10px; /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

address, caption, cite, code, dfn, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

main {
  display: block;
}

section {
  position: relative;
}

/* ====================================================
HTML
==================================================== */
body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  a {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  a[href^=tel] {
    pointer-events: none;
  }
}
@media screen and (max-width: 767px) {
  a {
    -webkit-tap-highlight-color: transparent;
  }
}

.clearfix {
  *zoom: 1;
}
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Layout
==================================================== */
.inner {
  display: block;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}
.inner-1200 {
  max-width: 1240px !important;
}
.inner-1100 {
  max-width: 1140px !important;
}

.ani-arrow {
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.ani-arrow::before, .ani-arrow::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 13px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.ani-arrow::before {
  background: url(../img/layout/ar-btn.svg) center no-repeat;
  background-size: contain;
}
.ani-arrow::after {
  background: url(../img/layout/ar-white.svg) center no-repeat;
  background-size: contain;
  left: calc(50% - 20px);
}

@media (any-hover: hover) {
  a:has(.ani-arrow):hover {
    opacity: 1;
  }
  a:has(.ani-arrow):hover .ani-arrow {
    background: #4BADE6;
  }
  a:has(.ani-arrow):hover .ani-arrow::after {
    left: 50%;
  }
}

.calendar-box__table {
  width: 100%;
}
.calendar-box__table tr {
  font-weight: bold;
}
.calendar-box__table tr th {
  text-align: center;
  height: 40px;
  background: #4BADE6;
  color: white;
}
.calendar-box__table tr td {
  position: relative;
  text-align: left;
  height: 50px;
  color: #4F4B3E;
  border-bottom: 1px solid #CCCCCC;
}
.calendar-box__table tr td:not(:first-child)::after {
  content: "ー";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.calendar-box__table tr td:not(:first-child).dot::after {
  content: "●";
  color: #45CADC;
}
.calendar-box__table tr td:not(:first-child).triangle::after {
  content: "▲";
  color: #45CADC;
}
.calendar-box__note {
  color: #4F4B3E;
  font-size: 1.6rem;
  margin-top: 10px;
}
.calendar-box__note p {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
}
.calendar-box__note p:not(:last-child) {
  margin-bottom: 9px;
}
.calendar-box__note p .txt-label {
  content: "休診日";
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 80px;
  background: #FF9900;
  color: white;
  border-radius: 4px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 4px 0;
  margin: -2px 10px -1px 1px;
}
@media screen and (max-width: 767px) {
  .calendar-box__note p .txt-label {
    margin-top: 4px;
  }
}
.calendar-box__note p.triangle::before {
  content: "▲";
  background: unset;
  color: #56D1E1;
  max-width: 18px;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
}
.calendar-box__note p.dot::before {
  content: "●";
  position: relative;
  background: unset;
  color: #FFE071;
  max-width: 18px;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}

.line-through {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFFFB0), color-stop(50%, #FFFFB0));
  background-image: linear-gradient(to right, #FFFFB0 50%, #FFFFB0 50%);
  background-size: 100% 10px;
  background-repeat: no-repeat;
  background-position: 0% bottom;
  font-weight: bold;
}

.form-control {
  display: block;
  width: 100%;
  height: 45px;
  background: white;
  border: 1px solid #ccc;
  font-weight: 500;
  padding: 5px 10px;
  font-size: 1.5rem;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.sec-features {
  overflow: hidden;
}
.sec-features .inner {
  max-width: 1140px;
}

.features-list__img {
  position: relative;
}
@media screen and (max-width: 990px) {
  .features-list__img {
    margin-bottom: 47px;
  }
}
.features-list__img::before {
  content: "";
  display: block;
  padding-bottom: 65.4545454545%;
}
.features-list__img::after {
  content: "";
  position: absolute;
  width: 123.637%;
  height: 137.23%;
  background: url(../img/index/features-border.png) center no-repeat;
  background-size: contain;
  top: 52%;
  left: 49%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.features-list__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.features-list__ct {
  position: relative;
  z-index: 3;
}
.features-list__ct-ttl {
  position: relative;
  color: #B29828;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.6;
  padding-bottom: 22px;
  margin-bottom: 19px;
}
.features-list__ct-ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background: url(../img/index/features-line.png) left no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 990px) {
  .features-list__ct--02 {
    margin-bottom: 90px;
  }
}
.features-list__tel {
  border-bottom: 10px solid #FFFFB0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 27px;
  line-height: 1.2;
  padding-bottom: 3px;
}
.features-list__tel span {
  margin-right: 10px;
  background: #FF9900;
  padding: 5px 23px;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}
.features-list__tel a {
  color: #FF9900;
  font-weight: bold;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
}
.features-list__tel a img {
  width: 20px;
}

.sec-mv {
  position: relative;
}
.sec-mv .inner {
  max-width: 1240px;
}
.sec-mv__slider-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-mv__ct {
  margin-top: -96px;
}
.sec-mv__ct-ttl {
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
}
.sec-mv__ct-ttl::before {
  content: "";
  position: absolute;
  background: url(../img/index/mv-heart.svg) center no-repeat;
  background-size: contain;
}
.sec-mv__ct-ttl:after {
  content: "";
  position: absolute;
  width: 338px;
  height: 370px;
  background: url(../img/layout/dots-deco.png) center no-repeat;
  background-size: contain;
}
.sec-mv__ct-ttl span {
  display: block;
  color: #FF9900;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.sec-mv__ct-ttl--white {
  display: block;
  text-align: center;
  color: white;
  text-shadow: 0 0 0 black;
  padding: 0 !important;
  margin: 0 !important;
}
.sec-mv__ct-ttl--white:before {
  display: none;
}
.sec-mv__ct-note {
  position: relative;
  display: inline-block;
  background: #FF9900;
  color: white;
  border-radius: 25px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.sec-mv__ct-listItem:nth-child(even) a {
  background: #E9F6FD;
}
.sec-mv__ct-listItem a {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  width: 100%;
  height: 100%;
  background: #FFFAE7;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid #B29828;
  border-radius: 20px;
  top: 0;
  overflow: hidden;
}
.sec-mv__ct-listItem a .ani-arrow {
  border: 1px solid #B29828;
}
.sec-mv__ct-listItem a .ani-arrow::before {
  background: url(../img/layout/ar-brown.svg) center no-repeat;
  background-size: contain;
}
@media (any-hover: hover) {
  .sec-mv__ct-listItem a:hover {
    top: -5px;
  }
  .sec-mv__ct-listItem a:hover .ani-arrow {
    background: #B29828;
  }
}
.sec-mv__ct-listImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.sec-mv__ct-listCt {
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 1.6rem;
  line-height: 1.5;
}
.sec-mv__ct-listTtl {
  position: relative;
  color: #B29828;
  border-bottom: 1px dashed #B29828;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 359px) {
  .sec-mv__ct-listTtl {
    font-size: 2.2rem;
  }
}
.sec-mv__02 {
  background: #FDFCBD;
  background: -webkit-gradient(linear, left top, right top, from(rgba(253, 252, 189, 0.73)), color-stop(50%, rgb(69, 202, 220)), to(rgb(75, 173, 230)));
  background: linear-gradient(90deg, rgba(253, 252, 189, 0.73) 0%, rgb(69, 202, 220) 50%, rgb(75, 173, 230) 100%);
  position: relative;
}
.sec-mv__02-ttl {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  font-weight: bold;
  text-align: center;
  color: white;
}

.sec-intro {
  position: relative;
  z-index: 1;
}
.sec-intro::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.sec-intro::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.sec-intro p:not(:last-child) {
  margin-bottom: 32px;
}

.intro-ttl {
  text-align: center;
  color: #3399D5;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  line-height: 1.6;
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
}

.treatment-wrap {
  background: white;
  border-radius: 20px;
}
.treatment-wrap__ttl {
  text-align: center;
  color: #4BADE6;
  border-bottom: 1px dashed #4BADE6;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 359px) {
  .treatment-wrap__ttl {
    font-size: 3rem;
  }
}
.treatment-wrap .c-txt__basic {
  line-height: 1.6;
}
.treatment-wrap__list {
  margin: 24px 0 40px;
}
.treatment-wrap__list-item:nth-child(3n+2) .treatment-wrap__list-ttl {
  background: #ECF4FF;
  color: #4B8CE6;
}
.treatment-wrap__list-item:nth-child(3n) .treatment-wrap__list-ttl {
  background: #E5FCFF;
  color: #45CADC;
}
.treatment-wrap__list-img {
  max-width: 200px;
  margin: 0 auto 20px;
}
.treatment-wrap__list-ttl {
  text-align: center;
  background: #E9F6FD;
  color: #4BADE6;
  border-radius: 25px;
  font-weight: bold;
  font-size: 2rem;
}
.treatment-wrap__list-checkItem {
  position: relative;
  font-size: 1.6rem;
  padding-left: 30px;
}
.treatment-wrap__list-checkItem:not(:last-child) {
  margin-bottom: 8px;
}
.treatment-wrap__list-checkItem::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url(../img/index/treatment-check.svg) center no-repeat;
  background-size: contain;
  top: 2px;
  left: 0;
}

.treatment-list__item a {
  display: block;
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
}
.treatment-list__item a .ani-arrow {
  border: 1px solid #4BADE6;
  top: 10px;
  right: 0;
}
.treatment-list__item a .ani-arrow::before {
  background: url(../img/layout/ar-blue.svg) center no-repeat;
  background-size: contain;
}
@media (any-hover: hover) {
  .treatment-list__item a:hover {
    background: #E9F6FD;
    color: #4F4B3E;
  }
  .treatment-list__item a:hover .ani-arrow {
    background: #4BADE6;
  }
}
.treatment-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.treatment-list__ct {
  line-height: 1.6;
}
.treatment-list__ct-ttl {
  text-align: center;
  position: relative;
  color: #4BADE6;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.menu-scroll {
  border-bottom: 1px dashed #4BADE6;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 35px;
  padding-bottom: 10px;
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 40px);
}
@media screen and (max-width: 1200px) {
  .menu-scroll {
    gap: 10px 26px;
  }
}
.menu-scroll__item a {
  color: #333;
  position: relative;
  display: inline-block;
  padding-right: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.6rem;
}
.menu-scroll__item a .ani-arrow {
  position: absolute;
  right: 0;
  top: -1px;
  border-radius: 50%;
  border: 1px solid #4BADE6;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu-scroll__item a .ani-arrow::before {
  background: url("../img/layout/ar-blue.svg") center no-repeat;
  background-size: contain;
}
.menu-scroll__item a:hover {
  color: #4BADE6;
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.list-dots__item {
  color: #333;
  line-height: 1.4;
  padding-left: 21px;
  position: relative;
  font-size: 1.6rem;
}
.list-dots__item:not(:last-child) {
  margin-bottom: 10px;
}
.list-dots__item:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  background: #FFE071;
  top: 6px;
  left: 0;
  border-radius: 50%;
}

.disease-heading__ct {
  font-size: 1.6rem;
  line-height: 2;
}
.disease-heading__ct strong {
  font-weight: bold;
}
.disease-heading__ct strong span {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFFFB0), color-stop(0, transparent));
  background-image: linear-gradient(90deg, #FFFFB0 50%, transparent 0);
  background-size: 200% 17px;
  background-repeat: no-repeat;
  background-position: 0 17px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.disease-heading__ct p {
  margin-bottom: 30px;
}
.disease-heading__ct p:last-child {
  margin-bottom: 0;
}
.disease-heading__img {
  border-radius: 20px;
  overflow: hidden;
}

.daycare-note {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  background: #F8F8ED;
  position: relative;
}
.daycare-note__img {
  position: absolute;
}

.daycare-check {
  background: #E9F6FD;
  padding: 50px 0;
  position: relative;
  margin-bottom: 59px;
}
.daycare-check__list {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  background: white;
  position: relative;
}
.daycare-check__list:after {
  content: "";
  width: 151px;
  height: 166px;
  background: url("../img/daycare/item-02.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: -10px;
  right: -78px;
}
.daycare-check__list li {
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 4px;
}
.daycare-check__list li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/daycare/check.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 4px;
  left: 0;
}

.daycare-show {
  color: #B29828;
  font-weight: bold;
  text-align: center;
}
.daycare-show__item {
  background: #F8F8ED;
  border-radius: 10px;
  position: relative;
  min-height: 230px;
  padding: 52px 15px 15px;
}
.daycare-show__item:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed #B29828;
  border-radius: 10px;
}
.daycare-show__img {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.daycare-show p {
  min-height: 50px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.daycare-time {
  background: white;
  border-radius: 20px;
}
.daycare-time dl {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.daycare-time dl:before {
  content: "";
  width: 4px;
  position: absolute;
  top: 0;
  left: 50px;
  bottom: 0;
  background: url("../img/daycare/line.png") no-repeat;
  background-size: 100%;
}
.daycare-time dl:last-child:before {
  display: none;
}
.daycare-time dl dt {
  border-radius: 50%;
  background: #4BADE6;
  color: white;
  text-align: center;
  font-weight: 500;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.daycare-time dl dd {
  font-size: 1.8rem;
  line-height: 1.6;
  position: relative;
  font-weight: bold;
}
.daycare-time dl:nth-child(even) dt {
  background: #45CADC;
}
.daycare-time__all {
  margin-bottom: 10px;
}
.daycare-time__note {
  line-height: 1.6;
}
.daycare-time__note p {
  position: relative;
  padding: 0 0 0 10px;
  margin-bottom: 12px;
}
.daycare-time__note p:before {
  content: "※";
  color: #FF9900;
  position: absolute;
  top: 0;
  left: -11px;
}
.daycare-time__note p:last-child {
  margin-bottom: 0;
}
.daycare-time__note a {
  font-weight: bold;
  text-decoration: underline;
}

.daycare-flow {
  counter-reset: section;
}
.daycare-flow__item {
  background: #F8F8ED;
  border-radius: 20px;
  position: relative;
  min-height: 220px;
}
.daycare-flow__item:before {
  counter-increment: section;
  content: counter(section);
  font-weight: bold;
  background: url(../img/daycare/bg-number.svg) no-repeat;
  background-size: 100%;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  font-family: "Zen Maru Gothic", sans-serif;
}
.daycare-flow__item:after {
  content: "";
  width: 4px;
  height: 50px;
  margin: 0 auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: url(../img/daycare/line02.png) no-repeat;
  background-size: 100%;
}
.daycare-flow__item:last-child:after {
  display: none;
}
.daycare-flow__ttl {
  display: block;
  color: #B29828;
  font-weight: bold;
  border-bottom: 1px dotted #B29828;
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.daycare-tel {
  background: #F8F8ED;
  border-radius: 20px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 0;
}
.daycare-tel__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.daycare-tel__number {
  display: block;
  position: relative;
  color: #FF9900;
  font-family: "Poppins", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: bold;
  padding: 0 0 0 20px;
}
.daycare-tel__number:before {
  content: "";
  width: 23px;
  height: 26px;
  background: url("../img/daycare/tel.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.daycare-tel__note {
  display: block;
  background: #FF9900;
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 8px;
  padding: 8px 10px;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
  .daycare-note {
    padding: 18px 20px 20px;
    margin-bottom: 50px;
    text-align: left;
  }
  .daycare-note__img {
    width: 90px;
    left: auto;
    right: 14px;
    bottom: -106px;
  }
  .daycare-check {
    margin-bottom: -39px;
  }
  .daycare-check__list {
    padding: 40px 20px 90px;
  }
  .daycare-check__list:after {
    width: 120px;
    height: 132px;
    bottom: -50px;
    right: 0;
  }
  .daycare-show {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 1.8rem;
    gap: 11px;
    margin-bottom: -11px;
  }
  .daycare-show__item {
    padding: 39px 10px 15px;
    min-height: 160px;
  }
  .daycare-show__item:last-child {
    letter-spacing: 0;
    font-size: 1.5rem;
  }
  .daycare-show__img {
    height: 55px;
    margin-bottom: 5px;
  }
  .daycare-time {
    padding: 60px 0 20px 20px;
    margin-bottom: 19px;
  }
  .daycare-time--bg {
    background: url("../img/daycare/bg-sp.png") no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 0 0 42px;
    margin-bottom: -40px;
  }
  .daycare-time dl {
    padding-bottom: 36px;
  }
  .daycare-time dl.sp-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .daycare-time dl.sp-start dd {
    padding-top: 25px;
  }
  .daycare-time dl:last-child {
    padding-bottom: 10px;
  }
  .daycare-time dl:before {
    left: 38px;
  }
  .daycare-time dl dt {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  .daycare-time dl dd {
    width: calc(100% - 80px);
    font-weight: bold;
    padding: 0 0 0 15px;
  }
  .daycare-time__img {
    margin: 16px 0 0 0;
    padding-right: 20px;
  }
  .daycare-time__img img {
    border-radius: 20px;
  }
  .daycare-time__all {
    margin-bottom: 10px;
  }
  .daycare-time__note {
    padding: 0 20px 0 11px;
  }
  .daycare-flow {
    margin-bottom: 0;
  }
  .daycare-flow__item {
    padding: 23px 18px;
    margin-bottom: 49px;
  }
  .daycare-flow__item:last-of-type {
    margin-bottom: 0;
  }
  .daycare-flow__item:before {
    width: 69px;
    height: 64px;
    font-size: 3rem;
    top: -34px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .daycare-flow__ttl {
    font-size: 2.6rem;
    text-align: center;
    padding: 0 0 4px;
  }
  .daycare-tel {
    padding: 29px 20px 20px;
    margin-bottom: 25px;
  }
  .daycare-tel__item {
    width: 100%;
  }
  .daycare-tel__note {
    width: 100%;
    margin: 0 0 7px;
    text-align: center;
  }
  .calendar-box {
    margin-bottom: 33px;
  }
  .calendar-box__table tr {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .calendar-box__table tr th, .calendar-box__table tr td {
    padding-top: 2px;
  }
  .calendar-box__table tr th:first-child, .calendar-box__table tr td:first-child {
    width: 110px;
  }
  .calendar-box__table tr td:first-child {
    padding-left: 7px;
  }
  .calendar-box__table tr td:not(:first-child)::after {
    font-size: 1.4rem;
  }
  .calendar-box__table tr td:not(:first-child).dot::after {
    font-size: 1.9rem;
  }
  .calendar-box__table tr td:not(:first-child).triangle::after {
    font-size: 1.8rem;
  }
  .calendar-box__note p.dot {
    line-height: 1.6;
  }
  .calendar-box__note p.dot::before {
    top: 2px;
    left: -2px;
  }
  .sec-features {
    background: url(../img/index/features-bg-sp.jpg) bottom no-repeat;
    background-size: cover;
    padding: 82px 0 80px;
  }
  .daycare-cost {
    margin-bottom: -12px;
  }
  .daycare-cost__ct {
    margin-bottom: 30px;
  }
  .daycare-cost__img img {
    display: block;
    width: 245px;
    margin: 0 auto;
  }
  .features-list {
    margin-top: 62px;
  }
  .features-list__item:not(:last-child) {
    margin-bottom: 80px;
  }
  .features-list__item:nth-child(even) .features-list__img {
    margin-bottom: 40px;
  }
  .features-list__item:nth-child(even) .features-list__ct-ttl {
    margin-bottom: 15px;
    padding-bottom: 17px;
  }
  .features-list__ct-ttl {
    letter-spacing: -1px;
  }
  .features-list__ct-btn {
    margin-top: 30px;
  }
  .features-list__ct-btn a:not(:last-child) {
    margin-bottom: 7px;
  }
  .features-list__ct--02 {
    margin-bottom: 50px;
  }
  .features-list__tel {
    margin-top: 20px;
    padding-bottom: 1px;
    display: block;
    text-align: center;
  }
  .features-list__tel span {
    display: block;
    margin-top: 5px;
    padding: 5px 15px;
    width: 100%;
    margin-bottom: 7px;
  }
  .sec-mv {
    background: url(../img/index/mv-bg-sp.jpg) bottom no-repeat;
    background-size: cover;
    padding: 100px 0 110px;
  }
  .sec-mv--page {
    background: url("../img/first/bg-mv-sp.png") bottom no-repeat;
    background-size: 60%;
    background-position: top right;
    padding-bottom: 20px;
  }
  .sec-mv--page .sec-mv__img {
    border-radius: 20px;
    overflow: hidden;
  }
  .sec-mv--page .sec-mv__img img {
    width: 100%;
  }
  .sec-mv--page .sec-mv__ct {
    margin-top: -76px;
  }
  .sec-mv--page .sec-mv__ct-ttl::before {
    top: -13px;
  }
  .sec-mv__slider {
    position: relative;
    overflow: hidden;
  }
  .sec-mv__slider:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 195px;
    height: 213px;
    background: url(../img/layout/dots-deco.png) no-repeat center/100%;
    bottom: 0;
    left: 10px;
    -webkit-transform: translateY(38%);
        -ms-transform: translateY(38%);
            transform: translateY(38%);
  }
  .sec-mv__slider-item img {
    height: 300px;
    border-radius: 20px;
  }
  .sec-mv__ct-ttl {
    font-size: 2.2rem;
    margin-bottom: 3px;
  }
}
@media only screen and (max-width: 767.98px) and (min-width: 360px) {
  .sec-mv__ct-ttl {
    padding-left: 67px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sec-mv__ct-ttl::before {
    width: 72px;
    height: 76px;
    top: -2px;
    left: -10px;
  }
}
@media only screen and (max-width: 767.98px) and (max-width: 359px) {
  .sec-mv__ct-ttl::before {
    top: -80px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sec-mv__ct-ttl::after {
    display: none;
  }
  .sec-mv__ct-ttl span {
    font-size: 1.6rem;
  }
  .sec-mv__ct-note {
    font-size: 1.5rem;
    padding: 2px 22px 3px 23px;
  }
}
@media only screen and (max-width: 767.98px) and (min-width: 360px) {
  .sec-mv__ct-note {
    margin-left: 67px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sec-mv__ct-list {
    margin-top: 34px;
  }
  .sec-mv__ct-listItem:not(:last-child) {
    margin-bottom: 19px;
  }
  .sec-mv__ct-listItem:nth-child(odd) a .ani-arrow {
    width: 20px;
    height: 20px;
    top: 8px;
  }
  .sec-mv__ct-listItem:nth-child(odd) a .ani-arrow::before, .sec-mv__ct-listItem:nth-child(odd) a .ani-arrow::after {
    width: 13px;
    height: 12px;
  }
  .sec-mv__ct-listItem a .ani-arrow {
    top: 10px;
    right: 1px;
  }
  .sec-mv__ct-listImg {
    width: 123px;
  }
}
@media only screen and (max-width: 767.98px) and (max-width: 359px) {
  .sec-mv__ct-listImg {
    width: 100px;
  }
}
@media only screen and (max-width: 767.98px) {
  .sec-mv__ct-listCt {
    width: calc(100% - 123px);
    padding: 2px 15px 6px 18px;
  }
}
@media only screen and (max-width: 767.98px) and (max-width: 359px) {
  .sec-mv__ct-listCt {
    width: calc(100% - 100px);
  }
}
@media only screen and (max-width: 767.98px) {
  .sec-mv__ct-listTtl {
    padding: 0 30px 6px 0;
    margin-bottom: 7px;
  }
  .sec-mv__02 {
    height: 120px;
    border-radius: 20px;
    margin-bottom: 20px;
  }
  .sec-mv__02-ttl {
    font-size: 2.2rem;
  }
  .sec-intro {
    padding: 40px 0 204px;
  }
  .sec-intro::before {
    height: 163px;
    background: url(../img/index/intro-top-sp.png) center no-repeat;
    background-size: cover;
  }
  .sec-intro::after {
    height: 181px;
    background: url(../img/index/intro-bottom-sp.png) center no-repeat;
    background-size: contain;
  }
  .intro-ttl {
    font-size: 2.5rem;
    margin-bottom: 32px;
  }
  .sec-treatment {
    background: url(../img/index/treatment-bg-sp.jpg) bottom no-repeat;
    background-size: cover;
    padding: 1px 0 40px;
    overflow: hidden;
  }
  .sec-treatment .c-ttl__01 {
    margin-bottom: 34px;
  }
  .treatment-wrap {
    padding: 19px 20px 20px;
    margin: 30px 0 20px;
  }
  .treatment-wrap__list {
    margin: 24px 0 40px;
  }
  .treatment-wrap__list-item:not(:last-child) {
    margin-bottom: 39px;
  }
  .treatment-wrap__list-item:last-child {
    margin-top: -7px;
  }
  .treatment-wrap__list-item:last-child .treatment-wrap__list-check {
    gap: 1px 20px;
  }
  .treatment-wrap__list-ttl {
    padding: 12px 15px 10px;
    margin-bottom: 21px;
  }
  .treatment-wrap__list-check {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.5px 20px;
  }
  .treatment-list__item:not(:last-child) {
    margin-bottom: 20px;
  }
  .treatment-list__img {
    height: 133px;
  }
  .treatment-list__ct {
    padding: 11px 20px 24px;
  }
  .treatment-list__ct-ttl {
    padding-bottom: 4px;
  }
  .menu-scroll {
    gap: 18px 0;
    padding-bottom: 20px;
  }
  .menu-scroll__item {
    width: 100%;
  }
  .menu-scroll__item a {
    padding-right: 34px;
  }
  .disease-heading {
    margin-bottom: 80px;
  }
  .disease-heading__ct {
    margin-bottom: 22px;
  }
  .c-ttl__02:after {
    width: 100px;
  }
  .list-btn {
    margin-top: 21px;
  }
  .list-btn__item {
    width: 100%;
  }
  .list-btn__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .list-btn__item .c-btn__01 {
    margin: 0 auto;
  }
}
/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .daycare-note {
    text-align: center;
    padding: 51px 20px 43px;
    margin-bottom: 71px;
  }
  .daycare-note__img {
    position: absolute;
    width: 100px;
    left: -77px;
    bottom: -5px;
  }
  .daycare-check__list {
    padding: 49px 7.2% 41px;
  }
  .daycare-show {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    font-size: 2.2rem;
    margin-bottom: 101px;
  }
  .daycare-show__item {
    background: #F8F8ED;
    border-radius: 10px;
    position: relative;
    min-height: 230px;
    padding: 52px 15px 15px;
  }
  .daycare-show__item:last-child {
    font-size: 2rem;
  }
  .daycare-show__img {
    height: 80px;
    margin-bottom: 20px;
  }
  .daycare-time {
    padding: 53px 49px;
    margin-bottom: 38px;
  }
  .daycare-time--bg {
    background: url("../img/daycare/bg.png") no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 0 0 80px;
    margin-bottom: 59px;
  }
  .daycare-time dl {
    padding-bottom: 20px;
  }
  .daycare-time dl:before {
    content: "";
    width: 4px;
    position: absolute;
    top: 0;
    left: 50px;
    bottom: 0;
    background: url("../img/daycare/line.png") no-repeat;
    background-size: 100%;
  }
  .daycare-time dl:last-child:before {
    display: none;
  }
  .daycare-time dl dt {
    width: 100px;
    height: 100px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2.4rem;
  }
  .daycare-time dl dd {
    padding: 0 0 0 29px;
    width: calc(100% - 100px);
  }
  .daycare-time__img {
    position: absolute;
    top: -37px;
    right: 0;
    width: 52.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .daycare-time__img--end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .daycare-time__img img {
    width: 300px;
    border-radius: 20px;
  }
  .daycare-time__img--02 {
    top: 71px;
  }
  .daycare-time__img--03 {
    top: 63px;
  }
  .daycare-time__note {
    padding: 0 0 0 142px;
    line-height: 1.6;
  }
  .daycare-flow {
    margin-bottom: 106px;
  }
  .daycare-flow__item {
    padding: 33px 48px 43px 98px;
    margin-bottom: 38px;
  }
  .daycare-flow__item:before {
    font-size: 4.8rem;
    width: 136px;
    height: 124px;
    left: -72px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    font-family: "Zen Maru Gothic", sans-serif;
  }
  .daycare-flow__ttl {
    font-size: 3rem;
  }
  .daycare-tel {
    padding: 44px 20px 38px;
    margin-bottom: 22px;
  }
  .daycare-tel__item {
    margin: 0 33px;
  }
  .daycare-tel__note {
    margin: 0 20px 0 0;
  }
  .daycare-cost {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 102px;
  }
  .daycare-cost__ct {
    width: 67%;
    padding: 0 20px 0 0;
    max-width: 520px;
  }
  .daycare-cost__img {
    width: 33%;
    margin: -40px 0 0;
  }
  .calendar-box {
    margin-bottom: 27px;
  }
  .calendar-box__table tr {
    font-size: 1.6rem;
  }
  .calendar-box__table tr th:first-child, .calendar-box__table tr td:first-child {
    width: 152px;
  }
  .calendar-box__table tr td:first-child {
    padding-left: 9px;
  }
  .calendar-box__table tr td:not(:first-child).dot::after {
    font-size: 2.2rem;
  }
  .calendar-box__table tr td:not(:first-child).triangle::after {
    font-size: 2.2rem;
  }
  .calendar-box__note p.dot::before {
    top: 5px;
    left: -1px;
  }
  .sec-features {
    background: url(../img/index/features-bg-pc.jpg) bottom no-repeat;
    background-size: cover;
    padding: 60px 0 140px;
  }
  .features-list {
    position: relative;
    margin-top: 110px;
  }
  .features-list::after {
    content: "";
    position: absolute;
    width: 166px;
    height: 110px;
    background: url(../img/index/features-shape.png) center no-repeat;
    background-size: contain;
    top: -52px;
    right: -125px;
  }
  .features-list__item:not(:last-child) {
    margin-bottom: 144px;
  }
}
@media screen and (min-width: 768px) and (min-width: 991px) {
  .features-list__item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) and (min-width: 991px) {
  .features-list__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) and (min-width: 991px) {
  .features-list__img {
    width: 50%;
  }
}
@media screen and (min-width: 768px) and (min-width: 991px) {
  .features-list__ct {
    width: 47.2%;
    padding: 0 50px;
  }
}
@media screen and (min-width: 768px) and (min-width: 991px) and (max-width: 1200px) {
  .features-list__ct {
    width: 50%;
    padding: 0 35px;
  }
}
@media screen and (min-width: 768px) and (min-width: 991px) {
  .features-list__ct--02 {
    padding-left: 0 !important;
  }
}
@media screen and (min-width: 768px) and (min-width: 1201px) {
  .features-list__ct--02 {
    padding-right: 95px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1201px) {
  .features-list__ct-ttl {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 768px) {
  .features-list__ct-btn {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    gap: 20px;
    margin-top: 33px;
  }
  .features-list__ct-btn a {
    margin: 0;
  }
  .sec-mv {
    background: url(../img/index/mv-bg-pc.jpg) bottom no-repeat;
    background-size: cover;
    padding: 119px 0 167px;
  }
  .sec-mv--page {
    background: url("../img/first/bg-mv.png") bottom no-repeat;
    background-size: cover;
    padding-bottom: 250px !important;
    margin-bottom: -227px;
  }
  .sec-mv--page .sec-mv__img {
    border-radius: 40px;
    overflow: hidden;
  }
  .sec-mv--page .sec-mv__img img {
    width: 100%;
  }
  .sec-mv--page .sec-mv__ct {
    bottom: auto;
    top: 58%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .sec-mv--page .sec-mv__ct-ttl::before {
    top: -44px;
  }
  .sec-mv--page .sec-mv__ct-ttl:after {
    display: none;
  }
  .sec-mv__slider-item img {
    height: 650px;
    border-radius: 40px;
  }
  .sec-mv__ct {
    position: absolute;
    width: calc(100% - 40px);
    max-width: 1298px;
    bottom: 136px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .sec-mv__ct-ttl {
    font-size: 3.6rem;
    padding-left: 181px;
    margin-bottom: 27px;
  }
  .sec-mv__ct-ttl::before {
    width: 162px;
    height: 170px;
    top: -30px;
    left: 0;
  }
  .sec-mv__ct-ttl:after {
    width: 338px;
    height: 370px;
    top: -93px;
    left: 106px;
    z-index: -1;
  }
  .sec-mv__ct-ttl span {
    font-size: 2rem;
    margin-top: 9px;
  }
  .sec-mv__ct-note {
    font-size: 2.2rem;
    margin-left: 181px;
    padding: 8px 60px 11px 29px;
  }
  .sec-mv__ct-note::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 105px;
    background: url(../img/index/mv-shape.png) center no-repeat;
    background-size: contain;
    bottom: 0;
    right: -51px;
  }
  .sec-mv__ct-list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 840px;
    margin: 47px auto 0;
  }
  .sec-mv__ct-listItem {
    width: calc(50% - 20px);
  }
  .sec-mv__ct-listItem a .ani-arrow {
    top: 8px;
    right: -1px;
  }
  .sec-mv__ct-listImg {
    width: 147px;
  }
  .sec-mv__ct-listCt {
    width: calc(100% - 147px);
    padding: 10px 20px 14px 22px;
  }
  .sec-mv__ct-listTtl {
    padding: 0 30px 8px 0;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 768px) and (min-width: 991px) {
  .sec-mv__ct-listTtl {
    font-size: 2.8rem;
  }
}
@media print, screen and (min-width: 768px) {
  .sec-mv__02 {
    border-radius: 40px;
    height: 200px;
    margin-bottom: 57px;
  }
  .sec-mv__02-ttl {
    font-size: 3.6rem;
    font-family: "Zen Maru Gothic", sans-serif;
  }
  .sec-intro {
    padding: 59px 0 195px;
  }
  .sec-intro::before {
    height: 376px;
    background: url(../img/index/intro-top-pc.png) center no-repeat;
    background-size: cover;
  }
  .sec-intro::after {
    height: 352px;
    background: url(../img/index/intro-bottom-pc.png) center no-repeat;
    background-size: cover;
  }
  .intro-ttl {
    font-size: 3.2rem;
    margin-bottom: 69px;
  }
  .sec-treatment {
    background: url(../img/index/treatment-bg-pc.jpg) bottom no-repeat;
    background-size: cover;
    padding: 71px 0 81px;
    overflow: hidden;
  }
  .sec-treatment .c-ttl__01 {
    margin-bottom: 49px;
  }
  .treatment-wrap {
    padding: 18px 50px 48px;
    margin: 52px 0 40px;
  }
  .treatment-wrap__list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 23px -15px 25px;
  }
  .treatment-wrap__list-item {
    width: 33.333%;
    padding: 0 15px;
  }
  .treatment-wrap__list-ttl {
    padding: 11px 15px;
    margin-bottom: 20px;
  }
  .treatment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .treatment-list__img {
    height: 190px;
  }
  .treatment-list__ct {
    padding: 20px 30px 28px;
  }
  .treatment-list__ct-ttl {
    padding-bottom: 9px;
  }
  .disease-heading {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 101px;
  }
  .disease-heading__ct {
    width: 60%;
    padding: 0 10% 0 0;
  }
  .disease-heading__img {
    width: 40%;
  }
  .c-ttl__02:after {
    width: 200px;
  }
  .list-btn {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    gap: 10px 20px;
    margin-top: 10px;
    max-width: 545px;
  }
  .list-btn__item {
    width: calc(50% - 10px);
  }
  .list-btn__item .c-btn__01 {
    margin: 0;
  }
}
/* ====================================================
Control
==================================================== */
.c-fc--white {
  color: white !important;
}
.c-fc--darkyellow {
  color: #4F4B3E !important;
}
.c-fc--orange {
  color: #FF9900 !important;
}

.c-ft--jp {
  font-family: "Noto Sans JP", sans-serif;
}
.c-ft--en {
  font-family: "Poppins", sans-serif;
}
.c-ft--zen {
  font-family: "Zen Maru Gothic", sans-serif;
}

.c-fw--lt {
  font-weight: 300 !important;
}
.c-fw--rg {
  font-weight: 400 !important;
}
.c-fw--md {
  font-weight: 500 !important;
}
.c-fw--sbd {
  font-weight: 600 !important;
}
.c-fw--bd {
  font-weight: 700 !important;
}
.c-fw--bk {
  font-weight: 900 !important;
}

.c-tx--v {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .c-tx--v-pc {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
  }
}

.c-al--c {
  text-align: center !important;
}
.c-al--r {
  text-align: right !important;
}
.c-al--l {
  text-align: left !important;
}

.c-val--md {
  vertical-align: middle;
}
.c-val--top {
  vertical-align: top;
}

/* ====================================================
Component
==================================================== */
.c-txt__basic {
  font-size: 1.6rem;
  line-height: 2;
}
.c-txt__basic02 {
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}
.c-txt__basic02::before {
  content: "※";
  color: #FF9900;
  left: 0;
  top: 0;
  position: absolute;
}

.c-ttl__01 {
  text-align: center;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
}
.c-ttl__01::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 8px;
  background: url(../img/layout/dots-ttl.svg) center no-repeat;
  background-size: contain;
  bottom: -11px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-ttl__02 {
  display: block;
  position: relative;
  color: #4F4B3E;
  font-size: 2.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.4;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
  padding: 0 0 8px;
  margin-bottom: 30px;
}
.c-ttl__02:after {
  content: "";
  background: #4BADE6;
  height: 3px;
  position: absolute;
  bottom: -1px;
  left: 0;
  border-radius: 2px;
}
.c-ttl__03 {
  position: relative;
  color: #4F4B3E;
  line-height: 1.4;
  font-weight: bold;
  padding-left: 13px;
  margin-bottom: 27px;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-ttl__03 {
    padding-left: 10px;
    margin-bottom: 20px;
    font-size: 2.2rem;
  }
}
.c-ttl__03:after {
  content: "";
  background: #4BADE6;
  height: 40px;
  width: 3px;
  position: absolute;
  top: -3px;
  left: 0;
  border-radius: 2px;
}

.c-btn__01 {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  max-width: 260px;
  height: 60px;
  background: #45CADC;
  color: white;
  border: 1px solid #45CADC;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.8rem;
  padding: 5px 40px;
  margin: 0 auto;
}
.c-btn__01 .ani-arrow {
  right: 19px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (any-hover: hover) {
  .c-btn__01:hover {
    background: white;
    color: #45CADC;
  }
  .c-btn__01:hover .ani-arrow {
    background: #45CADC !important;
  }
}

.js-scrollin {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
      -ms-transform: translate(0, 50px);
          transform: translate(0, 50px);
}
.js-scrollin.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-scrollin-left {
  opacity: 0;
  -webkit-transform: translate3d(-50px, 0, 0);
          transform: translate3d(-50px, 0, 0);
}
.js-scrollin-left.is-visible {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.js-scrollin-right {
  opacity: 0;
  -webkit-transform: translate3d(50px, 0, 0);
          transform: translate3d(50px, 0, 0);
}
.js-scrollin-right.is-visible {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ====================================================
Utility
==================================================== */
@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .pc-xl {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}
@media screen and (max-width: 990px) {
  .pc-lg {
    display: none !important;
  }
}
@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}
@media screen and (max-width: 359px) {
  .pc-xs {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (min-width: 1201px) {
  .sp-xl {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}
@media screen and (min-width: 991px) {
  .sp-lg {
    display: none !important;
  }
}
@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}
@media screen and (min-width: 360px) {
  .sp-xs {
    display: none !important;
  }
}

.u-pull--left {
  margin-left: calc((100vw - 100%) / 2 * -1);
}
.u-pull--right {
  margin-right: calc((100vw - 100%) / 2 * -1);
}

.u-img-of {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center", sans-serif;
}

.c-scroll-box {
  padding-bottom: 20px;
  overflow-x: scroll;
  overflow-y: hidden;
}
.c-scroll-box-y {
  padding-bottom: 20px;
  overflow-x: hidden;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .c-scroll-box-sp {
    padding-bottom: 20px;
    overflow-x: scroll;
    overflow-y: hidden;
  }
}

@media screen and (min-width: 768px) {
  .mbpc-0 {
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-0 {
    margin-bottom: 0px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-1 {
    margin-bottom: 1px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-1 {
    margin-bottom: 1px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-2 {
    margin-bottom: 2px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-2 {
    margin-bottom: 2px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-3 {
    margin-bottom: 3px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-3 {
    margin-bottom: 3px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-4 {
    margin-bottom: 4px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-4 {
    margin-bottom: 4px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-5 {
    margin-bottom: 5px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-5 {
    margin-bottom: 5px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-6 {
    margin-bottom: 6px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-6 {
    margin-bottom: 6px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-7 {
    margin-bottom: 7px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-7 {
    margin-bottom: 7px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-8 {
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-8 {
    margin-bottom: 8px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-9 {
    margin-bottom: 9px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-9 {
    margin-bottom: 9px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-10 {
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-10 {
    margin-bottom: 10px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-11 {
    margin-bottom: 11px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-11 {
    margin-bottom: 11px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-12 {
    margin-bottom: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-12 {
    margin-bottom: 12px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-13 {
    margin-bottom: 13px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-13 {
    margin-bottom: 13px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-14 {
    margin-bottom: 14px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-14 {
    margin-bottom: 14px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-15 {
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-15 {
    margin-bottom: 15px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-16 {
    margin-bottom: 16px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-16 {
    margin-bottom: 16px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-17 {
    margin-bottom: 17px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-17 {
    margin-bottom: 17px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-18 {
    margin-bottom: 18px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-18 {
    margin-bottom: 18px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-19 {
    margin-bottom: 19px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-19 {
    margin-bottom: 19px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-20 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-20 {
    margin-bottom: 20px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-21 {
    margin-bottom: 21px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-21 {
    margin-bottom: 21px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-22 {
    margin-bottom: 22px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-22 {
    margin-bottom: 22px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-23 {
    margin-bottom: 23px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-23 {
    margin-bottom: 23px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-24 {
    margin-bottom: 24px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-24 {
    margin-bottom: 24px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-25 {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-25 {
    margin-bottom: 25px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-26 {
    margin-bottom: 26px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-26 {
    margin-bottom: 26px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-27 {
    margin-bottom: 27px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-27 {
    margin-bottom: 27px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-28 {
    margin-bottom: 28px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-28 {
    margin-bottom: 28px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-29 {
    margin-bottom: 29px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-29 {
    margin-bottom: 29px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-30 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-30 {
    margin-bottom: 30px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-31 {
    margin-bottom: 31px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-31 {
    margin-bottom: 31px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-32 {
    margin-bottom: 32px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-32 {
    margin-bottom: 32px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-33 {
    margin-bottom: 33px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-33 {
    margin-bottom: 33px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-34 {
    margin-bottom: 34px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-34 {
    margin-bottom: 34px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-35 {
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-35 {
    margin-bottom: 35px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-36 {
    margin-bottom: 36px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-36 {
    margin-bottom: 36px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-37 {
    margin-bottom: 37px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-37 {
    margin-bottom: 37px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-38 {
    margin-bottom: 38px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-38 {
    margin-bottom: 38px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-39 {
    margin-bottom: 39px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-39 {
    margin-bottom: 39px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-40 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-40 {
    margin-bottom: 40px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-41 {
    margin-bottom: 41px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-41 {
    margin-bottom: 41px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-42 {
    margin-bottom: 42px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-42 {
    margin-bottom: 42px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-43 {
    margin-bottom: 43px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-43 {
    margin-bottom: 43px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-44 {
    margin-bottom: 44px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-44 {
    margin-bottom: 44px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-45 {
    margin-bottom: 45px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-45 {
    margin-bottom: 45px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-46 {
    margin-bottom: 46px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-46 {
    margin-bottom: 46px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-47 {
    margin-bottom: 47px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-47 {
    margin-bottom: 47px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-48 {
    margin-bottom: 48px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-48 {
    margin-bottom: 48px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-49 {
    margin-bottom: 49px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-49 {
    margin-bottom: 49px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-50 {
    margin-bottom: 50px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-51 {
    margin-bottom: 51px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-51 {
    margin-bottom: 51px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-52 {
    margin-bottom: 52px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-52 {
    margin-bottom: 52px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-53 {
    margin-bottom: 53px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-53 {
    margin-bottom: 53px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-54 {
    margin-bottom: 54px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-54 {
    margin-bottom: 54px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-55 {
    margin-bottom: 55px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-55 {
    margin-bottom: 55px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-56 {
    margin-bottom: 56px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-56 {
    margin-bottom: 56px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-57 {
    margin-bottom: 57px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-57 {
    margin-bottom: 57px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-58 {
    margin-bottom: 58px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-58 {
    margin-bottom: 58px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-59 {
    margin-bottom: 59px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-59 {
    margin-bottom: 59px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-60 {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-60 {
    margin-bottom: 60px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-61 {
    margin-bottom: 61px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-61 {
    margin-bottom: 61px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-62 {
    margin-bottom: 62px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-62 {
    margin-bottom: 62px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-63 {
    margin-bottom: 63px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-63 {
    margin-bottom: 63px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-64 {
    margin-bottom: 64px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-64 {
    margin-bottom: 64px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-65 {
    margin-bottom: 65px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-65 {
    margin-bottom: 65px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-66 {
    margin-bottom: 66px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-66 {
    margin-bottom: 66px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-67 {
    margin-bottom: 67px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-67 {
    margin-bottom: 67px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-68 {
    margin-bottom: 68px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-68 {
    margin-bottom: 68px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-69 {
    margin-bottom: 69px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-69 {
    margin-bottom: 69px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-70 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-70 {
    margin-bottom: 70px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-71 {
    margin-bottom: 71px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-71 {
    margin-bottom: 71px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-72 {
    margin-bottom: 72px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-72 {
    margin-bottom: 72px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-73 {
    margin-bottom: 73px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-73 {
    margin-bottom: 73px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-74 {
    margin-bottom: 74px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-74 {
    margin-bottom: 74px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-75 {
    margin-bottom: 75px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-75 {
    margin-bottom: 75px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-76 {
    margin-bottom: 76px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-76 {
    margin-bottom: 76px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-77 {
    margin-bottom: 77px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-77 {
    margin-bottom: 77px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-78 {
    margin-bottom: 78px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-78 {
    margin-bottom: 78px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-79 {
    margin-bottom: 79px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-79 {
    margin-bottom: 79px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-80 {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-80 {
    margin-bottom: 80px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-81 {
    margin-bottom: 81px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-81 {
    margin-bottom: 81px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-82 {
    margin-bottom: 82px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-82 {
    margin-bottom: 82px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-83 {
    margin-bottom: 83px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-83 {
    margin-bottom: 83px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-84 {
    margin-bottom: 84px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-84 {
    margin-bottom: 84px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-85 {
    margin-bottom: 85px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-85 {
    margin-bottom: 85px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-86 {
    margin-bottom: 86px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-86 {
    margin-bottom: 86px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-87 {
    margin-bottom: 87px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-87 {
    margin-bottom: 87px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-88 {
    margin-bottom: 88px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-88 {
    margin-bottom: 88px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-89 {
    margin-bottom: 89px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-89 {
    margin-bottom: 89px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-90 {
    margin-bottom: 90px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-90 {
    margin-bottom: 90px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-91 {
    margin-bottom: 91px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-91 {
    margin-bottom: 91px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-92 {
    margin-bottom: 92px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-92 {
    margin-bottom: 92px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-93 {
    margin-bottom: 93px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-93 {
    margin-bottom: 93px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-94 {
    margin-bottom: 94px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-94 {
    margin-bottom: 94px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-95 {
    margin-bottom: 95px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-95 {
    margin-bottom: 95px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-96 {
    margin-bottom: 96px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-96 {
    margin-bottom: 96px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-97 {
    margin-bottom: 97px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-97 {
    margin-bottom: 97px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-98 {
    margin-bottom: 98px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-98 {
    margin-bottom: 98px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-99 {
    margin-bottom: 99px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-99 {
    margin-bottom: 99px !important;
  }
}
@media screen and (min-width: 768px) {
  .mbpc-100 {
    margin-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .mbsp-100 {
    margin-bottom: 100px !important;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}

/* ====================================================
Module
==================================================== */
/* ====================================================
Header
==================================================== */
#header {
  position: absolute;
  width: 100%;
  padding: 10px 0;
  top: 0;
  left: 0;
  z-index: 9999;
}
#header::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#header.on::before {
  opacity: 1;
  pointer-events: auto;
}
#header.on .header-nav {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}
#header .inner {
  padding: 0 10px;
}
#header .header-logo {
  display: block;
  width: 100%;
  max-width: 262px;
}
@media screen and (max-width: 359px) {
  #header .header-logo {
    max-width: 210px;
  }
}
#header .header-info {
  font-size: 1.6rem;
}
#header .header-info a {
  position: relative;
  display: inline-block;
  color: #FF9900;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  padding-left: 18px;
}
#header .header-info a::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 22px;
  background: url(../img/layout/icon-tel.svg) center no-repeat;
  background-size: contain;
  top: 12px;
  left: 0;
}
#header .header-nav {
  position: fixed;
  width: 100%;
  max-height: 100vh;
  background: white;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  pointer-events: none;
  z-index: -1;
  overflow-y: auto;
}
#header .header-nav__logo a {
  display: block;
  width: 100%;
  max-width: 262px;
}
@media screen and (max-width: 359px) {
  #header .header-nav__logo a {
    max-width: 210px;
  }
}
#header .header-nav__menu-ttl {
  color: #4BADE6;
  border-bottom: 1px dashed #4BADE6;
  font-weight: bold;
  font-size: 1.8rem;
}
#header .header-nav__sub-item {
  color: #333333;
  font-size: 1.6rem;
}
#header .header-nav__sub-item:not(:last-child) {
  margin-bottom: 9.5px;
}
#header .header-nav__sub-item a {
  display: inline-block;
}
#header .js-mobile {
  position: fixed;
  width: 80px;
  height: 80px;
  background: #FF9900;
  border-bottom-left-radius: 20px;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 12;
}
@media (any-hover: hover) {
  #header .js-mobile:hover {
    background: #FFE071;
  }
}
#header .js-mobile::after {
  content: "MENU";
  position: absolute;
  text-align: center;
  width: 100%;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  bottom: 18px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#header .js-mobile span {
  position: absolute;
  display: block;
  width: 20px;
  height: 1px;
  background: white;
  border-radius: 1px;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
#header .js-mobile span:before, #header .js-mobile span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 1px;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#header .js-mobile span:before {
  top: -8px;
}
#header .js-mobile span:after {
  bottom: -8px;
}
#header .js-mobile--close::after {
  content: "CLOSE";
}
#header .js-mobile--close span {
  background-color: transparent;
}
#header .js-mobile--close span:before {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}
#header .js-mobile--close span:after {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 0;
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
  #header .header-info {
    text-align: center;
    background: #F8F8ED;
    border-radius: 20px;
    padding: 29px 10px 27px;
    margin: 42px 10px 0;
  }
  #header .header-info a {
    margin-top: 5px;
  }
  #header .header-nav {
    padding: 10px 10px 70px;
  }
  #header .header-nav__logo {
    margin-bottom: 59px;
  }
  #header .header-nav__menu {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767.98px) and (max-width: 767px) {
  #header .header-nav__menu-item:has(.js-accor) {
    border-bottom: 1px dashed #4BADE6;
  }
  #header .header-nav__menu-item:has(.js-accor) .header-nav__menu-ttl {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 767.98px) {
  #header .header-nav__menu-ttl {
    padding: 13px 40px 11px 10px;
  }
  #header .header-nav__menu-ttl.js-accor {
    position: relative;
  }
  #header .header-nav__menu-ttl.js-accor::before, #header .header-nav__menu-ttl.js-accor::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #4BADE6;
    top: 23px;
    right: 10px;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  #header .header-nav__menu-ttl.js-accor::after {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  #header .header-nav__menu-ttl.js-accor.on::after {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
  }
  #header .header-nav__sub {
    display: none;
    padding: 8px 10px 14px;
  }
  #header .header-nav__sub-item--space {
    position: relative;
    padding: 4px 0 0 9px;
    margin-bottom: 5.6px !important;
  }
  #header .header-nav__sub-item--space::before {
    content: "-";
    position: absolute;
    color: #4BADE6;
    top: 4px;
    left: 0;
  }
}
/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media screen and (min-width: 768px) and (min-width: 1025px) {
  #header {
    padding: 20px 0;
  }
}
@media print, screen and (min-width: 768px) {
  #header .inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    max-width: 1020px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  #header .header-logo {
    max-width: 348px;
  }
}
@media print, screen and (min-width: 768px) {
  #header .header-info {
    text-align: right;
  }
}
@media screen and (min-width: 768px) and (max-width: 1250px) {
  #header .header-info {
    padding-right: 120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #header .header-info {
    padding-right: 90px;
  }
}
@media print, screen and (min-width: 768px) {
  #header .header-info a {
    margin: 3px 0 -4px;
  }
  #header .header-nav {
    padding: 20px 20px 70px;
  }
  #header .header-nav__logo {
    max-width: 1000px;
    margin: 0 auto 81px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  #header .header-nav__logo a {
    max-width: 348px;
  }
}
@media print, screen and (min-width: 768px) {
  #header .header-nav__menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
  }
  #header .header-nav__menu-ttl {
    padding: 0 0 6px 0;
  }
  #header .header-nav__menu-ttl:not(:last-child) {
    margin-bottom: 31px;
  }
  #header .header-nav__menu-ttl a {
    display: block;
  }
  #header .header-nav__sub {
    margin-top: -7px;
    display: block !important;
  }
  #header .header-nav__sub-item {
    color: #333333;
    font-size: 1.6rem;
  }
  #header .header-nav__sub-item:not(:last-child) {
    margin-bottom: 9.5px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  #header .header-nav__sub-item--space {
    position: relative;
    padding: 4px 0 0 9px;
    margin-bottom: 5.6px !important;
  }
  #header .header-nav__sub-item--space::before {
    content: "-";
    position: absolute;
    color: #4BADE6;
    top: 4px;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  #header .js-mobile {
    width: 120px;
    height: 120px;
  }
  #header .js-mobile::after {
    font-size: 1.6rem;
    bottom: 29px;
  }
  #header .js-mobile span {
    width: 30px;
    height: 2px;
    top: 45px;
  }
  #header .js-mobile span:before {
    top: -12px;
  }
  #header .js-mobile span:after {
    bottom: -12px;
  }
}
@media print, screen and (min-width: 768px) {
  #header .js-mobile--close span:before {
    top: 0;
  }
  #header .js-mobile--close span:after {
    bottom: 0;
  }
}
.js-locked {
  -ms-touch-action: none;
  touch-action: none;
}
.js-locked body {
  -webkit-overflow-scrolling: auto;
}
@media print, screen and (min-width: 768px) {
  .js-locked body {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
}

/* ====================================================
Footer
==================================================== */
.sidenavi {
  position: fixed;
  z-index: 99;
  width: 100%;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .sidenavi {
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sidenavi.is-show {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.sidenavi-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sidenavi-list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
  }
  .sidenavi-list__item:not(:last-child, :nth-last-child(2)) {
    position: relative;
  }
  .sidenavi-list__item:not(:last-child, :nth-last-child(2))::after {
    content: "";
    position: absolute;
    height: 32px;
    border-right: 1px dashed #45CADC;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sidenavi-list__item:last-child a {
    background: #4BADE6;
    color: white;
  }
  .sidenavi-list__item:last-child a .sidenavi-list__img .show {
    opacity: 0;
  }
  .sidenavi-list__item:last-child a .sidenavi-list__img .hover {
    opacity: 1;
  }
}
.sidenavi-list__item a {
  position: relative;
  text-align: center;
  display: block;
  width: 100%;
  height: 50px;
  background: white;
  color: #4BADE6;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  padding-top: 31px;
}
@media (any-hover: hover) {
  .sidenavi-list__item a:hover {
    opacity: 1;
    background: #45CADC;
    color: white;
  }
  .sidenavi-list__item a:hover .sidenavi-list__img .show {
    opacity: 0;
  }
  .sidenavi-list__item a:hover .sidenavi-list__img .hover {
    opacity: 1;
  }
}
.sidenavi-list__img {
  position: absolute;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 24px;
  height: 24px;
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sidenavi-list__img img {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.sidenavi-list__img .hover {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#footer {
  position: relative;
  padding-top: 61px;
  z-index: 99;
}
#footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 318px;
  background: url(../img/layout/bg-footer.png) center no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
#footer .footer-logo {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}
#footer .footer-wrap__ct-txt {
  font-size: 1.6rem;
}
#footer .footer-wrap__ct-txt a {
  position: relative;
  display: inline-block;
  color: #FF9900;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  padding-left: 20px;
  margin-top: 7px;
}
#footer .footer-wrap__ct-txt a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 23px;
  background: url(../img/layout/icon-tel.svg) center no-repeat;
  background-size: contain;
  top: 12px;
  left: 1px;
}
#footer .footer-wrap__map-img img, #footer .footer-wrap__map-img iframe {
  width: 100%;
}
#footer .footer-wrap__map p {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.6;
  padding-left: 20px;
}
#footer .footer-wrap__map p:not(:last-child) {
  margin-bottom: 2px;
}
#footer .footer-wrap__map p::before {
  content: "●";
  position: absolute;
  color: #FFE071;
  font-size: 1.2rem;
  top: 0;
  left: 0;
}
#footer .footer-nav {
  position: relative;
}
#footer .footer-nav::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background: url(../img/layout/footer-line.png) left no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}
#footer .footer-nav__list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 20px;
}
#footer .footer-nav__list-item {
  font-weight: 500;
  font-size: 1.6rem;
}
#footer .footer-nav__list-item a {
  display: inline-block;
}
@media (any-hover: hover) {
  #footer .footer-nav__list-item a:hover {
    opacity: 1;
    color: #4BADE6;
  }
}
#footer .footer-copy {
  text-align: center;
  position: relative;
  color: white;
  font-size: 1.5rem;
  padding: 29px 0 81px;
  z-index: 1;
}
#footer .footer-copy::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: #4BADE6;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
#footer .footer-copy a {
  display: inline-block;
}
@media (any-hover: hover) {
  #footer .footer-copy a:hover {
    opacity: 1;
    color: #FF9900;
  }
}

/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
@media only screen and (max-width: 767.98px) {
  #footer .footer-logo {
    margin-bottom: 47px;
  }
  #footer .footer-wrap {
    margin-bottom: 36px;
  }
  #footer .footer-wrap__ct {
    margin-bottom: 20px;
  }
  #footer .footer-wrap__ct-txt {
    margin-top: -11px;
  }
  #footer .footer-wrap__map-img {
    margin-bottom: 21px;
  }
  #footer .footer-nav {
    padding: 48px 0 37px;
  }
  #footer .footer-nav__list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px 0;
  }
  #footer .footer-nav__list-item {
    text-align: center;
    width: 50%;
    line-height: 1;
  }
  #footer .footer-nav__list-item:nth-child(odd) {
    border-right: 1px dashed #4BADE6;
    padding-right: 8%;
  }
  #footer .footer-nav__list-item:nth-child(even) {
    padding-left: 8%;
  }
}
/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
@media screen and (min-width: 768px) and (min-width: 1025px) {
  .sidenavi {
    width: 95px;
    padding-right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    overflow: hidden;
    pointer-events: none;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) and (max-width: 1200px) {
  .sidenavi {
    width: 70px;
    padding-right: 10px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  .sidenavi.is-show {
    pointer-events: auto;
  }
  .sidenavi.is-show .sidenavi-list__item {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  .sidenavi-list {
    display: block;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  .sidenavi-list__item {
    position: relative;
    -webkit-transform: translateX(126px);
        -ms-transform: translateX(126px);
            transform: translateX(126px);
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
  }
  .sidenavi-list__item:not(:last-child) {
    margin-bottom: 10px;
  }
  .sidenavi-list__item:nth-child(3) {
    -webkit-transition-delay: 0.05s;
            transition-delay: 0.05s;
  }
  .sidenavi-list__item:nth-child(4) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .sidenavi-list__item:nth-child(5) {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  .sidenavi-list__item a {
    width: 70px;
    height: 70px;
    color: #45CADC;
    border: 1px solid #45CADC;
    border-radius: 50%;
    padding-top: 37px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) and (max-width: 1200px) {
  .sidenavi-list__item a {
    width: 60px;
    height: 60px;
    padding-top: 31px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1201px) {
  .sidenavi-list__item a {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1201px) {
  .sidenavi-list__img {
    top: 13px;
  }
}
@media print, screen and (min-width: 768px) {
  #footer .footer-logo {
    margin-bottom: 60px;
  }
  #footer .footer-wrap {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -ms-flex-align: start;
    -webkit-box-align: start;
            align-items: flex-start;
    margin-bottom: 53px;
  }
  #footer .footer-wrap__ct {
    width: 51%;
  }
  #footer .footer-wrap__ct .calendar-box__note {
    line-height: 1.6;
  }
  #footer .footer-wrap__ct .calendar-box__note p:not(:last-child) {
    margin-bottom: 5px;
  }
  #footer .footer-wrap__ct .calendar-box__note p:not(.triangle, .dot)::before {
    padding: 3px 0;
    margin: 0 10px 5px 0;
  }
  #footer .footer-wrap__ct .calendar-box__note p.triangle::before {
    position: relative;
    top: 1px;
  }
  #footer .footer-wrap__ct .calendar-box__note p.dot::before {
    top: 3px;
    left: -3px;
  }
  #footer .footer-wrap__map {
    width: 44%;
  }
  #footer .footer-wrap__map-img {
    margin-bottom: 18px;
  }
  #footer .footer-nav {
    position: relative;
    padding: 55px 0 45px;
  }
  #footer .footer-nav::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    background: url(../img/layout/footer-line.png) left no-repeat;
    background-size: cover;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 991px) {
  #footer .footer-nav__list {
    gap: 20px 51px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  #footer .footer-copy {
    padding-bottom: 29px;
  }
}
/* ----------------------------------------------------------------------- 
 SP表示
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
 PC表示
----------------------------------------------------------------------- */
/*# sourceMappingURL=maps/common.css.map */
