@charset "UTF-8";

/*************
FMT
*************/
.info_wrap,
.footer_container {
	font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	font-weight: 400;
}
img {
	display: block;
	width: 100%;
}
.content_wrap {
	-webkit-font-smoothing: antialiased;
	font-family: 'Noto Sans JP', serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--text-color);
	margin-top: 66px;
	background-color: var(--bg-color);
	width: 100%;
	position: relative;
	z-index: 0;
}
a:hover img {opacity: 1;}

figure {
	margin: 0 auto;
    width: 100%;
    max-width: 500px;
}
figcaption .caption {
	margin-left: auto;
    margin-right: 0;
    width: fit-content;
	font-size: 12px;
}
@media(min-width:751px){
	.content_wrap {
		margin-top: 90px;
	}
}
:root {
	--text-color: #000000;
	--primary-color: #2ebcad;
	--bg-color: #FFFFFF;
	--red-color: #EE0000;
	--accent-color: #FFFF00;
  --font-rounded: "M PLUS Rounded 1c", sans-serif;
  --blue-color: #3F397E;
  --pink-color: #EA25BE;
}
/*アキ*/
.mgt48 {margin-top: 48px !important;}
.mgt32 {margin-top: 32px !important;}
.mgt24 {margin-top: 24px !important;}
.mgt16 {margin-top: 16px !important;}
.mgt8 {margin-top: 8px !important;}
.mgt4 {margin-top: 4px !important;}
.mgt0 {margin-top: 0 !important;}

/*テキストサイズ*/
.annotation {font-size: 14px;}
.smallest {font-size: 12px;}
.larger {font-size: 1.5em;}
.smaller {font-size: 0.75em;}

/* テキスト揃え */
.center {text-align: center;}
.auto_center {
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}
.right {text-align: right;}
.left {text-align: left;}
.ib {display: inline-block;}

