@charset "utf-8";

/* WILLERと挑む、にっぽん縦断
------------------------------------------*/
/* Settings
--------------------*/
:root {
  --base: #EBEBEB;
  --main: #EA4E34;
  --accent: #2142FF;
  --black: #1E1E1E;
  --white: #fff;
  --gray: #707070;
  --border: #D9D9D9;
  --btnGray: #E9E9E9;
  --attention: #4D4D4D;
  --disabled: #898888;
}

/* Fonts
------------------------------------*/
@font-face {
  font-family: "notosansjp";
  font-weight: 400; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 500; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 600; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 700; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}

/* 共通 パーツ
-------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
body{
	margin: 0 auto;/*MV中央揃えにするため必須*/
	overflow-x: hidden;/*必須*/
}
article {
	font-family: "notosansjp","Yu Gothic", "Yu Gothic medium", "Arial", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
}
a{	
	text-decoration: none;
	color: inherit;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}
a:link, a:visited, a:hover, a:active, a:focus{
	text-decoration: none;
}
h1,h2,h3,h4,ul,ol,dl,dt,dd,p,figure{
	margin:0;
	padding:0;
}
ul,ol{
	list-style-type: none;
}
button:focus {
	outline: none;
}
img {
  max-width: 100%;
  height: auto;
}
small {
  font-size: 70%;
	display: inline-block;
}

/*共通のヘッダーを最上層に*/
header {
	z-index: 5;
}
/*キャンペーン終了帯*/
#across-japan .e_o_sale {
	z-index: 3;
}
/*スマホのアドレスバー背景色の対策*/
@supports (-webkit-touch-callout: none) {
	html,body {
		background-color: var(--white);
	}
	article {
		background-color: var(--white);
	}
}

/* color
-----------------------------------*/
.color-black {
    color: var(--black)!important;
}
.color-white {
    color: var(--white)!important;
}
.color-red {
    color: var(--main)!important;
}
.bg-white {
     background: var(--white)!important;
}
.bg-gray {
     background: var(--base)!important;
}

/*　section 
-------------------------------*/
.section {
  margin-top: -30px;
  padding: 30px 0 60px;
  position: relative;
}
.section-radius {
	border-radius: 30px 30px 0 0;
}

