@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 115px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #444;
  --color-pink: #F47261;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

.f-barlow {
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}

@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.inner {
  width: var(--inner-width);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}
.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__cv {
  --cvWidth: 180px;
  overflow: hidden;
  width: var(--cvWidth);
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
  position: fixed;
  z-index: 9992;
  right: 20px;
  bottom: 110px;
}
.l-header__cv a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  height: 100%;
  border-radius: inherit;
  position: relative;
  z-index: 1;
}
.l-header__cv a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg_entry01.webp) no-repeat center/cover;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-header__cv-en {
  font-weight: 600;
  font-size: 1.45em;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    height: var(--header-height);
    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;
    margin-bottom: calc(var(--header-height) * -1);
    padding: 0 60px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header__cv a {
    background: #fff;
  }
  .l-header__cv a:hover {
    opacity: 1;
  }
  .l-header__cv a:hover::after {
    opacity: 0.8;
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .l-header__cv {
    --cvWidth: 160px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 135px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9990;
  }
  .l-header__cv {
    --cvWidth: 80px;
    font-size: 12px;
    right: 10px;
    bottom: 55px;
  }
  .l-header__cv a {
    gap: 0;
  }
  .l-header__cv-en {
    font-size: 14px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #8CB8DF;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a, .l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a, .l-footer li, .l-footer div, .l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 40px 10px;
  position: relative;
}
.l-footer-inner::after {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  border-top: 1px dashed #fff;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 25px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px;
  }
  .l-footer-inner::after {
    width: calc(100% - 40px);
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
    text-align: left;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #3F92CE;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .l-nav-inner {
    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;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 30px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-pink);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 10px;
    right: 10px;
    background: var(--color-pink);
    border-radius: 50%;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 100px 20px 140px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-pink);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  padding: var(--header-height) 60px max(125px, 12.5vw);
  background: url(../img/bg_mv01.svg) no-repeat right top/62.3%, url(../img/bg_mv03.webp) no-repeat right bottom 10px/21.5%;
  position: relative;
}
.l-mv::before, .l-mv::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  pointer-events: none;
}
.l-mv::before {
  width: 48.2%;
  aspect-ratio: 694/420;
  background: url(../img/bg_mv02.svg) no-repeat center/contain;
  bottom: 10px;
}
.l-mv::after {
  width: 100%;
  aspect-ratio: 2880/240;
  background: #FFF2F4;
  -webkit-mask-image: url(../img/bg_wave01_pc.webp);
  mask-image: url(../img/bg_wave01_pc.webp);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: max(100%, 1400px) 100%;
  mask-size: max(100%, 1400px) 100%;
  bottom: 0;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 35.4%;
  position: absolute;
  top: calc(var(--header-height) + 9.5%);
  left: 9.7%;
  -webkit-filter: drop-shadow(0 0 50px rgba(5, 149, 251, 0.5));
          filter: drop-shadow(0 0 50px rgba(5, 149, 251, 0.5));
}
.l-mv-imgBox img {
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .l-mv {
    padding: calc(var(--header-height) + 10px) 10px 15vw;
    background-size: 80%, 43%;
    background-position: right -70% top, right bottom;
  }
  .l-mv::before {
    width: 80%;
    bottom: 0;
  }
  .l-mv::after {
    -webkit-mask-image: url(../img/bg_wave01_sp.webp);
    mask-image: url(../img/bg_wave01_sp.webp);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .l-mv__txt {
    width: 65%;
    top: calc(var(--header-height) + 11.5%);
    left: 10%;
  }
  .l-mv-imgBox img {
    border-radius: 16px;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  font-weight: 700;
  font-size: 44px;
  text-align: center;
  letter-spacing: 0.08em;
}
.c-tit01::before {
  content: "";
  display: block;
  width: 65px;
  aspect-ratio: 1/1;
  margin: 0 auto 10px;
  background: no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 28px;
  }
  .c-tit01::before {
    margin-bottom: 5px;
    width: 40px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  overflow-x: clip;
  padding-block: 135px 160px;
  background: url(../img/bg_search02.svg) no-repeat right calc(50% - 920px) top 180px, url(../img/bg_search03.svg) no-repeat left calc(50% - 925px) top 64%, url(../img/bg_search04.svg) no-repeat right calc(50% - 470px) bottom 330px #FFF2F4;
  position: relative;
}
.secSearch::before, .secSearch::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
}
.secSearch::before {
  width: 262px;
  aspect-ratio: 262/260;
  background-image: url(../img/bg_search01.svg);
  top: -40px;
  right: calc(50% - 650px);
}
.secSearch::after {
  width: 387px;
  aspect-ratio: 387/441;
  background-image: url(../img/bg_search05.svg);
  left: calc(50% - 655px);
  bottom: -65px;
  z-index: 2;
}
.secSearch-inner {
  position: relative;
  z-index: 10;
}
.secSearch-inside {
  width: min(100%, 960px);
  margin-inline: auto;
  padding: 0 40px 40px;
  background: #fff;
  border-radius: 30px;
  position: relative;
}
.secSearch-inside-deco {
  overflow: hidden;
  width: 390px;
  height: 93px;
  position: absolute;
  bottom: 100%;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  pointer-events: none;
}
.secSearch-inside-deco::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
}
.secSearch__secTit {
  margin-bottom: -30px;
  -webkit-transform: translateY(-63px);
          transform: translateY(-63px);
  position: relative;
  z-index: 2;
}
.secSearch__secTit::before {
  background-image: url(../img/ico_search01.svg);
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 140px 80px;
    background-position: right -150px top 200px, left -150px top 50%, right 10px bottom 250px;
    background-size: 250px, 250px, 100px;
  }
  .secSearch::before {
    width: 120px;
    top: 10px;
    right: 10px;
  }
  .secSearch::after {
    width: 150px;
    left: -20px;
    bottom: -40px;
  }
  .secSearch-inner {
    padding-inline: 10px;
  }
  .secSearch-inside {
    padding: 0 15px 30px;
    border-radius: 15px;
  }
  .secSearch-inside-deco {
    width: min(90%, 300px);
    height: 70px;
  }
  .secSearch__secTit {
    margin-bottom: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
}

