﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');


/*========================
ヘッダー
========================*/
header {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  min-height: 680px;
  background-image:url(../img/headbg.png);
  background-position:right bottom;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
  position: relative;
}
.headinfo {
  position: absolute;
  top: 30px;
  left: 30px;
}
.headlogo {
  width: 100%;
  max-width: 320px;
  display: block;
  padding-bottom: 15px;
}
.headinfo h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.05em;
  line-height: 1.5;
  margin-bottom: 8px;
  color: "#222";
}
@media screen and (max-width: 1000px) {
header {
  min-height: 500px;
  }
.headinfo {
  top: 20px;
  }
}
@media screen and (max-width: 640px) {
header {
  text-align: center;
  padding: 20px 15px;
}
.headinfo {
  position: initial;
  }
.headlogo {
  max-width: 280px;
  margin: 0 auto;
  }
.headinfo h1 {
  font-size: 1em;
  }
}

/* ご連絡フォームはこちらボタン */
.headbtn {
  display: block;
  position: relative;
  background: #F15929;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  width: 100%;
  max-width: 240px;
  padding: 10px 12px 14px;
  color: #FFF !important;
  text-decoration: none;
  font-size: 0.95em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  transition: all .3s;
  line-height: 100%;
  text-align: center;
}
.headbtn:hover{
  background: #F7941C;
}
.headbtn:before {
  content: "";
  position: absolute;
  top: 38%;
  right: 12px;
  width: 10px;
  height: 2px;
  background: #FFF;
  transform: rotate(45deg);
}
.headbtn:after {
  content: "";
  position: absolute;
  top: 52%;
  right: 12px;
  width: 10px;
  height: 2px;
  background: #FFF;
  transform: rotate(-45deg);
}
@media screen and (max-width: 640px) {
.headbtn {
  max-width: 220px;
  margin: 0 auto;
  }
}


/*========================
サービス内容
========================*/
.servicewrap {
  width:100%;
  height: auto;
  margin: 60px 0 40px;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:stretch;
  flex-wrap: wrap;
}
.servicewrap li {
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  height: auto;
  padding:0 2px 4px 2px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
.servicewrap {
  margin: 40px 0 20px;
  }
}
@media screen and (max-width: 640px) {
.servicewrap li {
  flex-direction: column;
  display:block;
  width: 100%;
  max-width:100%;
  padding:0 0 3px 0;
  }
}

/*中身*/
.servicebox {
  width: 100%;
  height: 100%;
  min-height: 300px;
  padding: 30px;
  margin: auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:center;
  flex-wrap: wrap;
}
.service_title {
  width: 40%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  color: #FFF;
  font-size: 1.5em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 8px #0f2525 ,
  -2px 2px 8px #0f2525 ,
  2px -2px 8px #0f2525 ,
  -2px -2px 8px #0f2525;
}
.service_detail {
  width: 60%;
  max-width: 480px;
  padding: 0 0 0 30px;
  font-family: 'Noto Serif JP', serif;
  color: #111;
  font-size: 0.95em;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 2px 2px 8px #FFF ,
  -2px 2px 8px #FFF ,
  2px -2px 8px #FFF ,
  -2px -2px 8px #FFF;
}
@media screen and (max-width: 1240px) {
.servicebox {
  flex-direction: column;
  display:block;
  min-height: 0;
  padding: 50px 30px;
  }
.service_title {
  width: 100%;
  text-align: center;
  font-size: 1.3em;
  margin-bottom: 15px;
  }
.service_detail {
  width: 100%;
  max-width: 100%;
  padding: 0 0 0 0;
  font-size: 0.9em;
  }
}
@media screen and (max-width: 640px) {
.service_title {
  font-size: 1.5em;
  letter-spacing: 0.08em;
  }
}

