@charset "utf-8";
/* CSS Document */

/*
●メモ
ベースカラー　#fffdf9
メインカラー　#6f6e46
アクセントカラー　#c5a04f
文字　#403c34
*/

/* common */

body{
  background-color: #fffdf9;
}

img{max-width:100%;
  height:auto;
}

a {
  text-decoration: none;
  color: #6f6e46;
}

p, li {
  color: #403c34;
  font-size: 15px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height:170%;
  letter-spacing: 0.05em;
  &.caption{
    font-size: 13px;
    letter-spacing: 0.1em;
  }
}

.heading-dot{
  color: #6f6e46;
  font-size: 10px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-right: 5px;
}

.heading-main{
  color: #403c34;
  font-size: 40px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
}

.heading-sub{
  color: #403c34;
  font-size: 13px;
  font-weight: 400;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.1em;
}


h2{
  color: #403c34;
  font-size: 32px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
  .sub-title{
    letter-spacing: 0.1em;
    font-size: 10px;
    font-family: "Quicksand", sans-serif;
    display: block;
    margin-top: 3px;
  }
}

h3{
  color: #403c34;
  font-size: 24px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
  .sub-title{
    letter-spacing: 0.1em;
    font-size: 10px;
    font-family: "Quicksand", sans-serif;
    display: block;
    margin-top: 2px;
  }
}

/* button */

.btn-nav{
  padding: 7px 20px 7px;
  border-radius: 1000px;
  background-color: #c5a04f;
  color: #fff; 
}

.btn-text{
  display: inline-block;
  color: #6f6e46;
  font-size: 18px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 14px 22px;
  border-radius: 1000px;
  border: 1px solid #6f6e46;
  letter-spacing: 0.15em;
  transition:0.3s ;

  .opt-text{
    display: inline-block;
    transform: translateY(-2px);
  }
  .opt-arrow{
    display: inline-block;
    margin-left: 10px;
    font-size: 20px;
    font-weight: 400;
    transform: translateY(-3px);
  }
}

.btn-text:hover{
  color: #fff;
  background-color: #6f6e46;
}

/* page-top　btn */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fffdf9;
  border: solid 1px #6f6e46;
  border-radius: 50%;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  z-index: 2;
  cursor: pointer;
  display: none;

  .sub-title{
    letter-spacing: 0.1em;
    font-size: 12px;
    font-family: "Quicksand", sans-serif;
    display: block;
    line-height: 1; 
    margin-top: 2px;
  }
}
.pagetop__arrow {
  display: block;
  
  height: 10px;
  width: 10px;
  border-top: 2px solid #403c34;
  border-right: 2px solid #403c34;
  transform: rotate(-45deg); 

}

/* header */
/* SPロゴを隠してPCロゴのみ表示する */

header{
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 1000;
}

header nav{
  a{
    color: #6f6e46;
    font-size: 20px;
    font-weight: 400;
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0.1em;
  }
  position: absolute;
  right: 0;
  ul{
	display: flex;
	gap: 30px;
  }
}

.header-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  height: 100%;
  margin:0 auto;
  position: relative;
}

header .logo{
  position: absolute;
  left: 0;
  top: 24%;                     
  transform: translateY(24%);
}

/* breadcrumbs */

.breadcrumbs{
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: flex-end;
  p, a{
    color: #6f6e46;
    font-size: 13px;
  }
}

/* footer */

footer{
  padding-top: 5px;
  background-image: url("../img/top/footer-background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-box{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
  padding-top: 50px;
}

.footer-info{
  display: flex;
  flex-direction: column;
  gap: 5px;
  .opt-text{
    font-family: "Quicksand", sans-serif;
  }
}

.footer-box > div {
  display: flex;
  flex-direction: column;
  flex:1
}

.sns-icons{
  display: flex;
  gap: 15px;
  margin-top: auto;
}


footer nav{
  a{
  color: #6f6e46;
  font-size: 17px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;    
  }
  ul{
	display: flex;
	flex-direction: column;
	gap: 20px;
  text-align: right;
  }
}

footer .copyright{
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  padding-bottom: 10px;
}

/* introduction */

.introduction{
  max-width: 1200px;
  margin:0 auto 150px;
  padding-top: 170px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  p{
    max-width: 800px;
  }
}




/* ここから下が下層ページ */



/* top */

/* ロゴのローディング */
.top-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #6F6E46;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading-logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 90px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    transform: rotate(360deg) scale(1.5);
    opacity: 0;
  }
}

