@charset "UTF-8";

/*----------------------------------------------------
	☆Reset
----------------------------------------------------*/
* {
	margin:0;
	padding:0;
}


html {
	font-size: 16px;
}


body {
	color:#333;
	font:1rem 'メイリオ',Meiryo,Osaka,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS P Gothic',sans-serif;
	line-height: 1.5;
	-webkit-text-size-adjust:100%;
	background-color: #ffffff;
	word-wrap:break-word;
}

table {
	font-size:inherit;
}

img {
	border:none;
	margin:0;
	padding:0;
}

table, th, td {
	margin:0;
	padding:0;
}

ul, ol {
	margin:0;
	padding:0;
	list-style-type:none;
}

textarea,input {
	font:100% 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,Osaka,'ＭＳ Ｐゴシック','MS P Gothic',sans-serif;
	outline: 0;
}
input::-moz-focus-inner, button::-moz-focus-inner {
	border: 0;
}

input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance:textfield;
}

label {
	display: inline-block;
}

h1,h2,h3 {
	font-size: 100%;
	font-weight: normal;
}


a {
	color:#273589;
	text-decoration:none;
	outline:none;
	cursor: pointer;
}

a:link {
	color:#273589;
	text-decoration:none;
	outline:none;
}

a:hover {
	color:#273589;
	text-decoration:underline;
	outline:none;
}



.focus {
	background-color: #ffffca !important;
	border: 1px solid #eea34a !important;
}


.disable {
	pointer-events: none;
	cursor: default;
}


* {
	-webkit-box-sizing : border-box ;
	-moz-box-sizing : border-box ;
	box-sizing : border-box ;
}


input.imeOff {
	ime-mode: inactive !important;
}



/*----------------------------------------------------
	☆Crearfix
---------------------------------------------------*/
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */



.contentsInr {
	width: 800px;
	margin: 0 auto;
	text-align: left;
}


h1 {
	width: 100%;
	margin: 20px auto 40px auto;
	font-size: 2em;
	text-align: center;
}

h2 {
	margin: 0 0 10px 0;
}


.section {
	padding: 0 0 30px 0;

	background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;

}

.br-sp{
	display: none;
}

@media screen and (max-width: 768px){
	.br-sp{
		display: block;
	}
}


