@charset "UTF-8";
/*=============================
レスポンシブ
=============================*/
@import url("https://fonts.googleapis.com/css2?family=Balthazar&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
.pc {
  display: block;
}
@media screen and (max-width: 905px) {
  .pc {
    display: none !important;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 905px) {
  .tab {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .tab {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 905px) {
  .sp {
    display: block;
  }
}

/*=============================
mixin
=============================*/
/*=============================
 共通パーツ
=============================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-size: 16px;
  color: #000;
  font-feature-settings: "palt";
}
@media screen and (max-width: 905px) {
  body {
    font-size: 13px;
  }
}

.inner {
  width: 100%;
  margin: 0 auto;
}

.inner_inner {
  width: 85%;
  margin: 0 auto;
  max-width: 1366px;
}
@media screen and (max-width: 905px) {
  .inner_inner {
    width: 80%;
  }
}

.section_title {
  font-family: "Balthazar", serif;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.5em;
}
@media screen and (max-width: 905px) {
  .section_title {
    font-size: 20px;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

/*=============================
side bar
=============================*/
.so_logo {
  position: fixed;
  z-index: 800;
  top: 40px;
  left: 2.5%;
  width: 8%;
}
@media screen and (max-width: 905px) {
  .so_logo {
    width: 13%;
    left: 3%;
    top: 25px;
  }
}
.so_logo .producedby {
  display: block;
  margin-top: 50px;
  margin-left: 6%;
  width: 9%;
}
@media screen and (max-width: 905px) {
  .so_logo .producedby {
    margin-top: 30px;
    width: 12%;
  }
}

#body-main {
  margin-left: 7%;
}
@media screen and (max-width: 905px) {
  #body-main {
    margin-left: 10%;
  }
}

#front-area {
  z-index: 1000;
  position: relative;
}

.left_side {
  background-color: #fff;
  position: fixed;
  width: 7%;
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 905px) {
  .left_side {
    width: 10%;
  }
}

/*=============================
nav
=============================*/
.nav {
  position: fixed;
  z-index: 1002;
  background-color: rgba(0, 0, 0, 0.795);
  height: 100vh;
  width: 100%;
  top: 0px;
  display: none;
}
.nav .nav_inner {
  width: 25%;
  margin: 50px auto;
  position: absolute;
  right: 8%;
}
@media screen and (max-width: 905px) {
  .nav .nav_inner {
    width: 90%;
  }
}
.nav .nav_inner a {
  display: block;
  color: #fff;
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.4em;
  margin-bottom: 17px;
}
.nav .nav_inner .caption {
  font-size: 10px;
  letter-spacing: 0.15em;
}
.nav .nav_inner .nav_btn {
  display: flex;
  align-items: center;
  justify-content: right;
  margin: 30px 0px;
}
.nav .nav_inner .nav_btn a {
  width: 20px;
  margin-right: 25px;
  margin-bottom: 0px;
}
.nav .nav_inner .nav_btn a:last-child {
  margin-right: 0px !important;
}
.nav .nav_inner .nav_btn a .small {
  width: 85%;
}
.nav .nav_inner .nav_btn a .mail {
  vertical-align: middle;
}

.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: fixed;
  z-index: 1003;
  top: 30px;
  right: 30px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
@media screen and (max-width: 905px) {
  .openbtn {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: #a37e39;
}
@media screen and (max-width: 905px) {
  .openbtn span {
    height: 2.5px;
  }
}

.openbtn span:nth-of-type(1) {
  top: 15px;
  width: 70%;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
  width: 70%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 30px;
  transform: translateY(6px) rotate(-135deg);
  width: 35%;
  background: #fff;
}
@media screen and (max-width: 905px) {
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    width: 30%;
  }
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 30px;
  transform: translateY(-6px) rotate(135deg);
  width: 35%;
  background: #fff;
}
@media screen and (max-width: 905px) {
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    width: 30%;
  }
}

@media screen and (max-width: 905px) {
  .block {
    display: block;
  }
}

.fixed {
  height: 100%;
  overflow: hidden;
}

/*=============================
sidebar-right
=============================*/
.contact_btn {
  width: 23px;
  position: fixed;
  right: 25px;
  bottom: 0px;
  z-index: 1;
}
@media screen and (max-width: 905px) {
  .contact_btn {
    display: none;
  }
}
.contact_btn svg {
  width: 100%;
  margin-bottom: 35px;
  fill: #a37e39;
  mix-blend-mode: difference;
}

