@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: #000;
  --color-red: #fa8c78;
  --color-purple: #c684c6;
  --color-green: #41c3a8;
  --color-blue: #50b4fa;
  --color-yellow: #fad23c;
  --color-aeon: #98368c;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  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-marcellus {
  font-weight: 400;
  font-family: "Marcellus", serif;
  letter-spacing: 0;
}

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

body {
  background: #fff;
}
@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%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 120px;
  margin: auto;
  width: 225px;
  height: 93px;
  z-index: 9992;
}
.l-header-entry__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 20px 0 0 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 15px;
}
.l-header-entry__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #eb644b;
}
.l-header-entry__item-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
  font-family: "Rammetto One", sans-serif;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 40px 5px;
    background: #fff;
  }
  .l-header-entry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .l-header-entry__item {
    width: 100%;
    margin: 0 0 0 auto;
  }
  .l-header-entry__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 10px 80px;
  }
  .l-header__logo {
    gap: 5px;
  }
  .l-header__logo img {
    width: 150px;
  }
  .l-header__logo-txt {
    font-size: 12px;
  }
  .l-header-entry {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 60px;
    gap: 5px;
  }
  .l-header-entry__item {
    border-radius: 6px 6px 0 0;
    font-size: 14px;
  }
  .l-header-entry__item a {
    width: 100%;
  }
  .l-header-entry__item-en {
    font-size: 16px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-aeon);
  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: 45px 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 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 25px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-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 100px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 80px;
  height: 80px;
  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: var(--color-red);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(10px + var(--cv-height));
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

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

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 30px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
  }
  .l-nav-list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .l-nav-list__item a:hover {
    opacity: 0.7;
  }
  .l-nav-list__item-en {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    color: #efecdd;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 0;
    font-family: "Rammetto One", sans-serif;
  }
  .l-nav-list__item-en.is-red {
    color: var(--color-red);
  }
  .l-nav-list__item-en.is-purple {
    color: var(--color-purple);
  }
  .l-nav-list__item-en.is-green {
    color: var(--color-green);
  }
  .l-nav-list__item-en.is-blue {
    color: var(--color-blue);
  }
  .l-nav-list__item-en.is-yellow {
    color: var(--color-yellow);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9992;
    background: #eb644b;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px calc(var(--cv-height) + 50px);
    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 {
    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: 40px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
  }
  .l-nav-list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .l-nav-list__item a:hover {
    opacity: 0.7;
  }
  .l-nav-list__item-en {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    color: #efecdd;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 0;
    font-family: "Rammetto One", sans-serif;
  }
  .l-nav-list__item-en.is-red {
    color: var(--color-red);
  }
  .l-nav-list__item-en.is-purple {
    color: var(--color-purple);
  }
  .l-nav-list__item-en.is-green {
    color: var(--color-green);
  }
  .l-nav-list__item-en.is-blue {
    color: var(--color-blue);
  }
  .l-nav-list__item-en.is-yellow {
    color: var(--color-yellow);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
  overflow: hidden;
}
.l-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*============================================================================================================
	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: 12px;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: 0;
}
.c-tit01.is-center {
  text-align: center;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
  font-family: "Rammetto One", sans-serif;
}
.c-tit01__en.is-red {
  color: var(--color-red);
}
.c-tit01__en.is-purple {
  color: var(--color-purple);
}
.c-tit01__en.is-green {
  color: var(--color-green);
}
.c-tit01__en.is-blue {
  color: var(--color-blue);
}
@media screen and (min-width: 769px) {
  .c-tit01.is-vertical {
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    letter-spacing: 0.15em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    gap: 16px;
  }
  .c-tit01.is-vertical .c-tit01__en {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
    color: var(--color-yellow);
  }
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 10px;
    font-size: 28px;
  }
  .c-tit01__en {
    font-size: 16px;
    color: var(--color-yellow);
  }
}