/*  見出し
-------------------------------*/
h2{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

/*　h2 
-------------------------------*/
.heading {
	text-align: center;
	margin: 0 auto 28px;
}
.heading .en {
	margin: 0;
}
.heading .jp {
    font-family: "notosanjp", sans-serif;
    margin-top: 14px;
	font-size: 20px;
	font-weight: 700;
	color: var(--main);
}
.heading span {
	display: block;/*縦並び*/
}

/* アニメーション */
.anm-fadeup-wrap .anm-fadeup {
  position: relative;
  display: inline-block;
  margin-top: 0;
  opacity: 0;
}
.is-scrollIn .anm-fadeup-wrap .anm-fadeup {
  display: inline-block;
  position: relative;
  /*/transform-origin: top center;*/
  animation: anm-fadeup 2.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes anm-fadeup {
  0% {
    opacity: 0;
    transform: scaleX(0) translateY(30px);
  }
  30% {
    transform: scaleX(1) translateY(0);
  }
  100% {
    transform: scaleX(1) translateY(0);
  }
  30%, 100% {
    opacity: 1;
  }
}

/* title
----------------------------*/
.title {
	width: fit-content;
	margin: 16px auto 5px;
	display: block;
}

/*  ボタン
-------------------------------*/
.btn {
	margin: auto;
	width: 100%;
	max-width: 280px;
    border-radius: 100px;
    padding: 18px 26px 18px 16px;
    font-size: 18px;
    font-weight: 700;
    font-family: "notosans", sans-serif;
    text-align: center;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    transition: 0.3s;
    color: var(--white);
	background: var(--accent);
}
.btn:hover {
    opacity: 0.9;
	color: var(--white);
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 3.6%;
    transform: translateY(-50%);
    display: inline-block;
	width: 10px;
	height: 14px;
	background: url('/static/img/campaign/across-japan/ico-arrow.svg') no-repeat center center/ 100%;
}
.btn:hover::after {
    right: 5.6%;
}
@media (min-width: 560px) {
    .btn {
      max-width: 280px;
      padding: 20px 26px;
      font-size: 18px;
    }
    .btn::after {
        right: 9.6%;
        font-size: 16px;
    }
	.btn:hover::after {
		right: 7.6%;
	}
}

.btn-wrap {
	text-align: center;
}

/* text
--------------------*/
.lead {
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0;
	font-weight: 400;
	font-family: "notosans", sans-serif;
}
@media(max-width: 340px) {
	.lead {
		font-size: 13px;
	}	
}

/* small
 -------------------------------*/
.small {
	font-size: 80%;
}

/* list-figure
---------------------------------*/
.list-figure {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	column-gap: 2%;
}
.list-figure li{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.list-figure figure {
	text-align: center;
}

/* attention
--------------------------------*/
.attention {
	font-size: 12px;
	line-height: 1.3;
	font-weight: 400;
	position: relative;
	padding-left: 12px;
	text-align: left;
}
.attention::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
}

/* .dot
-----------------------------------*/
.list-dot li{
	line-height: 1.3;
}
.dot {
	position: relative;
	padding-left: 12px;
	font-size: 14px;
	line-height: 1.3;
}
.dot::before {
	position: absolute;
	content: '・';
	top: 0;
	left: 0;
	font-size: 14px;
}


/* link
------------------------------------*/
.link-inline {
	text-decoration: underline !important;
}
.link-inline:hover {
	opacity: 0.6;
}

/* 全体
-----------------------------------------------*/
/*Opening
----------------------------*/
.opening-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  background-color: var(--main);
}
/* 各スライドの共通設定 */
.slide {
  position: fixed;
  top: 50px;/*ヘッダー高さ分*/
  /*top: 0;*/
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
/* アクティブなスライドの表示 */
.slide.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 767px) {
	.slide {
		/*top: 146px;*//*ヘッダー高さ分*/
		top: 100px;
	}
}

/* スライド1：タイプライター（テキスト）
----------------------------------------- */
.typewriter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.typewriter-line {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--white);
  font-family: "notosanjp",sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}
/* 自動生成される1文字ずつの初期設定 */
.typewriter-line .text span {
  opacity: 0;
  display: inline-block;
  font-family: "notosanjp",sans-serif;
}
.slide-1 .typewriter-line .text span {
	opacity: 0;
}
/* スライド1がアクティブになったらタイピング開始 */
.slide-1.is-active .typewriter-line .text span {
  animation: typeIn 0.04s forwards;
}
@keyframes typeIn {
	0% { opacity: 0; }
   100% { opacity: 1; }
}

@media (max-width: 340px) {
	.typewriter-line {
		font-size: 26px;
	}
}

/* カーソル */
.typewriter-cursor {
  display: inline-block;
  vertical-align: middle;
  opacity: 0;
  width: 5px;             
  height: 34px;       
  background-color: var(--white); 
}
/* 文字が出揃ったらカーソルを表示し、無限点滅 */
.slide-1.is-active .typewriter-cursor {
  animation: typeIn 0.04s forwards, blink 0.8s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (min-width: 560px) {
	.typewriter-line {
		width: 100%;
		font-size: 50px;
	}
	.typewriter-cursor {
		height: 48px;       
	}
}

/* スライド2：ロゴ画像のバウンド演出
 * ----------------------------------------- */
.anime-target.inner {
	text-align: center;
	margin: auto;
}
.slide-2 .anime-target img {
  opacity: 0;
}

/*レスポンシブ調整要*/
@media (min-width: 767px) and (max-width: 1200px){
	.anime-target.inner {
		max-width: 60%;
	}
}
@media (min-width: 1201px) {
	.anime-target.inner {
		max-width: 32%;
	}
}

/*アクティブになったらアニメーションしながら表示*/
.slide-2.is-active .anime-target img {
  animation: bounceIn 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.25) forwards;
}
/*アニメーション設定*/
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  60% {
    opacity: 1;
    transform: scale(1.05); /* わずかに行き過ぎる */
  }
  80% {
    transform: scale(0.95); /* 少し戻る */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* ジャストサイズに定着 */
  }
}

