@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure { margin:0; padding:0; }
html {
	font-size: 62.5%;
}
body {
	width: 100%;
	font-family: 'Ysabeau Office','Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: var(--txtcolor);
	letter-spacing: .05em;
	line-height: 1.5;
	text-autospace:ideograph-alpha;
	font-feature-settings: 'palt';
	position: relative;
	word-break: break-word;
	min-width: 1200px;
}
main {
	display: block;
}
a {
	text-decoration: none;
	color: var(--txtcolor);
	transition: all .3s ease 0s;
}
a img {
	border:0;
}
img{
	vertical-align:top;
	max-width: 100%;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { display: none; }
h1,h2,h3,h4,h5,h6 { font-size: 100%; font-weight: normal;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }

input[type="submit"] { display:inline; margin:0; }
input[type="radio"] { margin-right:0.1em; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
*:focus {
	outline: none;
}
*{
	box-sizing: border-box;
}
:root {
	--txtcolor: #141413;
	--btncolor: #2aff43;
	--accentcolor: #ffb81c;
	--bgcolor: #ffcd36;
	--mygray: #e9e9e9;
}
.flex-box {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.mf {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.num {
	font-size: 118%;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: 'Ysabeau Office','Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
textarea {
	-webkit-appearance: none;
	appearance: none;
	border-radius: 0;
	padding: 15px;
	border: 1px solid #b0b0b0;
	width: 100%;
	box-sizing: border-box;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 16px;
}
textarea {
	width: 100%;
	height: 10em;
}
select {
	text-overflow: "";
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url(/pc/img/common/s_arrow.svg) no-repeat right 10px center;
	background-size: auto 4px;
	padding: 8px 40px 8px 8px;
	border: 1px solid var(--mygray);
	max-width: 12em;
}
select::-ms-expand {
	display: none;
}
::placeholder {
  color: var(--mygray);
}
/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid #b0b0b0;
	vertical-align: -10px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 30px;
	height: 30px;
	background: #fff;
	margin-right: 6px;
}
input[type="checkbox"]:checked {
	background: var(--txtcolor);
	border: 1px solid var(--txtcolor);
}
input[type="checkbox"]:checked:before {
	content: '';
	position: absolute;
	left: 2px;
	top: 20px;
	display: block;
	width: 10px;
	height: 2px;
	background: var(--accentcolor);
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	content: '';
	display: block;
	position: absolute;
	left: 12px;
	top: 21px;
	width: 18px;
	height: 2px;
	background: var(--accentcolor);
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	width: 17px;
	height: 17px;
	border: 1px solid transparent;
	position: relative;
	margin-right: 8px;
}
input[type="radio"]::before {
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid var(--mygray);
	border-radius: 50%;
}
input[type="radio"]::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--mygray);
	border-radius: 50%;
}
input[type="radio"]:checked::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 4px;
	width: 9px;
	height: 9px;
	background: var(--accentcolor);
	border-radius: 50%;
}
input[type="submit"] {
	width: 380px;
	background: var(--btncolor);
	border: 2px solid var(--txtcolor);
	font-size: 22px;
	line-height: 1;
	padding: 23px 20px;
	text-align: center;
	font-family: 'Noto Sans JP';
	transition: all .3s ease 0s;
}
table {
	width: 100%;
	border-collapse: collapse;
	box-sizing: border-box;
}
/*ボタンデザイン*/
.btn {
	margin: auto;
}
.btn a {
	display: block;
	background: var(--btncolor);
	padding: 25px 25px;
	border: 2px solid var(--txtcolor);
	font-weight: bold;
	text-align: center;
	line-height: 1;
	font-size: 20px;
	width: 380px;
	margin: 0 auto;
}
.btn a:hover{
	transform: translateY(5px);
	opacity: .8;
}
/*戻る*/
.h-back a {
	display: inline-block;
	font-size: 18px;
	color: #fff;
	line-height: 1;
	background: var(--txtcolor);
	padding: 20px 90px;
	position: relative;
}
.h-back a::after {
	content: '';
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	position: absolute;
	top: 50%;
	left: 20px;
}
.h-back a:hover{
	transform: translateY(5px);
	opacity: .8;
}

/*------------------------
header
------------------------*/
header {
	width: 100%;
	position: relative;
	z-index: 200;
}
header .inner {
	background: #fff;
	padding: 15px 40px;
	box-shadow: 5px 5px 10px 0px rgba(201, 201, 201, 0.5);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .inner .logo-area .desc {
	display: block;
	font-size: 16px;
	line-height: 1;
	margin-bottom: 10px;
}
header .inner .logo-area .head {
	font-size: 26px;
	font-weight: bold;
	line-height: 1;
}
/*------------------------
メニュー
------------------------*/
.menu-list ul{
	display: flex;
	align-items: center;
}
.menu-list nav ul li a {
	display: block;
	font-size: 15px;
	margin-left: 30px;
	font-weight: 500;
}
header .other-link{
	justify-content: end;
	margin-bottom: 10px;
}
header .other-link li a{
	font-size: 13px;
	font-weight: 500;
	display: flex;
	align-items: center;
	margin-left: 30px;
}
header .other-link li a::before{
	content: '';
	width: 5px;
	height: 5px;
	border-top: 1px solid var(--txtcolor);
	border-right: 1px solid var(--txtcolor);
	transform: rotate(45deg);
	display: block;
	margin-right: 6px;
}
header ul li a:hover{
	color: #e79f00;
}

/*------------------------
パンくず
------------------------*/
#breadcrumb {
	font-size: 0;
	white-space: nowrap;
	width: 1120px;
	margin: 0 auto 50px;
}
#breadcrumb li {
	display: inline-block;
	padding-right: 6px;
	font-size: 15px;
}
#breadcrumb li:not(:first-of-type)::before {
	content: ' > ';
	margin-right: 5px;
}
#breadcrumb li a {
	line-height: 1;
}
#breadcrumb li a:hover{
	text-decoration: underline;
}

