@charset "utf-8";
/* CSS Document */
/*-----------------
base
------------------*/
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-style: normal;
}
html{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
}
body{
	color: #333;
	font-family: "Zen Maru Gothic", serif;
 	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 1.5rem;
	line-height: 1;
}
a{
	color: #333;
	font-family: "Zen Maru Gothic", serif;
	font-weight: bold;
	text-decoration: none;
	transition: all .2s;
	-webkit-transition: all .2s;
	-mos-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;		
}
a:hover{
	opacity: 0.7;
}
img{
	height: auto;
	max-width: 100%;
}
input, textarea, button, select{
	appearance: none;
	-webkit-appearance:none;
	-moz-appearance:none;
	outline: none;
	color: #333;
	font-size: 1.5rem;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
}
p{
	line-height: 1.6;
	font-size: 2.4rem;
	font-family: "Zen Maru Gothic", serif;
	font-weight: bold;
}
 :root {
      --main-blue: #07a4ec;
      --light-blue: #e0f8ff;
			--point-blue: #01e8fd;
	 		--pink: #ff4999;
	 		--yellow: #ffff00;
    }
/*-----------------
parts(PC)
------------------*/
.inner{
	width: 94%;
	max-width: 1146px;
	box-sizing: border-box;
	margin: 0 auto;
}
.btn_trigger{
	display: none;
}
.sp_img{
	display: none;
}
.br_sp{
	display: none;
}
.fadein{
	opacity: 0;
}
/*-----------------
header,header_nav(PC)
------------------*/
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 60px;
	background-color: var(--main-blue);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
/*ロゴ*/
.logo{
	width: 50px;
	height: 50px;
	margin-left: 50px;
}
.logo img{
	width: 100%;
	height: auto;
}
/*ヘッダーナビ*/
.header_nav{
	padding-right: 100px;
}
.header_nav2 {
	display: none;
}

.nav_list{
	font-weight: bold;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
}
.nav_item a{
	color: #fff;
}
.nav_list li+li{
	margin-left: 40px;
}
/*言語ボタン*/
.dropdown-menu li a{
	color: #000;
}
.nav_list li+li .dropdown-menu li+li{
	margin-left: 0;
}
.btn-secondary{
	padding: 0;
	font-size: large;
	--bs-btn-active-bg: #07a4ec;
	--bs-btn-hover-bg: #07a4ec;
	--bs-btn-active-border-color:#07a4ec;
	--bs-btn-bg: #07a4ec;
	--bs-btn-border-color: #07a4ec;
	--bs-btn-hover-border-color: #07a4ec;
}
/*-----------------
メインイメージ(PC)
------------------*/
/*背景半円*/
.main_img{
	overflow: hidden;
}
.hero_img_bg{
	margin-bottom: 60px;
	background-color: var(--main-blue);
	width: 100%;
	height: 400px;
	border-radius: 0 0 60% 60%; 
}
/*ヒーローイメージ*/
.hero_img{
	width: 100%;
	max-width: 1146px;
	height: auto;
	max-height: 600px;
	background-image: url(../images/main_img_pc.jpg);
	background-size: cover;
	background-position: center;
	margin: 60px auto 0;
	padding-bottom: 110px;
	position: relative;
}
.hero_img::before{
	content: "";
	position: absolute;
	width: 200px;
	height: 170px;
	bottom: 20px;
	right: -70px;
	background-image: url(../images/bg_accessory1.png);
	background-size: cover;
}
h1{
	padding: 100px 0 50px 70px;
	font-size: 7.2rem;
	font-weight: bold;
	color: var(--pink);
	line-height: 1.4;
}
.main_img .hero_img p{
	font-weight: bold;
	display: inline;
	padding: 0 10px 0 70px;
	color: var(--pink);
	background-color: #fff;
}
.hero_img ul{
	display: flex;
	text-align: center;
	justify-content: center;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
}
.hero_img ul li{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 30px;
	color: var(--main-blue);
	font-size: 3.6rem;
	font-weight: bold;
	width: 240px;
	height: 60px;
	background-color: var(--yellow);
	border-radius: 30px;
	border: solid 4px var(--main-blue);
}
.hero_txt{
	margin: 80px 0 0;
	text-align: center;
	font-weight: bold;
	color: var(--main-blue);
}
/*ボタン*/
.button{
	margin-top: 400px;
	margin-bottom: 100px;
	display: flex;
	justify-content: center;
}
.button a{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 20px;
	width: 360px;
	height: 80px;
	color: #fff;
	font-size: 2.4rem;
	background-color: var(--main-blue);
	border-radius: 10px;
	box-shadow: 0 10px 0 1px var(--point-blue);
	transition: all .2s;
	-webkit-transition: all .2s;
	-mos-transition: all .2s;
	-ms-transition: all .2s;
	-o-transition: all .2s;		
}
.button a:hover{
	opacity: 1;
	box-shadow: none;
}
/*-----------------
使い方PC)
------------------*/
section{
	padding: 120px 0;
}
/*背景画像*/
.use{
	background-image: url(../images/use_bg.jpg);
	background-size: cover;
	position: relative;
}
/*もみじ饅頭*/
.use::before{
	position: absolute;
	content: "";
	width: 300px;
	height: 170px;
	top: -50px;
	left: 5%;
	background-image: url(../images/bg_accessory2.png);
	background-size: cover;
}
/*かき*/
.use::after{
	position: absolute;
	content: "";
	width: 208px;
	height: 200px;
	bottom: -100px;
	right: 5%;
	background-image: url(../images/bg_accessory3.png);
	background-size: cover;
}
h2{
	text-align: center;
	font-size: 6.0rem;
	font-weight: bold;
	color: var(--main-blue);
	margin-bottom: 100px;
}
.use ul{
	counter-reset: number 0;           /* number のカウンタを 0 にセット */
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 60px;
}
.use ul li{
	position: relative;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 70px 14px 40px;
	width: 33.3%;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0 0 14px rgb(0, 0, 0, 0.09);
}
.use ul li::before{
	counter-increment: number 1;      /* number カウンタの増加数をセット */
	content: counter(number) " ";      /* 表示形式を指定 */
	position: absolute;
	font-size: 3.6rem;
	line-height: 2.0;
	font-weight: bold;
	color: #fff;
	width: 80px;
	height: 80px;
	background-color: var(--main-blue);
	top: -40px;
	border-radius: 40px;
}
strong{
	color: var(--main-blue);
	font-weight: bold;
	font-size: 3.6rem;
	display: block;
	line-height: 1.4;
}
.use img{
	padding: 30px 0;
}
/*-----------------
乗車券が買える場所(PC)
------------------*/
.map {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9のアスペクト比 */
	height: 0;
}

