@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-red: #ed5339;
  --bg-light-pink: #ffede8;
  --font-family-barlow: "Barlow", sans-serif;
  --cv-height: 60px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
    --wave-mobile-bg-size: 200% auto;
    --wave-mobile-bg-pos-y: calc(100% + 1px);
  }
}

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

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

.f-barlow {
  font-weight: 700;
  font-family: var(--font-family-barlow);
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  min-height: 100%;
  background-color: var(--bg-light-pink);
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}
@media screen and (max-width: 768px) {
  html {
    overflow-x: clip;
  }
}

@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;
  padding: 30px;
  background: #fff;
  border-radius: 0 0 20px 0;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header-entry {
  position: fixed;
  z-index: 9992;
  right: 12px;
  bottom: calc(var(--cv-height) + 12px);
}
.l-header-entry__item a {
  display: block;
}
.l-header-entry__item img {
  display: block;
  width: clamp(100px, 28vw, 140px);
  height: auto;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: absolute;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 30px 5px 0;
    background-color: transparent;
  }
  .l-header.is-fixed {
    position: fixed;
    top: calc(var(--header-height) * -1);
    background-color: #fff;
    -webkit-transition: top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition: top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-header.is-fixed.is-show {
    top: 0;
  }
  .l-header.is-fixed .l-nav-list a:hover {
    opacity: 1;
  }
  .l-header-entry {
    right: 30px;
    bottom: 160px;
  }
  .l-header-entry__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: absolute;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 30px 5px 0;
    background-color: transparent;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 0px 80px;
  }
  .l-header.is-fixed {
    position: fixed;
    top: calc(var(--header-height) * -1);
    background-color: #fff;
    -webkit-transition: top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition: top 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .l-header.is-fixed.is-show {
    top: 0;
  }
  .l-header__logo {
    padding: 20px;
  }
  .l-header__logo img {
    width: 120px;
  }
  .l-header-entry__item img {
    width: 80px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-red);
  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 25px;
  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 {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 20px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .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: 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: #333;
  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: 20px;
  }
  .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 24px;
  }
  .l-nav-list__item {
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
}
/* 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: var(--color-red);
  }
  .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__item {
    border-bottom: 1px solid #999;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-red);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	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: 10px !important;
  right: 10px;
  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: 5px !important;
    right: 5px;
  }
}
.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 180px);
  height: 44px;
  margin: 20px auto 0;
  padding: 0;
  border: 1px solid #444;
  border-radius: 999px;
  color: #444 !important;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Sen", sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    border-color: var(--color-txt);
    background: var(--color-txt);
    color: #fff !important;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  padding: 0;
  position: relative;
  z-index: 3;
  padding: 0 45px;
  isolation: isolate;
  background: url(../img/bg_mv01.svg) no-repeat right top 0px/391px, transparent;
}
.l-mv img {
  width: 100%;
  margin-top: 160px;
}
.l-mv-imgBox {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto 0;
}
@media screen and (max-width: 768px) {
  .l-mv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0;
    padding: 0;
    overflow-x: clip;
    background: url(../img/bg_mv01.svg) no-repeat right top/clamp(180px, 42vw, 20px), transparent;
  }
  .l-mv img {
    margin-top: 120px;
  }
  .l-mv::before {
    width: 80%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 647/458;
    max-height: none;
    top: -80px;
    left: 0;
    right: auto;
    bottom: auto;
  }
  .l-mv::after {
    width: 42%;
    left: auto;
    right: 10px;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
main {
  position: relative;
  z-index: 0;
  background-color: transparent;
}

.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: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.13em;
  color: var(--color-red);
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-red);
  font-size: 42px;
  font-family: var(--font-family-barlow);
  line-height: 1;
  letter-spacing: 0.13em;
  font-weight: 700;
}
.c-tit01.is-white {
  color: #fff;
}
.c-tit01.is-white .c-tit01__en {
  color: #fff;
}
.c-tit01.is-center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 10px;
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 32px;
  }
}

.c-secTitBox01 {
  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;
  margin-bottom: 60px;
}
.c-secTitBox01__secTit {
  width: 48%;
}
.c-secTitBox01__lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 769px) {
  .c-secTitBox01__lead {
    margin-bottom: 10px;
    line-height: 2.4;
  }
}
@media screen and (max-width: 768px) {
  .c-secTitBox01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
  .c-secTitBox01__secTit {
    width: 100%;
  }
  .c-secTitBox01__lead {
    width: 100%;
  }
}

.c-green {
  color: var(--color-red);
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-block: 100px 220px;
  background-color: transparent;
  background-image: url(../img/bg_wave01.svg), url(../img/bg_mv03.svg);
  background-position: center bottom, right bottom -300px;
  background-size: contain, 391px auto;
  background-repeat: no-repeat, no-repeat;
}
.secMessage::before {
  content: "";
  position: absolute;
  left: 0;
  top: -250px;
  width: 647px;
  max-width: min(647px, 100vw);
  height: 458px;
  background: url(../img/bg_mv02.svg) no-repeat left top/647px auto;
  pointer-events: none;
  z-index: -1;
}
.secMessage-inner {
  position: relative;
  z-index: 1;
}
.secMessage__secTit {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.secMessage-txtBox {
  position: relative;
  z-index: 1;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
.secMessage-txtBox__txt {
  display: inline-block;
  max-width: 100%;
  margin: 0 auto 20px;
  padding: 0 10px 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.13em;
  background-image: repeating-linear-gradient(to right, var(--color-red) 0, var(--color-red) 6px, transparent 6px, transparent 10px);
  background-size: 100% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.secMessage-txtBox__txt:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding-block: 80px 100px;
    overflow-x: clip;
    background-position: center var(--wave-mobile-bg-pos-y), right max(-32px, 50% - 50vw) bottom -180px;
    background-size: var(--wave-mobile-bg-size), min(200px, 72vw) auto;
  }
  .secMessage::before {
    top: -80px;
    width: min(60vw, 440px);
    max-width: 100%;
    height: auto;
    aspect-ratio: 647/458;
    background: url(../img/bg_mv02.svg) no-repeat left top/contain;
  }
  .secMessage-txtBox {
    position: relative;
    z-index: 1;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .secMessage-txtBox__txt {
    display: inline-block;
    max-width: 100%;
    margin: 0 auto 20px;
    padding: 0 0 14px;
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0;
    background-image: repeating-linear-gradient(to right, var(--color-red) 0, var(--color-red) 6px, transparent 6px, transparent 10px);
    background-size: 100% 2px;
    background-position: left bottom;
    background-repeat: no-repeat;
  }
  .secMessage-txtBox__txt:last-child {
    margin-bottom: 0;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  position: relative;
  padding-block: 100px 220px;
  background: url(../img/img_search_deco01.svg) no-repeat left calc(50% - 410px) top 40px/275px, url(../img/img_search_deco02.svg) no-repeat right calc(50% - 420px) top 50px/278px, url(../img/bg_wave02.svg) no-repeat center bottom/contain, #fff;
}
.secSearch__secTit {
  margin-bottom: 80px;
}
.secSearch-sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.secSearch-sec-genre {
  background: var(--bg-light-pink);
  padding: 60px 45px 90px;
  position: relative;
  border-radius: 40px;
}
.secSearch-sec-genre__tit {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: var(--color-red);
  border-radius: 8px;
  padding: 10px 40px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secSearch-sec-genre-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.secSearch-sec-genre-list__item {
  margin: 0;
}
.secSearch-sec-genre-list__item.is-down {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.secSearch-sec-genre-list__link {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.secSearch-sec-genre-list__link:hover .secSearch-sec-genre-list__tit {
  color: var(--color-red);
}
.secSearch-sec-genre-list__link:hover .secSearch-sec-genre-list__ico {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.secSearch-sec-genre-list__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 220/330;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 8px;
}
.secSearch-sec-genre-list__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.45s ease;
  transition: -webkit-transform 0.45s ease;
  transition: transform 0.45s ease;
  transition: transform 0.45s ease, -webkit-transform 0.45s ease;
}
.secSearch-sec-genre-list__link:hover .secSearch-sec-genre-list__img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.secSearch-sec-genre-list__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 16px 10px 0 0;
}
.secSearch-sec-genre-list__tit {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.secSearch-sec-genre-list__ico {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18px;
  height: 18px;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.secSearch-sec-genre-list__ico img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .secSearch-sec-genre {
    padding: 48px 16px 40px;
    border-radius: 24px;
  }
  .secSearch-sec-genre__tit {
    font-size: 16px;
    padding: 8px 12px;
    text-align: center;
  }
  .secSearch-sec-genre-list {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
  .secSearch-sec-genre-list__item.is-down {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  .secSearch-sec-genre-list__row {
    padding: 12px 0 0 0;
  }
  .secSearch-sec-genre-list__tit {
    font-size: 14px;
  }
  .secSearch-sec-genre-list__ico img {
    width: 12px;
  }
}
.secSearch-sec-type {
  background: #e8dcef;
  padding: 60px 100px 50px;
  position: relative;
  border-radius: 40px;
}
.secSearch-sec-type__tit {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: #9879ab;
  border-radius: 8px;
  padding: 10px 40px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secSearch-sec-type-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.secSearch-sec-type-list__item {
  margin: 0;
}
.secSearch-sec-type-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 60px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  color: inherit;
  text-decoration: none;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #9879ab;
}
.secSearch-sec-type-list__btn:hover {
  background: #9879ab;
  color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .secSearch-sec-type {
    padding: 48px 16px 40px;
    border-radius: 24px;
  }
  .secSearch-sec-type__tit {
    font-size: 16px;
    padding: 8px 12px;
    text-align: center;
  }
  .secSearch-sec-type-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 12px;
  }
  .secSearch-sec-type-list__btn {
    min-height: 52px;
    padding: 12px 16px;
    font-size: 16px;
  }
}
.secSearch-sec-conditions {
  background: #cbe9f6;
  padding: 60px 45px 50px;
  position: relative;
  border-radius: 40px;
}
.secSearch-sec-conditions__tit {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: #75c3e4;
  border-radius: 8px;
  padding: 10px 40px;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.secSearch-sec-conditions-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}
.secSearch-sec-conditions-list > a {
  display: block;
  height: 100%;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}
.secSearch-sec-conditions-list > a:hover {
  opacity: 1;
}
.secSearch-sec-conditions-list > a:hover .secSearch-sec-conditions-list__tit {
  color: #75c3e4;
}
.secSearch-sec-conditions-list__item {
  padding: 20px 24px;
  background: #fff;
  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;
  border-radius: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  min-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.secSearch-sec-conditions-list__tit {
  width: 100%;
  margin: 0;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
@media screen and (max-width: 768px) {
  .secSearch-sec-conditions {
    padding: 48px 16px 40px;
    border-radius: 24px;
  }
  .secSearch-sec-conditions__tit {
    font-size: 16px;
    padding: 8px 12px;
    text-align: center;
  }
  .secSearch-sec-conditions-list {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
  .secSearch-sec-conditions-list__item {
    padding: 14px 12px;
    gap: 8px;
  }
  .secSearch-sec-conditions-list__tit {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    padding-block: 60px;
    overflow-x: clip;
    background: url(../img/img_search_deco01.svg) no-repeat left 24px top 58px/clamp(80px, 18vw, 118px), url(../img/img_search_deco02.svg) no-repeat right 8px top 66px/clamp(100px, 18vw, 118px), url(../img/bg_wave02.svg) no-repeat center var(--wave-mobile-bg-pos-y)/var(--wave-mobile-bg-size), #fff;
  }
  .secSearch__secTit {
    margin-bottom: 56px;
  }
  .secSearch-sec {
    gap: 48px;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  position: relative;
  padding-block: 60px 220px;
  background: url(../img/img_merit_deco01.svg) no-repeat left calc(50% - 240px) top 40px/81px, url(../img/img_merit_deco02.svg) no-repeat right calc(50% - 260px) top 45px/157px, url(../img/img_merit_deco03.svg) no-repeat right calc(50% - 510px) top 140px/200px, url(../img/img_merit_deco04.svg) no-repeat left calc(50% - 530px) bottom 555px/200px, url(../img/bg_wave01.svg) no-repeat center bottom/contain, var(--bg-light-pink);
}
.secMerit__secTit {
  margin-bottom: 48px;
}
.secMerit-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
}
.secMerit-list__item.is-down {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 56px 60px;
    overflow-x: clip;
    background: url(../img/img_merit_deco01.svg) no-repeat left 24px top 32px/clamp(70px, 12vw, 68px), url(../img/img_merit_deco02.svg) no-repeat right 12px top 48px/clamp(100px, 18vw, 100px), url(../img/img_merit_deco03.svg) no-repeat right 6px top 130px/clamp(72px, 22vw, 120px), url(../img/img_merit_deco04.svg) no-repeat left 6px bottom 46%/clamp(72px, 22vw, 120px), url(../img/bg_wave01.svg) no-repeat center var(--wave-mobile-bg-pos-y)/var(--wave-mobile-bg-size), var(--bg-light-pink);
  }
  .secMerit-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .secMerit-list__item.is-down {
    -webkit-transform: none;
            transform: none;
  }
}

.secMerit-card {
  height: 100%;
}
.secMerit-card__visual {
  position: relative;
}
.secMerit-card__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.secMerit-card__meritLabel {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 1;
}
.secMerit-card__meritLabelInner {
  position: relative;
  display: inline-block;
  width: 223px;
  padding: 0.75em 0.35em 0.75em;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--color-red);
  background: var(--bg-light-pink);
  border-radius: 0 30px 0 0;
}
.secMerit-card__meritLabelInner::before, .secMerit-card__meritLabelInner::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../img/ico_merit-radius.svg) no-repeat center/contain;
  pointer-events: none;
}
.secMerit-card__meritLabelInner::before {
  top: -1px;
  left: 13px;
  -webkit-transform: translate(-13px, -13px);
          transform: translate(-13px, -13px);
}
.secMerit-card__meritLabelInner::after {
  bottom: 13px;
  right: -1px;
  -webkit-transform: translate(13px, 13px);
          transform: translate(13px, 13px);
}
.secMerit-card__tit {
  position: relative;
  margin: 20px 0 12px;
  padding-right: 100px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.secMerit-card__tit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: no-repeat center/contain;
}
.secMerit-card__titTxt {
  display: inline;
  padding-bottom: 0.32em;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(transparent), color-stop(#ffde5c), to(#ffde5c));
  background: linear-gradient(transparent 0%, transparent calc(100% - 0.32em), #ffde5c calc(100% - 0.32em), #ffde5c 100%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.secMerit-card__txt {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.85;
  letter-spacing: 0.03em;
  color: var(--color-txt);
}
.secMerit-card--01 .secMerit-card__tit::after {
  width: 100px;
  height: 85px;
  background-image: url(../img/ico_merit01.svg);
  top: 10px;
}
.secMerit-card--02 .secMerit-card__tit::after {
  width: 120px;
  height: 151px;
  top: -10px;
  background-image: url(../img/ico_merit02.svg);
}
.secMerit-card--03 .secMerit-card__tit::after {
  width: 140px;
  height: 124px;
  top: -16px;
  right: 30px;
  background-image: url(../img/ico_merit03.svg);
}
.secMerit-card--04 .secMerit-card__tit::after {
  width: 123px;
  height: 152px;
  top: -10px;
  right: 40px;
  background-image: url(../img/ico_merit04.svg);
}
@media screen and (max-width: 768px) {
  .secMerit-card__meritLabelInner {
    max-width: min(120px, 100%);
    padding: 0.75em 0em 0.75em;
    font-size: 13px;
  }
  .secMerit-card__tit {
    padding-right: 0;
    font-size: clamp(19px, 4.6vw, 22px);
  }
  .secMerit-card--01 .secMerit-card__tit::after, .secMerit-card--02 .secMerit-card__tit::after, .secMerit-card--03 .secMerit-card__tit::after, .secMerit-card--04 .secMerit-card__tit::after {
    top: 0%;
    right: 0;
    -webkit-transform: translateY(-50%) scale(0.68);
            transform: translateY(-50%) scale(0.68);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  .secMerit-card__txt {
    margin-top: 24px;
    font-size: 14px;
  }
}

/*------------------------------------------
	.secData
------------------------------------------*/
.secData {
  position: relative;
  padding-block: 40px 200px;
  background: url(../img/img_data_deco01.svg) no-repeat left calc(50% - 300px) top 20px/173px, url(../img/img_data_deco02.svg) no-repeat right calc(50% - 315px) top 15px/188px, url(../img/bg_wave02.svg) no-repeat center bottom/contain, #fff;
}
.secData__secTit {
  margin-bottom: 48px;
}
.secData-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.secData-list__item {
  border-radius: 24px;
  overflow: hidden;
}
.secData-list__item__img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .secData {
    padding-block: 56px 60px;
    overflow-x: clip;
    background: url(../img/img_data_deco01.svg) no-repeat left 24px top 28px/clamp(90px, 16vw, 100px), url(../img/img_data_deco02.svg) no-repeat right 16px top 26px/clamp(100px, 17vw, 108px), url(../img/bg_wave02.svg) no-repeat center var(--wave-mobile-bg-pos-y)/var(--wave-mobile-bg-size), #fff;
  }
  .secData-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secData-list__item__img {
    width: 100%;
    height: 100%;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  position: relative;
  padding-block: 60px 200px;
  background: url(../img/img_faq_deco01.webp) no-repeat left calc(50% - 430px) top 20px/216px, url(../img/img_faq_deco02.webp) no-repeat right calc(50% - 455px) top 20px/184px, url(../img/img_faq_deco03.svg) no-repeat left calc(50% - 450px) bottom 140px/253px, url(../img/bg_wave01.svg) no-repeat center bottom/contain, var(--bg-light-pink);
}
.secFaq__secTit {
  margin-bottom: 80px;
}
.secFaq-box {
  width: min(100%, 800px);
  margin-inline: auto;
}
.secFaq-box__tit {
  cursor: pointer;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-red);
  border-radius: 6px;
  padding: 15px 84px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}