/* contents
------------------------------------*/
/*全体
----------------------*/
.page-contents {
	position: relative;
	background: #fff;/*アドレスバー背景色対策で白を設定*/
}
#content-grid{
	background: var(--main);/*PC含めた全体の背景色*/
}
#contents {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	font-family: "notosanjp", sans-serif;
	position: relative;
	z-index: 2;
	background: var(--main);
}
.contents-wrap {
	position: relative;
	z-index: 2;
	background: var(--main);
}
#sp-contents{
	width: 100%;
	max-width: 100%;
	height: 100%;
}
.inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    font-family: "notosanjp", sans-serif;
}

/* MV
--------------------------------------*/
.mv-area {
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 28px;
	text-align: center;
	background: var(--main);
	position: relative;
}
.mv-main-wrap {
	position: relative;
	z-index: 0;
	text-align: center;
}

@media (min-width: 767px) {
	.mv-area {
		min-height: initial;
	}
}

/* MVメインコピー
---------------------*/
.main-copy {
    position: relative;
    top: -20px;
}
.main-copy .inner {
	width: 90%;
}

/*アニメーション*/
.is-anm-start .anm-copy {
	animation: poyopoyo 1.5s 0.3s ease-out;/*1秒後ぽよぽよ*/
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50% {
    transform: scale(1.25);
  }
  70% {
    transform: scale(0.95);
  }
}

/*MVアイコン
----------------------*/
.mv-wrap-flex {
	display: flex;
    justify-content: space-between;
    margin: -20px auto -11px;
}
.mv-main-obj-1 {
	margin-left: -3rem;
}
.mv-main-obj-2 {
	margin-left: 0.8rem;
    margin-top: -1rem;
}
.mv-main-obj-3 {
	margin-right: 10px;
	transform: rotate(10deg);
}
@media (max-width: 340px) {
	.mv-wrap-flex {
		margin: -20px auto 16px;
	}
}

/* MVリード文
----------------------*/
.mv-lead {
	color: var(--white);
	-webkit-text-stroke: 6px var(--main);
	paint-order: stroke;
	position: relative;
	z-index: 2;
	top: -53px;
	font-weight: 700;
}
.mv-lead::after {
	content: '';
	position: absolute;
	bottom: -46px;
    left: 50%;
    transform: translateX(-50%);
	width: 45px;
	height: 26px;
	display: inline-block;
	background: url('/static/img/campaign/across-japan/ico-arrow-pink.svg') no-repeat center center/ 100%;
}

/* MV全額支援
------------------*/
.mv-support {
	display: flex;
	justify-content: center;
	align-items: center;
}

/*アニメーション*/
.is-anm-start .anm-poyoyon {
	animation: poyoyon 2.5s 2s;/*2秒後左右にぽよぽよ*/
}
.is-anm-start .mv-support .anm-bounce {
	animation: bounce 1s 2.5s linear forwards;/*4秒後横から出てくる*/
}
@keyframes poyoyon {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateY(0);
  }
  40% { 
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}


/* flug-head
-----------------------------------------------------*/
.flug-header {
  border-radius: 30px 30px 0 0;
  padding: 15px 0 11px;
  background: var(--accent);
  text-align: center;
  position: relative;
}
.flug-header::before {
  content: '';
  position: absolute;
  top: 12px;
  left: calc(100% - 70%);
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 48px;
  height: 55px;
  background: url('/static/img/campaign/across-japan/img-jp-flug.svg') no-repeat center center/ 100%;
  opacity: 0;
}
.flug-img {
	width: 100%;
}
.is-scrollIn .flug-header::before {
	animation: flugnyoki 0.3s linear forwards;
}
@keyframes flugnyoki {
  0% {
    opacity: 0;
    transform: translate(-50%,0); 
  }
  100% {
    opacity: 1; 
    transform: translate(-50%, -32px);
  }
}

