/* 基本のスタイル設定 */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
    font-size: 18px;
    line-height: 1.5;
    /* ...他のスタイル */	
    /* ...他のスタイル */
}

h1, h2, h3, h4 {
    text-align: center;
	line-height: 1.5em;
    margin: 0;
	padding: 0;
    color: #333;
}

p {
    font-size: 18px;
	line-height: 1.5em;	
    margin: 0;
	padding: 0 0 18px;
    color: #333;	
}

li {
    font-size: 16px;
	line-height: 1.8em;	
    margin: 0;
	padding: 0;
    color: #333;	
}

img {
	max-width: 100%;	
	vertical-align: bottom;
}

a:link {
	color: #fff;
}
a:visited {
	color: #fff;
}
a:hover, a:active {
	color: #fff;
	text-decoration: underline;
}

/* PC画面では、.mobile-only を非表示にします */
.mobile-only {
    display: none;
}

.fas.fa-gift {
    font-size: 36px;
    color: #ea5749;
}
/* カウントダウン */

#countdown {
	background-color: #312202;
	color: #ffed48;
	padding: 10px 0;
	font-weight: bold;
	font-size: 160%;
	margin: auto;
    text-align: center;	
}

/* スマホ用のCSS */
@media only screen and (max-width: 640px) {
    /* スマホ画面では、.desktop-only を非表示にし、.mobile-only を表示します */
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
	#countdown {
		background-color: #331310;
		color: #ffed48;
		padding: 10px 0;
		font-weight: bold;
		font-size: 100%;
		margin: auto;
    	text-align: center;	
	}
	.fas.fa-gift {
    font-size: 24px;
    color: #ea5749;
	}
}

/*==============================
フォント装飾
==============================*/

.cb {
	font-weight: bold;
	font-size: 100%;
	line-height: 1.6em;
}
.cbul {
	font-weight: bold;
	font-size: 105%;
	line-height: 1.6em;
	background: linear-gradient(transparent 80%, #ffea00 80%);
}

.cb110{
	font-weight: bold;
	font-size: 110%;
	line-height: 1.6em;
}

.cr{
	color: #ff4eae;
	font-weight: bold;
	font-size: 105%;
}

.cr110ul{
	color: #ff4eae;
	font-weight: bold;
	font-size: 110%;
	background: linear-gradient(transparent 80%, #ffea00 80%);	
}

.cr120{
	color: #ff4eae;
	font-weight: bold;
	font-size: 120%;
}


.btn {
    /* ボタンの基本的なスタイル */
	width: 800px;
	margin: auto;
    padding: 10px 0px;
    border: none;
    color: white;
    text-align: center;
}

.btn:hover {
    /* マウスオーバー時の彩度増加 */
    filter: saturate(1.8); /* 彩度を50%上げる */
}

/* メインビジュアル */

.main-visual {
	width: 100%;
	background-color: #fff;
	color: #fff;
	padding: 0px;
	background-image: url();
	background-repeat: no-repeat;
	background-position: center;
}

/* 640px以下のレスポンシブ対応 */
@media only screen and (max-width: 640px) {
	.btn {
    /* ボタンの基本的なスタイル */
	width: 90%;
	margin: auto;
    padding: 10px 0px;
    border: none;
    color: white;
    text-align: center;
}
}
/* コンテンツ */

.product-introduction, .tokuten, .bullets, .testimonials, .postscript, .cta {
    padding: 0;
    background-color: #fff;
    margin: 0;
    border-radius: 0px;
}

.full-width {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 980px;
    width: 100%;  /* 新しいプロパティを追加 */
    margin: 0 auto;
	padding: 40px 0;  /* 必要に応じてページの左右の余白を調整 */
    background-color: transparent;  /* 背景色を透明に設定 */
}

.section-image {
    text-align: center;
    margin-bottom: 20px;
}

.section-image img {
    max-width: 100%;
}

h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 2em;
    color: #333;
    text-align: center;
    margin: 0 0;
    padding: 20px 0;
    letter-spacing: 0.05em;
    position: relative;  /* 追加 */
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, purple, gold);  /* グラデーション */
}

