@charset "UTF-8";
/*--------------------------
	Base
--------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, 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, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 52.5%;
  }
}

body {
  *font-size: small;
  *font: x-small;
  _font-size: 14px;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

img {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}


html {
  font-size: 10px;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83333vw; /* 10px / 1200px * 100 */
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 2.85714286vw; /* 10px / 350px * 100 */
  }
}

body {
  background: #fff;
  color: #530508;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 700px) {
  body {
    font-size: 1.4rem;
  }
}

.wrap {
  overflow: hidden;
  position: relative;
}

img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

sup {
  font-size: 50%;
  vertical-align: super;
}

/*--------------------------
	Layout
--------------------------*/
.l-inner {
  margin: 0 auto;
  width: 1080px;
}
@media screen and (max-width: 1200px) {
  .l-inner {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .l-inner {
    padding: 0 2.5rem;
    width: 100%;
  }
}

/*--------------------------
	module
--------------------------*/
.header__logo {
  position: fixed;
  top: 0;
  left: 5%;
  z-index: 999;
  width: 23rem;
}
@media screen and (max-width: 700px) {
  .header__logo {
    width: 15rem;
  }
}
.header__side-floating-banner {
  position: fixed;
  bottom: 5%;
  right: -1rem;
  z-index: 999;
  width: 18rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
@media screen and (max-width: 700px) {
  .header__side-floating-banner {
    width: 104.5%;
    right: -2.3%;
    bottom: -1%;
  }
}
.header__side-floating-banner.is-visible {
  opacity: 1;
  visibility: visible;
}

/*--------------------------
	page
--------------------------*/
/* フェードイン付与 */
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.u-fade-type-up {
  transform: translateY(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  transition: 1s;
  transform: translateY(0);
  opacity: 1;
}

/* トリガー発火でis-activeを付与 */
.is-active .u-fade-type-up {
  transition: 1s;
  transform: translateY(0);
  opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2) {
  transition-delay: 0.3s;
}

.is-active .u-fade-type-up:nth-child(3) {
  transition-delay: 0.6s;
}

.is-active .u-fade-type-up:nth-child(4) {
  transition-delay: 0.9s;
}

.is-active .u-fade-type-up:nth-child(5) {
  transition-delay: 1.3s;
}

.is-active .u-fade-type-up:nth-child(6) {
  transition-delay: 1.6s;
}

/* 初期状態（完全に隠す） */
.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* animate.css が付いた後は強制的に可視化 */
.animate-on-scroll.animate__animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* animate.css の動きを控えめにする */
.animate__animated.animate__small {
  --animate-duration: 1.5s; /* 少しゆっくり */
  animation-timing-function: ease-in-out; /* 滑らかに */
}

/* 代表的なものを弱める例 */
.animate__bounce.animate__small {
  animation-name: bounce-small;
}

@keyframes bounce-small {
  0%, 20%, 53%, 80%, 100% {
    transform: translateY(0);
  }
  40%, 43% {
    transform: translateY(-10px);
  } /* 元は -30px */
  70% {
    transform: translateY(-7px);
  }
  90% {
    transform: translateY(-3px);
  }
}
.animate__pulse.animate__small {
  animation-name: pulse-small;
}

@keyframes pulse-small {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  } /* 元は 1.05 */
  100% {
    transform: scale(1);
  }
}

@keyframes shakeXSlow {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-5px); }
  20% { transform: translateX(5px); }
  30% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  50% { transform: translateX(-3px); }
  60% { transform: translateX(3px); }
  70% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
  90% { transform: translateX(-1px); }
}

.sec01__truck.animate-truck {
  animation: shakeXSlow 2s infinite ease-in-out; /* ← ここを 2s にしてゆっくりに */
  will-change: transform;
  transform-style: preserve-3d;
}


.mv__food01, .mv__food02, .mv__food03, .mv__food04, .mv__food05,
.mv__food06, .mv__food07, .mv__food08, .mv__food09, .mv__food10,
.mv__food11, .mv__food12, .mv__food13, .mv__food14 {
  opacity: 0;
}

