@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: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #333;
  --color-yellow: #EDF065;
  --color-sky: #BEE7FA;
  --color-blue: #0068B6;
}
@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;
  font-weight: 700;
  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.5;
}

.f-outfit {
  font-family: "Outfit", 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 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.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, 60px);
          transform: translate(0, 60px);
}
.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, 30px);
            transform: translate(0, 30px);
  }
}
.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 {
  width: 150px;
  aspect-ratio: 150/143;
  border-radius: 0 0 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9990;
}
.l-header__logo 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;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}
.l-header__logo img {
  display: block;
}
.l-header__entry {
  width: 190px;
  border-radius: 100px;
  font-weight: 900;
  font-size: 22px;
  text-align: center;
  line-height: 1.5;
  position: fixed;
  top: 30px;
  right: 132px;
  z-index: 9992;
}
.l-header__entry a {
  height: 54px;
  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-yellow);
  border-radius: inherit;
}
@media screen and (min-width: 769px) {
  .l-header__logo a:hover {
    opacity: 1;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: var(--color-blue);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 90px;
    border-radius: 0 0 10px 0;
    position: absolute;
  }
  .l-header__logo img {
    width: 54px;
  }
  .l-header__entry {
    width: 100px;
    font-size: 15px;
    top: 15px;
    right: 80px;
  }
  .l-header__entry a {
    height: 50px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  overflow-x: clip;
  padding: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 243px, #EDF065 243px);
  position: relative;
}
.l-footer::before, .l-footer::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
}
.l-footer::before {
  width: 383px;
  aspect-ratio: 766/596;
  background: url(../img/bg_footer01.webp) no-repeat center/contain;
  top: 65px;
  right: calc(50% - 580px);
  z-index: 1;
}
.l-footer::after {
  width: 100%;
  height: 244px;
  -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(100%, 1440px) 100%;
  mask-size: max(100%, 1440px) 100%;
  background: #EDF065;
  left: 0;
  top: 0;
}
.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: 125px 10px 95px;
  position: relative;
  z-index: 2;
}
.l-footer__logo {
  margin: 0 auto 55px 0;
}
.l-footer__logo img {
  display: block;
  margin: 0;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 0 0;
  padding: 0;
  gap: 20px;
}
.l-footer-nav + .l-footer-nav {
  margin-top: 20px;
}
.l-footer-nav__item {
  list-style: none;
  color: #333;
  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: 50px auto 0 0;
  color: #333 !important;
  font-weight: 500;
  font-size: 11px;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 89px, #EDF065 89px);
  }
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer::before {
    width: 160px;
    top: 20px;
    right: 10px;
  }
  .l-footer::after {
    height: 90px;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .l-footer-inner {
    padding: 110px 25px 30px;
  }
  .l-footer__logo {
    width: 90px;
    margin-bottom: 60px;
  }
  .l-footer-nav {
    display: block;
  }
  .l-footer-nav + .l-footer-nav {
    margin-top: 0;
  }
  .l-footer-nav__item {
    font-size: 13px;
    text-align: left;
  }
  .l-footer-nav__item a {
    padding: 8px 0;
  }
  .l-footer-copyright {
    margin-top: 40px;
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  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: #BEE7FA;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #666 !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
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: 80px;
  height: 80px;
  position: fixed;
  z-index: 9992;
  top: 15px;
  right: 15px;
  background: #333;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn:hover {
  opacity: 0.7;
}
.gnavBtn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 32px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span:nth-of-type(1) {
  top: 30px;
}
.gnavBtn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.gnavBtn span:nth-of-type(3) {
  bottom: 30px;
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-225deg);
          transform: translateY(8px) 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);
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    width: 60px;
    height: 60px;
    top: 10px;
    right: 10px;
  }
  .gnavBtn span {
    width: 26px;
    height: 2px;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 21px;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 21px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-225deg);
            transform: translateY(8px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(225deg);
            transform: translateY(-8px) rotate(225deg);
  }
}