h3{
	background-image: url(../images/h3_bg.png);
	background-repeat: repeat-x;
}

.info-content {
	padding: 0 50px;
	margin: 0 0;
}

/* 640px以下のレスポンシブ対応 */
@media only screen and (max-width: 640px) {
	h2 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 1.5em;
    color: #333;
    text-align: center;
    margin: 0 0 10px;
    padding: 20px 10px;
    letter-spacing: 0.05em;
    position: relative;  /* 追加 */
	}

	h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, purple, gold);  /* グラデーション */
	}
	.container{
	padding: 0;	
	}
	
	.info-content {
	padding: 0 10px;
	margin: 0 0 10px;
	}
}

#footer {
	clear: both;
	width: 100%;
	color: #fff;
	text-align: center;
	padding: 25px 0 25px 0;
	margin:0;
	background: #aa78d4;
}
#footer .navi {
	color: #fff;	
	font-size: 14px;
	margin: 0 0 15px 0;
}
#footer p.copyright {
	color: #fff;	
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	letter-spacing: 0.05em;
	text-align: center;
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 640px) {
	#footer {
		clear: both;
		width: 100%;
		text-align: center;
		padding: 15px 10px 10px 10px;
		margin:0;
		background: #aa78d4;
	}
	#footer .navi {
		font-size: 12px;
		margin: 0 0 8px 0;
	}
	#footer p.copyright {
		color: #fff;
		font-family: Verdana, Geneva, sans-serif;
		font-size: 12px;
		letter-spacing: 0em;
		text-align: center;
		margin: 0 auto 0 auto;
		padding-top: 15px;
	}
}

/*==============================
ベネフィット
==============================*/

.benefit ul {
	padding: ;
	position: relative;
	margin: 0 2% 60px;
}
.benefit ul li {
	font-size: 140%;
	line-height: 1.5;
	padding: 0px 0 0 40px;
	margin: 0 0 10px;
	list-style-type: none !important;
	background-image: url(../images/check_pc.png);
	background-repeat: no-repeat;
	background-position: left top;
}
@media screen and (max-width:640px) {
.benefit ul {
	padding: 0 4%;
	position: relative;
	margin: 0 1% 0px;
}	
.benefit ul li {
	font-size: 105%;
	line-height: 1.5;
	padding: 2px 0 2% 32px;
	margin: 0 0;
	list-style-type: none !important;
	background-image: url(../images/check_pc.png);
	background-repeat: no-repeat;
	background-position: left top;
}	
}

/*==============================
特典 
==============================*/

.tokuten-box{
	padding: 0 0 10px;
	margin: 0 20px 40px;
 	border-bottom: 1px dashed #EA5749;
}

.tokuten-box h4{
    font-family: 'Noto Serif JP', serif;	
	font-size: 180%;
	padding: 10px 0 30px;
	
}

.tokuten-content {
    display: flex;
    flex-direction: row;
	padding: 0 0 20px;
}

.tokuten-text{
	width: 56%;
	padding: 0 4% 0 0;
}

.tokuten-image{
	max-width: 40%;
}

.tokuten-content .tokuten-text {
    order: 1;
}

.tokuten-content .tokuten-image {
    order: 2;
}

@media only screen and (max-width: 640px) {
	.tokuten-box h4{
    font-family: 'Noto Serif JP', serif;	
	font-size: 130%;
	padding: 10px 0 30px;
	
	}
	.tokuten-text{
	width: 100%;	
	}

	.tokuten-image{
	max-width: 100%;
	}
	.tokuten-content {
        flex-direction: column;
    }

    .tokuten-image {
        width: 100%; /* 必要に応じて幅を指定 */
        margin-bottom: 10px; /* 画像とテキストの間に余白を追加 */
    }
}


/* ...他のスタイル... */



/***** bullets *****/

.bullets .full-width{
	padding: 0px;
	background-image: url(../images/sec_bg_02.png);
	background-repeat: no-repeat;
	background-position: center top;
}

.bullets {
/*    background-color: #fff;
    padding: 40px;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);*/
}

