@charset "UTF-8";
/* Box sizing rules */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600;700&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

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

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

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

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

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

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/*-----------------------------------------------------
  フォント
-----------------------------------------------------*/
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');*/
/*
.serif {
	font-family: 'Noto Serif JP', serif;
}
*/
.jost {
  font-family: "Jost", sans-serif;
}

/*
$pc:      "screen and (min-width: 750px)"; //only PC
$pc-max:  "screen and (max-width: 1280px)";
$sp:      "only screen and (max-width: 749px)"; //only SP
*/
:root {
  --cl-base-black: #000;
  --cl-light-gray: #f3f3f2;
  --cl-gray: #ccc;
  --cl-dark-gray: #737373;
  --cl-dark-red: #ff1eb0;
  --cl-dark-blue: rgba(0, 175, 236, 1);
  --cl-light-blue: rgba(241, 251, 255, 1);
  --cl-light-blue-rgba: rgba(0, 175, 236, 1);
  --cl-dark-pink: rgba(252,28,207,1);
  --cl-subj1: rgba(0,93,255,1);
  --cl-subj2: rgba(255,147,0,1);
  --cl-subj3: rgba(38,225,15,1);
  --cl-subj4: rgba(255,122,184,1);
  --cl-text-logo: #2c2c2c;
  --header-h-pc: 90px;
  --header-h-sp: calc( (106/750)*100vw );
  --content-w-max: 1280px;
  --content-w-mid: 940px;
  --content-w-min: 780px;
  --hero-zoom-ratio: 1.15;
}

