@charset "UTF-8";
/*　====================== 基本設定 ======================　*/
*,
*::before,
*::after {
-webkit-box-sizing: inherit;
box-sizing: border-box;
}
html {
-webkit-box-sizing: border-box;
box-sizing: border-box;
scroll-behavior: smooth;
}
body{
margin:0;
padding: 0;
color: #1e1e1e;
background-color: #fff;
}
ul,ol {
list-style: none;
padding: 0;
margin: 0;
}
img{
width:100%;
max-width:100%;
display: block;
}
/*　====================== フォント設定 ======================　*/
h1,h2,h3,h4,h5,h6{
font-weight: 500;
line-height: 1.2;
font-family: "Noto Serif JP", sans-serif;}
p,a,div,ul,ol,dl{
font-size: 16px;
font-weight: 400;
letter-spacing: 0.08em;
line-height: 1.5;
font-family: "Noto Serif JP", sans-serif;
color: #1e1e1e;}
input,textarea{
font-size: 16px;
padding: 5px;}
/*　====================== レスポンシブ設定 ======================　*/
.pc-only {
display: block;
}
.sp-only {
display: none;
}
@media screen and (max-width:768px){
.pc-only {
display: none;
}
.sp-only {
display: block;
}
}
/*　====================== レスポンシブ ======================　*/
/*　====================== 共通 ======================　*/
h2.h2-title span{
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 50px;
  font-family: "Noto Serif JP", sans-serif;
  color:#fff;
  letter-spacing: 0.1em;
  line-height: 1;
}
h2.h2-title span{
  position: relative;
}
h2.h2-title span::before{
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  top:-53px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: #fff;
}
h2.h2-title span::after{
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  bottom:-55px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  background-color: #fff;
}
@media screen and (max-width:768px){
h2.h2-title span{
  font-size: 30px;
}
h2.h2-title span::before{
  height: 30px;
  top:-35px;
}
h2.h2-title span::after{
  height: 30px;
  bottom:-35px;
}
}
/*　====================== 共通 ======================　*/
/*　====================== コンテンツ幅設定 ======================　*/
section{
padding: 100px 0;
}
.container{
margin: 0 auto;
width: 90%;
max-width: 1080px;
}
@media screen and (max-width:768px){
section{
padding: 50px 0;
}
}
/*　====================== flexデフォルト設定 ======================　*/
.flex {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
/*　====================== header ======================　*/
h1 img{
height: 70px;
width: auto;
}
header{
position: fixed;
top:5px;
left: 0;
z-index: 10;
width: 100%;
}
header>.nav.flex {
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
background-color: #1e1e1e;
border-radius: 60px;
max-width: 1080px;
width: 80%;
margin: 0 auto;
}
header .nav.flex a{
padding: 10px 15px;
display: block;
color:#fff;
}
@media screen and (max-width:1080px){
h1 img{
height: 50px;
width: auto;
}
header>.nav.flex {
width: 90%;
}
}
@media screen and (max-width:800px){
header .nav.flex a{
padding: 10px;}
}
/*　====================== header ======================　*/
/*　====================== hamburger ======================　*/
@media screen and (max-width:768px){
header ul.nav1.flex,header ul.nav2.flex{
  display: none;
 }
/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: fixed;
  top:15px;
  right: 7%;
  width: 3rem;
  height: 3rem;
  background-color: #EDE6D2;
  border-radius: 30px;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background-color: #1e1e1e;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.drawer__button > span:first-child {
  -webkit-transform: translate(-50%, calc(-50% - 0.5rem));
      -ms-transform: translate(-50%, calc(-50% - 0.5rem));
          transform: translate(-50%, calc(-50% - 0.5rem));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  -webkit-transform: translate(-50%, calc(-50% + 0.5rem));
      -ms-transform: translate(-50%, calc(-50% + 0.5rem));
          transform: translate(-50%, calc(-50% + 0.5rem));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/fv-back.webp);
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  background-color: white;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
  margin-top: 100px;
}
.drawer__nav__link {
  display: block;
  color: #1e1e1e;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}
.drawer__nav .drawer__nav__item:nth-child(1) .drawer__nav__link{
  border-top: solid 1px lightgray;
}
/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}
}
/*　====================== hamburger==============　*/  
/*　====================== FV ======================　*/
#firstview{
height: 90vh;
background-image: url(../img/fv-back.webp);
background-repeat: no-repeat;
background-position: center bottom;
background-size: cover;
position: relative;
overflow: hidden;
}
#firstview p{
  height: 95%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 120px 0 30px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 5;
}
#firstview p img{
  width: auto;
  max-width:none;
  height: 100%;
}
#firstview p::before{
  content:'';
  position: absolute;
  width: 35vw;
  height: 37vw;
  background-image: url(../img/fv-img01.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  left:-30vw;
  z-index: -1;
}
#firstview p::after{
  content:'';
  position: absolute;
  width: 35vw;
  height: 37vw;
  background-image: url(../img/fv-img02.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  right: -30vw;
  bottom:-3vw;
  z-index: -1;
}
@media screen and (max-width:900px){
  #firstview p::before{
  width: 25vh;
  height: 27vh;
  left:-10vw;
}
#firstview p::after{
  width: 25vh;
  height: 27vh;
  right: -10vw;
}
}
@media screen and (max-width:768px){
#firstview p{
  height: 100%;
}
}
@media screen and (max-width:350px){
#firstview p {
    height: 90%;
}
}
/*　====================== Fv ======================　*/
/*　====================== obi ======================　*/
#obi{
background-image: url(../img/obi-back-pc.webp);
background-repeat: no-repeat;
background-position: center bottom;
background-size: cover;
padding: 30px 0; 
}
#obi .container{
  width: 50%;
}
@media screen and (max-width:768px){
  #obi .container{
  width: 80%;
}
}
/*　====================== obi ======================　*/
/*　====================== section1 ======================　*/
.front #sec1{
background-image: url(../img/sec1-back-pc.webp);
background-repeat: no-repeat;
background-position: center bottom;
background-size: cover;
}
.front #sec1 .container>.content-wrap{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.front #sec1 .content-wrap>.text-wrap{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap:30px;
}
.front #sec1 h2.h2-title{
height: 500px;
}
.front #sec1 h3{
  height: 500px;
}
.front #sec1 h3 img{
  height:100%;
  width: auto;
  max-width: none;
}
.front #sec1 p.price{
  color:#fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.front #sec1 p.price span{
  font-size: 14px;
}
#sec1 div.text.flex{
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#sec1 div.text p{
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color:#fff; 
  font-size: 35px;
}
#sec1 .container>.content-wrap .img{
  width: 40%;
}
#sec1 .container>.content-wrap.flex {
gap:30px;
-webkit-box-pack: end;
    -ms-flex-pack: end;
        justify-content: end;
}
@media screen and (max-width:768px){
.front #sec1{
  background-image: url(../img/sec1-back-sp.webp);
}
.front #sec1 .container>.content-wrap.flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.front #sec1 .content-wrap>.text-wrap {
  gap:5px;
}
.front #sec1 h2.h2-title{
height: 350px;
}
.front #sec1 h3{
  height: 350px;
}
#sec1 div.text p {
    font-size: 25px;
}
#sec1 .container>.content-wrap .img {
    width: 100%;
}}
/*　====================== section1 ======================　*/
/*　====================== section2 ======================　*/
#sec2{
  padding-bottom: 0;
}
#sec2 .sec2-content1-wrap ul li{
  width: 26%;
}
#sec2 .sec2-content1-wrap{
  padding-bottom: 100px;
}
#sec2 .sec2-content2-wrap{
  padding: 100px 0;
  background-image: url(../img/sec2-back-pc.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#sec2 .sec2-content2-wrap1{
  gap:100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#sec2 .sec2-content2-wrap1 .img{
  width: 30%;
}
#sec2 .sec2-content2-wrap1.flex .text-wrap.flex{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap:40px;
}
#sec2 .sec2-content2-wrap1.flex p{
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 35px;
  font-weight: 900;
}
#sec2 .sec2-content2-wrap2.flex{
  max-width: 1080px;
  width: 80%;
  margin: 100px auto 0 auto;
}
#sec2 .sec2-content2-wrap2.flex li{
  width: 32%;
}
@media screen and (max-width:768px){
#sec2 .sec2-content1-wrap ul li{
  width: 33.33333%;
}
#sec2 .sec2-content2-wrap1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap:30px;
}
#sec2 .sec2-content1-wrap {
    padding-bottom: 50px;
}
#sec2 .sec2-content2-wrap {
  padding: 50px 0;
  background-image: url(../img/sec2-back-sp.webp);
}
#sec2 .sec2-content2-wrap1.flex .text-wrap.flex {
    gap: 10px;
}
#sec2 .sec2-content2-wrap1.flex p {
    font-size: 25px;
}
#sec2 .sec2-content2-wrap1 .img {
    margin: 0 auto;
    width: 90%;
    max-width: 1080px;
}
#sec2 .sec2-content2-wrap2.flex{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 50px auto 0 auto;
    gap:30px;
}
#sec2 .sec2-content2-wrap2.flex li {
    width: 100%;
}
}
/*　====================== section2 ======================　*/
/*　====================== section3 ======================　*/
#sec3{
  background-image: url(../img/sec3-back-pc.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
#sec3 div.content-wrap.flex{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#sec3 .tenpo-wrap{
  width: 90%;
}
#sec3 .tenpo-inner .text-wrap.flex{
  padding: 20px;
  gap:30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
}
#sec3 tr{
  width: 100%;
}
#sec3 th,#sec3 td,#sec3 td a{
  display: block;
}
#sec3 tbody.flex{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap:15px;
}
#sec3 th{
  width: 30%;
} 
#sec3 td{
  width: 70%;
} 
#sec3 tr.tel td a{
  font-size: 25px;
  font-weight: 800;
}
@media screen and (max-width:768px){
#sec3 h2.h2-title{
  margin-bottom: 50px;
}
#sec3 div.content-wrap.flex{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
}
#sec3 .tenpo-wrap {
  width: 100%;
}
#sec3 tr.name.flex td{
    font-size: 25px;
    font-weight: 800;
}
#sec3 div.text-wrap.flex,#sec3 tr.flex{
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#sec3 th,#sec3 td{
  width: 100%;
  text-align: left;
} 
}
/*　====================== section3 ======================　*/
/*　====================== cta ======================　*/
#cta{
  padding-top: 100px;
}
#cta::before{
  position: absolute;
  content: '';
  display: block;
  width: 60vw;
  height: 1px;
  left: 0;
  background-color: #fff;
}
#cta::after{
  position: absolute;
  content: '';
  display: block;
  width: 60vw;
  height: 1px;
  right: 0;
  background-color: #fff;
}
#cta>p{
  color:#fff;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-top: 30px;
}
#cta ul{
  margin-top: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap:30px;
  margin-bottom: 40px;

}
#cta ul li a{
  display: block;
  background-color: #ffffff;
  padding: 10px 30px;
  position: relative;
}
#cta ul li a p:first-child{
 font-size: 25px;
 font-weight: 800;
 text-align: center;
}
#cta ul li p:nth-child(2){
  font-family: "Noto Sans JP",Serif;
  text-align: center;
}
#cta ul li:nth-child(2) a{
  background-color: #EDE6D2;
  padding: 10px 20px 10px 50px;
  position: relative;
}
#cta ul li:nth-child(2) a div p:first-child{
  color:#a18400;
}
#cta ul li:nth-child(2) a::before{
  position: absolute;
  content:'';
  width: 25px;
  height: 25px;
  background-image: url(../img/tel-icon.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  top:50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
}
#cta ul li:nth-child(2) a div p:nth-child(2){
  color:#a18400;
  background-color: #fff;
  padding: 0 15px;
  border-radius: 15px;
}
@media screen and (max-width:768px){
#cta ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#cta>p {
  font-size: 22px;
}
}
/*　====================== cta ======================　*/
/*　====================== section4 ======================　*/
#sec4{
background-image: url(../img/sec4-back-pc.webp);
background-repeat: no-repeat;
background-position: center bottom;
background-size: cover; 
}
#sec4>.container>div.flex{
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#sec4 .container .content-wrap{
width: 90%;
}
#sec4 h2.h2-title span{
  color:#a18400;
}
#sec4 h2.h2-title span::before,#sec4 h2.h2-title span::after{
  background-color:#a18400;
}
#sec4 ul{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
gap:20px;
width: 90%;
margin: 0 auto;
}
#sec4 ul li{
border-bottom: 1px solid #fff;
padding:0 100px 20px;
width: 100%;
}
#sec4 ul li:last-child{
border-bottom: none;
}
#sec4 ul li a{
display: block;
}
#sec4 ul li a:hover{
opacity: 0.5;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
#sec4 ul li a time{
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  padding:1px 5px 1px 6px;
  color: #a18400;
  border: 1px solid #a18400;
  margin-bottom: 3px;
}
@media screen and (max-width:768px){
#sec4>.container>div.flex{
  flex-direction: column;
  gap:80px;
}
#sec4 .container .content-wrap{
width: 100%;
}
#sec4 ul{
gap:10px;
width: 100%;
}
#sec4 ul li{
border-bottom: 1px solid #fff;
padding:10px;
width: 100%;
}
}
/*　====================== section4 ======================　*/
/*　====================== section5 ======================　*/
#sec5{
background-color: #EDE6D2;
}
#sec5 .container>div{
  background-color: #fff;
 padding: 50px;
}
#sec5 h2{
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 50px;
}
#sec5 form table{
width: 100%;
}
#sec5 form tr{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 30px;
}
#sec5 form tr th{
font-weight: 700;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
height: -webkit-fit-content;
height: -moz-fit-content;
height: fit-content;
margin-top: 10px;
font-size: 20px;
position: relative;
}
#sec5 form tr th.hissu::after{
content: '※必須';
color:#B10000;
position: absolute;
top:50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
right: -40px;
letter-spacing: 0.1em;
font-size: 12px;
}
#sec5 form td{
width: 68%;
}
#sec5 form td input,#sec5 form td textarea{
width: 100%;
border: none;
font-size: 18px;
line-height: 1.3;
letter-spacing: 0.08em;
font-family: "Noto Serif JP", sans-serif;
padding: 15px;
border-radius: 5px;
-webkit-appearance: none;
background-color: #f8f2e0;
}
#sec5 form td textarea{
height: 150px;
}
#sec5 form .privacy h3{
text-align: center;
font-size: 20px;
margin-bottom: 15px;
font-weight: 900;
}
#sec5 form .privacy .flex.accept{
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#sec5 .privacy-policy{
border-radius: 5px;
width: 100%;
height: 200px;
padding: 30px;
overflow-y: scroll;
background-color: #f8f2e0;
margin-bottom: 15px;
}
#sec5 .privacy-policy>p{
  padding-bottom: 30px;
}
#sec5 form .privacy-policy tr{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
#sec5 form .privacy-policy tr th,
#sec5 form .privacy-policy tr td{
width: 100%;
text-align: left;
}
#sec5 form p.button{
margin-top: 30px;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
gap:15px;
}
input.button-design{
font-size: 20px;
padding: 10px 30px;
color:#111;
border: 1px solid #111;
background-color: #fff;
font-family: "Noto Serif JP", sans-serif;
font-weight: 700;
}
@media screen and (max-width:768px){
#sec5 h2{
  font-size: 30px;
}
#sec5 .container>div {
  padding: 20px;
}
#sec5 #section1 .content-wrap.flex .menu-wrap {
width: 100%;
padding: 20px;
}
#sec5 form tr {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
gap:5px;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
margin-bottom: 30px;
}
#sec5 form tr td{
text-align: left;
width: 100%;
font-size: 15px;
}
#sec5 form tr th{
font-size: 18px;
margin-top: 0;
}
#sec5 form td input,#sec5 form td textarea {
padding: 10px;
font-size: 16px;
}
form .privacy h3 {
font-size: 20px;
text-align: left;
}
#sec5 p{
font-size: 15px;
}
#sec5 .privacy-policy {
width: 100%;
height: 200px;
padding: 20px;
}
#sec5 .privacy-policy tr th{
  font-size: 16px;
}
#sec5 form p.button .submit-button{
margin-bottom: 10px;
}

