@charset "utf-8";
/* CSS Document */

/*common
=======================*/
html
#main {
  box-sizing: border-box;
  font-size: 1.6rem;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  color: #333333;
  line-height: 1.7;
  margin: 0 auto;
}
#main img{
	vertical-align:top;
  pointer-events: none;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}
.contents_inner {
	max-width: 1160px;
	margin: 0 auto;
}
section h2 {
	position: relative;
	margin: 0;
	font-size: 3rem;
	font-weight: 500;
	text-align: center;
}
section h2::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	width: 60px;
	height: 5px;
	background: #ddd;
}
@media screen and (min-width:768px) {
	.spOnly {
		display: none;
	}
}
@media screen and (max-width:767.98px) {
	.pcOnly {
		display: none;
	}
	.contents_inner {
		padding: 0 10px;
	}
	section h2 {
		font-size: 2.2rem;
	}
	section h2::after {
		width: 50px;
    height: 4px;
	}
}

/*---animation---*/
.anim_fadein {
  animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim_scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s, transform 1s;
}
.anim_scroll.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.kvTitWrap .anim_scroll {
  transform: translateY(30px) scale(.7);
}
.kvTitWrap .anim_scroll.scrollin {
  transform: translate(0, 0) scale(1);
}
@media screen and (max-width:767.98px) {
	.anim_scroll_sp {
		opacity: 0;
		transform: translateY(40px);
		transition: opacity 1s, transform 1s;
	}
}
/*=====================*/


/*kvArea
=======================*/
.kvArea {
	position: relative;
}
.kv {
	height: 470px;
	margin: 0;
}
.kvTitWrap {
	position: absolute;
	top: 40%;
	left: 50%;
	max-width: 1160px;
	width: 100%;
	transform: translate(-50%, -40%);
	text-align: center;
	z-index: 5;
}
.kvArea h1 {
	position: relative;
	margin: 0;
	font-size: 3.4rem;
}
.kvArea .introTxt {
	margin-top: 45px;
	padding: 20px 50px;
	color: #fff;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.5) 15%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 85%, rgba(255,255,255,0) 100%);
}
.kv .slider-item {
	height: 450px;
}
.kv img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:767.98px) {
	.kv, .kv .slider-item {
		height: 270px;
	}
	.kvTitWrap {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.kvArea h1 {
		max-width: 370px;
    margin: 0 auto;
		padding: 0 15px;
		font-size: 1.5rem;
		font-weight: normal;
	}
	.kvArea .introTxt {
		margin-top: 18px;
		padding: 8px 30px;
		font-size: 1.2rem;
	}
}
/*=====================*/



/*annotationBlock
=======================*/
.annotationBlock {
	margin-top: 25px;
	font-size: 1.4rem;
	text-align: center;
}
.annotationBlock_inner {
	display: inline-block;
	text-align: left;
}
.annotationBlock .indent {
	margin-left: 1em;
	text-indent: -1em;
}
/*=====================*/



/*menuNav
=======================*/
.menuNav {
	position: sticky;
	top: 0;
	background: #fff;
	margin-top: 65px;
	transition: 0.2s ease all;
	z-index: 5;
}
.menuNav.is-sticky {
	box-shadow: 0 10px 10px -5px rgba(0, 0, 0, .4);
	transition: 0.2s ease all;
}
.menuNav_inner {
	display: flex;
	justify-content: center;
	max-width: 1160px;
	margin: 0 auto;
}
.menuNav .navItem {
	width: 100%;
	font-size: 2rem;
	line-height: 1.4;
	text-align: center;
	border-right: 2px solid #f33b2a;
}
.menuNav .navItem:last-of-type {
	border-right: none;
}
.menuNav .navItem a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
  padding: 0 20px 30px 20px;
  color: #f33b2a;
	transition: 0.2s ease all;
}
.menuNav .navItem a::after {
	position: absolute;
	content: '';
	bottom: 10px;
	left: 50%;
	width: 15px;
	height: 15px;
	border-right: 3px solid #f33b2a;
	border-bottom: 3px solid #f33b2a;
	transform: translateX(-50%) rotate(45deg);
}