/*--------------------------------------------------*/
/* 要素のデフォルト設定                             */
/*--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: var(--content-w-max);
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.7rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: var(--cl-base-black);
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  body {
    min-width: 100%;
    font-size: 3.4666666667vw;
  }
}

a {
  color: var(--cl-dark-blue);
  text-decoration: none;
  cursor: pointer;
}
a:not([class]) {
  color: var(--cl-dark-blue);
}
a > span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--cl-light-blue-rgba)), to(var(--cl-light-blue-rgba))) no-repeat left bottom/100% 1px;
  background: linear-gradient(var(--cl-light-blue-rgba), var(--cl-light-blue-rgba)) no-repeat left bottom/100% 1px;
  font-weight: 400;
  /*line-height: 1.25;*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a > img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover > span {
  /*      background: linear-gradient(var(--cl-light-blue-rgba), var(--cl-light-blue-rgba)) no-repeat left bottom / 100% 1px;*/
  opacity: 0.7;
}
a:hover > img {
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6, p, figure, dt, dd {
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

strong {
  font-weight: normal;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*-----------------------------------------------------
  ユーティリティ
-----------------------------------------------------*/
.pc-bl {
  display: block !important;
}

.pc-il {
  display: inline !important;
}

.pc-ib {
  display: inline-block !important;
}

.pc-fx {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.sp-bl {
  display: none !important;
}

.sp-il {
  display: none !important;
}

.sp-ib {
  display: none !important;
}

.sp-fx {
  display: none !important;
}

@media only screen and (max-width: 749px) {
  .pc-bl {
    display: none !important;
  }
  .pc-il {
    display: none !important;
  }
  .pc-ib {
    display: none !important;
  }
  .pc-fx {
    display: none !important;
  }
  .sp-bl {
    display: block !important;
  }
  .sp-il {
    display: inline !important;
  }
  .sp-ib {
    display: inline-block !important;
  }
  .sp-fx {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/*-----------------------------------------------------
  フェード関連
-----------------------------------------------------*/
.fd {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
}
.fd[data-step="2"] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.fd[data-step="3"] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.fd.b2t {
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}
.fd.t2b {
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
}
.fd.r2l {
  -webkit-transform: translateX(100px);
      -ms-transform: translateX(100px);
          transform: translateX(100px);
}
.fd.l2r {
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
}
.fd.fade {
  opacity: 1;
  cursor: auto;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*-----------------------------------------------------
  ユーティリティ
-----------------------------------------------------*/
.pc-bl {
  display: block !important;
}

.pc-il {
  display: inline !important;
}

.pc-ib {
  display: inline-block !important;
}

.pc-fx {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.sp-bl {
  display: none !important;
}

.sp-il {
  display: none !important;
}

.sp-ib {
  display: none !important;
}

.sp-fx {
  display: none !important;
}

@media only screen and (max-width: 749px) {
  .pc-bl {
    display: none !important;
  }
  .pc-il {
    display: none !important;
  }
  .pc-ib {
    display: none !important;
  }
  .pc-fx {
    display: none !important;
  }
  .sp-bl {
    display: block !important;
  }
  .sp-il {
    display: inline !important;
  }
  .sp-ib {
    display: inline-block !important;
  }
  .sp-fx {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/*-----------------------------------------------------
  フェード関連
-----------------------------------------------------*/
.fd {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease;
  transition: transform 1.5s ease, opacity 1.5s ease, -webkit-transform 1.5s ease;
}
.fd[data-step="2"] {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.fd[data-step="3"] {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.fd.b2t {
  -webkit-transform: translateY(100px);
      -ms-transform: translateY(100px);
          transform: translateY(100px);
}
.fd.t2b {
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
}
.fd.r2l {
  -webkit-transform: translateX(100px);
      -ms-transform: translateX(100px);
          transform: translateX(100px);
}
.fd.l2r {
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
}
.fd.fade {
  opacity: 1;
  cursor: auto;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*-----------------------------------------------------
  共通フレーム
-----------------------------------------------------*/
.sec-inner {
  margin: 0 auto;
  /* sp */
}
@media only screen and (max-width: 749px) {
  .sec-inner {
    padding: 0 8vw;
  }
}
.sec-inner.min {
  width: 920px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  .sec-inner.min {
    width: 100%;
  }
}
.sec-inner.mid {
  width: 1000px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  .sec-inner.mid {
    width: 100%;
  }
}
.sec-inner.max {
  width: 1200px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  .sec-inner.max {
    width: 100%;
  }
}
.sec-inner.full {
  width: 100%;
  /* sp */
}
@media only screen and (max-width: 749px) {
  .sec-inner.full {
    width: 100%;
  }
}

/* .sec-inner */
/*-----------------------------------------------------
  LP
-----------------------------------------------------*/
header {
  height: var(--header-h-pc);
  /* sp */
  /* #h-inner */
}
@media only screen and (max-width: 749px) {
  header {
    height: var(--header-h-sp);
  }
}
header #h-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  width: 100%;
  height: var(--header-h-pc);
  /* sp */
  /* #h-logo */
  /* #h-menu */
  /* #h-drawer */
  /* #h-btn-menu */
  /* #h-nav */
}
@media only screen and (max-width: 749px) {
  header #h-inner {
    height: var(--header-h-sp);
  }
}
header #h-inner #h-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 290px;
  margin-left: 30px;
  z-index: 9999;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-logo {
    width: 45.3333333333vw;
    margin-left: 4.6666666667vw;
  }
}
header #h-inner #h-logo strong {
  width: 144px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-logo strong {
    width: 22.4vw;
  }
}
header #h-inner #h-logo small {
  width: 102px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-logo small {
    width: 16vw;
  }
}
header #h-inner #h-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 100%;
  padding-right: var(--header-h-pc);
  z-index: 9999;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-menu {
    padding-right: var(--header-h-sp);
  }
}
header #h-inner #h-menu #h-btn-session {
  background: rgb(252, 28, 207);
  width: 120px;
  height: 100%;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-menu #h-btn-session {
    width: 18.6666666667vw;
  }
}
header #h-inner #h-menu #h-btn-session a {
  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;
  width: 100%;
  height: 100%;
}
header #h-inner #h-menu #h-btn-session a img {
  width: 102px;
  height: auto;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-menu #h-btn-session a img {
    width: 16vw;
  }
}
header #h-inner #h-drawer {
  position: absolute;
  top: var(--header-h-pc);
  left: 0;
  background: rgb(255, 255, 255);
  padding: 0 15px 15px 20px;
  border-radius: 0 0 15px 0;
  z-index: 99;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-drawer {
    top: var(--header-h-sp);
    padding: 0 2.6666666667vw 2vw 2.6666666667vw;
  }
}
header #h-inner #h-drawer p img {
  width: 164px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-drawer p img {
    width: 25.8666666667vw;
  }
}
header #h-inner #h-btn-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  background: rgb(0, 192, 255);
  width: var(--header-h-pc);
  height: var(--header-h-pc);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 9999;
  cursor: pointer;
  /* sp */
  /* .bars */
  /* .caption */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-btn-menu {
    gap: 2.6666666667vw;
    width: var(--header-h-sp);
    height: var(--header-h-sp);
    padding-top: 1.0666666667vw;
  }
}
header #h-inner #h-btn-menu .bars {
  position: relative;
  background: none;
  width: 40px;
  height: 20px;
  /* sp */
  /* i */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-btn-menu .bars {
    width: 6.4vw;
    height: 3.4666666667vw;
  }
}
header #h-inner #h-btn-menu .bars i {
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 3px;
  -webkit-transition: background-color, -webkit-transform 0.3s;
  transition: background-color, -webkit-transform 0.3s;
  transition: background-color, transform 0.3s;
  transition: background-color, transform 0.3s, -webkit-transform 0.3s;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-btn-menu .bars i {
    top: 1.7333333333vw;
  }
}
header #h-inner #h-btn-menu .bars i:nth-child(1) {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-btn-menu .bars i:nth-child(1) {
    -webkit-transform: translateY(-1.6vw);
        -ms-transform: translateY(-1.6vw);
            transform: translateY(-1.6vw);
  }
}
header #h-inner #h-btn-menu .bars i:nth-child(2) {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-btn-menu .bars i:nth-child(2) {
    -webkit-transform: translateY(1.6vw);
        -ms-transform: translateY(1.6vw);
            transform: translateY(1.6vw);
  }
}
header #h-inner #h-btn-menu .caption {
  display: inline-block;
  text-align: center;
  line-height: 1;
  /* sp */
}
header #h-inner #h-btn-menu .caption small {
  font-size: 1.8rem;
  color: #fff;
}
header #h-inner #h-btn-menu .caption small:nth-of-type(1) {
  display: inline;
}
header #h-inner #h-btn-menu .caption small:nth-of-type(2) {
  display: none;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-btn-menu .caption small {
    font-size: 2.6666666667vw;
  }
}
header #h-inner #h-btn-menu[aria-expanded=true] {
  /* .bars */
  /* .caption */
}
header #h-inner #h-btn-menu[aria-expanded=true] .bars {
  /* i */
}
header #h-inner #h-btn-menu[aria-expanded=true] .bars i:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
header #h-inner #h-btn-menu[aria-expanded=true] .bars i:nth-child(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header #h-inner #h-btn-menu[aria-expanded=true] .caption small:nth-of-type(1) {
  display: none;
}
header #h-inner #h-btn-menu[aria-expanded=true] .caption small:nth-of-type(2) {
  display: inline;
}
header #h-inner #h-nav {
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  display: block;
  width: 100dvw;
  height: 100dvh;
  max-height: 100dvh;
  z-index: 9992;
  /* sp */
  /* .nav-inner */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-nav {
    height: 100dvh;
    overflow: scroll;
  }
}
header #h-inner #h-nav .nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* sp */
  /* .nav-g */
}
header #h-inner #h-nav .nav-inner::-webkit-scrollbar {
  display: none;
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-nav .nav-inner {
    max-width: none;
    padding: 0;
  }
}
header #h-inner #h-nav .nav-inner .nav-g {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  /* sp */
  /* >li */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-nav .nav-inner .nav-g {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6.6666666667vw;
  }
}
header #h-inner #h-nav .nav-inner .nav-g > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header #h-inner #h-nav .nav-inner .nav-g > li a > span {
  background: none;
  font-size: 1.8rem;
  color: var(--cl-base-black);
}
header #h-inner #h-nav .nav-inner .nav-g > li.bnr a img {
  width: 360px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  header #h-inner #h-nav .nav-inner .nav-g > li.bnr a img {
    width: 69.3333333333vw;
  }
}
header #h-inner #h-btn-menu[aria-expanded=false] + #h-nav {
  display: none;
}

