@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{
  margin: 0 auto;
  height: 75px;
  width: 100%;
  margin-bottom: 50px;
}
h2.h2-title>img{
  display: block;  
  height: 100%;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width:768px){
h2.h2-title{
  height: 55px;
}
}
/*　====================== 共通 ======================　*/
/*　====================== コンテンツ幅設定 ======================　*/
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;
padding: 5px 0 0 0;
}
header{
position: fixed;
top:0;
left: 0;
z-index: 10;
width: 100%;
}
header>.nav.flex {
max-width: 1080px;
width: 80%;
margin: 0 auto;
}
header>.nav.flex .right.flex{
gap:50px;
}
header .nav.flex #nav-menu.flex {
  gap:50px;
}
header>.nav.flex .right.flex .tel a{
  display: block;
  background-color: #1e1e1e;
  padding:6px 10px;
  border-radius:5px;
}
header .tel a p {
  color: #fff;
  text-align: center;
  line-height: 1;
}
header .tel a p.text{
  font-size: 12px;
}
header .tel a p.phone-number{
  font-size: 25px;
  font-weight: 800;
}
header .tuibi-buton.flex.floating-notification{
flex-direction: column;
row-gap: 10px;
position: fixed;
bottom: 5%;
right: -1px;
transform: translateX(400px);
transition: all 1s ease;
z-index: 998;
}
header .tuibi-buton.flex.floating-notification.show{
transform: translateX(0px);
}
header .tuibi-buton.flex p{
  writing-mode: vertical-rl; /* 必須：右から左へ流れる縦書き */
  color: #fff;
}
header .tuibi-buton.flex a{
  display: block;
  padding: 10px 15px;
  background-image : linear-gradient(0deg, #3b3b3b, #1e1e1e);
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
header .tuibi-buton.flex .order a{
  background-image : linear-gradient(0deg, #800000, #BC0000);
}
@media screen and (max-width:1080px){
h1 img{
height: 60px;
width: auto;
}
header>.nav.flex {
width: 90%;
}
}
@media screen and (max-width:800px){
header .nav.flex #nav-menu.flex,header>.nav.flex .right.flex{
    gap: 20px;
}
}
@media screen and (max-width:768px){
header>.nav.flex .right.flex.pc-only{
  display: none;
}
header .tuibi-buton.flex.floating-notification{
bottom: 15%;
}
/*　====================== hamburger ======================　*/
header .tel.sp-only{
  position: fixed;
  bottom: -1px;
  left: 0;
  width: 100%;
  background-color: #1e1e1e;
  cursor: pointer;
  z-index: 888;
  padding: 15px 0;
}
header .tel.sp-only p{
color:#fff;
text-align: center;
line-height: 1;
}
header .tel.sp-only p.phone-number{
font-size: 30px;
margin-top: 3px;
font-weight: 900;
}
header ul.nav1.flex,header ul.nav2.flex{
display: none;
}
/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: fixed;
  top:5px;
  right: 2%;
  width: 3rem;
  height: 3rem;
  background-color: #1e1e1e;
  border-radius: 5px;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 2px;
  background-color: #fff;
  -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;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  background-color: #fff;
  opacity: 1;
  visibility: visible;
  z-index: 500;
}
.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  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;
  width: 90%;
  margin: 100px auto 0;
}
.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==============　*/ 
}
/*　====================== header ======================　*/