@media (min-width: 768px) {
	.menuNav .navItem {
		transition: 0.2s ease all;
	}
	.menuNav .navItem a:hover {
		background: #FCDFDC;
		transition: 0.2s ease all;
	}
}
@media screen and (max-width:767.98px) {
	.menuNav {
		margin-top: 55px;
	}
	.menuNav_inner {
		flex-wrap: wrap;
	}
	.menuNav .navItem {
		max-width: 110px;
		width: 100%;
		padding-bottom: 5px;
		font-size: 1.2rem;
		letter-spacing: -1px
	}
	.menuNav .navItem:nth-of-type(3) {
		border-right: 0;
	}
	.menuNav .navItem a {
		padding: 5px 10px 5px 10px;
	}
	.menuNav .navItem a::after {
		display: none;
		width: 12px;
    height: 12px;
	}
}
@media screen and (min-width: 530px) and (max-width:767.98px) {
	.menuNav .navItem:nth-of-type(3) {
		border-right: 2px solid #f33b2a;
	}
}
@media screen and (min-width: 426px) and (max-width:767.98px) {
	.menuNav .navItem {
		max-width: 130px;
	}
}
@media screen and (max-width:359px) {
	.menuNav .navItem {
		max-width: 100px;
		font-size: 1.1rem;
	}
}
/*=====================*/



/*coupon
=======================*/
.couponBox {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
}
.couponBox .couponItem {
	max-width: 260px;
	margin-right: 40px;
	background: #fff;
	box-shadow: 0 1px 10px 2px rgba(0, 0, 0, .25);
	border-radius: 10px;
	overflow: hidden;
}
.couponBox .couponItem:nth-of-type(4n) {
	margin-right: 0;
}
.couponBox .couponItem .mainBlock {
	color: #fff;
	font-weight: bold;
}
.couponBox .couponItem .mainBlock_inner {
	padding: 20px 20px 0 20px;
}
.couponBox .couponItem .areaIcon {
	display: inline-block;
  padding: 0px 8px 0 18px;
  font-size: 1.5rem;
	background: #fff;
	border-radius: 30px;
}
 .couponBox .abSide .areaIcon {
	display: inline-block;
  padding: 0px 12px;
  font-size: 1.5rem;
	background: #fff;
	border-radius: 30px;
}
.couponBox .couponItem .discount {
	margin: 4px 0 12px;
	font-size: 2.6rem;
	line-height: 1.3;
	text-align: center;
	/*transition: 0.3s ease all;*/
}
.couponBox .couponItem .discount .smTxt {
	font-size: 2.0rem;
}
.couponBox .couponItem .discount .numTxt {
	font-size: 4rem;
}
.couponBox .couponItem .discount .enTxt {
	font-size: 3rem;
}
.couponBox .couponItem .bottomTxt {
	padding: 3px 0;
	font-weight: bold;
	text-align: center;
}
.couponBox .couponItem .txtBlock {
	padding: 18px;
	color: #333333;
}
.couponBox .couponItem .couponTit {
	font-size: 1.8rem;
	transition: 0.2s ease all;
}
.couponBox .couponItem .period {
	margin-top: 20px;
	font-size: 1.2rem;
	letter-spacing: -.5px;
	color: #8c8c8c;
}
.couponBox .couponItem .to_detail {
	padding: 10px 0 12px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	border-top: 1px solid #949494;
	transition: 0.2s ease all;
}
.couponBox .blankTxt {
	margin: 15px auto 10px;
}

/*---domSide---*/
.couponBox .couponItem.domSide .areaIcon {
	color: #27aa5b;
}
.couponBox .couponItem.domSide .mainBlock {
	background: #27aa5b;
}
.couponBox .couponItem.domSide .mainBlock .bottomTxt {
	background: #176637;
}
.couponBox .couponItem.domSide .to_detail {
	color: #27aa5b;
}
/*-------------*/