/* header */
body.h-fixed header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-animation: fixedheaderFade 0.5s ease-out 0s forwards;
          animation: fixedheaderFade 0.5s ease-out 0s forwards;
}
body.h-fixed header #h-inner {
  /* #h-drawer */
}
body.h-fixed header #h-inner #h-drawer {
  display: none;
}

/* body.h-fixed header */
@-webkit-keyframes fixedheaderFade {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fixedheaderFade {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* .swiper-container */
  /* .hero-catch */
}
#hero .hero-container {
  position: relative;
  background-color: #eee;
  width: 100%;
  aspect-ratio: 2160/750;
  /* sp */
  /* .swiper-wrapper */
  /* .swiper-pagination */
}
@media only screen and (max-width: 749px) {
  #hero .hero-container {
    aspect-ratio: 1125/960;
  }
}
#hero .hero-container .swiper-wrapper {
  /* .swiper-slide */
}
#hero .hero-container .swiper-wrapper .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 2160/750;
  overflow: hidden;
}
#hero .hero-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-width: none;
}
#hero .hero-container .swiper-pagination {
  bottom: 30px;
  top: auto;
  left: 0;
  width: 100%;
  line-height: 1;
  /* sp */
  /* .swiper-pagination-bullet */
}
@media only screen and (max-width: 749px) {
  #hero .hero-container .swiper-pagination {
    bottom: 3.3333333333vw;
  }
}
#hero .hero-container .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 22px;
  background: rgb(255, 255, 255);
  opacity: 1;
  /* sp */
  /* &.swiper-pagination-bullet-active */
}
@media only screen and (max-width: 749px) {
  #hero .hero-container .swiper-pagination .swiper-pagination-bullet {
    width: 2.4vw;
    height: 2.4vw;
    margin: 0 2.9333333333vw;
  }
}
#hero .hero-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(0, 192, 255);
}
#hero .hero-catch {
  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;
  background: linear-gradient(120deg, rgb(255, 102, 204) 0%, rgb(171, 220, 127) 20%, rgb(111, 235, 72) 35%, rgb(241, 204, 51) 50%, rgb(255, 137, 34) 72%, rgb(241, 144, 99) 84%, rgb(39, 124, 255) 100%);
  height: 100px;
  /* sp */
  /* picture */
}
@media only screen and (max-width: 749px) {
  #hero .hero-catch {
    height: 22.1333333333vw;
  }
}
#hero .hero-catch picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 804px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #hero .hero-catch picture {
    width: 60.8vw;
  }
}

/* #hero */
#intro {
  padding: 80px 0;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #intro {
    padding: 10.6666666667vw 0;
  }
}
#intro .intro-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #intro .intro-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.6666666667vw;
  }
}
#intro .intro-wrap .intro-lead {
  line-height: 2.6470588235;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #intro .intro-wrap .intro-lead {
    width: 100%;
    line-height: 2.0769230769;
  }
}
#intro .intro-wrap .intro-lead strong {
  font-weight: bold;
}
#intro .intro-wrap .intro-mov {
  width: 480px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #intro .intro-wrap .intro-mov {
    width: 100%;
  }
}
#intro .intro-wrap .intro-mov p {
  font-size: 1.6rem;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #intro .intro-wrap .intro-mov p {
    font-size: 3.2vw;
  }
}
#intro .intro-wrap .intro-mov .mov {
  position: relative;
  width: 100%;
  aspect-ratio: 560/315;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #intro .intro-wrap .intro-mov .mov {
    border-radius: 2.6666666667vw;
  }
}
#intro .intro-wrap .intro-mov .mov iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* #intro */
#variation {
  background: rgb(213, 243, 254);
  padding: 100px 0 30px;
  /* sp */
  /* .sec-ttl */
}
@media only screen and (max-width: 749px) {
  #variation {
    padding: 13.3333333333vw 0 4vw;
  }
}
#variation .sec-ttl {
  margin-bottom: 1.5em;
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #variation .sec-ttl {
    font-size: 5.3333333333vw;
  }
}
#variation .sec-ttl strong {
  position: relative;
  display: inline-block;
  padding: 0 0.75em;
  font-weight: bold;
}
#variation .sec-ttl strong::before, #variation .sec-ttl strong::after {
  content: "";
  position: absolute;
  top: 0.1em;
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--cl-base-black);
}
#variation .sec-ttl strong::before {
  left: 0;
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
#variation .sec-ttl strong::after {
  right: 0;
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
}
#variation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #variation ul {
    gap: 3.3333333333vw;
  }
}
#variation ul li {
  position: relative;
  width: calc((100% - 60px) / 4);
  padding-bottom: 24px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #variation ul li {
    width: calc((100% - 3.3333333333vw) / 2);
    padding-bottom: 4vw;
  }
}
#variation ul li::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 0px;
  display: inline-block;
  background: url(../images/fuki1.svg) no-repeat center/100% auto;
  width: 34px;
  height: 24px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #variation ul li::after {
    left: 8vw;
    width: 5.6vw;
    height: 4vw;
  }
}
#variation ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(0, 192, 255);
  height: 130px;
  border-radius: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  text-align: center;
}
@media only screen and (max-width: 749px) {
  #variation ul li span {
    height: 22vw;
    border-radius: 3.4666666667vw;
    font-size: 4vw;
  }
}