.bullets ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.bullets ul li {
    background-color: #f9f9f9;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.bullets ul li:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.bullets ul li strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #4b0082;
}


.testimonial {
    display: flex;
    margin-bottom: 20px;
}

.testimonial img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-right: 20px;
}

.testimonial-text span{
	font-size: 88%;
}

.postscript .full-width{
	padding: 0px;
	background-color: #fff2ff;
}

.payment-method {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3列に分割 */
    gap: 20px; /* グリッドアイテム間の間隔 */
    margin-top: 20px; /* 上部の余白を追加 */
}

.method-item {
    background-color: #f9f9f9; /* 背景色を追加 */
    padding: 20px; /* 内側の余白を追加 */
    border-radius: 10px; /* 角を丸くする */
}

.method-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.process {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列に分割 */
    gap: 20px; /* グリッドアイテム間の間隔 */
    margin-top: 20px; /* 上部の余白を追加 */
}

.process-item {
    background-color: #f9f9f9; /* 背景色を追加 */
    padding: 20px; /* 内側の余白を追加 */
    border-radius: 10px; /* 角を丸くする */
}

.process-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.flex-item {
    flex: 1;
    background-color: ; /* 背景色を追加 */
    padding: 20px; /* 内側の余白を追加 */
    border-radius: 10px; /* 角を丸くする */	
}

/* 640px以下のレスポンシブ対応 */
@media only screen and (max-width: 640px) {
    /* 他のレスポンシブスタイル */
    .flex-container {
        flex-direction: column;
    }
}