input.button-design {
    font-size: 16px;
    padding: 10px;
}
}
/*　====================== section5 ======================　*/
/*　====================== footer ======================　*/
footer{
background-image: url(../img/sec4-back-pc.webp);
background-repeat: no-repeat;
background-position: left top;
background-size: cover; 
}
footer .container.footer-wrap.flex{
padding: 50px 0;
}
footer p.name{
width: 200px;
}
footer a{
text-align: center;
}
footer .tel a, footer .tel {
font-size: 30px;
line-height: 1;
font-weight: 700;
}
footer ul.nav.flex{
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap:30px 10px;
}
footer ul.nav.flex li{
  width: calc(33% - 20px); 
}
footer .company{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
row-gap: 5px;
}
footer .copy{
padding: 10px 0;
text-align:center;
background-color: #1e1e1e;
color: #fff;
}
@media screen and (max-width:768px){
footer .container.footer-wrap.flex{
padding: 50px 0;
gap:30px;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
}
footer p,footer a{
text-align: left;
}
footer .tel a,footer .tel{
font-size: 25px;
}
footer .container.footer-wrap.flex ul.flex{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
gap: 20px;
}
footer ul.nav.flex li {
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
}
}
/*　====================== footer ======================　*/
/*　====================== 下層共通 ======================　*/
.kasou h2{
text-align: center;
font-weight: 600;
font-size: 50px;
letter-spacing: 0.2em;
}
header.kasou{
  position: static;
}
.kasou #firstview{
  padding: 18vh 0 10vh;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.pankuzu.flex{
padding: 3px 10px;
background-color: #111;
-webkit-box-pack: left;
    -ms-flex-pack: left;
        justify-content: left;
gap: 30px;
-ms-flex-wrap: wrap;
    flex-wrap: wrap;
row-gap: 5px;
}
.pankuzu.flex li span{
color:#fff;
font-size: 14px;
}
.pankuzu.flex li{
position: relative;
}
.pankuzu.flex li::after{
position: absolute;
right: -20px;
top:50%;
-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
content: '▶';
font-size: 10px;
color:#fff;
}
.pankuzu.flex li:last-child:after{
content: none;
}
@media screen and (max-width:768px){
.kasou h2{
font-size: 30px;
}}
/*　====================== 下層共通 ======================　*/
/*　====================== single ======================　*/
.single #sec1{
background-color: #EDE6D2;
}
.single #sec1 .container.flex{
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: start;
}
.single #sec1 .main-wrap{
background-color: #ffffffd2;
padding:20px;
width: 70%;
}
.single #sec1 .main-wrap h2{
font-size: 30px;
font-weight: 900;
margin-bottom: 20px;
}
.single #sec1 .main-wrap h3{
font-size: 25px;
font-weight: 600;  
margin-bottom: 20px;
}
.single #sec1 .main-wrap h4{
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
}
.single #sec1 .main-wrap time{
color: #a18400;
border: 1px solid #a18400;
padding:2px 5px;
margin: 0 0 20px auto;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
display: block;
}
.single #sec1 .main-wrap  img,.single #sec1 .main-wrap p{
margin-bottom: 20px;
}
.single #sec1 .side-wrap{
width: 25%;
}
.single #sec1 .side-wrap ul{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
-webkit-box-align: start;
    -ms-flex-align: start;
        align-items: start;
