@charset "utf-8";

/* Base
------------------------------------------------------------------------------*/* {
* {
	box-sizing: border-box;
}
body {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	margin: 0;
	padding: 0;
	font: 15px "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	color: #333;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}
h1,h2,h3,h4,h5,
div,p,dl,dt,dd,
ul,ol,li,
figure,form {
	margin: 0;
	padding: 0;
	font-size: 1em;
}

/* hr --------------------*/
hr {
	width: auto;
	height: 1px;
	border-width: 1px 0 0;
	border-style: solid;
	border-color: #ccc;
	margin: 10px auto;
}

/* テキスト関係 --------------------*/
*+p		{ margin-top: 10px; }
.left		{ text-align: center; }
.center		{ text-align: center; }
.right		{ text-align: right; }
.f-left		{ float: left; }
.f-right	{ float: right; }
.red		{ color: red; }
.blue		{ color: blue; }
.celeste	{ color: #0095bf; }
.green		{ color: green; }
.pink		{ color: #ff8080; }
.orange		{ color: orange; }
.purple		{ color: purple; }
.grey		{ color: grey; }
.brown		{ color: brown; }
.big		{ font-size: 1.25em; }
.small		{ font-size: 0.85em; }


/* image --------------------*/
img	{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border: none;
	vertical-align: bottom;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-moz-touch-callout: none;
	touch-callout: none;
}

/* table --------------------*/
table {
	border-collapse: collapse;
}
table,
table td,
table th　{
	border: 1px solid #ccc;
}

/* link --------------------*/
a {
	color: #06f;
	text-decoration: underline;
}
a:hover {
	color: #f60;
	text-decoration: underline;
}
a:focus {
	outline: none;
}

/* ulタグ --------------------*/
ul {
	list-style-type: none;
}
/* オリジナルマークを付与可 */
[data-mark] {
	display: flex;
	align-items: flex-start;
	padding: 0;
}
[data-mark]::before {
	content: attr(data-mark);
	color: var(--mark-color, #333);	/* style="--mark-color: 〇〇〇;" でマークの色を変更可能 */
	margin-right: 0.6em;
	flex-shrink: 0;
}
/* 全体的に右寄せにしたい場合 */
[data-mark][data-align="right"] {
	justify-content: flex-end;
	text-align: right;
}

/* flex / grid --------------------*/
/* flex */
[data-column] {
	display: flex;
	flex-wrap: wrap;
}
[data-column="6"]>* {
	width: calc(100% / 6);
}
[data-column="5"]>* {
	width: calc(100% / 5);
}
[data-column="4"]>* {
	width: calc(100% / 4);
}
[data-column="3"]>* {
	width: calc(100% / 3);
}
[data-column="2"]>* {
	width: calc(100% / 2);
}



/* アコーディオンメニュー --------------------*/
input[type="radio"].ac-trigger {
	display: none;
}
.ac-item {
/*	border-bottom: 1px solid #ddd;*/
}
.ac-label {
	display: block;
	cursor: pointer;
	user-select: none;
}
.ac-content-wrapper {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease-out;
}
input[type="radio"]:checked + .ac-label + .ac-content-wrapper {
	grid-template-rows: 1fr;
}
.ac-content-inner {
	overflow: hidden;
}

/* section --------------------*/
section+section {
	margin-top: 50px;
}


/*基本設定
==========================================================*/
/* レイアウト
------------------------------*/
#wrapper {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	max-width: 1100px;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	margin: 0 auto;
	padding: 0;
}
header {
	position: relative;
	width: 100%;
	margin: auto;
}
.contents {
	position: relative;
	flex: 1;
	width: 100%;
	margin: 0 auto 45px;
	padding: 10px;
}

footer {
	background: #f9f9f9;
	border-top: 2px solid #ddd;
	width: 100%;
	margin-top: auto;
	padding: 0;
	color: #fff;
}


/* header
------------------------------------------------------------------------------*/
header {
	margin: 15px auto 0;
}
header h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  
  /* 【重要】高さを画面幅(vw)に連動させ、160pxを上限にする */
  /* 13vw の数値は、画像Bが画面内に収まるよう調整してください */
  padding: 0.5%;
  height: clamp(50px, 13vw, 160px); 
  width: 100%;
  margin: 0 auto;
  overflow: hidden; /* はみ出し防止 */
}

header h1 img {
  /* ブラウザ幅に合わせて縮む設定 */
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* 画像A: 元サイズ 1924x2500 */
header h1 .ihatove50th {
  /* H1の高さ（160px）を上限に、親要素（H1）に収まるよう自動縮小 */
  flex-shrink: 1;
  max-height: 100%; 
  aspect-ratio: 1924 / 2500;
}

/* 画像B: 元サイズ 732x106 */
header h1 .campaign-ttl {
  /* Aの縮小に追従させるため、Aと同じ「高さ100%」を基準に計算 */
  /* もしBをAより小さく見せたい場合は 80% 等に調整 */
  max-height: 100%; 
  flex-shrink: 1;
  aspect-ratio: 732 / 106;
}

/* contents
------------------------------------------------------------------------------*/
.campaign-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.campaign-main-visual {
    display: flex;
    width: 94%;
    margin: 0 auto;
    aspect-ratio: 500 / 177;
    /* はみ出しを強制的にカット */
    overflow: hidden; 
    box-sizing: border-box;
}

/* 左側：幅を相対比率（6.4%）にする */
.visual-left {
    flex: 0 0 6.4%; /* 画面幅に合わせて縮む */
    height: 100%;
    background-image: url('images/roll-left.png');
    background-size: contain; /* 比率を維持して収める */
    background-repeat: no-repeat;
}

/* 中央：残り幅すべて */
.visual-center {
    flex: 1;
    display: flex;
    align-items: center; 
    justify-content: center;
flex-direction: column;
gap: 0.9vw; /* テキストとボタンの間隔も px で固定すると安定します */
margin: 0 -5px; 
    height: 100%;
    background-image: url('images/roll-center.png');
    background-size: 100% 100%; /* 中央は可変（隙間を埋める） */
    background-repeat: no-repeat;
}

/* 右側：幅を相対比率（6.4%）にする */
.visual-right {
    flex: 0 0 6.4%; /* 画面幅に合わせて縮む */
    height: 100%;
    background-image: url('images/roll-right.png');
    background-size: contain; /* 比率を維持して収める */
    background-repeat: no-repeat;
    background-position: right;
}
.visual-center p {
	width: 90%;
	margin: 0 auto;
	font-size: 1.3em;
	font-weight: bold;
	color: red;
	line-height: 1.5;
    font-size: clamp(14px, 2.4vw, 22px); 
}


.follow-btn {
    display: inline-flex; /* 横並びにする */
    align-items: center;  /* 上下中央揃え */
    justify-content: center;
    gap: 0.5vw;           /* ロゴと文字の間の隙間も可変 */
    
    text-decoration: none;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    border-radius: 50px;
    
    /* 背景に合わせてボタン全体を縮小 */
    padding: 0.7vw 2.5vw;
    font-size: clamp(12px, 1.4vw, 18px); 
    transition: opacity 0.3s;
}
.follow-btn:hover {
	text-decoration: none;
	color: white;
}

/* Xロゴのサイズ設定 */
.x-logo {
    /* 文字サイズ(em)に連動させることで、文字が小さくなればロゴも小さくなる */
    width: 1.2em; 
    height: 1.2em;
    fill: currentColor; /* 文字色と同じ色（白）にする */
}


section {
	max-width: 950px;
	width: 95%;
	margin: 20px auto;
}

.section-ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px auto 25px;
	font-size: 1.7em;
	font-size: clamp(1.5rem, 3.5vw, 2.2rem);
	font-weight: bold;
	text-align: center;
}
.section-ttl::before,
.section-ttl::after {
	content: "◆";
	margin: 0 10px;
}

.com {
	width:100%;
	margin: 5px auto 10px;
	padding: 5px;
}
.com p+p {
	margin-top: 10px;
}

.com :not(.follow-btn) {
	font-size: 0.95em;
	font-size: clamp(14px, 1.6vw, 16px);
}

.kiyaku {
	width:80%;
	margin: 25px auto;
	border: 1px solid #666;
	padding: 15px;
}
.kiyaku .kiyaku-ttl {
	text-align: center;
	font-size: 1.3em;
	font-size: clamp(1em, 2vw, 1.3em);
	letter-spacing: 2em;
	text-indent: 2em;
}

.warning-wrapper {
  display: flex;
  align-items: center; /* 上下中央揃え */
  gap: 16px;           /* アイコンと文字の間隔 */
  padding: 20px;
	margin: auto;
  max-width: 800px;    /* 枠の最大幅（お好みで） */
  /* ★ ここにフォントサイズを追加！ */
  font-size: clamp(12px, 1vw, 14px) !important; 
}

.warning-icon-img {

  width: 32px;        /* 探してきたサイズに固定 */
  height: 32px;
  flex-shrink: 0;      /* 画面が狭くなっても画像が潰れないように固定 */
  object-fit: contain; /* 画像の比率を維持 */
  transform: translateY(4px); 
}
.warning-wrapper .warning-text {
  font-size: clamp(12px, 1vw, 14px); 
}

.download {
	margin: 20px auto 10px;
	padding: 5px;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.download ul li+li {
	margin-top: 15px;
}
.download .follow-image {
	max-width: 90%;
	margin: 20px auto 0;
	text-align: center;
}
.download .follow-image li {
	margin-top: 0;
	padding: 10px;
}
.download .follow-image li.image1 {
	width: 40%;
}
.download .follow-image li.image2 {
	width: 60%;
}

.download-ttl {
	max-width: 900px;
	width: 90%;
	font-weight: bold;
	margin: 10px auto;
}
.download__inner {
	max-width: 900px;
	width: 90%;
	margin: 0 auto 30px;
	display: flex;
	justify-content: space-between;
}
.follow-btn-static {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #000;
    /* 角丸の度合いはカプセル型(50px)か、アイコンに合わせた微角丸(12px等)でお好みで */
    border-radius: 10px; 
    
    /* 文字がないので、上下左右均等な余白に調整 */
    padding: 1vw 1.2vw;
    
    cursor: default;
    user-select: none;
text-align: center;
}
.x-icon-image-area {
	padding: 10px;
}
.x-icon-image {
    width: 3em; 
    height: 3em;
    /* 背景色を透明にする（または消す） */
    background-color: transparent; 
    /* 中のXを白くする */
    fill: #fff; 
    
    padding: 0.1em;
    box-sizing: border-box;
}



/* 全体のコンテナ */
/* 全体のコンテナ：最大幅1000pxに設定 */
.campaign-summary {
    max-width: 1000px;
    margin: 0 auto;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* 各セクション：背景の囲みなし */
.campaign-section {
    margin: 0 auto 60px;
    padding-bottom: 30px;
	line-height: 1.8;

}

/* 第〇弾タイトルの装飾：赤文字で大きめ */
.campaign-title {
    color: #e60012;
font-size: 1.45em;
   font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    line-height: 1.3;
}
/* 期間などの強調テキスト */
.period {
text-align: center; 
   font-weight: bold;
    font-size: 1.3em;
   font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 20px;
}

/* 受付中ステータス */
.registration-status {
/*    display: block;
max-width: 200px;
text-align: center;
    color: #e60012;
    border: 2px solid #e60012;
    padding: 5px 20px;
font-size: 1.1rem;
    font-weight: bold;
    margin: 0 auto 20px;
*/}
.registration-status a {
    display: block;
max-width: 200px;
text-align: center;
    color: #e60012;
    border: 2px solid #e60012;
    padding: 5px 20px;
font-size: 1.1rem;
    font-weight: bold;
    margin: 0 auto 20px;
text-decoration: none;
}

/* 特典情報の強調 */
.present-info {
    margin: 30px auto;
    padding: 10px 0;
    text-align: center;
}
.present-info img {
	max-width: 600px;
	width: 90%;
}


/* 応募期間外ラベル（btnクラス不使用） */
.action-label-disabled {
    display: block;
	width: 180px;
text-align: center;
    background-color: #999;
    color: #fff;
    padding: 12px 40px;
    border-radius: 4px;
    font-weight: bold;
    cursor: not-allowed;
    margin: 10px auto;
}


.campaign-text {
	font-size: 1rem;
   font-size: clamp(0.95rem, 2vw, 1.15rem);
}



/* footer
------------------------------------------------------------------------------*/
footer small {
	display: block;
	background: #222;
	width: 100%;
	margin: 0;
	padding: 16px 0;
	text-align: center;
	font-size: 0.85em;
	color: #fff;
	line-height: 1;
}
footer small::before {
	content: "Copyright";
}
footer small::after {
	content: "All Rights Reserved.";
	margin-left: 5px;
}




/* タブレット
---------------------------------------------------------------------------*/
@media screen and (max-width: 800px) {
/*	body {
		font-size: 15px;
	}

*/
}

/* スマートフォン
---------------------------------------------------------------------------*/
@media screen and (max-width: 500px) {
	body {
		font-size: 15px;
	}

.download .follow-image {
	display: block;
}
.download .follow-image li.image1,
.download .follow-image li.image2 {
	width: 100%;
}
.download .follow-image li.image1 img {
	max-width: 80%
}

.download .follow-image li+li {
	margin-top: 15px;
}



}
