@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
  font-family: 'sns_ico';
  src:
    url('../fonts/sns_ico.ttf?z7sza2') format('truetype'),
    url('../fonts/sns_ico.woff?z7sza2') format('woff'),
    url('../fonts/sns_ico.svg?z7sza2#sns_ico') format('svg');
  font-weight: normal;
  font-style: normal;
}

i.snsIcon {
  font-family: 'sns_ico' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
	color: #000;
}

.icon-search:before { content: "\e908";}
.icon-arrow1_left:before { content: "\e90c";}
.icon-arrow1_bottom:before { content: "\e90d";}
.icon-arrow1_right:before { content: "\e90e";}
.icon-arrow1_top:before { content: "\e90f";}
.icon-arrow2_left:before { content: "\e910";}
.icon-arrow2_bottom:before { content: "\e911";}
.icon-arrow2_right:before { content: "\e912";}
.icon-arrow2_top:before { content: "\e913";}
.icon-link:before { content: "\e914";}
.icon-note:before { content: "\e915";}
.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-yt:before { content: "\e909";}
.icon-x:before { content: "\e90a";}
.icon-wb:before { content: "\e90b";}
.icon-arrow3_top:before { content: "\ea3a";}
.icon-arrow3_right:before { content: "\ea3c";}
.icon-arrow3_bottom:before { content: "\ea3e";}
.icon-arrow3_left:before { content: "\ea40";}


html {
	scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
	font-size: min(3.2vw, 14px);
  letter-spacing: 0.04em;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
  background-color: #FFF5E5;
}

/* 画面全体で受ける例（任意） */
body {
  margin: 0;
/*
  height: 100vh;
  overflow: hidden;
*/
  touch-action: manipulation; /* ダブルタップ拡大などを抑制 */
}
#tap-fx-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: visible;
}

.tap-fx {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  aspect-ratio: 156/92;
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform, opacity;
  animation: tapFade 650ms ease-out forwards;
  opacity: 0;
}

.tap-fx img {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  mix-blend-mode: multiply;
}
@keyframes tapFade {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.75); filter: blur(1px); }
  35%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05); filter: blur(0px); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.25); filter: blur(1px); }
}
/* アクセシビリティ：動きを減らす設定ならアニメ無効 */
@media (prefers-reduced-motion: reduce) {
  .tap-fx { animation: none; opacity: 0; }
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .6s ease-out;
}
.anim.on {
	opacity: 1;
}

@media screen and (min-width: 821px) {
	
	.pc-none { display: none !important;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
	
}
@media screen and (max-width: 820px) {
	
	.sp-none { display: none !important;}
	
}

#menuButton {
  display: block;
  width: min(14vw, 60px);
  height: min(8vw, 40px);
  position: fixed;
  top: min(5vw, 30px);
  right: min(4vw, 30px);
  z-index: 9999;
  mix-blend-mode: multiply;
}
#menuButton span {
  display: block;
  background: #00A0E9;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all 0.4s;
}
#menuButton span:nth-child(1) { transform: translateY(-350%) rotate(0deg);}
#menuButton span:nth-child(2) { transform: translateY(250%) rotate(0deg);}
#menuButton.active span:nth-child(1) { transform: translateY(-50%) rotate(45deg);}
#menuButton.active span:nth-child(2) { transform: translateY(-50%) rotate(-45deg);}

#menuButton p {
  font-family: "Lato", sans-serif;
  position: absolute;
  top: 50%;
  right: 120%;
  transform: translateY(-50%);
  color: #00A0E9;
  font-size: min(3vw, 14px);
}

#globalNavi {
  position: fixed;
  top: 0;
  right: 0;
  width: 580px;
  max-width: 100%;
  height: 100%;
  z-index: 9998;
  background-color: #fff;
  transition: none;
  display: none;
}
#globalNavi .globalNaviInr {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: min(12vw, 80px) min(8vw, 60px);
}
#globalNavi .globalNaviInr .menu {
  padding-bottom: min(8vw, 40px);
  margin-bottom: min(8vw, 40px);
  border-bottom: #00A0E9 solid 1px;
}
#globalNavi .globalNaviInr .menu li {
  font-family: "Lato", sans-serif;
  font-weight: 600;
}
#globalNavi .globalNaviInr .menu li a {
  color: #00A0E9;
  font-size: min(9.8vw, 42px);
  line-height: 1.5;
  letter-spacing: 0.06em;
}