.wrapper{
	width: 100%;

	padding: 0 40px;

	background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

@media screen and (max-width: 768px){
	.wrapper {
		padding: 0 20px;
	}
}

main{
	overflow-x: hidden;

	margin-top: 0!important;
	padding-top: 0!important;
}

main .main_hero_inner{
	position: relative;
	top: 0;
	width: 100%;
	height: auto;
	min-height: 100vh;
	margin: 0 auto;
	z-index: 0; 
	clip-path: inset(0); 
}

/* iOS対応：背景固定用の擬似要素 */
main .main_hero_inner::before {
	content: '';
	position: fixed; /* 画面に対して固定 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/topview_bg.webp") !important;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	pointer-events: none;
}

main .main_hero{
	width: 100%;
	height: auto;

	margin: 0 auto;

}


@media screen and (max-width: 1220px){
	main{
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

section{
	width: 100%;
	height: auto;

	padding-bottom: 40px;
}

section.main_text{

    background-position: bottom center;
	background-repeat: no-repeat;
    background-size: cover;
    
}

section.main_text .main_text_inner{
	width: 90%;
	max-width: 900px;
	margin:0 auto;

	height: 100vh;

/*	border: 1px solid #ddd;*/
/*	border-radius: 2px;*/

	padding: 2em;

/*	background-color: #fff;
*/

	font-size: 1.25rem;
}

@media screen and (max-width: 768px){
	section.main_text .main_text_inner {
		width: 96%;
		padding: 1.5em;

		font-size: 1rem;
	}
}

section.main_text p{
	margin: 2em 0;
	line-height: 1.5;
}

.main_devices{

	display: flex;
	align-items: center;
	justify-content: center;

	width: 60%;
	max-width: 429px;
	height: 100vh!important;

	margin: 0 auto;

}

.main_devices img{
	width: 100%!important;
	height: auto;
	object-fit: contain;

}

/* スクロールでふわっと表示させる用 */
.fade-in {
	opacity: 0;
	transform: translateY(0.1rem);
	transition: opacity 1.5s, transform 1.5s;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/*----------------------------------------------------*/

h4{
	text-align: center;
	margin: 0 auto;

	font-weight: normal;

	position: relative;
	
	padding-bottom: 1.2rem; 

	font-size:2em;
	
	display: flex;
	align-items: baseline;

	justify-content: center;
}


.bold_text{
	font-weight: bold;
}

@media screen and (max-width: 1220px){
    h4{
        font-size:1.5em;
    }

}

h4:after {
	position: absolute;

	margin: 0 auto;
	text-align: center;

	content: '';
	left: calc(50% - 60px);
	bottom: 0;
	height: 1px;
	background: #0698A8;
	width: 120px;

}


/*----------------------------------------------------*/

section.feature.wrapper{
	background-image:url("../img/feature_bg.webp");
	background-position: bottom center;
	background-repeat: no-repeat;
    background-size: contain;

	padding: 40px 0 160px 0;
}

section.feature .feature_inner{
	width: 90%;
	max-width: 894px;
	margin:0 auto;
}

section.feature h4{

	color: #254C57;
	
}

section.feature .item_wrapper{

	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;

	margin-top: 60px;

	flex-direction: row;
}

section.feature .item{
	display: flex;
	flex-direction: column;

	width: 25%;
	max-width: 250px;
	min-width: 197px;
	
	height: auto;

	text-align: left;

	font-size: 1.125rem;
	line-height: 1.2em;

	margin-bottom: 50px;
	margin-right: 20px;
	margin-left: 20px;
}

section.feature .item img{
	width: 100%;
	height: 197px;
	object-fit: contain;
	margin: 0 auto 20px auto;
}

@media screen and (max-width: 768px){
	section.feature .feature_inner {
		width: 100%;
	}

	section.feature .item_wrapper {
		flex-direction: column;
		align-items: center;
	}

	section.feature .item {
		width: 100%;
		max-width: 340px;
		margin: 0 0 60px 0;

		line-height: 1.4em;
	}

	section.feature .item:last-child {
		margin-bottom: 0;
	}
}


/*----------------------------------------------------*/

section.function h4{
	color: #fff;
}

section.function h4:after{
	background: #fff;
}

section.function.wrapper{
	background-image:url("../img/fuction_bg_2.webp");
	background-position: center center;
	background-repeat: no-repeat;
    background-size: cover;

	padding-bottom: 80px;

}

section.function .function_inner{
	width: 90%;
	max-width: 1077px;
	height: auto;
	margin: 0 auto;
	padding-top: 72px;
	padding-bottom: 40px;

}


section.function .item{
	width: 310px;
	min-width: 230px;
	min-height: 380px;

	text-align: left;

	font-size: 1rem;
	line-height: 1.2em;

	align-items: center;


	background-color: #fff;
	border-radius: 6px;

	padding: 18px; 
	margin:0 10px 20px 10px;


}

section.function .item img{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;

	margin: 0 auto;

}

section.function .title{
	font-size: 1.25rem; 
	color: #254C57;

	line-height: 2em;

	margin: 0 auto;

	font-weight: 500;
}

section.function .item p{
	line-height: 1.4em;
}

section.function .item p:nth-child(2) {
	margin-bottom: 5px;
}

section.function .annotation{

	font-size: 0.625rem; 
	line-height: 1em;

	margin: 10px auto 0 auto;
}

section.function .item_wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	margin-top: 50px;
	margin-bottom: 40px;
}

section.function .appeal_text_wrapper{

	position: absolute;

	right: 0;

	text-align: right; /* 中のテキストを右に寄せる */
	min-height: 50px;
	height: auto;
	background: linear-gradient(
		120deg,
		#B39855 0%,
		#e4c971 20%,
		#B39855 100%
	);

	clip-path: polygon(50px 0, 100% 0%, 100% 100%, 0% 100%);

	display: flex;
	align-items: center;
	justify-content: flex-end;

}

section.function .appeal_text{
	width: auto;
	font-size: 1.5rem;
	color: #fff;
	text-align: center;
	margin: 0 auto;
	padding: 0.5em 1em 0.5em 3em;
	
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

	z-index: 0;
}


@media screen and (max-width: 1220px){
	section.function .appeal_text{
		font-size: 1.25rem; 
	}

	section.function .function_inner{
		width: 95%;
	}
}

@media screen and (max-width: 768px){

	section.function.wrapper{
		padding-left: 0!important;
		padding-right: 0!important;
	}
	section.function .function_inner {
		width: 100%;
	}

	section.function .item_wrapper {
		flex-direction: column;
		align-items: center;
	}

	section.function .item {
		width: 90%;
		max-width: 90%;
		margin: 0 0 24px 0;
		min-height: 320px;
	}

	section.function .title{
		margin-bottom: 0.5em;
	}
	section.function .item:last-child {
		margin-bottom: 0;
	}

	section.function .appeal_text{

		font-size: 1.15rem; 
	}
}


/*----------------------------------------------------*/

section.cost.wrapper{
	background-image:url("../img/cost_bg.webp");
	background-position: top center;
	background-repeat: no-repeat;
    background-size: cover;

	padding: 72px 0 120px 0;
}

section.cost h4{
	color: #254C57;
}

section.cost .cont_inner{
	width: 640px;
	margin:0 auto;
}

section.cost .item_wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;

	margin-top: 40px;
}

