@charset "UTF-8";

/*///////////////////////////////////////
全体設定
///////////////////////////////////////*/
*,*:before,*:after {
 box-sizing: border-box;
}

html {
 box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
 font-size: 62.5%;
 scroll-behavior: smooth;
 scroll-padding-top: 70px;
}

body {
 color: #6B1E28;
 font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
 /*background:#FFFDF8;*/
 background: #f4ffff;
 font-size: 16px;
 font-weight: 400;
 line-height: 1.5;
}
@media screen and (max-width: 768px){
body {
 font-size: 14px;
}
}

img {
 max-width:100%;
 height: auto;
}

a{
 text-decoration: none;
 color: #333;
}

a:hover{
 opacity: 0.5;
 transition: 0.8s;
}

a:visited{
 color: inherit!important;/*親と同じ色*/
}

/*英語*/
.en{
 font-family: "Lato", sans-serif;
}

/*///////////////////////////////////////
ヘッダーメニュー
///////////////////////////////////////*/
.hamburger-overlay {
 position: fixed;
 top: 0px;
 right: 0px;
 z-index: 1000;
 width: 48px;
 height: 48px;
 border: none;
 background: transparent;
 cursor: pointer;
}
.hamburger-overlay__line {
 position: absolute;
 left: 11px;
 width: 26px;
 height: 2px;
 background-color: #C15C3B;
 transition: all .6s;
}
.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
 background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
 transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
 opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
 transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 background-color: rgba(193, 92, 59, 0.95);
 visibility: hidden;
 opacity: 0;
 transition: all .6s;
 z-index: 900;
}
.nav-overlay.active {
 visibility: visible;
 opacity: 1;
}
.nav-overlay__content {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 100%;
 text-align: center;
}
.nav-overlay__list {
 margin: 0;
 padding: 0;
 list-style: none;
}
.nav-overlay__item {
 opacity: 0;
 transform: translateY(20px);
 transition: all .6s;
}
.nav-overlay.active .nav-overlay__item {
 opacity: 1;
 transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay__link {
 display: inline-block;
 padding: 20px;
 color: #fff;
 font-size: 24px;
 text-decoration: none;
 transition: color .3s;
}
.nav-overlay__link:hover {
 color: #ffe2d9;
}

/*///////////////////////////////////////
簡易表示切り替え用
///////////////////////////////////////*/
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (max-width: 750px) {
img { max-width: 100%; }
}

/*///////////////////////////////////////
アイコン
///////////////////////////////////////*/
.icon-menu:before {
  content: "\e9bd";
}

.logo-head{
 display: block;
 position: absolute;
 top: 3%;
 left: 3%;
 max-width: 200px;
}

/*///////////////////////////////////////
CSSアニメーション
///////////////////////////////////////*/
.fadein {
 opacity: 0;
 transform: translateY(40px);
 transition: all 0.6s ease-out;
}

.fadein.inview {
 opacity: 1;
 transform: translateY(0);
}


/*///////////////////////////////////////
見出し
///////////////////////////////////////*/
h1 a{
 color: #C15C3B;
 font-weight: normal;
}
h2{
 display: block;
 color: #C15C3B;
 font-size: 2.5em;
 font-weight: normal;
}

.catchcopy {
 font-size: 2.5em;
 line-height: 1.6;
 font-weight: normal;
}
.char {
 display: inline-block;
 opacity: 0;
 transform: translateY(20px);
  }
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

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

}


/*///////////////////////////////////////
メインコンテンツ
///////////////////////////////////////*/
/*メインイメージ*/
.mainimg-wrap{
 display: block;
 position: relative;
 border-bottom: 1px solid #C15C3B;
}
.mainimg-wrap h1{
 display: block;
 position: absolute;
 top: 5%;
 left: 10%;
}
.mainimg-flex{
 display: flex;
 align-items: center;
 gap: 30px;
 justify-content: space-between;
}
.mainimg-txt{
 display: flex;
 justify-content: center;
 width: 70%;
}
.mainimg-img img{
 display: block;
 height: 800px;
 object-fit: cover;
}

.logo_wrap{
 display: flex!important;
 align-items: center;
 gap: 5px;
}
.logo{
 width:40px;
 height:auto;
}
.logo02{
 display: block;
 margin: 10px auto;
 width: 100px;
 height: auto;
}

/* タブレット用（768px〜1180px） */
@media screen and (max-width: 1180px) {
.mainimg-flex{
 display: block;
}
.mainimg-txt{
 display: block;
 width: 100%;
 margin: 100px auto 50px;
 font-size: 0.8em;
}
.mainimg-wrap h1 {
 top: -12%;
 left: 4%;
}
.mainimg-img img{
 width: 100%;
 border-top: 3px solid #C15C3B;
 height: 300px;
}
}

@media screen and (max-width: 768px){
.mainimg-flex{
 flex-wrap: wrap;
}
.mainimg-txt{
 display: block;
 width: 100%;
 margin: 100px auto 50px;
 font-size: 0.8em;
}
.mainimg-wrap h1 {
 top: -12%;
 left: 4%;
}
.mainimg-img img{
 border-top: 3px solid #C15C3B;
 height: 300px;
}
}


/*コンテンツ領域*/
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}