/*---abSide---*/
.couponBox .couponItem.abSide .areaIcon {
	color: #2657b0;
}
.couponBox .couponItem.abSide .mainBlock {
	background: #2657b0;
}
.couponBox .couponItem.abSide .mainBlock .bottomTxt {
	background: #17346a;
}
.couponBox .couponItem.abSide .to_detail {
	color: #2657b0;
}
/*------------*/

@media (min-width: 768px) {
	.couponBox .couponItem:nth-of-type(n+5) {
		margin-top: 40px;
	}
	.couponBox .couponItem a:hover .couponTit {
		color: #cc0d21;
		transition: 0.2s ease all;
	}
	.couponBox .couponItem.domSide a:hover .to_detail {
		color: #fff;
		background: #27aa5b;
		transition: 0.2s ease all;
	}
	.couponBox .couponItem.abSide a:hover .to_detail {
		color: #fff;
		background: #2657b0;
		transition: 0.2s ease all;
	}
}
@media screen and (max-width:767.98px) {
	.couponBox {
		display: block;
	}
	.couponBox .couponItem {
		max-width: 100%;
		margin-right: 0;
	}
	.couponBox .couponItem .mainBlock_inner {
		padding: 15px 15px 0 15px;
	}
	.couponBox .couponItem:nth-of-type(n+2) {
		margin-top: 30px;
	}
	.couponBox .couponItem .discount {
		letter-spacing: 2px;
	}
  .couponBox .couponItem .discount .smTxt {
    font-size: 2.4rem;
  }
	.couponBox .couponItem .discount .numTxt {
    font-size: 4.5rem;
	}
	.couponBox .couponItem .couponTit {
		font-size: 1.6rem;
	}
	.couponBox .couponItem .period {
		font-size: 1.4rem;
	}
	.couponBox .couponItem .to_detail {
		font-size: 2.3rem;
	}
	.couponBox .blankTxt {
		font-size: 1.4rem;
		text-align: center;
	}
}
@media screen and (min-width: 540px) and (max-width:767.98px) {
	.couponBox {
		display: flex;
		justify-content: space-between;
	}
	.couponBox .couponItem {
		max-width: calc((100% - 10px)/2);
	}
	.couponBox .couponItem:nth-of-type(2) {
		margin-top: 0;
	}
	.couponBox .couponItem .discount {
		letter-spacing: 0;
	}
	.couponBox .couponItem .discount .numTxt {
    font-size: 4rem;
	}
	.couponBox .couponItem .period {
		font-size: 1.2rem;
	}
}
/*=====================*/



/*domesticArea
=======================*/
.domesticArea {
	margin-top: 50px;
}
.domesticArea h2::after {
	background: #27aa5b;
}
/*=====================*/



/*abroadArea
=======================*/
.abroadArea {
	margin-top: 95px;
}
.abroadArea h2::after {
	background: #2657b0;
}

@media screen and (max-width:767.98px) {
	.abroadArea {
		margin-top: 80px;
	}
}
/*=====================*/



/*usageArea
=======================*/
.usageArea {
	max-width: 1160px;
	margin: 95px auto 0;
	padding: 40px;
	background: #f7f7f7;
}
.usageArea h2::after {
	background: #cccccc;
}
.usageArea .stepBlock {
	margin-top: 30px;
	padding: 40px 40px 50px;
	background: #fff;
	text-align: center;
	border-radius: 50px;
}
.usageArea .stepItem:nth-of-type(n+2) {
	margin-top: 40px;
}
.usageArea .stepItem h3 {
	display: inline-block;
	margin: 0 0 15px 0;
	padding: 2px 26px;
	color: #fff;
	font-size: 2.4rem;
	background: #f34939;
	border-radius: 50px;
}
.usageArea .stepItem figure {
	margin-top: 20px;
}

