/*================================共通cssですがサイトによって調整してください================================

*****注意事項*****
※レスポンシブ対応してありますが、各ページによって適宜修正・変更は行ってください
※不具合があった場合、伊藤までお知らせください
※修正・追加・入力するとスタイルが崩れる場合があるので、クラス名を追加するなどの対応をして修正を行ってください
*****************

【共通設定】
【ページ記事】page_block.php
【スクロール画像】slide_block.php→スライドpc・sp切り替え
【お問合わせ】contact2_block.php　※お問合わせのボタンの設定は各自で設定してください。『 /*ボタン設定 』で検索してください
【個人情報保護方針】pp_block.php
【サイトポリシー】site_policy_block.php
【サイトマップ】site_map_block.php
【フッター】footer_block.php
【フッターメニュー】foot_menu_block.php
【コピーライト】copyright_block.php
==========================================================================================================*/

/*共通設定
---------------------------------------------------------------------------*/
.flex{display: flex;}

/*pc・sp切り替え
----------------------*/
.smart-only {
    display: block;
}
.pc-only {
    display: none;
}
@media screen and (min-width:768px){
    .pc-only {
        display: block!important;
    }
    .smart-only {
        display: none!important;
    }
}

/*改行設定
----------------------*/
/* スマホ用<br> */
@media screen and (max-width:767px) {
	.br-sp { display: block; }
	.br-tb { display: none; }
	.br-pc { display: none; }
}
/* tablet 縦用<br> */
@media only screen and (min-width:768px) and (max-width:1023px) {
	.br-sp { display: none; }
	.br-tb { display: block; }
	.br-pc { display: none; }
}
/* pc用<br> */
@media screen and (min-width:1024px) {
	.br-sp { display: none; }
	.br-tb { display: none; }
	.br-pc { display: block; }
}

/*ページ記事 page_block.php
---------------------------------------------------------------------------*/
.pageContentsWrap{
    padding: 1% 2%;
}
.img_box,
.img_box2{
	width: 90%;
    margin:0 auto;
}
.img_all_box{
	display:block;
	width:100%;
	margin:auto;
}
.text_contencts {
    width: 100%;
	margin-top: 1rem;
}
.page_text,
.page_text2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items: flex-start;
	column-gap: 30px;
}
.page_all_text{
	display:block;
	width:100%;
}
@media screen and (min-width:1280px){
	.text_contencts {
		width: calc((100% - 30px* 2) / 2);
		margin-top: 0;
	}
	.page_text {
		flex-direction: row;
	}
	.page_text2 {
		flex-direction: row-reverse;
	}
	.img_box,
	.img_box2 {
		width: calc((100% - 30px * 2) /2);
	}
}

/*スライドpc・sp切り替え slide_block.php
---------------------------------------------------------------------------*/
.smart-slide_only {
    display: block;
}
.pc-slide_only {
    display: none;
}
@media screen and (min-width:1024px){
    .pc-slide_only {
        display: block!important;
    }
    .smart-slide_only {
        display: none!important;
    }
}