/*	.secSearch-sec (common)
------------------------------------------*/
.secSearch-sec + .secSearch-sec {
  margin-top: 50px;
}
.secSearch-sec__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 22px;
}
.secSearch-sec__tit::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: #FFE9EC;
}
.secSearch-sec-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.secSearch-sec-list__item {
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}
.secSearch-sec-list__item 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;
  min-height: 60px;
  padding: 5px;
  border-radius: inherit;
  background: #FAA297;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background: var(--color-pink);
  }
  .secSearch-sec-list.is-col2 {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-sec__tit {
    gap: 15px;
    margin-bottom: 20px;
    font-size: 20px;
  }
  .secSearch-sec-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secSearch-sec-list__item {
    font-size: 15px;
  }
}

/*	.secSearch-genre
------------------------------------------*/
.secSearch-genre__tit {
  margin-bottom: 56px;
}
.secSearch-genre-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 63px 20px;
}
.secSearch-genre-list__item a {
  display: block;
  position: relative;
}
.secSearch-genre-list__item a::after {
  content: "";
  display: block;
  background: no-repeat left top/contain;
  position: absolute;
  top: -40px;
  left: 5px;
}
.secSearch-genre-list__item:nth-of-type(1) a::after {
  width: 121px;
  aspect-ratio: 121/55;
  background-image: url(../img/txt_genre01.svg);
}
.secSearch-genre-list__item:nth-of-type(2) a::after {
  width: 125px;
  aspect-ratio: 125/55;
  background-image: url(../img/txt_genre02.svg);
}
.secSearch-genre-list__item:nth-of-type(3) a::after {
  width: 122px;
  aspect-ratio: 122/54;
  background-image: url(../img/txt_genre03.svg);
}
.secSearch-genre-list__item:nth-of-type(4) a::after {
  width: 121px;
  aspect-ratio: 121/55;
  background-image: url(../img/txt_genre04.svg);
}
.secSearch-genre-list__item:nth-of-type(5) a::after {
  width: 128px;
  aspect-ratio: 128/56;
  background-image: url(../img/txt_genre05.svg);
}
.secSearch-genre-list__item:nth-of-type(6) a::after {
  width: 124px;
  aspect-ratio: 124/55;
  background-image: url(../img/txt_genre06.svg);
}
.secSearch-genre-list-imgBox {
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 8px;
}
.secSearch-genre-list-imgBox img {
  width: 100%;
}
.secSearch-genre-list__txt {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .secSearch-genre-list__item a:hover {
    opacity: 1;
    color: var(--color-pink);
  }
  .secSearch-genre-list__item a:hover .secSearch-genre-list-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .secSearch-genre-list-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-genre__tit {
    margin-bottom: 40px;
  }
  .secSearch-genre-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 45px 10px;
  }
  .secSearch-genre-list__item a::after {
    width: min(60%, 80px) !important;
    top: auto;
    bottom: calc(100% - 10px);
  }
  .secSearch-genre-list-imgBox {
    margin-bottom: 5px;
  }
  .secSearch-genre-list__txt {
    font-size: 15px;
  }
}

