@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: #444;
  --color-purple: #98368c;
  --bg-light-purple: #f7f2f6;
  --color-yellow: #ffe500;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 15px;
  line-height: 1.85;
  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-lato {
  font-family: "Lato", sans-serif;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

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

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

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  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;
  background: #fff;
}
.l-header__logo {
  width: 214px;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__logo img {
  width: 100%;
}
.l-header__entry {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  border-radius: 100px;
  font-weight: 700;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__entry 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;
  border-radius: inherit;
  color: #fff;
  background: var(--color-purple) url(../img/ico_arrow01.svg) no-repeat right 10px center;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding-inline: 20px 20px;
    gap: 30px;
  }
  .l-header__entry {
    width: 182px;
    font-size: 15px;
  }
  .l-header__entry a {
    height: 50px;
    padding-inline: 30px;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background-color: var(--color-yellow);
    background-image: url(../img/ico_arrow03.svg);
    color: var(--color-purple);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: 15px 70px;
  }
  .l-header__logo {
    width: 120px;
  }
  .l-header__entry {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9992;
    width: 100%;
    margin: 30px auto 0;
    border-radius: 0;
    font-size: 18px;
  }
  .l-header__entry a {
    height: 60px;
    padding-inline: 50px;
    background-position: right 20px center;
    background-size: 20px;
    background-color: #852b7a;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  position: relative;
}
.l-footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 593px;
  background: url(../img/bg_wave03.svg) no-repeat center top/max(100%, 1920px) auto, var(--bg-light-purple);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.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: 40px 10px;
  position: relative;
}
.l-footer-inner::after {
  content: "";
  display: block;
  width: min(100% - 20px, 1080px);
  height: 1px;
  background: repeating-linear-gradient(to right, #fff 0 6px, transparent 6px 12px);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 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-size: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    background: var(--color-purple);
  }
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer::after {
    height: calc(100% + 560px);
    background-size: max(185%, 700px) 100%;
  }
  .l-footer-inner {
    padding: 15px 20px 80px;
  }
  .l-footer-inner::after {
    width: calc(100% - 40px);
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 10px;
  }
  .l-footer-nav__item {
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 5px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
    text-align: left;
  }
}