.company-overview {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.overview-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.company-info {
    flex: 1;
    min-width: calc(50% - 10px);
}

.company-map {
    flex: 1;
    min-width: calc(50% - 10px);
}

/* レスポンシブ対応 */
@media only screen and (max-width: 640px) {
    .overview-content {
        flex-direction: column;
    }
    .company-map iframe {
        width: 100%;
    }
}



.cta-button {
    display: block;
    margin: 20px auto;
    padding: 15px 30px;  /* パディングを増やしてボタンを大きくします */
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;  /* 背景色の遷移も追加 */
    font-size: 1.5em;  /* フォントサイズを増やしてボタンテキストを大きくします */
    text-transform: uppercase;  /* テキストを大文字に変換 */
}

.cta-button:hover {
    transform: translateY(-5px);
    background-color: #0056b3;  /* ホバー時の背景色を変更して目立たせます */
}


/* 640px以下のレスポンシブ対応 */
@media only screen and (max-width: 640px) {
    .testimonial {
		padding: 0 20px;
        flex-direction: column;
        align-items: center;
    }

    .testimonial img {
		width: 120px;
		height: 120px;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/*==============================
テーブル
==============================*/
.t1 {
	background-color: #fff;
	margin-bottom: 10px;
	width: 100%;
}
.t1 td {
	line-height: 1.8em;
	padding: 0 2%;
	/*vertical-align:bottom;*/
	/*background: url(../images/dot_x.png) repeat-x bottom;*/
}
.t2 {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 40px;
}
.t2 tr {
	border-bottom: solid 2px white;
}
.t2 tr:last-child {
	border-bottom: none;
}
.t2 th {
	position: relative;
	text-align: left;
	width: 30%;
	background-color: #d089c8;
	color: white;
	padding: 10px 0;
}
.t2 th:after {
	display: block;
	content: "";
	width: 0px;
	height: 0px;
	position: absolute;
	top: calc(50% - 10px);
	right: -10px;
	border-left: 10px solid #d089c8;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}
.t2 td {
	text-align: left;
	width: 70%;
	background-color: #f7f7f7;
	padding: 10px 20px;
}
/*==============================
フォーム
==============================*/
.mf-01 {
	height: 40px;
	width: 60%;
	/* box-shadow */
	box-shadow: 0px 0px 4px 0px #e8e8e8 inset;
	/* border-radius */
	border-radius: 1px;
	/* border */
	border: 1px solid #cfcbcb;
	/* react native */
	shadowColor:"#e8e8e8", shadowOffset: {
		width: 0, height:0
	}
	, shadowOpacity:1, shadowRadius:4, borderWidth:1, borderColor:"#cfcbcb", borderRadius:1
}
.mf-02 {
	height: 300px;
	width: 100%;
	/* box-shadow */
	box-shadow: 0px 0px 4px 0px #e8e8e8 inset;
	/* border-radius */
	border-radius: 1px;
	/* border */
	border: 1px solid #cfcbcb;
	/* react native */
	shadowColor:"#e8e8e8", shadowOffset: {
		width: 0, height:0
	}
	, shadowOpacity:1, shadowRadius:4, borderWidth:1, borderColor:"#cfcbcb", borderRadius:1
}
.mf-03 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", A-OTF Shin Go Pro, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	width: 100%;
	height: 80px;
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
	text-align: center;
	border: 1px solid #333333;
	padding: 0;
	margin: 0 auto 12px;
	display: block;
	color: #333333;
	background-repeat: no-repeat;
}
.mf-04 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", A-OTF Shin Go Pro, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	width: 100%;
	height: 80px;
	font-size: 20px;
	font-weight: bold;
	line-height: 28px;
	text-align: center;
	border: 1px solid #333333;
	padding: 0;
	margin: 0 auto 12px;
	display: block;
	color: #333333;
	background-image: url(../../images/mail_pc.png);	
	background-position: left center;
	background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
	.mf-03 {
		background-repeat: no-repeat;
		font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", A-OTF Shin Go Pro, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		width: 100%;
		height: 40px;
		font-size: 14px;
		font-weight: bold;
		line-height: 28px;
		text-align: center;
		border: 1px solid #333333;
		padding: 0;
		margin: 0 auto 12px;
		display: block;
		color: #ccc;
	}	
	.mf-04 {
		background-repeat: no-repeat;
		font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", A-OTF Shin Go Pro, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		width: 100%;
		height: 40px;
		font-size: 14px;
		font-weight: bold;
		line-height: 28px;
		text-align: center;
		border: 1px solid #333333;
		padding: 0;
		margin: 0 auto 12px;
		display: block;
		color: #ccc;
		background-image: url(../../images/mail_sp.png);	
		background-position: left center;
		background-repeat: no-repeat;	
	}
}
.entry_submit {
	width: 800px;
	height: 120px;
	display: block;
	font-size: 0px;
	line-height: 0px;
	text-indent: -9999px;
	cursor: pointer;
	margin: auto;
	padding: 0px;
	border-width: 0px;
	border-style: initial;
	border-color: initial;
	border-image: initial;
	background: url(../../images/btn.png) center top no-repeat;
	overflow: hidden;
}
.entry_submit:hover {
	width: 800px;
	height: 120px;
	display: block;
	font-size: 0px;
	line-height: 0px;
	text-indent: -9999px;
	cursor: pointer;
	margin: auto;
	padding: 0px;
	border-width: 0px;
	border-style: initial;
	border-color: initial;
	border-image: initial;
	background: url(../../images/btn.png) center bottom no-repeat;
	overflow: hidden;
}
.entry_submit_sp {
	width: 398px;
	height: 59px;
	display: block;
	font-size: 0px;
	line-height: 0px;
	text-indent: -9999px;
	cursor: pointer;
	margin: auto;
	padding: 0px;
	border-width: 0px;
	border-style: initial;
	border-color: initial;
	border-image: initial;
	background: url(../../images/btn_sp.png) center top no-repeat;
	overflow: hidden;
}
.entry_submit_sp:hover {
	width: 398px;
	height: 59px;
	display: block;
	font-size: 0px;
	line-height: 0px;
	text-indent: -9999px;
	cursor: pointer;
	margin: auto;
	padding: 0px;
	border-width: 0px;
	border-style: initial;
	border-color: initial;
	border-image: initial;
	background: url(../../images/btn_sp.png) center bottom no-repeat;
	overflow: hidden;
}
.poyopoyo {
  animation: shake 0.5s infinite; /* アニメーションを無限に繰り返す */
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
}