background-color: #ffffffd2;  
padding: 0 20px
}
.single #sec1 .side-wrap ul li{
border-bottom: 1px solid #b9b9b9;
width: 100%;
}
.single #sec1 .side-wrap ul li:last-child{
border-bottom: none;
}
.single #sec1 .side-wrap ul li .title{
font-weight: 900;
margin-bottom: 5px;
}
.single #sec1 .side-wrap ul li a{
display: block;
padding: 15px 0px;
}
.single #sec1 .side-wrap time{
color: #a18400;
border: 1px solid #a18400;
padding:2px;
margin: 0 0 0 auto;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
display: block;
}
@media screen and (max-width:1080px){
.single #sec1 .container.flex {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
row-gap: 15px;   
}
.single #sec1 .main-wrap{
padding:20px;
width: 100%;
}
.single #sec1 .side-wrap{
width: 100%;
}
.single #sec1 .main-wrap h2{
font-size: 20px;
margin-bottom: 10px;
}
.single #sec1 .main-wrap h3{
font-size: 18px;
margin-bottom: 10px;
}
.single #sec1 .main-wrap h4{
font-size: 16px; 
margin-bottom: 10px;
}
.single #sec1 .main-wrap  img,.single #sec1 .main-wrap p{
margin-bottom: 10px;
}
}
/*　====================== single ======================　*/
/*　====================== Thanks ======================　*/
.thanks #sec1 .menu-wrap{
margin-bottom: 30px;
}
.thanks #sec1 a{
display: block;
text-align: center;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
margin: 0 auto;
border-bottom: 1px solid #111;
}
/*　====================== Thanks ======================　*/
/*　====================== recruit ======================　*/
.recruit #sec1{
  background-image: none;
  background-color: #EDE6D2;
}
/* モーダルを開くボタン */
.modal__trigger {
cursor: pointer;
border:1px solid #a18400;
background-color: #fff;
padding:20px 100px 20px 50px;
margin-bottom: 50px;
font-size: 20px;
}
/* モーダル本体 */
.modal__wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, .85);
  cursor: pointer;
}
.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: min(calc(100% - 40px), 1000px);
  height: calc(100% - 40px);
  padding: 20px;
  background: #fff;
}
.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 80px 20px 20px;
}
/* モーダルを閉じるボタン */
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(50, 50, 50, 1);
  cursor: pointer;
  -webkit-transition: opacity .6s;
  -o-transition: opacity .6s;
  transition: opacity .6s;
}
.modal__close:hover {
  opacity: .6;
}
.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: '';
}
.modal__close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
      -ms-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