.mv__wrapper {
  width: 100%;
  min-width: 100vw;
  height: 100vh;
  max-height: 56.25vw;
  position: relative;
}
@media screen and (max-width: 700px) {
  .mv__wrapper {
    max-height: 140vw;
  }
}
.mv__wrapper::before {
  background-image: url(../images/top/mv-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 700px) {
  .mv__wrapper::before {
    background-image: url(../images/top/mv-bg-sp.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}
.mv__heading {
  position: absolute;
  width: 33%;
  top: 23%;
  left: 34%;
}
@media screen and (max-width: 700px) {
  .mv__heading {
    width: 27rem;
    top: 37%;
    left: 12%;
  }
}
.mv__heading img {
  width: 100%;
  height: auto;
}
.mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mv__bg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.mv__food-group {
  z-index: 10;
}
.mv__food01 {
  position: absolute;
  top: 55%;
  left: -5%;
  z-index: 2;
  width: 20%;
}
@media screen and (max-width: 700px) {
  .mv__food01 {
    position: absolute;
    top: 40%;
    left: -16%;
    z-index: 2;
    width: 31%;
  }
}
.mv__food02 {
  position: absolute;
  top: 16%;
  right: 16%;
  z-index: 2;
  width: 16%;
}
@media screen and (max-width: 700px) {
  .mv__food02 {
    position: absolute;
    top: -11%;
    right: 3%;
    z-index: 2;
    width: 30%;
  }
}
.mv__food03 {
  position: absolute;
  top: 57%;
  left: 19%;
  z-index: 2;
  width: 8%;
}
@media screen and (max-width: 700px) {
  .mv__food03 {
    position: absolute;
    top: 84%;
    left: 14%;
    z-index: 2;
    width: 17%;
  }
}
.mv__food04 {
  position: absolute;
  top: -20%;
  left: 47%;
  z-index: 2;
  width: 25%;
  height: auto;
}
@media screen and (max-width: 700px) {
  .mv__food04 {
    position: absolute;
    top: -8%;
    left: 35%;
    z-index: 2;
    width: 30%;
    height: auto;
  }
}
.mv__food05 {
  position: absolute;
  top: 25%;
  right: -8%;
  z-index: 2;
  width: 25%;
  height: auto;
}
@media screen and (max-width: 700px) {
  .mv__food05 {
    position: absolute;
    top: 20%;
    right: -23%;
    z-index: 2;
    width: 41%;
    height: auto;
  }
}
.mv__food06 {
  position: absolute;
  top: -25%;
  left: -10%;
  z-index: 2;
  width: 25%;
}
@media screen and (max-width: 700px) {
  .mv__food06 {
    position: absolute;
    top: -8%;
    left: -26%;
    z-index: 2;
    width: 40%;
  }
}
.mv__food07 {
  position: absolute;
  top: 67%;
  right: -1%;
  z-index: 2;
  width: 12%;
}
@media screen and (max-width: 700px) {
  .mv__food07 {
    position: absolute;
    top: 48%;
    right: -12%;
    z-index: 2;
    width: 25%;
  }
}
.mv__food08 {
  position: absolute;
  top: 85%;
  left: 20%;
  z-index: 2;
  width: 15%;
  z-index: 200;
}
@media screen and (max-width: 700px) {
  .mv__food08 {
    position: absolute;
    top: 100%;
    left: -1%;
    z-index: 2;
    width: 25%;
    z-index: 200;
  }
}
.mv__food09 {
  position: absolute;
  top: 90%;
  left: -3%;
  z-index: 2;
  width: 13%;
  z-index: 200;
}
@media screen and (max-width: 700px) {
  .mv__food09 {
    position: absolute;
    top: 78%;
    left: -20%;
    z-index: 2;
    width: 30%;
    z-index: 200;
  }
}
.mv__food10 {
  position: absolute;
  top: 65%;
  right: 13%;
  z-index: 2;
  width: 23%;
  z-index: 200;
}
@media screen and (max-width: 700px) {
  .mv__food10 {
    position: absolute;
    top: 13%;
    right: 17%;
    z-index: 2;
    width: 27%;
    z-index: 200;
  }
}
.mv__food11 {
  position: absolute;
  top: -33%;
  left: 8%;
  z-index: 2;
  width: 38%;
  z-index: 200;
}
@media screen and (max-width: 700px) {
  .mv__food11 {
    position: absolute;
    top: 10%;
    left: 17%;
    z-index: 2;
    width: 35%;
    z-index: 200;
  }
}
.mv__food12 {
  position: absolute;
  top: 16%;
  left: -2%;
  z-index: 2;
  width: 25%;
  z-index: 200;
}
@media screen and (max-width: 700px) {
  .mv__food12 {
    position: absolute;
    top: 16%;
    left: -13%;
    z-index: 2;
    width: 36%;
    z-index: 200;
  }
}
.mv__food13 {
  position: absolute;
  bottom: -30%;
  right: -1%;
  z-index: 2;
  width: 15%;
  z-index: 200;
}
@media screen and (max-width: 700px) {
  .mv__food13 {
    position: absolute;
    bottom: 4%;
    right: -1%;
    z-index: 2;
    width: 23%;
    z-index: 200;
  }
}
.mv__food14 {
  position: absolute;
  top: -20%;
  right: -17%;
  z-index: 2;
  width: 35%;
  z-index: 30;
}
@media screen and (max-width: 700px) {
  .mv__food14 {
    position: absolute;
    top: 4%;
    right: -21%;
    z-index: 2;
    width: 35%;
    z-index: 30;
  }
}

.sec01 {
  position: relative;
  margin-top: -7rem;
}
@media screen and (max-width: 700px) {
  .sec01 {
    margin-top: -2rem;
  }
}
.sec01__dish {
  position: relative;
  width: 110%;
  margin: 0 calc(50% - 54vw);
  height: auto;
  z-index: 100;
}
.sec01__dish img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1600px) {
  .sec01__dish {
    width: 120%;
    margin: 0 calc(50% - 60vw);
  }
}
@media screen and (max-width: 1440px) {
  .sec01__dish {
    width: 143%;
    margin: 0 calc(50% - 70vw);
  }
}
@media screen and (max-width: 1340px) {
  .sec01__dish {
    width: 160vw;
    margin: 0 calc(50% - 80vw);
  }
}
@media screen and (max-width: 1300px) {
  .sec01__dish {
    width: 155vw;
    margin: 0 calc(50% - 78vw);
  }
}
@media screen and (max-width: 700px) {
  .sec01__dish {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: 116rem;
  }
}
.sec01__bg {
  position: absolute;
  top: 4%;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1440px) {
  .sec01__bg {
    top: 7%;
  }
}
@media screen and (max-width: 700px) {
  .sec01__bg {
    top: 2%;
  }
}
.sec01__contents {
  position: relative;
  z-index: 200;
}
.sec01__img-food01 {
  position: absolute;
  top: 53%;
  left: -18%;
  width: 30rem;
}
@media screen and (max-width: 1200px) {
  .sec01__img-food01 {
    top: 44%;
    left: 5%;
  }
}
@media screen and (max-width: 700px) {
  .sec01__img-food01 {
    top: 27%;
    left: -23%;
    width: 40%;
  }
}
.sec01__img-food02 {
  position: absolute;
  top: 95%;
  left: -5%;
  width: 25rem;
}
@media screen and (max-width: 1200px) {
  .sec01__img-food02 {
    left: 8%;
  }
}
@media screen and (max-width: 700px) {
  .sec01__img-food02 {
    top: 113%;
    left: -19%;
    width: 21%;
  }
}
.sec01__img-food03 {
  position: absolute;
  top: 66%;
  right: -6%;
  width: 23rem;
}
@media screen and (max-width: 1200px) {
  .sec01__img-food03 {
    right: 10%;
  }
}
@media screen and (max-width: 700px) {
  .sec01__img-food03 {
    top: 28%;
    right: -17%;
    width: 39%;
  }
}
.sec01__img-food04 {
  position: absolute;
  top: 100%;
  right: -10%;
  width: 17rem;
}
@media screen and (max-width: 1200px) {
  .sec01__img-food04 {
    right: 10%;
  }
}
@media screen and (max-width: 700px) {
  .sec01__img-food04 {
    top: 92%;
    right: -15%;
    width: 22%;
  }
}
.sec01__truck {
  text-align: center;
  width: 16rem;
  margin: -11% auto 8rem;
}
@media screen and (max-width: 700px) {
  .sec01__truck {
    text-align: center;
    width: 33%;
    margin: -11vw auto 6rem;
  }
}
.sec01__heading {
  text-align: center;
  width: 9rem;
  margin: 0 auto 8rem;
}
@media screen and (max-width: 1200px) {
  .sec01__heading {
    width: 6%;
  }
}
@media screen and (max-width: 700px) {
  .sec01__heading {
    width: 17%;
    margin: 0 auto 4rem;
  }
}
.sec01__txt {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.6;
  margin-bottom: 9rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 700px) {
  .sec01__txt {
    font-size: 1.2rem;
    margin-bottom: 4rem;
  }
}
.sec01__heading02 {
  text-align: center;
  width: 40%;
  margin: 0 auto 8rem;
  position: relative;
  left: 0%;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 700px) {
  .sec01__heading02 {
    font-size: 2.2rem;
    width: auto;
    margin: 0 auto 8rem;
  }
}
.sec01__heading02-en {
  position: absolute;
  bottom: -5.4rem;
  right: -4rem;
  width: 60%;
}
@media screen and (max-width: 700px) {
  .sec01__heading02-en {
    bottom: -4.1rem;
    right: 0.2rem;
    width: 54%;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .splide__group {
    margin-bottom: 6rem;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.sec01 .scroll-infinity__wrap {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.sec01 .scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0rem;
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__list {
    margin: 0.3rem 0 0;
  }
  .sec01 .scroll-infinity__list--right {
    margin: 0.3rem 0 0 0rem;
  }
}
.sec01 .scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.sec01 .scroll-infinity__item {
  width: 15vw;
  margin: 0 0.4rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item {
    width: 33vw;
    margin: 0 0.2rem;
  }
}
.sec01 .scroll-infinity__item--01 {
  width: 17.6vw !important;
}
@media screen and (max-width: 1440px) {
  .sec01 .scroll-infinity__item--01 {
    width: 23.6vw !important;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item--01 {
    width: 40vw !important;
  }
}
.sec01 .scroll-infinity__item--02 {
  width: 11vw !important;
}
@media screen and (max-width: 1440px) {
  .sec01 .scroll-infinity__item--02 {
    width: 14.7vw !important;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item--02 {
    width: 23.7vw !important;
  }
}
.sec01 .scroll-infinity__item--03 {
  width: 24vw !important;
}
@media screen and (max-width: 1440px) {
  .sec01 .scroll-infinity__item--03 {
    width: 32vw !important;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item--03 {
    width: 48.8vw !important;
  }
}
.sec01 .scroll-infinity__item--04 {
  width: 17vw !important;
}
@media screen and (max-width: 1440px) {
  .sec01 .scroll-infinity__item--04 {
    width: 22.7vw !important;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item--04 {
    width: 35vw !important;
  }
}
.sec01 .scroll-infinity__item--05 {
  width: 19.6vw !important;
}
@media screen and (max-width: 1440px) {
  .sec01 .scroll-infinity__item--05 {
    width: 26.2vw !important;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item--05 {
    width: 42.8vw !important;
  }
}
.sec01 .scroll-infinity__item--06 {
  width: 12.3vw !important;
}
@media screen and (max-width: 1440px) {
  .sec01 .scroll-infinity__item--06 {
    width: 16.4vw !important;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item--06 {
    width: 26.3vw !important;
  }
}
.sec01 .scroll-infinity__item--07 {
  width: 20.7vw !important;
}
@media screen and (max-width: 1440px) {
  .sec01 .scroll-infinity__item--07 {
    width: 27.7vw !important;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item--07 {
    width: 43.2vw !important;
  }
}
.sec01 .scroll-infinity__item--08 {
  width: 15.5vw !important;
}
@media screen and (max-width: 1440px) {
  .sec01 .scroll-infinity__item--08 {
    width: 20.7vw !important;
  }
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__item--08 {
    width: 33.8vw !important;
  }
}
.sec01 .scroll-infinity__item img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.sec01 .scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}
.sec01 .scroll-infinity__list--right .scroll-infinity__item {
  width: 16vw;
  margin: 0 0.4rem;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 700px) {
  .sec01 .scroll-infinity__list--right .scroll-infinity__item {
    width: 33vw;
    margin: 0 0.2rem;
  }
}

.sec02 {
  background: #FD7373;
  background: radial-gradient(circle, rgba(253, 115, 115, 0) 0%, rgb(253, 115, 115) 0%, rgb(202, 57, 61) 55%, rgb(188, 41, 46) 100%);
  width: 100%;
  margin-top: -85.8rem;
  padding-top: 85rem;
  position: relative;
  /* 次ページボタンのスタイル */
  /* 前ページボタンのスタイル */
}
@media screen and (max-width: 1380px) {
  .sec02 {
    padding-top: 96rem;
  }
}
@media screen and (max-width: 700px) {
  .sec02 {
    margin-top: -8.8rem;
    padding-top: 0rem;
  }
}
.sec02::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec02__img-illustrator.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 45rem;
  top: 56rem;
}
@media screen and (max-width: 700px) {
  .sec02::before {
    width: 100%;
    height: 10rem;
    top: 4rem;
  }
}
.sec02__contents {
  padding: 3% 0 10rem;
}
@media screen and (max-width: 700px) {
  .sec02__contents {
    padding: 35% 0 5rem;
  }
}
.sec02__heading {
  text-align: center;
  width: 9%;
  margin: 0 auto 8rem;
}
.sec02__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .sec02__flex {
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
  }
}
.sec02__img01 {
  width: 40rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec02__img01 {
    width: 70%;
    margin-bottom: 2rem;
  }
}
.sec02__img01-txt {
  position: absolute;
  bottom: 1rem;
  color: #fff;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.4;
}
@media screen and (max-width: 700px) {
  .sec02__img01-txt {
    font-size: 2.7rem;
    bottom: 0;
  }
}
.sec02__txt {
  width: 51.9rem;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec02__txt {
    width: 100%;
  }
}
.sec02__txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: -17%;
  width: 0.1rem;
  height: 7rem;
  background-color: #fff;
  z-index: 1;
  transform: rotate(45deg);
}
@media screen and (max-width: 700px) {
  .sec02__txt::before {
    content: "";
    position: absolute;
    top: -85%;
    left: 90%;
    width: 0.1rem;
    height: 8rem;
    background-color: #fff;
    z-index: 1;
    transform: rotate(45deg);
  }
}
.sec02__sub-heading {
  font-size: 2.4rem;
  line-height: 1.6;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .sec02__sub-heading {
    font-size: 1.4rem;
  }
}
.sec02 .swiper {
  padding: 0 10vw;
  overflow: visible;
  padding-bottom: 44rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper {
    padding: 0 3vw;
    padding-bottom: 39rem;
  }
}
.sec02 .swiper::before {
  content: "";
  position: absolute;
  bottom: 23rem;
  right: 20%;
  width: 0.1rem;
  height: 19rem;
  background-color: #fff;
  z-index: 20;
  transform: rotate(40deg);
}
@media screen and (max-width: 700px) {
  .sec02 .swiper::before {
    bottom: 9rem;
    right: 20%;
    width: 0.1rem;
    height: 8rem;
  }
}
.sec02 .swiper-wrapper {
  overflow: visible;
}
.sec02 .swiper-slide {
  width: 50vw;
  height: auto;
  color: #ffffff;
  text-align: center;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: scale(0.9);
  opacity: 0.7;
}
.sec02 .swiper-slide-active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}
.sec02 .swiper-button-prev,
.sec02 .swiper-button-next {
  width: 24px; /* ボタンの幅 */
  height: 40px; /* ボタンの高さ */
  background-size: 24px 40px; /* 表示したいサイズ */
  transform: translateY(-50%);
  margin-top: 0;
}
.sec02 .swiper-button-next {
  background-image: url("https://kiomiru.co.jp/blog/wp-content/uploads/2021/09/img_arrow_black_01.png");
}
.sec02 .swiper-button-prev {
  background-image: url("https://kiomiru.co.jp/blog/wp-content/uploads/2021/09/img_arrow_black_01.png");
  transform: translateY(-50%) scale(-1, 1);
}
.sec02 .swiper-button-prev:after,
.sec02 .swiper-button-next:after {
  display: none;
}
.sec02 .swiper-description-box {
  position: absolute;
  top: 70%;
  left: 7%;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-description-box {
    top: 82%;
    left: 7%;
  }
}
.sec02 .swiper-heading {
  padding-bottom: 4rem;
  font-size: clamp(2.4rem, 3vw, 5rem);
  line-height: 1.7;
  text-align: left;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading {
    width: 100%;
    font-size: 2rem;
    padding-bottom: 1.5rem;
  }
}
.sec02 .swiper-heading--04 {
  line-height: 1.7;
}
.sec02 .swiper-heading-txt01 {
  background-color: #fff;
  border: solid 0.2rem #FE6667;
  border-radius: 0.5rem;
  color: #FE6667;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading-txt01 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec02 .swiper-heading-color01 {
  background-color: #fff;
  border: solid 0.2rem #FE6667;
  border-radius: 0.5rem;
  color: #FE6667 !important;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading-color01 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec02 .swiper-heading-txt01-color {
  color: #D92D2E;
}
.sec02 .swiper-heading-txt02 {
  background-color: #fff;
  border: solid 0.2rem #148F98;
  border-radius: 0.5rem;
  color: #148F98;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading-txt02 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec02 .swiper-heading-color02 {
  background-color: #fff;
  border: solid 0.2rem #148F98;
  border-radius: 0.5rem;
  color: #148F98 !important;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading-color02 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec02 .swiper-heading-txt02-color {
  color: #0EB0BC;
}
.sec02 .swiper-heading-txt03 {
  background-color: #fff;
  border: solid 0.2rem #F4A132;
  border-radius: 0.5rem;
  color: #F4A132;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading-txt03 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec02 .swiper-heading-color03 {
  background-color: #fff;
  border: solid 0.2rem #F4A132;
  border-radius: 0.5rem;
  color: #F4A132 !important;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading-color03 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec02 .swiper-heading-txt03-color {
  color: #FF7F00;
}
.sec02 .swiper-heading-txt04 {
  background-color: #fff;
  border: solid 0.2rem #5BBC08;
  border-radius: 0.5rem;
  color: #5BBC08;
  padding-left: 2rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading-txt04 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.sec02 .swiper-heading-color04 {
  background-color: #fff;
  border: solid 0.2rem #5BBC08;
  border-radius: 0.5rem;
  color: #489D00 !important;
  padding-left: 2rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-heading-color04 {
    padding-left: 1rem;
  }
}
.sec02 .swiper-txt {
  text-align: left;
  width: 55%;
  font-size: 1.4rem;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-txt {
    font-size: 1.2rem;
    width: 95%;
  }
}
.sec02 .swiper-badge {
  position: absolute;
  width: 18%;
  top: 82%;
  right: 9%;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-badge {
    width: 30%;
    top: 32%;
    right: 7%;
  }
}
.sec02 .swiper-button-prev,
.sec02 .swiper-button-next {
  width: 6rem;
  height: 6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-button-prev,
  .sec02 .swiper-button-next {
    width: 4rem;
    height: 4rem;
    top: 14%;
  }
}
.sec02 .swiper-button-prev {
  left: 22%;
  background-image: url("../images/top/arrow-left.png");
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-button-prev {
    left: 2%;
  }
}
.sec02 .swiper-button-next {
  right: 22%;
  background-image: url("../images/top/arrow-right.png");
}
@media screen and (max-width: 700px) {
  .sec02 .swiper-button-next {
    right: 2%;
  }
}

.sec03 {
  background-color: #D9E5E6;
  padding: 12rem 0 20rem;
  position: relative;
}
.sec03__heading-en {
  position: absolute;
  top: -4.5%;
  left: -0.9%;
  width: 8%;
}
.sec03__img {
  position: relative;
  z-index: 50;
  margin-bottom: 6rem;
  z-index: 1;
}
.sec03__heading {
  position: absolute;
  top: 0;
  right: 5%;
  width: 16%;
}
.sec03__flex {
  display: flex;
  width: 80rem;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
}
.sec03__heading02 {
  font-size: 2.8rem;
  position: relative;
}
.sec03__heading02::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec03-heading-en.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40rem;
  height: 12rem;
  top: -70%;
  left: -80%;
  z-index: 40;
}
.sec03__heading-txt {
  width: 45rem;
  position: relative;
}
.sec03__heading-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: -21%;
  width: 0.1rem;
  height: 17.4rem;
  background-color: #000;
  z-index: 1;
  transform: rotate(45deg);
}

.sec04 {
  position: relative;
  width: 100vw;
  overflow-x: hidden;
  padding-top: 13rem;
  padding-bottom: 20rem;
  margin-top: -19rem;
}
.sec04__bg {
  background-color: #08B0BC;
  background-image: linear-gradient(180deg, transparent 96%, rgba(255, 255, 255, 0.17) 100%), linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.17) 100%);
  background-size: 30px 30px;
  background-repeat: repeat;
  z-index: 1;
  padding-top: 16.5rem;
  padding-bottom: 18rem;
}
@media screen and (max-width: 700px) {
  .sec04__bg {
    background-size: 20px 20px;
    padding-top: 4rem;
    padding-bottom: 11rem;
  }
}
.sec04__contents {
  position: relative;
}
.sec04__heading {
  width: 60rem;
  margin: 0 auto;
  padding: 0rem 0 6rem;
}
@media screen and (max-width: 700px) {
  .sec04__heading {
    width: 100%;
    position: relative;
    z-index: 3;
    padding: 0rem 0 3rem;
  }
}
.sec04__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec04__flex--row {
  flex-direction: row-reverse;
}
@media screen and (max-width: 700px) {
  .sec04__flex--row {
    flex-direction: column;
  }
}
.sec04__sub-heading {
  width: 43%;
}
@media screen and (max-width: 700px) {
  .sec04__sub-heading {
    width: 100%;
    margin-top: -28%;
  }
}
.sec04__sub-heading-img {
  width: 95%;
  padding-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec04__sub-heading-img {
    width: 100%;
    padding-bottom: 3rem;
  }
}
.sec04__main-heading {
  color: #fff;
  font-size: 4.8rem;
  line-height: 1.3;
  font-weight: 900;
  position: absolute;
  bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .sec04__main-heading {
    font-size: 2.7rem;
    bottom: 2rem;
  }
}
.sec04__sub-heading-txt {
  color: #fff;
  font-size: 1.6rem;
  width: 40rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .sec04__sub-heading-txt {
    width: 100%;
    font-size: 1.2rem;
    padding-bottom: 2rem;
  }
}
.sec04__sub-heading-txt-pink {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  width: 40rem;
  padding: 1.4rem 1rem 1.4rem 1rem;
  padding-left: 4rem;
  background-color: #FE6667;
  text-align: center;
  border-radius: 5rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec04__sub-heading-txt-pink {
    width: 100%;
    font-size: 1.5rem;
    padding-left: 5rem;
  }
}
.sec04__sub-heading-txt-pink::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec04__icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 4rem;
  height: 3rem;
  top: 1.9rem;
  left: 2.5rem;
}
@media screen and (max-width: 700px) {
  .sec04__sub-heading-txt-pink::before {
    width: 3rem;
    height: 3rem;
    top: 1rem;
  }
}
.sec04__img {
  width: 55%;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 700px) {
  .sec04__img {
    width: 100%;
    position: relative;
    z-index: 4;
  }
}
.sec04__img01 {
  position: absolute;
  top: -10%;
  right: -9%;
  width: 44%;
}
@media screen and (max-width: 700px) {
  .sec04__img01 {
    top: -5%;
    right: -2%;
    width: 40%;
  }
}
.sec04__img02 {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 40%;
}
.sec04__img03 {
  position: absolute;
  bottom: 7vw;
  left: 77%;
  z-index: 300;
  width: 39rem;
}
@media screen and (max-width: 700px) {
  .sec04__img03 {
    width: 17rem;
    bottom: 16rem;
  }
}
.sec04__heading-en {
  position: absolute;
  top: 6%;
  right: 1rem;
  width: 9.9rem;
  z-index: 3;
}
@media screen and (max-width: 1200px) {
  .sec04__heading-en {
    right: 1vw;
  }
}
@media screen and (max-width: 700px) {
  .sec04__heading-en {
    top: 13rem;
    right: 0;
    width: 4.5rem;
    z-index: 1;
  }
}

.sec05 {
  position: relative;
  width: 100vw;
  overflow-x: hidden;
  padding-top: 13rem;
  padding-bottom: 20rem;
  margin-top: -33rem;
}
@media screen and (max-width: 700px) {
  .sec05 {
    padding-top: 15rem;
    padding-bottom: 18rem;
  }
}
.sec05__bg {
  background-image: linear-gradient(180deg, transparent 96%, rgba(255, 255, 255, 0.17) 100%), linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.17) 100%);
  background-color: #E8D600;
  background-size: 30px 30px;
  background-repeat: repeat;
  clip-path: url(#wave-clip-inverse-pc);
  margin-top: -10rem;
  z-index: 1;
  padding-top: 16rem;
  padding-bottom: 11rem;
}
@media screen and (max-width: 700px) {
  .sec05__bg {
    clip-path: url(#wave-clip-inverse-sp);
    padding-top: 7rem;
    background-size: 20px 20px;
  }
}
.sec05__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .sec05__flex {
    flex-direction: column;
  }
}
.sec05__img {
  width: 54%;
}
@media screen and (max-width: 700px) {
  .sec05__img {
    width: 100%;
  }
}
.sec05__img02 {
  position: absolute;
  bottom: 5vw;
  left: 72%;
  transform: translateX(-50%);
  z-index: 300;
  width: 39rem;
}
@media screen and (max-width: 700px) {
  .sec05__img02 {
    width: 10%;
  }
}
.sec05__txt {
  width: 42%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .sec05__txt {
    width: 100%;
    margin-top: 2rem;
  }
}
.sec05__sub-heading-img {
  width: 100%;
  margin-bottom: 4rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec05__sub-heading-img {
    margin-bottom: 2rem;
    position: relative;
    z-index: 40;
  }
}
.sec05__sub-heading-catalog-img {
  width: 85%;
  display: block;
  position: relative;
  left: 3rem;
}
@media screen and (max-width: 700px) {
  .sec05__sub-heading-catalog-img {
    position: absolute;
    width: 10rem;
    left: 19rem;
    z-index: -1;
    top: -40%;
  }
}
.sec05__sub-heading-pink {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  padding: 1.4rem 1rem 1.4rem 1rem;
  padding-left: 0rem;
  background-color: #FE6667;
  text-align: center;
  border-radius: 5rem;
  position: absolute;
  bottom: 21rem;
  line-height: 1;
  width: 43rem;
}
@media screen and (max-width: 700px) {
  .sec05__sub-heading-pink {
    display: inline-block;
    font-size: 1.8rem;
    padding: 1rem;
    left: 0;
    bottom: 12rem;
    width: 84%;
  }
}
.sec05__main-heading {
  font-size: 4.8rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.3rem;
  margin: 0 auto;
  margin-top: 5rem;
  padding-left: 3rem;
}
@media screen and (max-width: 700px) {
  .sec05__main-heading {
    font-size: 2.7rem;
    padding-left: 0;
  }
}
.sec05__sub-txt {
  width: 94%;
  font-size: 1.6rem;
  font-style: 500;
  padding-bottom: 2rem;
  padding-left: 3rem;
}
@media screen and (max-width: 700px) {
  .sec05__sub-txt {
    width: 100%;
    font-size: 1.2rem;
    padding-bottom: 1.5rem;
    padding-left: 0;
  }
}
.sec05__sub-txt-add {
  width: 94%;
  font-size: 1.4rem;
  font-style: 400;
  padding-bottom: 2rem;
  padding-left: 3rem;
}
@media screen and (max-width: 700px) {
  .sec05__sub-txt-add {
    width: 100%;
    font-size: 1.1rem;
    padding-bottom: 0;
    padding-left: 0;
  }
}

.sec06 {
  position: relative;
  width: 100vw;
  overflow-x: hidden;
  padding-top: 13rem;
  padding-bottom: 20rem;
  margin-top: -33rem;
}
.sec06__bg {
  background-image: linear-gradient(180deg, transparent 96%, rgba(255, 255, 255, 0.17) 100%), linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.17) 100%);
  background-color: #FE6667;
  background-size: 30px 30px;
  background-repeat: repeat;
  clip-path: url(#wave-clip-inverse-pc);
  margin-top: -10rem;
  z-index: 1;
  padding-top: 13rem;
  padding-bottom: 18rem;
}
@media screen and (max-width: 700px) {
  .sec06__bg {
    clip-path: url(#wave-clip-inverse-sp);
    padding-top: 7rem;
    background-size: 20px 20px;
    padding-bottom: 11rem;
  }
}
.sec06__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec06__flex--row {
  flex-direction: row-reverse;
}
@media screen and (max-width: 700px) {
  .sec06__flex--row {
    flex-direction: column;
  }
}
.sec06__sub-heading {
  width: 43%;
}
@media screen and (max-width: 700px) {
  .sec06__sub-heading {
    width: 100%;
  }
}
.sec06__sub-heading-img {
  width: 95%;
  padding-bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .sec06__sub-heading-img {
    margin-top: -3rem;
    padding-bottom: 1.5rem;
    width: 100%;
  }
}
.sec06__main-heading {
  color: #fff;
  font-size: 4.8rem;
  line-height: 1.4;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 700px) {
  .sec06__main-heading {
    font-size: 2.7rem;
    line-height: 1.7;
    margin-top: -2.5rem;
  }
}
.sec06__main-heading-pr {
  padding-right: 1rem;
}
.sec06__main-heading-num {
  font-size: 6.2rem;
}
@media screen and (max-width: 700px) {
  .sec06__main-heading-num {
    font-size: 2.7rem;
  }
}
.sec06__main-heading-circle {
  color: #fff;
  background-color: #530508;
  font-size: 4.5rem;
  border-radius: 50%;
  padding: 0.8rem 1.9rem 1.3rem 2.2rem;
  margin: 0 -0.3rem;
}
@media screen and (max-width: 700px) {
  .sec06__main-heading-circle {
    font-size: 2.7rem;
    padding: 0.4rem 1rem 0.8rem 1.3rem;
  }
}
.sec06__sub-heading-txt {
  color: #fff;
  font-size: 1.6rem;
  width: 40rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .sec06__sub-heading-txt {
    width: 100%;
    font-size: 1.2rem;
    padding-bottom: 1.5rem;
  }
}
.sec06__sub-heading-txt-add {
  color: #fff;
  font-size: 1.4rem;
  width: 43rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .sec06__sub-heading-txt-add {
    width: 100%;
    font-size: 1.1rem;
    padding-bottom: 0;
  }
}
.sec06__img {
  width: 55%;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 700px) {
  .sec06__img {
    width: 100%;
  }
}
.sec06__img01 {
  position: absolute;
  top: -10%;
  right: 10%;
  width: 30%;
}
.sec06__img02 {
  position: absolute;
  bottom: -10%;
  left: -2%;
  width: 52%;
}
@media screen and (max-width: 700px) {
  .sec06__img02 {
    left: 50%;
    width: 50%;
  }
}
.sec06__img03 {
  position: absolute;
  bottom: 14%;
  left: -3%;
  z-index: 10;
  width: 19%;
}
@media screen and (max-width: 700px) {
  .sec06__img03 {
    bottom: 81%;
    left: 65%;
    z-index: 10;
    width: 45%;
  }
}

.sec07 {
  position: relative;
  width: 100vw;
  overflow-x: hidden;
  padding-top: 13rem;
  padding-bottom: 20rem;
  margin-top: -33rem;
}
.sec07__bg {
  background-image: linear-gradient(180deg, transparent 96%, rgba(255, 255, 255, 0.17) 100%), linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.17) 100%);
  background-color: #08B0BC;
  background-size: 30px 30px;
  background-repeat: repeat;
  /* 波線のclip-pathを適用 */
  clip-path: url(#wave-clip-inverse-pc);
  margin-top: -10rem;
  z-index: 1;
  padding-top: 20rem;
  padding-bottom: 18rem;
}
@media screen and (max-width: 700px) {
  .sec07__bg {
    clip-path: url(#wave-clip-inverse-sp);
    padding-top: 7rem;
    background-size: 20px 20px;
    padding-bottom: 16rem;
  }
}
.sec07__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 700px) {
  .sec07__flex {
    padding-bottom: 1.5rem;
  }
}
.sec07__sub-heading {
  margin-top: -4rem;
}
.sec07__main-heading {
  font-size: 5rem;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  color: #fff;
  padding-bottom: 4rem;
}
@media screen and (max-width: 700px) {
  .sec07__main-heading {
    font-size: 2.7rem;
    line-height: 1.7;
    padding-bottom: 2rem;
  }
}
.sec07__main-heading-circle {
  color: #fff;
  background-color: #530508;
  font-size: 4.5rem;
  border-radius: 50%;
  padding: 0.8rem 1.9rem 1.3rem 2.2rem;
  margin: 0 -0.3rem;
  line-height: 2;
}
@media screen and (max-width: 700px) {
  .sec07__main-heading-circle {
    font-size: 2.7rem;
    padding: 0.4rem 1rem 0.8rem 1.3rem;
  }
}
.sec07__main-heading-pl {
  margin-left: 1rem;
}
.sec07__sub-heading-txt {
  color: #fff;
  font-size: 1.6rem;
  width: 40rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .sec07__sub-heading-txt {
    width: 100%;
    font-size: 1.2rem;
    padding-bottom: 1.5rem;
  }
}
.sec07__img {
  width: 55%;
  position: relative;
}
.sec07__img01 {
  position: absolute;
  top: -10%;
  right: 10%;
  width: 30%;
}
.sec07__img02 {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 40%;
}
.sec07 .parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 55px;
}
.sec07 .div1 {
  grid-area: 1/1/2/2;
  width: 25.3rem;
}
.sec07 .div2 {
  grid-area: 1/2/2/3;
  width: 26.9rem;
  position: relative;
  left: -15%;
}
.sec07 .div3 {
  grid-area: 2/1/3/2;
  width: 23rem;
}
.sec07 .div4 {
  grid-area: 2/2/3/3;
  width: 23rem;
  position: relative;
  left: -15%;
}
.sec07 .div5 {
  grid-area: 1/3/3/4;
  width: 45rem;
}
@media screen and (max-width: 700px) {
  .sec07 .parent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
  .sec07 .div5 {
    grid-column: 1/3;
    width: 100%;
    position: static;
    left: 0;
  }
  .sec07 .div1 {
    width: 100%;
  }
  .sec07 .div2 {
    width: 100%;
  }
  .sec07 .div3 {
    width: 100%;
  }
  .sec07 .div4 {
    width: 100%;
  }
  .sec07 .div1,
  .sec07 .div2,
  .sec07 .div3,
  .sec07 .div4 {
    grid-area: auto;
    position: static;
    left: 0;
  }
}
.sec07__convenience-pink {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.9rem 2rem 1.9rem 6rem;
  background-color: #FE6667;
  border-radius: 5rem;
  line-height: 1;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 700px) {
  .sec07__convenience-pink {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0rem 1.6rem 5rem;
  }
}
.sec07__convenience-pink::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec07_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  top: 1.4rem;
  left: 2.4rem;
}
@media screen and (max-width: 700px) {
  .sec07__convenience-pink::before {
    width: 2.5rem;
    height: 3rem;
    top: 0.7rem;
    left: 1.9rem;
  }
}
.sec07__line-dot {
  padding-bottom: 8rem;
  position: relative;
}
.sec07__spoon {
  position: absolute;
  width: 32%;
  right: -8rem;
  top: -13rem;
}
@media screen and (max-width: 700px) {
  .sec07__spoon {
    width: 45%;
    right: -5rem;
    top: -4rem;
  }
}
.sec07__btn-flex {
  display: flex;
  justify-content: center;
  gap: 0 5rem;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .sec07__btn-flex {
    flex-direction: column;
  }
}
.sec07__btn-left {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.2rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec07__btn-left {
    font-size: 2.1rem;
    margin-bottom: 3rem;
  }
}
.sec07__btn-left::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec07__btn-balloon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30rem;
  height: 2.6rem;
  top: -4rem;
  left: 2rem;
}
@media screen and (max-width: 700px) {
  .sec07__btn-left::before {
    width: 22rem;
    height: 3.6rem;
    top: -3.5rem;
    left: 1rem;
  }
}
.sec07__btn {
  position: relative;
  padding: 2rem 10rem 2rem 4rem;
  bottom: 0;
  background-color: #FFFF00;
  box-shadow: 0px 0.5rem #F4A232;
  line-height: 1;
  border-radius: 9px;
  cursor: pointer;
  transition: 0.3s;
  width: 45%;
  height: 10.5rem;
}
@media screen and (max-width: 700px) {
  .sec07__btn {
    width: 100%;
    height: 6rem;
  }
}
.sec07__btn:hover {
  transform: translateY(0.5rem);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #CE7C0C;
}
@media screen and (max-width: 700px) {
  .sec07__btn:hover {
    background-color: #FFFF00;
    box-shadow: 0px 0.5rem #F4A232;
    transform: translateY(0rem);
  }
}
.sec07__btn:hover span .cta-txt-default {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .sec07__btn:hover span .cta-txt-default {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .sec07__btn:hover span .cta-txt-default-sp {
    opacity: 1;
  }
}
.sec07__btn:hover span .cta-txt-hover {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec07__btn:hover span .cta-txt-hover {
    opacity: 0;
  }
}
.sec07 span .cta-txt-default,
.sec07 span .cta-txt-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  width: 53%;
  height: auto;
  position: absolute;
  top: 2.1rem;
  left: 20rem;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .sec07 span .cta-txt-default,
  .sec07 span .cta-txt-hover {
    width: 52%;
    height: auto;
    position: absolute;
    top: 1.5rem;
    left: 12.5rem;
  }
}
@media screen and (max-width: 700px) {
  .sec07 span .cta-txt-default-sp {
    width: 55%;
    height: auto;
    position: absolute;
    top: 1.5rem;
    left: 12.5rem;
  }
}
.sec07 span .cta-txt-default {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec07 span .cta-txt-default {
    display: none;
  }
}
.sec07 span .cta-txt-hover {
  opacity: 0;
  pointer-events: none;
}
.sec07__book {
  position: absolute;
  width: 44%;
  top: -62%;
  left: 0%;
}
@media screen and (max-width: 700px) {
  .sec07__book {
    width: 33%;
    top: -38%;
    left: 6%;
  }
}