/*------------------------
後続タイトル
------------------------*/
.ttl-wrap {
	padding: 15px 0 100px;
	background: var(--accentcolor);
}
.ttl-wrap .page-ttl{
	width: 1120px;
	margin: 0 auto;
}
.ttl-wrap .page-ttl .en {
	display: block;
	font-weight: 500;
	color: rgba(255, 255, 255, .5);
	line-height: 1;
	font-size: 26px;
	margin-bottom: 15px;
}
.ttl-wrap .page-ttl h1 {
	font-size: 38px;
	font-weight: bold;
	line-height: 1;
}
.main-img {
	width: 1120px;
	margin: 0 auto;
}
.main-img img{
	border: 2px solid var(--txtcolor);
	width: 420px;
	height: 100%;
	margin: -220px 0 0 auto;
	display: block;
}
/*------------------------
リンク
------------------------*/
.link-area {
	padding: 40px 0;
	background: var(--mygray);
}
.link-area ul{
	width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.link-area ul li a {
	display: block;
	text-decoration: underline;
	line-height: 1;
	margin-right: 30px;
	font-size: 18px;
}
.link-area ul li a:hover{
	color: #e79f00;
}

/*------------------------
お問い合わせ
------------------------*/
.contact-area {
	background: var(--txtcolor);
}
.contact-area .inner{
	width: 980px;
	margin: 0 auto;
	padding: 60px 0 80px;
}
.contact-area h2 {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	line-height: 1.02;
	text-align: center;
	margin-bottom: 40px;
}
.contact-area h2 b {
	font-size: 55px;
	color: var(--bgcolor);
	vertical-align: -.06em;
}
.contact-area .tab-area {
	gap: 0 20px;
	align-items: stretch;
}
.contact-area .tab-area .tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: #f5f5f4;
	padding: 25px 30px;
	font-size: 26px;
	font-weight: bold;
	color: #b0b0b0;
	line-height: 1.3;
	cursor: pointer;
}
.contact-area .tab-area .tab span {
	display: block;
	font-size: 18px;
	font-weight: 500;
}
.contact-area .tab-area .tab.active {
	background: var(--accentcolor);
	color: var(--txtcolor);
	position: relative;
}
.contact-area .tab-area .tab.active::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 24px 0 24px;
	border-color: var(--accentcolor) transparent transparent transparent;
}
.contact-area .cont-area .content {
	display: none;
}
.contact-area .cont-area .content.show {
	display: flex;
	justify-content: space-between;
	background: #fff;
	padding: 70px 60px;
}
.contact-area .cont-area .content .lead {
	position: relative;
}
.contact-area .cont-area .content .lead{
	margin-top: -20px;
}
.contact-area .cont-area .content .block{
	margin-top: 20px;
}
.contact-area .cont-area .content .lead .head {
	display: block;
	background: url(/sp/img/index/bg_fuki.svg) no-repeat 100% / contain;
	padding: 60px 50px 50px 40px;
	width: fit-content;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
	font-size: 24px;
}
.contact-area .cont-area .content .lead .img {
	position: absolute;
	bottom: 10px;
	left: 240px;
	width: 200px;
	z-index: 1;
}
.contact-area .cont-area .content .lead .img img{
	width: 100%;
	height: 100%;
}
.contact-area .cont-area .content .block{
	flex: 1;
}
.contact-area .cont-area .content .list {
	gap: 0 10px;
	margin-bottom: 15px;
}
.contact-area .cont-area .content .list li {
	width: 100%;
	background: var(--txtcolor);
	padding: 15px 0;
	font-size: 18px;
	color: var(--bgcolor);
	line-height: 1;
	text-align: center;
}
.contact-area .cont-area .content .txt {
	font-size: 18px;
	text-align: justify;
}