#globalNavi .globalNaviInr .menuTitle {
  line-height: 0;
  width: min(60vw, 320px);
  margin: 0 auto;
}


.mainVisual {
  padding: 5vw;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: relative;
  gap: 0 4%;
}
.mainVisual .mvTxt {
  width: min(42%, 84vh);
  color: #DC1B1B;
  opacity: 0;
  animation: opTxt 1s ease-out 0.5s forwards;
  position: relative;
  padding-bottom: 6%;
}
@keyframes opTxt {
  0% { opacity: 0;}
  100% { opacity: 1;}
}

.mainVisual h1 {
  font-family: "Epunda Slab", serif;
  font-size: 10vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.mainVisual h1 span {
  clip-path: inset(0 100% 0 0);
}
.mainVisual h1 span.h01 { animation: opH1 0.5s cubic-bezier(0.65, 0, 0.35, 1) 0.5s forwards;}
.mainVisual h1 span.h02 { animation: opH1 0.5s cubic-bezier(0.65, 0, 0.35, 1) 0.8s forwards;}
.mainVisual h1 span.h03 { animation: opH1 0.5s cubic-bezier(0.65, 0, 0.35, 1) 1.1s forwards;}

@keyframes opH1 {
  0% { clip-path: inset(0 100% 0 0);}
  100% { clip-path: inset(0 0 0 0);}
}
.mainVisual p {
  font-size: min(3.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-feature-settings: "palt";
  
  clip-path: inset(0 100% 0 0);
  animation: opH1 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards;
}
.mainVisual .ripLeopard {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(30%, 100px);
  line-height: 0;
  opacity: 0;
  animation: fadein 1s ease-out 3.3s forwards;
  transform: translateY(100%);
}
.mainVisual .ripLeopard::after {
  content: "";
  display: block;
  background: url("../images/main_rip_leopard_deco.png") no-repeat center center / contain;
  width: 40%;
  aspect-ratio: 1/1;
  position: absolute;
  top: -10%;
  right: -25%;
  opacity: 0;
  transform: translate(-10%, 10%) scale(0.7);
  animation: leo 1.2s ease-out 0s infinite;
}
@keyframes leo {
  0% { opacity: 0; transform: translate(-10%, 10%) scale(0.7);}
  50% { opacity: 1; transform: translate(-5%, 5%) scale(0.85);}
  100% { opacity: 0; transform: translate(0%, 0%) scale(1);}
}

.mainVisual .mvImg {
  width: min(55%, 80vh);
  aspect-ratio: 1/1;
  
  clip-path: inset(0 50% 0 50%);
  animation: opImg 0.8s cubic-bezier(0.65, 0, 0.35, 1) 2s forwards;
}
@keyframes opImg {
  0% { clip-path: inset(0 50% 0 50%);}
  100% { clip-path: inset(0 0 0 0);}
}
.mainVisual .mvImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainVisual .calendarBtn {
  position: absolute;
  bottom: min(4vw, 30px);
  left: min(4vw, 30px);
  opacity: 0;
  animation: fadein 1s ease-out 3.3s forwards;
}
.mainVisual .calendarBtn a {
  background-color: #00A0E9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(2vw, 10px);
  border-radius: min(1vw, 5px);
  color: #fff;
  text-decoration: none;
  padding: 1em 2em;
  font-size: min(3.2vw, 14px);
}
.mainVisual .calendarBtn a::before {
  content: "";
  display: block;
  width: 1.5em;
  aspect-ratio: 52/49;
  background: url("../images/ico_calendar.png") no-repeat center center / contain;
}


.modalMessege {
  position: fixed;
  top: 50%;
  left: 50%;
  border: #00A0E9 solid 2px;
  border-radius: min(2vw, 10px);
  background-color: #fff;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(90%, 860px);
  z-index: 9999;
  display: none;
  transition: none;
}
.modalMessege .modalMessegeInr {
  padding: min(8vw, 60px) min(6vw, 30px);
  overflow: auto;
  max-height: 90vh;
}
.modalMessege h3 {
  color: #00A0E9;
  font-size: min(4.6vw, 24px);
  font-weight: 600;
  margin-bottom: min(4vw, 30px);
}
.modalMessege p {
  line-height: 2;
}
.modalMessege .closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
}
.modalMessege .closeBtn a {
  display: block;
  background-color: #EB6168;
  width: min(12vw, 50px);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.modalMessege .closeBtn a::before,
.modalMessege .closeBtn a::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.modalMessege .closeBtn a::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modalMessege .closeBtn a::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


.year {
  display: flex;
  align-items: center;
  gap: 2vw;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(34%, -50%) rotate(90deg);
  opacity: 0;
  animation: fadein 1s ease-out 3.3s forwards;
}
.year p {
  color: #DC1B1B;
  font-size: 1.4vw;
}
.year span {
  display: block;
  width: 6vw;
  height: 1px;
  background-color: #DC1B1B;
}


.scroll {
  position: absolute;
  bottom: 2vw;
  right: 3vw;
  opacity: 0;
  animation: fadein 1s ease-out 3.3s forwards;
}
.scroll a {
  color: #00A0E9;
  font-size: min(1.4vw, 16px);
}


@keyframes fadein {
  0% { opacity: 0;}
  100% { opacity: 1;}
}

@media screen and (max-width: 820px) {
  
  .mainVisual {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6vw;
    padding-bottom: 13vh;
  }
  .mainVisual .mvImg {
    width: min(38vh, 78%);
    height: auto;
  }
  
  .mainVisual .mvTxt {
    width: 100%;
    position: static;
  }
  .mainVisual h1 {
    text-align: center;
    width: min(40vh, 76%);
    font-size: 11.6vw;
    margin: 0 auto;
  }
  .mainVisual p {
    text-align: center;
    font-size: 5.2vw;
  }
  
  .mainVisual .ripLeopard {
    bottom: 5vw;
    left: 5vw;
    width: min(12vh, 20%);
    transform: translateY(0%);
  }
  .mainVisual .calendarBtn {
    bottom: 8vh;
  }
  .mainVisual .calendarBtn a {
    padding: 0.9em 1em;
  }
  
  .scroll {
    bottom: 2.5vh;
    left: 50vw;
    right: inherit;
    transform: translateX(-50%);
  }
  .scroll a {
    font-size: 3vw;
  }
  
  .modalMessege .closeBtn {
    transform: translate(25%, -25%);
  }
  
}

/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
section {
  padding: min(10vw, 80px) min(6vw, 60px);
}
section h2 {
  font-family: "Lato", sans-serif;
  font-size: min(9.6vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #00A0E9;
  margin-bottom: min(6vw, 30px);
  position: relative;
  padding-left: 0.6em;
}
section h2::before {
  content: "";
  display: block;
  width: 0.3em;
  height: 3px;
  background-color: #00A0E9;
  position: absolute;
  top: 50%;
  left: 0;
}
.contentWrap {
  max-width: 1180px;
  margin: 0 auto;
}

.btnRed {
  display: flex;
  justify-content: center;
}
.btnRed a {
  display: flex;
  justify-content: center;
  gap: min(2vw, 10px);
  background-color: #EB6168;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 0.6em 3em;
  width: fit-content;
  border-radius: 100px;
  min-width: 180px;
  border: #EB6168 solid 2px;
}

@media screen and (min-width: 821px) {
  .btnRed a:hover {
    opacity: 1;
    background-color: #fff;
    color: #EB6168;
  }
}
@media screen and (max-width: 820px) {
  
  
}

/* ////////////////////////////////////////////////////////////////////////////////

	product

//////////////////////////////////////////////////////////////////////////////// */

.productBox {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: min(6vw, 30px) 0 min(7vw, 40px);
  border-radius: min(2vw, 10px);
}
.productBox h3 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: min(5.4vw, 36px);
  letter-spacing: 0.08em;
  width: 100%;
  text-align: center;
  margin-bottom: min(6vw, 30px);
  color: #00A0E9;
}
.productBox .productBlock {
  padding: 0 min(8vw, 60px) min(8vw, 50px);
  width: 50%;
  position: relative;
}
.productBox .productBlock:last-child {
  border-left: #00A0E9 solid 1px;
}
.productBox .productBlock h4 {
  display: flex;
  justify-content: space-between;
  color: #00A0E9;
  font-size: min(4.2vw, 24px);
  align-items: center;
  margin-bottom: min(4vw, 20px);
}
.productBox .productBlock h4 span {
  color: #fff;
  background-color: #00A0E9;
  font-size: 0.6em;
  padding: 0 1em 0.1em;
}
.productBox .productBlock .jacket {
  line-height: 0;
  width: 90%;
  margin: 0 auto min(3vw, 15px);
}
.productBox .productBlock .jacket img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.productBox .productBlock .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: min(3.4vw, 16px);
  font-weight: bold;
  border-bottom: #00A0E9 solid 1px;
  padding: 0 0 min(2vw, 10px);
}
.productBox .productBlock .price span {
  font-size: 0.8em;
  font-weight: normal;
}
.productBox .productBlock .productInfo {
  border-bottom: #00A0E9 solid 1px;
  padding: min(2vw, 10px) 0 min(2vw, 10px);
  margin: 0 0 min(4vw, 20px);
  list-style: disc;
  padding-left: min(4vw, 20px);
}


@media screen and (min-width: 821px) {
  
  .productBox .productBlock .jacket {
    aspect-ratio: 1/1;
  }
  .productBox .productBlock .btnRed {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
}
@media screen and (max-width: 820px) {
  
  .productBox {
    flex-direction: column;
  }
  .productBox h3 {
    line-height: 1.4;
  }
  .productBox .productBlock {
    width: 90%;
    margin: 0 auto;
    padding: min(6vw, 30px) 0;
  }
  .productBox .productBlock {
    border-left: none !important;
    border-top: #00A0E9 solid 1px;
  }
  .productBox .productBlock .jacket {
    width: 70%;
    margin: 0 auto min(3vw, 15px);
  }
  .productBox .productBlock .btnRed {
    margin-top: min(4vw, 20px);
  }
  
}



#track {
  background-color: #00A0E9;
}
#track h2 {
  color: #fff;
}
#track h2::before {
  background-color: #fff;
}

