/*
Theme Name:クイック現金サービスLP
Theme URL:https://quick-s.jp/
Description:クイック現金サービスのオリジナルテーマ
Author:onuki shota
Version:テーマのバージョン
*/

* {
    padding: 0;
    margin: 0;
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

img {
    width: 100%;
    vertical-align: top;
}

a {
    display: inline-block;
}

p {
    font-size: 20px;
    letter-spacing: 0.1em;
}

.main-container {
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 0 15px #00000030;
}

.bottom-10 {margin-bottom: 10px;}
.bottom-20 {margin-bottom: 20px;}
.bottom-30 {margin-bottom: 30px;}
.bottom-40 {margin-bottom: 40px;}
.bottom-60 {margin-bottom: 60px;}
.bottom-80 {margin-bottom: 80px;}
.bottom-100 {margin-bottom: 100px;}
.side-50 {width: 50%;}
.side-55 {width: 55%;}
.side-70 {width: 70%;}
.side-80 {width: 80%;}
.side-90 {width: 90%;}
.side-100 {width: 100%;}
.shadow-b50{box-shadow: 4px 4px 4px #0000003b; border-radius: 8px;;}

/* =========================================
   ヘッダー固定
========================================= */
header#global-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 640px; /* PC最大幅に合わせて制限 */
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    box-sizing: border-box;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.header-logo { width: 35%; }
.header-btns {
    display: flex;
    width: 60%;
    justify-content: flex-end;
    gap: 2%;
}
.header-btns a { width: 49%; }

/* ヘッダー固定分の余白をbody等の最上部に設ける */
.main-container { padding-top: 60px; }
/* =========================================
   ファーストビュー (ハイブリッド方式)
========================================= */
.fv-hybrid {
    position: relative;
    width: 100%;
    /* チラ見せ実装：次のセクションを被せるために下にマイナスマージン */
    margin-bottom: -50px; 
    z-index: 1;
}
.fv-bg {
    width: 100%;
    display: block;
}
.fv-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    pointer-events: none; /* コンテンツラッパーはクリック判定を消す */
}
.fv-content > * {
    pointer-events: auto; /* 個別の要素はクリック判定を復活 */
}

/* 1. 最短3ステップ（赤帯） */
.fv-ribbon {
    background-color: #C40E23;
    color: #fff;
    text-align: center;
    padding: 4px 0;
    border-radius: 4px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 16px;
    width: 90%;
}
.fv-ribbon span { font-size: 1.2em; }

/* 2. メインタイトル */
.fv-main-title {
    width: 70%;
    margin-bottom: 15px;
}

/* 3. お悩みリスト（黒枠） */
.fv-checklist {
    border: 3px solid #333;
    background: #fff;
    width: 80%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 15px;
}
.fv-checklist ul {
    list-style: none;
    margin-bottom: 10px;
}
.fv-checklist li {
    font-size: 12px;
    font-weight: bold;
    padding-left: 18px;
    background: url('./image/icon-check.png') no-repeat left center;
    background-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}
.checklist-bottom {
    background: #333;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 0;
}

/* 4. 還元率のテキスト */
.fv-text-bottom {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
}
.fv-text-bottom .highlight {
    font-size: 16px;
    color: #C40E23;
}

/* 5. 3つのバッジ */
.fv-badges {
    position: absolute;
    bottom: 50px; /* チラ見せ分を考慮して調整 */
    left: 10px;
    display: flex;
    width: 65%;
    justify-content: space-between;
}
.fv-badges img { width: 32%; }

/* 6. 大型CTAボタン（丸型） */
.fv-cta-circle {
    position: absolute;
    right: 15px;
    bottom: 40px; /* チラ見せ分を考慮 */
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 4px solid #C40E23;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #C40E23;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.cta-free { font-size: 12px; }
.fv-cta-circle { font-size: 16px; line-height: 1.2; }
.cta-min { font-size: 10px; font-weight: normal; margin-top: 3px; }

/* ふわふわアニメーション */
.pulse-animation {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* =========================================
   利用の流れ チラ見せ＆次のセクション調整
========================================= */
.sec_02 {
    position: relative;
    z-index: 2; /* FVのマイナスマージンの上に乗るようにする */
    padding-top: 60px; /* 被さる分、上部のパディングを増やす */
}



.sec_03 {
    background-color: #F4EFE6;
    padding: 100px 0 160px;
}

.sec_04 {
    position: relative;
    padding-top: 100px;
    text-align: center;
}

.sec_05 {
    text-align: center;
    padding-bottom: 100px;
}

.sec_06 {
    background-color: #F4EFE6;
    padding: 100px 0;
    text-align: center;
}

.sec_07 {
    padding: 100px 0;
    text-align: center;
}

.sec_08 {
    background-color: #F4EFE6;
    padding: 100px 0;
    text-align: center;
}

.sec_09 {
    padding: 100px 0;
    text-align: center;
}

.sec_10 {
    padding-bottom: 200px;
    text-align: center;
}

.sec_04_box {
    position: relative;
}

.service-image1 {
    position: absolute;
    left: 0px;
    top: -40px;
}

.hr-item{
    width: 50%;
    position: absolute;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    font-size: 20px;
    text-align: left;
    letter-spacing: 0.1em;
    line-height: 32px;
}

.grecaptcha-badge {
    display: none!important;
}

.item-box p {
    text-align: center;
}

.item-box {
    border-bottom: 1px solid #d3d3d3;
    padding: 25px 0;
}

.item {
    font-size: 16px;
    font-weight: bold;
}

.annotation {
    font-size: 13px;
    line-height: 20px;
    margin-top: 5px;
}

.arrow{
    width: 0;
    margin: 15px auto;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #c50d23;
}

.image-shadow-d {
    box-shadow: 0px 8px 0 #1B9D02;
    border-radius: 9px;
}

.image-shadow-a {
    box-shadow: 0px 8px 0 #81090D;
    border-radius: 13px;
}

.image-shadow-b {
    box-shadow: 0px 8px 0 #C40E23;
    border-radius: 8px;
}

.image-shadow-c{
	box-shadow: 0 6px 0 #A40A1D;
	border-radius: 7px;
}

span.minus {
    font-size: 22px;
    font-weight: bold;
    color: #004199;
}

span.plus {
    font-size: 22px;
    font-weight: bold;
    color: #c50d23;
}

span.black {
    font-size: 22px;
    font-weight: bold;
    color: #000000;
}

footer {
    padding: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    background-color: #000;
}

/*申込みフォーム*/
.form-block {
    background-color: #f5f5f5;
    padding: 60px 30px;
}

.form-flex {
    font-weight: bold;
    display: flex;
    align-items: center;
    line-height: 15px;
    font-size: 18px;
    margin-bottom: 10px;
}

.form-command-a {
    background-color: #ff7b80;
    color: #fff;
    font-weight: normal;
    font-size: 13px;
    padding: 5px 12px;
    margin-right: 15px;
    border-radius: 3px;
}

.form-command-b {
    background-color: #B1B1B1;
    color: #fff;
    font-weight: normal;
    font-size: 13px;
    padding: 5px 12px;
    margin-right: 15px;
    border-radius: 3px;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
    width: 100%;
    height: 44px;
    padding-left: 15px;
    font-size: 16px;
    color: #000000;
    box-sizing: border-box;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    font-size: 16px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
}

.form-annotation {
    font-size: 14px;
    line-height: 21px;
    margin-top: 5px;
}
.form-annotation2 {
    margin-top: 15px;
}

span.wpcf7-form-control.wpcf7-radio {
    font-size: 16px;
    font-weight: bold;
}

.form-items {
    margin-bottom: 20px;
}

.yen-right {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.wpcf7-form-control-wrap {
    flex-grow: 1;
    margin-right: 10px;
}

.consent {
    font-size: 13px;
    line-height: 20px;
}

span.wpcf7-list-item-label {
    font-size: 16px;
    letter-spacing: 0.05em;
}

input#formbtn {
    background-color: #c50d23;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    width: 320px;
    border-radius: 4px;
}

.form-button {
    text-align: center;
}

span.wpcf7-list-item.first.last {
    margin: 0;
}

.accept {
    font-weight: bold;
    margin: 20px 0 30px;
}

/*シミュレーション*/
.simulation-block {
    background-color: #fff;
    box-shadow: 0 0 13px #00000017;
    padding: 80px 30px 60px;
	margin-bottom: 40px;
}

.simulation-item {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
    border-bottom: 1px solid;
    text-align: left;
}

.border-none{
	border: none;
}

.simulation-item select#creditCard {
    padding: 10px;
    font-size: 18px;
    width: 50%;
}

.simulation-item input {
    padding: 10px;
    font-size: 18px;
    box-sizing: border-box;
    margin-right: 5px;
		flex-grow: 1;
}

.simulation-flex {
	display: flex;
	align-items: flex-end;
}

.simulation-item label, .simulation-item .simulation-flex {
	width: 50%;
}

.result {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
	margin-bottom: 40px;
}

span#applicationResult, span#transferableAmount {
    color: #c50d23;
}

span#transferableAmount {
	font-size: 27px;
}