/* #variation */
#about {
  background: rgb(213, 243, 254);
  padding: 0 0 100px;
  /* .sec-ttl */
  /* #about-qa */
}
@media only screen and (max-width: 749px) {
  #about {
    padding: 0 0 13.3333333333vw;
  }
}
#about .sec-ttl {
  margin-bottom: 40px;
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .sec-ttl {
    margin-bottom: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
}
#about .sec-ttl strong {
  font-weight: bold;
}
#about .sec-ttl::before {
  content: "";
  display: block;
  background: rgb(255, 255, 255) url(../images/about-pic.svg) no-repeat center/114px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 0 auto 90px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .sec-ttl::before {
    background-size: 21.8666666667vw auto;
    width: 46vw;
    height: 46vw;
    margin: 0 auto 11.3333333333vw;
  }
}
#about .sec-ttl::after {
  content: url(../images/about-arrow.svg);
  display: block;
  width: 46px;
  margin: 20px auto 0;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .sec-ttl::after {
    width: 6.9333333333vw;
  }
}
#about .content-qa {
  background: rgb(255, 255, 255);
  border-radius: 20px;
  /* sp */
  /* dt */
  /* dd */
}
@media only screen and (max-width: 749px) {
  #about .content-qa {
    border-radius: 2.6666666667vw;
  }
}
#about .content-qa dt {
  /* label */
}
#about .content-qa dt input[type=checkbox] {
  display: none;
}
#about .content-qa dt label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  height: 130px;
  padding: 30px 40px 30px 30px;
  cursor: pointer;
  /* sp */
  /* span */
  /* strong */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dt label {
    gap: 4vw;
    height: 24.8vw;
    padding: 5.3333333333vw;
    border-radius: 2.6666666667vw;
  }
}
#about .content-qa dt label span {
  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;
  background: url(../images/fuki2.svg) no-repeat center/100% auto;
  width: 78px;
  height: 69px;
  padding-bottom: 12px;
  font-size: 3rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  line-height: 1;
  letter-spacing: normal;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dt label span {
    width: 12.8vw;
    height: 11.4666666667vw;
    font-size: 5.2vw;
  }
}
#about .content-qa dt label strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  font-size: 2.6rem;
  font-weight: bold;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dt label strong {
    font-size: 4.5333333333vw;
  }
}
#about .content-qa dt label strong::after {
  content: "";
  display: inline-block;
  background: rgb(102, 102, 102) url(../images/arrow1.svg) no-repeat center/18px auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease-in;
  transition: -webkit-transform 0.3s ease-in;
  transition: transform 0.3s ease-in;
  transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dt label strong::after {
    background-size: 2.6666666667vw auto;
    width: 4.6666666667vw;
    height: 4.6666666667vw;
  }
}
#about .content-qa dt:has(> input:checked) label strong::after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
#about .content-qa dd {
  display: none;
  padding: 0 40px 40px 143px;
  /* sp */
  /* .content */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd {
    padding: 0 5.3333333333vw 5.3333333333vw;
  }
}
#about .content-qa dd .content {
  padding-top: 30px;
  border-top: 1px solid var(--cl-base-black);
  /* sp */
  /* .ttl */
  /* .target-list */
  /* .clmn */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content {
    padding-top: 4vw;
  }
}
#about .content-qa dd .content strong {
  font-weight: bold;
}
#about .content-qa dd .content strong.subj1 {
  color: var(--cl-subj1);
}
#about .content-qa dd .content strong.subj2 {
  color: var(--cl-subj2);
}
#about .content-qa dd .content strong.subj3 {
  color: var(--cl-subj3);
}
#about .content-qa dd .content strong.subj4 {
  color: var(--cl-subj4);
}
#about .content-qa dd .content .ttl {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--cl-dark-blue);
  line-height: 1.6666666667;
  padding-left: 1.05em;
  text-indent: -1.05em;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .ttl {
    font-size: 4.5333333333vw;
  }
}
#about .content-qa dd .content .txt + .ttl {
  margin-top: 0.75em;
}
#about .content-qa dd .content .target-list {
  /* .list-ttl */
}
#about .content-qa dd .content .target-list .list-ttl {
  margin: 1.5em 0 1em;
  font-size: 2.6rem;
  line-height: 1;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .target-list .list-ttl {
    font-size: 4.5333333333vw;
  }
}
#about .content-qa dd .content .target-list .list-ttl strong {
  position: relative;
  display: inline-block;
  padding: 0 0.75em;
  font-weight: bold;
  color: var(--cl-dark-pink);
}
#about .content-qa dd .content .target-list .list-ttl strong::before, #about .content-qa dd .content .target-list .list-ttl strong::after {
  content: "";
  position: absolute;
  top: 0.1em;
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--cl-dark-pink);
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .target-list .list-ttl strong::before, #about .content-qa dd .content .target-list .list-ttl strong::after {
    width: 0.5333333333vw;
  }
}
#about .content-qa dd .content .target-list .list-ttl strong::before {
  left: 0;
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
#about .content-qa dd .content .target-list .list-ttl strong::after {
  right: 0;
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
}
#about .content-qa dd .content .target-list ul {
  border-top: 2px dotted var(--cl-dark-pink);
}
#about .content-qa dd .content .target-list ul li {
  border-bottom: 2px dotted var(--cl-dark-pink);
  padding: 0.25em 120px 0.25em;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--cl-dark-pink);
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .target-list ul li {
    padding: 0.75em 0 0.75em 1.1em;
    font-size: 4.5333333333vw;
    line-height: 1.2352941176;
    text-indent: -1.1em;
  }
}
#about .content-qa dd .content .clmn {
  background: rgb(245, 245, 245);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  padding: 45px;
  /* sp */
  /* .clmn-ttl */
  /* figure */
  /* .comment */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn {
    padding: 5.3333333333vw 3.3333333333vw;
  }
}
#about .content-qa dd .content .clmn + .clmn {
  margin-top: 15px;
}
#about .content-qa dd .content .clmn .clmn-ttl {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding-bottom: 24px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn .clmn-ttl {
    width: 100%;
    padding-bottom: 4vw;
  }
}
#about .content-qa dd .content .clmn .clmn-ttl::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 0px;
  display: inline-block;
  background: url(../images/fuki1.svg) no-repeat center/100% auto;
  width: 34px;
  height: 24px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn .clmn-ttl::after {
    left: 8vw;
    width: 5.6vw;
    height: 4vw;
  }
}
#about .content-qa dd .content .clmn .clmn-ttl span {
  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;
  background: rgb(0, 192, 255);
  padding: 1em 2em;
  border-radius: 20px;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  color: rgb(255, 255, 255);
  text-align: center;
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn .clmn-ttl span {
    padding: 1em 0;
    border-radius: 3.4666666667vw;
    font-size: 4vw;
  }
}
#about .content-qa dd .content .clmn figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 25px 0 40px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn figure {
    margin: 1.3333333333vw 0 5.3333333333vw;
  }
}
#about .content-qa dd .content .clmn figure img {
  width: 388px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn figure img {
    width: 62.1333333333vw;
  }
}
#about .content-qa dd .content .clmn table {
  border-collapse: separate;
  border-spacing: 0 5px;
}
#about .content-qa dd .content .clmn table tbody tr th, #about .content-qa dd .content .clmn table tbody tr td {
  padding: 0.75em 1em;
  line-height: 1.2352941176;
  letter-spacing: normal;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn table tbody tr th, #about .content-qa dd .content .clmn table tbody tr td {
    padding: 0.75em 0.5em;
    font-size: 2.8vw;
  }
}
#about .content-qa dd .content .clmn table tbody tr th {
  background: rgb(0, 192, 255);
  color: rgb(255, 255, 255);
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn table tbody tr th {
    white-space: nowrap;
  }
}
#about .content-qa dd .content .clmn table tbody tr td {
  background: rgb(255, 255, 255);
}
#about .content-qa dd .content .clmn table tbody tr td small {
  font-size: 1.4rem;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn table tbody tr td small {
    font-size: 2.4vw;
  }
}
#about .content-qa dd .content .clmn .comment {
  position: relative;
  margin-top: 1.5em;
  /* &::after */
}
#about .content-qa dd .content .clmn .comment::after {
  content: "";
  display: block;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 15px auto 0;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn .comment::after {
    background-size: 21.8666666667vw auto;
    width: 46vw;
    height: 46vw;
    margin: 2vw auto 0;
  }
}
#about .content-qa dd .content .clmn:nth-of-type(1) .comment::after {
  background: rgb(255, 255, 255) url(../images/ga6-pic1.svg) no-repeat center/114px auto;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn:nth-of-type(1) .comment::after {
    background-size: 21.8666666667vw auto;
  }
}
#about .content-qa dd .content .clmn:nth-of-type(2) .comment::after {
  background: rgb(255, 255, 255) url(../images/ga6-pic2.svg) no-repeat center/114px auto;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .clmn:nth-of-type(2) .comment::after {
    background-size: 21.8666666667vw auto;
  }
}
#about .content-qa dd .content .txt.caption {
  margin-top: 1.5em;
  font-size: 1.4rem;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #about .content-qa dd .content .txt.caption {
    font-size: 2.9333333333vw;
  }
}
#about .content-qa dt:has(> input:checked) + dd {
  display: block;
}

