@charset "UTF-8";
/********************************************************
*  ハンバーガーメニュー
********************************************************/
header .header-inner {
  display: none;
}
@media only screen and (max-width: 999px) {
  header .header-inner {
    display: block;
    width: 57px;
    height: 58px;
    /* background: #ffffffbf; */
    position: fixed;
    bottom: 11px;
    right: 6px;
    z-index: 9999;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.37);
    border-radius: 50%;
  }
}

.c-hamburger {
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 6px;
  width: 50px;
  height: 50px;
  border: none;
  background: none;
}
@media only screen and (max-width: 999px) {
  .c-hamburger {
    top: 3px;
  }
}

.c-hamburger__line {
  width: 22px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-hamburger__line::before, .c-hamburger__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  position: absolute;
  transition: all 0.3s;
  background-color: #000000;
}
.c-hamburger__line::before {
  top: -6px;
}
.c-hamburger__line::after {
  top: 6px;
}

.c-drawer {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  width: 588px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.74);
  background-size: cover;
  visibility: hidden;
  padding: 50px;
  overflow-y: scroll;
  z-index: 9998;
}
@media only screen and (max-width: 999px) {
  .c-drawer {
    width: 90%;
  }
}

.is-drawer-active .c-hamburger__line {
  background-color: transparent;
}
.is-drawer-active .c-hamburger__line::before, .is-drawer-active .c-hamburger__line::after {
  top: 0;
  background-color: black;
}
.is-drawer-active .c-hamburger__line::before {
  transform: rotate(45deg);
}
.is-drawer-active .c-hamburger__line::after {
  transform: rotate(-45deg);
}
.is-drawer-active .c-drawer {
  visibility: visible;
  overflow: scroll;
  height: 100vh;
}
@media only screen and (max-width: 999px) {
  .is-drawer-active .c-drawer {
    height: 100vh;
    width: 100%;
    padding: 5%;
    ackdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}
.is-drawer-active .c-drawer::-webkit-scrollbar {
  display: none;
}
.is-drawer-active .dwawer-logo {
  width: 239px;
  position: absolute;
  top: 28px;
  left: 50px;
}
@media only screen and (max-width: 999px) {
  .is-drawer-active .dwawer-logo {
    width: 41%;
    position: absolute;
    top: 31px;
    left: 5%;
  }
}
.is-drawer-active .menu-inner {
  margin: 49px auto;
  padding: 50% 0px 0px;
  color: black;
  text-align: center;
}
.is-drawer-active .menu-inner-inner {
  line-height: 30px;
  margin: 20px 0px;
  font-size: 17px;
  display: block;
}

#logo {
  width: 80%;
  max-width: 500px;
}

.logo {
  width: 317px;
  height: 28px;
  position: fixed;
  top: 20px;
  right: 75px;
  z-index: 9999;
}
@media only screen and (max-width: 999px) {
  .logo {
    width: 150px;
    height: auto;
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 9999;
  }
}

#acMenu dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 30px;
  margin: 20px 0px;
  font-size: 20px;
  color: #511f08;
  position: relative;
  padding-right: 5px;
}
@media only screen and (max-width: 999px) {
  #acMenu dt {
    width: 100%;
  }
}
#acMenu dt .dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 13px;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}
#acMenu dt .dli-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
#acMenu dt .dli-plus {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 13px;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}
#acMenu dt .dli-plus.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(0deg);
}

#acMenu dd {
  height: auto;
  line-height: 30px;
  text-align: left;
  display: none;
  line-height: 30px;
  margin: 30px 0px;
  font-size: 17px;
  color: #511f08;
}
@media only screen and (max-width: 999px) {
  #acMenu dd {
    width: 100%;
  }
}
#acMenu dd .menu-dd-inner {
  position: relative;
  display: block;
  margin: 0px 0px 10px 0px;
  border-top: 1px solid;
  padding-top: 10px;
  padding-left: 20px;
}
#acMenu dd .menu-dd-inner::before {
  left: -3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #511f08;
  border-right: 1px solid #511f08;
  transform: rotate(45deg);
  content: "";
  position: absolute;
  top: 18px;
}
#acMenu dd .menu-dd-last {
  border-bottom: 1px solid #511f08;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.hamburger-demo-cover {
  display: none;
}
.hamburger-demo-cover.active {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3, 3, 3, 0.5);
  display: block;
}

.header-back {
  position: fixed;
  height: 73px;
  width: 100%;
  margin-top: 0px;
  z-index: 99;
  background: white;
}

.header-sns-waku {
  display: block;
  width: auto;
  width: 276px;
  display: flex;
}
.header-sns-waku-inner {
  width: 30px;
  margin-right: 20px;
}
@media only screen and (max-width: 999px) {
  .header-sns-waku {
    width: 80%;
    max-width: 250px;
  }
}

.online-header {
  background-color: white;
  width: 100%;
  height: 44px;
  position: fixed;
  z-index: 90;
}

.fixed {
  position: fixed;
  bottom: 5px;
  right: 0;
}

.banner {
  width: 200px;
  padding: 10px;
  margin-bottom: 20px;
  z-index: 10;
}

.float-button__wrap {
  display: none; /*最初は隠す*/
  width: 200px;
  height: 45px;
  position: fixed;
  bottom: 28px;
  right: 5px;
  z-index: 10;
}

.hidden {
  display: none;
}

footer {
  background-color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  text-align: center;
  font-size: 10px;
  margin-bottom: 100p;
  margin-top: 100px;
  margin: 0px auto;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding-bottom: 10px;
}
@media only screen and (max-width: 999px) {
  footer {
    display: none;
  }
}
footer .footer {
  margin-top: 3em;
  font-size: 12px;
  text-align: center;
}
footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}
footer .footer-nav a {
  text-decoration: none;
  color: #000;
  line-height: 30px;
}
footer .footer-flex {
  width: 90%;
  display: flex;
  padding: 0px 0px 0px;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 999px) {
  footer .footer-flex {
    display: block;
  }
}
footer .footer-flex .footer-logo {
  width: 68px;
}
footer .footer-flex .footer-inner-1 .footer-logo {
  width: 300px;
}
@media only screen and (max-width: 999px) {
  footer .footer-flex .footer-inner-1 .footer-logo {
    width: 150px;
  }
}
footer .footer-flex .footer-inner-1 .sns-waku {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 999px) {
  footer .footer-flex .footer-inner-1 .sns-waku {
    margin-bottom: 5%;
  }
}
footer .footer-flex .footer-inner-1 .sns-waku .sns-inner {
  width: 30px;
  margin-right: 20px;
  margin-top: 20px;
}
@media only screen and (max-width: 999px) {
  footer .footer-flex .footer-inner-1 .sns-waku .sns-inner {
    width: 15px;
  }
}
footer .footer-flex .footer-inner-2 {
  flex-wrap: wrap;
  margin-left: 50px;
  width: 109px;
}
@media only screen and (max-width: 999px) {
  footer .footer-flex .footer-inner-2 {
    margin: 1% auto;
    width: auto;
  }
}
footer .footer-flex .footer-inner-2-inner-bun {
  color: white;
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
}
footer .footer-flex .footer-inner-3 {
  width: 300px;
}
@media only screen and (max-width: 999px) {
  footer .footer-flex .footer-inner-3 {
    margin: 1% auto;
    width: auto;
  }
}

