@charset "UTF-8";

.index_mv .outer{
	position: relative;
}

.index_mv .btn_top{
	position: absolute;
	top: 0;
	right: 6px;
}

.index_mv .btn_top a{
	display: inline-block;
	padding: 7px 10px;
	font-size: 1.4rem;
	font-weight: bold;
	color: #18344D;
	text-decoration: none;
	line-height: 1.5;
	background: #EDF5FC;
	border-radius: 6px;
	border: 1px solid #DFECF6;
}

.category-tokyo .intro_wrap::before{
	content: "";
    display: block;
    width: 100%;
    aspect-ratio: 375 / 188;
    background: #0070C0;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (min-width: 768px) {
	.index_mv .btn_top a{
		padding: 10px 15px;
		font-size: 2.2rem;
	}
}

.onayami{
	margin-bottom: 10vw;
	padding: 0 15px 0 15px;
	text-align: center;
	color: #fff;
	background: #0070C0;
	position: relative;
	z-index: 0;
}

.onayami::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
	aspect-ratio: 375 / 63;
	background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 375 63' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 187.5,63 375,0' fill='%230070C0' /></svg>") no-repeat center bottom;
  background-size: 100% 100%;
  z-index: -1;
  transform: translateY(100%);
}

.onayami h2{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  line-height: 1.4;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.onayami h2::before{
	content: "＼";
}

.onayami h2::after{
	content: "／";
}

.onayami img{
	margin-top: 30px;
}

@media screen and (min-width: 768px) {
	.onayami{
		margin-bottom: 10vw;
		padding: 0 15px 0 15px;
		color: #fff;
		text-align: center;
		background: #0070C0;
		position: relative;
		z-index: 0;
	}
	.onayami::after{
  	aspect-ratio: 1280 / 130;
  	background: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1280 130' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 640,130 1280,0' fill='%230070C0' /></svg>") no-repeat center bottom;
	}
	.onayami h2{
		font-size: 3.2rem;
		margin-bottom: 30px;
	}
}

.omakase_wrap{
	padding-top: 40px;
}

.omakase_wrap h2{
	padding-bottom: 8.5vw;
	text-align: center;
	position: relative;
	font-size: 2.2rem;
	line-height: 1.5;
	background: url(../images/home/omakase_tt_l.svg) no-repeat left bottom / 21vw auto,
	            url(../images/home/omakase_tt_r.svg) no-repeat right bottom / 23vw auto;
}

.omakase_wrap h2 span{
  background: linear-gradient(90deg, #0070C0 0%, #59A6DE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.omakase_wrap .wrap{
	padding: 30px 15px 0 15px;
}

.omakase_wrap .wrap p{
	margin-bottom: 30px;
}

.omakase_wrap .cta_wrap{
	margin-top: 20px;
}

@media screen and (min-width: 768px) {
	.omakase_wrap{
		padding-top: 0;
	}
	.omakase_wrap h2{
		height: 214px;
		padding-top: 90px;
		margin-bottom: 20px;
		font-size: 3.2rem;
		background: url(../images/home/omakase_tt_l.svg) no-repeat left bottom / 195px auto,
		            url(../images/home/omakase_tt_r.svg) no-repeat right bottom / 214px auto;
	}
	.omakase_wrap h2 span{
	  background: linear-gradient(90deg, #0070C0 0%, #59A6DE 100%);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	  background-clip: text;
	  color: transparent;
	  display: inline-block;
	}
	.omakase_wrap .wrap{
		padding: 30px 15px 50px 15px;
	}
		.omakase_wrap .wrap .pc_c{
			text-align: center;
	}
	.omakase_wrap .wrap p{
		margin-bottom: 30px;
	}
	.omakase_wrap .wrap .pc_c + picture{
		width: 780px;
        display: block;
        margin-inline: auto;
	}
}

.reason_list{
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px 0;
}

.reason_list li{
	flex: 0 1 calc(100% / 2 - 7px);
	position: relative;
	padding: 10px 8px;
	text-align: center;
	background: #fff;
	border-radius: 10px;
}

.reason_list li:last-child{
	flex: 0 1 100%;
}

.reason_list li .num{
	display: inline-block;
	width: 50px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	background: #0070C0;
	border-radius: 9999px;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(-50%);
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	font-size: 1.4rem;
}

.reason_list li img{
	width: 54px;
}

.reason_list li p{
	margin-top: 5px;
	font-size: 1.3rem;
	font-weight: bold;
}

.reason_list li p mark{
	background: linear-gradient(transparent 50%, #FDDCE0 50%);
	font-size: 1.5rem;
	line-height: 1.5;
}

.reason_list li p .tsume{
	font-feature-settings: "palt"; 
}

@media screen and (min-width: 768px) {
	.reason_list{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
	}
	.reason_list li{
		padding: 30px 15px;
		border-radius: 20px;
	}
	.reason_list li .num{
		width: 60px;
		height: 30px;
		line-height: 30px;
		font-size: 1.6rem;
	}
	.reason_list li img{
		width: 90px;
	}
	.reason_list li p{
		margin-top: 10px;
		font-size: 1.6rem;
	}
	.reason_list li p mark{
		font-size: 2.2rem;
	}
	.reason_list li p .tsume{
		font-feature-settings: "normal"; 
	}
}

.available_wrap{
	padding-bottom: 40px;
	color: #fff;
	line-height: 1.6;
	background: #0070C0;
}

.available_wrap .ttl::after{
	background: #fff;
}

.available_wrap .en{
  display: flex;
  align-items: center;
  gap: 10px;
	font-size: 1.2rem;
	font-weight: bold;
	font-family: "Outfit", sans-serif;
	line-height: 1.5;
}

.available_wrap .en::before{
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #FFADB7;
}

.available_wrap h3{
	font-size: 2.2rem;
	padding-bottom: 15px;
	margin-bottom: 20px;
	border-bottom: 1px solid #fff;
}

.available_list{
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	margin-bottom: 30px;
}

.available_list li{
  display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.available_list li img{
	margin: 20px 0 15px 0;
	border-radius: 10px;
}

.available_list li h4{
	font-size: 1.8rem;
}

.available_list li p.txt{
	margin-bottom: 20px;
}

.available_wrap .btn_r{
	margin-top: auto;
	text-align: right;
}

.available_wrap .btn_r a{
	display: inline-block;
	padding: 0 40px 0 20px;
	height: 45px;
	line-height: 45px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border: 1px solid #fff;
	border-radius: 9999px;
	position: relative;
}

.available_wrap .btn_r a:hover{
	color: #0070C0;
	background: #fff;
}

.available_wrap .btn_r a::after{
	content: "";
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 1 / 1;
	background: url(../images/icon_arrow2_circle2.svg) no-repeat center center / contain;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.available_wrap .btn_r a:hover::after{
	background-image: url(../images/icon_arrow2_circle.svg);
}

.available_wrap .area_img{
	width: 93%;
	margin: 20px auto 30px auto;
}

.available_wrap .cta_wrap .btn_txt{
	gap: 20px;
}

.available_wrap .cta_wrap .btn_txt li a{
	height: 60px;
	font-size: 1.5rem;
	border-color: #fff;
	
}

.available_wrap .cta_wrap .btn_txt li a:hover{
	color: #fff!important;
	background: none!important;
}

.available_wrap .cta_wrap .btn_txt li a::after{
  background-image: url(../images/icon_arrow2_circle.svg);
}

.available_wrap .cta_wrap .btn_txt li a:hover::after{
  background-image: url(../images/icon_arrow2_circle2.svg);
}

.available_wrap .cta_wrap .btn_txt li a::after{
	content: "";
	content: "";
	display: block;
	width: 16px;
	aspect-ratio: 1 / 1;
	background: url(../images/icon_arrow_circle.svg) no-repeat center center / contain;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

.available_wrap .cta_wrap .btn_txt li a:hover{
	color: #fff!important;
	background: #18344D!important;
}

.available_wrap .cta_wrap .btn_txt li a:hover::after{
	background: url(../images/icon_arrow_circle2.svg);
}

.available_wrap .cta_wrap .btn_txt.dark li a:hover::after{
	background: url(../images/icon_arrow_circle.svg);
}

.tokyo_rbox{
	margin: 40px auto 0 auto;
	padding: 20px 15px;
	color: #18344D;
	background: #fff;
	border-radius: 15px;
}

@media screen and (min-width: 768px) {
	.tokyo_rbox{
		margin: 80px auto 0 auto;
		padding: 40px;
		border-radius: 20px;
	}
}

.anzenkijyun{
	background: #EDF5FC;
}

.anzenkijyun .img{
	margin-bottom: 20px;
	border-radius: 10px;
}

.tokyo_rbox .ttl2{
	margin: 0 0 20px 0;
}

.anzenkijyun .note_w{
	margin: 20px 0;
	padding: 10px;
	background: #EDF5FC;
	border-radius: 15px;
}

@media screen and (min-width: 768px) {
	.anzenkijyun .wrap{
		display: grid;
		grid-template-columns: 45% 1fr;
		gap: 40px;
	}
	.tokyo_rbox .ttl2{
		margin: 0 0 30px 0;
	}
	.anzenkijyun .note_w{
		margin: 30px 0 0 0;
	}
}



.tokyo_rbox .note_w{
	background: #fff;
}

.tokyo_rbox .btn_txt.dark{
	margin-top: 20px;
}

.tokyo_rbox .btn_txt.dark li a{
	margin-top: 0;
}

.tokyo_rbox.kikan h5{
	margin: 15px 0 7px 0;
	padding: 15px 0 0 0;
	font-size: 1.6rem;
	border-top: 1px solid #dfecf5;
}

@media screen and (min-width: 768px) {
	.tokyo_rbox.kikan h5{
		margin: 20px 0 10px 0;
		padding: 20px 0 0 0;
		font-size: 1.8rem;
	}
}

.tokyo_rbox.kikan h4 + h5{
	padding-top: 0;
	margin-top: 0;
	border-top: none;
}

.tokyo_rbox.doukou .note_w{
	margin: 20px 0;
	padding: 10px;
	background: #EDF5FC;
	border-radius: 8px;
}
	
@media screen and (min-width: 768px) {

}

.tokyo_rbox.kikan .note_w{
	margin: 10px 0 0 0;
	padding: 10px;
	background: #EDF5FC;
	border-radius: ８px;
}

.tokyo_rbox .note_w a::after{
	display: none!important;
}

@media screen and (min-width: 768px) {
	.tokyo_rbox.kikan .note_w{
		margin: 15px 0 0 0;
	}
	.available_wrap{
		padding-bottom: 80px;
	}
	.available_wrap .en{
		font-size: 1.4rem;
	}
	.available_wrap h3{
		font-size: 3rem;
		padding-bottom: 20px;
		margin-bottom: 30px;
	}
	.available_list{
		margin-top: 40px;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		margin-bottom: 60px;
	}
	.available_list li img{
		margin: 0 0 20px 0;
		border-radius: 15px;
	}
	.available_list li h4{
		margin-bottom: 10px;
		font-size: 2.2rem;
	}
	.available_wrap .btn_r{
		margin-top: 40px;
	}
	.available_wrap .area_img{
		width: 482px;
		margin: 30px auto;
	}
	.available_wrap .btn_txt li{
		flex: 0 1 420px;
	}
	.available_wrap .btn_txt li a{
		font-size: 1.6rem;
		line-height: 1.5;
	}
}

.taisei_wrap{
	padding-top: 0;
	position: relative;
}

.taisei_wrap h2{
	margin-top: 50px;
}

.taisei_list{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}

.taisei_list li img{
	border-radius: 10px;
}

.taisei_list li p{
	margin-top: 10px;
	line-height: 1.5;
	font-weight: bold;
	color: #0070C0;
	font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
	.taisei_wrap::before{
		height: 220px;
	}
	.taisei_list{
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
	}
	.taisei_list li img{
		border-radius: 10px;
	}
	.taisei_list li p{
		margin-top: 15px;
		font-size: 1.8rem;
	}
}

.car_list{
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.car_list li{
	padding: 15px;
	background: #fff;
	border-radius: 15px;
}

.car_list li img{
	border-radius: 10px;
}

.car_list li p{
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
	color: #0070C0;
}

.car_num{
	margin-top: 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 15px;
	padding: 15px;
	background: #fff;
	border-radius: 15px;
}

.car_num h3{
	font-size: 1.6rem;
	color: #0070C0;
	margin-bottom: 10px;
}

.detail_txt{
	padding: 30px 0 40px 0;
}

@media screen and (min-width: 768px) {
	.car_list{
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.car_list li{
		padding: 20px;
		border-radius: 20px;
	}
	.car_list li img{
		border-radius: 15px;
	}
	.car_list li p{
		font-size: 1.8rem;
	}
	.car_num{
		margin-top: 40px;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		padding: 30px 40px;
		border-radius: 20px;
	}
	.car_num h3{
		font-size: 1.8rem;
	}
	.detail_txt{
		width: min(100%, 800px);
		margin: 0 auto;
		text-align: center;
		padding: 30px 0 40px 0;
	}
}

.voice_wrap{
	background: #0070C0;
	background: linear-gradient(90deg, #0070C0 0%, #59A6DE 100%);
}

.voice_wrap h2{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 25px;
}

.voice_wrap h2::before{
	content: "＼";
}

.voice_wrap h2::after{
	content: "／";
}

.voice_wrap .catch_txt{
  color: #fff;
}

.swiper-outer{
	position: relative;
	width: min(100%, 910px);
	margin: 0 auto;
	padding-bottom: 30px;
}

.swiper-container {
	width: 100%;
	overflow: hidden;
}

.swiper-slide {
	padding: 15px;
	background: #fff;
	border-radius: 15px;
	height:auto!important;
}

@media screen and (max-width: 767px){
	.swiper-slide {
		width: 292px !important;
	}
}

#voice_slider .swiper-slide .title{
	display: grid;
	grid-template-columns: 84px 1fr;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #DFECF6;
}

#voice_slider .swiper-slide .title .img{
	aspect-ratio: 84 / 77;
	overflow: hidden;
}

#voice_slider .swiper-slide .title .img img{
	display: block;
	width: 100%!important;
	height: 100%!important;
	margin: 0!important;
	object-fit: cover!important;
}

#voice_slider .swiper-slide .title h3{
	color: #0070C0;
	font-size: 1.6rem;
	line-height: 1.5;
}

#voice_slider .swiper-slide .txt .name{
	margin-top: 15px;
	font-weight: bold;
	text-align: right;
}

#voice_slider .swiper-button-next,
#voice_slider .swiper-button-prev{
	display: none!important;
}

@media screen and (min-width: 768px) {
	.voice_wrap .inner{
		width: min(100%, 910px);
	}
	.voice_wrap h2{
	  gap: 10px;
	  font-size: 3.2rem;
	  margin-bottom: 40px;
	}
	.swiper-slide{
		padding: 20px 30px;
		border-radius: 20px;
	}
	#voice_slider .swiper-slide .title{
		grid-template-columns: 110px 1fr;
		gap: 10px;
		margin-bottom: 20px;
	}
	#voice_slider .swiper-slide .title h3{
		font-size: 2rem;
	}
	#voice_slider .swiper-slide .txt{
		font-size: 1.4rem;
	}
	#voice_slider .swiper-slide .txt .name{
		margin-top: 20px;
	}
	#voice_slider .swiper-button-next,
	#voice_slider .swiper-button-prev{
		display: block!important;
		width: 40px!important;
		height: 40px!important;
	}
	#voice_slider .swiper-button-prev{
		left: -20px!important;
	}
	#voice_slider .swiper-button-next{
		right: -20px!important;
	}
	#voice_slider .swiper-button-prev::after,
	#voice_slider .swiper-button-next::after {
	  content: ""!important;
	background: url(../images/icon_arrow_circle.svg) no-repeat center center / contain!important;
	display: block!important;
	width: 40px!important;
	height: 40px!important;
	padding: 0!important;
	opacity: 1!important;
	transition: ease .3s;
	}
	#voice_slider .swiper-button-prev::after {
	transform: scale(-1, 1)!important;
	right: -2em!important;
	}
	#voice_slider .swiper-button-next::after {
	  left: -2em!important;
	}
	.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
		opacity: 0!important;
	}
}