.sec08 {
  position: relative;
  width: 100vw;
  overflow-x: hidden;
  padding-top: 16rem;
  margin-top: -35rem;
}
@media screen and (max-width: 700px) {
  .sec08 {
    padding-top: 12rem;
  }
}
.sec08__bg {
  background-color: #ffffff;
  background-image: radial-gradient(circle, #fef5ea 5px, transparent 5px);
  background-position: 0 0;
  background-size: 30px 30px;
  /* 波線のclip-pathを適用 */
  clip-path: url(#wave-clip-inverse-pc);
  margin-top: -10rem;
  z-index: 1;
  padding-top: 17rem;
}
@media screen and (max-width: 700px) {
  .sec08__bg {
    clip-path: url(#wave-clip-inverse-sp);
    padding-top: 7rem;
    background-size: 15px 15px;
    background-image: radial-gradient(circle, #fef5ea 3px, transparent 3px);
    padding-bottom: 11rem;
  }
}
.sec08__heading {
  width: 55%;
  margin: 0 auto;
  padding-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .sec08__heading {
    width: 100%;
    padding-bottom: 1.7rem;
  }
}
.sec08__txt {
  text-align: center;
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 700px) {
  .sec08__txt {
    padding-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
  }
}
.sec08__free-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 18rem;
}
@media screen and (max-width: 700px) {
  .sec08__free-flex {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 0rem;
    flex-wrap: wrap;
    gap: 1rem 1rem;
  }
}
.sec08__free-item {
  width: 33%;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec08__free-item {
    width: 48%;
  }
}
.sec08__free-item:nth-child(3) {
  position: relative;
  top: 0;
}
.sec08__free-item-heading {
  position: absolute;
  top: 6rem;
  left: 35%;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 700px) {
  .sec08__free-item-heading {
    font-size: 1.4rem;
    top: 2.7rem;
  }
}

.sec09 {
  margin-top: -7rem;
  position: relative;
  z-index: 10;
}
.sec09__bg {
  background: #DEE9EA;
  padding: 12rem 0 10rem;
  border-radius: 8rem;
}
@media screen and (max-width: 700px) {
  .sec09__bg {
    border-radius: 3rem;
    padding: 4.5rem 0 4rem;
  }
}
.sec09__heading-txt {
  text-align: center;
  font-size: 2.6rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 700px) {
  .sec09__heading-txt {
    font-size: 1.4rem;
  }
}
.sec09__heading {
  width: 55%;
  margin: 0 auto;
  padding-bottom: 5rem;
  margin-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec09__heading {
    padding-bottom: 0rem;
    margin-bottom: 4rem;
    width: 100%;
  }
}
.sec09__heading-01 {
  position: absolute;
  top: 0;
  left: -55%;
  width: 19%;
}
@media screen and (max-width: 700px) {
  .sec09__heading-01 {
    left: -12%;
    width: 20%;
  }
}
.sec09__heading-02 {
  position: absolute;
  top: -80%;
  left: -5%;
  width: 20%;
}
@media screen and (max-width: 700px) {
  .sec09__heading-02 {
    top: -60%;
    left: 7%;
    width: 25%;
  }
}
.sec09__heading-03 {
  position: absolute;
  top: 20%;
  right: -41%;
  width: 27%;
}
@media screen and (max-width: 700px) {
  .sec09__heading-03 {
    top: -24%;
    right: -12%;
    width: 27%;
  }
}
.sec09__type01 {
  background-color: #fff;
  position: relative;
  border-radius: 2rem;
  width: 95%;
  margin-left: auto;
  margin-bottom: 10rem;
}
@media screen and (max-width: 700px) {
  .sec09__type01 {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.sec09__type01-heading {
  background-size: auto auto;
  background-color: rgb(254, 113, 114);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 20px, rgb(254, 102, 103) 20px, rgb(254, 102, 103) 40px);
  padding: 6rem 0 3.5rem 25.4rem;
  border-radius: 2rem 2rem 0 0;
  position: relative;
  box-shadow: 0px 6px 0px 0px rgb(232, 56, 41);
}
@media screen and (max-width: 700px) {
  .sec09__type01-heading {
    padding: 2.7rem 0 2.5rem 9.5rem;
    box-shadow: 0px 4px 0px 0px rgb(232, 56, 41);
  }
}
.sec09__type01-heading::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec09__type01-en.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 6rem;
  height: 16.8rem;
  left: -6rem;
}
@media screen and (max-width: 700px) {
  .sec09__type01-heading::before {
    content: none;
  }
}
.sec09__type01-heading-txt {
  color: #fff;
  font-size: 4.2rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .sec09__type01-heading-txt {
    font-size: 2.1rem;
  }
}
.sec09__type01-balloon {
  position: absolute;
  width: 30%;
  top: -2rem;
  left: 25rem;
}
@media screen and (max-width: 700px) {
  .sec09__type01-balloon {
    width: 55%;
    top: -1.3rem;
    left: 9.6rem;
  }
}
.sec09__type01-icon {
  position: absolute;
  left: 4rem;
  top: -5rem;
  width: 16%;
}
@media screen and (max-width: 700px) {
  .sec09__type01-icon {
    left: 1rem;
    top: -2rem;
    width: 27%;
  }
}
.sec09__type01-flex {
  display: flex;
  padding: 3rem 4.4rem 5rem;
  gap: 0 3.5rem;
}
@media screen and (max-width: 700px) {
  .sec09__type01-flex {
    display: flex;
    padding: 2rem 2rem 3rem;
    gap: 3rem 1.5rem;
    flex-wrap: wrap;
  }
}
.sec09__type01-item {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec09__type01-item {
    width: 46%;
  }
}
.sec09__type01-item-empty {
  width: 46%;
  height: 0;
  visibility: hidden;
}
.sec09__type01-item-hd {
  background-color: #FE6667;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  width: 19rem;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 700px) {
  .sec09__type01-item-hd {
    font-size: 1.2rem;
    border-radius: 0.5rem;
    width: 100%;
    padding: 1rem 0;
    line-height: 1;
  }
}
.sec09__type01-item-hd-white {
  background-color: #fff;
  color: #FE6667;
  border: solid 0.1rem #FE6667;
}
.sec09__type01-item-txt {
  line-height: 1.3;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 700px) {
  .sec09__type01-item-txt {
    font-size: 1.2rem;
  }
}
.sec09__type01-item-txt--img {
  width: 40%;
  margin: 0 auto;
}
.sec09__type01-item-batsu {
  position: absolute;
  top: 49%;
  left: 33%;
  z-index: -1;
  width: 33%;
}
@media screen and (max-width: 700px) {
  .sec09__type01-item-batsu {
    position: absolute;
    top: 50%;
    left: 30%;
    z-index: -1;
    width: 38%;
  }
}
.sec09__type01-badge {
  position: absolute;
  top: 13%;
  right: 5%;
  width: 23%;
}
@media screen and (max-width: 700px) {
  .sec09__type01-badge {
    width: 42%;
    right: 6%;
    top: 19%;
  }
}
.sec09__type02 {
  padding-bottom: 4.5rem;
  position: relative;
  background-color: #fff;
  border-radius: 2rem;
  width: 95%;
  margin-left: auto;
}
@media screen and (max-width: 700px) {
  .sec09__type02 {
    width: 100%;
    padding-bottom: 1.5rem;
  }
}
.sec09__type02-heading {
  background-size: auto auto;
  background-color: rgb(14, 176, 188);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 20px, rgb(27, 181, 192) 20px, rgb(27, 181, 192) 40px);
  padding: 6rem 0 3.5rem 25.4rem;
  border-radius: 2rem 2rem 0 0;
  position: relative;
  box-shadow: 0px 6px 0px 0px rgb(2, 127, 136);
}
@media screen and (max-width: 700px) {
  .sec09__type02-heading {
    padding: 2.7rem 0 2.5rem 9.5rem;
    box-shadow: 0px 4px 0px 0px rgb(2, 127, 136);
  }
}
.sec09__type02-heading::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec09__type02-en.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 6rem;
  height: 19.8rem;
  left: -6rem;
}
@media screen and (max-width: 700px) {
  .sec09__type02-heading::before {
    content: none;
  }
}
.sec09__type02-heading-txt {
  color: #fff;
  font-size: 4.2rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .sec09__type02-heading-txt {
    font-size: 2.1rem;
  }
}
.sec09__type02-balloon {
  position: absolute;
  width: 38%;
  top: -2rem;
  left: 25rem;
}
@media screen and (max-width: 700px) {
  .sec09__type02-balloon {
    width: 63%;
    top: -1.3rem;
    left: 9.6rem;
  }
}
.sec09__type02-icon {
  position: absolute;
  left: 4rem;
  top: -5rem;
  width: 16%;
}
@media screen and (max-width: 700px) {
  .sec09__type02-icon {
    left: 1rem;
    top: -2rem;
    width: 27%;
  }
}
.sec09__type02-flex {
  display: flex;
  padding: 3rem 4.4rem 10.5rem;
  gap: 0 3.5rem;
}
@media screen and (max-width: 700px) {
  .sec09__type02-flex {
    display: flex;
    padding: 2rem 2rem 6rem;
    gap: 3rem 1.5rem;
    flex-wrap: wrap;
  }
}
.sec09__type02-item {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec09__type02-item {
    width: 46%;
  }
}
.sec09__type02-item-empty {
  width: 46%;
  height: 0;
  visibility: hidden;
}
.sec09__type02-item-hd {
  background-color: #0EB0BC;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  width: 19rem;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 700px) {
  .sec09__type02-item-hd {
    font-size: 1.2rem;
    border-radius: 0.5rem;
    width: 100%;
    padding: 1rem 0;
    line-height: 1;
  }
}
.sec09__type02-item-hd-white {
  background-color: #fff;
  color: #0EB0BC;
  border: solid 0.1rem #0EB0BC;
}
.sec09__type02-item-txt {
  line-height: 1.3;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 700px) {
  .sec09__type02-item-txt {
    font-size: 1.2rem;
  }
}
.sec09__type02-item-txt--img {
  width: 40%;
  margin: 0 auto;
}
.sec09__type02-item-txt-num {
  color: #0EB0BC;
  font-size: 2.8rem;
}
@media screen and (max-width: 700px) {
  .sec09__type02-item-txt-num {
    font-size: 1.6rem;
  }
}
.sec09__type02-item-txt-tax {
  font-size: 1.4rem;
}
@media screen and (max-width: 700px) {
  .sec09__type02-item-txt-tax {
    font-size: 1.2rem;
  }
}
.sec09__type02-item-maru {
  position: absolute;
  top: 43%;
  left: 33%;
  z-index: -1;
  width: 35%;
}
@media screen and (max-width: 700px) {
  .sec09__type02-item-maru {
    position: absolute;
    top: 48%;
    left: 29%;
    z-index: -1;
    width: 40%;
  }
}
.sec09__type03 {
  width: 90%;
  margin: 0 auto;
  background-color: #EFEFEF;
  border-radius: 2rem;
}
.sec09__type03-heading {
  background-size: auto auto;
  background-color: rgb(183, 140, 80);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 20px, rgb(178, 131, 66) 20px, rgb(178, 131, 66) 40px);
  padding: 6rem 0 3.5rem 25.4rem;
  border-radius: 2rem 2rem 0 0;
  position: relative;
  box-shadow: 0px 6px 0px 0px rgb(137, 95, 36);
}
@media screen and (max-width: 700px) {
  .sec09__type03-heading {
    padding: 2.7rem 0 2.5rem 9.5rem;
    box-shadow: 0px 4px 0px 0px rgb(137, 95, 36);
  }
}
.sec09__type03-heading-txt {
  color: #fff;
  font-size: 4.2rem;
  line-height: 1;
}
@media screen and (max-width: 700px) {
  .sec09__type03-heading-txt {
    font-size: 2.1rem;
    line-height: 1.2;
    letter-spacing: 0.1rem;
  }
}
.sec09__type03-balloon {
  position: absolute;
  width: 49%;
  top: -2rem;
  left: 25rem;
}
@media screen and (max-width: 700px) {
  .sec09__type03-balloon {
    width: 49%;
    top: -2.6rem;
    left: 9.6rem;
  }
}
.sec09__type03-icon {
  position: absolute;
  left: 4rem;
  top: -5rem;
  width: 16%;
}
@media screen and (max-width: 700px) {
  .sec09__type03-icon {
    left: 1rem;
    top: -1rem;
    width: 30%;
  }
}
.sec09__type03-flex {
  display: flex;
  padding: 3rem 4.4rem 5rem;
  gap: 0 2.5rem;
}
@media screen and (max-width: 700px) {
  .sec09__type03-flex {
    display: flex;
    padding: 2rem 2rem 3rem;
    gap: 3rem 1.5rem;
    flex-wrap: wrap;
  }
}
.sec09__type03-item {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec09__type03-item {
    width: 46%;
  }
}
@media screen and (max-width: 700px) {
  .sec09__type03-item--04 {
    width: 100%;
  }
}
.sec09__type03-item-empty {
  width: 46%;
  height: 0;
  visibility: hidden;
}
.sec09__type03-item-hd {
  background-color: #B28342;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  width: 19rem;
  border-radius: 1rem;
  margin-bottom: 1.2rem;
  padding: 0.5rem 0;
}
@media screen and (max-width: 700px) {
  .sec09__type03-item-hd {
    font-size: 1.2rem;
    border-radius: 0.5rem;
    width: 100%;
    padding: 1rem 0;
    line-height: 1;
  }
}
.sec09__type03-item-hd-white {
  background-color: #EFEFEF;
  color: #B28342;
  border: solid 0.1rem #B28342;
}
.sec09__type03-item-txt {
  line-height: 1.3;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 700px) {
  .sec09__type03-item-txt {
    font-size: 1.2rem;
  }
}
.sec09__type03-item-txt--img {
  width: 40%;
  margin: 0 auto;
}
.sec09__type03-item-txt-num {
  color: #B28342;
  font-size: 2.8rem;
}
@media screen and (max-width: 700px) {
  .sec09__type03-item-txt-num {
    font-size: 1.6rem;
  }
}
.sec09__type03-item-txt-tax {
  font-size: 1.4rem;
}
@media screen and (max-width: 700px) {
  .sec09__type03-item-txt-tax {
    font-size: 1.2rem;
  }
}
.sec09__type03-item-maru {
  position: absolute;
  top: 43%;
  left: 33%;
  z-index: -1;
  width: 35%;
}
@media screen and (max-width: 700px) {
  .sec09__type03-item-maru {
    position: absolute;
    top: 48%;
    left: 29%;
    z-index: -1;
    width: 40%;
  }
}
.sec09__type02-badge {
  position: absolute;
  top: -104%;
  right: 0%;
  width: 25%;
}
@media screen and (max-width: 700px) {
  .sec09__type02-badge {
    width: 47%;
    right: 1%;
    top: -62.8%;
  }
}
.sec09__type03-badge {
  position: absolute;
  top: -23%;
  right: 2%;
  width: 19%;
}
@media screen and (max-width: 700px) {
  .sec09__type03-badge {
    top: 16%;
    right: 6%;
    width: 44%;
  }
}