/* check
------------------------------*/
.check-area {
  padding-top: 0;
  border-radius: 30px 30px 0 0;
}

/* 追従ナビ
--------------------*/
.sticky-nav-wrap {
	position: sticky;
	top:0;
	z-index: 3;
	width: 100%;
	padding: 15px 15px 40px;/*stickyのための余白調整*/
}
.sticky-nav {
	display: flex;
	justify-content: center;
	margin: auto;
	gap: 3%;
	width: 100%;
	max-width: 100%;
	z-index: 5;
}
.sticky-nav-item {
  width: 32%;
  height: 106px;
  display: block;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.sticky-nav-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 100%;
  background: var(--accent);
}
.sticky-nav-item a .wrap {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  z-index: 3;
  color: var(--accent);
  font-family: "notosans", sans-serif;
  padding: 22px 16px;
  border-radius: 100%;
  border: solid 2px var(--accent);
  background: var(--base);
  position: relative;
  top: -6px;
  left: 0px;
}
.sticky-nav-item a .wrap::after{
  content: "\f107";
  position: absolute;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transform: translateX(-50%);
  left: 50%;
  bottom: 2%;
  color: var(--accent);
  font-size: 13px;
}
.sticky-nav-item a:hover {
  opacity: 1;
}
.sticky-nav-item a .wrap:hover {
  top: 0;
  left: 0;
  opacity: 1;
}
.sticky-nav-item a .wrap .jp{
  font-size: 12px;
  margin-top: 3px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

/*キャンペーン終了時追従を終了*/
.sticky-nav-wrap.is-finish {
	position: static;
}

/* 追従調整
----------------------------*/
@media (min-width: 992px) {
	.sticky-nav-wrap {
		position: static;/*PCのときは追従しない*/
	}
}
@media (min-width: 341px) and (max-width: 991px) {
  .sticky-nav {
	width: 100%;
	max-width: 393px;
    z-index: 5;
  }
  .sticky-nav.is-fixed {
    position: fixed;
    top: 10px;
  }
  /* メニューが追従していない時の高さを浮かす調整*/
  .sticky-nav.is-static {
    position: absolute;
  }
}
@media (max-width: 340px) {
  .stcky-nav {
    padding: 0 10px;
	gap: 2%;
  }
  .sticky-nav-item  {
    height: 90px;
  }
  .sticky-nav-item a .wrap {
	padding: 18px 10px;
  }
  .sticky-nav-item a .wrap .jp {
    font-size: 10px;
  }
}

/* ABOUT
--------------------------------------*/
.about-area {
  background: var(--base);
  position: relative;
}

@media (max-width: 340px) {
	.about-area::before {
		height: 118px;
		top: -115px;
	}
}

/*stickyのための背景調整*/
.about-area::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 140px;
  background: var(--base);
  top: -138px;
  z-index: -1;
}

/* メッセージ
------------------------*/
.message-wrap {
	margin: 22px auto 26px;
	position: relative;
	transform: rotate(5deg);/*傾き*/
	max-width: 94%;
	overflow: hidden;
}
.message-card {/*アニメーションする要素*/
	width: 100%;
	text-align: center;
}
.message-bear {
	width: 18%;
	max-width: 72px;
	transform: rotate(0deg);
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 24px;
}
.btn-newtab {
	position: relative;
	padding: 18px 26px 18px 4px;
}
.btn-newtab::after {
	content: '';
	position: absolute;
	top: 50%;
    right: 25px;
    transform: translateY(-50%);
    display: inline-block;
    width: 16px;
    height: 19px;
	background: url('/static/img/campaign/across-japan/icon-newtab.svg') no-repeat center center/ 100%;
}
.btn-newtab:hover::after {
	right: 25px;
}

