﻿@charset "UTF-8";

body{
	-webkit-text-size-adjust: 100%;
	color: #000;
	font-size: 16px;
	font-family:  "メイリオ", Meiryo, Tahoma, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
	background-color: #1a2234;
	padding: 115px 0;
}

*{
	box-sizing: border-box;
}
#wrapper{
	background-color: #fff;
	width: 800px;
	margin: 0 auto;
	padding: 49px 25px 68px;
}

.d-none {
	display: none !important;
}
/* 見出し
---------------------------------------- */

.pgTitle{
	text-align: center;
}
.pgTitle span{
	display: inline-block;
	position: relative;
	color: #fff;
	font-size: 18px;
	font-family:  "メイリオ", Meiryo, Tahoma, Verdana, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
	font-weight: 800;
	line-height: 1;
	border-radius: 19px;
	background-color: #2b578d;
	margin-bottom: 34px;
	padding: 10px 28px;
}
.pgTitle span:after{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,100%);

	width: 0;
	height: 0;
	border-style: solid;
	border-width: 17px 6.5px 0 6.5px;
	border-color: #2b578d transparent transparent transparent;

}
.secTitle{
	text-align: center;
	margin-bottom: 41px;
}


.container{
	border: 1px solid #21470c;
	border-radius: 34px;
	padding: 52px 0 68px;
}

.intro{
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	padding: 0 58px;
}

/* タブ
----------------------------------------- */

.tab{
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	padding: 0 58px;
}
.tabItem a{
	cursor: pointer;
	display: block;
	width: 300px;
	height: 50px;
}
.tabItem--sakura{
	background: url('../images/btn_sakura.png?230928') 0 0 no-repeat;
	background-size: contain;
}
.tabItem--sakura.on{
	background: url('../images/btn_sakura_check.png?230928') 0 0 no-repeat;
	background-size: contain;
}

.tabItem--sarahturf{
	background: url('../images/btn_sarahturf.png') 0 0 no-repeat;
	background-size: contain;
}
.tabItem--sarahturf.on{
	background: url('../images/btn_sarahturf_check.png') 0 0 no-repeat;
	background-size: contain;
}

.tabItem--deck{
	background: url('../images/btn_deck.png?230928') 0 0 no-repeat;
	background-size: contain;
}
.tabItem--deck.on{
	background: url('../images/btn_deck_check.png?230928') 0 0 no-repeat;
	background-size: contain;
}


/* BOX
------------------------------------- */

.mailformBox{
	display: flex;
    align-items: flex-start;
	flex-wrap: wrap;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}
.mailformBox--textarea{
	margin-top: 60px;
}

.mailformBox--textarea dd {
	width: 100%;
}

.mailformBoxChild{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	letter-spacing: 0.05em;
	max-width: 466px;
	margin-bottom: 20px;
}
.mailformBoxChild dt{
	font-weight: 500;
	word-break: keep-all;
	min-width: 5.25em;
	margin-right: 14px;
	padding: 7px 0;
}
.mailformBoxChild:last-child{
	margin-bottom: 0;
}

/* TITLE
------------------------------------- */
.mailform_title{
	position: relative;
	font-weight: bold;
	width: 208px;
	padding: 7px 0 7px 50px;
}
.mailform_title--required:after{
	content: '必須';
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	border-radius: 4px;
	background-color: #d81212;
	padding: 3px 7.5px;
}
.mailform_title--fullsize{
	width: 100%;
	margin-bottom: 15px;
	padding-left: 0;
}

.mailform_title + dd{

}

/* TYPE TEXT
------------------------------------- */
.mailform dd input[type="text"],
.mailform dd select{
	font-size: 14px;
	line-height: 1.3;
	border: 1px solid #535353;
	width: 275px;
	padding: 5px 0 5px 9px;
}

.mailform dd select{
	line-height: 28px;
	width: 100%;
}
.mailform dd .radioBox label {
	display: inline-block;
	margin-bottom: 0.5em;
	border: none;
	width: auto;
}


/* TEXT AREA
------------------------------------- */
.mailform dd textarea{
	resize: vertical;
	outline: none;
	font-size: 1em;
	line-height: 1.3;
	border: 1px solid #333;
	width: 100%;
	height: 168px;
	padding: 0.5em;
}

.form-fieldgroup .textarea {
	width: 100%;
}


