@charset "UTF-8";

:root {
  --lpSetSize: (100vw / 1400)* 0.7111;
}

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,
i,
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;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.l-header {
  padding: 0;
  position: relative;
  z-index: 999;
  background-color: #fff;
  overflow-x: clip;
}

.l-footer {
  padding: 0;
  position: relative;
  z-index: 999;
  background-color: #fff;
  overflow-x: clip;
}

.pc-footer {
  margin: 0;
}

/*-------------------------
 Content
-------------------------*/
.l-container {
  width: 100%;
  overflow: clip;
}

#feature {
  box-sizing: border-box;
  overflow: clip;
  position: relative;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
  width: 100%;
  color: #000;
  display: flex;
}

#feature .feature__inner {
  width: 100%;
  height: fit-content;
  margin: auto;
  position: relative;
  overflow: clip;
  font-feature-settings: "palt";
}

#feature a {
  transition: all 0.3s ease-in-out;
  display: block;
  transform: none;
  text-decoration: none;
}

#feature a:hover {
  cursor: pointer;
  opacity: .7;
  transition: all 0.3s ease-in-out;
}

#feature img,
svg,
video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

#feature .left {
  width: 57.1429%;
  overflow: hidden;
  position: sticky;
  top: 80px;
  left: 0;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#feature .right {
  width: 42.8571%;
}

#feature .section__inner {
  width: 100%;
}

#feature .block_area {
  position: relative;
  height: fit-content;
}

#feature .section {
  position: relative;
}

/*-------------------------
 fade
-------------------------*/
#feature .fadeIn {
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}

#feature .fadeIn.active {
  opacity: 1;
}

#feature .fadeUp {
  opacity: 0;
  transform: translateY(60px);
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#feature .fadeUp.active {
  opacity: 1;
  transform: none;
  visibility: visible;
}

#feature .fadeUp.delay {
  transition-delay: 0.4s;
}

#feature .heart figure {
  opacity: 0;
  transition: all ease-out 0.8s;
  transform: translate3d(0, 40px, 0);
}

#feature .heart.active figure {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#feature .heart.active figure:nth-child(1) {
  transition-delay: 0s;
}

#feature .heart.active figure:nth-child(2) {
  transition-delay: 0.4s;
}

#feature .heart.active figure:nth-child(3) {
  transition-delay: 0.8s;
}

/*-------------------------
 Slider
-------------------------*/
#feature .hero_bottom_image {
  margin: calc(7 * var(--lpSetSize)) auto 0;
  height: fit-content;
  transform: translateX(calc(-5 * var(--lpSetSize)));
}

#feature .splide__slide {
  width: calc(182 * var(--lpSetSize)) !important;
}

#feature .splide__slide img {
  width: 100%;
  height: auto;
  display: block;
}

#feature .splide__list {
  gap: calc(26.5 * var(--lpSetSize));
}

/*-------------------------
 Follow
-------------------------*/
#feature .follow {
  width: calc(160 * var(--lpSetSize));
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease, transform 1s ease;
  position: fixed;
  bottom: calc(30 * var(--lpSetSize));
  right: calc(10 * var(--lpSetSize));
}

#feature .follow.is-show {
  opacity: 1;
  pointer-events: auto;
  position: fixed;
  bottom: calc(30 * var(--lpSetSize));
  right: calc(10 * var(--lpSetSize));
  z-index: 50;
}

/*-------------------------
 text_animation
-------------------------*/
#feature .anim_txt {
  display: flex;
  overflow: hidden;
}

#feature .anim_txt span {
  transform: translateY(50px);
}

#feature .anim_txt.active span {
  animation: textanimation 1s forwards;
}

@keyframes textanimation {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}

/*-------------------------
 hero
-------------------------*/
#feature .hero {
  margin: 0 auto;
}

#feature .scale {
  transform: scale(0.83);
}

#feature .hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #fcd4de;
  z-index: -1;
}

#feature .hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #f2f7f9;
  z-index: -1;
}

#feature .hero_ttl h1 {
  width: calc(879.498 * var(--lpSetSize));
  margin: 0 auto;
}

#feature .hero_ttl p {
  font-size: calc(20.68 * var(--lpSetSize));
  letter-spacing: 0.025em;
  line-height: 1.61;
  text-align: center;
  margin: calc(25 * var(--lpSetSize)) 0 0 calc(5 * var(--lpSetSize));
}

#feature .hero_img {
  position: relative;
  width: calc(413.4635 * var(--lpSetSize));
  margin: auto;
}