/*アニメーション*/
.anm-rotate {
  opacity: 0;
}
.is-scrollIn .anm-move {
  position: relative;
}
.is-scrollIn .anm-rotate {
	display: block;
	width: 100%;
	animation: cardMoveAndRotate 1.2s 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
	opacity: 0;
}
.is-scrollIn .anm-rotate img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 移動と回転を同時 */
@keyframes cardMoveAndRotate {
  from {
    opacity: 0;
    transform: translateY(50px) rotateY(0deg) translateZ(1px);
  }
  to {
    opacity: 1;
    transform: translateY(0px) rotateY(720deg) translateZ(1px);
  }
}

/*スマホ実機のみにスタイルを適用*/
@media (pointer: coarse) {/* タッチデバイス（スマホ・タブレット等）かつ Webkit/Blink系ブラウザ（Safari/Chrome） */
  @supports (-webkit-touch-callout: none) or (background: -webkit-linear-gradient(top, transparent, transparent)) {
	.about-area.is-scrollIn {
	  overflow: visible !important;
	  perspective: 1000px;
	  -webkit-perspective: 1000px;
	}
	.is-scrollIn .anm-move {
	  transform-style: preserve-3d;
	  -webkit-transform-style: preserve-3d;
	}
	.is-scrollIn .anm-rotate {
	  -webkit-font-smoothing: antialiased;
	  -webkit-animation: cardMoveAndRotate 1.2s 1s ease forwards;
	}
  }
}
/* スマホ実機のみフェードイン*/
@-webkit-keyframes cardMoveAndRotate {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px) rotateY(0deg) translateZ(0px) scale(0.8);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(10px) rotateY(0deg) translateZ(0px) scale(1);
  }
}

@media (max-width: 340px) {
	.message-bear {
		width: 20%;
		right: -16px;
	}
}

/* 支援対象
-----------------------*/
.target-area {
	position: relative;
}
.support-obj  {
	position: absolute;
	top: 30px;
	right: 0;
	width: 61px;
	height: 121px;
}
@media (max-width: 340px) {
	.support-obj {
		top: 0px;
		width: 50px;
		height: 100px;
	}
}

/* アニメーション*/
.anm-expention {
	opacity: 0;
}
.is-scrollIn .anm-expention {
	animation: expention 1s 2s linear forwards;
}
.is-scrollIn .anm-expention.no-2 {
	animation: expention 1s 3.3s linear forwards;
}
.is-scrollIn .target-area .anm-bounce {
	animation: bounce 2s 2.3s linear forwards;
}
@keyframes expention {
  0% {
	  opacity: 0;
  }
  30% { 
	  opacity: 1;
	  transform: scale(0.8);
  }
  50% {
	  opacity: 1;
	  transform: translateY(0);
  }
  100% {
	  opacity: 1;
	  transform: translateY(0px);
  }
}


/* 支援内容
------------------------*/
.support-cont-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 2%;
}
.support-cont-list li {
	width: 32%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
}
.support-cont-list figure {
	text-align: center;
}
.support-cont-list figcaption {
	display: block;
	font-size: 14px;
	text-align: center;
	font-weight: 600;
	line-height: 1.3;
	margin-top: 5px;
}

/* 企画スケジュール
--------------------------*/
.box-schedule {
	border-radius: 15px;
	background: var(--white);
	
}
.box-schedule > dt {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	background: var(--main);
	color: var(--white);
	border-radius: 15px 15px 0 0;
	padding: 6px 12px 8px;
}
.box-schedule > dd {
	background: var(--white);
	border-radius: 0 0 15px 15px;
	padding: 5px 12px;
}
.box-schedule .in-list li {
	display: block;
	line-height: 1.3;
	padding: 10px 3px;
}
.box-schedule .in-list li:not(:first-child) {
	border-top: 1px dashed var(--main);
}
.box-schedule .in-list li .title {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	margin: 0;
}
.box-schedule .in-list li {
	font-size: 13px;
	font-weight: 400;
}