.pagetop1 {
  height: 150px;
  width: 60px;
  position: fixed;
  right: 0px;
  bottom: 240px;
  z-index: 2;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (max-width: 905px) {
  .pagetop1 {
    display: none;
  }
}
.pagetop1 .pagetop_arrow {
  padding: 25px 0px;
  width: 30%;
  margin: 0 auto;
  vertical-align: middle;
}
.pagetop1 .pagetop_arrow img {
  width: 100%;
  margin-bottom: 40px;
}
.pagetop1 .pagetop_arrow .small {
  width: 55%;
  margin: 0 auto 40px;
  margin-left: 16%;
  vertical-align: middle;
}

.pagetop2 {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 0px;
  bottom: 130px;
  background: #a37e39;
  z-index: 2;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.pagetop2 .pagetop_arrow {
  padding: 8px 0px;
  width: 40%;
  margin: 0 auto;
  vertical-align: middle;
}
.pagetop2 .pagetop_arrow img {
  width: 100%;
  margin-bottom: 0px;
}

/*=============================
TOP
=============================*/
.so_about {
  padding: 170px 0px 50px;
  background-color: rgba(115, 115, 115, 0.0980392157);
  text-align: left;
}
@media screen and (max-width: 905px) {
  .so_about {
    padding: 70px 0px 20px;
  }
}
.so_about .so_about_lead {
  max-width: 1200px;
  text-align: left;
}
@media screen and (max-width: 905px) {
  .so_about .so_about_lead {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .so_about .so_about_lead {
    width: 75%;
    margin-left: 35px;
  }
}
.so_about .so_about_tex {
  margin-top: 80px;
  max-width: 1200px;
}
@media screen and (max-width: 905px) {
  .so_about .so_about_tex {
    margin: 30px auto 0;
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .so_about .so_about_tex {
    margin: 20px auto 0;
    width: 90%;
  }
}
.so_about .so_about_tex p {
  text-align: left;
  font-size: 2vw;
  letter-spacing: 0.4em;
  line-height: 2.5;
  color: #a37e39;
  font-weight: 300;
  font-feature-settings: "palt";
}
@media screen and (max-width: 905px) {
  .so_about .so_about_tex p {
    font-size: 16px;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .so_about .so_about_tex p {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.23em;
    margin-left: 15px;
  }
}
.so_about .so_about_logo {
  width: 180px;
  margin-top: 50px;
}
@media screen and (max-width: 905px) {
  .so_about .so_about_logo {
    width: 130px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .so_about .so_about_logo {
    width: 90px;
    margin-top: 15px;
    margin-left: 15px;
  }
}

/*=============================
POINT
=============================*/
.point {
  margin: 50px auto;
  background-color: #fff;
  color: #a37e39;
}
@media screen and (max-width: 905px) {
  .point {
    margin: 30px auto;
  }
}
.point .section_title {
  font-family: "Balthazar", serif;
  color: #a37e39;
}
@media screen and (max-width: 905px) {
  .point .section_title {
    margin-bottom: 20px;
  }
}
.point .point_wrapper {
  display: flex;
  align-items: center;
  padding: 40px 0px;
  border-bottom: 1px solid #a37e39;
}
@media screen and (max-width: 905px) {
  .point .point_wrapper {
    margin: 0 auto 35px;
    padding: 0px;
    display: block;
    border: none;
  }
}
.point .point_wrapper:last-child {
  border: none;
}
.point .point_wrapper .point_left {
  width: 300px;
  text-align: center;
}
@media screen and (max-width: 905px) {
  .point .point_wrapper .point_left {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: solid 1.5px #a37e39;
  }
}
@media screen and (max-width: 767px) {
  .point .point_wrapper .point_left {
    justify-content: space-between;
    text-align: left;
  }
}
.point .point_wrapper .point_left h3 {
  font-size: 36px;
  font-weight: 500;
}
@media screen and (max-width: 905px) {
  .point .point_wrapper .point_left h3 {
    font-size: 24px;
  }
}
.point .point_wrapper .point_left p {
  font-size: 16px;
  margin-left: -10%;
}
@media screen and (max-width: 905px) {
  .point .point_wrapper .point_left p {
    font-size: 15px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .point .point_wrapper .point_left p {
    font-size: 15px;
    margin-left: 0;
  }
}
.point .point_wrapper .point_right {
  width: calc(100% - 300px);
}
@media screen and (max-width: 905px) {
  .point .point_wrapper .point_right {
    width: 100%;
    margin-top: 20px;
  }
}
.point .point_wrapper .point_right h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 400;
}
@media screen and (max-width: 905px) {
  .point .point_wrapper .point_right h4 {
    font-size: 15px;
  }
}
@media screen and (max-width: 905px) {
  .point .point_wrapper .point_right p {
    font-weight: 300;
  }
}

/*=============================
contact
=============================*/
.top_contact {
  background-color: #a37e39 !important;
  padding: 60px 0px;
}
@media screen and (max-width: 905px) {
  .top_contact {
    padding: 30px 0px;
  }
}
.top_contact .contact_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 905px) {
  .top_contact .contact_wrapper {
    display: block;
  }
}
.top_contact .contact_wrapper h1 {
  font-family: "Balthazar", serif !important;
  font-size: 22px !important;
  color: #fff;
  letter-spacing: 0.4em;
  text-align: center;
  margin-right: 5%;
}
@media screen and (max-width: 905px) {
  .top_contact .contact_wrapper h1 {
    font-size: 20px;
    margin-right: 0;
  }
}
.top_contact .contact_wrapper p {
  color: #fff;
  margin-left: 5%;
}
@media screen and (max-width: 905px) {
  .top_contact .contact_wrapper p {
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
  }
}

.btn {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  border-radius: 90px;
  width: 220px;
  padding: 10px 0px;
  text-align: center;
  outline: none;
  background: #fff;
}
@media screen and (max-width: 905px) {
  .btn {
    width: 200px;
    margin: 20px auto 35px;
    font-size: 14px;
    padding: 8px 0px !important;
  }
}
.btn:hover {
  border: solid 2.5px #fff;
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 6px;
  height: 6px;
  margin-top: -2px;
  border-top: solid 1.5px #a37e39;
  border-right: solid 1.5px #a37e39;
  transform: rotate(45deg);
}
.btn:hover::after {
  right: 25px;
  transition: all ease 0.7s;
  border-color: #fff;
  z-index: 10;
}
.btn .btn-text {
  width: 100%;
  height: 100%;
  color: #a37e39;
  z-index: 10;
}
.btn .btn-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #a37e39;
  z-index: -1;
  transition: 0.2s;
}
.btn .btn-text:hover {
  color: #fff;
}
.btn .btn-text:hover::before {
  width: 100%;
}

/*=============================
footer
=============================*/
footer {
  background: #000;
  color: #fff;
  padding: 40px 0px;
  text-align: center;
}
@media screen and (max-width: 905px) {
  footer {
    padding: 40px 0px 20px;
  }
}
footer .footer_inner {
  max-width: 1000px !important;
  width: 100% !important;
  margin: 0 auto;
}
@media screen and (max-width: 905px) {
  footer .footer_inner {
    width: 100%;
  }
}
footer .footer_inner .footer_wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 905px) {
  footer .footer_inner .footer_wrapper {
    display: block;
  }
}
footer .footer_inner .footer_wrapper p {
  padding-left: 30px;
  margin-right: 30px;
  border-left: 0.5px solid #fff;
}
footer .footer_inner .footer_wrapper p:first-child {
  border-left: none;
}
@media screen and (max-width: 905px) {
  footer .footer_inner .footer_wrapper p {
    width: 100%;
    margin-bottom: 10px;
    padding: 0px;
    border-left: 0px solid #fff;
  }
}
footer .footer_inner .footer_wrapper p a {
  letter-spacing: 0.2em;
  font-size: 11px;
  color: #fff;
}
footer .footer_inner .footer_logo {
  width: 130px;
  margin: 50px auto 30px;
  display: block;
}
@media screen and (max-width: 905px) {
  footer .footer_inner .footer_logo {
    width: 120px;
    display: block;
    margin: 0px auto 10px;
  }
}
footer .footer_inner .footer_logo img {
  width: 100%;
}
footer .footer_inner .footer_caption {
  font-size: 10px;
  letter-spacing: 0.12em;
}/*# sourceMappingURL=about.css.map */