#feature .hero_main {
  width: calc(413.4635 * var(--lpSetSize));
  margin: calc(28 * var(--lpSetSize)) auto 0;
  transform: translateX(calc(-3 * var(--lpSetSize)));
}

#feature .hero_txt {
  width: calc(161 * var(--lpSetSize));
  position: absolute;
  top: calc(10 * var(--lpSetSize));
  left: calc(-119 * var(--lpSetSize));
}

#feature .heart01 {
  width: calc(34.0506 * var(--lpSetSize));
  position: absolute;
  top: calc(279 * var(--lpSetSize));
  left: calc(292 * var(--lpSetSize));
}

#feature .heart02 {
  width: calc(24.5309 * var(--lpSetSize));
  position: absolute;
  top: calc(257 * var(--lpSetSize));
  left: calc(331 * var(--lpSetSize));
}

#feature .heart03 {
  width: calc(23.5023 * var(--lpSetSize));
  position: absolute;
  top: calc(227 * var(--lpSetSize));
  left: calc(319 * var(--lpSetSize));
}


#feature .hero_slider h2 {
  width: 100%;
  position: relative;
  display: inline-block;
  font-size: calc(20 * var(--lpSetSize));
  letter-spacing: 0;
  line-height: 1.466;
  text-align: center;
  margin: calc(25 * var(--lpSetSize)) 0 0 calc(-1 * var(--lpSetSize));
  color: #60b4e2;
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#feature .hero_slider h2 span {
  font-size: calc(23 * var(--lpSetSize));
  font-weight: 600;
}

#feature .hero_slider h2::before,
#feature .hero_slider h2::after {
  content: "";
  display: inline-block;
  width: calc(20 * var(--lpSetSize));
  height: calc(10.5648 * var(--lpSetSize));
  background: url("../img/arrow.png") no-repeat center / contain;
  margin: 0 calc(10 * var(--lpSetSize)) calc(5 * var(--lpSetSize));
  vertical-align: middle;
}

/*-------------------------
 lead
-------------------------*/
#feature .lead {
  font-size: calc(24 * var(--lpSetSize));
  line-height: 2.14;
  letter-spacing: 0.025em;
  text-align: center;
  padding-top: calc(68 * var(--lpSetSize));
}

/*-------------------------
 section
-------------------------*/
#feature .sec01 {
  padding-bottom: calc(135 * var(--lpSetSize));
}

#feature .sec02 {
  background: #f2f7f9;
  padding-bottom: calc(100 * var(--lpSetSize));
}

#feature .sec03 {
  background: #fff;
  padding-bottom: calc(80 * var(--lpSetSize));
}

#feature .sec04 {
  background: #f2f7f9;
  padding-bottom: calc(100 * var(--lpSetSize));
}

#feature .sec05 {
  background: #fff;
  padding-bottom: calc(102 * var(--lpSetSize));
}

#feature .sec06 {
  background: #f2f7f9;
  padding-bottom: calc(101 * var(--lpSetSize));
}

#feature .sec07 {
  padding-bottom: calc(215 * var(--lpSetSize));
}

#feature .sec01 h2 {
  margin: calc(107 * var(--lpSetSize)) 0 0 calc(4 * var(--lpSetSize));
  font-size: calc(35 * var(--lpSetSize));
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  color: #61b4e2;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
}

#feature .sec01 p {
  font-size: calc(26 * var(--lpSetSize));
  letter-spacing: 0.025em;
  line-height: 2;
  text-align: center;
  margin: calc(-2 * var(--lpSetSize)) 0 0 calc(4 * var(--lpSetSize));
  color: #61b4e2;
  font-family:
    "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 300;
  font-style: normal;
}

#feature .sec02 h2 {
  width: calc(93.0469 * var(--lpSetSize));
  margin: 0 auto;
  padding-top: calc(93 * var(--lpSetSize));
  transform: translateX(calc(-14 * var(--lpSetSize)));
}

#feature .sec03 h2 {
  width: calc(105.439 * var(--lpSetSize));
  margin: 0 auto;
  padding-top: calc(100 * var(--lpSetSize));
  transform: translateX(calc(-14 * var(--lpSetSize)));
}

#feature .sec04 h2 {
  width: calc(111.0107 * var(--lpSetSize));
  margin: 0 auto;
  padding-top: calc(100 * var(--lpSetSize));
  transform: translateX(calc(-14 * var(--lpSetSize)));
}

#feature .sec05 h2 {
  width: calc(109.502 * var(--lpSetSize));
  margin: 0 auto;
  padding-top: calc(101 * var(--lpSetSize));
  transform: translateX(calc(-10 * var(--lpSetSize)));
}

