@charset "UTF-8";

.com_form {
	position: relative;
	z-index: 0;
}


/*テーブル
---------------------------------------------------------*/
.com_form .require_txt {/*必須項目は必ずご記入ください*/
	max-width: 1220px;
	margin: 0 auto .8em;
	font-size: 95%;
	line-height: 1.8em;
	text-align: right;
}
.com_form .tbl_form {
	max-width: 1220px;
	margin: 0 auto;
	width: 100%;
	background-color: #fff;
}
.com_form .tbl_form tr:nth-child(odd){
	background-color: #ddf3f9;
}
.com_form .tbl_form th,
.com_form .tbl_form td {
	box-sizing: border-box;
	text-align: left;
	font-weight: normal;
	vertical-align: top;
}
.com_form .tbl_form th {
	width: 32%;
	vertical-align: top;
	font-size:110%;
	padding: 3rem 3%;
	box-sizing: border-box;
}
.com_form .tbl_form th p {
	font-weight: bold;
	line-height: 1.5em;
	max-width: 230px;
	margin-left: auto;
	margin-right: 0;
	box-sizing: border-box;
	display: block;
	position: relative;
}
.com_form .tbl_form th p span{
	display: inline-block;
	vertical-align: middle;
}
.com_form .tbl_form th p span.ast{
	width: 3.5em;
	text-align: center;
	background: #1baed7;
	color: #fff;
	padding: .01em 0;
	box-sizing: border-box;
	border-radius: 5px;
	font-size: 75%;
	margin-right: .8em;
	vertical-align: middle;
}
.com_form .tbl_form td {
	vertical-align: middle;
	padding: 2.5rem 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .require_txt {/*必須項目は必ずご記入ください*/
	margin: 0 auto .3em;
}
.com_form .tbl_form th {
	width: 30%;
	font-size:100%;
	padding: 2rem 3%;
}
.com_form .tbl_form th p span.ast{
	margin-right: .5em;
}
.com_form .tbl_form td {
	padding: 1.5rem 0;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .require_txt {/*必須項目は必ずご記入ください*/
	margin: 0 auto .3em;
}
.com_form .tbl_form {
	display: block;
}
.com_form .tbl_form th,
.com_form .tbl_form td {
	display: block;
}
.com_form .tbl_form th {
	width: 100%;
	padding: 2rem 4% .5em;
	font-size:100%;
}
.com_form .tbl_form th p {
	max-width: 100%;
}
.com_form .tbl_form th p span.ast{
	width: 3.5em;
	padding: 0;
	margin-right: .5em;
}
.com_form .tbl_form td {
	padding: 0 4% 2.5rem;
}
}








/*入力項目デザイン
-----------------------------------------------------------------------------*/
/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form textarea{
	font-size: 16px;
	width: 100%;
	max-width: 100%;
	padding: .8em;
	box-sizing: border-box;
	background: #fff;
	outline: none;
	border:1px solid #d9d7d4;
	border-radius: 5px;
}
.com_form select{
	font-size: 16px;
	width: 100%;
	max-width: 300px;
	padding: .8em;
	box-sizing: border-box;
	appearance: none!important;
	background: #fff url("../images/select_arrow@2x.png") no-repeat 96% center!important;
	background-size: 0.5625em 1.3125em!important;
	color: #c6c3be;
	border:1px solid #d9d7d4;
	border-radius: 5px;
}
.com_form .date_input {
	background: #fff url("../images/select_arrow@2x.png") no-repeat 96% center!important;
	background-size: 0.5625em 1.3125em!important;
}
.com_form textarea {
	height: 16.4em;
}
.com_form select input{
  color:black!important;
  display:block!important;
}
.com_form select input::placeholder{
  color:gray!important;
}
/*プレースホルダ*/
::placeholder{
	color:#c6c3be;
}

/****************/
/* ラジオボタン */
/****************/
.com_form input[type=radio], .com_form input[type=checkbox] {
	display: inline-block;
}
.com_form input[type=radio] + label, 
.com_form input[type=checkbox] + label {
	position: relative;
	display: inline-block;
}
@media (min-width: 1px) {
.com_form input[type=radio], .com_form input[type=checkbox] {
	position: absolute;		/* 上に別の要素が乗るようにする */
	z-index: -1;			/* 最背面にする */
	pointer-events: none;	/* クリック無効 */
	visibility: hidden;		/* 非表示 */
	margin: 0;
}
.com_form input[type=radio] + label, 
.com_form input[type=checkbox] + label {
	padding: 0 0 0 2em;
}
.com_form input[type=radio] + label::before, 
.com_form input[type=checkbox] + label::before {
	content: "";
	position: absolute;
	left: 0;
	box-sizing: border-box;
	display: block;
	width: 1.4em;
	height: 1.4em;
	background: #fff;
	border:1px solid #d9d7d4;
}
.com_form input[type=radio] + label::before {
	top: .3em;
	border-radius: 50%;
}
.com_form input[type=checkbox] + label::before {
	top: .5em;
    border-radius: 3px!important;
}
#checkBtn + label::before {
	top: .1em;
	left: -.3em;
}
.com_form input[type=radio]:checked + label::after, 
.com_form input[type=checkbox]:checked + label::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
	display: block;
}
.com_form input[type=radio]:checked + label::after {
	left: .33em;
	top: .65em;
	margin: auto;
	width: .7em;
	height: .7em;
	background: #24b0d1;
	border-radius: 50%;
}
.com_form input[type=checkbox]:checked + label::after {
	top: .2em;
	left: 0em;
	width: 1.3em;
	height: 0.8em;
	border-left: 4px solid #1baed7;
	border-bottom: 4px solid #1baed7;
	transform: rotate(-45deg);
}
#checkBtn:checked + label::after {
	top: 0;
}
}