.result span {
    width: 50%;
    text-align: left;
}

.triangle{
  width: 0;
	margin: 30px auto;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #c50d23;
}

/*よくある質問*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	font-size: 20px;
    font-weight: bold;
    padding: 20px;
    padding-right: 50px;
    text-align: left;
	display: flex;
    align-items: center;
	color: #c50d23;
	background:#fff;
    border-radius: 6px;
}
.Label::before{		/*タイトル横の矢印*/
	content: "＋";
    font-size: 25px;
    font-weight: lighter;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #c50d23;
}

.faq-icon {
    width: 40px;
    margin-right: 10px;
}

.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding: 0 20px 20px;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	content: "ー";
}

.hidden-block {
    border-top: 1px solid #D8D8D8;
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    text-align: left;
}

video {
    width: 100%;
    margin-bottom: 30px;
}

.grecaptcha-badge { visibility: hidden; }

#scrollButton {
    opacity: 0;
    position: fixed;
    bottom: 0;
    max-width: 640px;
    background-color: #fff;
    display: flex;
    padding: 20px 0;
    z-index: 10;
    box-sizing: border-box;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
}

#scrollButton.visible {
            opacity: 1; /* 表示状態 */
        }

.fixed-cta a {
    width: 48%;
    margin: 0 0.5%;
    box-shadow: 0 0 6px #0000004d;
    border-radius: 4px;
}

