/* common */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;600;700&display=swap');

body {
  color: #333;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "Yu Gothic", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin-top: -24px;
}
a {
  color: #333;
}

a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

hr {
    margin: 16px 0;
}

time {
    color: #858585;
    font-size: clamp(12px, 1.7vw, 14px);
    font-weight: 600;
}

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

p {
  font-size: clamp(16px, 1.8vw, 20px);
}

ul {
    font-size: clamp(12px, 1.7vw, 14px);
    color: #666;
}

sup {
  position: relative;
  top: -1em;
  font-size: .6em;
  font-weight: 400;
}

h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

h3 {
    text-align: center;
    font-size: clamp(28px, 3.8vw, 32px);
    margin-bottom: 24px;
}

section {
	z-index: 0;
}

section:nth-child(even) {
    background-color: #E6F7F3;
}

#campaign {
    background-color: #FFF6D4;
}

#card {
    background-color: #F5F5F5;
}

#news {
    background-color: #FFFFFF;
}

#vcoupon,
#vmission,
#campaign {
    position: relative;
	overflow: hidden;
}

#vcoupon::before,
#vmission::before,
#campaign::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 30%;
    background-repeat: no-repeat;
    background-size: contain;
	z-index: -5;
}

#vcoupon::before {
    background-image: url("/camp/vcoupon/assets/img/coupon.svg");
    top: -16%;
	right: 0;
}

#vmission::before {
    background-image: url("/camp/vcoupon/assets/img/trophy.svg");
    top: -6%;
	left: 14%;
}

#campaign::before {
    background-image: url("/camp/vcoupon/assets/img/campaign_bg_top.svg");
    top: -8%;
	right: 4%;
}

#vcoupon::after,
#vmission::after,
#campaign::after {
    content: "";
    position: absolute;
    width: 20%;
    height: 30%;
    background-repeat: no-repeat;
    background-size: contain;
	z-index: -5;
}

#vcoupon::after {
	background-image: url("/camp/vcoupon/assets/img/bg_bottom.svg");
	bottom: -7%;
	left: 7%;
}
#vmission::after {
    background-image: url("/camp/vcoupon/assets/img/bg_bottom.svg");
    bottom: -8%;
	right: 5%;
}

#campaign::after {
    background-image: url("/camp/vcoupon/assets/img/campaign_bg_bottom.svg");
    bottom: -8%;
	left: 12%;
}

.content-width {
    margin: 0 auto;
    max-width: 90%;
    padding: 40px 0 56px;
}

#vcoupon .content-width,
#vmission .content-width {
	padding: 64px 0 80px;
}

#fixed_btn .content-width {
	padding-top: 56px;
}
@media screen and (min-width: 769px) {
	.content-width_flow_pc {
		margin: 0 auto;
		max-width: 90%;
		padding: 40px 0 80px;
	}
	#news .content-width {
		width: 864px;
	}
	.content-width_flow_bottom {
	margin-top: 56px;
	}
	#campaign .content-width {
		padding: 64px 0 80px;
	}
	#card .content-width,
	#news .content-width {
		padding-top: 64px;
		padding-bottom: 120px;
	}
}

@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
  }

  .content-width {
      max-width: 100%;
	  padding: 48px 16px 72px !important;
  }
  
  #recommend .content-width {
	padding: 24px 0 32px !important;
  }
  #recommend .content-width h3,
    #recommend .content-width ul {
  padding: 0 16px;
  }
  #vcoupon .content-width,
  #vmission .content-width {
	padding-bottom: 48px !important;
  }
  #fixed_btn .content-width {
	padding-top: 72px;
  }
  .content-width_flow_top,
  .content-width_flow_bottom {
  	max-width: 100%;
  }
  .content-width_flow_top {
  	padding: 48px 16px 0;
  }

  .content-width_flow_bottom {
  	padding: 0 16px 72px;
  }
  h2 {
      font-size: 28px;
	  margin-bottom: 32px;
  }

  h3 {
      font-size: 22px;
	  margin-bottom: 16px;
  }
  #vcoupon::before {
    top: -4%;
  	right: -18%;
	width: 45%;
  }

  #vmission::before {
    top: 4%;
  	left: 78%;
	width: 31%;
  }

  #campaign::before {
    top: -9%;
  	right: -12%;
	width: 35%;
  }
  #vcoupon::after,
  #vmission::after {
  	display: none;
  }

  #campaign::after {
    bottom: -3%;
  	left: -2%;
	width: 28%;
  }
}