.trackTab {
  display: flex;
}
.trackTab li {
  width: 50%;
}
.trackTab li a {
  display: block;
  background-color: #00A0E9;
  text-align: center;
  border-radius: min(2vw,  10px) min(2vw,  10px) 0 0;
  color: #fff;
  font-size: min(3.6vw, 18px);
  font-weight: 700;
  text-decoration: none;
  padding: 0.6em;
  border: #fff solid 1px;
}
.trackTab li a.current {
  background-color: #fff;
  color: #00A0E9;
}
.trackTab li a.current:hover {
  opacity: 1;
}
.trackTab li a span {
  display: inline-block;
  padding-bottom: 0.3em;
  position: relative;
}
.trackTab li a.current span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00A0E9;
}

.trackWrap {
  background-color: #fff;
  padding: min(8vw, 60px) min(6vw, 30px);
  display: none;
}
.trackWrap.on {
  display: block;
}
.trackWrap h3 {
  text-align: center;
  color: #00A0E9;
  font-size: min(4.4vw, 26px);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: min(4vw, 20px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(4vw, 20px);
}
/*
.trackWrap h3::before,
.trackWrap h3::after {
  content: "";
  display: block;
  width: 1.4em;
  aspect-ratio: 100/54;
  background: url("../images/ico_lip.png") no-repeat center center / contain;
}
*/

.trackWrap .trackListWrap {
  display: flex;
  flex-wrap: wrap;
  gap: min(8vw, 60px) 0;
}
.trackWrap .trackListWrap .trackList {
  width: 50%;
}
.trackWrap .trackListWrap .trackList.list01 {
  padding-right: 5%;
  border-right: #00A0E9 solid 1px;
}
.trackWrap .trackListWrap .trackList.list02 {
  padding-left: 5%;
}

.trackWrap .trackListWrap .trackList .listNum {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: min(3.6vw, 18px);
  color: #00A0E9;
  display: flex;
  align-items: center;
  gap: min(2vw, 10px);
  margin-bottom: min(3vw, 15px);
}
.trackWrap .trackListWrap .trackList .listNum::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #00A0E9;
}
.trackWrap .trackListWrap .trackList h4 {
  font-size: min(4vw, 20px);
  font-weight: 700;
  color: #00A0E9;
  line-height: 1.6;
  margin-bottom: min(4vw, 20px);
}
.trackWrap .trackListWrap .trackList ol {
  padding-left: min(5vw, 25px);
  list-style: decimal;
}

