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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* 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 {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input[type=checkbox],
input[type=radio] {
  display: none;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

/* リキッドレイアウト対応 */
/* medium */
@font-face {
  font-family: "Yu Gothic";
  font-weight: 500;
  src: url(../fonts/YuGothM.ttc) format("truetype");
  font-style: normal;
}
html body .sp {
  display: none;
}
@media screen and (min-width: 768px) {
  html body .sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  html body .pc {
    display: none;
  }
}

body {
  color: #1B303E;
  font-family: "Yu Gothic", "游ゴシック体", "メイリオ", sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 500;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* aタグ設定 */
a {
  text-decoration: none;
  color: inherit;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.l-header__bar {
  width: 5.48vw;
  height: 5.48vw;
  border-radius: 100%;
  background: #F08300;
  color: #fff;
  text-align: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: center;
  position: fixed;
  right: 1.59vw;
  top: 2vw;
  font-size: 1vw;
  z-index: 100;
}
.l-header__bar__inner {
  display: -ms-grid;
  display: grid;
  gap: 0.5rem;
  place-content: center;
}
.l-header__bar span {
  width: 3vw;
  height: 0.125rem;
  background: #fff;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__logo {
  padding-left: 0.75rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 2.75rem;
}
.l-header.is-open .l-header__logo {
  opacity: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.l-header.is-open .l-header__bar span {
  -webkit-transform-origin: center;
          transform-origin: center;
  background: #F08300;
}
.l-header.is-open .l-header__bar span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: relative;
  top: 0.25rem;
}
.l-header.is-open .l-header__bar span:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .l-header__bar span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
  top: -0.3125rem;
}
.l-header__list {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1441px) {
  .l-header__list {
    font-size: 0.875rem;
  }
}
.l-header__list > li {
  float: left;
  position: relative;
  margin: 0 0.625rem;
}
@media screen and (min-width: 1025px) {
  .l-header__list > li {
    margin: 0 1.25rem;
  }
}
.l-header__list > li a {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 0;
}
.l-header__list > li a:hover {
  opacity: 0.6;
}
.l-header__list > li a:hover::before {
  opacity: 1;
}
.l-header__list > li a small {
  display: block;
  font-size: 0.625rem;
  margin-top: 0.625rem;
  text-align: center;
  line-height: 1.5;
}
.l-header__list__havchild > a {
  display: inline-block;
  padding-bottom: 1rem;
}

.l-offcanvas {
  background: #F4F1EA;
  position: fixed;
  top: 0;
  right: -100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
  z-index: 10;
  overflow-y: auto;
  padding: 1.375rem 2.4375rem;
  width: 29.8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  place-content: start;
}
@media screen and (max-width: 460px) {
  .l-offcanvas {
    width: 26.875rem;
    max-width: 100%;
  }
}
.l-offcanvas__list {
  display: -ms-grid;
  display: grid;
  gap: 1.125rem;
  place-content: center;
  text-align: center;
}
.l-offcanvas__list a {
  display: -ms-grid;
  display: grid;
  font-size: 1.75rem;
}
.l-offcanvas__list a small {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
}
.l-offcanvas.is-open {
  right: 0;
}

.pagetop {
  height: 3.125rem;
  width: 3.125rem;
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  background: #fff;
  border: solid 2px #F08300;
  border-radius: 50%;
  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;
  z-index: 2;
}
.pagetop__arrow {
  height: 0.625rem;
  width: 0.625rem;
  border-top: 3px solid #F08300;
  border-right: 3px solid #F08300;
  -webkit-transform: translateY(20%) rotate(-45deg);
          transform: translateY(20%) rotate(-45deg);
}

.inner {
  width: 62.5rem;
  max-width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 521px) {
  .inner {
    padding: 0 3.75rem;
  }
}

.section-ttl {
  text-align: center;
  font-size: 1.625rem;
  margin-bottom: 1.5rem;
}

.section-txt {
  text-align: center;
  font-size: 0.8125rem;
}

.js__fadein {
  opacity: 0;
  position: relative;
  -webkit-transform: translate(0px, 20px);
  transform: translate(0px, 20px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@-webkit-keyframes blurAnime-main {
  from {
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes blurAnime-main {
  from {
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes bgAnime {
  from {
    margin-top: -100%;
  }
  to {
    margin-top: 0%;
  }
}
@keyframes bgAnime {
  from {
    margin-top: -100%;
  }
  to {
    margin-top: 0%;
  }
}
@-webkit-keyframes bgImage {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes bgImage {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.p-section__topics {
  background: #F4F1EA;
  padding: 3.75rem 0;
}

.section-slider {
  margin-left: 1.5rem;
}
.section-slider .swiper {
  margin-top: 2.5rem;
}
.section-slider .slides-wrapper {
  padding-bottom: 3.125rem;
}
.section-slider .swiper-pagination-bullet {
  width: 2.1875rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: #fff;
  opacity: 1;
}
.section-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F08300;
}
.section-slider .swiper-button-next {
  width: 2.4375rem;
  height: 2.4375rem;
  border-radius: 100%;
  background: linear-gradient(60deg, #7BC4F1, #E9C7C6);
  margin-top: -1.875rem;
}
.section-slider .swiper-button-next svg {
  width: 0.625rem;
  height: 0.8125rem;
}

.p-section__faq {
  padding: 3.75rem 0 6.25rem;
}

.section-accordion {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .section-accordion {
    margin-top: 3.125rem;
  }
}
.section-accordion__ttl {
  background-color: #F4F1EA;
  padding: 0.9375rem 2.5rem 0.9375rem 0.9375rem;
  position: relative;
  cursor: pointer;
  font-weight: bold;
}
.section-accordion__ttl::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.125rem;
  background-color: #fff;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.section-accordion__ttl::after {
  position: absolute;
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.125rem;
  background-color: #fff;
  right: 0.9375rem;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section-accordion__ttl.active::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
.section-accordion__ttl.question span::before {
  content: "Q.";
  color: #00649E;
  font-size: 1.25rem;
  font-weight: bold;
  margin-right: 0.5em;
}
.section-accordion__content {
  background-color: #fff;
  display: none;
  padding: 15px;
}
.section-accordion__content.answer::before {
  content: "A.";
  color: #00649E;
  font-size: 1.25rem;
  font-weight: bold;
  margin-right: 0.5em;
}

.swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-container {
  width: 100%;
}
.swiper-container.slider {
  overflow: hidden;
  position: relative;
}
.swiper-container.swiper-wrapper-thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-container.slider-thumbnail {
  height: 20vh;
}
.swiper-container.slider-thumbnail .swiper-wrapper {
  width: 25%;
  height: 38%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.5;
  overflow: hidden;
}
.swiper-container.slider-thumbnail .swiper-wrapper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 1.25rem;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
  width: 20px;
  height: 20px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
  width: 20px;
  height: 20px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

/* ページネーション */
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #333;
  text-align: center;
  color: #fff;
}

/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}