.service01 {
  background-image:url(../img/service01.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.service02 {
  background-image:url(../img/service02.png);
  background-position:center bottom;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.service03 {
  background-image:url(../img/service03.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.service04 {
  background-image:url(../img/service04.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.service05 {
  background-image:url(../img/service05.png);
  background-position:center bottom;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.service06{
  background-image:url(../img/service06.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.service07 {
  background-image:url(../img/service07.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}
.service08 {
  background-image:url(../img/service08.png);
  background-position:center center;
  background-repeat:no-repeat;
  -moz-background-size:cover;
  background-size:cover;
}


/*========================
会社案内
========================*/
.companywrap {
  width:100%;
  margin: 0 auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.companywrap li{
  margin:0 40px 0 0;
}
.companywrap li:last-child{
  margin:0 0 0 0;
}
@media screen and (max-width: 640px) {
.companywrap {
  flex-direction: column;
  display:block;
  }
.companywrap li {
  width:100%;
  margin:0 0 20px 0;
  text-align: center;
  }
.companywrap li:last-child{
  margin:0 0 0 0;
  }
}


/*========================
お問い合わせ
========================*/
.contactwrap {
  width: 100%;
  padding: 40px 0;
  margin: 0 auto;
  background: #FEEFDC;
  margin-top: 60px;
}
.contactwrap h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.8em;
  color: #F15928;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.03em;
  margin: 15px 0;
}
.contactlogo {
  text-align: center;
  margin-top: -100px;
}
.contactlogo img{
  width: 100%;
  max-width: 120px;  
}
@media screen and (max-width: 640px) {
.contactwrap {
  padding: 25px 0;
  margin-top: 34px;
  }
.contactlogo {
  margin-top: -60px;
  }
.contactlogo img{
  max-width: 84px;  
  }
}
@media screen and (max-width: 480px) {
.contactwrap h3 {
  font-size: 1.4em;
  }
}

/*-------------------------
テーブル
--------------------------*/
.formtable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
.formtable tr{
  border-bottom: 2px solid #FFF;
}
.formtable th{
  width: 35%;
  padding: 15px 20px;
  text-align:left;
  vertical-align: middle;
  background-color: #888;
  color: #FFF;
  font-weight:700;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
.formtable td{
  width: 65%;
  padding: 15px 20px;
  background-color: #FFF;
  text-align:left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
.formtable th,
.formtable td {
  display:block;
  width:100%;
  }
.formtable th{
  padding: 10px 15px;
  }
.formtable td{
  padding: 10px 15px;
  }
}

/*-------------------------
フォームスタイリング
--------------------------*/
/* 入力・選択欄 */
input[type='text'],
input[type='search'],
input[type='tel'],
input[type='url'],
input[type='email'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='number'],
select {
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
  width:100%;
  outline: none;
  border: 1px solid #AAA;
  background:#FFF;
  padding:0.5em;
  font-size:1.1em;
}
select::-ms-expand {
  display: none;
}
textarea{
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
  width:100%;
  outline: none;
  border: 1px solid #AAA;
  background:#FFF;
  padding:0.5em;
  font-size:1.1em;
  height:160px;
}
input::placeholder,
textarea::placeholder {
	color: #CCC;
}
/* Edge */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: #CCC;
}
/* IE11 & IE10 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #CCC;
}
/* ラジオボタン・チェックボックス */
input[type="radio"] , 
input[type="checkbox"]{
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  margin:10px 6px 8px 0;
}
label {
  margin-right:1em;
  cursor:pointer;
  display: inline-block;
}
/* ボタン */
/* @import url('http://fonts.googleapis.com/earlyaccess/notosansjapanese.css'); */
input[type='submit'],
input[type='reset'],
input[type='button'],
button {
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  -o-appearance:none;
  appearance:none;
  font-size:1.4em;
  cursor: pointer;
  padding: 20px 42px 24px;
  text-decoration: none;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  background: #F15929;
  line-height: 100%;
  border: 0;
  letter-spacing: 0.04em;
  margin:12px;
  font-family: "Noto Sans JP", sans-serif;
}
/* 必須項目アイコン */
.hissu {
  font-size:0.75em;
  line-height:100%;
  color:#888;
  background-color:#FFDC73;
  padding:1px 5px 2px;
  margin-left:8px;
  font-weight:700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

