@charset "utf-8";
/*====================================
共通
====================================*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Noto Sans JP', "Yu Gothic Medium", "游ゴシック Medium", 'YuGothic', "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a {
  text-decoration: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
#container {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

.container {
  width: 90%;
  margin: auto;
}

.fl-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.fl-wrap-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.fl-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: top;
}

.fl-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.fl-start {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.fl-end {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.fl-wrap-normal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fl-wrap-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.section-title-en {
  text-align: left;
  font-family: 'Cormorant Garamond', 'Noto Serif', serif;
}

.section-title-jp {
  text-align: left;
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
}

.section-title-jp-vertical {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  line-height: 1;
  display: inline-block;
}

.emphasis {
  text-align: left;
  font-family: 'Cormorant Garamond', 'Noto Serif', serif;
}
.section-title-en {
  display: inline-block;
  width: 100%;
  font-size: 4rem;
  line-height: 1;
  text-align: left;
  padding: 5% 0;
}

.section-title-lead {
  text-align: left;
  flex: 1;
  margin-left: 3%;
}

.lead-text::after {
  content: "";
  display: inline-block;
  margin-left: 20px;
  width: 80%;
  height: 1px;
  background-color: #333;
}

.fa-brands {
  font-family: "Font Awesome 5 Brands";
  font-size: 1.6rem;
  line-height: 1;
  vertical-align: middle;
  color: #ECECE3;
  font-style: normal;
}

.fa-brands:hover {
  color: #fff;
  opacity: .7;
}

.p-5 {
  padding-top: 5%;
}

.p-10 {
  padding-top: 10%;
}

.p-20 {
  padding-top: 20%;
}

@media(max-width: 768px) {
  .lead-text::after {
    margin-left: 0;
  }
}


/*====================================
HEADER
====================================*/

header {
  position: fixed;
  width: 100%;
  height: auto;
  background-color: #FFF;
  z-index: 999;
}

.logo {
  width: 100%;
  max-width: 240px;
  height: 100%;
  overflow: hidden;
  padding: 1%;
  margin: 0 auto;
}

.logo img {
  display: block;
  width: 100%;
}

.g-nav-wrap {
  position: relative;
}

/*====NAVIGATION=====*/
#g-nav-menu {
  position: fixed;
  z-index: 999;
  bottom: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #AE9B4F;
  transition: all 0.6s;
}

#g-nav-menu.panelactive {
  bottom: 0;
}

#g-nav-menu.panelactive #g-nav-menu-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav-menu ul {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav-menu li {
  list-style: none;
  text-align: center;
}

#g-nav-menu li a {
  color: #ECECE3;
  text-decoration: none;
  padding: 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.g-nav-logo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 220px;
  margin: 0 auto;
}

/*========= ボタンのためのCSS ===============*/
.openBtn {
  position: fixed;
  z-index: 9999;
  top: 2%;
  right: 50px;
  cursor: pointer;
  width: 100px;
  height: 100px;
  text-align: right;
}
.openBtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  right: 14px;
  height: 1.5px;
  border-radius: 2px;
  background-color: #AE9B4F;
  width: 45%;
  margin-left: auto;
}

.openBtn span:nth-of-type(1) {
  width: 68%;
  top: 18px;
}

.openBtn span:nth-of-type(2) {
  width: 68%;
  top: 28px;
}

.openBtn span:nth-of-type(3) {
  width: 68%;
  top: 38px;
  transition: ease-in-out .4s;
}

.openBtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
  background-color: #ECECE3;
}

.openBtn.active span:nth-of-type(2) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
  background-color: #ECECE3;
}

.openBtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 0%;
  background-color: #ECECE3;
}

.top-image {
  width: 100%;
  height: 100vh;
}

#topSlider {
  width: 100vw;
  height: 100vh;
}

@media(max-width: 768px) {
  
  .logo {
    max-width: 200px;
  }
  
  .openBtn {
    top: 5px;
    right: 10px;
    width: 65px;
    height: 65px;
  }
  
  .openBtn span:nth-of-type(1) {
    width: 35%;
    top: 22px;
  }

  .openBtn span:nth-of-type(2) {
    width: 35%;
    top: 28px;
  }

  .openBtn span:nth-of-type(3) {
    width: 35%;
    top: 34px;
  }
}

/*====================================
ABOUT
====================================*/

.about {
  width: 90%;
  margin: auto;
  padding: 20% 0;
}

.about-wrap-left {
  width: 48%;
  height: auto;
  margin-left: calc(50% - 50vw);
}