.image-center {
	text-align: center;
}

.fv-pc-only {
	display:none;
}

@media screen and (max-width:480px) {
	.fv-pc-only {
		display: none;
	}
	.fv-sp-only {
		display: block;
	}
	header {
		width: 100%;
		padding: 2%;
	}
#scrollButton {
		width: 100%;
		padding: 10px 0;
	}
	.fv-position {
    position: absolute;
    bottom: -11vw;
    left: 0;
}
	p {
		font-size: 14px;
		line-height:22px;
	}
	.inner {
		margin: 0 20px;
	}
	.bottom-30 {
		margin-bottom: 20px;
	}
	.bottom-40 {
		margin-bottom: 30px;
	}
	.bottom-60 {
		margin-bottom: 50px;
	}
	.bottom-100, .bottom-80 {
		margin-bottom: 60px;
	}
	.sec_02 {
    padding: 110px 0 80px;
}
	.sec_03 {
    padding: 80px 0 80px;
}
	.hr-item {
    top: -35px;
}
	.sec_04 {
    padding-top: 60px;
}
	.annotation {
		font-size: 8px;
		line-height: 9px;
	}
	.sec_05, .sec_10 {
    padding-bottom: 80px;
}
	.sec_06, .sec_07, .sec_08, .sec_09 {
    padding: 80px 0;
}
	.form-block {
    padding: 40px 20px;
}
	.form-flex {
    font-size: 14px;
}
	.form-command-a, .form-command-b {
    font-size: 10px;
    padding: 3px 10px;
    margin-right: 10px;
    border-radius: 2px;
}
	.form-annotation, .consent {
    font-size: 12px;
    line-height: 18px;
}
	input#formbtn {
    font-size: 16px;
    width: 100%;
}
	.form-items p:nth-child(6) {
    margin-bottom: 10px;
}
	.form-items p:nth-child(7) {
    margin-bottom: 20px;
    font-weight: bold;
}
	.Label {
    font-size: 13px;
    border-radius: 4px;
}
	.content {
		border-radius: 0 0 4px 4px;
	}
	.Label::before {
    font-size: 20px;
}
	.faq-icon {
    width: 28px;
}
	.hidden-block p {
    font-size: 12px;
    line-height: 18px;
}
	.item-box p {
    font-size: 13px;
		line-height: 20px;
}
	
	.item {
    font-size: 11px!important;
}
	.item-box {
    padding: 20px 0;
}
	footer {
		font-size: 8px;
	}
	.simulation-block {
    padding: 40px 20px 40px;
}
	form#cp_calculatedfieldsf_pform_1 {
    padding: 0;
}