section.cost .item{
	width: 298px;
	height: 206px;

	text-align: center;

	background-color: #fff;
	border: 3px solid #254C57;
}

section.cost .item .title_inner{
	height: 110px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	background-color: #254C57;

	color: #fff;
}

section.cost .item .title{
	font-size: 1.625rem; 
}

section.cost .item .description{
	font-size: 1.125rem; 
}

section.cost .item .price_inner{
	height: 96px;
}

section.cost .item .price_inner p{
	display: inline-block;

	line-height: 96px;

	color: #254C57;
}

section.cost .item .price_inner p.unit{
	font-size: 1.25rem; 
	margin-left: 6px;
}

section.cost .item .price_inner p.price{
	font-size: 2rem;
}

@media screen and (max-width: 768px){
	section.cost.wrapper{
		padding: 40px 0 60px 0;
	}

	section.cost .cont_inner{
		width: 100%;
	}

	section.cost .item_wrapper{
		flex-direction: column;
		align-items: center;
	}

	section.cost .item{
		width: 100%;
		max-width: 340px;
		margin: 0 0 24px 0;
	}

	section.cost .item:last-child{
		margin-bottom: 0;
	}
}


/*----------------------------------------------------*/

section.option.wrapper{
	/*background-image:url("../img/option_bg.webp");*/
	background-image:url("../img/cost_bg.webp");
	background-position: top center;
	background-repeat: no-repeat;
    background-size: cover;

	padding: 90px 0 50px 0;
}

section.option .option_inner{

	width: 90%;

	max-width: 1077px;
	margin:0 auto;

	display: flex;
	flex-direction: row;
	align-items: top;

	backdrop-filter: blur(14px);
	background-color: rgba(255, 255, 255, 0.7);

	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);

	padding: 2em;
}


section.option h4{
	text-align: left;
	margin:0;

	max-width: 350px;
	width: 30%;

	display: flex;
	align-items: baseline;
}


section.option h4:after{
	display: none;
}

section.option h4 p{
	font-size: 0.875rem; 
	margin-left: 0.5em;
}

section.option .option_list{
	font-size: 1.25rem; 
	color: #0D191C;
}

section.option .option_list .item{
	margin-bottom: 1em;
}

section.option .option_list .text{
	font-size: 0.8em;
	margin-left: 1em;
}

