@charset "UTF-8";



/*入力項目デザイン
-----------------------------------------------------------------------------*/
/********************/
/* テキストボックス */
/********************/
.com_form input[type="text"],
.com_form textarea {
	width: 100%;
	max-width: 100%;
	padding: .8em .6em;
	box-sizing: border-box;
	background: #fff;
	outline: none;
	border: solid 1px #d9d9d9;
	border-radius: 0px !important;
	-webkit-appearance: none;
}
.com_form textarea {
	height: 12em;
}
/*プレースホルダ*/
::placeholder{
	color: #aaa;
}

/****************/
/* ラジオボタン */
/****************/
.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] {
	/*display: none;*/
	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 2.0em;
}
.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.3em;
	height: 1.3em;
	background: #fff;
	border: solid 1px #dcdcdc;
}
.com_form input[type=radio] + label::before {
	top: .15em;
	border-radius: 50%;
}
.com_form input[type=checkbox] + label::before {
	top: .15em;
}
.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: .3em;
	top: .4em;
	margin: auto;
	width: .7em;
	height: .7em;
	background: #294c7f;
	border-radius: 50%;
}
.com_form input[type=checkbox]:checked + label::after {
	top: 0.1em;
	left: 0.3em;
	width: 1.3em;
	height: 0.8em;
	border-left: 4px solid #294c7f;
	border-bottom: 4px solid #294c7f;
	transform: rotate(-45deg);
}
.checkBtn input[type=checkbox] + label {
	padding-left: 2.5em;
}
.checkBtn input[type=checkbox] + label::before {
	width: 1.6em;
	height: 1.6em;
}
.checkBtn input[type=checkbox]:checked + label::after {
	top: 0em;
	left: 0.3em;
	width: 1.5em;
	height: 1.0em;
}
}

/****************/
/* セレクトボックス */
/****************/
.com_form select {
  /* デフォルトのスタイルを解除 */
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  /* スタイル */
  display: inline-block;
  cursor: pointer;
  width: 100%;
  padding: .2em .6em;
  border-radius: 5px;
  background-color: #fff;
  border: solid 1px #ccc;
  /* 三角マークを作る */
  background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.4) 50%),  linear-gradient(135deg, rgba(0,0,0,0.4) 50%, transparent 50%);
  background-size: 8px 8px, 8px 8px;
  background-position: calc(100% - 18px) 50%, calc(100% - 10px) 50%;
  background-repeat: no-repeat;
}
/* フォーカス時 */
.com_form select:focus {
  outline: 0;
}
/* IEでデフォルトの矢印を消す */
.com_form select::-ms-expand {
  display: none;
}
/**********/
/* ボタン */
/**********/
.com_form input[type="submit"], 
.com_form input[type="button"], 
.com_form input[type="reset"] {
	-webkit-appearance: none;
	width: 100%;
	height: 4em;
	border: none;
	border-radius: 0;
	cursor: pointer;
	color: #fff;
	font-size: 110%;
	font-weight: bold;
	letter-spacing: .3em;
	line-height: 1.2em;
	background: #a6a7a7;
	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: #294c7f;
}

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

/* Mobile
------------------------------------------*/
@media only screen and (max-width: 767px) {
/**********/
/* ボタン */
/**********/
.com_form input[type="submit"], 
.com_form input[type="button"], 
.com_form input[type="reset"] {
	padding: .6em .6em;
	font-size: 100%;
	letter-spacing: .05em;
}
.com_form input[type=radio] + label, 
.com_form input[type=checkbox] + label {
	padding: 0 0 0 1.8em;
}
}



/*テーブル
---------------------------------------------------------*/
.com_form .require {
	color: #d75f82;
}
.com_form .require_txt {
	text-align: right;
	font-size: 90%;
	letter-spacing: .15em;
	line-height: 1.4em;
	margin-bottom: 1.0em;
}