.-red {
  color: #D90000;
}

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

.sec-inr {
  margin: 0 20px;
}

.-black {
  color: #333;
}

.-white {
  color: #FFFFFF !important;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
    .pc_only {
      display: none;
    }
    
    .sp_only {
      display: block;
    }
}

.mt-auto {
    margin-top: auto;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px !important;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mt-72 {
    margin-top: 72px;
}
.mb-4 {
    margin-bottom: 4px;
}
.mb-8 {
    margin-bottom: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

/* color */
:root {
  --green: #00846D;
  --light-green: #E6F5F2;
}

/* header */
#header {
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  gap: 24px;
  width: 100%;
  height: 72px;
  background-color: #FFFFFF;
  box-shadow: 0px 1px 5px 0px #00000026;
}

.header-logo img {
  width: 280px;
}

@media screen and (max-width: 768px) {
  #header {
    padding: 0 0 0 8px;
    height: 48px;
    gap: 0;
  }

  .header-logo img {
    width: 144px;
  }
 }

/* mv */

.mv {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  align-items: center;
  background-color: var(--green);
}

.mv_img {
  position: relative;
  max-width: 100%;
  text-align: center;
  background-image: url(/camp/vcoupon/assets/img/mv-pc-bg.png);
  background-size: cover;
  background-position: center;
  padding: 32px 0 56px;
  max-height: 800px;
}

.mv_img img {
	margin: 0 auto;
	max-width: 100%;
	width: 1200px;
}

.mv_elements {
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, 0%);
}

.mv_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70vw;
	gap: 32px;
}

.mv_btn a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 40px;
    height: 56px;
    width: 40%;
    text-decoration: none;
    box-shadow: 0 3px 3px 0 rgba(0, 132, 109, 0.2);
    color: var(--green);
    font-weight: 600;
	font-size: clamp(16px, 2.5vw, 24px);
}

.mv_btn a::after {
    content: "";
    position: absolute;
    top: 38%;
    right: 10%;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 0.6em;
    height: 0.6em;
    border: 0.2em solid var(--green);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
}

.mv_img .note li {
	text-shadow: 0 1px 1px rgba(0, 132, 109, 0.7)
}

@media screen and (max-width: 768px) {
  .mv_img {
	background-image: url(/camp/vcoupon/assets/img/mv-sp-bg.png);
	padding: 32px 0 108px;
	max-height: 850px;
  }
  .mv_img img {
  	width: 100%;
  }
  .mv_btn {
    gap: 16px;
	width: 86vw;
  }
  .mv_btn a {
    width: 45%;
	font-size: clamp(14px, 1.9vw, 16px);
	height: 44px;
  }
}

/* menu */