/* #about */
#interview {
  background: var(--cl-light-blue);
  padding: 100px 0 100px;
  /* .sec-ttl */
  /* .sec-lead */
}
#interview .sec-inner {
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .sec-inner {
    padding: 0;
  }
}
#interview .sec-ttl {
  margin-bottom: 40px;
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .sec-ttl {
    margin-bottom: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
}
#interview .sec-ttl strong {
  font-weight: bold;
}
#interview .sec-ttl::after {
  content: url(../images/about-arrow.svg);
  display: block;
  width: 46px;
  margin: 20px auto 0;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .sec-ttl::after {
    width: 6.9333333333vw;
  }
}
#interview .sec-lead {
  margin-bottom: 50px;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .sec-lead {
    font-size: 3.4666666667vw;
    letter-spacing: normal;
  }
}
#interview .intv {
  position: relative;
  /* .intv-container */
}
#interview .intv .intv-container {
  overflow: hidden;
  /* sp */
  /* .swiper-wrapper */
}
@media only screen and (max-width: 749px) {
  #interview .intv .intv-container {
    width: 61.3333333333vw;
    width: 100%;
    margin: 0 auto;
  }
}
#interview .intv .intv-container .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /* .swiper-slide */
}
#interview .intv .intv-container .swiper-wrapper .swiper-slide {
  width: calc((100% - 80px) / 3);
  /* sp */
  /* .fig */
}
@media only screen and (max-width: 749px) {
  #interview .intv .intv-container .swiper-wrapper .swiper-slide {
    width: 61.3333333333vw;
  }
}
#interview .intv .intv-container .swiper-wrapper .swiper-slide .fig {
  background: rgb(255, 255, 255) url(../images/arrow2.svg) no-repeat right 25px bottom 35px/18px 32px;
  border-radius: 16px;
  overflow: hidden;
  /* sp */
  /* figcaption */
}
@media only screen and (max-width: 749px) {
  #interview .intv .intv-container .swiper-wrapper .swiper-slide .fig {
    background-position: right 4vw bottom 5.3333333333vw;
    background-size: 2.9333333333vw 5.3333333333vw;
  }
}
#interview .intv .intv-container .swiper-wrapper .swiper-slide .fig a {
  color: var(--cl-base-black);
}
#interview .intv .intv-container .swiper-wrapper .swiper-slide .fig figcaption {
  padding: 35px 30px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .intv-container .swiper-wrapper .swiper-slide .fig figcaption {
    padding: 5.3333333333vw 4.6666666667vw;
    font-size: 4vw;
    line-height: 1.6666666667;
  }
}
#interview .intv .intv-container .swiper-wrapper .swiper-slide .fig figcaption .ttl {
  margin-bottom: 1em;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6666666667;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .intv-container .swiper-wrapper .swiper-slide .fig figcaption .ttl {
    font-size: 4vw;
    line-height: 1.6666666667;
  }
}
#interview .intv .intv-container .swiper-wrapper .swiper-slide .fig figcaption .txt {
  font-size: 1.6rem;
  line-height: 1.875;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .intv-container .swiper-wrapper .swiper-slide .fig figcaption .txt {
    font-size: 2.6666666667vw;
    line-height: 1.9;
  }
}
#interview .intv .swiper-button-prev,
#interview .intv .swiper-button-next {
  top: 254px;
  background: var(--cl-dark-blue);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .swiper-button-prev,
  #interview .intv .swiper-button-next {
    top: 42.2008318479vw;
    width: 13.0666666667vw;
    height: 13.0666666667vw;
  }
}
#interview .intv .swiper-button-prev::after,
#interview .intv .swiper-button-next::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 0 solid transparent;
  border-right: 0 solid transparent;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .swiper-button-prev::after,
  #interview .intv .swiper-button-next::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    border-top: 2.6666666667vw solid transparent;
    border-bottom: 2.6666666667vw solid transparent;
  }
}
#interview .intv .swiper-button-prev {
  left: -55px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .swiper-button-prev {
    left: 8vw;
  }
}
#interview .intv .swiper-button-prev::after {
  margin-right: 7px;
  border-right: 32px solid rgb(255, 255, 255);
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .swiper-button-prev::after {
    margin-right: 0.9333333333vw;
    border-right: 5.3333333333vw solid rgb(255, 255, 255);
  }
}
#interview .intv .swiper-button-next {
  right: -55px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .swiper-button-next {
    right: 8vw;
  }
}
#interview .intv .swiper-button-next::after {
  margin-left: 7px;
  border-left: 32px solid rgb(255, 255, 255);
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .intv .swiper-button-next::after {
    margin-left: 0.9333333333vw;
    border-left: 5.3333333333vw solid rgb(255, 255, 255);
  }
}
#interview .modal {
  width: 1000px;
  padding: 50px 0;
  border: 0;
  border-radius: 15px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .modal {
    width: 100%;
    padding: 4.6666666667vw 0;
    border-radius: 2.6666666667vw;
  }
}
#interview .modal .ttl {
  margin-bottom: 20px;
  padding: 0 70px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6666666667;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .modal .ttl {
    margin-bottom: 2.6666666667vw;
    padding: 0 6.6666666667vw;
    font-size: 4.5333333333vw;
  }
}
#interview .modal .info {
  margin-bottom: 20px;
  padding: 0 70px;
  font-size: 1.6rem;
  line-height: 1.875;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .modal .info {
    margin-bottom: 2.6666666667vw;
    padding: 0 6.6666666667vw;
    font-size: 3.2vw;
  }
}
#interview .modal picture {
  margin-bottom: 40px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .modal picture {
    margin-bottom: 5.3333333333vw;
  }
}
#interview .modal .txt {
  padding: 0 70px;
  line-height: 2.0588235294;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .modal .txt {
    padding: 0 6.6666666667vw;
  }
}
#interview .modal .close {
  margin-top: 20px;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .modal .close {
    margin-top: 2.6666666667vw;
  }
}
#interview .modal .btn.top {
  position: absolute;
  top: 50px;
  right: 50px;
  background: var(--cl-dark-blue) url(../images/close.svg) no-repeat center/20px 20px;
  width: 50px;
  height: 0;
  padding-top: 50px;
  overflow: hidden;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #interview .modal .btn.top {
    top: 5.3333333333vw;
    right: 4.6666666667vw;
    background-size: 2.9333333333vw 2.9333333333vw;
    width: 7.7333333333vw;
    padding-top: 7.7333333333vw;
  }
}
#interview .modal .btn.btm {
  color: var(--cl-dark-blue);
}
#interview dialog::-ms-backdrop {
  background: rgba(0, 0, 0, 0.5);
}
#interview dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