/*	.secSearch-bnr
------------------------------------------*/
.secSearch-bnr {
  width: min(100%, 630px);
  margin: 40px auto 0;
  border-radius: 24px;
  position: relative;
}
.secSearch-bnr::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 1px solid #444;
  background: #3F92CE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 8px;
  left: 8px;
  pointer-events: none;
}
.secSearch-bnr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  height: 248px;
  padding: 15px;
  border-radius: inherit;
  border: 1px solid #444;
  background: #fff;
  position: relative;
  z-index: 2;
}
.secSearch-bnr__click {
  width: min(100%, 220px);
  height: 40px;
  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;
  border-radius: 100px;
  background: #3F92CE;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secSearch-bnr a:hover {
    opacity: 1;
    background: #FFFEF0;
  }
  .secSearch-bnr a:hover .secSearch-bnr__click {
    background: var(--color-pink);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-bnr {
    width: min(100% - 20px, 400px);
    margin-top: 60px;
  }
  .secSearch-bnr::after {
    top: 5px;
    left: 5px;
  }
  .secSearch-bnr a {
    gap: 20px;
    height: 200px;
  }
  .secSearch-bnr__txt {
    width: min(100%, 300px);
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  padding-block: 20px 160px;
  background: url(../img/bg_merit01.webp) no-repeat right calc(50% - 460px) top 30px/281px, url(../img/bg_merit02.webp) no-repeat left calc(50% - 550px) bottom 85px/215px #D2E6F4;
  position: relative;
}
.secMerit::after {
  content: "";
  display: block;
  width: 100%;
  height: 120px;
  background: #D2E6F4;
  -webkit-mask-image: url(../img/bg_wave01_pc.webp);
  mask-image: url(../img/bg_wave01_pc.webp);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: max(100%, 1400px) 100%;
  mask-size: max(100%, 1400px) 100%;
  position: absolute;
  left: 0;
  bottom: calc(100% - 1px);
  pointer-events: none;
}
.secMerit-inner {
  position: relative;
  z-index: 2;
}
.secMerit__secTit {
  margin-bottom: 60px;
}
.secMerit__secTit::before {
  background-image: url(../img/ico_merit01.svg);
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 80px;
    background-position: right 10px top 20px, left -10px bottom 20px;
    background-size: 140px, 100px;
  }
  .secMerit::after {
    height: 32px;
    -webkit-mask-image: url(../img/bg_wave01_sp.webp);
    mask-image: url(../img/bg_wave01_sp.webp);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .secMerit__secTit {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .secMerit-set {
    scroll-margin-top: var(--header-height);
  }
  .secMerit-set__scroll {
    margin: 0 calc(var(--inner-padding) * -0.5) 10px auto;
    color: #666;
    font-weight: 700;
    font-size: 12px;
    text-align: right;
  }
  .secMerit-set__back {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto 15px;
    border-radius: 0 0 8px 8px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    position: relative;
    z-index: 2;
  }
  .secMerit-set__back a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
    padding-inline: 15px 30px;
    background: #444;
    border-radius: inherit;
    position: relative;
  }
  .secMerit-set__back a::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 45%;
    right: 10px;
  }
}