.c-tit02 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 20px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  padding-block: 100px 100px;
  position: relative;
  overflow: visible;
}
.secSearch-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  overflow: visible;
}
.secSearch-deco--right {
  top: -30px;
  height: calc(100% + 30px);
  background-image: url(../img/bg_search01.svg);
  background-position: right calc(50% - 310px) top 0;
  background-size: 983px;
}
.secSearch-deco--left {
  height: calc(100% + 20px);
  background-image: url(../img/bg_search02.svg);
  background-position: left calc(50% - 470px) bottom 0;
  background-size: 983px;
}
.secSearch-inner {
  position: relative;
  z-index: 1;
}
.secSearch__secTit {
  margin-bottom: 86px;
}
.secSearch-sec + .secSearch-sec {
  margin-top: 70px;
}
.secSearch-sec__tit {
  margin-bottom: 30px;
}
.secSearch-sec-list {
  width: 100%;
  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: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.secSearch-sec-list__item a {
  height: 70px;
  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: 0 16px;
  border-radius: inherit;
  background: var(--color-green) url(../img/ico_arrow01.svg) no-repeat right 20px center/25px;
}
.secSearch-category .secSearch-sec__tit.c-tit02::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90px;
  height: 44px;
  background: url(../img/ttl_ashirai01.svg) no-repeat center/contain;
  pointer-events: none;
}
.secSearch-sec:not(.secSearch-category):not(.secSearch-sec--kodawari) .secSearch-sec__tit.c-tit02::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90px;
  height: 45px;
  background: url(../img/ttl_ashirai02.svg) no-repeat center/contain;
  pointer-events: none;
}
.secSearch-sec--kodawari .secSearch-sec__tit.c-tit02::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90px;
  height: 46px;
  background: url(../img/ttl_ashirai03.svg) no-repeat center/contain;
  pointer-events: none;
}
.secSearch-sec--kodawari .secSearch-sec-list__item a {
  background: var(--color-purple) url(../img/ico_arrow02.svg) no-repeat right 20px center/25px;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background-color: #15ab8b;
  }
  .secSearch-sec--kodawari .secSearch-sec-list__item a:hover {
    background-color: var(--color-aeon);
  }
}
@media screen and (max-width: 768px) {
  .secSearch__secTit {
    margin-bottom: 30px;
  }
  .secSearch-deco--right {
    top: 0;
    height: 100%;
    background-position: right -140px top 20px;
    background-size: 400px;
  }
  .secSearch-deco--left {
    height: 100%;
    background-position: left -140px bottom 20px;
    background-size: 440px;
  }
  .secSearch-category .secSearch-sec__tit.c-tit02::after {
    width: 63px;
    height: 31px;
    margin-left: 11px;
  }
  .secSearch-sec:not(.secSearch-category):not(.secSearch-sec--kodawari) .secSearch-sec__tit.c-tit02::before {
    width: 63px;
    height: 32px;
    margin-right: 11px;
  }
  .secSearch-sec:not(.secSearch-category):not(.secSearch-sec--kodawari) .secSearch-sec-list__item a {
    background: var(--color-green);
  }
  .secSearch-sec--kodawari .secSearch-sec__tit.c-tit02::after {
    width: 63px;
    height: 32px;
    margin-left: 11px;
  }
  .secSearch-sec--kodawari .secSearch-sec-list__item a {
    background: var(--color-purple);
  }
  .secSearch-sec + .secSearch-sec {
    margin-top: 40px;
  }
  .secSearch-sec__tit {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.03em;
  }
  .secSearch-sec-list {
    width: 100%;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .secSearch-sec-list__item {
    font-size: 13px;
    line-height: 120%;
  }
  .secSearch-sec-list__item a {
    padding: 0 10px;
    background-position: right 10px center;
    height: 44px;
  }
}

/*	.secSearch-category
------------------------------------------*/
.secSearch-category-list {
  position: relative;
  width: 100%;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 45px;
  margin: 0 0 -10px;
  place-content: center;
}
.secSearch-category-list__item {
  color: #fff;
}
.secSearch-category-list__item a {
  display: block;
}
.secSearch-category-list-imgBox {
  overflow: hidden;
  margin-bottom: 13px;
  border-radius: 8px;
  z-index: 1;
}
.secSearch-category-list-imgBox img {
  width: 100%;
}
.secSearch-category-list__tit {
  position: relative;
  top: -40px;
  width: min(100%, 260px);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0;
  height: 50px;
  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: 0 20px;
  border-radius: 8px;
  background: var(--color-red);
  margin: 0 auto;
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (min-width: 769px) {
  .secSearch-category-list__item a:hover {
    opacity: 1;
  }
  .secSearch-category-list__item a:hover .secSearch-category-list-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .secSearch-category-list__item a:hover .secSearch-category-list__tit {
    background: #eb644b;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .secSearch-category-list-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-category-list {
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .secSearch-category-list__tit {
    top: -30px;
    font-size: 13px;
    padding: 10px 4px;
    width: 90%;
    height: auto;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  padding-block: 100px 100px;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background: url(../img/bg_merit-deco.svg) no-repeat left calc(50% - 650px) bottom 53px/280px;
}
.secMerit-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  overflow: visible;
}
.secMerit-deco--cloud {
  top: -30px;
  height: calc(100% + 30px);
  background-image: url(../img/bg_merit.webp);
  background-position: right calc(50% - 525px) top 40px;
  background-size: 785px;
}
.secMerit-inner {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 40px;
  }
  .secMerit-deco--cloud {
    top: 0;
    height: 100%;
    background-position: right -140px top 40px;
    background-size: 400px;
  }
}

.secMerit__secTit {
  margin-bottom: 60px;
  position: relative;
}
.secMerit__secTit::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  height: 85px;
  bottom: 10px;
  background: url(../img/ttl_ashirai04.svg) no-repeat left calc(50% - 105px) bottom/166px;
}
@media screen and (max-width: 768px) {
  .secMerit__secTit {
    margin-bottom: 40px;
  }
  .secMerit__secTit::before {
    height: 60px;
    bottom: 7px;
    background: url(../img/ttl_ashirai04.svg) no-repeat left calc(50% + 64px) bottom/116px;
  }
}

.secMerit-front {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}
.secMerit-front__item {
  color: #fff;
}
.secMerit-front__item a {
  display: block;
  position: relative;
}
.secMerit-front-imgBox {
  overflow: hidden;
}
.secMerit-front-imgBox img {
  width: 100%;
  border-radius: 8px;
}
.secMerit-front-txtBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) auto;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 52px 0 0;
  position: relative;
  min-width: 0;
}
.secMerit-front__tit {
  width: calc(100% - 20px);
  font-weight: 500;
  font-size: 24px;
  line-height: 2.25;
  letter-spacing: 0.04em;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: calc(100% - 36px);
  margin: auto;
}
.secMerit-front__tit .bg {
  border-radius: 4px;
  padding: 7px 16px;
  background: var(--color-purple);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secMerit-front__txt {
  color: var(--color-txt);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .secMerit-front-txtBox {
    display: block;
    padding: 35px 10px 0;
  }
  .secMerit-front__tit {
    font-size: 19px;
    line-height: 2;
    bottom: calc(100% - 20px);
  }
  .secMerit-front__tit .bg {
    padding: 3px 10px;
  }
  .secMerit-front__txt {
    font-size: 14px;
  }
}

.secMerit-front-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 40px 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;
}
.secMerit-front-nav .my-carousel-progress {
  background: #e9e9e9;
}
.secMerit-front-nav .my-carousel-progress-bar {
  background: #000;
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.secMerit-front-nav .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.secMerit-front-nav .splide__arrow {
  width: 100%;
  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;
  padding: 0;
  background: #000;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secMerit-front-nav .splide__arrow svg {
  display: none;
}
.secMerit-front-nav .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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;
}
.secMerit-front-nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/*------------------------------------------
	.secData
------------------------------------------*/
.secData {
  padding-block: 127px 240px;
  margin-bottom: -73px;
  position: relative;
  background: url(../img/img_data-deco01.webp) no-repeat right calc(50% - 386px) top/310px, url(../img/img_data-deco02.svg) no-repeat left calc(50% - 432px) top 180px/357px, url(../img/img_data-deco03.svg) no-repeat right calc(50% - 492px) bottom 170px/357px;
}
.secData-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none;
}
.secData-bg__wave {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 2180/340;
  background-repeat: no-repeat;
  background-size: max(2180px, 100%) auto;
}
.secData-bg__wave--top {
  background-image: url(../img/bg_wave-top.svg);
  background-position: center top;
}
.secData-bg__wave--bottom {
  background-image: url(../img/bg_wave-bottom.svg);
  background-position: center bottom;
}
.secData-bg__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  background-color: #dff4ef;
}
.secData-inner {
  position: relative;
  z-index: 1;
}
.secData__secTit {
  margin-bottom: 60px;
}
.secData-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 40px;
}
.secData-list__item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.secData-list__item-box > img.secData-list__item-img01 {
  border-radius: 0 12px 12px 0;
}
.secData-list__item-box > img.secData-list__item-img02 {
  border-radius: 12px 0 0 12px;
}
.secData-list__item:nth-of-type(1) {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
}
.secData-list__item:nth-of-type(2) {
  -ms-grid-row: 2;
      grid-row-start: 2;
}
.secData-list__item:nth-of-type(3) {
  -ms-grid-row: 2;
      grid-row-start: 2;
}
.secData-list__item:nth-of-type(5) {
  -ms-grid-row: 3;
      grid-row-start: 3;
}
@media screen and (max-width: 768px) {
  .secData {
    padding-block: 80px 140px;
    margin-bottom: -40px;
    overflow-x: clip;
    background: url(../img/img_data-deco01.webp) no-repeat right 10px top 30px/155px, url(../img/img_data-deco02.svg) no-repeat left -40px top 120px/180px, url(../img/img_data-deco03.svg) no-repeat right -20px bottom 80px/180px;
  }
  .secData-bg__wave {
    background-size: 100% auto;
  }
  .secData-inner {
    min-width: 0;
    max-width: 100%;
  }
  .secData__secTit {
    margin-bottom: 30px;
  }
  .secData-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .secData-list__item {
    min-width: 0;
  }
  .secData-list__item-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secData-list__item-box > img.secData-list__item-img01 {
    border-radius: 12px 12px 0 0;
  }
  .secData-list__item-box > img.secData-list__item-img02 {
    border-radius: 0 0 12px 12px;
  }
  .secData-list__item:nth-of-type(1) {
    grid-column: auto;
  }
  .secData-list__item:nth-of-type(2), .secData-list__item:nth-of-type(3), .secData-list__item:nth-of-type(4), .secData-list__item:nth-of-type(5) {
    -ms-grid-row: auto;
        grid-row-start: auto;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 100px 100px;
  margin-bottom: -60px;
  position: relative;
  background: url(../img/bg_interview-deco.svg) no-repeat left calc(50% - 650px) bottom 53px/280px;
}
.secInterview__secTit {
  margin-bottom: 68px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 80px;
    margin-bottom: -40px;
    background: url(../img/bg_interview-deco.svg) no-repeat left -30px bottom 120px/120px;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
}

.js-interview-slider-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 30px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.js-interview-slider .my-carousel-progress {
  background: #e9e9e9;
}
.js-interview-slider .my-carousel-progress-bar {
  background: #000;
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-interview-slider .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 .splide__arrow {
  width: 100%;
  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;
  padding: 0;
  background: #000;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-interview-slider .splide__arrow svg {
  display: none;
}
.js-interview-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -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;
}
.js-interview-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .js-interview-slider .splide__arrow:hover {
    background: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .js-interview-slider-nav {
    margin-top: 30px;
  }
}

/*	.secInterview-content
------------------------------------------*/
.secInterview-content {
  width: min(100%, 900px);
  background: #edf6fd;
  border-radius: 30px;
}
.secInterview-content-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 240px 48px 1fr;
  grid-template-columns: 240px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 48px;
  margin-bottom: 60px;
}
.secInterview-content-top__img {
  width: 100%;
}
.secInterview-content-top__tit {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 32px);
  line-height: 2.1;
  color: #fff;
}
.secInterview-content-top__tit .bg {
  padding: 6px 16px;
  background: var(--color-blue);
  border-radius: 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.secInterview-content-top__at {
  display: inline-block;
  border-radius: 999px;
  background: #fff;
  padding: 4px 20px;
  margin-bottom: 16px;
}
.secInterview-content-top__prof {
  font-weight: 500;
}
.secInterview-content-q {
  margin-bottom: 40px;
}
.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: 10px;
  padding-left: 64px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  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: var(--color-red);
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  font-family: "Rammetto One", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 20px 30px;
  background: #fff;
  border-radius: 16px;
  font-weight: 500;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 32px;
}
@media screen and (min-width: 769px) {
  .secInterview-content {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    width: 100%;
    padding-top: 30px;
  }
  .secInterview-content-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    margin-bottom: 40px;
  }
  .secInterview-content-top__img {
    width: min(70%, 200px);
    display: block;
    margin-inline: auto;
  }
  .secInterview-content-top-txtBox {
    margin-top: -20px;
    position: relative;
    z-index: 2;
  }
  .secInterview-content-top__tit {
    margin-bottom: 10px;
    font-size: min(4.3vw, 16px);
    line-height: 2.3;
    text-align: center;
  }
  .secInterview-content-top__tit .bg {
    padding: 5px 10px;
  }
  .secInterview-content-top__at {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 16px;
    border-radius: 999px;
    background: #fff;
    padding: 4px 20px;
  }
  .secInterview-content-top__prof {
    text-align: center;
  }
  .secInterview-content-q {
    margin-bottom: 0;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    padding-left: 45px;
    font-size: 15px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 15px;
  }
  .secInterview-content-q__txt {
    padding: 15px;
    border-radius: 8px;
    line-height: 1.65;
    font-size: 13px;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 25px;
  }
}