.trackWrap .trackListWrap .trackList.list03 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.trackWrap .trackListWrap .trackList.list03 .listNum {
  width: 100%;
}
.trackWrap .trackListWrap .trackList.list03 h4 {
  width: 100%;
}
.trackWrap .trackListWrap .trackList.list03 ol {
  width: calc(100% / 3);
}


.trackWrap .trackListWrap .trackList.list04 {
  width: 100%;
}

.limitBenefit {
  background-color: #FFF5E5;
  text-align: center;
  padding: min(4vw, 20px);
  color: #00A0E9;
  margin-top: min(6vw, 30px);
}
.limitBenefit h5 {
  font-size: min(3.8vw, 20px);
  font-weight: 600;
  padding-bottom: min(2vw, 10px);
  border-bottom: #00A0E9 solid 1px;
  margin-bottom: min(3vw, 15px);
  line-height: 1.4;
}
.limitBenefit p {
  font-weight: bold;
  font-size: min(3.4vw, 16px);
}

@media screen and (max-width: 820px) {
  
  .trackWrap .trackListWrap .trackList {
    width: 100%;
  }
  .trackWrap .trackListWrap .trackList.list01 {
    padding-right: 0;
    border-right: none;
  }
  .trackWrap .trackListWrap .trackList.list02 {
    padding-left: 0;
  }
  .trackWrap .trackListWrap .trackList.list03 {
    flex-direction: column;
  }
  .trackWrap .trackListWrap .trackList.list03 ol {
    width: 100%;
  }
  
  
}