/* RADIO CHECK
------------------------------------- */
.mailform dd input[type="radio"],
.mailform dd input[type="checkbox"]{
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    -ms-appearance: checkbox; 
    -o-appearance: checkbox; 
	appearance: checkbox; 
}
.mailform dd input[type="radio"]{
	vertical-align: middle;
	margin: 0 8px 0 0;
}
.mailform dd input[type="radio"] + span{
	display: inline-block;
	color: #333;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}
.mailform dd input[type="radio"]:checked + span,
.mailform dd input[type="checkbox"]:checked + span{
	color: #d97515;
}

.radioBox{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 30px;
	margin-top: 0.5em;
}
.checkBox {
	display: flex;
	flex-wrap: wrap;
	max-width: 338px;
}
#checkBox-wishprod {
	display: inline-block;
}
#checkBox-wishprod label {
	display: inline-flex;
	flex-wrap: nowrap;
	box-sizing: border-box;
	padding: 0.5em;
	align-items: center;
}
.checkBox--fullsize{
	max-width: 100%;
}
.checkBox.checkBox--w50 {
	min-width: 50%;	
}
#wrapper .checkBox label{
	display: inline-block;
	padding: 0.25em 0.5em;
	line-height: 1.9;
	margin-bottom: 0.5em;
	width: auto;
	border: none;
}
.radioBox label {
	padding: 0.5em 1em;
}
.mailform input[type="text"]:disabled,
.mailform textarea:disabled {
	background-color: #EEE;
}

/* SIZE
------------------------------------- */

.sizeBox{
	display: flex;
	align-items: center;
}
.mailform dd .sizeBoxText input[type="text"]{
	width: 90px;	
	padding: 3.5px 3.5px 3.5px 9px;
}
.caution{
	font-size: 12.65px;
	font-weight: 500;
	margin-top: 8px;
}



/* FOCUS
------------------------------------- */
.mailform dd input[type="text"]:focus,
.mailform dd textarea:focus{
  border: 1px solid #d87311;
  outline: 0;
}

/* SUBMIT
------------------------------------- */
.submit_area{
	text-align: center;
	margin: 60px auto 0;
	padding-right: 43px;
}
#wrapper .confirmation_btn{
	cursor: pointer;
	overflow: hidden;
	color: transparent;
	box-shadow: none;
	border: none;
	background: url('https://kkbgreen.itembox.design/item/form5/assets/img/btn_submit.png') 0 0 no-repeat;
	background-size: contain;
	width: 344px;
	height: 60px;
	margin: auto;
}

.formContainer{
	padding: 0 15px 0 58px;
}

.formContainer:nth-of-type(n+2){
	display: none;
}



/* 確認画面
------------------------------------------------ */
.verificationTitle{
	text-align: center;
}



@media screen and (min-width: 640px){
	body{
		min-width: 860px;
	}
}

@media screen and (max-width: 640px){
	body{
		font-size: 3.46vw;
		padding: 40px 0;
	}
	#wrapper{
		overflow: hidden;
		width: 98%;
		padding: 40px 10px;
	}
	.container{
		padding: 40px 0;
	}
	.pgTitle span{
		font-size: 4vw;
		line-height: 1.3;
		padding: 3vw 3vw;
	}
	
	.secTitle{
		width: 60%;
		margin: 0 auto 6vw;
	}
	.secTitle img{
		width: 100%;
	}
	
	.intro,
	.tab,
	.formContainer{
		padding: 0 2vw;
	}
	.tab{
		flex-wrap: wrap;
	}
	.tabItem{
		width: 48%;
		height: 11vw;
		margin-bottom: 10px;
	}
	
	.mailform_title--required:after{
		font-size: 3.5vw;
	}
	
	.mailformBox{
		border-bottom: 1px dashed #194003;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.mailform_title{
		display: flex;
		align-items: center;
		margin-bottom: 5px;
		padding-left: 0;
	}
	.mailform_title--required:after{
		order: -1;
		position: static;
		transform: translateY(0);
		margin-right: 5px;
	}
	
	.mailform dd{
		width: 100%;
	}
	.mailform dd textarea,
	.mailform dd input[type="text"],
	.mailform dd select{
		width: 100%;
	}
	
	
	.mailformBoxChild dt{
		width: 100%;
	}
	.mailformBox--textarea{
		margin-top: 0;
	}
	.submit_area{
		width: 80%;
		margin: 0 auto;
		padding: 0;
	}
	.confirmation_btn{
		width: 100%;
	}
	.mailform dd input[type="radio"] + span{
		font-size: 3.46vw;
	}
	
}


/* add */
.multiple_text {
	display: block;
	font-size: 90%;
	margin-top: 10px;
	margin-left: 10px;
	color: #999;
}

#desired_product dt {
	width: 100%;
}
#desired_product dd {
	width: 100%;
}
#desired_product .mailformBoxChild {
	max-width: inherit;
}
#desired_product .mailformBoxChild .checkBox {
	max-width: inherit;
}



.mailformBox .mailform dd .radioBox label {
	border: none;
	width: auto;
}

.mailformBox .radioBox.row {
	flex-wrap: nowrap;
}

#wrapper input[type="text"] {
	font-weight: normal;
}