/* FLOW
-----------------------------------------------------------------*/
.flow-area {
  background: var(--white);
  padding-top: 0;
  padding-bottom: 40px;
}
.flow-list > li {
	display: flex;
	column-gap: 2%;
}
.flow-img {
	width: 36%;
	text-align: center;
	z-index: 0;
	position: relative;
}
.flow-img::before {
	content: '';
	position: absolute;
	left: 50%;
	z-index: -1;
	width: 5px;
	height: 100%;
	background: var(--main);
}
.flow-list > li:last-child .flow-img::before {
	content: none;
}
.flow-cont {
	width: 62%;
	text-align: center;
	margin-bottom: 26px;
}
.flow-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	padding-left: 16px;
	position: relative;
	text-align: left;
	margin-bottom: 10px;
}
.flow-title::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 14px;
	height: 14px;
	display: inline-block;
	background: url("/static/img/campaign/across-japan/icon-check.svg") no-repeat center center/ 100%;
}
.flow-list li .lead {
	font-size: 14px;
	font-weight: 400;
	text-align: left;
	line-height: 1.3;
}
.list-attention {
	margin-top: 10px;
}

/* ENTRY
-------------------------------------------------------------------------*/
.entry-area {
	background: var(--base);
}

/*規約*/
.terms-container {
	background: var(--white);
	border-radius: 15px;
	padding: 20px 0;
}
.terms-box {
  width: 100%;
  height: 382px;
  overflow-y: scroll;
  padding: 0 12px;
  box-sizing: border-box;
}
.terms-box .lead {
  font-size: 12px;
}