.contact-area .cont-area .content .flex{
	margin-left: 40px;
	width: 380px;
}
.contact-area .cont-area .content 
/*ボタン*/
.c-btn:not(.bottom) {
	margin-bottom: 20px;
}
.c-btn a {
	display: block;
}
.c-btn a:hover{
	transform: translateY(5px);
	opacity: .8;
}
.c-btn a .sub {
	display: block;
	width: fit-content;
	margin: auto;
	background: var(--bgcolor);
	border: 2px solid var(--txtcolor);
	border-radius: 50vw;
	line-height: 1;
	position: relative;
	padding: 8px 20px;    
	font-size: 18px;
}
.c-btn a .estimate {
	display: block;
	background: var(--btncolor);
	padding: 35px 30px 25px;
	border: 2px solid var(--txtcolor);
	font-weight: bold;
	text-align: center;
	line-height: 1;
	margin-top: -20px;
	font-size: 20px;
}
.contact-area .cont-area .content .link a {
	display: block;
	font-size: 18px;
	text-decoration: underline;
	margin-bottom: 5px;
}
.cont-area .content .link a:hover{
	color: #e79f00;
}
/*------------------------
footer
------------------------*/
footer {
	background: var(--accentcolor);
	position: relative;
}
footer .inner{
	width: 1120px;
	margin: 0 auto;
	padding: 60px 0 30px;
}
footer nav {
	margin-bottom: 30px;
}
footer nav ul{
	display: flex;
    flex-wrap: wrap;
    width: 85%;
}
footer nav ul li a {
    display: block;
    line-height: 1;
    font-weight: 500;
    margin: 0 40px 15px 0px;
}
footer nav ul li a:hover{
	text-decoration: underline;
}
footer .company{
    display: flex;
    align-items: baseline;
    width: auto;
    margin: 0 0 40px 0;
    padding: 0;
}
footer .logo {
	font-size: 26px;
	font-weight: bold;
	line-height: 1;
	margin-right: 25px;
}
footer .operation {
	font-size: 15px;
	line-height: 1;
}
footer .operation a {
	text-decoration: underline;
}
footer .copy {
	font-size: 13px;
	text-align: center;
	line-height: 1;
}
footer .page-top {
	position: absolute;
	bottom: 30px;
	right: 60px;
}
footer .page-top a {
	padding: 65px 6px 0 0;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	position: relative;
}
footer .page-top a:hover{
	transform: translateY(5px);
}
footer .page-top a::before {
	content: '';
	position: absolute;
	top: 5px;
	right: -2px;
	transform: rotate(-55deg);
	width: 14px;
	height: 1px;
	background: var(--txtcolor);
}
footer .page-top a::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100px;
	background: var(--txtcolor);
}

/* 追従 */
.c-btn.bottom {
	position: sticky;
	bottom: 0;
	z-index: 100;    
	background: rgba(0, 0, 0, .70);
}
.c-btn.bottom .inner{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
}
.c-btn.bottom .txt{
	color: #fff;
}
.c-btn.bottom .txt .sub{
	font-size: 17px;
	line-height: 1;
	margin-bottom: 7px;
}
.c-btn.bottom .txt h2{
	font-size: 25px;
	font-weight: 500;
}
.c-btn.bottom a{
	width: 460px;
}
.c-btn.bottom a .sub{
	font-size: 16px;
	padding: 5px 15px;
}
.c-btn.bottom a .estimate{
	padding: 30px 30px 20px;
	font-size: 18px;
}