/* テキストカラー */
.fcPrimary {color: var(--primary-color);}
.fcRed {color: var(--red-color);}
.fcWhite {color: #FFF}
.fcYellow {color: #FF0;}

/* テキスト汎用 */
.bold {font-weight: bold;}
.text_link{
	color: var(--primary-color);
	text-decoration: underline;
	font-weight: bold;
	cursor: pointer;
}
.marker {
	background: linear-gradient(transparent 50%, var(--accent-color) 50%);
}
.relative_wrap {position: relative;}

/* 箇条書き */
ul.text_list li,
p.text_list {
	text-indent: -1em;
	padding-left: 1em;
	text-align: left;
}
ul.text_list li + li{
	margin-top: 2px;
}
ul.text_list.annotation li {
	font-size: 14px;
}
@media(min-width:751px){
	.red_box {
		font-size: 22px;
	}
	.pc_center {text-align: center;}

}
/* js-fadeUp */
.js-fadeUp {
	transform: translateY(10px);
	opacity: 0;
	transition: all 1s;
}
.js-fadeUp.is-inview {
	transform: translateY(0);
	opacity: 1;
}
/*************
汎用
*************/
/* ボイストック枠 */
.VoiStock_btn {
	display: block;
	max-width: 400px;
	margin: 32px auto 16px;
}
.VoiStock_btn.comingSoon {
	pointer-events: none;
}
.qr_wrap {
	display: none;
}
@media(min-width:751px){
	.qr_wrap {
		padding: 16px;
		margin: 32px auto 16px;
		border: 2px solid var(--primary-color);
		display: flex;
		gap: 16px;
		border-radius: 16px;
		max-width: 480px;
		align-items: center;
	}
	.qr_text {
		flex: 1;
	}
	.qr_text_wrap {
		display: flex;
		align-items: center;
		gap: 8px;
	}
	.qr_text_hd {
		font-weight: bold;
		margin-bottom: 6px;
		font-size: 20px;
		color: #FFF;
		background-color: var(--primary-color);
		padding: 4px 12px;
		border-radius: 40px;
		text-align: center;
	}
	.qr_text p {
		text-align: left;
	}
	.qr_img {
		width: 100px;
		position: relative;
		padding: 4px;
		border: 2px solid var(--primary-color);
		border-radius: 8px;
		background-color: #FFF;
	}
	.qr_img .comingSoon {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: bold;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		color: var(--text-color);
		font-size: 20px;
		line-height: 1.2;
		text-align: center;
	}
}
/* アコーディオン */
.acc_body {
	display: none;
}
.acc_btn {
	font-weight: bold;
    width: fit-content;
    margin: 32px auto 0;
    color: var(--text-color);
    position: relative;
    padding-right: 28px;
	cursor: pointer;
	transition: all 0.3s;
}
.acc_btn span {
	position: absolute;
	background-color: #FFF;
	height: 20px;
	width: 20px;
	border-radius: 100%;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.acc_btn span::before,
.acc_btn span::after {
	content: "";
	background-color: var(--primary-color);
	position: absolute;
	width: 12px;
	height: 2px;
	transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	transition: transform 0.3s;
}
.acc_btn span::before {
	transform: translate(-50%,-50%) rotate(90deg);
}
.acc_btn.open span::before {
	transform: translate(-50%,-50%);
}
/* ご注意事項アコーディオン */
.caution_acc .acc_btn {
    padding: 4px 40px 6px 20px;
    border-radius: 30px;
    background-color: var(--primary-color);
	color: #FFF;
}
.caution_acc .acc_btn span {
	right: 10px;
}
.caution_acc .acc_body {
	padding: 10px;
	border-radius: 8px;
	margin-top: 16px;
	border: 2px solid var(--primary-color);
}
.caution_head {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 4px;
}
.text_list + .caution_head {
	margin-top: 8px;
}
@media(min-width:751px){
	.caution_acc .acc_body {
		padding: 20px;
		border-radius: 16px;
	}
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
〇〇〇〇
*************/
@media(min-width:751px){
}
/*************
終了処理
*************/

.red_box {
	font-weight: bold;
	border: 2px solid var(--red-color);
	color: var(--red-color);
	font-size: 18px;
	text-align: center;
	padding: 8px;
	margin: 16px auto 0;
	max-width: 800px;
	width: calc(100% - 40px);
	background-color: #FFF;
}
.VoiStock_btn.sign-off-btn {
	pointer-events: none;
	position: relative;
}
.sign-off {
    background-color: rgba(255, 255, 255, 0.8);
    color: #EE0000;
    border: #EE0000 2px solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    padding: 16px 0;
}
@media(min-width:751px){

	/* 終了処理 QR枠用 */
	.sign-off-pc {
        background-color: rgba(255, 255, 255, 0.9);
        color: #EE0000;
        border: #EE0000 2px solid;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
        height: 85%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 18px;
        text-align: center;
    }
}








/*************
footer
*************/
/*その他の推し旅プラン*/
.info_wrap {
	margin: 0 auto;
	padding: 8px 40px 20px;
	position: relative;
	background-color: #FFF;
}
.oshitabi_btn {
	display: block;
	border: 4px solid #000;
	background-color: #FFF;
	max-width: 740px;
	margin: 32px auto 0;
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	border-radius: 10px;
	position: relative;
	padding: 10px 30px 10px 5px;
	font-size: 18px;
	transition: all 0.3s;
}
.oshitabi_btn:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	height: 12px;
	width: 12px;
	border-top: 3px solid #000;
	border-right: 3px solid #000;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s;
}
.oshitabi_btn:hover {
	background-color: var(--primary-color);
	color: #FFF;
	border: 4px solid var(--primary-color);
}
.oshitabi_btn:hover::after {
	border-top: 3px solid #FFF;
	border-right: 3px solid #FFF;

}
.credit {
	text-align: center;
	margin-top: 16px;
	font-size: 12px;
}

.footer_container {
	position: relative;
	z-index: 100;
	background-color: #FFF;
	padding-top: 1px;
}
@media(min-width:751px){
	.info_wrap {
		margin: 0 auto;
		padding: 8px 20px 100px;
	}
	.oshitabi_btn {
		padding: 15px;
		font-size: 20px;
	}
}





/*************
メディアクエリ
*************/
@media(min-width:751px){
	.sp {
		display: none;
	}
}
@media(max-width:750px){
	.pc {
		display: none;
	}

}
	
/*==============================
# aipri2nd
==============================*/
@media(min-width:751px){
}

.l-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 750px;
  padding: 0 15px;
  margin: 0 auto;
}

.content_wrap {
  overflow: hidden;
}

.bg_pink {
  background-image: url(../img/bg_sp.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
@media(min-width:751px){
  .bg_pink {
    background-image: url(../img/bg_pc.webp);
  }
}

.box-rainbow {
  box-sizing: border-box;
  border-radius: 10px;
  padding: 4px;
  background: linear-gradient(to bottom,
  #FBC0DF 0%,
  #FBC8D1 5%,
  #FDDEAC 20%,
  #FEE1A8 23%,
  #FEF8B0 30%,
  #FFFFB3 32%,
  #F8FCB2 36%,
  #E5F5B0 40%,
  #E0F3B0 45%,
  #D5EEC5 50%,
  #C0E7F1 60%,
  #D4D5E8 70%,
  #E9CEF2 78%,
  #E8B7F8 100%
  );
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.box-rainbow_inner {
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  padding: 10px;
}
@media(min-width:751px){
  .box-rainbow_inner {
    padding-left: 36px;
    padding-right: 36px;
  }
}

.box-rainbow_deco01 {
  width: 39px;
  position: absolute;
  top: 3px;
  left: 6px;
}

.box-rainbow_deco02 {
  width: 34px;
  position: absolute;
  top: 7px;
  right: 5px;
}

.box-rainbow_deco03 {
  width: 34px;
  position: absolute;
  bottom: 9px;
  left: 6px;
}

.box-rainbow_deco04 {
  width: 39px;
  position: absolute;
  bottom: 4px;
  right: 5px;
}

.deco-box_wrap {
  padding: 0 10px;
}
@media(min-width:751px){
  .deco-box_wrap {
    padding: 0 15px;
  }
}

.deco-box {
  position: relative;
  background-color: #FFF2F9;
  border: 3px solid var(--pink-color);
  box-shadow: 0 0 6px rgba(250, 103, 217, 0.5);
  border-radius: 10px;
}

.deco-box::before {
  content: "";
  width: 125px;
  height: 94px;
  background-image: url(../img/deco_box-t.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -22px;
  right: -18px;
}

.deco-box::after {
  content: "";
  width: 91px;
  height: 114px;
  background-image: url(../img/deco_box-b.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -15px;
  bottom: -18px;
}

.deco-box_inner {
  padding: 20px 20px 30px;
}

.deco-box_title {
  font-family: var(--font-rounded);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding-top: 7px;
  padding-bottom: 6px;
  background-image: url(../img/bg_box-lead_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media(min-width:751px){
  .deco-box_title {
    background-image: url(../img/bg_box-lead_pc.png);
  }
}

.deco-box_lead {
  font-family: var(--font-rounded);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.31;
  color: var(--blue-color);
  margin-top: 15px;
}

.deco-box_text {
  font-family: var(--font-rounded);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue-color);
  margin-top: 5px;
}

.deco-box_desc {
  font-family: var(--font-rounded);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue-color);
  margin-top: 5px;
}

.deco-box_desc a {
  color: var(--pink-color);
  font-weight: 700;
  text-decoration: underline;
}

.img_note {
  font-family: var(--font-rounded);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42;
  text-align: right;
  color: var(--blue-color);
  margin-top: 6px;
}

.mv {
  overflow: hidden;
}

@media(min-width:751px){
  .mv_inner {
    padding-top: 30px;
    padding-left: 9vw;
  }
}

@media(min-width:1300px){
  .mv_inner {
    padding-left: 122px;
  }
}

.mv_img {
  width: 451px;
  margin-left: calc(50% - 451px / 2);
  margin-right: auto;
}
@media(min-width:751px){
  .mv_img {
    width: 100%;
    max-width: 915px;
    margin-left: auto;
    margin-right: auto;
  }
}

.mv_img img {
  width: 100%;
}

.link {
  margin-top: 30px;
  position: relative;
  background-image: url(../img/border_sp.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 26px;
}
@media(min-width:751px){
  .link {
    margin-top: 10px;
  }
}

.link::before {
  content: "";
  width: 471px;
  height: 477px;
  background-image: url(../img/bg_link_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -119px;
  left: 50%;
  transform: translateX(-46%);
}
@media(min-width:751px){
  .link::before {
    width: 783px;
    height: 358px;
    background-image: url(../img/bg_link_pc.png);
    top: -78px;
    transform: translateX(-50%);
  }
}

.link_inner {
  padding-bottom: 18px;
}
@media(min-width:751px){
  .link_inner {
    padding-bottom: 66px;
  }
}

.link_lead {
  font-family: var(--font-rounded);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.58;
  text-align: center;
  color: var(--blue-color);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.link_lead span {
  color: var(--pink-color);
}

.link_list {
  width: 100%;
  max-width: 315px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media(min-width:751px){
  .link_list {
    max-width: 489px;
  }
  .link_list a {
    transition: .3s;
    &:hover {
      opacity: .7;
    }
  }
}

.link_list li {
  width: 150px;
}

.link_list li:last-child {
  position: relative;
  top: -28px;
}
@media(min-width:751px){
  .link_list li:last-child {
    top: 0;
  }
}

.link_list li img {
  width: 100%;
}

.voice {
  margin-top: 20px;
  background-image: url(../img/border_sp.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 26px;
}
@media(min-width:751px){
  .voice {
    margin-top: 44px;
  }
}

.voice_inner {
  padding-bottom: 66px;
}
@media(min-width:751px){
  .voice_inner {
    padding-bottom: 76px;
  }
}

.voice_title_wrap {
  position: relative;
}

.voice_title_wrap::before {
  content: "";
  width: 397px;
  height: 227px;
  background-image: url(../img/bg_voice_title_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media(min-width:751px){
  .voice_title_wrap::before {
    width: 479px;
    height: 274px;
    top: 42%;
    background-image: url(../img/bg_voice_title_pc.png);
  }
}

.voice_title {
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media(min-width:751px){
  .voice_title {
    max-width: 368px;
  }
}

.voice_title::before,
.voice_title::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.voice_title::before {
  width: 93px;
  height: 93px;
  background-image: url(../img/chara_01-1.png);
  top: -10px;
  left: -32px;
}
@media(min-width:751px){
  .voice_title::before {
    width: 112px;
    height: 112px;
    top: -12px;
    left: -50px;
  }
}

.voice_title::after {
  width: 75px;
  height: 92px;
  background-image: url(../img/chara_01-2.png);
  bottom: -21px;
  right: -48px;
}
@media(min-width:751px){
  .voice_title::after {
    width: 90px;
    height: 110px;
    bottom: -2px;
    right: -64px;
  }
}

.voice_box {
  margin-top: 22px;
}
@media(min-width:751px){
  .voice_box {
    margin-top: 24px;
  }
}

.voice_box_inner {
  padding-top: 88px;
  padding-bottom: 40px;
}

.voice_box__lead {
  font-family: var(--font-rounded);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.44;
  text-align: center;
  color: var(--blue-color);
  position: relative;
}

.voice_box__lead::before {
  content: "";
  width: 296px;
  height: 230px;
  background-image: url(../img/bg_voice-lead.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -78px;
  left: 50%;
  transform: translateX(-48%);
}
@media(min-width:751px){
}

.voice_box_voistock {

}

.voice_box_voistock .VoiStock_btn {
  margin-top: 40px;
  max-width: 315px;
}

.voice_box-annotation {
  margin-top: 10px;

}
@media(min-width:751px){
  .voice_box-annotation {
    margin-top: 70px;
  }
}

ul.text_list.annotation li {
  font-family: var(--font-rounded);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.025em;
  color: var(--blue-color);
}

.caution_acc .acc_btn {
  background-color: var(--blue-color);
}

.acc_btn span::before, .acc_btn span::after {
  background-color: var(--blue-color);
}

.caution_acc .acc_body {
  border-radius: 0;
  border: 1px solid var(--blue-color);
  padding: 15px;
}

.text_link {
  color: var(--pink-color);
}

@media(min-width:751px){
  .voice_box_voistock .qr_wrap {
    box-sizing: border-box;
    margin-top: 78px;
    border: none;
    border-radius: 10px;
    background-image: url(../img/bg_qr.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }
}

@media(min-width:751px){
  .voice_box_voistock .qr_wrap::before {
    content: "";
    position: absolute;
    width: 132px;
    height: 115px;
    background-image: url(../img/chara_voice-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: -78px;
    left: -60px;
  }
}

@media(min-width:751px){
  .voice_box_voistock .qr_wrap::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 115px;
    background-image: url(../img/chara_voice-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    bottom: -70px;
    right: 106px;
  }
}

@media (min-width: 751px) {
  .voice_box_voistock .qr_text_hd {
    font-family: var(--font-rounded);
    margin-bottom: 10px;
    font-size: 17px;
    color: var(--pink-color);
    background-color: #fff;
    padding: 4px 12px;
    border-radius: 17px;
    text-align: center;
  }
}

@media (min-width: 751px) {
  .voice_box_voistock .qr_text p {
    font-family: var(--font-rounded);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
  }
}

@media (min-width: 751px) {
  .voice_box_voistock .qr_img {
    width: 100px;
    position: relative;
    padding: 0;
    border: none;
    border-radius: 0;
  }
}

.voice_deco-box {
  margin-top: 38px;
}

.voice_deco-box_step {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 15px;
}

.voice_deco-box-item {
  display: flex;
  align-items: start;
  gap: 10px;
  position: relative;
}
@media(min-width:751px){
  .voice_deco-box-item {
    align-items: center;
  }
}

.voice_deco-box-item:not(:last-child)::after {
  content: "";
  width: 63px;
  height: 13px;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../img/arw_step.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.voice_deco-box-item_num {
  flex: 0 0 52px;
}

.voice_deco-box-item_text {
  flex: 0 1 100%;
  font-family: var(--font-rounded);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--blue-color);
  padding-top: 4px;
}
@media(min-width:751px){
  .voice_deco-box-item_text {
    padding: 0;
  }
}

.voice-present {
  margin-top: 32px;
}

.voice-present_title {
  width: 100%;
  max-width: 315px;
  margin: 0 auto;
}

.voice-present_img {
  width: 100%;
  max-width: 273px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
}
@media(min-width:751px){
  .voice-present_img {
    max-width: 448px;
  }
}

.benefits {
  margin-top: 8px;
  background-image: url(../img/border_sp.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 26px;
  position: relative;
  z-index: 4;
}
@media(min-width:751px){
  .benefits {
    margin-top: 46px;
  }
}

.benefits_inner {
  padding-bottom: 50px;
}
@media(min-width:751px){
  .benefits_inner {
    padding-bottom: 70px;
  }
}

.benefits_title_wrap {
  position: relative;
}

.benefits_title_wrap::before {
  content: "";
  width: 397px;
  height: 256px;
  background-image: url(../img/bg_benefits_title_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media(min-width:751px){
  .benefits_title_wrap::before {
    width: 458px;
    height: 295px;
    top: 46%;
    background-image: url(../img/bg_benefits_title_pc.png);
  }
}

.benefits_title {
  width: 100%;
  max-width: 254px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media(min-width:751px){
  .benefits_title {
    max-width: 300px;
  }
}

.benefits_title::before,
.benefits_title::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.benefits_title::before {
  width: 57px;
  height: 94px;
  background-image: url(../img/chara_02-1.png);
  top: 12px;
  left: -38px;
}
@media(min-width:751px){
  .benefits_title::before {
    width: 68px;
    height: 111px;
    top: 1px;
  }
}

.benefits_title::after {
  width: 74px;
  height: 92px;
  background-image: url(../img/chara_02-2.png);
  bottom: 34px;
  right: -50px;
}
@media(min-width:751px){
  .benefits_title::after {
    width: 90px;
    height: 112px;
    bottom: 63px;
    right: -45px;
  }
}

.benefits_box {
  margin-top: 20px;
}
@media(min-width:751px){
}

.benefits_box_inner {
  padding-bottom: 36px;
}
@media(min-width:751px){
  .benefits_box_inner {
    padding-top: 26px;
  }
}

.benefits_box_heading {
  padding-top: 104px;
  padding-bottom: 108px;
  position: relative;
}
@media(min-width:751px){
  .benefits_box_heading {
    padding-top: 120px;
    padding-bottom: 127px;
  }
}

.benefits_box_heading::before {
  content: "";
  width: 308px;
  height: 326px;
  background-image: url(../img/bg_benefits_lead_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media(min-width:751px){
  .benefits_box_heading::before {
    height: 276px;
    background-image: url(../img/bg_benefits_lead_pc.png);
    left: 44%;
  }
}

.benefits_box__lead {
  font-family: var(--font-rounded);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.44;
  text-align: center;
  color: var(--blue-color);
}

.benefits_box__lead span {
  font-size: 17px;
  color: var(--pink-color);
  background:linear-gradient(transparent 60%, #FCEFF8 60%);
}

.benefits_box_heading_chara01 {
  width: 66px;
  position: absolute;
  top: 0;
  left: 33%;
}
@media(min-width:751px){
  .benefits_box_heading_chara01 {
    width: 82px;
  }
}

.benefits_box_heading_chara02 {
  width: 60px;
  position: absolute;
  bottom: 0;
  left: 58.4%;
}
@media(min-width:751px){
  .benefits_box_heading_chara02 {
    width: 70px;
    left: 45%;
  }
}

.benefits-tokyo {
  margin-top: 15px;
}
@media(min-width:751px){
  .benefits-tokyo {
    margin-top: 30px;
  }
}

.benefits-tokyo_title {
  width: 100%;
  max-width: 315px;
  margin: 0 auto;
}
@media(min-width:751px){
  .benefits-tokyo_title {
    max-width: 370px;
  }
}

.benefits-tokyo_img {
  width: 100%;
  max-width: 274px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 22px;
}
@media(min-width:751px){
  .benefits-tokyo_img {
    max-width: 316px;
    margin-top: 18px;
  }
}

.benefits-tokyo_deco-box {
  margin-top: 20px;
}
@media(min-width:751px){
  .benefits-tokyo_deco-box {
    margin-top: 33px;
  }
}

.benefits-osaka {
  margin-top: 45px;
}
@media(min-width:751px){
  .benefits-osaka {
    margin-top: 57px;
  }
}

.benefits-osaka_title {
  width: 100%;
  max-width: 315px;
  margin: 0 auto;
}
@media(min-width:751px){
  .benefits-osaka_title {
    max-width: 370px;
  }
}

.benefits-osaka_img {
  width: 100%;
  max-width: 271px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 26px;
}
@media(min-width:751px){
  .benefits-osaka_img {
    max-width: 328px;
    margin-top: 18px;
  }
}

.benefits-osaka_deco-box {
  margin-top: 30px;
}
@media(min-width:751px){
  .benefits-osaka_deco-box {
    margin-top: 39px;
  }
}

.benefits_box-annotation {
  margin-top: 36px;
}
@media(min-width:751px){
  .benefits_box-annotation {
    margin-top: 31px;
  }
}

.travel_bg {
  background-image: url(../img/bg_travel-sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
@media(min-width:751px){
  .travel_bg {
    background-image: url(../img/bg_travel-pc.webp);
  }
}

.travel {
  position: relative;
  z-index: 3;
  margin-top: -13px;
  background-image: url(../img/border_02.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 26px;
}

.travel_inner {
  padding-top: 54px;
  padding-bottom: 50px;
}
@media(min-width:751px){
  .travel_inner {
    padding-top: 78px;
    padding-bottom: 70px;
  }
}

.travel_title_wrap {
  position: relative;
}

.travel_title_wrap::before {
  content: "";
  width: 398px;
  height: 214px;
  background-image: url(../img/bg_travel_title_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
}
@media(min-width:751px){
  .travel_title_wrap::before {
    width: 492px;
    height: 264px;
    top: 40%;
    left: 50%;
    background-image: url(../img/bg_travel_title_pc.png);
  }
}

.travel_title {
  width: 100%;
  max-width: 315px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
@media(min-width:751px){
  .travel_title {
    max-width: 390px;
  }
}

.travel_title::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 70px;
  height: 97px;
  background-image: url(../img/chara03-1.png);
  top: -40px;
  left: 45px;
}
@media(min-width:751px){
  .travel_title::before {
    width: 85px;
    height: 111px;
    top: -24px;
    left: -21px;
  }
}

.travel_kv {
  margin-top: 9px;
}

.travel-item {
  background-color: #fff;
  border: 3px solid var(--pink-color);
  border-radius: 10px;
  margin-top: 30px;
}
@media(min-width:751px){
}

@media(min-width:751px){
}

.travel-item_inner {
  padding: 20px 15px 30px;
  position: relative;
}

.travel-item_title {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.travel-item_title::before,
.travel-item_title::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.travel-item_title.tokyo {
  max-width: 254px;
}
@media(min-width:751px){
  .travel-item_title.tokyo {
    max-width: 300px;
  }
}

.travel-item_title.tokyo::before {
  background-image: url(../img/chara03-3.png);
  width: 67px;
  height: 80px;
  top: 56px;
  left: -37px;
}
@media(min-width:751px){
  .travel-item_title.tokyo::before {
    width: 89px;
    height: 106px;
    top: 94px;
    left: -88px;
  }
}

.travel-item_title.tokyo::after {
  background-image: url(../img/chara03-2.png);
  width: 56px;
  height: 79px;
  top: 56px;
  right: -45px;
}
@media(min-width:751px){
  .travel-item_title.tokyo::after {
    width: 75px;
    height: 105px;
    top: 94px;
    right: -102px;
  }
}

.travel-item_title.hirakatra {
  max-width: 268px;
}
@media(min-width:751px){
  .travel-item_title.hirakatra {
    max-width: 297px;
  }
}

.travel-item_title.hirakatra::before {
  background-image: url(../img/chara03-4.png);
  width: 74px;
  height: 85px;
  top: 30px;
  left: -30px;
}
@media(min-width:751px){
  .travel-item_title.hirakatra::before {
    width: 90px;
    height: 109px;
    top: 87px;
    left: -103px;
  }
}

.travel-item_title.hirakatra::after {
  background-image: url(../img/chara03-5.png);
  width: 80px;
  height: 85px;
  top: 43px;
  right: -40px;
}
@media(min-width:751px){
  .travel-item_title.hirakatra::after {
    width: 102px;
    height: 109px;
    top: 91px;
    right: -113px;
  }
}

.travel-item_img {
  width: 100%;
  max-width: 450px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.travel-item_txt {
  color: var(--blue-color);
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}

.travel-item_note {
  font-family: var(--font-rounded);
  font-size: 12px;
  text-align: center;
  color: var(--blue-color);
  margin-top: 10px;
}

.travel-item_deco01 {
  width: 51px;
  position: absolute;
  top: 10px;
  left: 9px;
}
@media(min-width:751px){
  .travel-item_deco01 {
    width: 70px;
    left: 10px;
  }
}

.travel-item_deco02 {
  width: 51px;
  position: absolute;
  top: 10px;
  right: 9px;
}
@media(min-width:751px){
  .travel-item_deco02 {
    width: 70px;
    right: 10px;
  }
}

.travel-item_deco03 {
  width: 51px;
  position: absolute;
  bottom: 6px;
  left: 9px;
}
@media(min-width:751px){
  .travel-item_deco03 {
    width: 70px;
    bottom: 10px;
    left: 10px;
  }
}

.travel-item_deco04 {
  width: 51px;
  position: absolute;
  bottom: 6px;
  right: 9px;
}
@media(min-width:751px){
  .travel-item_deco04 {
    width: 60px;
    bottom: 10px;
    right: 10px;
  }
}

.info {
  background-image: url(../img/bg_info_sp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  margin-top: -13px;
  position: relative;
  z-index: 2;
}
@media(min-width:751px){
  .info {
    background-image: url(../img/bg_info_pc.webp);
  }
}

.info_inner {
  padding-top: 28px;
  padding-bottom: 20px;
}
@media(min-width:751px){
  .info_inner {
    padding-top: 53px;
  }
}

.info_title {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}
@media(min-width:751px){
  .info_title {
    max-width: 498px;
  }
}

.info_img {
  width: 100%;
  max-width: 315px;
  margin: -28px auto 0;
}
@media(min-width:751px){
  .info_img {
    max-width: 500px;
    margin: -45px auto 0;
  }
}

.info_buttons {
  margin-top: 30px;
}
@media(min-width:751px){
  .info_buttons {
    margin-top: 40px;
  }
}

.info_buttons + .info_buttons {
  margin-top: 10px;
}

.info_btn {
  text-align: center;
}

.info_btn a {
  display: inline-block;
  width: 100%;
  max-width: 315px;
}
@media(min-width:751px){
  .info_btn a {
    max-width: 500px;
    transition: .3s;
    &:hover {
      opacity: .7;
    }
  }
}

.info_desc {
  font-family: var(--font-rounded);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-top: 5px;
}

.info_copy {
  font-family: var(--font-rounded);
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}

@media(min-width:751px){
}