/* アクションエリア（初期は半透明で未活性感を出す） */
.terms-action-area {
  text-align: center;
  margin-top: 20px;
  max-width: 600px;
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.terms-action-area.is-active {
  opacity: 1;
}

/* チェックボックス部分 */
.checkbox-label {
  display: inline-flex;
  align-items: center;
  cursor: not-allowed;
  user-select: none;
  padding: 8px;
  border-radius: 4px;
}
.terms-action-area.is-active .checkbox-label {
  cursor: pointer;
}

/* ボタンの基本 */
.btn-submit {
  display: block;
  width: 90%;
  margin: 15px auto;
  padding: 20px 30px 20px 20px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
/* 非活性（初期状態） */
.btn-submit.is-disabled {
  background-color: var(--disabled);
  cursor: not-allowed;
  pointer-events: none; /* マウスクリック・ホバーを無効化 */
}
/* .is-disabled がついてないとき */
.btn-submit:not(.is-disabled) {
  background: var(--accent);
}
.btn-submit:not(.is-disabled):hover {
  color: var(--white);
}
.btn-submit:not(.is-disabled):active {
  transform: scale(0.98);
}
/*チェックボックス装飾 リセット*/
.checkbox {
  position: relative;
  width: 24px;
  height: 24px;
  appearance: none;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 0 0 0 transparent;
  margin-right: 10px;
}
.checkbox::before {
   content: "";
   position: absolute;
   inset: 0;
   display: block;
   width: 100%;
   height: 100%;
   opacity: 0;
   background-color: var(--white);
}
/* チェックのアイコン */
.checkbox::after {
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin: center right;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  opacity: 0;
}
.checkbox:disabled::after{
	opacity: 0;
}
/* チェックされた時 */
.checkbox:checked::after {
  opacity: 1;
}
/*応募終了時のボタン*/
.btn-inactive {
  display: block;
  width: 90%;
  margin: 15px auto;
  padding: 20px 30px 20px 20px;
  background-color: var(--disabled);
  cursor: not-allowed;
  pointer-events: none; /* マウスクリック・ホバーを無効化 */	
}
.btn-inactive::after {
	content: none;
}

@media (max-width: 340px) {
	.checkbox-label {
		font-size: 13px;
	}
}

/* Column
-------------------------------------------------------------------------*/
.column-area {
	background: var(--white);
}
.column-item {
	margin-top: 8px;
}
.column-item a {
	display: flex;
	align-items: center;
	gap: 1%;
	padding: 12px 13px;
	border: 1px solid var(--border);
	border-radius: 10px;
}
.column-item a:hover {
  color: var(--black);
}
.column-img {
  width: 32%;
  display: block;
}
.column-title {
  width: calc(100% - 32%);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 340px) {
	.column-item a {
		column-gap: 4%;
	}
	.column-title {
		font-size: 13px;
	}
}

/* Contact
-------------------------------------------------------------------------*/
.contact-area {
	background: var(--main);
}
.border-wrap {
	border: 1px solid var(--white);
	padding: 7px 8px;
	margin-left: 10px;
	margin-right: 10px;
}
.contact-area .attention,
.contact-area .border-wrap .lead {
	font-size: 14px;
}
.btn-contact {
	position: relative;
	padding: 18px 26px 18px 4px;
}
.btn-contact::after {
	content: '';
	position: absolute;
	top: 50%;
    right: 25px;
    transform: translateY(-50%);
    display: inline-block;
    width: 20px;
    height: 16px;
	background: url('/static/img/campaign/across-japan/icon-mail.svg') no-repeat center center/ 100%;
}
.btn-contact:hover::after {
	right: 25px;
}

/*モーダル
---------------------------*/
.modal-map .modal-header {
	border-bottom: none;
}
.modal-map .modal-body {
	padding: 0 3px;
}
.modal-map .close {
	opacity: 1;
}
.modal-map .modal-footer {
	border-top: none;
	padding: 1rem 0.5rem;
}

/* PC
------------------------------------------------------*/
.pc-menu,
#pc-left,
#pc-center,
#pc-right {
    display: none;/*PCメニューを非表示*/
}
@media (min-width: 560px) {
	#contents{
		width: 396px;
	}
    #sp-contents {
      max-width: 100%;
    }
    .inner {
      width: 100%;
    }
	
	/* コンテンツ両サイド帯アニメーション
	-----------------------------------------*/
    /* PC obi 
    -----------------------------------*/
	.pc-obi-side {
		position: absolute;
		top: 0;
		width: 36px;
		height: 100%;
		border-left: 2px solid var(--white);
		border-right: 2px solid var(--white);
		padding: 0 5px;
	}
	.pc-obi-side.left {
        background: url("/static/img/campaign/across-japan/obi-willer.svg") repeat-y center / 60%;
		background-color: var(--main);
        left: -40px;
        animation: pcBgSideLeft 300s linear infinite;
	}
	.pc-obi-side.right {
        background: url("/static/img/campaign/across-japan/obi-nippon.svg") repeat-y center / 60%;
		background-color: var(--main);
        right: -40px;
        animation: pcBgSideRight 300s linear infinite;
	}
}
@media (min-width: 992px) {
	#pc-left,
	#pc-center,
	#pc-right {
		display: block;
	}
	#contents {
	 margin: 0 auto 0 calc(100% + 2rem);
	}
	#sp-contents {
		max-width: 100%;
	}

    /* モバイルファーストPC時
    ----------------------------------*/
    #content-grid {
        position: relative;
        display: grid;
        grid-template-columns: 3fr 2fr 1fr;
        width: 100%;
    }

    /* PCメニュー
    ------------------------------*/
    .pc-menu {
        display: block;/*PCメニューを表示*/
		margin: auto;
		position: relative;
    }
	.pc-nav {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}
	.pc-nav li {
    	display: block;
		width: 100%;
		max-width: 420px;
		margin: 1.4rem auto 0;
	}
	.pc-nav li a {
		display: block;
		position: relative;
		border-radius: 80px;
		background: var(--accent);
	}
	.pc-nav li a .wrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
    	max-width: 100%;
		z-index: 3;
		color: var(--accent);
		font-size: 13px;
		font-weight: 700;
		line-height: 1.3;
		font-family: "notosans", sans-serif;
		padding: 16px 3rem 18px;
		border-radius: 80px;
		border: solid 2px var(--accent);
		background: var(--white);
		position: relative;
    	top: -6px;
    	left: 0px;
	}
	.pc-nav li a .wrap::after{
	  content: "\f105";
	  position: absolute;
	  display: inline-block;
	  font-family: "Font Awesome 5 Free";
	  font-weight: 900;
	  transform: translateY(-50%);
	  top: 50%;
	  right: 2rem;
	  color: var(--accent);
	  font-size: 13px;
	}
	.pc-nav li a .wrap .jp {
		position: relative;
		padding-left: 1.2rem;
		margin-left: 1rem;
	}
	.pc-nav li a .wrap .jp::before {
	  content: "";
	  position: absolute;
	  transform: translateY(-50%);
	  top: 50%;
	  left: 0;
	  width: 8px;
	  height: 8px;
	  background: url('/static/img/campaign/across-japan/img-kirakira.svg') no-repeat center center/ 100%;
	}
	/* hover */
	.pc-nav li a:hover {
		opacity: 1;
	}
	.pc-nav li a .wrap:hover {
		top: 0;
		left: 0;
		opacity: 1;
	}
	
	/*PC Side
	---------------------------------------*/
	.pc-side {
		position: absolute;
		width: 100%;
		height: 100%;
	}
	.pc-side-inner {
		display: grid;
		grid-template-columns: 3fr 2fr 1fr;
		overflow: hidden;
		position: sticky;
		top: 0;
		width: 100%;
		height: 100vh;
	}

	/* PC Side Left
	-----------------------*/
	.pc-side-left {
		width: calc(100% - 2rem);
		padding: 2.8rem 1rem 1.2rem;
		margin-right: 2rem;
		position: sticky;
		top: 0;
		height: 100vh;
	}
	.pc-side-left-inner {
		position: relative;
		width: 100%;
    	max-width: 92%;
		height: 100%;
		display: block;
	}
	
	/* logo
	--------------------*/
	.pc-side-logo {
		text-align: center;
		margin: 0 auto 2.6rem;
	}
	
	/* obj
	-----------------------*/
	.pc-side-obj {
		position: absolute;
		z-index: -2;
		bottom: calc(100vh - 94vh);
		display: flex;
		justify-content: flex-end;
		align-items: flex-end;
		gap: 1%;
		right: 0;
	}
	
	/*　objアニメーション
	----------------------------*/
	.anm-pc-side-obj {
		animation: move-obj 18s steps(12) infinite;
	}
	.obj-1 {
		width: 6.4rem;
		animation: tekuteku-1 0.6s ease-in-out infinite alternate;
	}
	.obj-2 {
		width: 6.4rem;
		margin-left: 1rem;
		animation: tekuteku-2 0.8s ease-in-out infinite alternate;
	}
	
	/* PC Side Right
	--------------------------------------*/
	.pc-side-right {
		width: calc(100% - 2rem);
		margin-left: 2rem;
		position: relative;
		height: 100vh;
	}
}
@media (min-width: 1062px) {
	.pc-nav li a .wrap {
		font-size: 16px;
	}
}
@media (min-width: 1100px) {
	.pc-nav li a .wrap {
		font-size: 18px;
	}
}