.menu-btn {
    position: relative;
    cursor: pointer;
    width: 48px;
    height: 48px;
    margin-right: 4px;
  }
  
  .menu-btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 12px;
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background-color: #333;
  }
  
  .menu-btn span:nth-of-type(1) {
    top: 17px;
  }
  
  .menu-btn span:nth-of-type(2) {
    top: 24px;
  }
  
  .menu-btn span:nth-of-type(3) {
    top: 31px;
  }
  
  .menu-btn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  
  .menu-btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .menu-btn.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }

  #menu {
    position: fixed;
    top: 16px;
    right: -100%;
    width: 100%;
    height: 100vh;
    transition: right 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    z-index: 99;
  }
  

  #menu.panelactive {
    right: 0;
    opacity: 1;
  }
  
  #menu.panelactive::after {
    background-color: rgba(255, 255, 255, 0.9);
    top: inherit;
    right: 0;
    width: 100%;
    z-index: -1;
  }

  #menu.panelactive #menu-list {
    height: 100vh;
  }

  #menu-list {
    margin: 72px 16px 0 auto;
	width: 290px;
  }

  #menu-list li {
    font-size: 16px;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid #EBF1EE;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  #menu.panelactive #menu-list li {
    opacity: 1;
    transform: translateY(0);
  }

  #menu-list a {
    text-decoration: none;
  }

  #menu-list li {
    text-align: center;
  }
  
  @media screen and (max-width: 768px) {
    #menu.panelactive {
      overflow-y: hidden;
    }
	#menu-list {
		margin-top: 48px;
	}
  }

/* note */
.note {
    margin-top: 24px;
}

.mv_img .note {
	margin-top: 12px;
}

.note li {
    position: relative;
    margin-left: 20px;
}
.note li::before {
    content: "※";
    position: absolute;
    left: -16px;
}

.mv_img .note {
    display: inline-block;
}

/* button */

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  padding: 12px;
  width: 400px;
  max-width: 100%;
  height: 56px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 1.9vw, 18px);
  transition: 0.3s;
}

.btn::after {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  border: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.btn-green {
  color: #FFFFFF;
  background-color: var(--green);
}

.btn-green::after {
  background-image: url(/camp/vcoupon/assets/img/blank_white.svg);
}
.hum_button .btn::after,
.btn-white::after {
  background-image: url(/camp/vcoupon/assets/img/blank_black.svg);
}

.coupons .btn-green::after {
  background-image: none;
}

.btn-white {
    background-color: #FFFFFF;
    border: 1px solid;
}

#card .btn {
    width: 72%;
    padding: 8px 28px 8px 8px;
}
.hum_button {
	background-color: #FFFFFF;
	border-radius: 12px;
}
.hum_button .btn:nth-child(1) {
	border-bottom: 1px solid #F5F5F5;
}
.hum_button .btn {
	width: 100%;
	margin: 0 0 0 auto;
	justify-content: left;
	border-radius: 0;
	font-weight: 300;
}

/* carousel */
.topics_slider {
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.topics_slider::after,
.topics_slider .slick-list::after {
    content: '';
    display: block;
    clear: both;
}

.topics_slider .slick-list {
    overflow: hidden;
}

.topics_slider a {
    display: block;
    max-width: 729px;
    float: left;
}

.topics_slider .slick-dots {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 1.8rem;
}

.topics_slider .slick-dots button {
    appearance: none;
    display: block;
    padding: 0;
    margin: 0;
    width: .8rem;
    height: .8rem;
    border-radius: 50%;
    background: #a6a6a6;
    border: 0;
    overflow: hidden;
    text-indent: -99rem;
}

.topics_slider .slick-dots .slick-active button {
    background: var(--green);
}

@media screen and (max-width: 768px) {
    .topics_slider {
        max-width: 300px;
		display: block;
    }

    .topics_slider a {
        max-width: 300px;
    }

    .topics_slider .slick-dots {
        gap: 20px;
        margin-top: 24px;
		pointer-events: auto;
    }

    .topics_slider .slick-dots button {
        width: 12px;
        height: 12px;
    }
	#card .btn {
	    padding: 8px 16px;
		max-width: 400px;
	}
}


@media (min-width: 769px) {
  .topics_slider {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
}

/*slider*/
.slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 4vw;
  scroll-behavior: smooth;
}

.slider ul {
  display: flex;
  gap: 24px;
  scroll-snap-type: x mandatory;
  padding: 0;
  margin: 0;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: scroll;
}

.slider ul li {
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
  list-style: none;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 28px;
  border: 2px solid #D6D6D6;
}

.slider li {
    text-align: center;
}
.slider ul li img {
    margin-top: auto;
}

