@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: 90px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #444;
  --color-navy: #1D5698;
  --color-yellow: #FFFB00;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "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-grape {
  font-weight: 400;
  font-family: "Grape Nuts", cursive;
}

/*------------------------------------------
	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%;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__logo-txt {
  padding: 5px 10px;
  border-radius: 100px;
  background: #0EB7FF;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.l-header__entry {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 160px;
  height: 70px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.25;
}
.l-header__entry-en {
  display: block;
  color: var(--color-navy);
  font-size: 27px;
}
.l-header__entry a {
  height: 100%;
  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;
  padding-bottom: 5px;
  border-radius: inherit;
  border: 2px solid var(--color-yellow);
  background: var(--color-yellow);
}
@media screen and (min-width: 769px) {
  .l-header {
    min-width: 1000px;
    height: var(--header-height);
    padding-inline: 30px;
    background: #fff;
    z-index: 9990;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header:not(.is-scroll) {
    width: calc(100% - 160px);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    top: 20px;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
    border-color: var(--color-navy);
    color: var(--color-navy);
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 144px;
    height: 70px;
    display: block;
    border-radius: 0 0 16px 0;
    z-index: 9990;
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-header__logo a {
    width: 100%;
    height: 100%;
    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: rgba(255, 255, 255, 0.7);
    border-radius: inherit;
  }
  .l-header__logo img {
    width: 112px;
  }
  .l-header__entry {
    width: 130px;
    height: 50px;
    font-size: 12px;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9992;
  }
  .l-header__entry-en {
    font-size: 20px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #5DC2D0;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "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: 50px 10px;
}
.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 20px;
  padding: 0;
  gap: 20px 30px;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item a {
  display: block;
  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: 14px;
  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-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 a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
    text-align: left;
  }
}

.pagetop {
  display: none;
  width: 60px;
  height: 170px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #444 !important;
}
.pagetop a::before {
  content: "";
  display: block;
  width: 84%;
  aspect-ratio: 50/141;
  background: url(../img/ico_pagetop01.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .pagetop {
    opacity: 1 !important;
    display: block !important;
    width: 50px;
    height: 70px;
    position: fixed !important;
    right: 10px;
    bottom: 10px !important;
    font-size: 10px;
  }
  .pagetop a::before {
    width: 38%;
  }
}

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

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
  }
  .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-navy);
  }
}
/* 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-navy);
    border-radius: 50%;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 25px;
    height: 1px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 16px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 22px;
  }
  .gnavBtn span:nth-of-type(3) {
    top: 28px;
  }
  .gnavBtn::after {
    content: "MENU";
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    text-align: center;
    line-height: 1;
    position: absolute;
    right: 0;
    bottom: 13px;
    left: 0;
    margin: auto;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-200deg);
            transform: translateY(6px) rotate(-200deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(200deg);
            transform: translateY(-6px) rotate(200deg);
  }
  .gnavBtn.is-close::after {
    content: "CLOSE";
  }
  .l-nav {
    display: none;
    padding: 80px 20px 150px;
    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-navy);
    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 {
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  position: absolute;
  width: calc(100% - 140px);
  right: 0;
  bottom: 90px;
  left: 0;
  margin: auto;
  z-index: 2;
}
.l-mv__txt01 {
  width: 31%;
  margin: 0 auto max(15px, 1.5vw) max(2px, 0.2vw);
}
.l-mv__txt01 img {
  -webkit-filter: drop-shadow(0 0 14px rgba(19, 55, 96, 0.4));
          filter: drop-shadow(0 0 14px rgba(19, 55, 96, 0.4));
}
.l-mv__txt02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: max(15px, 1.5vw);
  border-radius: 100px;
  background: var(--color-navy);
  color: #fff;
  font-weight: 700;
  font-size: max(15px, 1.5vw);
  text-align: center;
}
.l-mv-bnr {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}
@media screen and (max-width: 768px) {
  .l-mv-txtBox {
    width: calc(100% - 60px);
    top: calc(var(--header-height) + 18.5vw);
    bottom: auto;
  }
  .l-mv__txt01 {
    width: 95.5%;
    margin: 0 auto 3vw 1vw;
  }
  .l-mv__txt01 img {
    -webkit-filter: drop-shadow(0 0 0.4em rgba(19, 55, 96, 0.4));
            filter: drop-shadow(0 0 0.4em rgba(19, 55, 96, 0.4));
  }
  .l-mv__txt02 {
    padding: 0.2vw 5vw;
    font-size: 4.2vw;
  }
  .l-mv-bnr {
    right: 20px;
    bottom: 20px;
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
    width: 28%;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  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: 6px;
  text-align: center;
}
.c-tit01__main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  background: #444;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-weight: 400;
  font-size: 116px;
  line-height: 1.1;
  font-family: "Grape Nuts", cursive;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-txt);
}
@media screen and (max-width: 768px) {
  .c-tit01__main {
    font-size: 15px;
  }
  .c-tit01__en {
    font-size: 52px;
  }
}

.c-navy {
  color: var(--color-navy);
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  margin-bottom: 10px;
  padding-block: 220px 160px;
  background: url(../img/bg_search01.webp) no-repeat center top/max(1440px, 100%) 335px, -webkit-gradient(linear, left top, left bottom, color-stop(0, #E7FBFF), to(#FFFDE1));
  background: url(../img/bg_search01.webp) no-repeat center top/max(1440px, 100%) 335px, linear-gradient(to bottom, #E7FBFF 0, #FFFDE1 100%);
  position: relative;
}
.secSearch::after {
  content: "";
  display: block;
  width: 100%;
  height: 140px;
  -webkit-mask-image: url(../img/bg_wave01.webp);
  mask-image: url(../img/bg_wave01.webp);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: max(1440px, 100%) 100%;
  mask-size: max(1440px, 100%) 100%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.secSearch-inner {
  position: relative;
  z-index: 2;
}
.secSearch__secTit {
  margin-bottom: 60px;
}
.secSearch-sec + .secSearch-sec {
  margin-top: 80px;
}
.secSearch-sec__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  font-weight: 700;
  font-size: 24px;
}
.secSearch-sec__tit::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 50px;
  height: 1px;
  background: currentColor;
}
.secSearch-sec-list {
  width: min(100% - 20px);
  margin-inline: auto;
  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;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
}
.secSearch-sec-list__item a {
  min-height: 60px;
  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;
  padding: 5px 40px;
  border-radius: inherit;
  background: #fff;
  -webkit-box-shadow: 0 0 24px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 24px rgba(0, 0, 0, 0.06);
  position: relative;
}
.secSearch-sec-list__item a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -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;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background: var(--color-navy);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px;
    background: url(../img/bg_search01.webp) no-repeat center top/max(390px, 100%) 90px, -webkit-gradient(linear, left top, left bottom, color-stop(0, #E7FBFF), to(#FFFDE1));
    background: url(../img/bg_search01.webp) no-repeat center top/max(390px, 100%) 90px, linear-gradient(to bottom, #E7FBFF 0, #FFFDE1 100%);
  }
  .secSearch::after {
    height: 50px;
    -webkit-mask-size: max(390px, 100%) 100%;
    mask-size: max(390px, 100%) 100%;
  }
  .secSearch__secTit {
    margin-bottom: 50px;
  }
  .secSearch-sec + .secSearch-sec {
    margin-top: 60px;
  }
  .secSearch-sec__tit {
    margin-bottom: 30px;
    font-size: 20px;
  }
  .secSearch-sec-list {
    width: 100%;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .secSearch-sec-list__item {
    font-size: 16px;
  }
  .secSearch-sec-list__item a {
    padding-inline: 30px;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.06);
  }
  .secSearch-sec-list__item a::after {
    right: 20px;
  }
}

/*	.secSearch-genre
------------------------------------------*/
.secSearch-genre-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 40px;
}
.secSearch-genre-list__item a {
  display: block;
}
.secSearch-genre-list__item:nth-of-type(even) {
  margin-top: 30px;
}
.secSearch-genre-list__img {
  width: 100%;
  border-radius: 140px 140px 0 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 3px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.secSearch-genre-list__en {
  margin-top: -12px;
  color: #DDBF27;
  font-size: 36px;
  text-align: center;
  line-height: 1.1;
  -webkit-transform: rotate(-6deg);
          transform: rotate(-6deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secSearch-genre-list__txt {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.13em;
}
@media screen and (min-width: 769px) {
  .secSearch-genre-list__img {
    border: 2px solid transparent;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .secSearch-genre-list__item a:hover {
    opacity: 1;
    color: var(--color-navy);
  }
  .secSearch-genre-list__item a:hover .secSearch-genre-list__img {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
    border: 3px solid #d8b723;
  }
  .secSearch-genre-list__item a:hover .secSearch-genre-list__en {
    color: var(--color-navy);
  }
}
@media screen and (max-width: 768px) {
  .secSearch-genre-list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 20px;
  }
  .secSearch-genre-list__item:nth-of-type(even) {
    margin-top: 40px;
  }
  .secSearch-genre-list__en {
    margin-top: -10px;
    font-size: 30px;
  }
  .secSearch-genre-list__txt {
    font-size: 16px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 374px) {
  .secSearch-genre-list__txt {
    font-size: 15px;
  }
}

/*	.secSearch-work
------------------------------------------*/
@media screen and (max-width: 768px) {
  .secSearch-work-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secSearch-work-list .secSearch-sec-list__item {
    font-size: 15px;
  }
  .secSearch-work-list .secSearch-sec-list__item a {
    padding-inline: 17px;
  }
  .secSearch-work-list .secSearch-sec-list__item a::after {
    right: 10px;
  }
}
@media screen and (max-width: 374px) {
  .secSearch-work-list .secSearch-sec-list__item {
    font-size: 14px;
    letter-spacing: 0;
  }
  .secSearch-work-list .secSearch-sec-list__item a::after {
    right: 8px;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  overflow-x: clip;
  padding-block: 0 240px;
  background: url(../img/bg_merit03.svg) no-repeat right calc(50% - 690px) bottom -320px;
  position: relative;
}
.secMerit::before, .secMerit::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
}
.secMerit::before {
  width: 821px;
  aspect-ratio: 821/817;
  background-image: url(../img/bg_merit01.svg);
  top: -360px;
  left: calc(50% - 1005px);
}
.secMerit::after {
  width: 152px;
  aspect-ratio: 152/211;
  background-image: url(../img/bg_merit02.svg);
  top: -130px;
  right: calc(50% - 525px);
}
.secMerit-inner {
  position: relative;
  z-index: 2;
}
.secMerit__secTit {
  margin-bottom: 60px;
}
.secMerit-set {
  width: min(100%, 920px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 30px 1fr;
  grid-template-columns: 320px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 80px 140px;
    background-position: right -250px bottom -150px;
    background-size: 388px;
  }
  .secMerit::before {
    width: 368px;
    top: -140px;
    left: -120px;
  }
  .secMerit::after {
    width: 80px;
    top: -20px;
    right: 20px;
  }
  .secMerit__secTit {
    margin-bottom: 40px;
  }
  .secMerit-set {
    width: 100%;
    display: block;
  }
  .secMerit-set__swipe {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.5;
  }
  .secMerit-set__swipe::after {
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1/1;
    background: url(../img/ico_swipe01.svg);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

/*	.secMerit-nav
------------------------------------------*/
.secMerit-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.secMerit-nav__item {
  cursor: pointer;
}
.secMerit-nav__item-en {
  display: block;
  margin-bottom: 13px;
  line-height: 1.1;
  letter-spacing: 0.13em;
}
.secMerit-nav__item-main {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secMerit-nav__item.is-active .secMerit-nav__item-main {
  background: linear-gradient(135deg, #DDBF27 0, #36B4F4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 768px) {
  .secMerit-nav {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
  .secMerit-navWrap {
    overflow: auto;
    margin: 0 calc(var(--inner-padding) * -1) 20px 0;
    padding-right: var(--inner-padding);
  }
  .secMerit-nav__item {
    width: 120px;
    padding-bottom: 10px;
    position: relative;
  }
  .secMerit-nav__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(135deg, #DDBF27 0, #36B4F4 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secMerit-nav__item-en {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .secMerit-nav__item-main {
    font-size: 12px;
  }
  .secMerit-nav__item.is-active::after {
    opacity: 1;
  }
}

/*	.secMerit-content
------------------------------------------*/
.js-merit-slider .splide__track {
  overflow: visible;
}
.js-merit-slider .splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.js-merit-slider .splide__slide {
  width: 100%;
}

.secMerit-contentWrap {
  width: min(100%, 540px);
  margin-inline: auto 0;
}
.secMerit-content__img {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 16px;
}
.secMerit-content-txtBox {
  width: calc(100% - 50px);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.secMerit-content__catch {
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.13em;
  line-height: 2.1;
  position: absolute;
  left: 0;
  bottom: calc(100% + 20px);
}
.secMerit-content__catch .bg {
  padding: 6px 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #DDBF27 0, #36B4F4 100%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secMerit-content__txt {
  width: calc(100% - 20px);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .secMerit-contentWrap {
    width: 100%;
    margin-inline: auto;
  }
  .secMerit-content__img {
    margin-bottom: 30px;
  }
  .secMerit-content-txtBox {
    width: 100%;
  }
  .secMerit-content__catch {
    width: calc(100% - 20px);
    right: 0;
    margin: auto;
    font-size: 17px;
    letter-spacing: 0;
    line-height: 2.4;
    bottom: calc(100% + 10px);
  }
  .secMerit-content__catch .bg {
    padding-inline: 8px;
  }
  .secMerit-content__txt {
    width: 100%;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  margin-bottom: 135px;
  padding-block: 50px 100px;
  background: url(../img/bg_interview01_pc.webp) repeat-y center/max(1440px, 100%) auto;
  position: relative;
}
.secInterview::before, .secInterview::after {
  content: "";
  display: block;
  width: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: max(1440px, 100%) 100%;
  mask-size: max(1440px, 100%) 100%;
  background: url(../img/bg_interview01_pc.webp) repeat-y center/max(1440px, 100%) auto;
  position: absolute;
  left: 0;
  pointer-events: none;
}
.secInterview::before {
  height: 140px;
  -webkit-mask-image: url(../img/bg_wave01.webp);
  mask-image: url(../img/bg_wave01.webp);
  bottom: calc(100% - 1px);
}
.secInterview::after {
  height: 80px;
  -webkit-mask-image: url(../img/bg_wave02.webp);
  mask-image: url(../img/bg_wave02.webp);
  top: calc(100% - 1px);
  z-index: -1;
}
.secInterview-bg {
  width: 160px;
  aspect-ratio: 160/249;
  background: url(../img/bg_interview02.svg) no-repeat center/contain;
  position: absolute;
  top: -195px;
  left: calc(50% - 560px);
  pointer-events: none;
}
.secInterview-inner {
  position: relative;
  z-index: 2;
}
.secInterview__secTit {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    margin-bottom: 0;
    padding-block: 60px 80px;
    background-image: url(../img/bg_interview01_sp.webp);
    background-size: 100% auto;
  }
  .secInterview::before, .secInterview::after {
    -webkit-mask-size: max(390px, 100%) 100%;
    mask-size: max(390px, 100%) 100%;
    background-image: url(../img/bg_interview01_sp.webp);
    background-size: 100% auto;
  }
  .secInterview::before {
    height: 40px;
  }
  .secInterview::after {
    height: 30px;
  }
  .secInterview-bg {
    width: 76px;
    top: -95px;
    left: 20px;
  }
  .secInterview__secTit {
    margin-bottom: 60px;
  }
}

/*	.secInterview-front
------------------------------------------*/
.secInterview-front {
  /* ▼▼▼ 画像フェード切り替え部分（完全版） ▼▼▼ */
  /* ▲▲▲ ここまでフェード切り替え一式 ▲▲▲ */
  /* ▼ PC hover ========================================= */
  /* ▼ SP ========================================= */
}
.secInterview-front__item a {
  display: block;
  position: relative;
}
.secInterview-front__tag {
  padding: 6px 22px;
  border-radius: 0 0 8px 0;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.secInterview-front-imgBox {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #E7FBFF), to(#FFFDE1));
  background: linear-gradient(to bottom, #E7FBFF 0, #FFFDE1 100%);
  position: relative;
  aspect-ratio: 560/320; /* ←高さ確保：テキストに被らない */
  /* 通常（off画像） */
  /* hover時にフェードで出す画像（on画像） */
}
.secInterview-front-imgBox__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease, -webkit-transform 0.3s ease, -webkit-filter 0.3s ease;
}
.secInterview-front-imgBox__img--off {
  opacity: 1;
  z-index: 1;
}
.secInterview-front-imgBox__img--on {
  opacity: 0;
  z-index: 2;
}
.secInterview-front-txtBox {
  width: calc(100% - 40px);
  margin-inline: auto;
  position: relative;
}
.secInterview-front__tit {
  color: #5DC2D0;
  font-weight: 700;
  font-size: 24px;
  line-height: 2;
  position: absolute;
  left: 0;
  bottom: calc(100% + 15px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
.secInterview-front__tit .bg {
  padding: 4px 16px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-front__prof {
  font-weight: 700;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 700;
  line-height: 1.5;
}
.secInterview-front__more-ico {
  width: 40px;
  aspect-ratio: 1/1;
  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: 50%;
  background: var(--color-navy);
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front__more-ico::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 1;
    color: var(--color-navy);
    /* ▼ 画像切り替え（ON画像フェード＋拡大） */
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox .secInterview-front-imgBox__img--on {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox .secInterview-front-imgBox__img--off {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  .secInterview-front__item a:hover .secInterview-front__tit {
    color: var(--color-navy);
  }
  .secInterview-front__item a:hover .secInterview-front__more-ico {
    background: var(--color-yellow);
  }
  .secInterview-front__item a:hover .secInterview-front__more-ico::after {
    background: var(--color-navy);
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front__tag {
    padding: 3px 12px;
    font-size: 14px;
  }
  .secInterview-front-imgBox {
    margin-bottom: 0;
    border-radius: 12px;
    z-index: -1;
  }
  .secInterview-front-txtBox {
    width: calc(100% - 20px);
    margin-top: -25px;
  }
  .secInterview-front__tit {
    margin-bottom: 12px;
    font-size: 18px;
    position: static;
  }
  .secInterview-front__tit .bg {
    padding: 3px 12px;
  }
  .secInterview-front__prof {
    font-size: 13px;
  }
  .secInterview-front__more {
    font-size: 13px;
  }
}

.js-interview-slider-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 115px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.js-interview-slider-nav .my-carousel-progress {
  background: #fff;
}
.js-interview-slider-nav .my-carousel-progress-bar {
  background: var(--color-navy);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-interview-slider-nav .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.js-interview-slider-nav .splide__arrow {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: #444;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-interview-slider-nav .splide__arrow svg {
  display: none;
}
.js-interview-slider-nav .splide__arrow::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 16/5;
  -webkit-mask-image: url(../img/ico_arrow03.svg);
  mask-image: url(../img/ico_arrow03.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-interview-slider-nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .js-interview-slider-nav .splide__arrow:hover {
    background: var(--color-yellow);
  }
  .js-interview-slider-nav .splide__arrow:hover::after {
    background: var(--color-txt);
  }
}
@media screen and (max-width: 768px) {
  .js-interview-slider-nav {
    margin-top: 30px;
  }
}

/*	.secInterview-content
------------------------------------------*/
.secInterview-content {
  width: min(100%, 800px);
  margin-inline: auto;
  padding: 40px 60px 60px;
  background: url(../img/bg_interview01_pc.webp) repeat-y center top/100% auto;
  position: relative;
}
.secInterview-content-imgBox {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #E7FBFF), to(#FFFDE1));
  background: linear-gradient(to bottom, #E7FBFF 0, #FFFDE1 100%);
  border-radius: 24px;
  position: relative;
}
.secInterview-content-imgBox img {
  display: block;
  margin-inline: auto;
}
.secInterview-content-imgBox__tag {
  padding: 6px 22px;
  border-radius: 0 0 8px 0;
  background: var(--color-yellow);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.secInterview-content-txtBox {
  margin-block: -45px 40px;
  position: relative;
  z-index: 2;
}
.secInterview-content__tit {
  margin-bottom: 5px;
  color: #5DC2D0;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  line-height: 2;
}
.secInterview-content__tit .bg {
  padding: 4px 16px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content__prof {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.secInterview-content-q__tit {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-left: 64px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  position: relative;
}
.secInterview-content-q__tit::after {
  content: "Q";
  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: 44px;
  height: 44px;
  border-radius: 50%;
  background: #444;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Grape Nuts", cursive;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 40px;
  background: #fff;
  font-size: 15px;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 40px;
}
.secInterview-content-q__txt .bold {
  font-weight: 700;
}
.secInterview-content__btn {
  width: min(100%, 340px);
  margin: 40px auto 0;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
.secInterview-content__btn a {
  min-height: 60px;
  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;
  padding: 10px 40px;
  border-radius: inherit;
  background: var(--color-yellow);
  position: relative;
}
.secInterview-content__btn a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -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;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secInterview-content__btn a:hover {
    opacity: 1;
    background: var(--color-navy);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding: 20px 20px 30px;
  }
  .secInterview-content-imgBox {
    border-radius: 12px;
  }
  .secInterview-content-imgBox__tag {
    padding: 3px 12px;
    font-size: 14px;
  }
  .secInterview-content-txtBox {
    margin-block: -20px 30px;
  }
  .secInterview-content__tit {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .secInterview-content__tit .bg {
    padding: 3px 12px;
  }
  .secInterview-content__prof {
    font-size: 13px;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .secInterview-content-q__txt {
    padding: 20px;
    font-size: 14px;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 30px;
  }
  .secInterview-content__btn {
    font-size: 18px;
  }
  .secInterview-content__btn a {
    padding-inline: 30px;
  }
  .secInterview-content__btn a::after {
    right: 20px;
  }
}

/*	js - magnific_popup
------------------------------------------*/
body .mfp-bg {
  z-index: 9993;
  opacity: 0.5;
  background: #000;
}
body .mfp-wrap {
  z-index: 9994;
}
body .mfp-container {
  padding: 0;
}
body .mfp-content {
  position: static;
  padding: 40px 15px;
}
@media screen and (max-width: 768px) {
  body .mfp-content {
    padding: 15px;
  }
}

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #444;
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 5px !important;
    right: 5px;
  }
}
.mfp-close.modalClose02 {
  position: static;
  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: min(100%, 180px);
  height: 44px;
  margin: 20px auto 0;
  padding: 0;
  border-bottom: 1px solid #333;
  color: #444 !important;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Grape Nuts", cursive;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: #fff;
  }
}

/*------------------------------------------
	.secLocation
------------------------------------------*/
.secLocation {
  overflow-x: clip;
  padding-block: 0 120px;
  position: relative;
}
.secLocation::before, .secLocation::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.secLocation::before {
  width: 870px;
  aspect-ratio: 870/668;
  background: url(../img/bg_location02.svg) no-repeat center/contain;
  top: -205px;
  left: calc(50% - 1090px);
}
.secLocation::after {
  width: 100%;
  height: 710px;
  background: url(../img/bg_location03.webp) no-repeat center top/cover;
  left: 0;
  bottom: -380px;
  z-index: -1;
}
.secLocation-inner {
  position: relative;
  z-index: 2;
}
.secLocation__secTit {
  margin-bottom: 90px;
}
.secLocation-mapBox {
  width: 100%;
  height: 400px;
  margin-bottom: 45px;
  position: relative;
}
.secLocation-mapBox::after {
  content: "";
  display: block;
  width: 206px;
  aspect-ratio: 206/259;
  background: url(../img/bg_location01.svg) no-repeat center/contain;
  position: absolute;
  right: calc(50% - 490px);
  bottom: 100%;
  z-index: -1;
  pointer-events: none;
}
.secLocation-mapBox iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.secLocation__logo {
  width: 192px;
  margin: 0 auto 25px;
}
.secLocation__logo img {
  width: 100%;
}
.secLocation-data {
  width: min(100%, 1080px);
  margin-inline: auto;
}
.secLocation-data th, .secLocation-data td {
  padding-block: 24px;
  font-size: 15px;
  text-align: left;
  vertical-align: top;
  letter-spacing: 0.05em;
}
.secLocation-data th {
  border-bottom: 1px solid var(--color-navy);
  width: 120px;
  font-weight: 700;
}
.secLocation-data th .bg {
  background: linear-gradient(135deg, #DDBF27 0, #36B4F4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.secLocation-data td {
  padding-inline: 15px;
  border-bottom: 1px solid #E7E7E7;
  font-weight: 500;
}
.secLocation-data-box {
  width: min(50% - 25px, 340px);
}
.secLocation-data-boxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
.secLocation-data-box__tit {
  margin-bottom: 8px;
  color: #5DC2D0;
  font-weight: 700;
  font-size: 18px;
}
.secLocation-data-box__txt-tit {
  display: block;
  font-weight: 700;
}
.secLocation-data-box__txt + .secLocation-data-box__txt {
  margin-top: 16px;
}
.secLocation-access {
  margin-block: 40px 0;
}
.secLocation-accessWrap {
  margin-top: 40px;
}
.secLocation-accessWrap:first-child {
  margin-top: 0;
}
.secLocation-access-box {
  padding: 30px 30px 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.secLocation-access-box:has(> .secLocation-access-boxWrap:nth-child(1):last-child) {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.secLocation-access__tit {
  background: var(--color-navy);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  padding: 8px 0 8px 20px;
  border-radius: 4px;
}
.secLocation-access-txtBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.secLocation-access-txtBox__tit {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
}
.secLocation-access-txtBox__txt {
  background: var(--color-yellow);
  padding: 4px 10px;
  border-radius: 2px;
}
.secLocation-access-imgBox {
  margin-top: 20px;
  margin-bottom: 10px;
}
.secLocation-access__window {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--color-navy);
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secLocation-access__windowWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secLocation-access__window a {
  position: absolute;
  inset: 0;
}
.secLocation-access__window:hover {
  opacity: 0.6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secLocation-access__window::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("../img/ico_window.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .secLocation {
    padding-block: 80px 120px;
  }
  .secLocation::before {
    width: 400px;
    left: -210px;
    top: -20px;
  }
  .secLocation::after {
    height: 230px;
    bottom: -120px;
  }
  .secLocation__secTit {
    margin-bottom: 40px;
  }
  .secLocation-mapBox {
    margin-bottom: 60px;
  }
  .secLocation-mapBox::after {
    width: 90px;
    right: 0;
  }
  .secLocation__logo {
    margin-bottom: 30px;
  }
  .secLocation-data {
    width: 100%;
  }
  .secLocation-data th, .secLocation-data td {
    display: block;
    width: 100%;
    padding-block: 15px;
  }
  .secLocation-data td {
    padding-inline: 0;
    font-size: 14px;
  }
  .secLocation-data-box {
    width: 100%;
  }
  .secLocation-data-boxWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .secLocation-data-box__tit {
    margin-bottom: 3px;
    font-size: 16px;
  }
  .secLocation-access {
    margin-block: 30px 0;
  }
  .secLocation-accessWrap {
    margin-top: 40px;
  }
  .secLocation-accessWrap:first-child {
    margin-top: 0;
  }
  .secLocation-access-box {
    padding: 30px 8px 16px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .secLocation-access-box:has(> .secLocation-access-boxWrap:nth-child(1):last-child) {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secLocation-access__tit {
    background: var(--color-navy);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    padding: 8px 0 8px 20px;
    border-radius: 4px;
  }
  .secLocation-access-txtBox {
    -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: flex-start;
    gap: 4px;
  }
  .secLocation-access-txtBox__tit {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
  }
  .secLocation-access-txtBox__txt {
    background: var(--color-yellow);
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 13px;
  }
  .secLocation-access-imgBox {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .secLocation-access__window {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-navy);
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secLocation-access__windowWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secLocation-access__window a {
    position: absolute;
    inset: 0;
  }
  .secLocation-access__window:hover {
    opacity: 0.6;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secLocation-access__window::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url("../img/ico_window.svg") no-repeat center/contain;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  height: 500px;
  background: url(../img/bg_entry01_pc.webp) no-repeat center top/max(1440px, 100%) 100%;
}
.secEntry-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 140px;
}
.secEntry__btn {
  width: min(100%, 480px);
  height: 140px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.secEntry__btn a {
  height: 100%;
  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;
  padding-bottom: 7px;
  border-radius: inherit;
  border: 4px solid #fff;
  background: var(--color-yellow);
}
.secEntry__btn-en {
  color: var(--color-navy);
  font-size: 74px;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    border-color: var(--color-navy);
    background: #fff;
    color: var(--color-navy);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    height: 260px;
    background-image: url(../img/bg_entry01_sp.webp);
    background-size: max(100%, 390px) 100%;
  }
  .secEntry-inner {
    padding-bottom: 60px;
  }
  .secEntry__btn {
    width: min(100%, 280px);
    height: 100px;
    font-size: 14px;
  }
  .secEntry__btn a {
    gap: 2px;
    padding-bottom: 0;
    border-width: 2px;
  }
  .secEntry__btn-en {
    font-size: 34px;
  }
}
/*# sourceMappingURL=style.css.map */