/* #interview */
#support {
  padding: 100px 0 100px;
  /* .sec-ttl */
  /* .support-list */
}
#support .sec-ttl {
  margin-bottom: 40px;
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .sec-ttl {
    margin-bottom: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
}
#support .sec-ttl strong {
  font-weight: bold;
}
#support .sec-ttl::after {
  content: url(../images/about-arrow.svg);
  display: block;
  width: 46px;
  margin: 20px auto 0;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .sec-ttl::after {
    width: 6.9333333333vw;
  }
}
#support .support-list {
  /* li */
}
#support .support-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(0, 192, 255);
  padding: 35px 55px;
  border-radius: 18px;
  /* sp */
  /* .ttl */
  /* .txt */
  /* .sup-ttl */
  /* .sup-txt */
}
@media only screen and (max-width: 749px) {
  #support .support-list li {
    padding: 6.6666666667vw;
    border-radius: 2.6666666667vw;
  }
}
#support .support-list li:not(:last-child) {
  margin-bottom: 30px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li:not(:last-child) {
    margin-bottom: 3.3333333333vw;
  }
}
#support .support-list li .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  width: 100%;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li .ttl {
    padding-top: 16.6666666667vw;
  }
}
#support .support-list li .ttl strong {
  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;
  height: 90px;
  font-size: 2.8rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  line-height: 1.3571428571;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li .ttl strong {
    font-size: 4.8vw;
    height: auto;
  }
}
#support .support-list li .ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100px;
  display: block;
  width: 90px;
  height: 90px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li .ttl::before {
    left: 50%;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
    margin-left: -6.6666666667vw;
  }
}
#support .support-list li .txt {
  position: relative;
  background: rgb(255, 255, 255);
  width: 100%;
  margin-top: 30px;
  padding: 25px;
  text-align: center;
  line-height: 1.8823529412;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li .txt {
    padding: 4vw;
    text-align: left;
  }
}
#support .support-list li .txt::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  display: inline-block;
  width: 24px;
  height: 20px;
  margin-left: -12px;
  border-top: 0 solid transparent;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 20px solid rgb(255, 255, 255);
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li .txt::before {
    top: -3.4666666667vw;
    width: 4.2666666667vw;
    height: 3.4666666667vw;
    margin-left: -2.1333333333vw;
    border-left: 2.1333333333vw solid transparent;
    border-right: 2.1333333333vw solid transparent;
    border-bottom: 3.4666666667vw solid rgb(255, 255, 255);
  }
}
#support .support-list li .sup-ttl {
  margin-top: 30px;
}
#support .support-list li .sup-ttl strong {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.75em;
  font-size: 2.6rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
  line-height: 1;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li .sup-ttl strong {
    font-size: 4.5333333333vw;
  }
}
#support .support-list li .sup-ttl strong::before, #support .support-list li .sup-ttl strong::after {
  content: "";
  position: absolute;
  top: 0.3em;
  display: inline-block;
  width: 4px;
  height: 1em;
  background: rgb(255, 255, 255);
}
#support .support-list li .sup-ttl strong::before {
  left: 0;
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
}
#support .support-list li .sup-ttl strong::after {
  right: 0;
  -webkit-transform: rotate(20deg);
      -ms-transform: rotate(20deg);
          transform: rotate(20deg);
}
#support .support-list li .sup-ttl strong em {
  display: inline-block;
  padding-bottom: 0.1em;
  font-size: 1.5em;
  font-style: normal;
  line-height: 1;
}
#support .support-list li .sup-txt {
  position: relative;
  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;
  background: rgb(255, 255, 132);
  width: 100%;
  min-height: 106px;
  padding: 25px;
  margin-top: 30px;
  border-radius: 15px;
  font-weight: bold;
  color: rgb(0, 192, 255);
  text-align: center;
  line-height: 1.8823529412;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li .sup-txt {
    min-height: 0;
    padding: 3.3333333333vw;
    margin-top: 5.3333333333vw;
    border-radius: 2.6666666667vw;
    text-align: left;
  }
}
#support .support-list li .sup-txt::before {
  content: "";
  position: absolute;
  top: -19px;
  right: 275px;
  background: url(../images/fuki3.svg) no-repeat center/100% auto;
  width: 28px;
  height: 20px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #support .support-list li .sup-txt::before {
    top: -3.3333333333vw;
    right: 12.6666666667vw;
    width: 4.8vw;
    height: 3.4666666667vw;
  }
}
#support .support-list li .sup-txt strong {
  font-weight: bold;
  text-decoration: underline;
}
#support .support-list li:nth-child(1) .ttl::before {
  background: url(../images/sup-num1.svg) no-repeat center/100% auto;
}
#support .support-list li:nth-child(2) .ttl::before {
  background: url(../images/sup-num2.svg) no-repeat center/100% auto;
}
#support .support-list li:nth-child(3) .ttl::before {
  background: url(../images/sup-num3.svg) no-repeat center/100% auto;
}
#support .support-list li:nth-child(4) .ttl::before {
  background: url(../images/sup-num4.svg) no-repeat center/100% auto;
}
#support .support-list li:nth-child(5) .ttl::before {
  background: url(../images/sup-num5.svg) no-repeat center/100% auto;
}
#support .support-list li:nth-child(6) .ttl::before {
  background: url(../images/sup-num6.svg) no-repeat center/100% auto;
}