.sec10 {
  background-color: #FE6667;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 5px, transparent 5px), radial-gradient(circle, rgba(254, 102, 103, 0) 0%, rgb(252, 101, 102) 0%, rgb(219, 79, 80) 100%);
  background-size: 20px 20px;
  background-position: 0 0;
  background-size: 30px 30px, cover;
  background-position: 0 0, center;
  background-repeat: repeat, no-repeat;
  padding: 0 0 35rem;
  margin-top: -5rem;
}
@media screen and (max-width: 700px) {
  .sec10 {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 3px, transparent 3px), radial-gradient(circle, rgba(254, 102, 103, 0) 0%, rgb(252, 101, 102) 0%, rgb(219, 79, 80) 100%);
    background-size: 20px 20px, cover;
  }
}
.sec10__heading {
  text-align: center;
  width: 79%;
  margin: 0 auto;
  padding-top: 1.3%;
}
@media screen and (max-width: 700px) {
  .sec10__heading {
    width: 100%;
    margin: 0 auto 2.5rem;
    padding-top: 12.8%;
  }
}
.sec10__photo {
  margin-bottom: 6rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec10__photo {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.sec10__photo-link {
  display: inline-block;
  position: relative;
  padding: 2rem 10rem 2rem 4rem;
  bottom: 0;
  background-color: #74C325;
  box-shadow: 0px 0.5rem #5DA713;
  line-height: 1;
  border-radius: 6rem;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  height: 10rem;
}
.sec10__photo-link:hover {
  transform: translateY(0.5rem);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #FDCF00;
}
@media screen and (max-width: 700px) {
  .sec10__photo-link:hover {
    transform: translateY(0rem);
    background-color: #74C325;
    box-shadow: 0px 0.5rem #5DA713;
  }
}
.sec10__photo-link:hover span .cta-txt-default {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .sec10__photo-link:hover span .cta-txt-default {
    display: none;
  }
}
.sec10__photo-link:hover span .cta-txt-hover {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec10__photo-link:hover span .cta-txt-hover {
    display: none;
  }
}
.sec10 span .cta-txt-default,
.sec10 span .cta-txt-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  width: 69%;
  height: auto;
  position: absolute;
  top: 2.7rem;
  left: 30.5rem;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.sec10 span .cta-txt-default {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec10 span .cta-txt-default {
    opacity: 0;
  }
}
.sec10 span .cta-txt-hover {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 700px) {
  .sec10 span .cta-txt-default-sp {
    width: 75%;
    height: auto;
    position: absolute;
    top: 1.8rem;
    left: 6.4rem;
    opacity: 1;
  }
}
.sec10__img {
  position: absolute;
  top: -140%;
  z-index: 10;
  width: 38%;
  left: 4%;
}
@media screen and (max-width: 700px) {
  .sec10__img {
    top: -77%;
    z-index: 10;
    width: 60%;
    left: -1%;
  }
}

.sec11 {
  padding: 35rem 0 0;
  margin-top: -0.2rem;
  background-color: #DB4F50;
  background-image: linear-gradient(180deg, transparent 96%, #E8EFF0 100%), linear-gradient(90deg, transparent 96%, #E8EFF0 100%), linear-gradient(180deg, #D9E5E6, #D9E5E6);
  background-size: 30px 30px, 30px 30px, auto;
  background-repeat: repeat, repeat, no-repeat;
  background-position: 0 0, 0 0, center;
}
@media screen and (max-width: 700px) {
  .sec11 {
    background-size: 20px 20px, 20px 20px, auto;
  }
}
.sec11__contents {
  padding-bottom: 12rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec11__contents {
    padding-bottom: 5rem;
  }
}
.sec11__box {
  background-color: #08B0BC;
  padding: 18rem 0 10rem;
  margin-top: -56%;
  margin-bottom: 6rem;
  position: relative;
  border-radius: 3.5rem;
  overflow: hidden;
  box-shadow: 0px 10px 0px 0px #530508;
}
@media screen and (max-width: 700px) {
  .sec11__box {
    margin-top: -215%;
    background-color: #08B0BC;
    padding: 9rem 0 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0px 6px 0px 0px #530508;
  }
}
.sec11__box::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: #027F88;
  border-radius: 50%;
  top: 3%;
  left: 2%;
}
@media screen and (max-width: 700px) {
  .sec11__box::before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #027F88;
    border-radius: 50%;
    top: 1.2%;
    right: 4%;
  }
}
.sec11__box::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: #027F88;
  border-radius: 50%;
  top: 3%;
  right: 2%;
}
@media screen and (max-width: 700px) {
  .sec11__box::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #027F88;
    border-radius: 50%;
    top: 1.2%;
    right: 4%;
  }
}
.sec11__box-inner {
  position: relative;
}
.sec11__box-inner::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: #027F88;
  border-radius: 50%;
  bottom: -25%;
  left: 2%;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .sec11__box-inner::before {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #027F88;
    border-radius: 50%;
    bottom: -39.5%;
    left: 4%;
  }
}
.sec11__box-inner::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: #027F88;
  border-radius: 50%;
  bottom: -25%;
  right: 2%;
}
@media screen and (max-width: 700px) {
  .sec11__box-inner::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    background: #027F88;
    border-radius: 50%;
    bottom: -39.5%;
    right: 4%;
  }
}
.sec11__heading {
  width: 74%;
  position: absolute;
  top: -0.7%;
  left: 14%;
  z-index: 20;
}
@media screen and (max-width: 700px) {
  .sec11__heading {
    width: 80%;
    position: absolute;
    top: -0.17%;
    left: 11%;
    z-index: 20;
  }
}
.sec11__flex {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 3rem auto 0;
  gap: 0 2rem;
  position: relative;
  left: 2rem;
}
@media screen and (max-width: 700px) {
  .sec11__flex {
    flex-direction: column;
  }
}
.sec11__flex::before {
  content: "";
  position: absolute;
  background-color: #049FAD;
  width: 155%;
  height: 65rem;
  border-radius: 50%;
  top: 10%;
}
@media screen and (max-width: 700px) {
  .sec11__flex::before {
    content: none;
  }
}
.sec11__list-item {
  width: 23%;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec11__list-item {
    width: 100%;
  }
  .sec11__list-item:first-child {
    margin-bottom: 6rem;
  }
  .sec11__list-item:nth-child(2) {
    margin-bottom: 5rem;
  }
  .sec11__list-item:nth-child(3) {
    margin-bottom: 5rem;
  }
}
.sec11__list-item::before {
  content: "";
  position: absolute;
  background: url(../images/top/sec11-step-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10rem;
  height: 0.5rem;
  top: 23%;
  left: 101.7%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .sec11__list-item::before {
    top: 125%;
    left: 13.7%;
    background: url(../images/top/sec11-step-dot-sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 0.6rem;
    height: 2rem;
  }
}
.sec11__list-item--02::before {
  content: "";
  position: absolute;
  background: url(../images/top/sec11-step-dot.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10rem;
  height: 0.5rem;
  top: 23%;
  left: 101.7%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .sec11__list-item--02::before {
    top: 133%;
    left: 13.7%;
    background: url(../images/top/sec11-step-dot-sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 0.6rem;
    height: 2rem;
  }
}
.sec11__list-item--03::before {
  content: "";
  position: absolute;
  background: url(../images/top/sec11-step-dot-yellow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 10rem;
  height: 0.5rem;
  top: 23%;
  left: 101.7%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 700px) {
  .sec11__list-item--03::before {
    top: 133%;
    left: 13.7%;
    background: url(../images/top/sec11-step-dot-yellow-sp.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 0.6rem;
    height: 2rem;
  }
}
.sec11__list-item--last::before {
  content: none;
}
.sec11__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec11__items {
    flex-direction: row;
    width: 89%;
    gap: 3rem 1rem;
  }
}
.sec11__items--03 {
  position: relative;
  top: -8%;
}
.sec11__item {
  position: relative;
}
.sec11__common-step {
  width: 55%;
}
@media screen and (max-width: 700px) {
  .sec11__common-step {
    width: 50%;
  }
}
.sec11__common-step--03 {
  width: 68%;
}
@media screen and (max-width: 700px) {
  .sec11__common-step--03 {
    width: 50%;
  }
}
.sec11__common-step--04 {
  width: 64%;
}
@media screen and (max-width: 700px) {
  .sec11__common-step--04 {
    width: 100%;
  }
}
.sec11__item-txt {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.8rem, 1.82vw, 2.8rem);
  line-height: 1.2;
}
@media screen and (max-width: 700px) {
  .sec11__item-txt {
    width: 100%;
    text-align: left;
    font-size: 1.8rem;
    position: relative;
    line-height: 1.4;
    letter-spacing: 0.1rem;
  }
}
.sec11__item-txt-icon {
  position: absolute;
  width: 3rem;
  right: 10%;
  top: -50%;
}
.sec11__item-txt02 {
  color: #fff;
  font-weight: 400;
  font-size: 1.4rem;
}
.sec11__item-txt-color {
  color: #F5D202;
}
.sec11__item-link {
  display: inline-block;
  position: relative;
  padding: 5rem 19rem 2rem 5rem;
  bottom: -1rem;
  background-color: #FE6667;
  box-shadow: 0px 0.5rem #E83829;
  line-height: 1;
  border-radius: 6rem;
  cursor: pointer;
  transition: 0.3s;
  width: 25%;
  height: 7.5rem;
  left: 8.5rem;
}
@media screen and (max-width: 700px) {
  .sec11__item-link {
    display: inline-block;
    position: relative;
    padding: 4rem 19rem 2rem 5rem;
    bottom: -1rem;
    background-color: #FE6667;
    box-shadow: 0px 0.5rem #E83829;
    line-height: 1;
    border-radius: 6rem;
    cursor: pointer;
    transition: 0.3s;
    width: 25%;
    height: 4.5rem;
    left: 0;
  }
}
.sec11__item-link:hover {
  transform: translateY(0.5rem);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #FDCF00;
}
@media screen and (max-width: 700px) {
  .sec11__item-link:hover {
    background-color: #FE6667;
    box-shadow: 0px 0.5rem #E83829;
    transform: translateY(0rem);
  }
}
.sec11__item-link:hover span .cta-txt-default {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .sec11__item-link:hover span .cta-txt-default {
    display: none;
  }
}
.sec11__item-link:hover span .cta-txt-hover {
  opacity: 1;
}
.sec11__box-tel-flex {
  display: flex;
  gap: 0 2rem;
  position: absolute;
  bottom: 9rem;
  right: 8.2rem;
  align-items: center;
  width: 56%;
}
@media screen and (max-width: 700px) {
  .sec11__box-tel-flex {
    position: sticky;
    bottom: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto 1.5rem;
  }
}
.sec11__box-tel-txt {
  color: #fff;
  border-top: solid 0.1rem #fff;
  border-bottom: solid 0.1rem #fff;
  padding: 2rem 0;
  width: 28%;
  text-align: center;
}
@media screen and (max-width: 700px) {
  .sec11__box-tel-txt {
    border-top: none;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 500;
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
  }
}
.sec11__box-tel-add {
  color: #fff;
  position: absolute;
  bottom: 3rem;
  right: 10.2rem;
  align-items: center;
  width: 54%;
  font-size: 1.3rem;
}
@media screen and (max-width: 700px) {
  .sec11__box-tel-add {
    position: sticky;
    bottom: 0;
    right: 0;
    width: 80%;
    margin: 0 auto;
    font-size: 1.1rem;
  }
}
.sec11__box-tel-img {
  width: 70%;
}
@media screen and (max-width: 700px) {
  .sec11__box-tel-img {
    width: 80%;
  }
}
.sec11 span .cta-txt-default,
.sec11 span .cta-txt-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  width: 80%;
  height: auto;
  position: absolute;
  top: 1.5rem;
  left: 3.5rem;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .sec11 span .cta-txt-default-sp {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
    width: 80%;
    height: auto;
    position: absolute;
    top: 1.5rem;
    left: 3.5rem;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
}
.sec11 span .cta-txt-default {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec11 span .cta-txt-default {
    display: none;
  }
}
.sec11 span .cta-txt-hover {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 700px) {
  .sec11 span .cta-txt-hover {
    display: none;
  }
}
.sec11__02 {
  position: relative;
  margin-bottom: 6rem;
}
@media screen and (max-width: 700px) {
  .sec11__02 {
    margin: 0 calc(50% - 50vw);
    width: 102vw;
  }
}
.sec11__contents02 {
  position: absolute;
  top: 35rem;
  left: 5.5%;
}
@media screen and (max-width: 700px) {
  .sec11__contents02 {
    width: 100%;
    left: -1%;
    top: 25rem;
  }
}
.sec11__heading02 {
  position: absolute;
  top: -6%;
  left: 0%;
  width: 100%;
  font-size: 4.8rem;
  line-height: 0.7;
  padding-left: 10rem;
  padding-bottom: 5rem;
  font-weight: 900;
}
@media screen and (max-width: 700px) {
  .sec11__heading02 {
    top: -4.7%;
    font-size: 2.7rem;
    width: 85%;
    margin: 0 auto;
    line-height: 1.2;
    font-weight: 900;
    padding-left: 9rem;
    padding-bottom: 1rem;
    left: 7%;
  }
}
.sec11__heading02::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3em;
  width: 100%;
  height: 9px;
  background: linear-gradient(to bottom, #000 0 1px, transparent 0) top left/100% 1px no-repeat, linear-gradient(to bottom, #000 0 4px, transparent 0) bottom left/100% 4px no-repeat;
}
.sec11__heading-small {
  font-size: 1.6rem;
  line-height: 1;
  padding-left: 1rem;
}
@media screen and (max-width: 700px) {
  .sec11__heading-small {
    padding-left: 0rem;
    font-size: 1.1rem;
    position: relative;
    top: -1rem;
  }
}
.sec11__heading-cart {
  position: absolute;
  top: -2rem;
  left: 0;
  width: 9%;
}
@media screen and (max-width: 700px) {
  .sec11__heading-cart {
    top: 0.5rem;
    left: 0;
    width: 22%;
  }
}
.sec11__heading-logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 19%;
}
@media screen and (max-width: 700px) {
  .sec11__heading-logo {
    top: -45%;
    right: 32%;
    width: 33%;
  }
}
.sec11__merchandise-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  gap: 0 7rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-flex {
    flex-direction: column;
    margin-bottom: 3rem;
  }
}
.sec11__merchandise-flex--02 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-flex--02 {
    flex-direction: column;
  }
}
.sec11__merchandise-photo {
  width: 48rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-photo {
    width: 85%;
  }
}
.sec11__merchandise-photo--02 {
  width: 50rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-photo--02 {
    width: 85%;
  }
}
.sec11__merchandise-sub-photo {
  position: absolute;
  width: 45%;
  bottom: 0;
  right: -6%;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-sub-photo {
    width: 42%;
    bottom: -6%;
    right: 4%;
  }
}
.sec11__merchandise-photo-img {
  position: absolute;
  top: -30%;
  right: -52%;
  width: 85%;
}
.sec11__common-width {
  width: 38rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec11__common-width {
    width: 85%;
  }
}
.sec11__common-width-row-reverse {
  width: 38rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec11__common-width-row-reverse {
    width: 85%;
  }
}
.sec11__merchandise-heading {
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 2.5rem;
  margin-bottom: 2rem;
  border-bottom: solid 0.1rem #530508;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-heading {
    font-size: 1.6rem;
    border-bottom: none;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    width: 85%;
    line-height: 1;
  }
}
.sec11__merchandise-txt {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-txt {
    font-size: 1.2rem;
    padding: 1.5rem 0 2.5rem;
    border-bottom: solid 0.1rem #530508;
  }
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-txt--last {
    border-bottom: none;
  }
}
.sec11__merchandise-en-txt {
  position: absolute;
  bottom: -35%;
  right: 0;
  width: 36%;
}
.sec11__merchandise-en-txt--02 {
  bottom: -40%;
  right: 0;
  width: 56%;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link {
    margin-top: 4rem;
  }
}
.sec11__merchandise-link-heading {
  width: 70rem;
  margin: 0px auto 9rem;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-heading {
    width: 100%;
    margin: 0px auto 7rem;
  }
}
.sec11__merchandise-link-flex {
  margin: 0 auto;
  width: 90%;
  display: flex;
  justify-content: center;
  gap: 0 3rem;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-flex {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 11rem 0rem;
    flex-direction: column;
  }
}
.sec11__merchandise-link-btn {
  display: inline-block;
  position: relative;
  padding: 5rem 19rem 2rem 5rem;
  bottom: 0;
  background-color: #F5D100;
  box-shadow: 0px 0.5rem #F4A232;
  line-height: 1;
  border-radius: 1rem;
  cursor: pointer;
  transition: 0.3s;
  width: 44%;
  height: 10rem;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-btn {
    padding: 0;
    bottom: 0;
    background-color: #F5D100;
    box-shadow: 0px 0.5rem #F4A232;
    line-height: 1;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    height: 6.5rem;
  }
}
.sec11__merchandise-link-btn:hover {
  transform: translateY(0.5rem);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #CE7C0C;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-btn:hover {
    background-color: #F5D100;
    box-shadow: 0px 0.5rem #F4A232;
    transform: translateY(0rem);
  }
}
.sec11__merchandise-link-btn:hover span .cta-txt-default02 {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-btn:hover span .cta-txt-default02 {
    display: none;
  }
}
.sec11__merchandise-link-btn:hover span .cta-txt-hover02 {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-btn:hover span .cta-txt-hover02 {
    display: none;
  }
}
.sec11__merchandise-link-btn--02 {
  background-color: #530508;
  box-shadow: 0px 0.5rem #190203;
}
.sec11__merchandise-link-btn--02:hover {
  transform: translateY(0.5rem);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #9B080E;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-btn--02:hover {
    background-color: #530508;
    box-shadow: 0px 0.5rem #190203;
    transform: translateY(0rem);
  }
}
.sec11__merchandise-link-btn--02:hover span .cta-txt-default02 {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-btn--02:hover span .cta-txt-default02 {
    display: none;
  }
}
.sec11__merchandise-link-btn--02:hover span .cta-txt-hover02 {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-btn--02:hover span .cta-txt-hover02 {
    display: none;
  }
}
.sec11__merchandise-span .cta-txt-default02,
.sec11__merchandise-span .cta-txt-hover02 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  width: 70%;
  height: auto;
  position: absolute;
  top: 2rem;
  left: 11rem;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-span .cta-txt-default02-sp {
    width: 65%;
    height: auto;
    position: absolute;
    top: 1.8rem;
    left: 9.5rem;
  }
}
.sec11__merchandise-span .cta-txt-default02 {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-span .cta-txt-default02 {
    display: none;
  }
}
.sec11__merchandise-span .cta-txt-hover02 {
  opacity: 0;
  pointer-events: none;
}
.sec11__merchandise-link-img {
  position: absolute;
  top: -11rem;
  width: 79%;
  left: 12%;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-img {
    top: -7.5rem;
    width: 81%;
    left: 11%;
  }
}
.sec11__merchandise-link-img--02 {
  position: absolute;
  top: -15rem;
  width: 100%;
  left: 0%;
}
@media screen and (max-width: 700px) {
  .sec11__merchandise-link-img--02 {
    top: -8.6rem;
    width: 90%;
    left: 3%;
  }
}
.sec11__type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.5rem 2.3rem;
}
.sec11__type-photo {
  width: 22rem;
  padding-bottom: 3rem;
  position: relative;
}
.sec11__type-photo-02 {
  position: absolute;
  bottom: -5%;
  right: 0;
  width: 70%;
}
.sec11__type-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #530508;
  padding-bottom: 2rem;
  margin-bottom: 0.5rem;
  border-bottom: solid 0.1rem #530508;
  line-height: 1.2;
  display: flex;
  align-items: center;
  height: 7rem;
}
.sec11__type-heading .inner {
  line-height: 1.4;
}
.sec11__type-heading span {
  font-size: 1.6rem;
  line-height: 1;
}
.sec11__type-txt {
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
}