/*コンテンツサイドの帯アニメーション*/
@keyframes pcBgSideLeft {
	0% {
		background-position: 6px 0;
	}
	100% {
		background-position: 6px -1000vw;
	}
}
@keyframes pcBgSideRight {
	0% {
		background-position: 6px 0;
	}
	100% {
		background-position: 6px 1000vw;
	}
}

/*PC キャラクター*/
/*画面横移動*/
@keyframes move-obj {
  0% {
    transform: translateX(20vw);
  }
  50% {
    transform: translateX(-30vw);
  }
  100% {
    transform: translateX(-100vw);
  }
}
/* てくてく①：上下のジャンプ ＋ 左右の傾き */
@keyframes tekuteku-1 {
  0% {
    /* 地面について、左に少し傾いている状態 */
    transform: translateY(0) rotate(-6deg);
  }
  100% {
    /* 一歩踏み出して、少し浮きつつ右に傾いた状態 */
    transform: translateY(-10px) rotate(6deg);
  }
}
/* てくてく②：上下のジャンプ ＋ 左右の傾き */
@keyframes tekuteku-2 {
  0% {
    /* 地面について、左に少し傾いている状態 */
    transform: translateY(-12px) rotate(8deg);
  }
  100% {
    /* 一歩踏み出して、少し浮きつつ右に傾いた状態 */
    transform: translateY(0) rotate(-8deg);
  }
}