/**********/
/* ボタン */
/**********/
.com_form input[type="submit"], 
.com_form input[type="button"], 
.com_form input[type="reset"] {
	font-size: 125%;
	color: #fff;
	font-weight: bold;
	letter-spacing: .2em;
	line-height: 1.4em;
	-webkit-appearance: none;
	width: 100%;
	height: 3.5em;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	background-color: #1baed7;
	opacity: 1.0;
	transition: all 1.0s;
}
.com_form input[type="submit"]:hover, 
.com_form input[type="button"]:hover, 
.com_form input[type="reset"]:hover {
	transition: all 0.6s;
	opacity: 0.8;
}
.com_form input[type="submit"] {
	background-color: #1baed7;
	font-weight: bold;
}
.com_form input[type="button"],
.com_form input[type="reset"] {
	background-color: #acb9b9;
}
.com_form .no_arrow input[type="submit"], 
.com_form .no_arrow input[type="button"], 
.com_form .no_arrow input[type="reset"] {
	background-image: none;
}

/**********/
/* チェックを入れて送信 */
/**********/ 
/* 送信ボタン - 押せないとき */
.com_form input[type="submit"][disabled] {
	opacity: 0.6 !important;
	background-color: #ccc;
	cursor: default;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) { 
/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form textarea{
	padding: .6em;
}
.com_form select{
	padding: .6em;
}
.com_form textarea {
	height: 13em;
}

/****************/
/* ラジオボタン */
/****************/
.com_form input[type=radio], .com_form input[type=checkbox] {
	display: inline-block;
}
.com_form input[type=radio] + label, 
.com_form input[type=checkbox] + label {
	position: relative;
	display: inline-block;
}
@media (min-width: 1px) {
.com_form input[type=radio] + label, 
.com_form input[type=checkbox] + label {
	padding: 0 0 0 1.8em;
}
.com_form input[type=radio] + label::before {
	top: .1em;
}
.com_form input[type=radio]:checked + label::after {
	top: .45em;
}
}
}