/*	js - magnific_popup
------------------------------------------*/
.modalOpen01 {
  width: min(100%, 300px);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.modalOpen01 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;
  border-radius: inherit;
  background: var(--color-red);
}
.modalOpen01:not(:has(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;
  background: var(--color-red);
}
@media screen and (min-width: 769px) {
  .modalOpen01 a {
    border: 2px solid var(--color-red);
  }
  .modalOpen01 a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
  .modalOpen01:not(:has(a)) {
    border: 2px solid var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .modalOpen01 {
    font-size: 16px;
  }
}

.c-modal01 {
  margin-inline: auto;
  padding-block: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-modal01 {
    padding: 40px 20px 40px;
  }
}

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: var(--color-txt);
  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;
}
.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: 10px auto 0;
  padding: 0;
  border: 2px solid #000;
  border-radius: 100px;
  color: #000 !important;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-family: "Rammetto One", sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-red);
    color: #fff !important;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 20px;
    font-size: 13px;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 100px 100px;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.secFaq-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  overflow: visible;
}
.secFaq-deco--left {
  background-image: url(../img/bg_faq02.webp);
  background-position: left calc(50% - 460px) top 355px;
  background-size: 982px;
}
.secFaq-deco--right {
  top: -30px;
  height: calc(100% + 30px);
  background-image: url(../img/bg_faq01.svg);
  background-position: right calc(50% - 650px) top 0;
  background-size: 706px;
}
.secFaq-inner {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px minmax(0, 1fr);
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
}
.secFaq-box {
  min-width: 0;
  width: 100%;
  max-width: 740px;
  margin: 10px 0 0 auto;
}
.secFaq-box__tit {
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px 15px 70px;
  border-radius: 12px 12px 0 0;
  background: var(--color-yellow);
  color: var(--color-txt);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
}
.secFaq-box__tit::after {
  content: "Q";
  display: block;
  height: 1em;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  font-family: "Rammetto One", sans-serif;
  position: absolute;
  top: 0;
  left: 30px;
  bottom: 0;
  margin: auto;
  color: #eb644b;
}
.secFaq-box__txt {
  padding: 30px;
  background: #fcfaef;
  border-radius: 0 0 12px 12px;
  font-weight: 500;
}
.secFaq-box__txt + .secFaq-box__tit {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    margin-bottom: 0;
    padding-block: 80px 0;
  }
  .secFaq-deco--left {
    background-position: right -120px top 50px;
    background-size: 400px;
  }
  .secFaq-deco--right {
    top: auto;
    height: 100%;
    background-position: left -120px bottom 20px;
    background-size: 400px;
  }
  .secFaq-inner {
    display: block;
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-box {
    width: 100%;
    margin: 0 auto;
  }
  .secFaq-box__tit {
    min-height: 50px;
    padding: 12px 15px 12px 50px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    font-size: 20px;
    left: 17px;
  }
  .secFaq-box__txt {
    padding: 15px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 0 140px;
  position: relative;
}
.secEntry-inner {
  height: 340px;
  background: url(../img/bg_entry_pc.webp) no-repeat center center/1080px;
  position: relative;
  z-index: 1;
}
.secEntry__secTit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
  font-weight: 700;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
.secEntry__secTit-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: #fff;
  font-weight: 400;
  font-size: 74px;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Rammetto One", sans-serif;
}
@media screen and (min-width: 769px) {
  .secEntry.is-vertical {
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 40px;
    padding-inline: 20px;
  }
  .secEntry__secTit {
    font-size: 14px;
  }
  .secEntry__secTit-en {
    font-size: 28px;
  }
  .secEntry-inner {
    height: 200px;
    background-size: 100%;
  }
}
/*# sourceMappingURL=style.css.map */