#pic {
  position: relative;
}
#pic::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background-color: #00A0E9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.leopardWide {
  line-height: 0;
}

.benefitWrap {
  background-color: #fff;
  padding: min(6vw, 30px);
}
.benefitWrap h3 {
  font-size: min(4vw, 22px);
  font-weight: 700;
  text-align: center;
  color: #00A0E9;
  margin-bottom: min(4vw, 20px);
}
.benefitWrap .benefitList {
  border-top: #00A0E9 solid 1px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: min(6vw, 30px);
}
.benefitWrap .benefitList li {
  width: calc(100% / 3);
  padding: min(6vw, 30px);
  border-bottom: #00A0E9 solid 1px;
  border-right: #00A0E9 solid 1px;
}
.benefitWrap .benefitList.list01 li:nth-child(3n),
.benefitWrap .benefitList.list02 li:nth-child(3n+1) {
  border-right: none;
}
.benefitWrap .benefitList li h4 {
  font-size: min(3.4vw, 16px);
  font-weight: 600;
  text-align: center;
  color: #00A0E9;
  margin-bottom: min(3vw, 15px);
}
.benefitWrap .benefitList li .jacket {
  line-height: 0;
  width: 90%;
  margin: 0 auto min(3vw, 15px);
}
.benefitWrap .benefitList li p {
  font-size: min(3vw, 12px);
}
.benefitWrap .benefitList li .btnRed {
  margin-top: min(4vw, 20px);
}

.benefitWrap .benefitList li.wide {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
}
.benefitWrap .benefitList li.wide h4 {
  position: absolute;
  top: min(6vw, 30px);
  left: min(6vw, 30px);
  width: 35%;
}
.benefitWrap .benefitList li.wide .benefitTxt {
  width: 39%;
  text-align: center;
  padding-top: min(7vw, 50px);
}
.benefitWrap .benefitList li.wide .jacket {
  width: 57%;
  display: flex;
  gap: 5%;
  margin: 0;
}
.benefitWrap .benefitList li.wide .jacket img {
  width: 48%;
}