.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea{
    font-size: 16px;    
	letter-spacing: .2em;
    line-height: 1.6em;
}
.com_form .tbl_form {
	width: 100%;
	border-top: solid 1px #cccccc;
}
.com_form .tbl_form th,
.com_form .tbl_form td {
	border-bottom: solid 1px #cccccc;
	box-sizing: border-box;
	text-align: left;
	vertical-align: middle;
	font-weight: normal;
}
.com_form .tbl_form th {
	width: 25%;
	font-size: 105%;
	letter-spacing: .2em;
	padding: 3.0em 4%;
	background: rgba(235,246,251,0.8);
}
.com_form .tbl_form td {
	width: 75%;
	padding: 3.5em 4%;
}

.com_form .tbl_form th .th_memo {
	font-size: 85%;
	letter-spacing: .15em;
	line-height: 1.8em;
}
.com_form .tbl_form th .th_memo li {
	text-indent: -1.0em;
	margin-left: 1.0em;
}
.com_form .tbl_form th .th_memo li:first-child {
	margin-top: 1.0em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .require_txt {
	letter-spacing: .05em;
}

.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea{
	letter-spacing: .1em;
}
.com_form .tbl_form th {
	font-size: 100%;
	letter-spacing: .1em;
	padding: 2.0em 3%;
}
.com_form .tbl_form td {
	padding: 2.5em 3%;
}

.com_form .tbl_form th .th_memo {
	letter-spacing: .05em;
	line-height: 1.6em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .require_txt {
	letter-spacing: .05em;
	margin-bottom: .5em;
}

.com_form .tbl_form,
.com_form input,
.com_form select,
.com_form option,
.com_form textarea {
	letter-spacing: .05em;
}
.com_form .tbl_form tr,
.com_form .tbl_form th,
.com_form .tbl_form td {
	display: block;
	width: 100% !important;
	box-sizing: border-box;
}
.com_form .tbl_form th {
	padding: .8em 4%;
	letter-spacing: .05em;
	border-bottom: none;
}
.com_form .tbl_form td {
	padding: 1.5em 0 2.0em;
}

.com_form .tbl_form th .th_memo {
	font-size: 85%;
	letter-spacing: .05em;
	line-height: 1.6em;
}
.com_form .tbl_form th .th_memo li:first-child {
	margin-top: .5em;
}
}



/*Web診断フォーム
---------------------------------------------------------*/
.diagnosis_box h3 {
	color: #294c7f;
	font-size: 190%;
	letter-spacing: .15em;
	line-height: 1.4em;
	margin-bottom: .8em;
}
.diagnosis_box h4 {
	font-size: 125%;
	letter-spacing: .15em;
	line-height: 1.4em;
	padding-left: 1.5em;
	position: relative;
	margin-bottom: 1.5em;
}
.diagnosis_box h4::before {
	content: "";
	position: absolute;
	letter-spacing: normal;
	line-height: 1.0em;
	width: .9em;
	height: .9em;
	background: #00307a;
	border-radius: 50%;
	left: 0;
	top: .3em;
}
.diagnosis_box .tbl_form .img_flex {
	width: 100%;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
    justify-content: space-between;
}
.diagnosis_box .tbl_form .img_flex li {
	width: 49.5%;
	max-width: 536px;
}
.diagnosis_box .parts_list {
	display: flex;
    justify-content: space-between;
    align-items: center;
	margin-bottom: 2.0em;
}
.diagnosis_box .parts_list:last-of-type {
	margin-bottom: 0;
}
.diagnosis_box .parts_list dt {
	width: 60px;
	background: #d75f82;
	text-align: center;
	color: #fff;
	font-size: 105%;
	letter-spacing: .2em;
	line-height: 1.2em;
	padding: .5em 0;
}
.diagnosis_box .parts_list.col2 dt {background: #1980be;}
.diagnosis_box .parts_list.col3 dt {background: #44ada1;}
.diagnosis_box .parts_list.col4 dt {background: #b79952;}
.diagnosis_box .parts_list dd {
	width: calc(95% - 60px);
}
.diagnosis_box .parts_list dd ul {
	width: 100%;
	display: flex;
    justify-content: space-between;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.diagnosis_box h3 {
	letter-spacing: .1em;
	margin-bottom: .5em;
}
.diagnosis_box h4 {
	font-size: 120%;
	letter-spacing: .1em;
	margin-bottom: .8em;
}
.diagnosis_box .parts_list {
	display: block;
	margin-bottom: 1.5em;
}
.diagnosis_box .parts_list dt {
	width: 5.0em;
	padding: .3em 0;
}
.diagnosis_box .parts_list dd {
	width: 100%;
}
.diagnosis_box .parts_list dd ul {
    justify-content: flex-start;
    flex-wrap: wrap;
}
.diagnosis_box .parts_list dd ul li {
	width: 16%;
	margin-top: 1.0em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.diagnosis_box h3 {
	font-size: 180%;
	letter-spacing: .1em;
	margin-bottom: .5em;
}
.diagnosis_box h4 {
	font-size: 120%;
	letter-spacing: .05em;
	line-height: 1.4em;
	padding-left: 1.2em;
	margin-bottom: .5em;
}
.diagnosis_box .tbl_form .img_flex {
	display: block;
}
.diagnosis_box .tbl_form .img_flex li {
	width: 80%;
	margin: 0 auto 1.0em;
}
.diagnosis_box .tbl_form .img_flex li:last-child {
	margin-bottom: 0;
}
.diagnosis_box .parts_list {
	display: block;
	margin-bottom: 1.5em;
}
.diagnosis_box .parts_list dt {
	font-size: 95%;
	width: 5.0em;
	padding: .3em 0;
}
.diagnosis_box .parts_list dd {
	width: 100%;
}
.diagnosis_box .parts_list dd ul {
    flex-wrap: wrap;
}
.diagnosis_box .parts_list dd ul li {
	width: 25%;
	margin-top: 1.0em;
}
}



/*入力項目レイアウト
---------------------------------------------------------*/
.com_form table .sub_txt_l {
	margin-right: 1.0em;
}
.com_form table .sub_txt_r {
	margin-left: 1.0em;
}
.com_form table .sub_txt_t {
	margin-bottom: 1.0em;
}
.com_form table .txt_sub {
	font-size: 95%;
	letter-spacing: .15em;
	line-height: 1.6em;
	margin-top: 1.0em;
}
.com_form table .tel_memo {
	display: flex;
    flex-wrap: wrap;
}
.com_form table .tel_memo li:first-child {
	margin-right: 2.0em;
}
/*テキストボックス*/
.com_form table .text_s {
	width: 6em;
}
.com_form table .text_m {
	max-width: 15em;
	width: 100%;	
}
.com_form table.text_l {
	max-width: 490px;
	width: 100%;	
}
/*ラジオボタン・チェックボックス：ただ横に並べるだけ*/
.com_form table .radio_list {
	display: flex;
    flex-wrap: wrap;
}
.com_form table .radio_list li {
	margin: .8em 0;
	margin-right: 4%;
}
.com_form table .radio_list li:last-child {
	margin-right: 0;
}

/*テキストボックスの高さ*/
.com_form table .height_20 {
	height: 20em;
}
.com_form table .height_12{
	height: 12em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form table .txt_sub {
	letter-spacing: .05em;
}
.com_form table .radio_list li {
	margin: .5em 0;
	margin-right: 6%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form table .txt_sub {
	letter-spacing: .05em;
}
/*テキストボックス*/
.com_form table .text_l {
	max-width: 100%;	
}
/*ラジオボタン・チェックボックス：ただ横に並べるだけ*/
.com_form table .radio_list li {
	margin: .5em 0;
	margin-right: 6%;
}
}



/* アコーディオン
----------------------------------------------------------------------*/
.com_form .mobile_attention,
.com_form .privacy {
	background: #f7f7f7;
}
.com_form .open_trigger {
	color: #294c7f;
	font-weight: bold;
	letter-spacing: .15em;
	line-height: 1.4em;
	cursor: pointer;
	padding: 2.0em 0;
	text-align: center;
}
.com_form .open_trigger > span {
	display: inline-block;
    position: relative;
	padding-right: 1.5em;
}
.com_form .open_trigger span.round_btn {
	display: block;
	position: absolute;
	width: 1.0em;
	height: 1.0em;
	background: #294c7f;
	border-radius: 50%;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
/* 二本の横棒を作成する */
.com_form .open_trigger span.round_btn::before,
.com_form .open_trigger span.round_btn::after{
	content: '';
    display: block;
    width: .5em;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
/* 2本の横棒のうち一本は縦棒にする */
.com_form .open_trigger span.round_btn::after {
	transform: rotate(90deg);
	transition: 0.5s;
}
.com_form .open_trigger.active .round_btn::after {
	transform: rotate(0);
}
.com_form .open_box {
	width: 100%;
	box-sizing: border-box;
	padding: 0 6% 40px;
	text-align: left;
	font-size: 90%;
	letter-spacing: .1em;
	line-height: 1.8em;
	display: none;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .open_box {
	letter-spacing: .05em;
}
}

/* Mobile
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .open_trigger {
	letter-spacing: .1em;
	padding: 1.5em 0;
}
.com_form .open_box {
	padding: 0 6% 6%;
	letter-spacing: .05em;
}
}



/* ドメイン設定
-----------------------------------------------------------------------*/
.com_form .mobile_attention {
	margin-top: 60px;
}
.com_form .mobile_attention ul {
	margin-top: 1.0em;
}
.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 #666;
	border-right: 1px solid #666;
}
.com_form .mobile_attention a:hover {
	text-decoration: underline;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .mobile_attention {
	margin-top: 6%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .mobile_attention {
	margin-top: 6%;
	max-width: 100%;
}
}



/* 個人情報
--------------------------------------------------------------------*/
.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 dl:first-child {
	padding-right: 3%;
	border-right: solid 1px #cbcbcb;
}
.com_form .privacy .privacy_detail dt {
	color: #1980be;
	font-size: 110%;
	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;
}

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

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .privacy .privacy_detail {
	margin-top: 0;
	display: block;
}
.com_form .privacy .privacy_detail dl {
	width: 100%;
	margin-top: 1.5em;
}
.com_form .privacy .privacy_detail dl:first-child {
	padding-right: 0;
	border-right: none;
}
}



/* ボタンレイアウト
--------------------------------------------------------------------*/
.com_form .submit_box {
	margin-top: 80px;
	text-align: center;
	letter-spacing: .1em;
	line-height: 2.0em;
}
.com_form .submit_box ul {
	width: 90%;
	max-width: 830px;
	margin: 80px auto 0;
	display: flex;
    justify-content: space-between;
}
.com_form .submit_box ul li {
	width: 48%;
}
.com_form .submit_box .btn_size_change li {
	width: 60%;
}
.com_form .submit_box .btn_size_change li:nth-child(2){
    width: 38%;
}

.submit_box_attention p{
    padding-left: 1.1em;
    text-indent: -1.1em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.com_form .submit_box {
	margin-top: 6%;
}
.com_form .submit_box ul {
	margin-top: 6%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.com_form .submit_box {
	margin-top: 10%;
	text-align: left;
	letter-spacing: .05em;
	line-height: 1.8em;
}
.com_form .submit_box ul {
	width: 90%;
	max-width: 100%;
	margin: 8% auto 0;
	display: block;
}
.com_form .submit_box ul li {
	width: 100% !important;
	margin-top: 10px;
}
}



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

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) { 
}



/* 完了ページ
---------------------------------------------------------*/

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

/* Mobile (Portrait) 
------------------------------------------*/ 
@media only screen and (max-width: 767px) {
}