.flow_title {
    font-weight: 600;
    font-size: clamp(16px, 2.5vw, 22px);
}
.flow_detail {
	font-size: clamp(14px, 1.9vw, 16px);
}

.flow_number {
	display: flex;
	align-items: center;
	justify-content: center;
    color: #FFFFFF !important;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin: 0 auto;
	font-size: 1.5rem;
	font-weight: 700;
	font-style: italic;
	font-family: "Noto Sans";
}

.flow_number_red {
    background-color: #F74A41;
}

.flow_number_orange {
    background-color: #F78F2B;
}

.scroll-left,
.scroll-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  background: #858585;
  width: 48px;
  height: 48px;
}
.scroll-left {
    left: 0px;
}



.scroll-left::after,
.scroll-right::after {
    content: "";
    position: absolute;
	top: 20px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 0.6em;
    height: 0.6em;
    border: 5px solid #FFFFFF;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
}

.scroll-left::after {
	left: 17px;
    transform: translateY(-25%) rotate(225deg);
}

.scroll-right::after {
	right: 17px;
    transform: translateY(-25%) rotate(45deg);
}

.scroll-right {
    right: 0px;
}

.scroll-markers {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.marker {
  width: 12px;
  height: 12px;
  border: 2px solid #858585;
  border-radius: 50%;
  cursor: pointer;
}
.marker.active {
  background-color: #858585;
}
.slider-container {
	margin-top: 32px;
}
@media screen and (max-width: 768px) {
	.slider-container {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
    .slider ul {
      gap: 12px;
	  margin-bottom: 24px;
      }
    .slider ul li {
      flex: 0 0 80%;
	  padding: 24px 16px;
    }
	.slider ul li:first-child {
		margin-left: 16px;
	}
	.slider ul li:last-child {
		margin-right: 16px;
	}
	.slider-container {
		margin-top: 16px;
	}
}

@media screen and (min-width: 769px) {
#recommend .scroll-left {
	left: -28px;
}

#recommend .scroll-right {
	right: -28px;
}
}

/*fixed*/

.fixed_layout {
	padding: 56px 0;
	margin: 0 auto;
	max-width: 90%;
}
@media screen and (max-width: 768px) {
.fixed_layout {
	padding: 72px 16px;
	max-width: 100%;
}
}

.fixed_btn {
	z-index: 50;
	position: fixed;
	left: 0;
	bottom: 0;
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	box-shadow: 	0 0 8px rgba(0,0,0,0.1),
	        0 0 8px rgba(0,0,0,0.1),
	        0 0 8px rgba(0,0,0,0.1),
	        0 0 8px rgba(0,0,0,0.1);
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
}

/* footer */

.copyright {
  text-align: center;
  background-color: #EDEDED;
  padding: 24px 0 100px 0;
  font-weight: 700;
}

.copyright small {
  font-size: 12px;
}

/* contents */
.coupon_container {
	position: relative;
}
@media screen and (min-width: 769px) {
.coupon_wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: fit-content;
	margin: 0 auto;
	}
}
.coupons {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    padding: 8px 16px;
}

.coupons .btn {
    padding: 8px;
    height: 48px;
}

.coupon {
    width: 24%;
	max-width: 160px;
    display: flex;
    flex-direction: column; 
    text-align: center;
    border-radius: 28px;
    padding: 16px;
    background-color: #FFFFFF;
    box-shadow:
		0 0 4px rgba(0,0,0,0.08),
		0 0 4px rgba(0,0,0,0.08),
		0 0 4px rgba(0,0,0,0.08),
		0 0 4px rgba(0,0,0,0.08);
}

.coupon p {
  text-align: center;
  flex-grow: 1;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 120%;
}

.coupon img {
    margin: auto;
	padding: 4px;
}

.coupon p:first-child {
    height: 20px;
}

.coupon .coupon_bottom {
  width: 100%;
  margin: 4px auto 0;
}

.return {
	font-weight: 600;
	font-size: clamp(16px, 1.8vw, 20px);
}