.benefitWrap .comingsoon {
  border-top: #00A0E9 solid 1px;
  border-bottom: #00A0E9 solid 1px;
  display: flex;
  justify-content: center;
  margin-bottom: min(6vw, 30px);
  padding: min(8vw, 60px) min(6vw, 30px);
}
.benefitWrap .comingsoon p {
  text-align: center;
  color: #00A0E9;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: min(3.4vw, 16px);

}


.bonusWrap {
  padding-bottom: min(6vw, 30px);
  border-bottom: #00A0E9 solid 1px;
  margin-bottom: min(6vw, 30px);
}
.bonusWrap .bonusBox {
  background-color: #FFF5E5;
  text-align: center;
  color: #00A0E9;
  padding: min(6vw, 30px);
  font-weight: 600;
  font-size: min(3.4vw, 16px);
}
.bonusWrap .bonusBox p span {
  font-size: 0.9em;
  font-weight: 400;
}


@media screen and (max-width: 820px) {
  
  .benefitWrap .benefitList {
    
  }
  .benefitWrap .benefitList li {
    width: 100%;
    padding: min(6vw, 30px);
    border-right: none;
  }
  
  .benefitWrap .benefitList li.wide {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  .benefitWrap .benefitList li.wide h4 {
    position: static;
    width: 100%;
  }
  .benefitWrap .benefitList li.wide .benefitTxt {
    width: 100%;
    padding-top: min(3vw, 15px);
  }
  .benefitWrap .benefitList li.wide .jacket {
    width: 100%;
  }
  .benefitWrap .benefitList li.wide .jacket img {
    width: 48%;
  }
  
  
}


#video {
  background-color: #00A0E9;
  color: #fff;
}
#video h2 {
  color: #fff;
}
#video h2::before {
  background-color: #fff;
}

.videoList li {
  padding: min(6vw, 30px) 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.videoList li + li {
  border-top: #fff solid 1px;
}
.videoList li .mov {
  width: 45%;
  aspect-ratio: 16/9;
}
.videoList li .mov iframe {
  width: 100%;
  height: 100%;
}
.videoList li .videoTxt {
  width: 50%;
}
.videoList li .videoTxt h3 {
  font-size: min(3.6vw, 18px);
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
}

@media screen and (max-width: 820px) {
  
  .videoList li {
    display: flex;
    flex-direction: column;
    gap: min(4vw, 20px);
  }
  .videoList li .mov {
    width: 100%;
  }
  .videoList li .videoTxt {
    width: 100%;
  }
}

/* ////////////////////////////////////////////////////////////////////////////////

	Footer

//////////////////////////////////////////////////////////////////////////////// */
#footer {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: end;
	padding: min(4vw, 40px);
  z-index: 0;
}

footer .sns-nav {
	display: flex;
	gap: min(4vw, 20px);
	margin-bottom: 0;
}
footer .sns-nav li {
	margin: 0;
	vertical-align: bottom;
}
#footer .sns-nav a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #00A0E9;
	width: min(8.6vw, 40px);
	height: min(8.6vw, 40px);
	border-radius: 100%;
}
#footer .sns-nav a i {
	font-size: min(5.2vw, 22px);
}
footer .sns-nav a svg {
	width: min(5.4vw, 23px);
	height: min(5.4vw, 23px);
}
#footer .sns-nav a,
#footer .sns-nav a svg {
	color: #fff;
	fill: #fff;
}
#footer .sns-nav a img {
	width: 28px;
}
#footer .sns-nav a svg,
#footer .sns-nav a img,
.sns-nav a i {
	vertical-align: text-top;
}
#footer .copyright {
	color: #00A0E9;
	line-height: 1.2;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 0;
}

@media screen and (max-width: 820px) {

	#footer {
		flex-direction: column;
		justify-content: end;
		align-items: center;
	}
	#footer > div {
		flex-direction: column-reverse;
	}
	#footer .copyright {
		width: 100%;
		text-align: center;
		padding-top: min(4vw, 20px);
	}
}