.secFaq-box__tit::after {
  content: "Q";
  width: 44px;
  height: 44px;
  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: #ffde5c;
  border-radius: 50%;
  color: #f76029;
  font-weight: 700;
  font-size: 21px;
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  margin: auto;
  padding-bottom: 3px;
}
.secFaq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit .btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.secFaq-box__tit.is-open {
  border-radius: 6px 6px 0 0;
}
.secFaq-box__tit.is-open .btn::after {
  opacity: 0;
  top: -20px;
}
.secFaq-box-content {
  display: none;
  padding: 30px 20px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  font-size: 16px;
  letter-spacing: 0;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
.secFaq-box-content-ol__item, .secFaq-box-content-ul__item {
  padding-left: 1.5em;
  position: relative;
}
.secFaq-box-content-ol__item::after, .secFaq-box-content-ul__item::after {
  display: block;
  position: absolute;
}
.secFaq-box-content-ol {
  counter-reset: number;
}
.secFaq-box-content-ol__item::after {
  counter-increment: number;
  content: counter(number, decimal) ".";
  top: 0;
  left: 0;
}
.secFaq-box-content-ul__item::after {
  content: "";
  width: 0.2em;
  height: 0.2em;
  background: var(--color-txt);
  border-radius: 50%;
  top: 0.9em;
  left: 0.5em;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding-block: 56px 60px;
    overflow-x: clip;
    background: url(../img/img_faq_deco01.webp) no-repeat left 8px top 46px/clamp(100px, 15vw, 88px), url(../img/img_faq_deco02.webp) no-repeat right 8px top 40px/clamp(100px, 15vw, 88px), url(../img/img_faq_deco03.svg) no-repeat left 6px bottom 30px/clamp(80px, 18vw, 120px), url(../img/bg_wave01.svg) no-repeat center var(--wave-mobile-bg-pos-y)/var(--wave-mobile-bg-size), var(--bg-light-pink);
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-box__tit {
    min-height: 60px;
    padding: 10px 50px 10px 60px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    width: 35px;
    height: 35px;
    font-size: 16px;
    left: 10px;
  }
  .secFaq-box__tit .btn {
    width: 20px;
    height: 20px;
    right: 20px;
  }
  .secFaq-box-content {
    padding: 20px;
    font-size: 14px;
  }
}

/*------------------------------------------
	.secAccess
------------------------------------------*/
.secAccess {
  padding: 20px 0 80px;
  position: relative;
  background-color: #fff;
  background-image: url(../img/img_access_deco01.svg);
  background-repeat: no-repeat;
  background-position: left calc(50% - 220px) top calc(50% - 190px);
  background-size: 183px auto;
}
.secAccess::after {
  content: "";
  display: block;
  width: 200px;
  height: 100%;
  background: url(../img/img_access_deco02.svg) no-repeat center/contain;
  position: absolute;
  bottom: -41%;
  right: calc(50% - 640px);
  z-index: 0;
  pointer-events: none;
}
.secAccess-inner {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 51.29666666% 60px 1fr;
  grid-template-columns: 51.29666666% 1fr;
  grid-column-gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secAccess__secTit {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  margin-bottom: 80px;
}
.secAccess-mapBox {
  height: 512px;
}
.secAccess-mapBox iframe {
  width: 100%;
  height: 100%;
}
.secAccess-data th,
.secAccess-data td {
  padding: 28px 0 25px;
  vertical-align: top;
  color: var(--color-txt);
  font-size: 15px;
}
.secAccess-data th {
  width: 120px;
  border-bottom: 1px solid var(--color-red);
}
.secAccess-data td {
  padding-left: 15px;
  border-bottom: 1px solid #bdbdbd;
}
@media screen and (max-width: 768px) {
  .secAccess {
    padding: 56px 0 20px;
    position: relative;
    overflow-x: clip;
    background-color: #fff;
    background-image: url(../img/img_access_deco01.svg);
    background-repeat: no-repeat;
    background-position: right max(24px, 50% - 160px) top 54px;
    background-size: min(160px, 42vw) auto;
  }
  .secAccess::after {
    content: "";
    display: block;
    width: min(120px, 32vw);
    height: min(45vh, 280px);
    background: url(../img/img_access_deco02.svg) no-repeat right bottom/contain;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 0;
    pointer-events: none;
  }
  .secAccess-inner {
    display: block;
  }
  .secAccess__secTit {
    margin-bottom: 40px;
  }
  .secAccess-mapBox {
    height: 280px;
    margin: 0 auto 30px;
  }
  .secAccess-data th,
  .secAccess-data td {
    padding: 15px 0 20px;
    font-size: 14px;
  }
  .secAccess-data th {
    width: 85px;
  }
  .secAccess-data td {
    padding-left: 5px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: 80px;
}
.secGallery img {
  width: 100%;
  border-radius: 8px;
}
.secGallery .splide__list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: 0;
  }
  .secGallery img {
    border-radius: 6px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 64px;
  background: url(../img/img_entry-banner_pc.webp) no-repeat center/1080px;
  position: relative;
  border-radius: 24px;
  width: min(100%, 1080px);
  height: 278px;
  margin: 0 auto 80px;
}
.secEntry-inner {
  position: relative;
  z-index: 2;
}
.secEntry__secTit {
  margin-bottom: 35px;
  color: #fff;
  font-weight: 500;
  font-size: 36px;
  text-align: center;
  letter-spacing: 0.02em;
}
.secEntry-list {
  width: min(100%, 620px);
  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: 20px;
  margin: 0 auto;
}
.secEntry-list__item {
  width: min(100%, 300px);
  margin-inline: auto;
  border-radius: 100px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.secEntry-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 70px;
  padding: 10px 50px;
  border-radius: inherit;
  border: 2px solid var(--color-red);
  background: var(--color-red);
  position: relative;
}
.secEntry-list__item a::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-red);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.secEntry-list__item a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-red);
  position: absolute;
  top: 0;
  right: 32px;
  bottom: 0;
  margin: auto;
}
.secEntry-list__item.is-green a {
  background: #fff;
}
.secEntry-list__item.is-green a::after {
  background: #fff;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-orange);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: auto;
    max-width: 1080px;
    margin-block: 40px;
    margin-inline: var(--inner-padding);
    padding-block: 80px;
    height: auto;
    border-radius: 24px;
    overflow: hidden;
    isolation: isolate;
    background-image: url(../img/img_entry-banner_sp.webp);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
  }
  .secEntry::after {
    content: none;
  }
  .secEntry__secTit {
    margin-bottom: 12px;
    font-size: 26px;
  }
  .secEntry-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin: 0 auto;
  }
  .secEntry-list__item {
    width: min(100%, 260px);
    margin-inline: auto;
    border-radius: 100px;
    color: var(--color-red);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .secEntry-list__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 70px;
    padding: 10px 30px;
    border-radius: inherit;
    border: 2px solid var(--color-red);
    background: var(--color-red);
    position: relative;
  }
  .secEntry-list__item a::before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-red);
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
  }
  .secEntry-list__item a::after {
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 14/10;
    -webkit-mask-image: url(../img/ico_arrow02.svg);
    mask-image: url(../img/ico_arrow02.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background: var(--color-red);
    position: absolute;
    top: 0;
    right: 28px;
    bottom: 0;
    margin: auto;
  }
  .secEntry-list__item.is-green a {
    background: #fff;
  }
  .secEntry-list__item.is-green a::after {
    background: #fff;
  }
}
/*# sourceMappingURL=style.css.map */