#feature .sec06 h2 {
  width: calc(111.0205 * var(--lpSetSize));
  margin: 0 auto;
  padding-top: calc(100 * var(--lpSetSize));
  transform: translateX(calc(-11 * var(--lpSetSize)));
}

#feature .section h3 {
  margin: calc(41 * var(--lpSetSize)) auto 0;
  font-size: calc(32 * var(--lpSetSize));
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: center;
  color: #61b4e2;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform: translateX(calc(3 * var(--lpSetSize)));
}

#feature .section.sec03 h3 {
  margin-top: calc(43 * var(--lpSetSize));
}

#feature .section.sec04 h3 {
  margin-top: calc(45 * var(--lpSetSize));
  transform: translateX(calc(3 * var(--lpSetSize)));
}

#feature .section.sec05 h3 {
  margin-top: calc(44 * var(--lpSetSize));
  transform: translateX(calc(3 * var(--lpSetSize)));
}

#feature .section.sec06 h3 {
  margin-top: calc(45 * var(--lpSetSize));
}

#feature .sec02 .frame_txt {
  width: calc(620 * var(--lpSetSize));
  margin: calc(43 * var(--lpSetSize)) auto 0;
  padding: calc(46 * var(--lpSetSize)) calc(44 * var(--lpSetSize)) calc(45 * var(--lpSetSize));
  border: calc(1.3 * var(--lpSetSize)) solid #60b4e2;
  font-size: calc(24 * var(--lpSetSize));
  line-height: 1.97;
  letter-spacing: 0.025em;
  background: #fff;
  position: relative;
}

#feature .sec03 .frame_txt {
  width: calc(620 * var(--lpSetSize));
  margin: calc(43 * var(--lpSetSize)) auto 0;
  padding: calc(46 * var(--lpSetSize)) calc(49 * var(--lpSetSize));
  border: calc(1.3 * var(--lpSetSize)) solid #60b4e2;
  font-size: calc(24 * var(--lpSetSize));
  line-height: 1.97;
  letter-spacing: 0.025em;
  background: #f2f7f9;
  position: relative;
}

#feature .sec04 .frame_txt {
  width: calc(620 * var(--lpSetSize));
  margin: calc(42 * var(--lpSetSize)) auto 0;
  padding: calc(47 * var(--lpSetSize)) calc(56 * var(--lpSetSize));
  border: calc(1.3 * var(--lpSetSize)) solid #60b4e2;
  font-size: calc(24 * var(--lpSetSize));
  line-height: 1.97;
  letter-spacing: 0.025em;
  background: #fff;
  position: relative;
  transform: translateX(calc(2 * var(--lpSetSize)));
}

#feature .sec05 .frame_txt {
  width: calc(620 * var(--lpSetSize));
  margin: calc(42 * var(--lpSetSize)) auto 0;
  padding: calc(48 * var(--lpSetSize)) calc(74.5 * var(--lpSetSize)) calc(48 * var(--lpSetSize));
  border: calc(1.3 * var(--lpSetSize)) solid #60b4e2;
  font-size: calc(24 * var(--lpSetSize));
  line-height: 1.97;
  letter-spacing: 0.025em;
  background: #f2f7f9;
  position: relative;
  transform: translateX(calc(2 * var(--lpSetSize)));
}

#feature .sec06 .frame_txt {
  width: calc(620 * var(--lpSetSize));
  margin: calc(41 * var(--lpSetSize)) auto 0;
  padding: calc(48 * var(--lpSetSize)) calc(43.9 * var(--lpSetSize)) calc(45 * var(--lpSetSize));
  border: calc(1.3 * var(--lpSetSize)) solid #60b4e2;
  font-size: calc(24 * var(--lpSetSize));
  line-height: 1.97;
  letter-spacing: 0.025em;
  background: #fff;
  position: relative;
  transform: translateX(calc(2 * var(--lpSetSize)));
}

#feature .frame_txt::before {
  content: "";
  position: absolute;
  width: calc(60.2904 * var(--lpSetSize));
  height: calc(63.3732 * var(--lpSetSize));
  top: calc(-14* var(--lpSetSize));
  left: calc(-13* var(--lpSetSize));
  background: url("../img/border.png") no-repeat center / contain;
}

#feature .frame_txt::after {
  content: "";
  position: absolute;
  width: calc(60.2904 * var(--lpSetSize));
  height: calc(63.3732 * var(--lpSetSize));
  bottom: calc(-14* var(--lpSetSize));
  right: calc(-13* var(--lpSetSize));
  background: url("../img/border.png") no-repeat center / contain;
}