body.is-loading {
  overflow: hidden;
}

/* video */

.hero{
  height:100vh;
  overflow: hidden;
  margin-bottom: 200px;
  position: relative;
  video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
    z-index: -10000;
  }
}

.video-header {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  h1{
    margin-bottom: 80px;
    color: #fff;
    font-size: 55px;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New", sans-serif;
    letter-spacing: 0.2em;
    line-height:180%;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
}

.top-about{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-about{
  max-width: 1200px;
  margin: 0 auto 200px;
  h2{
    margin-bottom: 30px;
  }
  p{
    margin-bottom: 40px;
  }
}

/* ふわっと表示 */
.top-about {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.top-about.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.top-prequality{
  padding: 150px 0 150px;
  margin-bottom: 200px;
  position: relative;
  z-index: 1;
}

.top-prequality::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 100%;
  background-image: url(../img/top/top-quality.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.3; 
  z-index: -1;
}

.top-quality{
  max-width: 1200px;
  margin: 0 auto;
  h2{
    margin-bottom: 30px;
  }
  p{
    margin-bottom: 40px;
  }
}

.top-works{
  margin-bottom: 200px;
  h2{
    margin-bottom: 30px;
  }
  p{
    margin-bottom: 40px;
  }
  a{
    margin-bottom: 50px;
  }
}

.top-works-box{
  max-width: 1200px;
  margin: 0 auto;
}

.works-slider li {
  height: 600px;
  overflow: hidden;
}

.works-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-access-box{
  max-width: 1200px;
  margin: 0 auto 200px;
  display: flex;
  gap: 50px;
  .btn-text{
    width: 50px;
    height: 50px;
    color: #fff;
    border-color: #fff;
  }
  .opt-arrow{
    transform: translateX(-13px) translateY(-7px);
  }
}

.top-faq, .top-access{
  padding: 110px 0;
  width:100%;
  background-color: #543d0b;
  text-align: center;
  h2{
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
  }
}

.top-faq{
  background-image: url(../img/top/top-faq.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.top-access{
  background-image: url(../img/top/top-access.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.top-contact{
  max-width: 600px;
  margin: 0 auto 200px;
  text-align: center;
  h2{
    margin-bottom: 30px;
    text-align: center;
  }
  p{
    margin-bottom: 40px;
    text-align: center;
  }
}



/* about */

.about .pre-introduction{
  background-image: url(../img/about/about-introduction.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color:rgba(255,255,255,0.7);
  background-blend-mode:lighten;
}

.about .introduction{
  padding-bottom: 10px;
}

.about-scroll{
  .opt-text{
    font-family: "Quicksand", sans-serif;
    color: #403C34;
    font-size: 18px;
    font-weight: 400;
  }
  /* スクロールダウンの位置 */
  position: absolute;
  right: 50%;
  top: 50%;
  
}

/* 線のアニメーション部分 */
.about-scroll::before {
  animation: scroll 2s infinite;
  background-color: #6F6E46;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  
}

  /* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}



.about-entrance{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 300px 0 150px;
  p{
    text-align: center;
    margin-top: 90px;
  }
}

/* ふわっとフェードイン */
.about-entrance {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.about-entrance.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.about-concept{
  margin: 100px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  
  p{
    max-width: 540px;
    background-color: rgb(255, 255, 255, 0.7);
    padding: 50px 50px 65px 40px;
    margin-left: 50%;
    border-radius: 15px;
  }

  background-image: url(../img/about/about-concept.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  padding: 60px 0 120px;
}

/* 左からふわっとフェードイン */
.about-concept p{
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.about-concept p.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


.about-ceo{
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 580px;

  background-image: url(../img/about/about-ceo.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  background-attachment: fixed;
  padding: 70px 0 120px;

  .letter{
    max-width: 540px;
    background-color: rgb(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 70px 45px 80px 45px;
    
    h3{
      margin-bottom: 20px;
    }

    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
  }

  .letter.is-show {
    transform: translate(0, 0);
    opacity: 1;
}

  .sign{
    padding: 170px 0 30px;
    transform: translateX(-60px);
  }

  .about-ceo-name{
    h3{
      font-weight: 500;
      text-align: center;
    }
    p{
      font-weight: 500;
      padding: 10px 0 10px;
      text-align: center;
    }

  }
}

.about-exit{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 150px 0 150px;
  p{
    text-align: center;
    margin-top: 70px;
  }
}

/* ふわっとフェードイン */
.about-exit {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.about-exit.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* access */

.studio-info{
  max-width: 1200px;
  margin: 0 auto 150px;
  h2{
    margin-bottom: 50px;
  }
}

.studio-table{
  color: #403c34;
  font-size: 15px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-collapse: collapse;
  th{
    font-weight: 400;
  }
}

.studio-table th,
.studio-table td {
  padding:25px 20px;
  vertical-align: middle;
}

.studio-table td{
  padding-left: 60px;
}








.studio-table tr {
  border-top: 1px solid #403c34;
}

.studio-table tr:last-child {
  border-bottom: 1px solid #403c34;
}





.awards{
  max-width: 1200px;
  margin: 0 auto 150px;
  h2{
    margin-bottom: 50px;
  }
  h3{
    margin-bottom: 16px;
    color: #6f6e46;
  }
  p:not(:last-child) {
  margin-bottom: 8px;
}
}

.awards-item:not(:last-child) {
  margin-bottom: 30px;
}

.location{
  max-width: 1200px;
  margin: 0 auto 150px;
  h2{
    margin-bottom: 50px;
  }
}

.access-box{
  display: flex;
  gap: 70px;
}

.location .info-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location .txt-box{
  display: flex;
  flex-direction: column;
  gap: 35px;
  p{
    line-height: 1.9;
  }
  .opt-text{
    font-family: "Quicksand", sans-serif;
  }
}

/* contact */

.contact .contact-form{
  max-width: 750px;
  margin: 0 auto;
  padding:0px 0 200px;
  hr{
    width: 180px;
    border: 1px solid #6f6e46;
    margin: 0 auto;
  }
}

.contact form{
  padding:95px 0 95px;
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.contact label{
  p{
    font-size: 17px;
    margin-bottom: 7px;
  }
   .essential{
    margin-left: 5px;
    color: #a93c21;
  }

  .radio-item{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start; 
  align-items: center;
  margin-top: 10px;

  color: #403c34;
  font-size: 15px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height:170%;
  letter-spacing: 0.05em;
  }

  .agreement{
  display: flex;
  align-items: center;
  justify-content: center;

  color: #403c34;
  font-size: 17px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height:170%;
  letter-spacing: 0.05em;

  a{
    border-bottom: 1px solid #6f6e46;

  }
  }

  display: block;
  white-space: normal;
}

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"]{
  width: 100%;
  max-width: 780px;
  padding: 10px 10px;
  border: 1px solid rgb(111, 110, 70, 0.6);
  border-radius: 4px;

  color: #403c34;
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height:170%;
  letter-spacing: 0.05em;
}

.contact input[type="radio"],
.contact input[type="checkbox"]{
  width: auto;
  margin: 0 10px 0 0;
  padding: 0;
  cursor: pointer;
}

.contact textarea{
  width: 780px;
  padding: 10px 10px;
  border: 1px solid rgb(111, 110, 70, 0.6);
  border-radius: 4px;
  
  resize: none;

  color: #403c34;
  font-size: 16px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height:170%;
  letter-spacing: 0.05em;
}

.contact :focus,
.contact textarea:focus{
  outline: none;
}

.contact button{
  appearance: none;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
  background-color: #6f6e46;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 17px 17px;
  border-radius: 1000px;
  border: 1px solid #6f6e46;
  letter-spacing: 0.15em;
}

/* page-top　btn */
.contact .pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fffdf9;
  border: solid 1px #6f6e46;
  border-radius: 50%;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  z-index: 9999;
  padding: 0;
  cursor: pointer;
  display: none;

  .sub-title{
    color: #403c34;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 12px;
    font-family: "Quicksand", sans-serif;
    display: block;
    line-height: 1; 
    margin-top: 2px;
  }
}
.contact .pagetop__arrow {
  display: block; 
  height: 10px;
  width: 10px;
  border-top: 2px solid #403c34;
  border-right: 2px solid #403c34;
  transform: rotate(-45deg); 
}


/* faq */

.faq-list{
  max-width: 700px;
  margin: 0 auto 200px;
}

.faq-item {
  max-width: 700px;
  border-bottom: 1px solid #6f6e46;
}

.faq-item:first-child {
  border-top: 1px solid #6f6e46;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /* このpaddingが質問どうしの余白を調整 */
  padding: 30px 30px 30px 60px;
  color: #403c34;
  font-size: 19px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.faq-item summary::before,
.faq-item p::before {
  position: absolute;
  left: 20px;
  font-weight: 600;
  font-size: 1.3em;
}

/* 回答はすこし内側に寄せる */
.faq-item p::before {
  left: 23px;
}

.faq-item summary::before {
  color: #6f6e46;
  content: "Q";
}

.faq-item summary::after {
  content: '';
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #403c34b3;
  border-right: 3px solid #403c34b3;
  transform: translateY(-25%) rotate(45deg);
  transition: transform .5s;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  position: relative;
  margin: 0;
  padding: 10px 50px 30px;
  color: #333;
  opacity: 0;
  transform: translateY(-10px);
  transition: transform .5s, opacity .5s;
}

.faq-item[open] p {
  opacity: 1;
  transform: none;
}

.faq-item p::before {
  color: #6f6e46;
  line-height: 1.2;
  content: "A";
}

.faq-contact{
  background-image: url(../img/faq/faq-contact.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding:150px 0px;
  margin-bottom: 150px;
}

.faq-contact-box{
  max-width: 570px;
  margin: 0 auto;
  text-align: center;
  h2, p{
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
  }
  a{
    color: #fff;
    border-color: #fff;
  }
}

/* privacy */

.privacy-content{
  max-width: 750px;
  margin: 0 auto 150px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  h3{
    font-size: 20px;
    margin-bottom: 20px;
  }
  ul{
    margin: 5px 0 5px;
  }
  .caption{
    text-align: right;
  }
}

.privacy-info{
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  .opt-text{
    font-family: "Quicksand", sans-serif;
  }
}

/* quality */

.quality .pre-introduction{
  background-image: url(../img/quality/quality-introduction.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color:rgba(255,255,255,0.5);
  background-blend-mode:lighten;
}

.quality .introduction{
  padding-bottom: 10px;
}

/* quality index */
.quality-list{
  display: flex;
  justify-content: center;
  gap: 200px;
  margin: 100px auto 200px;

  font-size: 24px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.1em;
  
  .index-txt{
  position: relative;
  display: inline-block;
  padding-right: 20px;
  cursor: pointer;
  }

  .index-txt:after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 0;
  border-bottom: solid 2px #403C34;
  border-right: solid 2px #403C34;
  transform: rotate(45deg);
  top: 0;
  right: -10px;
  bottom: 0;
  margin: auto;
}
}

  .quality-list a:link{text-decoration: none;color:#403C34;}
  .quality-list a:visited{text-decoration: none;color:#403C34;}
  .quality-list a:hover{text-decoration: none;color: #403C34;}
  .quality-list a:active{text-decoration: none;color: #403C34;}


/* quality section1&2 共通部分 */
.quality-ingredients, .quality-commitment{
  max-width: 1200px;
  margin: 0 auto 200px;
  display: flex;
  flex-direction: column;
  text-align: center;

  h3{
    display: flex;
    text-align: center;
    gap: 20px;
    margin: 100px auto 60px;
    
    /* .quality-article{
    } 使わないかも？*/

    .quality-title{
      display: flex;
      flex-direction: column;
      .sub-point{
        letter-spacing: 0.05em;
        font-size: 10px;
        font-family: "Quicksand", sans-serif;
        display: block;
      }

      .sub-number{
        letter-spacing: 0.1em;
        font-size: 24px;
        font-family: "Quicksand", sans-serif;
        display: block;
        margin-top: -5px;
      }
    }


  }

  .quality-section-title{
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
  }

  .quality-section-title.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

}

/* quality section 1 */
.quality-woods-introduction1{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 130px;

  background-image: url(../img/quality/quality1\ .png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  padding: 300px 0 120px;

  h4{
    color: #fff;
  }
  P{
    background-color: rgb(255, 255, 255, 0.8);
    padding:30px 40px 40px 50px ;
  }
}

.quality-woods-introduction2{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 130px;

  background-image: url(../img/quality/quality2.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  padding: 300px 0 120px;

  h4{
    color: #fff;
  }
  P{
    background-color: rgb(255, 255, 255, 0.8);
    padding:30px 40px 40px 50px ;
  }
}

.quality-woods-introduction3{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 130px;

  background-image: url(../img/quality/quality3.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  padding: 300px 0 120px;

  h4{
    color: #fff;
  }
  P{
    background-color: rgb(255, 255, 255, 0.8);
    padding:30px 40px 40px 50px ;
  }
}

/* quality section 2 */
.quality-section{
  display: flex;
  gap: 75px;
  justify-content: center;
  margin: 80px 0 80px;
  P{
    max-width:500px ;
  }

  .quality-box{
    overflow:hidden;
	  position:relative;
	  width:390px;
    height:210px;
  }

  .quality-box img{
    transition:1s;
  }
  .quality-box:hover img{
    transform:scale(1.2,1.2);
  }

  .quality-box .txt{
    position:absolute;
		z-index:50;
		left:0;
		height:100%;
		background-color:rgba(0,0,0,0.8);
		padding:15px;
		font-size:12px;
		width:390px;
    height:210px;
		transition:1s;
		opacity: 0;
    h4{
      color: #fff;
      text-align: center;
      transform: translate(0%, 100%);
    }
  }
  .quality-box:hover .txt{
    opacity: 1;
  }
}

/* quality section 3 */
.quality-attitude{
  max-width: 1200px;
  margin: 0 auto 200px;
  display: flex;
  flex-direction: column;
  text-align: center;

  h3{
    display: flex;
    text-align: center;
    gap: 20px;
    margin: 0 auto 70px;
    
    /* .quality-article{
    } 使わないかも？*/

    .quality-title{
      display: flex;
      flex-direction: column;
      .sub-point{
        letter-spacing: 0.05em;
        font-size: 10px;
        font-family: "Quicksand", sans-serif;
        display: block;
      }

      .sub-number{
        letter-spacing: 0.1em;
        font-size: 24px;
        font-family: "Quicksand", sans-serif;
        display: block;
        margin-top: -5px;
      }
    }

  }

  .quality-section-title{
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
  }

  .quality-section-title.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

}

.quality-attitude{
  background-image: url(../img/quality/quality-attitude.png);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  padding: 60px 100px;


  .lower{
    background-color: rgb(255, 255, 255, 0.9);
    padding: 70px 70px 70px 100px;
    h3{
      margin-bottom: 40px;
    }
  }

}

.quality-attitude-understanding{
  display: flex;
  justify-content: center;
  gap: 80px;

  h3{
    text-align: center;
  }

  h4{
    max-width: 350px;
    margin: 5px 0 30px;
    position: relative;
    padding-left: 30px;
  }

  h4::after{
    content: '✓';
    color: #6F6E46;
    font-weight: bold;
    position: absolute;
    left: 6px;
    top: 0;
    font-size: 1.0em;
  }

  h4:before {
  content: '';
  width: 20px;
  height: 20px;
  border: 1px solid #6F6E46;
  
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
  P{
    max-width: 350px;
    margin-left: 25px;
  }
}


/* works */

.works-list{
  max-width: 1200px;
  margin: 0 auto 150px;
  display: flex;
  flex-direction: column;
  gap: 110px;
}

.works-list-box{
  display: flex;
  justify-content: space-between;
}

.works-item{
  max-width: 350px;
  border: 1px solid rgb(111, 110, 70, 0.6);
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
}

.works-list-box .txt-box{
  padding: 13px 0 13px 20px;
  h3{
    font-size: 18px;
    margin-bottom: 5px;
  }
  p{
    font-size: 13px;
    color: #979797;
  }
}

/* example-common*/

.works-requests{
  max-width: 1200px;
  margin: 0 auto 150px;
  display: flex;
  justify-content: space-between;
  img{
    margin-bottom: 10px;
  }
}

.requests-txt{
  max-width: 600px;
  h2{
    margin-bottom: 50px;
  }
}

.works-concept{
  max-width: 1200px;
  margin: 0 auto 150px;
  h2{
    margin-bottom: 50px;
  }
  p{
    max-width: 800px;
  }
}

.works-gallery{
  max-width: 1200px;
  margin: 0 auto;
  h2{
    margin-bottom: 50px;
  }
  li{
  aspect-ratio: 4 / 2;
  overflow: hidden;
  }
}

.gallery-slider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}