section.option .annotation{

	width: 90%;
	max-width: 1077px;

	margin-top: 20px;
	font-size: 0.75rem;
	line-height: 1em;

	margin: 20px auto;
	
}

@media screen and (max-width: 768px){
	section.option .option_inner {
		flex-direction: column;
		align-items: center;
		padding: 1em;
	}

	section.option h4 {
		width: 100%;
		max-width: 100%;
		text-align: center;
		margin-bottom: 20px;
		justify-content: center;
	}

	section.option .option_list {
		width: 100%;
	}

	section.option .annotation{
		text-align: left;
	}
}


/*----------------------------------------------------*/

section.contact.wrapper{
	background-color: #1A3A43;

	padding: 72px 0;
}

section.contact .contact_text{

	width: 90%;
	
	font-size: 1.25rem; 
	color: #fff;
	text-align: center;
	margin: 0 auto 72px auto;
}

section.contact .contact_inner{
	width: 90%;
	max-width: 1000px;
	margin:0 auto;

	display: flex;
	flex-direction: row;
	justify-content: space-around; 
	align-items: flex-start;
	flex-wrap: wrap; 
}


section.contact .contact_item{
	text-align: center;
	margin: 10px; 
}


@media screen and (max-width: 1220px){

	section.contact .contact_item{
		/* margin-bottom: 2em; */
	}
}

section.contact .contact_item .title{
	width: 24.5rem;
	max-width: 100%; 
	height: 4rem; 
	line-height: 4rem;

	background-color: #fff;
	border-radius: 2rem; 

	font-size: 1.8em;
	text-align: center;
	color: #000;

	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	margin: 0 auto; 
}


section.contact .contact_item .tel_number,
section.contact .contact_item .web_link{
	position: relative;

	font-size: 2.4em;
	color: #fff;

	line-height: 1.5em; 

	margin: 20px auto 0 auto;

	text-align: center; 
}

section.contact .contact_item .tel_number{
	width: auto;
	min-width: 280px;
	max-width: 100%;
}

section.contact .contact_item .web_link{
	width: auto;
	min-width: 300px;
	max-width: 100%;
}

section.contact .contact_item.tel .tel_number:before,
section.contact .contact_item.web .web_link:before{
	position: relative; 
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}