/* Mobile
------------------------------------------*/
@media only screen and (max-width: 767px) {
/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form textarea{
	font-size: 4vw;
}
.com_form select{
	font-size: 4vw;
	max-width: 100%;
}
.com_form textarea {
	height: 20em;
}

/****************/
/* ラジオボタン */
/****************/
.com_form input[type=radio] + label, 
.com_form input[type=checkbox] + label {
	padding: 0 0 0 1.7em;
}
.com_form input[type=radio] + label::before {
	top: .1em;
}
#checkBtn + label::before {
}
.com_form input[type=radio]:checked + label::after {
	top: .45em;
}
}

/**********/
/* ボタン */
/**********/
.com_form input[type="submit"], 
.com_form input[type="button"], 
.com_form input[type="reset"] {
	font-size: 110%;
	letter-spacing: .1em;
}
}









/*入力項目レイアウト
---------------------------------------------------------*/
.com_form .tbl_form .valid_box > div{
    margin-bottom: .5em;
}
.com_form .tbl_form .valid_box > div:last-child{
    margin-bottom: 0;
}
.com_form .tbl_form .text_max {
	width: 95%;
	max-width: 660px;
}
.com_form .tbl_form .post_code1,
.com_form .tbl_form .post_code2{
	max-width: calc(50% - 4em);
	width:11.125em;
}
.com_form .tbl_form .address_txt{
	margin-top: 1em;
}
.com_form .tbl_form .age_flex{
	display: flex;
    flex-wrap: wrap;
}
.com_form .tbl_form .age_flex div {
	margin: .2em 1.5em;
	margin-left: 0;
}
.com_form .tbl_form .age_flex div:last-child {
	margin-right: 0;
}
.com_form .tbl_form .age_flex div select{
	width: 10em;
}