.about-wrap-left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 14px 14px 0 #AE9B4F;
}

#about .container {
  overflow-x: hidden;
}

.about-wrap-right {
  width: 48%;
}

.about-wrap-right-title {
  width: 60%;
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
}

.about-wrap-right-title-head {
  position: relative;
  padding-top: 35px;
  color: #AE9B4F;
  text-align: left;
  letter-spacing: 0.1em;
}

.about-wrap-right-title-head::before {
  content: attr(data-about);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  letter-spacing: 0;
}

#about .section-title-jp-vertical {
  font-size: 2.8rem;
  letter-spacing: 0.3em;
}

.about-wrap-right-bottom {
  padding-top: 30%;
  text-align: left;
  font-size: 1.6rem;
  line-height: 2.4;
}

.about-wrap-rigth-title-vertical {
  width: 16%;
  font-weight: 500;
}

@media(max-width: 768px) {
  
  .about {
    width: 100%;
  }
  
  .about-wrap {
    display: block;
  }
  
  .about-wrap-left {
    width: 100%;
    height: 25vh;
    margin-top: 5vh;
  }
  
  .about-wrap-right {
    width: 95%;
    margin: auto;
    padding-top: 10%;
  }
  
  .about-wrap-right-top {
    display: block;
  }
  
  .about-wrap-rigth-title-vertical {
    display: inline-block;
  }
  
  .about-wrap-right-bottom {
    padding-top: 10%;
  }
}

/*====================================
SCROLL DOWN
====================================*/

.scroll-down {
  position: relative;
  width: 100%;
  height: 30%;
}

.scrolldown {
  position: absolute;
  top: 0;
  right: 20%;
}
.scrolldown span {
  position: absolute;
  left: 10px;
  bottom: 20px;
  color: #AE9B4F;
  font-size: 1rem;
  letter-spacing: 0.1em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.scrolldown:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #AE9B4F;
  animation:
    circlemove 2.5s ease-in-out infinite, cirlemovehide 2.5s ease-out infinite;
}
@keyframes circlemove {
  0% {
    bottom: 74px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scrolldown:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 80px;
  background: #B58F4F;
}

/*====================================
SERVICE
====================================*/

.service {
  width: 100%;
  height: auto;
  margin-bottom: 20vh;
  text-align: left;
}

.service-title-wrap {
  padding: 15% 3%;
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
}

.service-title-head {
  position: relative;
  padding-top: 35px;
  color: #AE9B4F;
  text-align: left;
  letter-spacing: 0.2em;
}

.service-title-head::before {
  content: attr(data-service);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  letter-spacing: 0;
}

.service-inner-wrap {
  width: 100%;
  height: auto;
}

.service-inner {
  background-color: #EFE9E0;
}

.service-inner2 {
  background-color: #ECECE3;
}

.service-inner-num {
  display: block;
  margin-bottom: 5%;
  font-family: "goldenbook", serif;
  font-weight: 600;
}

.service-inner-text {
  width: 45%;
  margin: auto;
  color: #AE9B4F;
}

.service-inner-text-head {
  padding-top: 10%;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.service-inner-text-message {
  max-width: 540px;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.5;
  padding: 10% 0;
}

.service-inner-img {
  width: 45%;
  height: 70vh;
}

.service-inner-img img {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: -20%;
  margin-bottom: -30%;
  object-fit: cover;
}

.service1-outline {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 50vh;
  padding-top: 10vh;
  align-items: flex-start;
}

.service1-outline-item {
  width: 28%;
}

.service1-outeline-title {
  padding: 10% 0;
  color: #AE9B4F;
  font-size: 2.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}

.column-service-text {
  font-size: 1.5rem;
  text-align: justify;
  letter-spacing: 0.05em;
}

.service1-outeline-title span {
  padding: 0 10%;
  border-left: 2px solid #AE9B4F;
  border-right: 2px solid #AE9B4F;
}

@media(max-width: 768px) {
  
  .service-title-wrap {
    padding: 10% 3%;
  }
  
  .service-inner, .service-inner2 {
    display: block;
  }
  
  .service-inner-text {
    width: 95%;
  }
  
  .service-inner-text-head {
    padding-top: 8vh;
  }
  
  .service-inner-text-message {
    max-width: 760px;
    padding: 0;
    padding-top: 5vh;
    font-size: 1.5rem;
  }
  
  .service-inner-img {
    position: relative;
    width: 100%;
    height: 30vh;
  }
  
  .service-inner-img img {
    position: absolute;
    bottom: 20vw;
    right: 0;
    width: 90%;
  }
  
  .service1-outline {
    display: block;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 10vh;
  }
  
  .service1-outline-item {
    width: 100%;
  }
  
  .column-service-text {
    margin-bottom: 3%;
    line-height: 1.75;
  }

}

/*====================================
COMPANY
====================================*/

.company {
  padding-top: 10%;
}

.company-wrap {
  width: 70vw;
  margin: auto;
  margin-bottom: 10%;
}

.company-inner-title {
  position: relative;
  width: 8%;
}

.company-title {
  color: #AE9B4F;
  font-size: 2.6rem;
  letter-spacing: 0.25em;
}

.company-inner-title::before {
  content: url("../img/company-1.svg");
  vertical-align: bottom;
  width: 100%;
  position: absolute;
  top: -40px;
  left: 0;
}

.company-img {
  position: relative;
  width: 100vw;
  height: 26vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -8vh;
  z-index: -1;
}

.company-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-img-bg {
  position: absolute;
  top: -200px;
  right: 0;
  width: 50%;
  z-index: -2;
}

.company-greeting {
  padding-top: 10vh;
}

.company-headtitle {
  display: inline-block;
  padding-bottom: 20px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  border-bottom: 1px solid #AE9B4F;
}

.company-headtitle-en {
  display: block;
  padding-top: 10px;
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  color: #AE9B4F;
}

.company-greeting-text {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 5vh 0;
  text-align: justify;
  line-height: 2;
}

.company-greeting-sign {
  display: block;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: right;
  letter-spacing: 0.05em;
}

.company-outline {
  padding-top: 15vh;
}

.company-outline-detail {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 5vh;
}

.company-outline-detail-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;  
}

.company-outline-detail-list dt, .company-outline-detail-list dd {
  box-sizing: border-box;
}

.company-outline-detail-list dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  padding: 20px;
  font-weight: bold;
  border-bottom: 1px solid #AE9B4F;
}