/*お問合わせ contact2_block.php
---------------------------------------------------------------------------*/
a .tel {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
.contact_form .inquiry_form {
    width: 90%;
    margin: 0 auto;
}
.contact_telArea {
    margin-top: 1em;
}
.contact_form .contact_tel_fax {
    margin-bottom: 1em;
}
.contact_form .contact_tel_fax p.txt {
	margin-bottom: 1em;
}
.contact_form .contact_tel_fax .tel {
	font-size: 130%;
    font-weight: bold;
}
.contact_form .contact_item {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #CCCCCC;
	padding: 20px 0;
}
.contact_form .contact_article {
    font-weight: bold;
    text-align: left;
    padding: 5px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    flex-wrap: wrap;
}
.contact_form span.memo {
    font-weight: normal;
    width: 100%;
}
.contact_form .contact_input_area {
    width: 100%;
    text-align: left;
}
.contact_form .contact_input_area .wrap {
	display: flex;
    flex-direction: column;/*ishizawa追記*/
}
.contact_form .contact_input_area span{
    font-size: 90%;
}
.contact_form .contact_article_comments {
	text-align: left;
	font-size: 0.8em;
	padding: 1em 5em;
	clear: both;
}
.contact_form .text_area {
    padding: 2em 0 1em;
}
.contact_form select {
    margin-right: 1rem;
    line-height: 30px;
    outline: none;
    background: #fff;
    padding: 0.5rem;
    border: solid 1px #ccc;
	border-radius: 3px;
}
::placeholder {
	color: #acacac;
}
label {
	white-space: nowrap;
	width: 50%;
}

/*記入枠の色*/
.contact_form .contact_input_area input ,
.contact_form .contact_input_area textarea {
	font-size: 1em;
	color: #666;
	background-color:#fff;
	border: solid 1px #ccc;
	border-radius: 3px;
    box-sizing: border-box;
	font-family: auto;
}
.contact_form .contact_input_area input.input_space_03 {
    width: 50%;
    height: 2em;
    padding: 3px 10px;
}
/*必須表示*/
.contact_form.need {
	padding: 0.1em 0.5em;
    font-size: 0.7em;
    color: #FFFFFF;
    background-color: #F00;
    margin: 0 1em 0 0;
    border-radius: 4px;
}
.contact_form .contact_input_area .input_space_01,
.contact_form .contact_input_area .input_space_03 {
    width: 100%;
    height: 2em;
    padding: 3px 10px;
}
.contact_form .contact_input_area .input_space_02 {
	width:100%;
    padding: 3px 10px;
}

@media screen and (min-width:768px){
    .contact_form .inquiry_form {
        width: 100%;
    }
    .contact_form .contact_article {
        width: 40%;
    }
    .contact_form .contact_input_area {
		width: 55%;
	}
	.contact_form .contact_input_area .input_space_03 {
		width: 70%;
	}
}

/*ボタン設定=======各自で設定してください*/
.contact_form  .btn{
    display: block;
    cursor: pointer;
}
.contact_form  input.btn.btnGY {
    background: #999;
    border: none;
    color: #fff;
    width: auto;
}

/*入力確認ページのボタン*/
.contact_form .btnArea_submit2 {
    clear: both;
    padding-top: 2em;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.contact_form .btn {
	margin: 1.5em;
}

/*内容確認*/
dl.contact_confirm {
	display: flex;
	flex-flow: column;
	width: 100%;
    text-align: left;
    padding: 2em 0 0;
}
.contact_confirm dt {
	flex-basis: 35%;
    padding: 10px 20px 0;
	border-bottom: none;
    font-weight: bold;
}
.contact_confirm dd {
	flex-basis: 50%;
    padding: 10px 20px;
	border-bottom: 1px solid #ccc;
}

@media screen and (min-width:768px){
    dl.contact_confirm{
		flex-flow: row wrap;
	}
    .contact_confirm dt {
        border-bottom: 1px solid #ccc;
        padding: 20px;
    }
    .contact_confirm dd {
        padding: 20px;
    }
}

/*個人情報保護方針 pp_block.php
---------------------------------------------------------------------------*/
dl.pp_list{
	display: flex;
	flex-flow: column;
	width: 100%;
}
.pp_list dt{
	font-weight: bold;
	font-size: 1.1em;
}
.pp_list dt,
.pp_list dd {
	flex-basis: 100%;
}
.pp_list dd {
	padding: 0 0 20px;
	border-bottom: 1px solid #ccc;
}
.pp_list dt {
	 padding: 20px 0 0;
}
.pp h3{
	padding: 0 0 2% 0;
}

/*サイトポリシー site_policy_block.php
---------------------------------------------------------------------------*/
dl.site_porlicy_list {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.site_porlicy_list dt{
	font-weight: bold;
	font-size: 1.1em;
}
.site_porlicy_list dt,
.site_porlicy_list dd {
	flex-basis: 100%;
}
.site_porlicy_list dd {
	padding: 0 0 20px;
	border-bottom: 1px solid #ccc;
}
.site_porlicy_list dt {
	 padding: 20px 0 0;
}

/*サイトマップ site_map_block.php
---------------------------------------------------------------------------*/
dl.sitemap_list {
	display: flex;
	flex-flow: column;
	width: 100%;
}
.sitemap_list dt {
    padding: 10px 20px 0;
	border-bottom: none;
    font-weight: bold;
}
.sitemap_list dt .sm_list {
    position: relative;
    padding-left: 15px;
    color: #666;
    text-decoration: none;
}
.sitemap_list dt .sm_list:before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #679b87;
}
.sitemap_list dt .sm_clist {
    position: relative;
    padding-left: 15px;
}
.sitemap_list dt .sm_clist:before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 2px solid #93c9ff;
    border-right: 2px solid #93c9ff;
}
.sitemap_list dd {
    padding: 10px 20px;
	border-bottom: 1px solid #ccc;
}

@media screen and (min-width:768px){
    dl.sitemap_list{
		flex-flow: row wrap;
	}
    .sitemap_list dt {
		width: 25%;
        border-bottom: 1px solid #ccc;
        padding: 20px;
    }
    .sitemap_list dd {
		width: 55%;
        padding: 20px;
    }
}

/*会社概要 profile_block.php
---------------------------------------------------------------------------*/
table.table_profile{
	width: 100%;
    text-align: left;
    margin: 0 auto;
	margin: 2% auto;
}
table.table_profile tr{
	border: 1px solid #c7c7c7;
}
table.table_profile th,table.table_profile td {
	display: block;
    border-spacing: 0px;
	width: auto;
	padding: 10px;
}
table.table_profile th{
	background: #ededed;
}
@media screen and (min-width:768px){
	table.table_profile th{
		width: 20%;
	}
	table.table_profile th,table.table_profile td{
		display: table-cell;
		padding: 20px;
	}
}

/*フッター footer_block.php
---------------------------------------------------------------------------*/
footer .footerAddress {
	background: #444444;
	padding: 3% 0 1%;
    width: 100%;
}
footer ul.addressArea.flex {
    align-items: center;
    column-gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
footer ul.addressArea.flex li {
    width: 100%;
    text-align: left;
}
footer figure {
    margin: 0;
    width: 55%;
}
footer img.footerLogo {
	width: 100%;
    margin: 10% 0 5% 0;
}
footer .addressArea p {
    font-size: 90%;
}
@media screen and (min-width:768px){
	footer ul.addressArea.flex li {
        width: calc((100% - 40px* 2) / 2);
	}
	footer img.footerLogo {
		width: 100%;
	}
}

/*フッターメニュー foot_menu_block.php
---------------------------------------------------------------------------*/
footer nav.footernav {
	display: none;
}
@media screen and (min-width:1024px){
	footer nav.footernav {
		display: block;
		background: #444444;
		font-size: 85%;
	}
	footer nav.footernav .inner.flex {
		justify-content: center;
		padding: 1% 0;
		border-top: solid 1px #fff;
	}
	footer nav.footernav ul.title {
		margin: 0 1%;
	}
}

/*コピーライト copyright_block.php
---------------------------------------------------------------------------*/
footer .footerCopyright {
    padding: 1% 0;
    background: #9e9e9e;
    font-size: 70%;
    color: #fff;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
footer a.copyright {
    color: #fff;
}
footer .footerCopyright img {
    display: none;
}