section.contact .contact_item.tel .tel_number:before{
	content: "";

	height: 1.2em; 
	width: 0.8em;
	background-image: url("../img/tell_icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

section.contact .contact_item.web .web_link:before{
	content: "";
	height: 1.2em;
	width: 1.5em;
	background-image: url("../img/web_icon.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;

}

section.contact .contact_item .tel_number p{
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}


section.contact .contact_item .annotation{
	width: 100%;
	max-width: 300px;

	font-size: 0.875rem; 
	color: #fff;
	text-align: right;

	margin: 0 auto;
}

section.contact .contact_item .web_link{
	font-size: 1.8em;
	color: #fff;
}

@media screen and (max-width: 768px){
	section.contact .contact_inner {
		
		flex-direction: column;
		align-items: center;
	}

	section.contact .contact_item .title {
		width: 20rem;
		max-width: 100%;
		font-size: 1.4em;
		height: 3.5rem;
		line-height: 3.5rem;
	}

	section.contact .contact_item .tel_number,
	section.contact .contact_item .web_link {
		min-width: auto;
		width: 100%;
	}

	section.contact .contact_item .tel_number{
		font-size: 1.8em;
	}

	section.contact .contact_item .web_link{
		font-size: 1.6em;
	}
	section.contact .contact_item .annotation{
		text-align: center;
	}
}

/*----------------------------------------------------*/
section.office.wrapper{
	background-color: #1A3A43;
	padding: 0 0 50px 0;

	color: #fff;
}

section.office .office_inner{
	width: 90%;
	max-width: 1220px;
	margin:0 auto;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;

	flex-wrap: wrap;
}

section.office h4{
	text-align: left;
	margin:0 auto 1em auto;

	font-size: 1.5em;
}

section.office h4:after{
	display: none;
}

section.office .office_list{
	width: 76%;

	flex-shrink: 0;

	display: flex;
	flex-flow: row wrap;

	justify-content: space-between;
	align-items: center;
}

section.office .office_list .office_item{
	margin-bottom: 20px;
	margin-right: 20px;

	width: 50%;
	max-width: 430px;
	flex-wrap: wrap;
}

section.office .office_list .office_item .office_name{
	font-size: 1.25rem;
	font-weight: bold;
}

section.office .office_list .office_item .office_address{
	font-size: 0.8rem;
}

section.office .office_list .office_item .office_tel{
	font-size: 0.8rem;
}

section.office .map{
	width: 24%;
}

section.office .map img{
	width: 100%;
	min-width: 400px;
	height: auto;
	object-fit: contain;
}


@media screen and (max-width: 1220px){

	section.office h4{
		text-align: center;
		margin: 0 1em 1em 1em;

		font-size: 1.2em;
	}

	section.office .office_inner {
		flex-direction: column-reverse;
		width: 90%;
	}

	section.office .office_list {
		width: 100%;

		flex-direction: column;

		margin: 0;
	}

	section.office .office_list .office_item {
		width: 100%;
		margin: 0 0 2em 0;
	}

	section.office .map{
		width: auto;
		margin: 0 auto;

		text-align: center;
	}

	section.office .map img{
		width: 90%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px){

	section.office h4{
		text-align: center;
		margin: 0 1em 1em 1em;

		font-size: 1.2em;
	}

	section.office .office_inner {
		flex-direction: column-reverse;
		width: 90%;
	}

	section.office .office_list {
		width: 100%;

		flex-direction: column;

	}

	section.office .office_list .office_item {
		width: 100%;
		margin: 0 0 2em 0;
	}

	section.office .map{
		width: 100%;

		text-align: center;
	}

	section.office .map img{
		width: 90%;
		margin: 0 auto;

		min-width: 350px;
	}
}







/*----------------------------------------------------*/
/*--- フォームパーツ  ---*/

#askform .sec {
	margin-bottom: 30px;
	letter-spacing: 0.05em;
}



#askform .ques {
	margin-bottom: 2px;
	padding: 5px 0 7px 14px;

	/* SK 2025/12/04 */
	/* border-radius: 5px; */
	/*background-color: #0093c4 !important;*/

	background-color:transparent !important;
	color:#fff;
}

#askform .item {
	padding: 0 12px;
}


#askform input[type="text"], #askform input[type="tel"], #askform input[type="number"], #askform input[type="email"], #askform textarea {
	/* (2025/12/5) コメントアウト */
	/* width: 100%; */
	padding: 6px 8px 4px 10px;
	vertical-align: middle;
	border-radius: 5px;
	ime-mode: active;

	/* SK 2025/12/04 */
	/* border: 2px #ddd solid;*/
	/* border: 2px #0093c4 solid; */
	border: 2px #08436f solid;
}

#askform span.text_left, #askform span.text_center, #askform span.text_right {
	display: inline-block;
	vertical-align: bottom;
}
#askform span.text_left {
	margin-right: 8px;
}
#askform span.text_right {
	margin-left: 8px;
}
#askform span.text_center {
	margin: 0 8px;
}

/* (2025/12/5) */
/*
#askform input[type="text"].size1, #askform textarea.size1 { width: 10%; }
#askform input[type="text"].size2, #askform textarea.size2 { width: 25%; }
#askform input[type="text"].size3, #askform textarea.size3 { width: 50%; }
#askform input[type="text"].size4, #askform textarea.size4 { width: 75%; }
#askform input[type="text"].size5, #askform textarea.size5 { width: 100%; }
*/

#askform input.size1, #askform textarea.size1 { width: 10%; }
#askform input.size2, #askform textarea.size2 { width: 25%; }
#askform input.size3, #askform textarea.size3 { width: 50%; }
#askform input.size4, #askform textarea.size4 { width: 75%; }
#askform input.size5, #askform textarea.size5 { width: 100%; }