/* #support */
#faq {
  background: rgb(213, 243, 254);
  padding: 100px 0 100px;
  /* sp */
  /* .sec-ttl */
  /* .qa-wrap */
}
@media only screen and (max-width: 749px) {
  #faq {
    padding: 13.3333333333vw 0 13.3333333333vw;
  }
}
#faq .sec-ttl {
  margin-bottom: 40px;
  font-size: 3.6rem;
  line-height: 1;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .sec-ttl {
    margin-bottom: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
}
#faq .sec-ttl strong {
  font-weight: bold;
}
#faq .sec-ttl::after {
  content: url(../images/about-arrow.svg);
  display: block;
  width: 46px;
  margin: 20px auto 0;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .sec-ttl::after {
    width: 6.9333333333vw;
  }
}
#faq .qa-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px 35px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .qa-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 4vw;
  }
}
#faq .qa-wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgb(255, 255, 255);
  margin: 0;
  padding: 35px;
  border-radius: 15px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .qa-wrap dl {
    padding: 4.6666666667vw 6vw;
    border-radius: 2.6666666667vw;
  }
}
#faq .qa-wrap dl dt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  padding-left: 35px;
  font-size: 2.6rem;
  line-height: 1.5384615385;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .qa-wrap dl dt {
    padding-left: 6.6666666667vw;
    font-size: 4.5333333333vw;
  }
}
#faq .qa-wrap dl dt strong {
  font-weight: bold;
}
#faq .qa-wrap dl dt::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--cl-dark-blue);
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .qa-wrap dl dt::before {
    font-size: 4.5333333333vw;
  }
}
#faq .qa-wrap dl dd {
  position: relative;
  margin-top: 20px;
  padding-left: 35px;
  line-height: 1.8823529412;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .qa-wrap dl dd {
    margin-top: 2.6666666667vw;
    padding-left: 6.6666666667vw;
  }
}
#faq .qa-wrap dl dd::before {
  content: "A.";
  position: absolute;
  top: -1em;
  left: 0;
  font-size: 2.6rem;
  font-weight: bold;
  color: var(--cl-dark-pink);
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .qa-wrap dl dd::before {
    font-size: 4.5333333333vw;
  }
}
#faq .qa-wrap dl dd p {
  border-top: 1px solid var(--cl-base-black);
  padding-top: 20px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #faq .qa-wrap dl dd p {
    padding-top: 2.6666666667vw;
  }
}