.secMerit-nav {
  counter-reset: number;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4%;
  margin-bottom: 27px;
}
.secMerit-nav__item {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.secMerit-nav__item::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  display: block;
  margin-bottom: 2px;
  color: #8AB7DD;
  font-weight: 500;
  font-family: "Barlow", sans-serif;
}
.secMerit-nav__item-in {
  display: block;
  padding: 0 3px 2px;
  position: relative;
  z-index: 1;
}
.secMerit-nav__item-in::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background: #FFF790;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secMerit-nav__item.is-active .secMerit-nav__item-in::after {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .secMerit-nav {
    gap: 0;
    margin-bottom: 0;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
  .secMerit-navWrap {
    overflow: auto;
    margin: 0 calc(var(--inner-padding) * -1) 25px 0;
    padding-right: var(--inner-padding);
  }
  .secMerit-nav__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    padding-inline: 7px;
    font-size: 13px;
  }
  .secMerit-nav__item-in::after {
    height: 5px;
  }
}

.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
}

.secMerit-content {
  border-radius: 30px;
  position: relative;
}
.secMerit-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 1px solid #444;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 5px;
  left: 5px;
  pointer-events: none;
}
.secMerit-content-in {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(46.4%, 500px) 1fr;
  grid-template-columns: min(46.4%, 500px) 1fr;
  border-radius: inherit;
  background: #fff;
  border: 1px solid #444;
  position: relative;
  z-index: 2;
}
.secMerit-content-txtBox {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 40px;
}
.secMerit-content__num {
  margin-bottom: 15px;
  color: #8AB7DD;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.secMerit-content__tit {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.08em;
}
.secMerit-content__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-right: 1px solid #444;
}
@media screen and (max-width: 768px) {
  .secMerit-content {
    border-radius: 15px;
  }
  .secMerit-content-in {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secMerit-content-txtBox {
    padding: 25px 20px;
  }
  .secMerit-content__num {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .secMerit-content__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secMerit-content__img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
    border-right: none;
    border-bottom: 1px solid #444;
  }
}

/*------------------------------------------
	.secVoice
------------------------------------------*/
.secVoice {
  overflow-x: clip;
  padding-block: 50px 27px;
  position: relative;
}
.secVoice::before, .secVoice::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.secVoice::before {
  width: 353px;
  aspect-ratio: 353/158;
  background: url(../img/bg_voice01.svg) no-repeat center/contain;
  top: -10px;
  right: calc(50% - 610px);
  z-index: 2;
}
.secVoice::after {
  width: 100%;
  height: 120px;
  background: #fff;
  -webkit-mask-image: url(../img/bg_wave01_pc.webp);
  mask-image: url(../img/bg_wave01_pc.webp);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: max(100%, 1400px) 100%;
  mask-size: max(100%, 1400px) 100%;
  left: 0;
  bottom: calc(100% - 1px);
  z-index: 1;
}
.secVoice-inner {
  position: relative;
  z-index: 2;
}
.secVoice__secTit {
  margin-bottom: 38px;
}
.secVoice__secTit::before {
  width: 118px;
  aspect-ratio: 118/65;
  background-image: url(../img/ico_voice01.svg);
}
@media screen and (max-width: 768px) {
  .secVoice {
    padding-block: 80px;
  }
  .secVoice::before {
    width: 140px;
    top: 20px;
    right: 10px;
  }
  .secVoice::after {
    height: 32px;
    -webkit-mask-image: url(../img/bg_wave01_sp.webp);
    mask-image: url(../img/bg_wave01_sp.webp);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .secVoice__secTit {
    margin-bottom: 30px;
  }
  .secVoice__secTit::before {
    width: auto;
    height: 40px;
  }
}

.secVoice-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 40px;
  border-radius: 24px 0 24px 0;
  position: relative;
}
.secVoice-list__item::after {
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 45/38;
  background: url(../img/ico_quotation01.svg) no-repeat center/contain;
  position: absolute;
  top: -12px;
  left: 40px;
}
.secVoice-list__item.is-pink {
  background: #FFF2F2;
}
.secVoice-list__item.is-yellow {
  background: #FFFCD5;
}
.secVoice-list__item.is-green {
  background: #E8F8EC;
}
.secVoice-list__item.is-purple {
  background: #F2EDFF;
}
.secVoice-list__item.is-blue {
  background: #E0FBFA;
}
.secVoice-list__txt {
  font-size: 18px;
  letter-spacing: 0.02em;
}
.secVoice-list__txt .color {
  color: var(--color-pink);
  font-weight: 700;
}
.secVoice-list__prof {
  margin-top: auto;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .secVoice-list__item {
    padding: 30px 20px 20px;
  }
  .secVoice-list__item::after {
    width: 35px;
    left: 20px;
  }
  .secVoice-list__txt {
    font-size: 14px;
  }
  .secVoice-list__prof {
    font-size: 12px;
  }
}

.secVoice-slider .splide__track {
  padding-top: 12px;
}
.secVoice-slider-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 30px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secVoice-slider .my-carousel-progress {
  background: #E7E7E7;
}
.secVoice-slider .my-carousel-progress-bar {
  background: var(--color-pink);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.secVoice-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.secVoice-slider .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  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: var(--color-pink);
  border: 2px solid var(--color-pink);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secVoice-slider .splide__arrow svg {
  display: none;
}
.secVoice-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  background: #fff;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secVoice-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secVoice-slider .splide__arrow:hover {
  background: #fff;
}
.secVoice-slider .splide__arrow:hover::before {
  background: var(--color-pink);
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  overflow: hidden;
  padding-block: 125px 40px;
  background: url(../img/bg_entry02.svg) no-repeat left calc(50% - 415px) top 7px, url(../img/bg_entry03.svg) no-repeat right calc(50% - 415px) top;
  color: #fff;
  position: relative;
}
.secEntry::after {
  content: "";
  display: block;
  width: max(1440px, 120%);
  height: 180%;
  border-radius: 100%;
  background: #8CB8DF;
  position: absolute;
  top: 55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.secEntry__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
.secEntry__secTit {
  margin-bottom: 35px;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  letter-spacing: 0;
}
.secEntry__btn {
  width: min(100%, 400px);
  margin-inline: auto;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0;
}
.secEntry__btn 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;
  min-height: 80px;
  padding: 10px 60px;
  border-radius: inherit;
  border: 3px solid var(--color-pink);
  background: var(--color-pink);
  position: relative;
}
.secEntry__btn a::after {
  content: "";
  display: block;
  width: 29px;
  aspect-ratio: 29/8;
  background: currentColor;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-pink);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 100px 60px;
    background-position: left 10px top 5px, right 10px top;
    background-size: 100px, 100px;
  }
  .secEntry::after {
    width: max(600px, 160%);
    height: 120%;
    top: 40px;
  }
  .secEntry__logo {
    width: 200px;
    margin-bottom: 30px;
  }
  .secEntry__secTit {
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 1.7;
  }
  .secEntry__btn a {
    min-height: 70px;
    padding-inline: 45px;
  }
  .secEntry__btn a::after {
    width: 25px;
    right: 20px;
  }
}
/*# sourceMappingURL=style.css.map */