.company-outline-detail-list dt:last-of-type,
.company-outline-detail-list dd:last-of-type {
  border: none;
}

.company-outline-detail-list dd {
  display: flex;
  align-items: center;
  width: 70%;
  padding: 20px;
  font-size: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #AE9B4F;
}

.outline-caution {
  font-size: 1.4rem;
}

@media(max-width: 768px) {
  .company-wrap {
    width: 95%;
    margin-bottom: 10vh;
  }
  
  .company-img {
    height: 16vh;
  }
  
  .company-inner-title::before {
    width: 180%;
  }
  
  .company-outline-detail-list dt {
    width: 100%;
    padding: 10px;
    justify-content: flex-start;
    border-bottom: none;
  }
  
  .company-outline-detail-list dd {
    width: 100%;
    padding: 10px;
    margin-bottom: 3%;
  }
}


/*====================================
FOOTER
====================================*/

.footer {
  position: relative;
  padding: 5% 0 2%;
  background-image: url("../img/fotter-bg.webp");
}

.reTopBtn {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #BC3517;
  position: absolute;
  top: -3vh;
  right: 6.5vw;
}

.reTopBtn a {
  color: #fff;
  font-size: 1.2rem;
  padding-top: 12px;
  position: relative;
}

.reTopBtn a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 3px 8px 3px;
  border-color: transparent transparent #fff transparent;
  position: absolute;
  top: 2px;
  right: 0;
  left: 9px;
  bottom: 0;
}

.footer-logo {
  width: 20vw;
  margin: 0 auto;
}

.footer-left {
  width: 20%;
  height: 160px;
}

.footer-left img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-right {
  width: 60%;
}

.f-nav {
  width: 95%;
  max-width: 500px;
  margin: 0 auto;
  padding: 5vh 0;
  text-align: left;
  font-size: 1.5rem;
}

.f-nav ul li {
  width: 30%;
  text-align: center;
}

.f-nav ul li a {
  color: #fff;
}

.f-nav ul li span {
  display: block;
  margin-bottom: 14px;
  font-family: 'Shippori Mincho B1', 'Noto Serif JP', serif;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

.footer-copy {
  font-size: 1rem;
  color: #fff;
}

@media(max-width: 768px) {
  
  .footer-wrap {
    padding-top: 5vh;
  }
  
  .footer-logo {
    width: 50vw;
    max-width: 300px;
  }
  
  .f-nav {
    max-width: 350px;
  }
}