.top-img {
  width: 100%;
  height: auto;
  position: relative;
}
.top-img .top-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
.top-img .top-title .big-title {
  font-size: 5vw;
  letter-spacing: 0.5vw;
  color: white;
  position: relative;
}
.top-img .top-title .big-title::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid white;
  width: 210px;
  top: 114%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.top-img .top-title .big-title::before {
  position: absolute;
  content: "";
  border-bottom: 3px solid white;
  width: 100px;
  top: 114%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.top-img .top-title .big-title-ja {
  font-size: 3.3vw;
  letter-spacing: 0.5vw;
  color: white;
  position: relative;
}
.top-img .top-title .big-title-ja::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid white;
  width: 210px;
  top: 114%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.top-img .top-title .big-title-ja::before {
  position: absolute;
  content: "";
  border-bottom: 3px solid white;
  width: 100px;
  top: 114%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.top-img .top-title .small-title {
  font-size: 2vw;
  letter-spacing: 0vw;
  color: white;
  text-align: center;
  margin-top: 30px;
}

.middle-content-section {
  background-color: #13242F;
  margin: -10px auto 0px;
}
.middle-content-section-inner {
  max-width: 1000px;
  width: 90%;
  padding: 70px 0px 30px;
  margin: auto;
}
@media only screen and (max-width: 999px) {
  .middle-content-section-inner {
    padding: 20% 0px 0px;
  }
}
.middle-content-section-inner .content-title1 {
  font-size: 30px;
  color: #B7A289;
  text-align: center;
}
@media only screen and (max-width: 999px) {
  .middle-content-section-inner .content-title1 {
    font-size: 18px;
  }
}
.middle-content-section-inner .content-title2 {
  font-size: 18px;
  color: #B7A289;
  text-align: center;
  margin: 30px auto;
  line-height: 30px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section-inner .content-title2 {
    font-size: 14px;
    line-height: 25px;
  }
}
.middle-content-section .flex-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0px auto;
  padding-bottom: 50px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .flex-content {
    padding-bottom: 10%;
  }
}
.middle-content-section .flex-content-inner {
  width: 450px;
  margin: 25px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .flex-content-inner {
    width: 90%;
    margin: 10% auto;
  }
}
.middle-content-section .flex-content-inner .content-title1 {
  font-size: 18px;
  color: white;
  text-align: left;
  margin-top: 10px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .flex-content-inner .content-title1 {
    font-size: 15px;
  }
}
.middle-content-section .flex-content-inner .content-title2 {
  font-size: 14px;
  color: white;
  text-align: left;
  margin: 10px auto 0px;
  line-height: 24px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .flex-content-inner .content-title2 {
    font-size: 13px;
  }
}
.middle-content-section .flex-content-2 {
  display: flex;
  justify-content: center;
  margin: 0px auto;
  padding-bottom: 5px;
}
.middle-content-section .flex-content-2-inner {
  width: 500px;
  margin: 0px;
}
.middle-content-section .flex-content-2-inner .content-title1 {
  font-size: 18px;
  color: white;
  text-align: left;
  margin-top: 10px;
  background-color: #03161D;
  padding: 10px 10px;
}
.middle-content-section .flex-content-2-inner .content-title2 {
  font-size: 14px;
  color: white;
  text-align: left;
  margin: 10px auto 0px;
  line-height: 24px;
  padding-left: 10px;
}
.middle-content-section .flex-content-2 .content-title3 {
  font-size: 18px;
  color: white;
  text-align: left;
  margin-top: 0px;
  background-color: #4D4D4D;
  padding: 10px 10px;
  width: 100%;
}
.middle-content-section .flex-content-2 .content-title3-1 {
  margin-top: 20px;
}
.middle-content-section .about-inner {
  width: 1000px;
  margin: auto;
  padding: 100px 0px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .about-inner {
    width: 90%;
    padding: 10% 0px;
  }
}
.middle-content-section .about-inner .flex-content-3 {
  display: flex;
  justify-content: center;
  margin: 0px auto;
  padding-bottom: 5px;
  border-top: 1px solid white;
  border-bottom: none;
  justify-content: flex-start;
  padding: 20px;
  color: white;
  align-items: center;
}
.middle-content-section .about-inner .flex-content-3 .content-title1 {
  font-size: 14px;
  color: white;
  text-align: left;
  padding: 0px 10px;
  width: 300px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .about-inner .flex-content-3 .content-title1 {
    width: 25%;
  }
}
.middle-content-section .about-inner .flex-content-3 .content-title2 {
  font-size: 14px;
  color: white;
  text-align: left;
  line-height: 24px;
  width: 700px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .about-inner .flex-content-3 .content-title2 {
    width: 80%;
  }
}
.middle-content-section .about-inner .flex-content-3 .content-title3 {
  font-size: 18px;
  color: white;
  text-align: left;
  margin-top: 0px;
  background-color: #4D4D4D;
  padding: 10px 10px;
  width: 100%;
}
.middle-content-section .about-inner .flex-content-3 .content-title3-1 {
  margin-top: 20px;
}
.middle-content-section .bg-kabegami {
  background: url(../img/front/top-back.jpg);
  padding: 100px 0px;
  background-size: cover;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami {
    padding: 10% 0px;
  }
}
.middle-content-section .bg-kabegami-inner {
  max-width: 90%;
  width: 1000px;
  padding: 70px 0px 30px;
  margin: auto;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner {
    width: 100%;
    padding: 10% 0 10%;
  }
}
.middle-content-section .bg-kabegami-inner .content-title1 {
  font-size: 30px;
  color: #B7A289;
  text-align: center;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .content-title1 {
    font-size: 18px;
  }
}
.middle-content-section .bg-kabegami-inner .content-title2 {
  font-size: 18px;
  color: #B7A289;
  text-align: center;
  margin: 30px auto;
  line-height: 30px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .content-title2 {
    font-size: 14px;
    line-height: 25px;
  }
}
.middle-content-section .bg-kabegami-inner .contnet-img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.middle-content-section .bg-kabegami-inner-flexbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 10px auto;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner-flexbox {
    display: block;
  }
}
.middle-content-section .bg-kabegami-inner-flexbox .content-title1 {
  font-size: 20px;
  color: white;
  padding: 20px;
  background-color: #566B77;
  border: 1px solid white;
  text-align: center;
  display: block;
  width: 200px;
  letter-spacing: 2px;
  margin-right: 20px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner-flexbox .content-title1 {
    width: auto;
    font-size: 15px;
    padding: 5px 10px;
    display: inline-block;
    margin: 0px auto 10px;
    text-align: left;
  }
}
.middle-content-section .bg-kabegami-inner-flexbox .content-title2 {
  font-size: 18px;
  color: #B7A289;
  text-align: center;
  margin: 30px auto;
  line-height: 30px;
  text-align: left;
  width: 780px;
  margin: 0px auto;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner-flexbox .content-title2 {
    font-size: 14px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner-flexbox .content-title2 {
    width: 100%;
  }
}
.middle-content-section .bg-kabegami-inner-flexbox .content-title3 {
  font-size: 20px;
  color: white;
  padding: 20px;
  background-color: #3F4650;
  border: 1px solid white;
  text-align: center;
  display: block;
  width: 200px;
  letter-spacing: 2px;
  margin-right: 20px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner-flexbox .content-title3 {
    width: auto;
    font-size: 15px;
    padding: 5px 10px;
    display: inline-block;
    margin: 10px auto 10px;
    text-align: left;
  }
}
.middle-content-section .bg-kabegami-inner .flex-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto 0px;
  padding-bottom: 50px;
  width: 1400px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .flex-content {
    display: block;
    margin: 10% auto 0px;
    padding-bottom: 0px;
    width: 100%;
  }
}
.middle-content-section .bg-kabegami-inner .flex-content-inner {
  width: 450px;
  margin: 25px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .flex-content-inner {
    width: 100%;
    margin: auto;
  }
}
.middle-content-section .bg-kabegami-inner .flex-content-inner .content-title1 {
  font-size: 18px;
  color: white;
  text-align: left;
  margin-top: 10px;
  border-left: 2px solid white;
  padding-left: 20px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .flex-content-inner .content-title1 {
    font-size: 16px;
    margin-top: 20px;
  }
}
.middle-content-section .bg-kabegami-inner .flex-content-inner .content-title2 {
  font-size: 14px;
  color: white;
  text-align: left;
  margin: 10px auto 0px;
  line-height: 24px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .flex-content-inner .content-title2 {
    font-size: 13px;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku {
  display: flex;
  margin: 50px auto;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku {
    display: block;
    margin: 10% auto;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-left {
  width: 49%;
  margin-right: 1%;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-left {
    width: 100%;
    margin: auto;
    margin-bottom: 10%;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-left iframe {
  width: 100%;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-left iframe {
    aspect-ratio: 1/0.7;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-right {
  width: 45%;
  margin-left: 5%;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-right {
    width: 100%;
    margin: auto;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-right .title-1 {
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-right .title-1 {
    font-size: 14px;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-right .title-2 {
  font-size: 18px;
  margin-bottom: 30px;
  color: white;
  margin-top: 20px;
  line-height: 35px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-right .title-2 {
    font-size: 14px;
    list-style: 25px;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-right .shozai-title {
  font-size: 18px;
  position: relative;
  color: white;
  margin-top: 20px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-right .shozai-title {
    font-size: 14px;
    list-style: 25px;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-right .shozai-title::after {
  content: "";
  position: absolute;
  width: 82%;
  border-bottom: 1px solid white;
  top: 15px;
  right: 0px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-right .shozai-title::after {
    top: 8px;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-right .acsess-title {
  font-size: 18px;
  position: relative;
  color: white;
  margin-top: 108px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-right .acsess-title {
    font-size: 14px;
    list-style: 25px;
    margin-top: 10%;
  }
}
.middle-content-section .bg-kabegami-inner .map-felx-waku-right .acsess-title::after {
  content: "";
  position: absolute;
  width: 64%;
  border-bottom: 1px solid white;
  top: 15px;
  right: 0px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .map-felx-waku-right .acsess-title::after {
    top: 8px;
  }
}
.middle-content-section .bg-kabegami-inner .kengaku-btn {
  width: 500px;
  height: 60px;
  background: #B7A289;
  color: black;
  position: relative;
  text-align: center;
  display: block;
  line-height: 60px;
  margin: auto;
  font-size: 20px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .kengaku-btn {
    margin: auto 0px 0px 5%;
    font-size: 16px;
    width: 80%;
  }
}
@media only screen and (max-width: 375px) {
  .middle-content-section .bg-kabegami-inner .kengaku-btn {
    font-size: 16px;
    width: 80%;
  }
}
@media only screen and (max-width: 320px) {
  .middle-content-section .bg-kabegami-inner .kengaku-btn {
    font-size: 16px;
    width: 80%;
  }
}
.middle-content-section .bg-kabegami-inner .kengaku-btn::after {
  position: absolute;
  content: "";
  box-sizing: border-box;
  width: 3px;
  height: 60px;
  border: 29px solid transparent;
  border-left: 32px solid #B7A289;
  top: 0px;
  right: -61px;
}
@media only screen and (max-width: 999px) {
  .middle-content-section .bg-kabegami-inner .kengaku-btn::after {
    right: -59px;
  }
}

.padding-bottom100 {
  padding-bottom: 100px;
}

.lifestyle_back {
  background-color: #13242F;
}

@media only screen and (max-width: 999px) {
  .lifestyle_position {
    position: relative;
  }
}

.lifestyle_top {
  background-image: url(../img/lifestyle/top.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  display: block;
  margin: 0px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lifestyle_top {
    background-image: url(../img/lifestyle/sm/top.webp);
  }
}
.lifestyle_top .top-title {
  position: sticky;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}
@media only screen and (max-width: 999px) {
  .lifestyle_top .top-title {
    position: absolute;
    left: 38%;
    top: 30%;
  }
}

.lifestyle_1 {
  background-image: url(../img/lifestyle/img-2.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  display: block;
  margin: 0px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lifestyle_1 {
    background-image: url(../img/lifestyle/sm/img-1.webp);
  }
}
.lifestyle_1 .migi-ue {
  position: absolute;
  top: 100px;
  right: 50px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_1 .migi-ue {
    top: 5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.6784313725);
    padding: 3%;
  }
}
.lifestyle_1 .migi-ue .title {
  font-size: 30px;
  margin: auto;
  padding: 0px 0px 20px;
  text-align: right;
  color: black;
  position: relative;
  letter-spacing: 2px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_1 .migi-ue .title {
    font-size: 22px;
  }
}
.lifestyle_1 .migi-ue .title::after {
  width: 61px;
  border-bottom: 1px solid black;
  content: "";
  bottom: 10px;
  right: 0px;
  position: absolute;
}
.lifestyle_1 .migi-ue .bun {
  font-size: 18px;
  color: black;
  text-align: right;
  line-height: 33px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_1 .migi-ue .bun {
    font-size: 13px;
    line-height: 30px;
  }
}

.lifestyle_2 {
  background-image: url(../img/lifestyle/img-1.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  display: block;
  margin: 0px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lifestyle_2 {
    background-image: url(../img/lifestyle/sm/img-2.webp);
    position: relative;
  }
}
.lifestyle_2 .migi-ue {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_2 .migi-ue {
    bottom: 5%;
    right: 5%;
    background: rgba(255, 255, 255, 0.6784313725);
    padding: 3%;
  }
}
.lifestyle_2 .migi-ue .title {
  font-size: 30px;
  margin: auto;
  padding: 0px 0px 20px;
  text-align: right;
  color: white;
  position: relative;
  letter-spacing: 2px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_2 .migi-ue .title {
    font-size: 22px;
    color: black;
  }
}
.lifestyle_2 .migi-ue .title::after {
  width: 61px;
  border-bottom: 1px solid white;
  content: "";
  bottom: 10px;
  right: 0px;
  position: absolute;
}
@media only screen and (max-width: 999px) {
  .lifestyle_2 .migi-ue .title::after {
    border-bottom: 1px solid black;
  }
}
.lifestyle_2 .migi-ue .bun {
  font-size: 18px;
  color: white;
  text-align: right;
  line-height: 33px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_2 .migi-ue .bun {
    font-size: 13px;
    line-height: 30px;
    color: black;
  }
}

.lifestyle_3 {
  background-image: url(../img/lifestyle/img-3.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  display: block;
  margin: 0px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lifestyle_3 {
    background-image: url(../img/lifestyle/sm/img-3.webp);
    position: relative;
  }
}
.lifestyle_3 .migi-ue {
  position: absolute;
  top: 100px;
  left: 50px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_3 .migi-ue {
    top: 5%;
    left: 5%;
    background: rgba(255, 255, 255, 0.6784313725);
    padding: 3%;
  }
}
.lifestyle_3 .migi-ue .title {
  font-size: 30px;
  margin: auto;
  padding: 0px 0px 20px;
  text-align: left;
  color: black;
  position: relative;
  letter-spacing: 2px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_3 .migi-ue .title {
    font-size: 22px;
  }
}
.lifestyle_3 .migi-ue .title::after {
  width: 61px;
  border-bottom: 1px solid black;
  content: "";
  bottom: 10px;
  left: 0px;
  position: absolute;
}
@media only screen and (max-width: 999px) {
  .lifestyle_3 .migi-ue .title::after {
    border-bottom: 1px solid black;
  }
}
.lifestyle_3 .migi-ue .bun {
  font-size: 18px;
  color: black;
  text-align: left;
  line-height: 33px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_3 .migi-ue .bun {
    font-size: 13px;
    line-height: 30px;
  }
}

.lifestyle_4 {
  background-image: url(../img/lifestyle/img-4.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  display: block;
  margin: 0px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lifestyle_4 {
    background-image: url(../img/lifestyle/sm/img-4.webp);
    position: relative;
  }
}
.lifestyle_4 .migi-ue {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_4 .migi-ue {
    bottom: 5%;
    left: 5%;
    background: rgba(255, 255, 255, 0.6784313725);
    padding: 3%;
  }
}
.lifestyle_4 .migi-ue .title {
  font-size: 30px;
  margin: auto;
  padding: 0px 0px 20px;
  text-align: left;
  color: white;
  position: relative;
  letter-spacing: 2px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_4 .migi-ue .title {
    font-size: 22px;
    color: black;
  }
}
.lifestyle_4 .migi-ue .title::after {
  width: 61px;
  border-bottom: 1px solid white;
  content: "";
  bottom: 10px;
  left: 0px;
  position: absolute;
}
@media only screen and (max-width: 999px) {
  .lifestyle_4 .migi-ue .title::after {
    border-bottom: 1px solid black;
  }
}
.lifestyle_4 .migi-ue .bun {
  font-size: 18px;
  color: white;
  text-align: left;
  line-height: 33px;
}
@media only screen and (max-width: 999px) {
  .lifestyle_4 .migi-ue .bun {
    font-size: 13px;
    line-height: 30px;
    color: black;
  }
}

.lifestyle_5 {
  background-image: url(../img/lifestyle/img-5.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  display: block;
  margin: 0px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lifestyle_5 {
    background-image: url(../img/lifestyle/sm/img-5.webp);
  }
}

.lifestyle_6 {
  background-image: url(../img/lifestyle/img-6.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  display: block;
  margin: 0px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lifestyle_6 {
    background-image: url(../img/lifestyle/sm/img-6.webp);
  }
}

.lifestyle_7 {
  background-image: url(../img/lifestyle/img-7.webp);
  background-size: cover;
  width: 100vw;
  height: 100vh;
  background-repeat: no-repeat;
  z-index: 2;
  position: absolute;
  display: block;
  margin: 0px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .lifestyle_7 {
    background-image: url(../img/lifestyle/sm/img-7.webp);
  }
}

.contact-shita-waku {
  width: 1000px;
  margin: 50px auto;
  color: #6d6a6a;
}
@media only screen and (max-width: 999px) {
  .contact-shita-waku {
    width: 100%;
  }
}
.contact-shita-waku-inner {
  border: 1px solid gray;
  padding: 10px;
  font-size: 13px;
  height: 300px;
  overflow-y: scroll;
}
.contact-shita-waku .contact-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-shita-waku .contact-center {
  text-align: center;
}

.contact-under_line {
  border-bottom: 1px solid #a9a9a9;
  margin: 50px auto;
}

.process-title {
  letter-spacing: 7px;
}

.process-bg {
  padding: 50px 0px;
}
@media only screen and (max-width: 999px) {
  .process-bg {
    padding: 10% 5%;
  }
}
.process-bg:nth-child(odd) {
  background: none;
}
.process-bg:nth-child(even) {
  background: #0b141a;
}
.process-bg-inner {
  display: flex;
  width: 1000px;
  margin: auto;
  align-items: center;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner {
    display: block !important;
    width: 100%;
  }
}
.process-bg-inner .bun-content .title {
  font-size: 25px;
  letter-spacing: 3px;
  color: #AA9580;
  position: relative;
  padding-left: 20px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .bun-content .title {
    font-size: 20px;
  }
}
.process-bg-inner .bun-content .title:after {
  position: absolute;
  content: "";
  background-color: #AA9580;
  width: 2px;
  height: 73px;
  left: 0px;
  top: 0px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .bun-content .title:after {
    height: 54px;
  }
}
.process-bg-inner .bun-content .title2 {
  font-size: 25px;
  letter-spacing: 3px;
  color: #AA9580;
  position: relative;
  padding-left: 20px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .bun-content .title2 {
    font-size: 20px;
  }
}
.process-bg-inner .bun-content .title2:after {
  position: absolute;
  content: "";
  background-color: #AA9580;
  width: 2px;
  height: 100px;
  left: 0px;
  top: 0px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .bun-content .title2:after {
    height: 84px;
  }
}
.process-bg-inner .bun-content .bun {
  font-size: 14px;
  color: white;
  text-align: left;
  margin: 30px auto;
  line-height: 25px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .bun-content .bun {
    font-size: 13px;
  }
}
.process-bg-inner .img-2 {
  width: 36%;
  margin-left: 30px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-2 {
    width: 89%;
    margin: 0px 10% 0px -10%;
  }
}
.process-bg-inner .img-3 {
  width: 50%;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-3 {
    width: 90%;
    margin: 0 -10% 10% 15%;
  }
}
.process-bg-inner .img-4 {
  width: 145%;
  margin-left: 30px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-4 {
    width: 97%;
    margin: 0px 10% 0px -10%;
  }
}
.process-bg-inner .img-6 {
  width: 49%;
  margin-left: 30px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-6 {
    width: 100%;
    margin-left: 30px;
    margin: auto;
  }
}
.process-bg-inner .img-7 {
  width: 50%;
  margin-right: 30px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-7 {
    width: 80%;
    margin: 0 -15% 10% 25%;
  }
}
.process-bg-inner .img-8 {
  width: 61%;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-8 {
    width: 84%;
  }
}
.process-bg-inner .img-9 {
  width: 116%;
  margin-right: 40px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-9 {
    width: 80%;
    margin: 0 0% 10% 25%;
  }
}
.process-bg-inner .img-10 {
  width: 167%;
  margin-left: 30px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-10 {
    width: 100%;
    margin: auto;
  }
}
.process-bg-inner .img-11 {
  width: 80%;
  margin-left: 30px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-11 {
    width: 95%;
    margin: 10% 0 10% 10%;
    margin-right: -10%;
  }
}
.process-bg-inner .img-12 {
  width: 80%;
  margin-left: 30px;
}
.process-bg-inner .img-13 {
  width: 140%;
  margin-right: 30px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-13 {
    width: 100%;
    margin: 0px auto 10%;
  }
}
.process-bg-inner .img-14 {
  width: 91%;
  margin-left: 30px;
}
.process-bg-inner .img-15 {
  width: 110%;
  margin-right: 40px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-15 {
    width: 85%;
    margin: 10% -10% 10% 20%;
  }
}
.process-bg-inner .img-16 {
  width: 148%;
  margin-left: 30px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-16 {
    width: 100%;
    margin: auto;
  }
}
.process-bg-inner .img-17 {
  width: 110%;
  margin-right: 50px;
}
@media only screen and (max-width: 999px) {
  .process-bg-inner .img-17 {
    width: 90%;
    margin: 0 0% 10% 15%;
  }
}
.process-bg .space-between {
  justify-content: space-between;
}

/*========= 背景動画設定のCSS ===============*/
.pc-only {
  display: block !important;
}
@media only screen and (max-width: 999px) {
  .pc-only {
    display: none !important;
  }
}

.pc-br {
  display: block !important;
}
@media only screen and (max-width: 999px) {
  .pc-br {
    display: none !important;
  }
}

.sm-br {
  display: none !important;
}
@media only screen and (max-width: 999px) {
  .sm-br {
    display: block !important;
  }
}

.sm-only {
  display: none !important;
}
@media only screen and (max-width: 999px) {
  .sm-only {
    display: block !important;
  }
}

.font-bold {
  font-weight: 700;
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  width: 100%;
  height: 100vh;
  margin: auto;
}
@media only screen and (max-width: 999px) {
  body {
    width: 100%;
    position: unset;
  }
}

.border-bottom {
  border-bottom: 1px solid rgba(138, 146, 151, 0.6705882353);
  margin-bottom: 70px;
}
@media only screen and (max-width: 999px) {
  .border-bottom {
    margin-bottom: 20%;
  }
}

.main-content {
  margin: auto;
  width: 100%;
}
@media only screen and (max-width: 999px) {
  .main-content {
    width: 100%;
    margin: 0px auto;
    position: unset;
    transform: none;
  }
}

/* トップページのメッセージスタイル */
.hero-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 800px;
  width: auto;
  padding: 20px;
}
@media only screen and (max-width: 999px) {
  .hero-message {
    padding: 30px 20px;
    width: 95%;
    max-width: 600px;
  }
}

.hero-message h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 999px) {
  .hero-message h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.hero-message p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 999px) {
  .hero-message p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
  }
}

.hero-message .highlight {
  font-weight: 500;
  color: #e8f4f8;
}

.hero-message .signature {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 30px;
  opacity: 0.9;
}
@media only screen and (max-width: 999px) {
  .hero-message .signature {
    font-size: 1rem;
    margin-top: 20px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* 施工実績ページのスタイル */
.works-page {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 999px) {
  .works-page {
    padding: 10% 15px;
  }
}

.works-header {
  text-align: center;
  margin-bottom: 60px;
}
.works-header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
}
@media only screen and (max-width: 999px) {
  .works-header h1 {
    font-size: 2rem;
  }
}
.works-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 999px) {
  .works-grid {
    gap: 4%;
    display: flex;
    flex-wrap: wrap;
  }
}

.works-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 500px;
}
@media only screen and (max-width: 999px) {
  .works-item {
    width: 48%;
    border-radius: 5px;
    margin-bottom: 5%;
  }
}
.works-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.works-image {
  position: relative;
  height: 321px;
  overflow: hidden;
}
@media only screen and (max-width: 999px) {
  .works-image {
    height: auto;
  }
}
.works-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.works-item:hover .works-image img {
  transform: scale(1.05);
}
.works-image .no-image {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
}

.works-content {
  padding: 25px;
}
@media only screen and (max-width: 999px) {
  .works-content {
    padding: 0px;
  }
}
.works-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}
@media only screen and (max-width: 999px) {
  .works-content h3 {
    font-size: 0.7rem;
    padding: 2%;
  }
}
.works-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.works-link {
  display: inline-block;
  padding: 10px 20px;
  background: #13252f;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.works-link:hover {
  background: #1a3a4a;
}

.no-works {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 1.1rem;
}

/* ページネーション */
.works-page .wp-pagenavi,
.works-page .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}
@media only screen and (max-width: 999px) {
  .works-page .wp-pagenavi,
  .works-page .pagination {
    margin-top: 40px;
    gap: 8px;
  }
}

.works-page .page-numbers,
.works-page .pagination a,
.works-page .pagination span {
  display: inline-block;
  padding: 10px 15px;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}
@media only screen and (max-width: 999px) {
  .works-page .page-numbers,
  .works-page .pagination a,
  .works-page .pagination span {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
}
.works-page .page-numbers:hover,
.works-page .pagination a:hover,
.works-page .pagination span:hover {
  background: #13252f;
  color: #fff;
  border-color: #13252f;
}
.works-page .page-numbers.current,
.works-page .pagination a.current,
.works-page .pagination span.current {
  background: #13252f;
  color: #fff;
  border-color: #13252f;
}

.works-page .prev,
.works-page .next {
  font-weight: 500;
}

/* 施工実績詳細ページ */
.works-detail {
  padding: 160px 20px;
  max-width: 1000px;
  margin: 200px auto;
  margin-top: 548px;
}
@media only screen and (max-width: 999px) {
  .works-detail {
    padding: 40px 15px;
    margin-top: 0px;
  }
}

.works-detail-header {
  text-align: center;
  margin-bottom: 50px;
}
.works-detail-header h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #333;
}
@media only screen and (max-width: 999px) {
  .works-detail-header h1 {
    font-size: 2rem;
  }
}
.works-detail-header .works-excerpt {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.works-detail-content {
  margin-bottom: 50px;
}

.works-description {
  margin-bottom: 50px;
}
.works-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.works-gallery h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.works-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
@media only screen and (max-width: 999px) {
  .works-images-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.works-gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.works-gallery-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.works-gallery-image:hover {
  transform: scale(1.02);
}

.works-navigation {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.works-navigation .back-to-works {
  display: inline-block;
  padding: 12px 25px;
  background: #13252f;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}
.works-navigation .back-to-works:hover {
  background: #1a3a4a;
}

/* 画像モーダル */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: color 0.3s ease;
}
.modal-close:hover {
  color: #ccc;
}
@media only screen and (max-width: 999px) {
  .modal-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.modal-nav:active {
  transform: translateY(-50%) scale(0.95);
  transition: all 0.1s ease;
}
@media only screen and (max-width: 999px) {
  .modal-nav {
    padding: 12px 16px;
    font-size: 20px;
    width: 40px;
    height: 40px;
  }
}
.modal-nav::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all 0.2s ease;
  display: block;
}

.modal-prev {
  left: 30px;
}
@media only screen and (max-width: 999px) {
  .modal-prev {
    left: 15px;
  }
}
.modal-prev::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.modal-next {
  right: 30px;
}
@media only screen and (max-width: 999px) {
  .modal-next {
    right: 15px;
  }
}
.modal-next::before {
  transform: rotate(45deg);
  margin-right: 2px;
}

.modal-image-container {
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 999px) {
  .modal-image-container {
    max-width: 95%;
    max-height: 80%;
  }
}

#modal-image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 25px;
  z-index: 10000;
}
@media only screen and (max-width: 999px) {
  .modal-counter {
    bottom: 20px;
    font-size: 16px;
    padding: 8px 16px;
  }
}

/* ギャラリー画像のホバー効果を強化 */
.works-gallery-image {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.works-gallery-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* トップページ最新施工実績セクション */
.latest-works {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 999px) {
  .latest-works {
    padding: 60px 15px;
  }
}

.works-section-header {
  text-align: center;
  margin-bottom: 50px;
}
.works-section-header h2 {
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: #333;
}
@media only screen and (max-width: 999px) {
  .works-section-header h2 {
    font-size: 1.8rem;
  }
}
.works-section-header p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.latest-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 999px) {
  .latest-works-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.latest-works-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.latest-works-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.latest-works-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.latest-works-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.latest-works-item:hover .latest-works-image img {
  transform: scale(1.05);
}
.latest-works-image .no-image {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
}

.latest-works-content {
  padding: 20px;
}
.latest-works-content h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
  line-height: 1.4;
}
.latest-works-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.works-view-all {
  text-align: center;
}
.works-view-all .view-all-button {
  display: inline-block;
  padding: 12px 30px;
  background: #13252f;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}
.works-view-all .view-all-button:hover {
  background: #1a3a4a;
}

.no-works-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 1rem;
}

/* About Us ページのスタイル */
.about-header {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  position: relative;
  height: 30vh;
}
@media only screen and (max-width: 999px) {
  .about-header {
    height: auto;
  }
}
.about-header img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-content {
  background: #fff;
  padding: 80px 0;
}
@media only screen and (max-width: 999px) {
  .about-content {
    padding: 60px 0;
    background: none;
  }
}

.content-wrapper {
  max-width: 1049px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 999px) {
  .content-wrapper {
    padding: 0 15px;
  }
}

.about-section {
  margin-bottom: 60px;
}
.about-section:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 999px) {
  .about-section {
    margin-bottom: 50px;
  }
}
.about-section .about-content-flex {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}
.about-section .about-content-flex-left {
  width: 20%;
}
.about-section .about-content-flex-right {
  width: 80%;
}
.about-section .jyusho {
  margin-top: 0px;
  margin-bottom: 0px;
}
.about-section .jyosoh-1 {
  margin-top: 30px;
  margin-bottom: 0px;
}

.about-section h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media only screen and (max-width: 999px) {
  .about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}

.about-section h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media only screen and (max-width: 999px) {
  .about-section h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
}

.about-section p {
  font-size: 14px;
  line-height: 30px;
  color: #555;
  margin-bottom: 20px;
}
.about-section p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 999px) {
  .about-section p {
    font-size: 0.75rem;
    line-height: 2.5;
  }
}
@media only screen and (max-width: 999px) {
  .about-section p a {
    font-size: 0.75rem;
    line-height: 2.5;
  }
}

.profile-name {
  font-weight: 500;
  color: #333;
  font-size: 1.1rem;
}
@media only screen and (max-width: 999px) {
  .profile-name {
    font-size: 1rem;
  }
}

/* 2カラムレイアウト */
.about-section.two-column {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
@media only screen and (max-width: 999px) {
  .about-section.two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.left-column {
  top: 100px;
}
@media only screen and (max-width: 999px) {
  .left-column {
    position: static;
    width: 60%;
    margin: auto;
  }
}
.left-column .left-column-title {
  font-size: 15px;
}
.left-column .left-title-pc {
  font-size: 15px;
  text-align: center;
  display: block;
}
.left-column .left-title-sm {
  font-size: 0.7rem;
  position: relative;
  text-align: center;
  display: block;
  font-size: 15px;
}
.left-column .left-title-sm::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 40px;
  height: 1px;
  background: #b2adac;
}
.left-column .left-title-sm::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 0;
  width: 40px;
  height: 1px;
  background: #b2adac;
}

.right-column {
  padding-left: 20px;
}
@media only screen and (max-width: 999px) {
  .right-column {
    padding-left: 0;
    width: 90%;
    margin: auto;
  }
}
.right-column .title-about {
  font-size: 18px;
  margin-bottom: 30px;
}

/* 左カラムのタイトルスタイル */
.left-column h2,
.left-column h3 {
  margin-bottom: 0;
  position: relative;
}
.left-column h2::after,
.left-column h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #13252f;
}

.left-column h2 {
  font-size: 2rem;
}
@media only screen and (max-width: 999px) {
  .left-column h2 {
    font-size: 1.6rem;
  }
}

.left-column h3 {
  font-size: 1.3rem;
}
@media only screen and (max-width: 999px) {
  .left-column h3 {
    font-size: 1.1rem;
  }
}

/*header設定*/
#header {
  position: relative; /*h1の中央寄せ配置の起点とするためのrelative*/
}

.font-japanease {
  font-family: "Noto Serif JP", serif;
}

.font-english {
  font-family: "Hedvig Letters Serif", serif;
}

#video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#video {
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

#top-image {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 999px) {
  #top-image {
    height: 101vh;
    background-size: cover;
  }
}

.top-bg-fixed {
  position: fixed;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: -1;
  background-color: #13252f;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  aspect-ratio: 1/2;
  background: rgba(0, 0, 0, 0);
  transition: background 1s; /* Adjust as needed */
}
@media only screen and (max-width: 999px) {
  .overlay {
    height: auto;
    aspect-ratio: unset;
    background-size: cover;
    height: 100.3vh;
  }
}

.over-messeage {
  position: absolute;
  padding: 50px;
  height: 50vh;
  color: white;
  text-align: center;
  opacity: 0;
  transition: opacity 2s;
  z-index: 10;
  top: 81%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

#logo {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 1s; /* Adjust as needed */
}

.top-img-2 {
  height: 100vh;
  width: 100vw;
  background-color: #13242F;
  background-size: cover;
  padding: 0px 0px 200px;
  z-index: 2;
  position: absolute;
  display: block;
  margin: -5px auto 0px;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .top-img-2 {
    height: auto;
    padding: 30% 0px 10%;
    position: unset;
  }
}
.top-img-2 .title {
  font-size: 30px;
  margin: auto;
  padding: 0px 0px 30px;
  text-align: center;
  color: #B7A289;
}
.top-img-2 .bun {
  font-size: 18px;
  color: #B7A289;
  text-align: center;
  line-height: 33px;
}
.top-img-2 .img-flex {
  display: flex;
  justify-content: space-between;
}
.top-img-2 .img-flex .img-1 {
  margin: 100px 0px 30px 0px;
  width: 55%;
}
.top-img-2 .img-flex .img-2 {
  margin: 50px 0px 0px 0px;
  width: 40%;
}
.top-img-2 .front-toawase {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media only screen and (max-width: 999px) {
  .top-img-2 .front-toawase {
    position: relative;
  }
}
.top-img-2 .front-toiawase-inner {
  width: 50%;
  background-color: rgba(3, 22, 29, 0.631372549);
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 23%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media only screen and (max-width: 999px) {
  .top-img-2 .front-toiawase-inner {
    position: relative;
    width: 100%;
  }
}
.top-img-2 .front-toiawase-inner-inner {
  padding: 20px;
  border: 1px solid #B7A289;
}
.top-img-2 .front-toiawase-inner-inner .toiawase-title {
  font-size: 1.7vw;
  color: white;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.4vw;
}
@media only screen and (max-width: 999px) {
  .top-img-2 .front-toiawase-inner-inner .toiawase-title {
    font-size: 3.3vw;
  }
}
.top-img-2 .front-toiawase-inner-inner .toiawase-bun {
  font-size: 1.2vw;
  text-align: center;
  line-height: 2vw;
  color: white;
}
@media only screen and (max-width: 999px) {
  .top-img-2 .front-toiawase-inner-inner .toiawase-bun {
    font-size: 2.8vw;
    line-height: 4vw;
  }
}

.sm-toiawase-waku {
  position: absolute;
  top: 50%;
  left: 31%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 84%;
}

.top-img-sm-top {
  padding-top: 10%;
}

.top-img-sm-top-2 {
  padding-top: 0%;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2s, transform 2s;
}

.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.toiawase-sm-oowaku {
  padding: 50% 0px 0px;
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.section-2-waku {
  margin: auto;
  width: 100%;
  margin-bottom: 108px;
}
.section-2-waku .inner-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 139px;
  width: 1000px;
  margin: 30px auto;
}
@media only screen and (max-width: 999px) {
  .section-2-waku .inner-flex {
    display: block;
    width: 100%;
  }
}
.section-2-waku .inner-flex .flex-img-1 {
  margin-top: auto;
  width: 75%;
  /* margin-left: 15%; */
  position: relative;
  margin-right: 37%;
}
@media only screen and (max-width: 999px) {
  .section-2-waku .inner-flex .flex-img-1 {
    width: 90%;
    margin-right: auto;
  }
}
.section-2-waku .inner-flex .flex-2 {
  position: absolute;
  width: 82%;
  background: rgba(4, 4, 6, 0.67);
  padding: 50px;
  color: #f9f9f9;
  top: 30%;
  right: -66%;
}
@media only screen and (max-width: 999px) {
  .section-2-waku .inner-flex .flex-2 {
    width: 90%;
    margin-right: auto;
    top: 85%;
    right: -6%;
    padding: 10px 20px;
  }
}
.section-2-waku-top-img {
  width: 100%;
  position: relative;
}
.section-2-waku-top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-2-waku-top-img .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 半透明の黒（透明度は0.3） */
  z-index: 1;
}
.section-2-waku-top-img .image-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept-section-2 .block {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
}
.concept-section-2 .block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.concept-section-2 .block .block-inner {
  display: inline-block;
  font-size: 16px;
  font-family: "Great Vibes", cursive;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 999px) {
  .concept-section-2 .block .block-inner {
    padding: 8%;
  }
}
.concept-section-2 .block .block-inner .big-title {
  font-size: 26px;
  z-index: 1;
  position: unset;
  transform: unset;
  margin-bottom: 0px;
  margin-top: 0px;
  text-align: center;
  margin-bottom: 50px;
}
.concept-section-2 .block .block-inner p {
  text-align: center;
  color: white;
  line-height: 2.2em;
}
.concept-section-2 .block .block-inner h2 {
  color: white;
}
.concept-section-2 .block-one {
  background-image: url(../img/1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  z-index: 100;
}
.concept-section-2 .block-two {
  background-image: url(../img/2.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 200;
}
.concept-section-2 .block-three {
  background-image: url(../img/3.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 300;
}

.concept-section {
  width: 100%;
  height: 60vh;
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox用 */
  -ms-overflow-style: none;
}
.concept-section .hero {
  background: url("../img/concept.png") center/cover no-repeat;
  height: 100vh;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  text-align: center;
  position: relative;
  overflow: hidden;
  position: fixed;
  height: 60vh;
  width: 100vh;
}
.concept-section .hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
  z-index: 2;
  pointer-events: none;
}
.concept-section .hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.concept-section .hero.dark-bg::after {
  background: rgba(0, 0, 0, 0.5);
}
.concept-section .section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.3s; /* 少し遅れて表示 */
}
.concept-section .section .big-title {
  font-size: 22px;
  z-index: 1;
  position: unset;
  transform: unset;
  margin-bottom: 30px;
  margin-top: 100px;
  text-align: center;
}
.concept-section .section p {
  text-align: center;
  color: white;
  line-height: 2.2em;
}
.concept-section .section h2 {
  color: white;
}
.concept-section .section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.concept-section .section.visible {
  opacity: 1;
  transform: translateY(0);
}
.concept-section .section p {
  font-size: 1rem;
  line-height: 2.2em;
}
.concept-section .image-block {
  margin: 40px 0;
  text-align: center;
}
.concept-section .image-block img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .concept-section .hero h1 {
    font-size: 2rem;
  }
}

.flex-end {
  justify-content: flex-end;
}

.shikaku-btn {
  border: 1px solid #B7A289;
  padding: 5px;
  text-align: center;
  font-size: 1.5vw;
  position: relative;
  color: #B7A289;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 10%;
  letter-spacing: 0.3vw;
}
@media only screen and (max-width: 999px) {
  .shikaku-btn {
    padding: 10px 30px;
    font-size: 4vw;
  }
}
.shikaku-btn::after {
  border-bottom: 1px solid #B7A289;
  position: absolute;
  right: -10%;
  top: 74%;
  width: 71px;
  content: "";
  transform: rotate(-45deg);
}

.shikaku-btn-4 {
  margin-top: 10%;
}

.news-section {
  background-image: url(../img/front/top-back.webp);
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 999px) {
  .news-section {
    position: unset;
    padding: 10% 0px;
    background-size: cover;
  }
}
.news-section-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 90%;
}
@media only screen and (max-width: 999px) {
  .news-section-inner {
    position: unset;
    -webkit-transform: unset;
    margin: auto;
  }
}
.news-section-inner .news-title {
  margin: auto;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news-section-inner .news-title .news-logo {
  width: 34px;
  height: 34px;
  display: block;
}
.news-section-inner .news-title .news-bun {
  font-size: 2.5vw;
  margin-left: 20px;
  letter-spacing: 0.5vw;
}
@media only screen and (max-width: 999px) {
  .news-section-inner .news-title .news-bun {
    font-size: 5vw;
  }
}
.news-section-inner .news-img {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 999px) {
  .news-section-inner .news-img {
    margin: 30px auto;
  }
}
.news-section-inner .news-img .insta-img {
  width: 22%;
  margin: 1.5%;
}
@media only screen and (max-width: 999px) {
  .news-section-inner .news-img .insta-img {
    width: 47%;
  }
}

#sb_instagram #sbi_load {
  display: none !important;
}
#sb_instagram .sb_instagram_header {
  display: none !important;
}

@media only screen and (max-width: 999px) {
  .about-us-sm {
    width: 100%;
    height: 100vh;
  }
  .about-us-sm::before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    background-image: url(../img/concept-back.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
}/*# sourceMappingURL=style.css.map */