/* #faq */
#banner {
  padding: 150px 0 100px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #banner {
    padding: 20vw 0 13.3333333333vw;
  }
}
#banner .yt-wrap {
  width: 480px;
  margin: 0 auto;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #banner .yt-wrap {
    width: 100%;
  }
}
#banner .yt-wrap .yt {
  position: relative;
  width: 100%;
  aspect-ratio: 560/315;
  border-radius: 16px;
  overflow: hidden;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #banner .yt-wrap .yt {
    border-radius: 2.6666666667vw;
  }
}
#banner .yt-wrap .yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#banner .bnr {
  position: relative;
  width: 480px;
  margin: 100px auto 0;
  /* sp */
}
@media only screen and (max-width: 749px) {
  #banner .bnr {
    width: 100%;
    margin: 38.6666666667vw auto 0;
  }
}
#banner .bnr .balloon {
  position: absolute;
  top: -85px;
  left: -150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  background: rgb(0, 192, 255);
  width: 256px;
  height: 256px;
  border-radius: 50%;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 749px) {
  #banner .bnr .balloon {
    top: -37.3333333333vw;
    left: 50%;
    width: 44.8vw;
    height: 44.8vw;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#banner .bnr .balloon small {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media only screen and (max-width: 749px) {
  #banner .bnr .balloon small {
    font-size: 3.2vw;
  }
}
#banner .bnr .balloon strong {
  font-size: 2.6rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2692307692;
}
@media only screen and (max-width: 749px) {
  #banner .bnr .balloon strong {
    font-size: 4.5333333333vw;
  }
}

/* #banner */
/* ページ先頭へボタン */
.pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  z-index: 99;
  /* sp */
}
@media only screen and (max-width: 749px) {
  .pagetop {
    bottom: 4vw;
    right: 4vw;
    width: 8vw;
    height: 8vw;
  }
}
.pagetop a {
  position: relative;
  background-color: var(--cl-dark-blue);
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  text-indent: -9999px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.pagetop a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  -webkit-transform: translate(-50%, -25%) rotate(45deg);
      -ms-transform: translate(-50%, -25%) rotate(45deg);
          transform: translate(-50%, -25%) rotate(45deg);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  .pagetop a::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.pagetop a:hover {
  opacity: 0.7;
}
.pagetop.stop {
  position: absolute;
}

footer {
  margin: 100px 0 0;
  /* sp */
  /* #f-logo */
}
@media only screen and (max-width: 749px) {
  footer {
    margin: 13.3333333333vw 0 0;
  }
}
footer #f-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 75px;
  padding-bottom: 200px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  footer #f-logo {
    padding-bottom: 26.6666666667vw;
  }
}
footer #f-logo strong {
  width: 250px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  footer #f-logo strong {
    width: 46vw;
  }
}
footer #f-logo small {
  width: 140px;
  /* sp */
}
@media only screen and (max-width: 749px) {
  footer #f-logo small {
    width: 20.8vw;
  }
}
footer #f-menu {
  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;
}
footer #f-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  /* sp */
}
@media only screen and (max-width: 749px) {
  footer #f-menu li {
    font-size: 3.2vw;
  }
}
footer #f-menu li:not(:last-child) {
  padding-right: 1em;
}
footer #f-menu li:not(:last-child)::after {
  content: "|";
  padding-left: 1em;
}
footer #f-menu li a {
  color: var(--cl-base-black);
}
footer #f-menu li a span {
  background: none;
}
footer #f-credit {
  padding: 40px 0 25px;
  text-align: center;
  /* sp */
}
@media only screen and (max-width: 749px) {
  footer #f-credit {
    padding: 5.3333333333vw 0 3.3333333333vw;
  }
}
footer #f-credit small {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  /* sp */
}
@media only screen and (max-width: 749px) {
  footer #f-credit small {
    font-size: 2.4vw;
  }
}

/* footer */