#feature .flex {
  display: flex;
  margin-top: calc(82 * var(--lpSetSize));
  padding: 0 calc(42 * var(--lpSetSize));
}

#feature .anim_txt {
  margin-top: calc(95 * var(--lpSetSize));
  font-size: calc(50 * var(--lpSetSize));
  line-height: 1;
  color: #61b4e2;
  text-align: center;
  font-family: "hardcover-vf", sans-serif;
  font-variation-settings: "wght" 400;
  overflow: hidden;
  justify-content: center;
}

#feature .heart_bottom {
  width: calc(50 * var(--lpSetSize));
  margin: calc(30 * var(--lpSetSize)) auto 0;
}

#feature .txt_bottom {
  font-size: calc(26 * var(--lpSetSize));
  letter-spacing: 0.05em;
  line-height: 2.1;
  text-align: center;
  margin-top: calc(34 * var(--lpSetSize));
}

/*-------------------------
 image
-------------------------*/
#feature .color_bag {
  width: calc(641.5977 * var(--lpSetSize));
  margin: calc(-1 * var(--lpSetSize)) auto 0;
  transform: translateX(calc(-2 * var(--lpSetSize)));
}

#feature .item01 {
  width: calc(330 * var(--lpSetSize));
  margin: calc(80 * var(--lpSetSize)) 0 0 calc(76 * var(--lpSetSize));
}

#feature .item02 {
  width: calc(330 * var(--lpSetSize));
  margin: calc(-364 * var(--lpSetSize)) 0 0 calc(435 * var(--lpSetSize));
}

#feature .item03 {
  width: calc(412.1471 * var(--lpSetSize));
  margin: calc(-79 * var(--lpSetSize)) 0 0 calc(126 * var(--lpSetSize));
}

#feature .item04 {
  width: calc(647.8071 * var(--lpSetSize));
  margin: calc(69 * var(--lpSetSize)) auto 0;
  transform: translateX(calc(4 * var(--lpSetSize)));
}

#feature .item05 {
  width: calc(300 * var(--lpSetSize));
  margin: calc(-27 * var(--lpSetSize)) auto 0;
}

#feature .item06 {
  width: calc(589.2228 * var(--lpSetSize));
  margin: calc(64 * var(--lpSetSize)) 0 0 calc(89 * var(--lpSetSize));
}

#feature .item07 {
  width: calc(347.6459 * var(--lpSetSize));
  margin: calc(-319 * var(--lpSetSize)) 0 0 calc(426 * var(--lpSetSize));
}

#feature .item08 {
  width: calc(416.2156 * var(--lpSetSize));
  margin: calc(-93 * var(--lpSetSize)) 0 0 calc(168 * var(--lpSetSize));
}

#feature .item09 {
  width: calc(375.1384 * var(--lpSetSize));
  margin: calc(32 * var(--lpSetSize)) 0 0 calc(107 * var(--lpSetSize));
}

#feature .item10 {
  width: calc(366.5908 * var(--lpSetSize));
  margin: calc(-366 * var(--lpSetSize)) 0 0 calc(391 * var(--lpSetSize));
}

#feature .img01 {
  width: calc(570 * var(--lpSetSize));
  margin: calc(63 * var(--lpSetSize)) 0 0 calc(42 * var(--lpSetSize));
}

#feature .img02 {
  width: calc(570 * var(--lpSetSize));
  margin: calc(-92 * var(--lpSetSize)) calc(42 * var(--lpSetSize)) 0 auto;
  position: relative;
  z-index: 10;
}

#feature .img03 {
  width: calc(570 * var(--lpSetSize));
  margin: calc(70 * var(--lpSetSize)) calc(41 * var(--lpSetSize)) 0 auto;
}

#feature .img04 {
  width: calc(570 * var(--lpSetSize));
  margin: calc(-70 * var(--lpSetSize)) 0 0 calc(44 * var(--lpSetSize));
  position: relative;
  z-index: 10;
}

#feature .img05 {
  width: calc(570.0303 * var(--lpSetSize));
  margin: calc(82 * var(--lpSetSize)) auto 0;
}

#feature .img06 {
  width: calc(654.5528 * var(--lpSetSize));
  margin: calc(82 * var(--lpSetSize)) auto 0;
}

#feature .img09 {
  width: calc(697.0001 * var(--lpSetSize));
  margin: calc(33 * var(--lpSetSize)) auto 0;
}

#feature .img09 img {
  transform: translateX(calc(8 * var(--lpSetSize)));
}