.container02 {
 margin: 50px auto;
 max-width: 800px;
 position: relative;
}

main {
 /*margin: 6rem 0 0 0;*/
}
section {
 /*margin: 5rem 0;*/
 padding: 3rem 0;
}

.center {
 text-align: center;
 margin-bottom: 4rem;
}
.center02 {
 text-align: center;
}
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}
.gray-back .container {
 padding-bottom: 50px;
 padding-top: 50px;
}

.gray-back {
 background: #f5f5f5;
 position: relative;
 z-index: 2;
 margin-top: -80px;
 border-radius: 30px 30px 0 0;
 overflow: hidden;
}

@media screen and (max-width: 768px){
.imgcontent{
 font-size: 1.8em;
}
.center {
 text-align: left;
}
.center02 {
 text-align: center;
}
}

/*///////////////////////////////////////
サービス
///////////////////////////////////////*/
.mainhead{
 display: block;
 font-size: 1.2em;
 font-weight: normal;
 /*border-top: 1px solid #E3D9C9;
 border-bottom: 1px solid #E3D9C9;*/
 border-top: 1px solid #C15C3B;
 border-bottom: 1px solid #C15C3B;
 margin: 0px auto 0px;
 padding: 20px 0;
}
.service-wrap{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 align-items: flex-start;
 justify-content: center;
 margin: 0px auto;
}
@media screen and (max-width: 768px){
.service-wrap{
 grid-template-columns: 1fr;
}
}
.service-wrap h3{
 font-size: 1.8em;
 margin-bottom: 30px;
 color: #C15C3B;
}
.service-wrap h3 span{
 display: block;
 font-size: 0.7em;
 color: #6B1E28;
}
.service-in{
 display: grid;
 grid-template-columns: 1fr;
 align-items: center;
 justify-content: center;
 width: 100%;
 text-align: left;
 height: 370px;
 max-width: 100%;
}
.service-inner{
 display: block;
 margin: 0 auto;
 text-align: center;
}
.service-inner img{
 display: block;
 width: 40px;
 margin: 15px auto;
}

.service-wrap ul{
 list-style: none;
}

.border-l{
 /*border-left: 1px solid #E3D9C9;*/
 border-left: 1px solid #C15C3B;
}
.border-r{
 border-right: 1px solid #C15C3B;
}
.border-b{
 border-bottom: 1px solid #C15C3B;
}


/*///////////////////////////////////////
会社概要
///////////////////////////////////////*/
.border-table {
 width: 100%;
 max-width: 800px;
 margin: 30px auto;
 font-size: 14px;
 border-collapse: collapse;
}
.border-table .row {
 padding: 18px 0;
 border-bottom: 1px solid #E3D9C9;
 display: grid;
 grid-template-columns: 180px 1fr;
 gap: 20px;
}
.border-table .row:first-child {
 /*border-top: 1px solid #E3D9C9;*/
}
.border-table .row:last-child {
 border-bottom: none;
}
.border-table .th {
 font-weight: 600;
 color: #C15C3B;
}
.border-table .td {
 color: #6B1E28;
}
.border-table .td ul{
 padding: 0 10px;
 list-style: none;
}

@media screen and (max-width: 768px){
.border-table .row {
 grid-template-columns: 1fr;
 gap: 2px;
}
.border-table .th {
 margin-bottom: 2px;
}
}




/*///////////////////////////////////////
お問い合わせ
///////////////////////////////////////*/
.conBtn {
 display: flex;
 justify-content: center;
 align-items: center;
 position: relative;
 width: 250px;
 margin: 0 auto;
 padding: .9em 2em;
 border-top: 1px solid #e3d9c9;
 border-right: none;
 border-bottom: 1px solid #e3d9c9;
 border-left: none;
 color: #6B1E28;
 font-size: 1em;
 margin-top: 30px;
 margin-bottom: 50px;
}
.conBtn::before,
.conBtn::after {
 position: absolute;
 width: 1px;
 height: 140%;
 background-color: #e3d9c9;
 content: '';
}
.conBtn::before {
 left: calc(3.1em / 5 - 1px);
}
.conBtn::after {
 right: calc(3.1em / 5 - 1px);
}

.conBtn i{
 display: inline-block;
 margin-right: 5px;
}

/*///////////////////////////////////////
フッター
///////////////////////////////////////*/
footer {
 background-color: #333;
 position: sticky;
 font-size: 10px;
}

/*メニュー*/
#nav ul{
 display: flex;
 justify-content: center;
}
#nav li{
 list-style: none;
}
#nav li a{
 display: block;
 padding: 0 2em;
 font-weight: bold;
 color: #888888;
 text-decoration: none;
}

/*コピーライト*/
.copyright {
 text-align: center;
 padding: 1rem 0;
 background-color: #f4ffff;
 border-top: 1px solid #C15C3B;
 border-bottom: 1px solid #C15C3B;
 font-weight: bold;
}




/*///////////////////////////////////////
レスポンシブ表示
///////////////////////////////////////*/
@media screen and (max-width: 768px){

/*ヘッダー*/
.header {
 flex-direction: column;
 /*margin-bottom: 10px;*/
}

.header-box {
 display: none;
}

/*メインコンテンツ*/

}