.sec12 {
  background-size: auto auto;
  background-color: rgb(246, 216, 37);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 25px, rgb(245, 210, 0) 25px, rgb(245, 210, 0) 50px);
  padding: 11.8rem 0 0rem;
  border-radius: 6rem 6rem 0 0;
}
@media screen and (max-width: 700px) {
  .sec12 {
    border-radius: 3rem 3rem 0 0;
    padding: 5rem 0 0rem;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 15px, rgb(245, 210, 0) 15px, rgb(245, 210, 0) 30px);
  }
}
.sec12__heading {
  width: 70rem;
  padding-bottom: 0rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec12__heading {
    width: 100%;
    margin-bottom: -3rem;
  }
}
.sec12 .voice-slider .slick-track {
  display: flex !important;
  align-items: flex-start;
}
.sec12 .voice-slider .slick-slide {
  height: auto !important;
  float: none !important;
  display: block;
}
.sec12 .voice-slider .slick-slide {
  display: flex;
  justify-content: center !important;
}
.sec12 .voice-card {
  width: 100%;
  max-width: 36rem;
  flex: 0 0 auto;
  margin: 0 1rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-card {
    width: calc(1% - 0rem) !important;
    margin: 0 1rem;
  }
}
.sec12 .voice-slider-wrapper {
  position: relative;
  padding-bottom: 13rem;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider-wrapper {
    padding-bottom: 7rem;
  }
}
.sec12 .voice-slider-wrapper .slider-arrows {
  position: relative;
  top: -7rem;
  right: -93rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider-wrapper .slider-arrows {
    top: 50rem;
    right: -10.5rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
  }
}
.sec12 .voice-slider-wrapper .slider-arrows .prev-arrow,
.sec12 .voice-slider-wrapper .slider-arrows .next-arrow {
  width: 6rem;
  height: 6rem;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider-wrapper .slider-arrows .prev-arrow,
  .sec12 .voice-slider-wrapper .slider-arrows .next-arrow {
    width: 4rem;
    height: 4rem;
  }
}
.sec12 .voice-slider-wrapper .slider-arrows .prev-arrow {
  background-image: url("../images/top/slider-btn-prev.svg");
}
.sec12 .voice-slider-wrapper .slider-arrows .next-arrow {
  background-image: url("../images/top/slider-btn-next.svg");
}
.sec12 .voice-slider-wrapper .slider-arrows .prev-arrow:hover,
.sec12 .voice-slider-wrapper .slider-arrows .next-arrow:hover {
  transform: scale(1.1);
  background-color: #ffe;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider-wrapper .slider-arrows .prev-arrow:hover,
  .sec12 .voice-slider-wrapper .slider-arrows .next-arrow:hover {
    transform: none;
  }
}
.sec12 .voice-slider .voice-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0px 12px 0px 0px #530508;
  padding: 1rem 2rem 0 2rem;
  margin: 11rem 1.5rem 3rem 1.5rem;
  text-align: left;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider .voice-card {
    margin: 8rem 0.5rem 3rem 0.5rem;
    box-shadow: 0px 6px 0px 0px rgb(0, 0, 0);
  }
}
.sec12 .voice-slider .voice-card .voice-common {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
}
.sec12 .voice-slider .voice-card .voice-common::before {
  content: "";
  position: absolute;
  background-color: #530508;
  width: 0.8rem;
  height: 0.8rem;
  top: 2%;
  left: -2%;
  border-radius: 50%;
}
.sec12 .voice-slider .voice-card .voice-common::after {
  content: "";
  position: absolute;
  background-color: #530508;
  width: 0.8rem;
  height: 0.8rem;
  top: 2%;
  right: -2%;
  border-radius: 50%;
}
.sec12 .voice-slider .voice-card .voice-common img {
  margin-bottom: -1rem;
  width: 90%;
  left: 3.5%;
  position: relative;
  top: -10.7rem !important;
}
@media screen and (max-width: 1440px) {
  .sec12 .voice-slider .voice-card .voice-common img {
    top: -10.7rem !important;
  }
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider .voice-card .voice-common img {
    top: -21.7vw !important;
  }
}
.sec12 .voice-slider .voice-card .voice-common .voice-wrap {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: -27% auto 0 auto;
  padding-bottom: 6rem;
  position: relative;
  width: 91%;
}
@media screen and (max-width: 1600px) {
  .sec12 .voice-slider .voice-card .voice-common .voice-wrap {
    margin: -20% auto 0 auto;
  }
}
@media screen and (max-width: 1440px) {
  .sec12 .voice-slider .voice-card .voice-common .voice-wrap {
    margin: -25% auto 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  .sec12 .voice-slider .voice-card .voice-common .voice-wrap {
    margin: -15% auto 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider .voice-card .voice-common .voice-wrap {
    margin: -22% auto 0 auto;
    padding-bottom: 3.5rem;
  }
}
.sec12 .voice-slider .voice-card .voice-common .voice-wrap::before {
  content: "";
  position: absolute;
  background-color: #530508;
  width: 0.8rem;
  height: 0.8rem;
  bottom: 4%;
  left: -7%;
  border-radius: 50%;
}
.sec12 .voice-slider .voice-card .voice-common .voice-wrap::after {
  content: "";
  position: absolute;
  background-color: #530508;
  width: 0.8rem;
  height: 0.8rem;
  bottom: 4%;
  right: -7%;
  border-radius: 50%;
}
.sec12 .voice-slider .voice-card .voice-common .voice-title {
  font-weight: 800;
  color: #700;
  margin-bottom: 2.5rem;
  font-size: 2.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider .voice-card .voice-common .voice-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.sec12 .voice-slider .voice-card .voice-common .voice-title .marker {
  background: linear-gradient(transparent 70%, #F5D203 60%);
}
.sec12 .voice-slider .voice-card .voice-common .voice-text {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.6;
  flex-grow: 1;
  padding-bottom: 3rem;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider .voice-card .voice-common .voice-text {
    font-size: 1.2rem;
    padding-bottom: 1.5rem;
  }
}
.sec12 .voice-slider .voice-card .voice-common .voice-meta {
  font-size: 1.6rem;
  font-weight: bold;
  color: #08B0BC;
  margin-top: auto;
}
@media screen and (max-width: 700px) {
  .sec12 .voice-slider .voice-card .voice-common .voice-meta {
    font-size: 1.3rem;
  }
}
.sec12 .voice-slider .slick-center .voice-card {
  transform: scale(1.05);
  z-index: 2;
}

.sec13 {
  position: relative;
  overflow: hidden;
}
.sec13__circle-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 135vw;
  aspect-ratio: 1/1;
  background-color: #F4A232;
  border: solid 1.5rem #530508;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .sec13__circle-bg {
    width: 200vw;
    height: 320vw;
    aspect-ratio: auto;
    border-radius: 50%/35%;
  }
}
.sec13__content {
  position: relative;
  z-index: 1;
  padding: 16rem 0 20rem;
}
@media screen and (max-width: 700px) {
  .sec13__content {
    padding: 9rem 0 20rem;
  }
}
.sec13__heading {
  margin: 0 auto;
  font-size: 5.4rem;
  line-height: 1.4;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 700px) {
  .sec13__heading {
    font-size: 2.7rem;
    text-align: center;
    margin-bottom: 2.5rem;
  }
}
.sec13__heading::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec13__icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 9rem;
  height: 9rem;
  top: -10rem;
}
@media screen and (max-width: 700px) {
  .sec13__heading::before {
    width: 4.4rem;
    height: 4.4rem;
    top: -5rem;
  }
}
.sec13__heading-small {
  font-size: 1.6rem;
}
.sec13__heading-txt {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 700px) {
  .sec13__heading-txt {
    width: 90%;
    margin: 0 auto 3.5rem;
    text-align: left;
    font-size: 1.2rem;
  }
}
.sec13__map-wrap {
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 700px) {
  .sec13__map-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.sec13__map {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .sec13__map {
    width: 180vw;
    margin-left: 2rem;
  }
}
.sec13__map img {
  width: 100%;
  height: auto;
  display: block;
}
.sec13__map-txt {
  width: 40rem;
  position: absolute;
  bottom: 3%;
  left: 0;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 700px) {
  .sec13__map-txt {
    width: 85%;
    position: absolute;
    bottom: 11%;
    left: 3rem;
    font-size: 1.2rem;
    font-weight: 500;
  }
}
.sec13__map-txt-link {
  text-decoration: underline;
}

.scroll-hint .scroll-hint-icon {
  display: none !important;
}

.sec13__scroll-hint {
  display: none;
}
@media screen and (max-width: 700px) {
  .sec13__scroll-hint {
    display: block;
    position: absolute;
    top: 35%;
    left: 35%;
    width: 11rem;
    height: 11rem;
    background: url("../images/top/scroll-hint.png") no-repeat center;
    background-size: contain;
    z-index: 10;
    transition: opacity 0.7s ease, transform 0.7s ease;
    opacity: 1;
    pointer-events: none;
  }
}

.sec14 {
  background-color: #FFF8EF;
  padding: 11rem 0 10rem;
  border-radius: 13rem;
  position: relative;
  z-index: 100;
  width: 100%;
  background-image: linear-gradient(to right, #FEF1DD 1px, transparent 1px), linear-gradient(to bottom, #FEF1DD 1px, transparent 1px);
  background-size: 40px 40px;
  margin-top: -10rem;
  box-shadow: 0px 13px 0px 0px rgb(2, 127, 136);
}
@media screen and (max-width: 700px) {
  .sec14 {
    border-radius: 4rem;
    background-size: 20px 20px;
    padding: 5rem 0 4rem;
    box-shadow: 0px 6px 0px 0px rgb(2, 127, 136);
    margin-top: -3rem;
  }
}
.sec14__heading {
  font-size: 5.4rem;
  margin: 0 auto;
  padding-bottom: 3rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  line-height: 1.6;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec14__heading {
    font-size: 2.7rem;
  }
}
.sec14__heading span {
  font-size: 1.6rem;
}
@media screen and (max-width: 700px) {
  .sec14__heading span {
    font-size: 1.1rem;
  }
}
.sec14__heading::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec14__heading-left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 7rem;
  height: 9rem;
  left: 28rem;
}
@media screen and (max-width: 700px) {
  .sec14__heading::before {
    width: 4.5rem;
    height: 5rem;
    left: 1.5rem;
  }
}
.sec14__heading::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/sec14__heading-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 7rem;
  height: 9rem;
  right: 28rem;
}
@media screen and (max-width: 700px) {
  .sec14__heading::after {
    width: 4.5rem;
    height: 6rem;
    right: 1rem;
  }
}
.sec14 .accordion {
  margin-bottom: 2.5rem;
  border-radius: 4rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .sec14 .accordion {
    margin-bottom: 1rem;
  }
}
.sec14 .accordion__number {
  position: absolute;
  top: -20%;
  left: 4%;
  width: 7rem;
}
@media screen and (max-width: 700px) {
  .sec14 .accordion__number {
    top: -9%;
    width: 5.5rem;
  }
}
.sec14 .accordion__title {
  font-size: 1.8rem;
  padding: 2rem 0 2rem 13.2rem;
  color: #fff;
  background-color: #F4A232;
  cursor: pointer;
  position: relative;
  border-radius: 4rem;
  z-index: 1;
  transition: 0.4s;
}
.sec14 .accordion__title:hover {
  opacity: 0.6;
}
@media screen and (max-width: 700px) {
  .sec14 .accordion__title {
    font-size: 1.3rem;
    padding: 2rem 6rem 2rem 7.2rem;
    color: #fff;
    background-color: #F4A232;
    cursor: pointer;
    position: relative;
    border-radius: 6rem;
    z-index: 1;
  }
}
.sec14 .accordion__icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 4.6rem;
  height: 4.6rem;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 700px) {
  .sec14 .accordion__icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
  }
}
.sec14 .accordion__title::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0.2rem;
  background-color: #F4A232;
  position: absolute;
  right: 3.3%;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 1s;
  z-index: 10;
}
@media screen and (max-width: 700px) {
  .sec14 .accordion__title::before {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 0.2rem;
    background-color: #F4A232;
    position: absolute;
    right: 5.7%;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
    z-index: 10;
  }
}
.sec14 .accordion__title::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0.2rem;
  background-color: #F4A232;
  position: absolute;
  right: 3.3%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.4s;
  z-index: 10;
}
@media screen and (max-width: 700px) {
  .sec14 .accordion__title::after {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 0.2rem;
    background-color: #F4A232;
    position: absolute;
    right: 5.7%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.4s;
    z-index: 10;
  }
}
.sec14 .accordion__title.show::before {
  opacity: 0;
}
.sec14 .accordion__title.show::after {
  transform: translateY(-50%) rotate(180deg);
}
.sec14 .accordion__content {
  display: none;
  background-color: #fff;
  padding: 50px 8.8rem 3rem 17rem;
  border-radius: 0 0 3rem 3rem;
  margin-top: -3%;
  position: relative;
  top: 0;
  transition: top 0.3s ease;
  z-index: 0;
}
@media screen and (max-width: 700px) {
  .sec14 .accordion__content {
    background-color: #fff;
    padding: 85px 1.8rem 3rem 5rem;
    border-radius: 0 0 3rem 3rem;
    margin-top: -17%;
    position: relative;
    top: 0;
    transition: top 0.3s ease;
    z-index: 0;
    font-size: 1.2rem;
  }
}
.sec14 .accordion__content.show {
  top: -5%;
  position: relative;
}
.sec14 .accordion__text {
  position: relative;
}
.sec14 .accordion__text::before {
  content: "";
  position: absolute;
  background: url(../images/top/accordion-answer.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 1.5rem;
  top: 6%;
  left: -4.5%;
}
@media screen and (max-width: 700px) {
  .sec14 .accordion__text::before {
    width: 2rem;
    height: 1.5rem;
    top: 3%;
    left: -10.5%;
  }
}
.sec14 .accordion__link {
  color: #F4A232;
  text-decoration: underline;
}

.footer {
  background: url("../images/top/footer-bg-img.png") repeat center top, radial-gradient(circle, rgba(8, 176, 188, 0) 0%, rgb(8, 175, 187) 0%, rgb(19, 155, 165) 100%);
  background-size: cover;
  padding-top: 16.3rem;
  padding-bottom: 3rem;
  margin-top: -11rem;
}
@media screen and (max-width: 700px) {
  .footer {
    background: url("../images/top/footer-bg-img-sp.png") no-repeat 60% 21%, radial-gradient(circle, rgba(8, 176, 188, 0) 0%, rgb(8, 175, 187) 0%, rgb(19, 155, 165) 100%);
    background-size: contain;
  }
}
.footer__catch {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 700px) {
  .footer__catch {
    width: 100%;
  }
}
.footer__catch-heading {
  position: absolute;
  width: 40%;
  top: 32%;
  left: 36%;
}
.footer__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 91%;
  margin: 0 auto;
  gap: 0 3rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .footer__flex {
    flex-direction: column;
    width: 100%;
  }
}
.footer__left {
  width: 47%;
}
@media screen and (max-width: 700px) {
  .footer__left {
    width: 100%;
  }
}
.footer__catalog {
  position: absolute;
  top: -20rem;
  right: -5%;
  width: 18rem;
}
.footer__catalog-sp {
  width: 100%;
  background-color: #FE6667;
  text-align: center;
  color: #fff;
  padding: 1.5rem 0 1.5rem 3rem;
  line-height: 1;
  border-radius: 5rem;
  font-weight: 700;
  margin: 2rem 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 700px) {
  .footer__catalog-sp {
    padding: 1.5rem 0 1.5rem 6rem;
    line-height: 1;
    border-radius: 5rem;
    font-weight: 700;
    margin: 2rem 0 2.5rem;
    position: relative;
    letter-spacing: 0.1rem;
    width: 90%;
    margin-left: auto;
  }
}
.footer__catalog-sp::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/footer-catalog-sp.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 8rem;
  height: 6rem;
  left: 0.5rem;
  top: -2rem;
}
@media screen and (max-width: 700px) {
  .footer__catalog-sp::before {
    width: 11rem;
    height: 8rem;
    left: -3.5rem;
    top: -2rem;
  }
}
.footer__item01 {
  width: 85%;
}
@media screen and (max-width: 700px) {
  .footer__item01 {
    width: 100%;
  }
}
@media screen and (max-width: 700px) {
  .footer__item02 {
    margin-bottom: 1.5rem;
  }
}
.footer__txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  width: 82%;
}
@media screen and (max-width: 700px) {
  .footer__txt {
    width: 100%;
  }
}
.footer__item03 {
  font-size: 1.3rem;
}
@media screen and (max-width: 700px) {
  .footer__item03 {
    font-size: 1.1rem;
  }
}
.footer__item04 {
  font-size: 1.6rem;
  text-decoration: underline;
}
@media screen and (max-width: 700px) {
  .footer__item04 {
    font-size: 1.1rem;
  }
}
.footer__footer-btn {
  display: inline-block;
  position: relative;
  padding: 2rem 10rem 2rem 4rem;
  bottom: 0;
  background-color: #FE6667;
  box-shadow: 0px 0.5rem #E83829;
  line-height: 1;
  border-radius: 5rem;
  cursor: pointer;
  transition: 0.3s;
  width: 39rem;
  height: 7rem;
  margin: 2rem 0 1rem;
}
@media screen and (max-width: 700px) {
  .footer__footer-btn {
    height: 5.5rem;
    width: 100%;
  }
}
.footer__footer-btn:hover {
  transform: translateY(0.5rem);
  box-shadow: 0 0 rgba(0, 0, 0, 0.9);
  background-color: #FDCF00;
}
@media screen and (max-width: 700px) {
  .footer__footer-btn:hover {
    background-color: #FE6667;
    box-shadow: 0px 0.5rem #E83829;
    transform: translateY(0rem);
  }
}
.footer__footer-btn:hover span .cta-txt-default {
  opacity: 0;
}
@media screen and (max-width: 700px) {
  .footer__footer-btn:hover span .cta-txt-default {
    display: none;
  }
}
.footer__footer-btn:hover span .cta-txt-hover {
  opacity: 1;
}
.footer span .cta-txt-default,
.footer span .cta-txt-hover {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
  width: 68%;
  height: auto;
  position: absolute;
  top: 1.1rem;
  left: 11rem;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media screen and (max-width: 700px) {
  .footer span .cta-txt-default-sp {
    width: 68%;
    height: auto;
    position: absolute;
    top: 1.1rem;
    left: 8.5rem;
  }
}
.footer span .cta-txt-default {
  opacity: 1;
}
@media screen and (max-width: 700px) {
  .footer span .cta-txt-default {
    display: none;
  }
}
.footer span .cta-txt-hover {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 700px) {
  .footer span .cta-txt-hover {
    display: none;
  }
}
.footer__tel {
  padding-bottom: 1rem;
  width: 95%;
}
@media screen and (max-width: 700px) {
  .footer__tel {
    width: 100%;
  }
}
.footer__tel-txt {
  color: #fff;
  font-size: 1.3rem;
}
@media screen and (max-width: 700px) {
  .footer__tel-txt {
    font-size: 1.1rem;
    padding-bottom: 1.7rem;
  }
}
.footer__right {
  border-left: solid 0.1rem #fff;
  padding-left: 4rem;
  width: 48rem;
}
@media screen and (max-width: 700px) {
  .footer__right {
    border-left: none;
    padding-left: 0;
    width: 100%;
  }
}

/*--------------------------
	state
--------------------------*/
@media screen and (max-width: 1024px) {
  .is-Pc {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .is-Tab {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .is-Tab {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .is-Sp {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .is-Pc_Tab {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .is-Tab_Sp {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