/* モーダル内のコンテンツ */
.modal__content {
}
.modal__title {
  padding: 5px 15px;
  background-color: #a18400;
  color: #fff;
  font-size: 20px;
  margin-bottom: 30px;
}
.modal__text {
  margin-top: 30px;
  line-height: 2.875;
}
.recruitment-inner ul li{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recruitment-inner ul li h3{
  width: 30%;
  text-align: center;
  background-color: #f5f5f5;
  border: 1px dotted #fff;
}
.recruitment-inner ul li p{
  width: 70%;
  background-color: #fff;;
  border: 1px dotted #f5f5f5;
  padding: 20px;
}
a.recruit-btn{
  padding: 10px 15px;
  display: block;
  color: #a18400;
  border: 1px solid #a18400;
  margin-top: 30px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width:768px){
.modal__title {
  font-size: 16px;
  margin-bottom: 20px;
}
.recruitment-inner ul li h3{
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 8px;
}
.recruitment-inner ul li p{
  width: -webkit-fill-available;
  background-color: #fff;;
  border: 1px dotted #f5f5f5;
  padding: 20px;
}
.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 80px 0px 0px;
}
.modal__trigger {
    padding: 5px 30px 5px 20px;
    margin-bottom: 30px;
    font-size: 16px;
}
}
@media screen and (max-width: 768px) {
.recruit section{
  padding: 20px 0;
}
.recruitment-wrap h2 {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
}
}
/*　====================== recruit ======================　*/