.simulation-item select#creditCard {
    padding: 10px;
    font-size: 14px;
    border-radius: 60px;
    background-color: #e9e8ea;
    border: 1px solid #fff;
}
	div#field_1-0 label, div#field_1-1 label, div#field_1-2 label, div#field_1-5 label {
    font-size: 14px;
}
	.simulation-item {
    font-size: 14px;
		padding: 15px 0;
}
	
	.simulation-item input {
    padding: 7px;
    font-size: 16px;
    width: 50%;
}
	.triangle {
    width: 0;
    margin: 20px auto;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #c50d23;
}
	.result {
    font-size: 14px;
    margin-bottom: 30px;
}
	.image-shadow-d {
    box-shadow: 0px 7px 0 #1B9D02;
    border-radius: 6px;
}

.image-shadow-a {
    box-shadow: 0px 7px 0 #81090D;
    border-radius: 8px;
}

.image-shadow-b {
    box-shadow: 0px 7px 0 #C40E23;
    border-radius: 5px;
}

.image-shadow-c{
	box-shadow: 0 4px 0 #A40A1D;
	border-radius: 4px;
}
	span.minus {
    font-size: 16px;
}

span.plus {
    font-size: 16px;
}
span.black {
    font-size: 16px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    font-size: 16px;
}
/* サンクスページ */
	#content-wrap .col-md-9 h1 {
		font-size: 20px;
		text-align: center;
		padding: 40px 0;
	}

div#pl-989 {
    padding: 0 20px 40px;
}
}

/* PCサイズ */
@media screen and (min-width:641px) {
	.main-container {
		max-width: none;
		width:100%;
	}
	.fv-pc-only {
		display: block;
	}
	.fv-sp-only {
		display: none;
	}
	.fv-position {
		display: none;
	}
	header {
		width: 100%;
	}
	.header-left {
		width: 350px;
	}
	.header-right {
		width: 400px;
	}
	.sec_02 {
    padding: 100px 0;
	}
	.simulation-block {
    margin: 0 40px 40px;
	}
	.fixed-cta a {
    border-radius: 10px;
		width: 40%;
}
	#scrollButton {
		max-width: none;
		width: 100%;
		padding: 15px 120px;
	}
	.inner {
		width: 700px;
		margin: auto;
	}
	.sec_05 .side-70 {
		width: 45%;
	}
	.sec_05 img.bottom-40.side-70 {
		width:70%;
	}
	.hr-item {
    width: 25%;
    top: -50px;
}
	img.bottom-40.sec_05_h {
    padding: 0 180px;
    background: #c50d23;
    box-sizing: border-box;
}
}