@media screen and (max-width:767.98px) {
	.usageArea {
		margin-top: 80px;
		padding: 30px 10px;
	}
	.usageArea .stepBlock {
		padding: 30px 16px;
	}
	.usageArea .stepItem:nth-of-type(n+2) {
		margin-top: 50px;
	}
	.usageArea .stepItem h3 {
		margin-bottom: 10px;
		padding: 2px 15px;
		font-size: 1.5rem;
	}
	.usageArea .stepItem p {
		font-size: 1.4rem;
	}
}
/*=====================*/



/*faqArea
=======================*/
.faqArea {
	margin-top: 55px;
}
.faqArea h2::after {
	display: none;
}
.faqArea .faqBlock {
	border-top: 2px solid #dddddd;
}
.faqArea .faqItem {
	border-bottom: 2px solid #dddddd;
}
.faqArea .qTxt {
	position: relative;
	padding: 25px 60px 22px 40px;
}
.faqArea .qTxt::before {
	content: 'Q';
	position: absolute;
	color: #cc0d21;
	font-size: 3rem;
	top: 12px;
	left: 0;
}
.faqArea .aTxt {
	position: relative;
	padding: 10px 15px 20px 40px;
}
.faqArea .aTxt.nopad_bottom {
	padding-bottom: 0;
}
.faqArea .aTxt::before {
	content: 'A';
	position: absolute;
	color: #0058a4;
	font-size: 3rem;
	top: -2px;
	left: 0;
}
.faqArea .aTxt.nopad_bottom::before {
	top: 60%;
	transform: translateY(-50%);
}
.faq_accordionTitle {
	position: relative;
  cursor: pointer;
  transition: .3s;
}
.faq_accordionTitle.active {
	transition: .3s;
}
.faq_accordionContent {
  max-height: 0;
  padding: 0 2px;
  transition: max-height 0.3s ease;
  overflow: hidden;
}
.faq_accordionTitle::after {
	position: absolute;
  content: '';
  top: 50%;
  right: 25px;
	transform: translateY(-50%) rotate(45deg);
  width: 15px;
  height: 15px;
  border-right: 2px solid #cc0d21;
  border-bottom: 2px solid #cc0d21;
	transition: .3s;
}
.faq_accordionTitle.active::after {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
	transition: .3s;
}
.faqArea .indent {
	margin-left: 1em;
	text-indent: -1em;
	padding-left: 40px;
}
.faqArea .faq_accordionContent p:last-of-type:not(.aTxt) {
	padding-bottom: 30px;
}
.faqArea .readMore {
	margin-top: 20px;
}
.faqArea .readMore a {
	position: relative;
}
.faqArea .readMore a::after {
	position: absolute;
  content: '';
  top: 54%;
  right: -11px;
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-right: 1px solid #069;
  border-bottom: 1px solid #069;
  transition: .3s;
}


@media (min-width: 768px) {
	.faqArea .faqItem:hover {
		background: #f9f9f9;
	}
	.faqArea .readMore a:hover::after {
		border-right: 1px solid #cc0d21;
		border-bottom: 1px solid #cc0d21;
		transition: .3s;
	}
}
@media screen and (max-width:767.98px) {
	.faqArea .faqItem {
		font-size: 1.4rem;
	}
	.faqArea .qTxt {
    padding: 15px 40px 12px 32px;
	}
	.faqArea .aTxt {
    padding: 5px 10px 12px 30px;
	}
	.faqArea .qTxt::before {
		top: 4px;
		font-size: 2.5rem;
	}
	.faqArea .aTxt::before {
		top: -5px;
		font-size: 2.5rem;
	}
	.faqArea .aTxt.nopad_bottom::before {
    top: -5px;
		transform: translateY(0); 
	}
	.faq_accordionTitle::after {
		right: 15px;
    width: 12px;
    height: 12px;
	}
	.faqArea .indent {
		padding: 0 15px 0 30px;
	}
	.faqArea .readMore {
		margin-top: 15px;
		font-size: 1.4rem
	}
	.faqArea .readMore a::after {
		right: -9px;
		width: 7px;
		height: 7px;
	}
}
/*=====================*/