/*ラジオボタン・チェックボックス：ただ横に並べるだけ*/
.com_form .tbl_form .radio_list {
	display: flex;
    flex-wrap: wrap;
}
.com_form .tbl_form .radio_list li {
	margin: .2em 0;
	margin-right: 6%;
}
.com_form .tbl_form .radio_list li:last-child {
	margin-right: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .tbl_form .valid_box > div{
    margin-bottom: 0;
}
.com_form .tbl_form .age_flex div {
	margin: .2em .5em;
}
.com_form .tbl_form .age_flex div select{
	width: 6.5em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .tbl_form .text_max {
	width: 100%;
	max-width: 100%;
}
.com_form .tbl_form .post_code1,
.com_form .tbl_form .post_code2{
	max-width: calc(50% - 2em);
	width:15em;
}
.com_form .tbl_form .age_flex{
	display: block;
}
.com_form .tbl_form .age_flex div {
	margin: .8em　0;
}
}







/* アコーディオン
----------------------------------------------------------------------*/
.com_form .open_area {
	text-align: center;
}
.com_form .open_trigger {
	line-height: 1.5em;
	cursor: pointer;
}
.com_form .open_trigger span{
	padding-right: 1.7em;
	position: relative;
}
.com_form .open_trigger span::before{
	position: absolute;
	content: "";
	background: url("../images/icon_open.svg")no-repeat right top;
	background-size: 100% 100%;
	width: 1.3em;
	height: 1.3em;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.com_form .open_trigger.active span::before{
	background-image: url("../images/icon_close.svg");
}
.com_form .open_box {
	font-size: 90%;
	line-height: 1.8em;
	text-align: left;
	display: none;
	padding-top: 1.5em;
}

/* Mobile
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .open_trigger span{
	display: inline-block;
	padding-right: 2.5em;
}
}










/* ドメイン設定
-----------------------------------------------------------------------*/
.com_form .mobile_attention {
	margin-top: 1.3em;
	background: none;
	text-align: left;
}
.com_form .mobile_attention .open_trigger span{
	text-decoration: underline;
	font-weight: bold;
	color: #1baed7;
}
.com_form .mobile_attention > dd {
	width: 100%;
	padding-top:1em;
	padding-bottom: 0.4em;
}
.com_form .mobile_attention ul {
	margin-top: 0.5em;
}
.com_form .mobile_attention li {
	margin-top: 5px;
	padding-left: 15px;
	float: left;
	margin-right: 20px;
	position: relative;
	line-height: 1.2em;
}
.com_form .mobile_attention li::before {
	position: absolute;
	left: 0;
	top: 55%;
    transform: translateY(-50%) rotate(45deg);
	content: "";
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
}
.com_form .mobile_attention a {
	text-decoration: underline;
}
.com_form .mobile_attention a:hover {
	text-decoration: none;
}






/* 個人情報
--------------------------------------------------------------------*/
.com_form .privacy {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid #1baed7;
	border-bottom: 1px solid #1baed7;
	padding: 2.5em 0;
	max-width: 1220px;
	margin: 0 auto;
}
.com_form .privacy .open_trigger{
	font-size:110%;
	text-decoration: underline;
	font-weight: bold;
	color: #1baed7;
}
.com_form .privacy > dl {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.com_form .privacy .privacy_detail {
	margin-top: 1.5em;
	display: flex;
    justify-content: space-between;
}
.com_form .privacy .privacy_detail dl {
	width: 47%;
}
.com_form .privacy .privacy_detail dt {
	font-size: 120%;
	font-weight: bold;
	letter-spacing: .15em;
	line-height: 1.2em;
	margin-bottom: .5em;
}
.com_form .privacy .privacy_detail li {
	text-indent: -1.7em;
	margin-left: 1.7em;
	line-height: 1.6em;
	margin-bottom: .5em;
}
.com_form .privacy .privacy_detail li:last-child {
	margin-bottom: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .privacy {
	padding: 2em 0;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .privacy {
	padding: 1.5em 0 1.3em;
}
.com_form .privacy .privacy_detail {
	display: block;
}
.com_form .privacy .privacy_detail dl {
	width: 100%;
	margin-top: 4%;
}
.com_form .privacy .privacy_detail dt {
	font-size: 110%;
	letter-spacing: .05em;
}
}







/* ボタンレイアウト
--------------------------------------------------------------------*/
.com_form .submit_box {
	text-align: center;
}
.com_form .submit_box .txt{
	margin-top: 80px;
}
.com_form .submit_box .txt span {
	font-size: 95%;
	line-height: 1.8em;
	display: block;
	margin-top: .5em;
}
.com_form .submit_box .checkBtn{
	font-size: 125%;
	letter-spacing: 0.15em;
	line-height: 1.5em;
	font-weight: bold;
}
.com_form .submit_box .btn_list {
	width: 70%;
	max-width: 530px;
	margin: 40px auto 0;
	display: flex;
    justify-content: space-between;
}
.com_form .submit_box .btn_list li {
	width: 49%;
}
.com_form .submit_box .btn_size_change li.btn_large {
	width: 59.3%;
}
.com_form .submit_box .btn_size_change li.btn_small {
    width: 38.9%;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .submit_box .txt{
	margin-top: 5%;
}
.com_form .submit_box .checkBtn{
	font-size: 110%;
}
.com_form .submit_box .btn_list {
	margin: 5% auto 0;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .submit_box .txt{
	margin-top: 8%;
	text-align: left;
}
.com_form .submit_box .checkBtn{
	font-size: 95%;
	letter-spacing: 0.05em;
}
.com_form .submit_box .btn_list {
	width: 100%;
	max-width:100%;
	margin: 4% auto 0;
}
}







/* 確認ページ
---------------------------------------------------------*/

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) { 
.kakunin .tbl_form tbody,
.kakunin .tbl_form tr{
	display: block!important;
	width: 100%!important;
  max-width: none;
}
}