/*　====================== FV ======================　*/
#firstview{
height: 100vh;
padding-top: 20vh;
background-image: url(../img/back-washi.webp);
background-repeat: no-repeat;
background-position: center bottom;
background-size: cover;
position: relative;
overflow: hidden;
}
#firstview p.logo{
  width: 80%;
  max-width: 1080px;
  margin: 0 auto 50px auto;
}
#firstview p.text{
  width: 70%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width:900px){
#firstview{
height: 80vh;
}
}
@media screen and (max-width:768px){
#firstview{
  background-image: url(../img/back-washi-sp.webp);
  padding-top: 10vh;
  height: 100vh;
}
#firstview p.logo{
    width: fit-content;
    height: 70%;
    margin: 0 auto 30px auto;
}
#firstview p.logo img{
  width: auto;
  height: 100%;
}
#firstview p.text{
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
}
@media screen and (max-width:350px){
#firstview {
padding-top: 18vh;
}
#firstview p.logo{
width: fit-content;
height: 65%;
}
}
/*　====================== Fv ======================　*/
/*　====================== section1 ======================　*/
#sec1 ul.menu-1.flex{
  align-items: start;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap:50px;
}
#sec1 ul li.flex{
  flex-direction: row-reverse;
  align-items: start;
  justify-content: center;
  gap:5px;
}
#sec1 ul li.flex .text-price.flex{
  flex-direction: column;
  margin-top: 50px;
  height: 500px;
}
#sec1 ul.flex h4{
width: 33px;
}
#sec1 ul li.flex .text-price.flex p{
writing-mode: vertical-rl;
font-size: 20px;
}
#sec1 ul li.flex .text-price.flex p span{
writing-mode: vertical-rl;
font-size: 14px;
}
#sec1 div.sub-menu.flex{
  align-items: start;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap:50px;
}
#sec1 div.sub-menu{
  margin-top: 50px;
}
#sec1 div.sub-menu .menu2-menu-3.flex{
  flex-direction: row-reverse;
  align-items: flex-start;
  gap:50px;
  padding: 25px 50px;
  border:1px solid #1e1e1e;
}
#sec1 div.sub-menu .menu-2.flex,
#sec1 div.sub-menu .menu-3.flex{
  flex-direction: row-reverse;
  align-items: start;
  justify-content: center;
  flex-direction: row-reverse;
  gap:10px;
}
#sec1 div.sub-menu .menu2-menu-3.flex h3{
  width: 40px;
}
#sec1 div.sub-menu .menu-2.flex ul{
  margin-top: 50px;
  gap:30px;
}
#sec1 div.sub-menu .menu-2.flex h4{
  width: 20px;
}
#sec1 .menu-2.flex ul li.flex {
    gap: 0px;
}
#sec1 .menu-2 ul li.flex .text-price.flex{
    height: 350px;
}
#sec1 .menu-3 ul{
  gap:20px;
}
#sec1 .menu-3 ul li.flex .text-price.flex {
  margin-top: 100px;
  height: 350px;
}
@media screen and (max-width:768px){
#sec1 ul.menu-1.flex {  
  gap:50px 15px;
}
#sec1 ul.flex h3{
width: 28px;
}
#sec1 ul.flex h4 {
    width: 28px;
}
#sec1 ul li.flex .text-price.flex p{
font-size: 16px;
}
#sec1 ul li.flex .text-price.flex{
  margin-top: 30px;
  height: 400px;
}
#sec1 div.sub-menu .menu2-menu-3.flex {
  flex-direction: column;
}
#sec1 div.sub-menu .menu2-menu-3.flex h3 {
    width: auto;
    height: 40px;
}
#sec1 div.sub-menu .menu2-menu-3.flex h3 img{
height: 100%;
}
#sec1 div.sub-menu .menu-2.flex, #sec1 div.sub-menu .menu-3.flex {
  flex-direction: column;
  align-items: center;
  gap:30px;
}
#sec1 div.sub-menu .menu-2.flex ul {
    margin-top: 0px;
    gap: 15px;
}
#sec1 div.sub-menu .menu2-menu-3.flex {
    padding: 20px;
    align-items: center;
}
#sec1 .menu-2 ul li.flex .text-price.flex {
    height: 250px;
}
#sec1 div.sub-menu .menu-2.flex h4{
  width: 16px;
}
#sec1 .menu-3 ul li.flex .text-price.flex {
    margin-top: 0px;
    height: 200px;
}
}
/*　====================== section1 ======================　*/
/*　====================== CTA ======================　*/
#cta{
background-image: url(../img/back-cta.webp);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
}
#cta{
padding: 50px 0;
}
#cta .text-wrap{
color:#1e1e1e;
background-color: #fffffff0;
padding: 30px;
margin: 0 auto;
border-radius: 5px;
}
#cta .text-wrap p{
text-align: center;
line-height: 1;
}
#cta .text-wrap p:first-child{
color: #fff;
background-color: #1e1e1e;
font-size: 20px;
border-radius: 5px;
padding: 5px 20px;
width: fit-content;
margin: 0 auto;
}
#cta .text-wrap p:nth-child(2){
font-size: 40px;
font-weight: 900;
padding: 10px 0;
}
#cta .text-wrap p:nth-child(3){
font-family: "Noto Sans JP",Serif;
font-size: 14px;
line-height: 1.3;
}
#cta ul{
margin-top: 20px;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
gap:30px;
}
#cta ul li a{
display: block;
background-image: linear-gradient(0deg, #800000, #BC0000);
border: 2px solid #800000;
padding: 20px 40px;
position: relative;
border-radius: 5px;
}
#cta ul li p:nth-child(1){
font-family: "Noto Sans JP",Serif;
text-align: center;
line-height: 1;
margin-bottom: 5px;
color:#fff;
}
#cta ul li a p:nth-child(2){
font-size: 25px;
font-weight: 800;
text-align: center;
line-height: 1;
color: #fff;
}
#cta ul li:nth-child(2) a{
border: 2px solid #b4b4b4;
background-image: linear-gradient(0deg, #ffffff, #e7e7e7);
}
#cta ul li:nth-child(2) a p:nth-child(1){
color: #B10000;
}
#cta ul li:nth-child(2) a p:nth-child(2){
color: #1e1e1e;
}
@media screen and (max-width:768px){
#cta{
background-image: url(../img/back-cta-sp.webp);
}
#cta .text-wrap{
padding: 15px;
}
#cta .text-wrap p:first-child {
color: #fff;
background-color: #1e1e1e;
font-size: 15px;
border-radius: 5px;
padding: 5px 10px;
line-height: 1.4;
}
#cta .text-wrap p:nth-child(2){
font-size: 27px;
line-height: 1.3;
letter-spacing: 0;
}
#cta ul.flex{
flex-direction: column;
gap:10px;
}
#cta ul li {
width: 100%;
}
#cta ul li a {
padding: 20px 0px;
width: 100%;
}
}
/*　====================== cta ======================　*/
/*　====================== section2 ======================　*/
#sec2{
  background-image: url(../img/back-washi.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#sec2 ul{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
    -ms-flex-direction: column;
        flex-direction: column;
gap:20px;
width: 90%;
margin: 0 auto;
}
#sec2 ul li{
border-bottom: 1px solid #ccc;
padding:0 100px 20px;
width: 100%;
}
#sec2 ul li:last-child{
border-bottom: none;
}
#sec2 ul li a{
  gap:15px;
  flex-wrap: wrap; 
  align-items: center;
  justify-content: left;
}
#sec2 ul li a:hover{
opacity: 0.5;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
#sec2 ul li a time{
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  padding:5px 10px 4px 10px;
  border-radius: 5px;
  color: #ffffff;
  background-color: #1e1e1e;
  margin-bottom: 3px;
}
@media screen and (max-width:768px){
#sec2>.container>div.flex{
  flex-direction: column;
  gap:80px;
}
#sec2 .container .content-wrap{
width: 100%;
}
#sec2 ul{
gap:10px;
width: 100%;
}
#sec2 ul li{
padding:10px;
width: 100%;
}
#sec2 ul li a{
  gap:5px;
}
}
/*　====================== section2 ======================　*/
/*　====================== section3 ======================　*/
#sec3{
  background-color: #1e1e1e;
}
#sec3 div.content-wrap.flex{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#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 ======================　*/
/*　====================== section4 ======================　*/
#sec4{
background-color: #fff;
}
#sec4 .container>div{
  background-color: #F6F6F6;
 padding: 50px;
}
#sec4 h2{
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 50px;
}
#sec4 form table{
width: 100%;
}
#sec4 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;
}
#sec4 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;
}
#sec4 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;
}
#sec4 form td{
width: 68%;
}
#sec4 form td input,#sec4 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: #ffffff;
}
#sec4 form td textarea{
height: 150px;
}
#sec4 form .privacy h3{
text-align: center;
font-size: 20px;
margin-bottom: 15px;
font-weight: 900;
}
#sec4 form .privacy .flex.accept{
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
#sec4 .privacy-policy{
border-radius: 5px;
width: 100%;
height: 200px;
padding: 30px;
overflow-y: scroll;
background-color: #fff;
margin-bottom: 15px;
}
#sec4 .privacy-policy>p{
  padding-bottom: 30px;
}
#sec4 form .privacy-policy tr{
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
#sec4 form .privacy-policy tr th,
#sec4 form .privacy-policy tr td{
width: 100%;
text-align: left;
}
#sec4 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){
#sec4 h2{
  font-size: 30px;
}
#sec4 .container>div {
  padding: 20px;
}
#sec4 #section1 .content-wrap.flex .menu-wrap {
width: 100%;
padding: 20px;
}
#sec4 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;
}
#sec4 form tr td{
text-align: left;
width: 100%;
font-size: 15px;
}
#sec4 form tr th{
font-size: 18px;
margin-top: 0;
}
#sec4 form td input,#sec4 form td textarea {
padding: 10px;
font-size: 16px;
}
form .privacy h3 {
font-size: 20px;
text-align: left;
}
#sec4 p{
font-size: 15px;
}
#sec4 .privacy-policy {
width: 100%;
height: 200px;
padding: 20px;
}
#sec4 .privacy-policy tr th{
  font-size: 16px;
}
#sec4 form p.button .submit-button{
margin-bottom: 10px;
}

input.button-design {
    font-size: 16px;
    padding: 10px;
}
}
/*　====================== section5 ======================　*/
/*　====================== footer ======================　*/
footer{
background-image: url(../img/back-washi.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{
background-image: url(../img/back-washi-sp.webp);
margin-bottom: 75px;
}
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: #F6F6F6;
}
.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;
letter-spacing: 0.03em;
}
.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: #B10000;
border: 1px solid #B10000;
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;
letter-spacing: 0.03em;
}
.single #sec1 .side-wrap ul li a{
display: block;
padding: 15px 0px;
}
.single #sec1 .side-wrap time{
color: #B10000;
border: 1px solid #B10000;
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 ======================　*/