.l-nav {
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  position: fixed;
  z-index: 9991;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-nav.is-open {
  right: 0;
}
.l-nav.is-open .l-nav-overlay {
  left: 0;
  width: 100%;
}
.l-nav-inner {
  width: 100%;
  height: 100%;
  padding: 130px 50px 100px;
  background: #fff;
  position: relative;
  z-index: 2;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav-inner::-webkit-scrollbar {
  display: none;
}
.l-nav-list__item {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.l-nav-list__item a {
  display: block;
  padding: 10px 20px 10px 0;
  position: relative;
}
.l-nav-list__item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.l-nav-list__item-en {
  display: block;
  margin-bottom: 5px;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
}
.l-nav-overlay {
  cursor: pointer;
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .l-nav-list__item a:hover {
    opacity: 1;
    color: #0068B6;
  }
  .l-nav-list__item a:hover::after {
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav-inner {
    padding: 100px 20px;
  }
  .l-nav-list__item {
    margin-bottom: 15px;
    font-size: 14px;
  }
  .l-nav-list__item a::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
  }
  .l-nav-list__item-en {
    font-size: 20px;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv-txtBox {
  width: calc(100% - 160px);
  position: absolute;
  right: 0;
  left: 0;
  bottom: max(115px, 11.6vw);
  margin: auto;
  z-index: 2;
}
.l-mv__txt01 {
  width: 60.5%;
  margin-left: -3px;
}
.l-mv__txt02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: max(30px, 2.9vw);
  padding: max(7px, 0.65vw);
  border-radius: 10px;
  background: var(--color-yellow);
  font-weight: 900;
  font-size: max(17px, 1.65vw);
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .l-mv-txtBox {
    width: 100%;
    bottom: 20vw;
  }
  .l-mv__txt01 {
    width: 69.3%;
    margin-inline: auto;
  }
  .l-mv__txt02 {
    margin: 5vw auto 0;
    padding: 2.2vw;
    border-radius: 6px;
    font-size: 3.6vw;
  }
}

/*============================================================================================================
	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;
  gap: 17px;
  font-size: 18px;
  text-align: center;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-weight: 900;
  font-size: 90px;
  line-height: 0.95;
  font-family: "Outfit", sans-serif;
}
.c-tit01.is-left {
  text-align: left;
}
.c-tit01.is-right {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 14px;
    font-size: 15px;
  }
  .c-tit01__en {
    font-size: 50px;
  }
}
@media screen and (max-width: 374px) {
  .c-tit01__en {
    font-size: 44px;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  padding-block: 280px 145px;
  background: var(--color-sky);
  position: relative;
}
.secUs::after {
  content: "";
  display: block;
  width: 100%;
  height: 490px;
  background: url(../img/bg_us01_pc.webp) no-repeat center bottom/max(1440px, 100%) 100%;
  position: absolute;
  left: 0;
  top: -70px;
  pointer-events: none;
}
.secUs-inner {
  position: relative;
  z-index: 2;
}
.secUs__secTit {
  margin-bottom: 80px;
}
.secUs-box {
  width: min(100%, 980px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 30px;
}
.secUs__txt {
  font-size: 18px;
  line-height: 2.8;
}
.secUs__logo {
  width: 300px;
  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: #fff;
}
.secUs__logo img {
  width: 170px;
}
@media screen and (min-width: 769px) {
  .secUs {
    scroll-margin-top: -280px;
  }
}
@media screen and (max-width: 768px) {
  .secUs {
    padding-block: 80px 0;
  }
  .secUs::after {
    height: 196px;
    background: url(../img/bg_us01_sp.webp) repeat-x center bottom/auto 100%;
    top: -40px;
  }
  .secUs__secTit {
    margin-bottom: 60px;
  }
  .secUs-box {
    -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: 20px;
  }
  .secUs__txt {
    width: 100%;
    font-size: 16px;
    line-height: 2.35;
    text-align: center;
  }
  .secUs__logo {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 200px;
  }
  .secUs__logo img {
    width: 115px;
  }
}

/*------------------------------------------
	.secBrand
------------------------------------------*/
.secBrand {
  overflow-x: clip;
  margin-bottom: 120px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 253px, var(--color-sky) 253px);
  position: relative;
}
.secBrand::after {
  content: "";
  display: block;
  width: 100%;
  height: 244px;
  -webkit-mask-image: url(../img/bg_wave02.webp);
  mask-image: url(../img/bg_wave02.webp);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: max(100%, 1440px) 100%;
  mask-size: max(100%, 1440px) 100%;
  background: var(--color-sky);
  position: absolute;
  left: 0;
  bottom: 10px;
  pointer-events: none;
}
.secBrand-inner {
  position: relative;
  z-index: 2;
}
.secBrand__secTit {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.secBrand-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secBrand-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 4;
  grid-row: span 4;
  grid-gap: 0;
  padding: 48px 30px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #333;
  position: relative;
}
.secBrand-list__item::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
}
.secBrand-list__item:nth-of-type(1)::after {
  width: 356px;
  aspect-ratio: 712/510;
  background-image: url(../img/bg_brand01.webp);
  top: -187px;
  left: -140px;
}
.secBrand-list__item:nth-of-type(2)::after {
  width: 361px;
  aspect-ratio: 722/366;
  background-image: url(../img/bg_brand02.webp);
  right: -140px;
  bottom: -61px;
}
.secBrand-list__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 45px;
  position: relative;
  z-index: 2;
}
.secBrand-list__tit {
  margin-bottom: 20px;
  font-size: 26px;
  text-align: center;
}
.secBrand-list__txt {
  font-size: 18px;
  line-height: 2;
}
.secBrand-list__btn {
  width: min(100%, 240px);
  margin: 40px auto 0;
  border-radius: 80px 80px 0 80px;
  text-align: center;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.secBrand-list__btn a {
  height: 54px;
  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-inline: 35px;
  border-radius: inherit;
  border: 1px solid #333;
  background: var(--color-yellow);
  position: relative;
}
.secBrand-list__btn a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secBrand-list__btn a:hover {
    opacity: 1;
    background: var(--color-blue);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secBrand {
    margin-bottom: 0;
    padding-block: 80px 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 99px, var(--color-sky) 99px);
  }
  .secBrand::after {
    height: 90px;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .secBrand__secTit {
    margin-bottom: 110px;
  }
  .secBrand-list {
    width: min(100%, 330px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secBrand-list__item {
    display: block;
    padding: 40px 20px;
  }
  .secBrand-list__item:nth-of-type(1)::after {
    width: 165px;
    top: -80px;
    left: -30px;
  }
  .secBrand-list__item:nth-of-type(2)::after {
    width: 167px;
    right: -30px;
    bottom: -55px;
  }
  .secBrand-list__logo {
    height: 150px;
    margin-bottom: 35px;
  }
  .secBrand-list__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .secBrand-list__tit {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .secBrand-list__txt {
    width: calc(100% - 20px);
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.85;
  }
  .secBrand-list__btn {
    margin-top: 20px;
    font-size: 16px;
  }
}

/*------------------------------------------
	.secWorkflow
------------------------------------------*/
.secWorkflow {
  padding-block: 0 110px;
}
.secWorkflow__secTit {
  margin-bottom: 60px;
}
.secWorkflow__lead {
  margin-bottom: 110px;
  line-height: 2;
  text-align: center;
}
.secWorkflow-list {
  counter-reset: number;
  display: -ms-grid;
  display: grid;
}
.secWorkflow-list__item {
  text-align: center;
  position: relative;
}
.secWorkflow-list__item::after {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  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: 120px;
  aspect-ratio: 240/260;
  padding-top: 5px;
  background: no-repeat center/contain;
  color: #fff;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: -70px;
  right: 0;
  left: 0;
  margin: auto;
}
.secWorkflow-list__item:nth-of-type(1)::after {
  background-image: url(../img/bg_workflow01.webp);
}
.secWorkflow-list__item:nth-of-type(2)::after {
  background-image: url(../img/bg_workflow02.webp);
}
.secWorkflow-list__item:nth-of-type(3)::after {
  background-image: url(../img/bg_workflow03.webp);
}
.secWorkflow-list__item:nth-of-type(4)::after {
  background-image: url(../img/bg_workflow04.webp);
}
.secWorkflow-list__item:nth-of-type(5)::after {
  background-image: url(../img/bg_workflow05.webp);
}
.secWorkflow-list__img {
  width: 100%;
  margin-bottom: 30px;
}
.secWorkflow-list__tit {
  margin-bottom: 24px;
  font-size: 22px;
}
@media screen and (min-width: 769px) {
  .secWorkflow-list {
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 94px 30px;
  }
  .secWorkflow-list__item {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .secWorkflow-list__item:nth-of-type(4) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2/4;
  }
}
@media screen and (max-width: 768px) {
  .secWorkflow {
    margin-bottom: 40px;
    padding-block: 80px;
  }
  .secWorkflow__secTit {
    margin-bottom: 45px;
  }
  .secWorkflow__lead {
    margin-bottom: 95px;
  }
  .secWorkflow-list {
    width: min(100%, 340px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 110px;
  }
  .secWorkflow-list__txt {
    font-size: 16px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  overflow-x: clip;
  padding-block: 155px 90px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 243px, #F7FA64 243px);
  position: relative;
}
.secInterview::after {
  content: "";
  display: block;
  width: 100%;
  height: 244px;
  -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(100%, 1440px) 100%;
  mask-size: max(100%, 1440px) 100%;
  background: #F7FA64;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.secInterview-inner {
  position: relative;
  z-index: 2;
}
.secInterview__secTit {
  margin-bottom: 75px;
}
.secInterview__bg {
  width: 378px;
  aspect-ratio: 756/882;
  background: url(../img/bg_interview01.webp) no-repeat center/contain;
  position: absolute;
  top: -88px;
  right: calc(50% - 600px);
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .secInterview {
    scroll-margin-top: -155px;
  }
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 80px 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 89px, #F7FA64 89px);
  }
  .secInterview::after {
    height: 90px;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .secInterview-inner {
    padding-inline: 0;
  }
  .secInterview__secTit {
    width: calc(100% - var(--inner-padding) * 2);
    margin: 0 auto 55px;
  }
  .secInterview__bg {
    width: 156px;
    right: 25px;
    top: -78px;
  }
}

/*	.secInterview-front
------------------------------------------*/
.secInterview-front__item {
  border-radius: 24px;
  border: 1px solid #333;
  overflow: hidden;
}
.secInterview-front__item a {
  display: block;
  height: 100%;
  background: #fff;
}
.secInterview-front-imgBox {
  overflow: hidden;
  border-bottom: 1px solid #333;
}
.secInterview-front-imgBox img {
  width: 100%;
}
.secInterview-front-txtBox {
  padding: 20px 10px 25px;
  text-align: center;
}
.secInterview-front__at {
  margin-bottom: 10px;
  line-height: 1.5;
}
.secInterview-front__prof {
  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;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}
.secInterview-front__prof-tag {
  height: 24px;
  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-inline: 10px;
  border-radius: 100px;
  background: #F7FA64;
  font-size: 14px;
  line-height: 1.3;
}
.secInterview-front__more {
  width: min(100%, 200px);
  height: 54px;
  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;
  margin-inline: auto;
  padding-inline: 35px;
  border: 1px solid #333;
  border-radius: 80px 80px 0 80px;
  background: var(--color-yellow);
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  position: relative;
}
.secInterview-front__more::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .secInterview-front__item a:hover .secInterview-front__more {
    background: var(--color-blue);
    color: #fff;
  }
  .secInterview-front-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .secInterview-front__more {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front__at, .secInterview-front__prof, .secInterview-front__more {
    font-size: 16px;
  }
}

/* slider */
@media screen and (min-width: 769px) {
  .js-interview-slider .splide__list {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 27px 1fr 27px 1fr 27px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 27px;
  }
}
@media screen and (max-width: 768px) {
  .js-interview-slider-nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 30px;
    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;
    margin: 10px auto 0;
    padding-inline: 40px;
    position: relative;
  }
  .js-interview-slider .splide__arrow {
    cursor: pointer;
    width: 30px;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    color: #333;
    position: absolute;
    top: 0;
  }
  .js-interview-slider .splide__arrow svg {
    display: none;
  }
  .js-interview-slider .splide__arrow::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 8px);
    margin: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .js-interview-slider .splide__arrow.splide__arrow--prev {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
    left: 0;
  }
  .js-interview-slider .splide__arrow.splide__arrow--next {
    right: 0;
  }
  .js-interview-slider .splide__arrow:hover {
    color: var(--color-blue);
  }
  .js-interview-slider .splide__pagination {
    gap: 8px;
  }
  .js-interview-slider .splide__pagination li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
  .js-interview-slider .splide__pagination li button {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    background: #fff;
    border-radius: inherit;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .js-interview-slider .splide__pagination li button:hover, .js-interview-slider .splide__pagination li button.is-active {
    background: #CFD244;
  }
}

/*	.secInterview-content
------------------------------------------*/
.secInterview-content {
  overflow: hidden;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 0 0 60px;
  background: var(--color-sky);
  border-radius: 24px;
  border: 1px solid #333;
  position: relative;
}
.secInterview-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  padding-right: 50px;
}
.secInterview-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding-top: 20px;
}
.secInterview-content-top__at {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.5;
}
.secInterview-content-top-profBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.secInterview-content-top__tag {
  height: 27px;
  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-inline: 10px;
  border-radius: 100px;
  background: #F7FA64;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}
.secInterview-content-top__name {
  font-weight: 500;
  font-size: 16px;
}
.secInterview-content-top__name .big {
  font-weight: 700;
  font-size: 22px;
}
.secInterview-content-top__catch01 {
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.secInterview-content-top__catch02 {
  font-size: 19px;
  line-height: 2;
  letter-spacing: 0.1em;
}
.secInterview-content-top__catch02 .bg {
  padding: 3px 12px;
  border-radius: 4px;
  background: #fff;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: min(60.6%, 550px);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 24px 0;
  border: 1px solid #333;
  border-top: none;
  border-left: none;
}
.secInterview-content-q {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
}
.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-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: #F7FA64;
  font-weight: 700;
  font-size: 22px;
  font-family: "Outfit", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 40px;
}
.secInterview-content__entry {
  width: min(100%, 240px);
  margin: 40px auto 0;
  border-radius: 80px 80px 0 80px;
  text-align: center;
  line-height: 1.5;
}
.secInterview-content__entry a {
  height: 54px;
  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-inline: 35px;
  border-radius: inherit;
  border: 1px solid #333;
  background: var(--color-yellow);
  position: relative;
}
.secInterview-content__entry a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secInterview-content__entry a:hover {
    opacity: 1;
    background: var(--color-blue);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding: 0 20px 30px;
  }
  .secInterview-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    padding: 0;
  }
  .secInterview-content-top-txtBox {
    width: 100%;
    padding-top: 0;
  }
  .secInterview-content-top__at {
    font-size: 20px;
    text-align: center;
  }
  .secInterview-content-top-profBox {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px;
  }
  .secInterview-content-top__tag {
    height: 24px;
    font-size: 13px;
  }
  .secInterview-content-top__name {
    font-size: 13px;
  }
  .secInterview-content-top__name .big {
    font-size: 18px;
  }
  .secInterview-content-top__catch01 {
    margin-bottom: 5px;
    text-align: center;
    letter-spacing: 0;
  }
  .secInterview-content-top__catch02 {
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
  }
  .secInterview-content-top__img {
    width: calc(100% + 40px);
    max-width: none;
    margin-inline: -20px;
    -o-object-fit: fill;
       object-fit: fill;
    border-radius: 0;
    border-right: none;
  }
  .secInterview-content-q {
    width: 100%;
  }
  .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: 18px;
  }
  .secInterview-content-q__txt {
    padding: 15px 20px;
    font-size: 13px;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 30px;
  }
  .secInterview-content__entry {
    margin-top: 30px;
    font-size: 16px;
  }
}

/* modal */
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: 20px !important;
  right: 20px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #000;
  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: 10px !important;
    right: 10px;
  }
}
.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%, 240px);
  height: 54px;
  margin: 16px auto 0;
  padding: 0;
  border: 1px solid #333;
  border-radius: 100px;
  color: #333 !important;
  font-size: 16px;
  font-family: inherit;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-blue);
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secBenefits
------------------------------------------*/
.secBenefits {
  margin-bottom: 120px;
  padding-block: 150px 0;
  background: linear-gradient(to bottom, #F7FA64 243px, #ACE7E0 243px);
  position: relative;
}
.secBenefits::after {
  content: "";
  display: block;
  width: 100%;
  height: 244px;
  -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(100%, 1440px) 100%;
  mask-size: max(100%, 1440px) 100%;
  background: #ACE7E0;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.secBenefits-inner {
  position: relative;
  z-index: 2;
}
.secBenefits__secTit {
  margin-bottom: 90px;
}
.secBenefits__bg {
  width: 387px;
  aspect-ratio: 774/756;
  background: url(../img/bg_benefits01.webp) no-repeat center/contain;
  position: absolute;
  top: 60px;
  left: calc(50% - 580px);
  z-index: 1;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .secBenefits {
    scroll-margin-top: -150px;
  }
}
@media screen and (max-width: 768px) {
  .secBenefits {
    margin-bottom: 0;
    padding-block: 70px 0;
    background: linear-gradient(to bottom, #F7FA64 89px, #ACE7E0 89px);
  }
  .secBenefits::after {
    height: 90px;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .secBenefits__secTit {
    margin-bottom: 165px;
  }
  .secBenefits__bg {
    width: 175px;
    top: 175px;
    left: 5px;
  }
}

/*	.secBenefits-member
------------------------------------------*/
.secBenefits-member {
  margin-bottom: 80px;
}
.secBenefits-member__tit {
  margin-bottom: 35px;
  font-size: 28px;
  text-align: center;
}
.secBenefits-member-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secBenefits-member-list__item {
  padding: 50px 20px 40px;
  border-radius: 24px;
  background: #fff;
  text-align: center;
}
.secBenefits-member-list__tit {
  margin-bottom: 10px;
  font-size: 28px;
}
.secBenefits-member-list__txt {
  margin-bottom: 30px;
  font-weight: 500;
}
.secBenefits-member-list img {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .secBenefits-member {
    margin-bottom: 50px;
  }
  .secBenefits-member__tit {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .secBenefits-member-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .secBenefits-member-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secBenefits-member-list__item {
    width: 280px;
    padding: 25px 15px 20px;
  }
  .secBenefits-member-list__tit {
    font-size: 20px;
  }
  .secBenefits-member-list__txt {
    margin-bottom: 20px;
    font-size: 13px;
  }
  .secBenefits-member-list img {
    width: 80%;
  }
  .secBenefits-member-list img.is-custom {
    width: 100%;
  }
}

/*	.secBenefits-data
------------------------------------------*/
.secBenefits-data {
  padding-block: 230px 140px;
  background: url(../img/bg_benefits02.webp) no-repeat center/cover;
  position: relative;
}
.secBenefits-data::before, .secBenefits-data::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(100%, 1440px) 100%;
  mask-size: max(100%, 1440px) 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
}
.secBenefits-data::before {
  height: 140px;
  -webkit-mask-image: url(../img/bg_wave03.webp);
  mask-image: url(../img/bg_wave03.webp);
  background: #ACE7E0;
  top: 0;
}
.secBenefits-data::after {
  height: 74px;
  -webkit-mask-image: url(../img/bg_wave04.webp);
  mask-image: url(../img/bg_wave04.webp);
  background: #fff;
  bottom: 0;
}
.secBenefits-data-inner {
  position: relative;
  z-index: 2;
}
.secBenefits-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
}
.secBenefits-data-list__item {
  min-height: 310px;
  padding: 20px 20px;
  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.8);
  border-radius: 50%;
  text-align: center;
}
.secBenefits-data-list__item:nth-of-type(even) {
  border-radius: 24px;
}
.secBenefits-data-list__item-in {
  width: 100%;
}
.secBenefits-data-list__tit {
  margin-bottom: 20px;
  font-size: 24px;
}
.secBenefits-data-list__txt .medium {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .secBenefits-data {
    padding-block: 120px 80px;
  }
  .secBenefits-data::before, .secBenefits-data::after {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .secBenefits-data::before {
    height: 60px;
  }
  .secBenefits-data::after {
    height: 40px;
  }
  .secBenefits-data-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .secBenefits-data-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secBenefits-data-list__item {
    width: 280px;
    min-height: 280px;
  }
  .secBenefits-data-list__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secBenefits-data-list__txt {
    font-size: 13px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 0 70px;
  position: relative;
}
.secSearch__secTit {
  margin-bottom: 100px;
}
.secSearch__bg01, .secSearch__bg02 {
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secSearch__bg01 {
  width: 146px;
  aspect-ratio: 292/338;
  background-image: url(../img/bg_search01.webp);
  top: -9px;
  left: calc(50% - 445px);
}
.secSearch__bg02 {
  width: 151px;
  aspect-ratio: 303/345;
  background-image: url(../img/bg_search02.webp);
  top: -50px;
  right: calc(50% - 450px);
}
.secSearch-sec + .secSearch-sec {
  margin-top: 90px;
}
.secSearch-sec__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  margin-bottom: 35px;
  font-size: 28px;
  text-align: center;
}
.secSearch-sec__tit-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: #EA6F57;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 80px;
  }
  .secSearch__secTit {
    margin-bottom: 60px;
  }
  .secSearch__bg01 {
    width: 75px;
    top: 128px;
    left: 8px;
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  .secSearch__bg02 {
    width: 80px;
    top: 77px;
    right: 10px;
  }
  .secSearch-sec + .secSearch-sec {
    margin-top: 80px;
  }
  .secSearch-sec__tit {
    margin-bottom: 30px;
    font-size: 26px;
  }
  .secSearch-sec__tit-en {
    font-size: 18px;
  }
}

/*	.secSearch-shop
------------------------------------------*/
.secSearch-shop-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secSearch-shop-list__item a {
  display: block;
}
.secSearch-shop-list-imgBox {
  overflow: hidden;
  margin-bottom: 20px;
}
.secSearch-shop-list-imgBox img {
  width: 100%;
}
.secSearch-shop-list__name {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.5;
  text-align: center;
}
.secSearch-shop-list__btn {
  width: min(100%, 240px);
  height: 54px;
  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;
  margin-inline: auto;
  padding-inline: 35px;
  background: var(--color-yellow);
  border-radius: 80px 80px 0 80px;
  border: 1px solid #333;
  text-align: center;
  line-height: 1.5;
  position: relative;
}
.secSearch-shop-list__btn::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secSearch-shop-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
  .secSearch-shop-list__item a:hover .secSearch-shop-list-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .secSearch-shop-list__item a:hover .secSearch-shop-list__btn {
    background: var(--color-blue);
    color: #fff;
  }
  .secSearch-shop-list-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .secSearch-shop-list__btn {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-shop-list {
    width: min(100%, 300px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .secSearch-shop-list-imgBox {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .secSearch-shop-list__name {
    font-size: 20px;
  }
  .secSearch-shop-list__btn {
    font-size: 16px;
  }
}

/*	.secSearch-employee
------------------------------------------*/
.secSearch-employee-list {
  width: min(100%, 900px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.secSearch-employee-list__item {
  border-radius: 80px 80px 0 80px;
  text-align: center;
  line-height: 1.5;
}
.secSearch-employee-list__item a {
  height: 54px;
  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-inline: 35px;
  border-radius: inherit;
  border: 1px solid #333;
  background: var(--color-yellow);
  position: relative;
}
.secSearch-employee-list__item a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secSearch-employee-list__item a:hover {
    opacity: 1;
    background: var(--color-blue);
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-employee-list {
    grid-gap: 15px;
  }
  .secSearch-employee-list__item {
    font-size: 16px;
  }
  .secSearch-employee-list__item a {
    padding-inline: 22px;
  }
  .secSearch-employee-list__item a::after {
    right: 10px;
  }
}

/*	.secSearch-brand
------------------------------------------*/
.secSearch-brand-list {
  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;
  gap: 80px;
}
.secSearch-brand-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 230px;
  aspect-ratio: 1/1;
}
.secSearch-brand-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;
  width: 100%;
  height: 100%;
}
.secSearch-brand-list__item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .secSearch-brand-list {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    gap: 25px;
  }
  .secSearch-brand-list__item {
    max-width: 150px;
  }
}
/*# sourceMappingURL=style.css.map */