.return span {
    font-size: clamp(24px, 3.6vw, 30px);
    font-weight: 700;
}

.return::before {
    content: "＋";
    vertical-align: inherit;
    font-weight: 700;
    font-size: small;
}
.line {
	margin: 0px -16px;
}
svg{ 
	 height:24px;
} 
svg line{ 
	stroke: #D6D6D6;
	stroke-width: 10;
	stroke-linecap: round; 
	stroke-dasharray: 0.5, 25;
}

.about_layout {
    text-align: center;
	display: flex;
	gap: 24px;
}

.about_layout li {
    color: #333;
	display: flex;
	flex-direction: column;
}

.point_layout {
	display: flex;
	gap: 12px;
}

.step_decoration {
	display: flex;
	flex-direction: column;
	font-size: 48px;
	color: var(--green);
	font-weight: 700;
	font-style: italic;
	font-family: "Noto Sans";
}

.step_decoration span {
	font-size: 20px;
	margin-bottom: -20px;
	margin-left: 4px;
}

.blank_icon a {
	position: relative;
}

.blank_icon a::after {
	content: "";
	position: absolute;
	background-image: url(/camp/vcoupon/assets/img/blank_black.svg);
	width: 16px;
	height: 16px;
	top: 4px;
	margin-left: 2px;
}

.text_decoration {
    font-weight: 600;
    text-align: left;
	font-size: clamp(15px, 2.5vw, 22px);
}

.text_center {
	font-weight: 600;
	text-align: center;
	font-size: clamp(16px, 1.9vw, 18px);
}

.card_lineup {
    border: 2px solid #D6D6D6;
    border-radius: 28px;
    padding: 40px;
    background-color: #FFFFFF;
}

.card_title {
    position: relative;
    display: flex;
    align-items: center;
    left: 20px;
    font-weight: 600;
    font-size: clamp(18px, 1vw, 20px);
	padding-left: 8px;
}

.card_title::before {
    content: "●";
    position: absolute;
    color: var(--green);
    left: -20px;
}

.card_detail {
    display: flex;
    gap: 16px;
	align-items: flex-start;
}

.card_detail img {
    max-width: 40%;
    height: auto;
    object-fit: contain;
}
.card_detail p {
	font-size: clamp(14px, 1.9vw, 16px);
}
#news p {
	font-size: clamp(14px, 1.9vw, 16px);
}
@media screen and (max-width: 768px) {
    .btn,
	.text_center {
      font-size: clamp(14px, 1.9vw, 16px);
    }
    .coupon {
		width: 40%;
        max-width: 120px;
    }
    .card_lineup {
        padding: 24px 16px;
    }
    .card_lineup:not(:first-child) {
        margin-top: 16px;
    }
    .card_title {
        font-size: 16px;
    }
	.about_layout {
		display: block;
	}
	.about_layout li:not(:first-child) {
	    margin-top: 48px;
	}
	.text_decoration {
		font-size: 18px;
	}
	.coupons {
		gap: 12px;
	}
	.return,
	.coupon p {
		font-size: clamp(12px, 1.7vw, 14px);
	}
	.return span {
		font-size: clamp(20px, 2.5vw, 24px);
	}
	.step_decoration {
		font-size: 40px;
	}
	.step_decoration span {
		font-size: 17px;
		margin-bottom: -17px;
	}
	.button_layout {
		margin-top: 72px;
	}
}

@media screen and (min-width: 769px) {
	.card_lineups {
	    display: flex;
	    gap: 24px;
		justify-content: center;
	}
	.card_lineup {
	    display: flex;
	    flex-direction: column;
	    width: 450px;
		padding: 24px;
	}
	#vmission .about_layout {
		width: 66%;
		margin: 0 auto;
	}
	.button_layout {
		display: flex;
		gap: 24px;
		justify-content: center;
		margin-top: 80px;
	}
	.button_layout .btn {
		margin: 0;
	}
	#menu-list 	.button_layout {
		display: block;
	}
	.card_title {
	min-height: 4.3em;
	}
}