.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: #444444;
  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: 70px;
  }
  .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;
    margin: 0 0 0 auto;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 40px;
  }
  .l-nav-list__item {
    font-weight: 700;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-purple);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 0;
    right: 0;
    background: var(--color-purple);
  }
  .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;
    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: 20px 30px 20px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-blue);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
  isolation: isolate;
}
.l-mv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  aspect-ratio: 1920/240;
  background: url(../img/bg_wave02.svg) no-repeat center bottom/100% 100%;
  pointer-events: none;
  z-index: -1;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 29.63%;
  position: absolute;
  z-index: 2;
  left: 3.5%;
  bottom: 14%;
  -webkit-animation: fadeIn 1s ease-in-out 0.3s forwards;
          animation: fadeIn 1s ease-in-out 0.3s forwards;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .l-mv::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    aspect-ratio: 1920/240;
    background: url(../img/bg_wave02.svg) no-repeat center bottom/contain;
    pointer-events: none;
    z-index: -1;
  }
  .l-mv__txt {
    width: 80%;
    left: 10px;
    bottom: 10px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  aspect-ratio: 1440/680;
}
.js-mv-slider img {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    aspect-ratio: 390/370;
  }
}
.js-mv-slider.is-initialized {
  opacity: 1;
}
.js-mv-slider .splide__track {
  height: 100%;
}
.js-mv-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.1em;
}
.c-tit01::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: var(--color-blue);
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -ms-grid-column-span: 2;
  grid-column: span 2;
  color: var(--color-blue);
  font-weight: 300;
  font-size: 82px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  font-family: "Lato", sans-serif;
}
.c-tit01.is-center {
  text-align: center;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  text-align: right;
}
.c-tit01.is-center .c-tit01__en {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    grid-gap: 10px;
    font-size: 15px;
  }
  .c-tit01::after {
    width: 40px;
  }
  .c-tit01__en {
    font-size: 40px;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  padding-block: 140px 240px;
  position: relative;
  background: url(../img/bg_deco01.svg) no-repeat left calc(50% - 355px) bottom 10px/397px, url(../img/bg_wave01.svg) no-repeat center bottom/max(100%, 1920px), var(--bg-light-purple);
  z-index: -1;
}
.secMerit::after {
  content: "";
  display: block;
  width: 100%;
  height: 247px;
  background: url(../img/bg_merit01.svg) no-repeat left calc(50% - 435px) top, url(../img/bg_merit02.svg) no-repeat right calc(50% - 420px) bottom;
  position: absolute;
  top: -18px;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.secMerit__secTit {
  margin-bottom: 80px;
}
.secMerit-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 80px;
}
.secMerit-list__item {
  --imgSize: min(46.3%, 500px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 64px var(--imgSize);
  grid-template-columns: 1fr var(--imgSize);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 64px;
}
.secMerit-list__num {
  margin-bottom: 30px;
  padding-left: 16px;
  color: var(--color-blue);
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  position: relative;
}
.secMerit-list__num::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  position: absolute;
  top: 8px;
  left: 0;
}
.secMerit-list__tit {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.12em;
}
.secMerit-list__tit .line {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0.4em, #ffe7a2), color-stop(0.4em, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #ffe7a2 0.4em, rgba(255, 255, 255, 0) 0.4em);
}
.secMerit-list__txt + .secMerit-list__txt {
  margin-top: 16px;
}
.secMerit-list-txtBox img {
  margin-bottom: 20px;
}
.secMerit-list-imgBox img {
  width: 100%;
  border-radius: 12px;
}
@media screen and (min-width: 769px) {
  .secMerit-list__item:nth-of-type(odd) {
    -ms-grid-columns: var(--imgSize) 1fr;
    grid-template-columns: var(--imgSize) 1fr;
  }
  .secMerit-list__item:nth-of-type(odd) .secMerit-list-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 60px 140px;
    background: url(../img/bg_deco01.svg) no-repeat left 20px bottom 0/197px, url(../img/bg_wave01.svg) no-repeat center bottom/contain, var(--bg-light-purple);
  }
  .secMerit::after {
    height: 118px;
    background-position: left -16px top, right 10px bottom;
    background-size: 116px, 93px;
    top: -10px;
  }
  .secMerit__secTit {
    margin-bottom: 40px;
  }
  .secMerit-list {
    grid-gap: 64px;
  }
  .secMerit-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    --imgSize: 110px;
    -ms-grid-columns: var(--imgSize) 0 1fr;
    grid-template-columns: var(--imgSize) 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    grid-gap: 12px 0;
  }
  .secMerit-list-txtBox {
    display: contents;
  }
  .secMerit-list-txtBox img {
    margin-bottom: 0;
    width: 90%;
  }
  .secMerit-list__num {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: 4px;
    margin-bottom: 0;
    padding-left: 12px;
    font-size: 11px;
  }
  .secMerit-list__num::after {
    width: 4px;
    height: 4px;
    top: 6px;
  }
  .secMerit-list__tit {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
    margin-bottom: 0;
    font-size: 19px;
    letter-spacing: 0;
  }
  .secMerit-list__txt {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-top: 0;
  }
  .secMerit-list__txt + .secMerit-list__txt {
    margin-top: 10px;
  }
  .secMerit-list__txt.is-small {
    font-size: 12px;
  }
  .secMerit-list-imgBox {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -ms-grid-row-span: 2;
    grid-row: span 2;
  }
  .secMerit-list-imgBox img {
    border-radius: 4px;
  }
}