#askform textarea{ height: calc( 1.8em * 2 ); }
#askform textarea.rows1 { height: calc( 1.8em * 3 ); }
#askform textarea.rows2 { height: calc( 1.8em * 5 ); }
#askform textarea.rows3 { height: calc( 1.8em * 7 ); }


#askform input[type="radio"], #askform input[type="checkbox"] {
	padding-right: 10px;
}

#askform label{
	cursor: pointer;
}

#askform label span{
	display:inline-block;
	margin-left:10px;
}

#askform input[type="text"]:hover, #askform input[type="tel"]:hover, #askform input[type="number"]:hover, #askform input[type="email"]:hover, #askform textarea:hover, #askform select:hover {
	border: 2px solid #0084B4;
	background-color: #FFFAE8;
}

#askform input[type="radio"] + label:hover, #askform input[type="checkbox"] + label:hover, #askform select:hover  {
	cursor: pointer;
	color: #0084B4;
}

#askform input[type="radio"] + label:not(:last-of-type), #askform input[type="checkbox"] + label:not(:last-of-type) {
	margin-right: 25px;
}

#askform input[type="radio"] + label, #askform input[type="checkbox"] + label{
	margin-bottom: 10px;
	padding-left: 25px;
	position:relative;
	display: inline-block;
}

#askform input[type="radio"] + label::before, #askform input[type="checkbox"] + label::before {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 13px;
	height: 13px;
	border: 2px solid #DADADA;
}

#askform input[type="radio"] + label::before, #askform input[type="radio"]:checked + label::after {
	border-radius: 50%;
}

#askform input[type="radio"]:checked + label, #askform input[type="checkbox"]:checked + label{
	color: #0084B4;
}

#askform input[type="radio"]:checked + label::before, #askform input[type="checkbox"]:checked + label::before{
	border: 2px solid #0084B4;
}

#askform input[type="radio"]:checked + label::after, #askform input[type="checkbox"]:checked + label::after{
	content: "";
	display: block;
	position: absolute;
	top: 6px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: #0084B4;
}

#askform .vertical input[type="radio"]+label, #askform .vertical input[type="checkbox"]+label {
	display: block;
}


#askform select::-ms-expand {
	display: none;
}

#askform select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 7px 35px 7px 10px;
	line-height: 1.1em;
	border-radius: 5px;
	border: 2px #ccc solid;
	background: url("../img/icon_selectarrow.png") right 10px center no-repeat;
	background-color: rgba(0, 0, 0, 0);
	background-size: auto;
	background-size: 12px auto;
	background-color: #fafafa;
	color: #333;
}

#askform .mark_req {
	padding-left: 52px;

	/* background: #f4f4f4 url("../img/icon_req.png") 12px center no-repeat; */

	/* 透過 */
	background-color: #f4f4f4;
	background-image:url("../img/required.png");
	background-position:12px center;
	background-repeat: no-repeat;
	background-size: 28px auto;
}

#askform ::placeholder { color: #ccc; }
#askform :-ms-input-placeholder { color: #ccc; }
#askform ::-ms-input-placeholder { color: #ccc; }




/*--- フォームパーツ END ---*/

#form_submit_button input[type="submit"]{
	/*
	width: 95%;
    margin: 0 5% 0 5%;
	*/

	width: 50%;
	font-size: 1.25rem; /* 20px */
    margin: 20px auto;
    padding: 20px 0;
    background-color: #ffc926;
    color: #333;
    border-style: none;
    border-radius: 5px;
    display: block;
    font-weight: normal;
	cursor: pointer;
}

#form_submit_button input[type="submit"]:hover{
	opacity:0.7;
}


@media screen and (max-width: 1220px){
	#form_submit_button input[type="submit"]{
		width: 80%;
		font-size: 1rem; /* 16px */
		margin: 40px auto;
		padding: 12px 0;
	}
}