.flow_wrap{
	padding-bottom: 0;
	position: relative;
}

/*.flow_wrap::before {
	content: "";
	display: block;
	width: 100%;
	height: 56vw;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}*/

@media screen and (min-width: 768px) {
	.flow_wrap::before {
		height: 180px;
	}
}


.flow_wrap .cta_wrap{
	margin-top: 40px;
}

.step{
	position: relative;
}

.step::before{
	content: "";
	display: block;
	width: 3px;
	height: 100%;
	background: url(../images/icon_dot_v.svg) repeat-y center top;
	position: absolute;
	top: 0;
	left: 22px;
}

.step li{
  display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	position: relative;
}

.step li + li{
	margin-top: 15px;
}

.step li:first-child::before,
.step li:last-child::before{
	content: "";
	display: block;
	width: 10px;
	height: 50%;
	background: #F9FAFB;
	position: absolute;
	top: 0;
	left: 18px;
}

.step li:last-child::before{
	top: auto;
	bottom: 0;
}

.step li .num{
  display: flex;
  align-items: center;
  justify-content: center;
	flex: 0 1 46px;
	aspect-ratio: 1 / 1;
	color: #fff;
	font-size: 2rem;
	font-family: "Outfit", sans-serif;
	font-weight: bold;
	background: #F45D70;
	background: linear-gradient(90deg, #F45D70 0%, #FFA053 100%);
	border: 3px solid #F9FAFB;
	border-radius: 50%;
	position: relative;
	z-index: 2;
}

.step li .wrap{
	flex: 1 1 0%;
	padding: 15px;
	background: #fff;
	border-radius: 15px;
}

.step li .wrap h3{
	color: #0070C0;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-bottom: 8px;
	border-bottom: 1px solid #DFECF6;
	margin-bottom: 15px;
}

.step li .wrap p{
	line-height: 1.6;
}

.step li .wrap p.bbox{
	margin-top: 15px;
	padding: 15px;
	background: #EDF5FC;
	border-radius: 15px;
}

@media screen and (min-width: 768px) {
	.flow_wrap .cta_wrap{
		margin-top: 70px;
	}
	.step::before{
		left: 47px;
	}
	.step li{
		gap: 20px;
	}
	.step li + li{
		margin-top: 30px;
	}
	.step li:first-child::before,
	.step li:last-child::before{
		left: 41px;
	}
	.step li .num{
		flex: 0 1 95px;
		font-size: 3rem;
		border: 5px solid #F9FAFB;
	}
	.step li .wrap{
		padding: 20px 30px;
	}
	.step li .wrap h3{
		font-size: 2.2rem;
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.step li .wrap p.bbox{
		padding: 15px 20px;
		border-radius: 10px;
	}
}

.overview_wrap .profile{
	width: min(100%, 820px);
	margin: 0 auto;
}

.overview_wrap .profile .img{
	width: 65%;
	margin: 0 auto 30px auto;
	border-radius: 10px;
}

.overview_wrap .profile h3{
	font-size: 1.5rem;
	margin: 0 0 15px 0;
}

.overview_wrap .profile h3 span{
	font-size: 2rem;
}

.overview_wrap .profile .img2{
	width: 43%;
	margin: 15px auto 10px auto;
}

.overview_wrap .profile .note{
	font-size: 1.1rem;
}

@media screen and (min-width: 768px) {
	.overview_wrap .profile{
		width: min(100%, 820px);
		margin: 0 auto;
		display: grid;
		grid-template-columns: 42% 1fr;
		gap: 6%;
	}
	.overview_wrap .profile .img{
		width: auto;
		margin: 0;
		border-radius: 15px;
	}
	.overview_wrap .profile .img2{
		width: 147px;
		margin: 30px 0 10px 0;
	}
	.overview_wrap .profile .note{
		font-size: 1.4rem;
	}
	.overview_wrap .profile h3 span{
		font-size: 2.2rem;
	}
	.overview_wrap h3{
		font-size: 1.8rem;
	}
	.overview_wrap .profile h3{
		font-size: 1.8rem;
	}
}

.index_faq .btn_txt{
	margin: 60px auto 0 auto;
	width: 100%;
}

.index_faq .btn_txt li{
	flex: 0 1 100%;
}

@media screen and (min-width: 768px) {
	.index_faq .btn_txt{
		width: min(100%, 400px);
	}

	.btn_list.tokyo li.l{
		flex: 0 1 465px!important;
	}
}