/*endArea
=======================*/
.endArea {
	margin-top: 95px;
}
.endArea h2::after {
	background: #cccccc;
}
.endArea .endOverlay {
	position: relative;
	overflow: hidden;
}
.endArea .endOverlay::before {
	content: '配布終了';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	color: #fff;
	font-size: 4rem;
	text-align: center;
	z-index: 1;
}
.endArea .endOverlay::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .65;
}

@media screen and (max-width:767.98px) {
	.endArea {
		margin-top: 70px;
	}
}
/*=====================*/



/*area_button
=======================*/
.area_button{
  text-align: center;
  margin: 40px 0;
  font-family: 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, Arial, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.area_button .contents_wrap{
  justify-content: center;
  flex-wrap: wrap;
}
.area_button__titbox__fukidashi{
  position: relative;
  display: inline-block;
  border-bottom: solid 1px #cc0d20;
  padding: 5px 0;
  color: #cc0d20;
  font-weight: bold;
  font-size: 18px;
}
.area_button__titbox__fukidashi:before,
.area_button__titbox__fukidashi:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.area_button__titbox__fukidashi:before {
  border: solid 9px transparent;
  border-top: solid 14px #cc0d20;
}
.area_button__titbox__fukidashi:after {
  border: solid 11px transparent;
  border-top: solid 17px #fff;
  margin-top: -5px;
}
.area_button__titbox__tit{
  font-size: 2.4rem;
  color: #333333;
  margin: 15px 5px;
}
.area_button__link{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 760px;
}
.area_button__link li{
  width: 100%;
}
.area_button__link li a{
  text-align: center;
  position: relative;
  display: block;
  font-size: 17px;
  font-weight: bold;
  border: 2px solid #cc0d20;
  border-radius: 5px;
  padding: 10px 36px 9px 9px;
  width: 100%;
  color: #333333;
  box-shadow: 0 1px 1px 1px rgb(0 0 0 / 10%);
}
.area_button__link li a:before{
	display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: #cc0d21;
  content: "";
  width: 27px;
}
.area_button__link li a:after{
  -webkit-transform: rotate(45deg);
  display: block;
  position: absolute;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  top: calc(50% - 4px);
  right: 10px;
  width: 8px;
  height: 8px;
}
@media screen and (min-width:768px) {
	.area_button {
		margin-top: 0;
	}
	.area_button__link li{
		max-width: 138px;
	}
	.area_button__link li a:hover{
		opacity: 0.7;
	}
}
@media screen and (max-width:767.98px) {
	.area_button__link {
		margin: 0 10px 0;
	}
  .area_button__link li a {
    padding: 10px 36px 9px 9px;
    margin-bottom: 5px;
    font-size: 1.8rem;
    font-weight: bold;
  }
}
/*=====================*/


/*pageTopBtn
=======================*/
.pageTopBtn {
	display: inline-block;
  width: 52px;
  /*left: calc(100vw - 5em);*/
	left: 93%;
	position: sticky;
	bottom: 30px;
	text-align: right;
	opacity: 0;
	z-index: 10;
}
.pageTopBtn_inner {
	margin: auto;
}
.pageTopBtn a {
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 52px;
  height: 52px;
	background: #aaaaaa;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
	cursor: default;
}
.pageTopBtn a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 55%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}
.pageTopBtn.-show {
	opacity: 1;
}
.pageTopBtn.-show a {
	cursor: pointer;
}
.pageTopBtn.-transition500 {
	transition: .2s ease;
}

@media screen and (min-width:768px) {
	.pageTopBtn a:hover {
		background: #c2c2c2;
	}
}

@media screen and (max-width:767.98px) {
	.pageTopBtn a {
		width: 45px;
    height: 45px;
	}
	.pageTopBtn a:before {
		width: 16px;
    height: 16px;
	}
}
/*=====================*/