/*------------------------------------------
	.secRecommend
------------------------------------------*/
.secRecommend {
  padding-block: 40px 240px;
  position: relative;
  background: url(../img/bg_wave02.svg) no-repeat center bottom/max(100%, 1920px);
}
.secRecommend__secTit {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.55;
  text-align: center;
  color: var(--color-purple);
  margin-bottom: 40px;
}
.secRecommend__secTit::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 52px;
  aspect-ratio: 52/43;
  background: url(../img/ico_ashirai01.svg) no-repeat center/contain;
  pointer-events: none;
}
.secRecommend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
.secRecommend-list__item:nth-child(even) {
  padding-top: 40px;
}
.secRecommend-list__item picture {
  display: block;
  width: 100%;
}
.secRecommend-list__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secRecommend-meritBox {
  margin-top: 100px;
}
.secRecommend-set {
  width: min(100%, 920px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 30px 1fr;
  grid-template-columns: 320px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
}
@media screen and (max-width: 768px) {
  .secRecommend {
    padding-block: 80px 120px;
    background: url(../img/bg_wave02.svg) no-repeat center bottom/contain;
  }
  .secRecommend::before {
    width: 368px;
    top: -140px;
    left: -120px;
  }
  .secRecommend::after {
    width: 80px;
    top: -20px;
    right: 20px;
  }
  .secRecommend__secTit {
    margin-bottom: 40px;
    font-size: 18px;
    letter-spacing: 0.03em;
  }
  .secRecommend__secTit::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 32px;
    aspect-ratio: 52/43;
    background: url(../img/ico_ashirai01.svg) no-repeat center/contain;
    pointer-events: none;
  }
  .secRecommend-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 40px;
  }
  .secRecommend-list__item:nth-child(even) {
    padding-top: 0px;
  }
  .secRecommend-list__item picture {
    display: block;
    width: 100%;
  }
  .secRecommend-list__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .secRecommend-set {
    width: 100%;
    display: block;
  }
  .secRecommend-set__swipe {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.5;
  }
  .secRecommend-set__swipe::after {
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1/1;
    background: url(../img/ico_swipe01.svg);
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

/*	.secMerit-nav
------------------------------------------*/
.secMerit-nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.secMerit-nav__item {
  cursor: pointer;
}
.secMerit-nav__item-en {
  display: block;
  margin-bottom: 13px;
  line-height: 1.1;
  letter-spacing: 0.13em;
}
.secMerit-nav__item-main {
  position: relative;
  padding-left: 16px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.13em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secMerit-nav__item-main::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d9d9d9;
  transform: translateY(-50%);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.secMerit-nav__item.is-active .secMerit-nav__item-main {
  color: var(--color-purple);
}
.secMerit-nav__item.is-active .secMerit-nav__item-main::before {
  background: var(--color-purple);
}
@media screen and (max-width: 768px) {
  .secMerit-navWrap {
    overflow: auto;
    margin: 0 calc(var(--inner-padding) * -1) 20px 0;
    padding-right: var(--inner-padding);
  }
  .secMerit-nav {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  .secMerit-nav__item {
    width: 140px;
    padding-bottom: 10px;
    position: relative;
  }
  .secMerit-nav__item::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-purple);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .secMerit-nav__item-en {
    margin-bottom: 8px;
    font-size: 10px;
  }
  .secMerit-nav__item-main {
    padding-left: 0px;
    font-size: 12px;
    letter-spacing: 0;
  }
  .secMerit-nav__item-main::before {
    display: none;
  }
  .secMerit-nav__item.is-active::after {
    opacity: 1;
  }
}

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

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

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding-block: 120px 0;
  margin-bottom: -100px;
}
.secGallery-imgBox img {
  width: 100%;
  border-radius: 16px;
}
.secGallery-imgBox .splide__list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.secGallery-imgBox .splide__slide.is-down {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    padding-block: 0;
  }
  .secGallery-imgBox img {
    border-radius: 8px;
  }
  .secGallery-imgBox .splide__slide.is-down {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secSearch
------------------------------------------*/
.secSearch {
  margin-top: -60px;
  padding-block: 40px 100px;
  position: relative;
  background: url(../img/bg_deco02.svg) no-repeat left calc(50% - 455px) top/204px, url(../img/bg_deco03.svg) no-repeat right calc(50% - 455px) top/227px, var(--bg-light-purple);
}
.secSearch__secTit {
  position: relative;
  text-align: center;
  margin-bottom: 64px;
}
.secSearch-inner {
  width: min(100%, 960px);
}
.secSearch-sec + .secSearch-sec {
  margin-top: 70px;
}
.secSearch-sec__tit {
  margin-bottom: 30px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.13em;
  font-weight: 700;
  position: relative;
}
.secSearch-sec__tit::after {
  content: "";
  display: block;
  width: min(100%, 255px);
  margin: 5px auto 0;
  aspect-ratio: 255/26;
  background: url(../img/ico_ashirai02.svg) no-repeat center/contain;
}
.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: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  border-radius: inherit;
  background: var(--color-purple);
}
.secSearch-bg {
  width: 100%;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}
.secSearch-bg.is-bg01 {
  top: 40px;
  height: 463px;
  background-image: url("../img/bg_search03.svg");
  background-position: left calc(50% - 420px) center;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.secSearch-bg.is-bg02 {
  top: 50px;
  height: 539px;
  background-image: url("../img/bg_search04.svg");
  background-position: right calc(50% - 405px) center;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
@media screen and (min-width: 769px) {
  .secSearch-sec-list__item a:hover {
    opacity: 1;
    background-color: var(--color-yellow);
    color: var(--color-purple);
  }
}
@media screen and (max-width: 1200px) {
  .secSearch-inner {
    padding: 0 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .secSearch {
    margin-top: -1px;
    padding: 10px 0 60px;
    background: url(../img/bg_deco02.svg) no-repeat left 10px top/88px, url(../img/bg_deco03.svg) no-repeat right 10px top/97px, var(--bg-light-purple);
  }
  .secSearch-inner {
    position: relative;
  }
  .secSearch-inner::after {
    content: "";
    display: block;
    width: 210px;
    height: 225px;
    background: url("../img/bg_search02.svg") no-repeat;
    background-size: 60%;
    position: absolute;
    bottom: 400px;
    left: 10px;
    z-index: 2;
  }
  .secSearch__secTit {
    margin-bottom: 30px;
  }
  .secSearch__secTit img {
    width: 55%;
  }
  .secSearch-sec + .secSearch-sec {
    margin-top: 40px;
  }
  .secSearch-sec__tit {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.03em;
  }
  .secSearch-sec__tit::after {
    margin-top: 8px;
    width: min(100%, 220px);
  }
  .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: 14px;
    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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 0 40px;
  margin: 0 0 -10px;
  place-content: center;
}
.secSearch-category-list__item {
  color: #fff;
  width: 29.6%;
}
.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%, 220px);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.05em;
  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: 4px;
  background: var(--color-purple);
  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;
    color: var(--color-purple);
  }
  .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: var(--color-yellow);
    color: var(--color-purple);
    -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: 1200px) {
  .secSearch-category-list__item {
    width: 30.8%;
  }
}
@media screen and (max-width: 768px) {
  .secSearch-category-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .secSearch-category-list__item {
    width: calc(50% - 10px);
    height: 135px;
  }
  .secSearch-category-list__tit {
    height: 44px;
    font-size: 14px;
    padding: 0 4px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  margin-top: 194px;
  padding-block: 0 40px;
  position: relative;
  z-index: 2;
}
.secEntry-inner {
  position: relative;
  isolation: isolate;
}
.secEntry-inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -40px;
  width: 189px;
  max-width: min(48%, 189px);
  aspect-ratio: 189/174;
  background: url(../img/bg_footer.svg) no-repeat right bottom/contain;
  pointer-events: none;
  z-index: -1;
}
.secEntry__secTit {
  position: relative;
  margin-bottom: 35px;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  line-height: 180%;
}
.secEntry__secTit::after {
  content: "";
  position: absolute;
  top: -60px;
  left: calc(50% - 410px);
  width: 196px;
  max-width: min(48%, 196px);
  aspect-ratio: 196/73;
  background: url(../img/txt_footer.svg) no-repeat left top/contain;
  pointer-events: none;
}
.secEntry__btn {
  width: min(100%, 400px);
  margin: 0 auto;
  border-radius: 100px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.secEntry__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  height: 80px;
  padding-inline: 60px;
  color: var(--color-purple);
  background: #fff url(../img/ico_arrow02.svg) no-repeat right 25px center/28px;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background-color: var(--color-yellow);
    background-image: url(../img/ico_arrow02.svg);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    margin-top: 100px;
    padding-bottom: 30px;
    background: var(--color-purple);
  }
  .secEntry::after {
    height: 76px;
    background-position: left 20px bottom, right 20px top;
    background-size: min(18%, 70px), min(20%, 75px);
    top: -25px;
  }
  .secEntry-inner::after {
    content: "";
    position: absolute;
    right: 20px;
    bottom: -30px;
    width: 109px;
    max-width: min(48%, 189px);
    aspect-ratio: 189/174;
    background: url(../img/bg_footer.svg) no-repeat right bottom/contain;
    pointer-events: none;
    z-index: -1;
  }
  .secEntry__secTit {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .secEntry__secTit::before {
    width: min(44%, 148px);
    margin-bottom: 20px;
  }
  .secEntry__secTit::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 106px;
    aspect-ratio: 196/73;
    background: url(../img/txt_footer.svg) no-repeat left top/contain;
    pointer-events: none;
  }
  .secEntry__btn {
    width: min(100%, 220px);
    font-size: 16px;
    margin: 0 auto 0 0;
  }
  .secEntry__btn a {
    height: 55px;
    padding-inline: 40px;
    background-position: right 15px center;
    background-size: 22px;
  }
}
/*# sourceMappingURL=style.css.map */