.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	box-shadow: 0 0 14px rgb(0, 0, 0, 0.09);
}
/*-----------------
クーポン一覧(PC)
------------------*/
/*背景*/
.coupon{
	padding: 148px 0;
	background-color: var(--light-blue);
	position: relative;
}
.coupon::before{
	content: "";
	width: 100%;
	height: 148px;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/bg_top.jpg);
}
.coupon::after{
	content: "";
	width: 100%;
	height: 68px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../images/bg_bottom.jpg);
}
/*レモン*/
.coupon .inner::before{
	content: "";
	width: 212px;
	height: 200px;
	position: absolute;
	top: -60px;
	left: 5%;
	background-image: url(../images/bg_accessory4.png);
	background-size: cover;
}
/*店一覧*/
.coupon_item_list{
	box-sizing: border-box;
	display: flex;
	gap: 4%;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 60px;
}
.coupon_item{
	width: 22%;
	box-sizing: border-box;
	position: relative;
	background-color: #fff;
	box-shadow: 0 0 14px rgb(0, 0, 0, 0.09);
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 30px;
}
/*バッジ*/
.badge{
	font-weight: bold;
	color: #333;
	position: absolute;
	padding: 0.5em 1em;
	top: 10px;
	left: 10px;
}
.orange{
	background-color: #f9b83e;
}
.blue{
	background-color: #16ccdf;
}
.green{
	background-color: #1ec672;
}
.yellow{
	background-color: #f9d600;
}
.pink{
	background-color: #f253a2;
}
.coupon_img{
	width: 100%;
	height: 110px;
	border-radius: 5px;
	overflow: hidden;
}
.coupon_img img{
	width: 100%;
	height: 110px;
	object-fit: cover;
	object-position: center;
}
.store{
	line-height: 1.4;
	font-size: 1.8rem;
	padding: 2px;
}
/*特典*/
.off{
	line-height: 1.4;
	font-size: 1.4rem;
	padding: 6px;
	border-radius: 5px;
}
.pale_orange{
	background-color: #f9e3bb;
}
.pale_blue{
	background-color: #d0fafc;
}
.pale_green{
	background-color: #d2ffe7;
}
.pale_yellow{
	background-color: #fff6cc;
}
.pale_pink{
	background-color: #ffe6f5;
}
/*-----------------
フッター(PC)
------------------*/
footer{
	display: flex;
	justify-content: center;
	margin: 80px auto;
}
footer .logo{
	width: 100px;
	height: 100px;
	margin-left: 0;
	margin-right: 40px;
}
footer p{
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 60px;
}
footer small{
	font-size: 1.2rem;
	font-weight: bold;
}
/*-----------------
英語ページ(PC)
------------------*/
.en .hero_img ul li{
	font-size: 3.0rem;
}
.en .hero_img h1{
	font-size: 3.5rem;
}

