@charset "UTF-8";
* {
  -webkit-tap-highlight-color: transparent;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
th,
td,
form,
figure {
  font-size: inherit;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

summary {
  display: block;
}

table {
  border-collapse: collapse;
  empty-cells: show;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  height: auto;
}

input,
textarea,
select {
  color: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

textarea {
  form-sizing: content;
}

button {
  color: inherit;
  font-family: inherit;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

select::-ms-expand {
  display: none;
}

[disabled] {
  cursor: not-allowed;
}

input[type=button]:not([disabled]), input[type=submit]:not([disabled]), input[type=reset]:not([disabled]),
button[type=button]:not([disabled]),
button[type=submit]:not([disabled]),
button[type=reset]:not([disabled]) {
  cursor: pointer;
}

img,
video {
  max-width: 100%;
  height: auto;
}

:root {
  --fontH: "Shippori Mincho", serif;
  --fontE: "Inter", sans-serif;
  --WW: 100vw;
  --DW:1440;
}
@media screen and (min-width: 1441px) {
  :root {
    --WW: 1440px;
  }
}
@media screen and (max-width: 750px) {
  :root {
    --DW:400;
  }
}
:root h1, :root h2, :root h3, :root h4, :root h5 {
  font-weight: normal;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  scroll-padding-top: 0.7rem;
}
@media screen and (max-width: 750px) {
  html {
    scroll-padding-top: 0.94rem;
  }
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow-x: hidden;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Noto Sans JP", sans-serif;
  color: #333;
  font-size: calc(15 / var(--DW) * var(--WW));
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.875;
  background-image: url(../imgs/lp/bg.png);
  background-size: 100% auto;
  opacity: 0;
  -webkit-animation: fadein 1s forwards;
          animation: fadein 1s forwards;
}
@media screen and (max-width: 750px) {
  body {
    line-height: 1.7857142857;
  }
}

@-webkit-keyframes fadein {
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  100% {
    opacity: 1;
  }
}
.sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: revert;
  }
}
.fadeIn {
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.fadeIn.scrollIn {
  opacity: 1;
}

.header {
  z-index: 999;
  height: 140px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
@media screen and (max-width: 750px) {
  .header {
    height: 80px;
  }
}

.header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__logo {
  width: calc(166 / var(--DW) * var(--WW));
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 999;
}
@media screen and (max-width: 750px) {
  .header__logo {
    width: 130px;
  }
}

.header__logo img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.header__logo a {
  position: relative;
  display: block;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.header__nav .cv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .header__nav .cv {
    display: none;
  }
}
.header__nav .cv::before {
  content: "";
  display: block;
  background-color: #fff;
  width: 1px;
  height: 17px;
  margin-right: 33px;
}
.header__nav .cv a {
  font-size: calc(14 / var(--DW) * var(--WW));
  color: #fff;
  margin-right: calc(40 / var(--DW) * var(--WW));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 750px) {
  .header__nav .cv a {
    color: #fff !important;
  }
}
.header__nav .cv a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 5px;
}
.header__nav .cv svg {
  width: calc(22 / var(--DW) * var(--WW));
  fill: none;
}
.header__nav .cv path {
  stroke: currentColor;
}

.sp_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 8px;
  width: 40px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 99;
}
.sp_btn span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.scroll.header {
  background-color: rgba(255, 255, 255, 0.75);
}
.scroll.header .header__logo img {
  opacity: 0;
}
.scroll.header .header__logo a::before {
  content: "";
  display: block;
  background: url(../img/logo_b.svg) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.scroll.header .header__nav a {
  color: #000;
}
.scroll.header .header__nav .cv::before {
  background-color: #000;
}
.scroll.header .sp_btn span {
  background-color: #000;
}

.header__menu {
  display: none;
}

.header__menu {
  background-color: #fff;
  width: calc(1324 / var(--DW) * var(--WW));
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  -webkit-box-shadow: 0px 6px 14px 0px rgba(78, 64, 52, 0.1), 0px 25px 25px 0px rgba(78, 64, 52, 0.09), 0px 57px 34px 0px rgba(78, 64, 52, 0.05), 0px 101px 41px 0px rgba(78, 64, 52, 0.01), 0px 159px 44px 0px rgba(78, 64, 52, 0);
          box-shadow: 0px 6px 14px 0px rgba(78, 64, 52, 0.1), 0px 25px 25px 0px rgba(78, 64, 52, 0.09), 0px 57px 34px 0px rgba(78, 64, 52, 0.05), 0px 101px 41px 0px rgba(78, 64, 52, 0.01), 0px 159px 44px 0px rgba(78, 64, 52, 0);
  max-width: 100%;
  border-radius: 0 0 0 20px;
  max-height: 100vh;
  overflow-y: auto;
}
@media screen and (max-width: 750px) {
  .header__menu {
    border-radius: 0;
  }
}

.header__menu_nav {
  padding: calc(200 / var(--DW) * var(--WW)) calc(165 / var(--DW) * var(--WW));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(120 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .header__menu_nav {
    padding: calc(160 / var(--DW) * var(--WW)) calc(40 / var(--DW) * var(--WW)) calc(40 / var(--DW) * var(--WW));
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.header__menu_nav a {
  font-family: var(--fontH);
  font-size: calc(28 / var(--DW) * var(--WW));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .header__menu_nav a {
    font-size: calc(24 / var(--DW) * var(--WW));
    border-bottom: 0.5px solid rgba(202, 198, 194, 0.5);
    padding: calc(30 / var(--DW) * var(--WW)) 0;
  }
}
.header__menu_nav a span {
  font-family: var(--fontE);
  font-size: calc(12 / var(--DW) * var(--WW));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  margin: 0 0 calc(20 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .header__menu_nav a span {
    font-size: calc(10 / var(--DW) * var(--WW));
    margin: 0 0 calc(10 / var(--DW) * var(--WW));
  }
}
.header__menu_nav a span::before {
  margin-right: 10px;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #D1C2AB;
  display: block;
  border-radius: 50%;
}

.header__menu_bottom {
  background-color: rgba(239, 235, 226, 0.3);
  padding: calc(80 / var(--DW) * var(--WW)) calc(114 / var(--DW) * var(--WW)) calc(60 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .header__menu_bottom {
    padding: calc(50 / var(--DW) * var(--WW)) calc(40 / var(--DW) * var(--WW));
  }
}
.header__menu_bottom .footer__bnrWrap {
  max-width: none;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .header__menu_bottom .footer__bnrWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.header__menu_bottom .header__menu_subnav {
  border-top: 1px solid #bebebc;
  padding-top: calc(30 / var(--DW) * var(--WW));
  margin-top: calc(60 / var(--DW) * var(--WW));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: calc(42 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .header__menu_bottom .header__menu_subnav {
    margin-top: calc(40 / var(--DW) * var(--WW));
  }
}
.header__menu_bottom .header__menu_subnav a {
  color: #aaa;
  font-size: calc(14 / var(--DW) * var(--WW));
  letter-spacing: 0.01em;
}
.header__menu_bottom .header__menu_subnav img {
  width: calc(26.14 / var(--DW) * var(--WW));
}

body.nav-on {
  overflow: hidden;
}

.nav-on {
  position: fixed;
  height: 100svh;
  overflow-y: hidden;
}
.nav-on .ov {
  height: 100svh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.nav-on .header__logo img {
  opacity: 0;
}
.nav-on .header__logo a::before {
  content: "";
  display: block;
  background: url(../img/logo_b.svg) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.nav-on .sp_btn {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-on .sp_btn span {
  translate: 0 0 0;
  background-color: #888888;
}
.nav-on .sp_btn span:first-child {
  rotate: 165deg;
}
.nav-on .sp_btn span:last-child {
  rotate: 15deg;
}

.footer {
  margin: calc(80 / var(--DW) * var(--WW)) 0 0;
  background-image: url(../img/footer_bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #FAF9F7;
  color: #6f6e6e;
  padding: calc(200 / var(--DW) * var(--WW)) 0 0;
}
@media screen and (max-width: 750px) {
  .footer {
    background-image: url(../img/sp_footer_bg.png);
    padding: calc(150 / var(--DW) * var(--WW)) 0 0;
  }
}

.footer__bnrWrap {
  max-width: calc(1126 / var(--DW) * var(--WW));
  width: 96%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .footer__bnrWrap {
    width: calc(310 / var(--DW) * var(--WW));
    max-width: none;
    padding: 0 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30 / var(--DW) * var(--WW));
  }
}

.footer__bnrWrap li {
  width: calc(337 / var(--DW) * var(--WW));
}

@media screen and (max-width: 750px) {
  .footer__bnrWrap li {
    width: auto;
  }
}
.footer__bnrWrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: calc(175 / var(--DW) * var(--WW));
  padding: calc(30 / var(--DW) * var(--WW)) 0 calc(35 / var(--DW) * var(--WW));
  background: #fff;
  border-radius: 10px;
  border: solid 1px rgba(78, 64, 52, 0.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
}

.footer__bnrWrap a:hover {
  background: rgb(51, 51, 51);
  color: #fff;
}

.footer__bnrWrap a .ico svg {
  display: block;
  margin: 0 auto;
  fill: none;
}

.footer__bnrWrap a .ico svg path {
  stroke: currentColor;
}

.footer__bnrWrap a .ico .en {
  margin: calc(10 / var(--DW) * var(--WW)) 0 0;
  font-size: calc(10 / var(--DW) * var(--WW));
  line-height: 1;
  text-align: center;
}

.footer__bnrWrap a .legend,
.footer__bnrWrap a .note {
  font-weight: 500;
  text-align: center;
}

.footer__bnrWrap a .legend {
  font-size: calc(16 / var(--DW) * var(--WW));
  margin: calc(10 / var(--DW) * var(--WW)) 0 0;
}

.footer__bnrWrap a .note {
  font-size: calc(14 / var(--DW) * var(--WW));
  line-height: 1;
}

.footer__bnrWrap a.tel .ico svg {
  width: calc(28 / var(--DW) * var(--WW));
}

.footer__bnrWrap a.reservation .ico svg {
  width: calc(35 / var(--DW) * var(--WW));
}

.footer__bnrWrap a.contact .ico svg {
  width: calc(35 / var(--DW) * var(--WW));
}

.footer_bottom {
  margin: calc(100 / var(--DW) * var(--WW)) auto 0;
  max-width: calc(1126 / var(--DW) * var(--WW));
  width: 96%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 60px;
}
@media screen and (max-width: 750px) {
  .footer_bottom {
    width: calc(310 / var(--DW) * var(--WW));
    margin: calc(80 / var(--DW) * var(--WW)) auto 0;
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30 / var(--DW) * var(--WW));
    padding-bottom: 100px;
  }
}

.footer_about p {
  font-size: calc(14 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .footer_about p {
    font-size: calc(13 / var(--DW) * var(--WW));
    text-align: center;
  }
}
.footer_about p + p {
  margin-top: 14px;
}

.footer_about__logo {
  mix-blend-mode: exclusion;
}
@media screen and (max-width: 750px) {
  .footer_about__logo {
    text-align: center;
    margin-bottom: calc(60 / var(--DW) * var(--WW));
  }
}
.footer_about__logo img {
  width: 190px;
}
@media screen and (max-width: 750px) {
  .footer_about__logo img {
    width: 170px;
  }
}

.footer_nav {
  width: calc(816 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .footer_nav {
    width: 100%;
  }
}

.footer_nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #bebebc;
  padding-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .footer_nav__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px 0;
  }
}
.footer_nav__top a {
  color: #6f6e6e;
}
@media screen and (max-width: 750px) {
  .footer_nav__top a {
    width: 50%;
    font-size: calc(14 / var(--DW) * var(--WW));
  }
}

.footer_nav__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding-top: 30px;
}
@media screen and (max-width: 750px) {
  .footer_nav__bottom {
    gap: 30px;
  }
}
.footer_nav__bottom a {
  color: #b4b3b2;
}
@media screen and (max-width: 750px) {
  .footer_nav__bottom a {
    font-size: calc(14 / var(--DW) * var(--WW));
  }
}

.footer_copy {
  border-top: 1px solid #bebebc;
}
@media screen and (max-width: 750px) {
  .footer_copy {
    display: none;
  }
}
.footer_copy span {
  color: #b4b3b2;
  max-width: calc(1126 / var(--DW) * var(--WW));
  width: 96%;
  margin: 0 auto;
  display: block;
  font-size: calc(14 / var(--DW) * var(--WW));
  padding: 10px 0;
}

.page_ttl {
  font-family: var(--fontH);
  font-size: calc(32 / var(--DW) * var(--WW));
  letter-spacing: 0.2em;
}
@media screen and (max-width: 750px) {
  .page_ttl {
    font-size: calc(24 / var(--DW) * var(--WW));
  }
}
.page_ttl span {
  font-family: var(--fontE);
  font-size: calc(12 / var(--DW) * var(--WW));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  margin: 0 0 calc(20 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .page_ttl span {
    font-size: calc(10 / var(--DW) * var(--WW));
  }
}

.page_ttl--maru span::before {
  margin-right: 10px;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #D1C2AB;
  display: block;
  border-radius: 50%;
}

.swiper {
  position: relative;
  overflow-y: visible;
}
.swiper .swiper-slide {
  position: relative;
  -webkit-filter: blur(4px);
          filter: blur(4px);
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .swiper .swiper-slide {
    margin-top: 10px;
  }
}
.swiper .swiper-slide-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  margin-top: 0;
}
.swiper .swiper-slide-active span {
  opacity: 1;
}

/* 幅・高さを指定 */
.swiper-button-prev,
.swiper-button-next {
  height: calc(60 / var(--DW) * var(--WW));
  width: calc(60 / var(--DW) * var(--WW));
}

/* 矢印を消す、画像に変更 */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: calc(60 / var(--DW) * var(--WW));
  width: calc(60 / var(--DW) * var(--WW));
  margin: auto;
  background-size: 100%;
  background-image: url(../img/catarog_arrow.svg);
}

.swiper-button-prev {
  left: 9% !important;
}

.swiper-button-next {
  right: 9% !important;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.swiper-pagination {
  top: calc(420 / var(--DW) * var(--WW)) !important;
}

.swiper-pagination-bullet {
  width: 40px;
  height: 2px;
  backgrod-color: rgba(78, 64, 52, 0.3019607843);
  border-radius: 0;
}
@media screen and (max-width: 750px) {
  .swiper-pagination-bullet {
    width: 20px;
  }
}

.swiper-pagination-bullet-active {
  background-color: #4E4034 !important;
}

.main {
  width: 100%;
  overflow: hidden;
}

.mv {
  position: relative;
}
.mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about {
  padding: calc(40 / var(--DW) * var(--WW)) 0 0;
  max-width: calc(974 / var(--DW) * var(--WW));
  width: 96%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .about {
    padding: calc(110 / var(--DW) * var(--WW)) 0 calc(40 / var(--DW) * var(--WW));
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .about .page_ttl span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about__dtl .txt {
  font-size: calc(18 / var(--DW) * var(--WW));
  letter-spacing: 0.05em;
  margin: calc(20 / var(--DW) * var(--WW)) 0 0;
  line-height: 2.4;
}
@media screen and (max-width: 750px) {
  .about__dtl .txt {
    font-size: calc(16 / var(--DW) * var(--WW));
  }
}

.about__img {
  padding: calc(50 / var(--DW) * var(--WW)) 0 0;
}

.catarog {
  padding: calc(80 / var(--DW) * var(--WW)) 0 0;
  background-image: url(../img/catarog_top_bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #FAF9F7;
  position: relative;
}
.catarog h2 {
  text-align: center;
  font-size: calc(28 / var(--DW) * var(--WW));
}
.catarog h2 span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.catarog_swiper {
  margin-top: 180px;
}
.catarog_swiper .swiper-slide span {
  position: absolute;
  top: calc(110 / var(--DW) * var(--WW) * -1);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.8s 0.2s;
  transition: 0.8s 0.2s;
  opacity: 0;
  width: calc(400 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .catarog_swiper .swiper-slide span {
    width: calc(300 / var(--DW) * var(--WW));
    top: calc(140 / var(--DW) * var(--WW) * -1);
  }
}
.catarog_swiper .swiper-slide-active span {
  opacity: 1;
}
.catarog_swiper .swiper-button-next, .catarog_swiper .swiper-button-prev {
  top: calc(190 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .catarog_swiper .swiper-button-next, .catarog_swiper .swiper-button-prev {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .catarog_swiper .swiper-pagination {
    top: calc(125 / var(--DW) * var(--WW)) !important;
  }
}

.applehouse {
  padding: calc(150 / var(--DW) * var(--WW)) 0;
  background-color: #FAF9F7;
}
@media screen and (max-width: 750px) {
  .applehouse {
    padding: calc(100 / var(--DW) * var(--WW)) 0 calc(80 / var(--DW) * var(--WW));
  }
}

.applehouse__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(1169 / var(--DW) * var(--WW));
  margin: 0 auto;
  gap: calc(77 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .applehouse__inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.applehouse_img {
  width: calc(580 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .applehouse_img {
    width: calc(382 / var(--DW) * var(--WW));
  }
}
.applehouse_img img:first-child {
  margin-left: auto;
  display: block;
  width: calc(468 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .applehouse_img img:first-child {
    width: calc(311 / var(--DW) * var(--WW));
    margin-left: 0;
  }
}
.applehouse_img img:last-child {
  display: block;
  width: calc(319 / var(--DW) * var(--WW));
  margin-top: calc(137 / var(--DW) * var(--WW) * -1);
}
@media screen and (max-width: 750px) {
  .applehouse_img img:last-child {
    width: calc(220 / var(--DW) * var(--WW));
    margin-top: calc(91 / var(--DW) * var(--WW) * -1);
    margin-left: calc(170 / var(--DW) * var(--WW));
  }
}

.applehouse_txt {
  text-align: center;
}
.applehouse_txt h2 {
  margin-bottom: calc(30 / var(--DW) * var(--WW));
}
.applehouse_txt h2 span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.applehouse_txt .list {
  margin-top: calc(40 / var(--DW) * var(--WW));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(20 / var(--DW) * var(--WW));
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(360 / var(--DW) * var(--WW));
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .applehouse_txt .list {
    margin-top: calc(60 / var(--DW) * var(--WW));
    width: 100%;
    gap: calc(30 / var(--DW) * var(--WW));
  }
}
.applehouse_txt .list li {
  width: calc(170 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .applehouse_txt .list li {
    width: calc(160 / var(--DW) * var(--WW));
  }
}
.applehouse_txt .list a {
  font-family: var(--fontH);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: calc(170 / var(--DW) * var(--WW));
  border: 1px solid rgba(78, 64, 52, 0.3);
  position: relative;
  border-radius: 50%;
  color: rgba(78, 64, 52, 0.3);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-property: border-color, background-color, color;
  transition-property: border-color, background-color, color;
  font-size: calc(18 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .applehouse_txt .list a {
    height: calc(160 / var(--DW) * var(--WW));
  }
}
.applehouse_txt .list a .num {
  font-size: calc(12 / var(--DW) * var(--WW));
  letter-spacing: 0.1em;
  line-height: 1;
  position: absolute;
  top: calc(40 / var(--DW) * var(--WW));
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: var(--fontE);
  white-space: nowrap;
  font-family: var(--fontE);
}
.applehouse_txt .list a .name {
  color: #202020;
  padding: calc(25 / var(--DW) * var(--WW)) 0 0;
  font-size: calc(18 / var(--DW) * var(--WW));
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.applehouse_txt .list a svg {
  width: calc(11 / var(--DW) * var(--WW));
  position: absolute;
  bottom: calc(15 / var(--DW) * var(--WW));
  left: calc(50% - 5.5 / var(--DW) * var(--WW));
  fill: none;
}
.applehouse_txt .list a svg path {
  stroke: currentColor;
}
.applehouse_txt .list a:hover {
  border-color: #202020;
  background-color: #202020;
  color: #fff;
}
.applehouse_txt .list a:hover .name {
  color: #fff;
}

.form {
  background-image: url(../img/form_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: calc(100 / var(--DW) * var(--WW)) 0;
}
@media screen and (max-width: 750px) {
  .form {
    background-image: url(../img/sp_form_bg.jpg);
  }
}
.form .page_ttl--maru span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form .page_ttl--maru span::before {
  background-color: #ffffff;
}

.form__inner {
  border-radius: 40px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(100px);
  width: 90%;
  max-width: calc(894 / var(--DW) * var(--WW));
  padding: calc(60 / var(--DW) * var(--WW)) calc(75 / var(--DW) * var(--WW)) calc(80 / var(--DW) * var(--WW));
  margin-left: auto;
  margin-right: auto;
  /* 何もかも無効にしたい場合 */
  /* ボタン系だけ無効化したい場合 */
  /* ラジオボタンやチェックボックスを無効化（正確には非表示）*/
}
@media screen and (max-width: 750px) {
  .form__inner {
    border-radius: 20px;
    padding: calc(30 / var(--DW) * var(--WW));
  }
}
.form__inner h2 {
  text-align: center;
}
.form__inner h2 + p {
  text-align: center;
  margin-top: calc(50 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .form__inner h2 + p {
    margin-top: calc(40 / var(--DW) * var(--WW));
    font-size: calc(14 / var(--DW) * var(--WW));
    text-align: left;
  }
}
.form__inner .wpcf7 {
  margin-top: calc(60 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .form__inner .wpcf7 {
    margin-top: calc(50 / var(--DW) * var(--WW));
  }
}
.form__inner dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
}
@media screen and (max-width: 750px) {
  .form__inner dl {
    gap: 10px 0;
  }
}
.form__inner dt {
  width: calc(189 / var(--DW) * var(--WW));
  position: relative;
  padding: 1em 0 0;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .form__inner dt {
    padding: 10px 0 0;
  }
}
.form__inner dt.required::after {
  content: " *";
  color: #C64A4A;
  font-size: 10px;
  vertical-align: top;
}
.form__inner dd {
  width: calc(535 / var(--DW) * var(--WW));
  gap: 15px;
}
.form__inner dd input {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 20px;
}
.form__inner dd textarea {
  width: 100%;
  border-radius: 5px;
  padding: 20px;
  border: none;
}
.form__inner .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 750px) {
  .form__inner .name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form__inner input, .form__inner select {
  -webkit-appearance: none;
  border: none;
}
.form__inner input[type=submit],
.form__inner input[type=button] {
  -webkit-appearance: none;
}
.form__inner input[type=radio],
.form__inner input[type=checkbox] {
  display: none; /* これだけ対策方法がちょっと違います */
}
.form__inner .policy {
  margin-top: 10px;
}
.form__inner .policy label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__inner .policy label::before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  height: 20px;
  background: #fff;
  display: block;
  border: 5px solid #fff;
}
.form__inner .policy label:has(input:checked)::before, .form__inner body.reservation .main .form .policy label:has(input:checked)::before, .form__inner body.single-event .main .form .policy label:has(input:checked)::before {
  background: currentColor;
}
.form__inner input[type=submit], .form__inner body.reservation .main .form input[type=submit], .form__inner body.single-event .main .form input[type=submit] {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 238px;
  height: 60px;
  margin: 40px auto 0;
  padding: 0 70px 0 0;
  border: 1px solid rgba(78, 64, 52, 0.5);
  border-radius: 5px;
  background: transparent url(../img/contact_sec_arrow.svg) calc(100% - 30px) 50%/16px auto no-repeat;
  font-weight: 500;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  background-color: #fff;
}

.concept {
  background-image: url(../img/concept_bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: #faf9f7;
  position: relative;
  text-align: center;
  padding: calc(290 / var(--DW) * var(--WW)) 0 calc(230 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .concept {
    padding: calc(80 / var(--DW) * var(--WW)) 0 calc(80 / var(--DW) * var(--WW));
    background-image: url(../img/sp_concept_bg.png);
  }
}
.concept h2 {
  font-family: var(--fontH);
  font-size: calc(36 / var(--DW) * var(--WW));
  letter-spacing: 0.2em;
  margin-bottom: calc(100 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .concept h2 {
    font-size: calc(22 / var(--DW) * var(--WW));
    margin-top: calc(50 / var(--DW) * var(--WW) * -1);
    margin-bottom: calc(40 / var(--DW) * var(--WW));
  }
}
.concept p {
  line-height: 2.3;
}
@media screen and (max-width: 750px) {
  .concept p {
    width: calc(322 / var(--DW) * var(--WW));
    margin-left: auto;
    margin-right: auto;
  }
}

.concept_pic_pc {
  position: absolute;
  left: 0;
  top: calc(90 / var(--DW) * var(--WW));
  width: 100vw;
  display: block;
}
@media screen and (max-width: 750px) {
  .concept_pic_pc {
    display: none;
  }
}
.concept_pic_pc img {
  width: 100%;
}

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

.container {
  position: relative;
  height: 80px;
  margin-top: calc(100 / var(--DW) * var(--WW));
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .container {
    height: 40px;
    margin-top: calc(50 / var(--DW) * var(--WW));
  }
}

.scrollbar {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 1px;
}

.scrollbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: rgba(78, 64, 52, 0.3019607843);
}
@media screen and (max-width: 750px) {
  .scrollbar::after {
    height: 40px;
  }
}

.scrollbar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: #4E4034;
  -webkit-animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
          animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
  z-index: 999;
}
@media screen and (max-width: 750px) {
  .scrollbar::before {
    height: 10px;
  }
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 80px;
  }
  100% {
    bottom: 0px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 80px;
  }
  100% {
    bottom: 0px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scroll_down {
  position: relative;
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(78, 64, 52, 0)), color-stop(80%, rgba(78, 64, 52, 0.8)), to(rgba(78, 64, 52, 0.8)));
  background: linear-gradient(180deg, rgba(78, 64, 52, 0) 0, rgba(78, 64, 52, 0.8) 80%, rgba(78, 64, 52, 0.8) 100%);
}

.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 110px;
  color: #000;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
}

.scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #ddd;
}

.scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #000;
}

.scroll_down a:hover {
  opacity: 0.5;
}

#type01 a:after {
  -webkit-animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.concept_point {
  margin-top: calc(280 / var(--DW) * var(--WW));
  font-family: var(--fontH);
}
@media screen and (max-width: 750px) {
  .concept_point {
    margin-top: calc(50 / var(--DW) * var(--WW));
  }
}
.concept_point h3 {
  font-size: calc(24 / var(--DW) * var(--WW));
  letter-spacing: 0.1em;
  margin-bottom: calc(50 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .concept_point h3 {
    font-size: calc(16 / var(--DW) * var(--WW));
  }
}
.concept_point h3 span {
  font-size: calc(18 / var(--DW) * var(--WW));
  display: block;
  margin-bottom: calc(10 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .concept_point h3 span {
    font-size: calc(12 / var(--DW) * var(--WW));
  }
}

.concept_pic_sp--2 {
  margin-top: calc(80 / var(--DW) * var(--WW));
}

.works .page_ttl {
  margin-left: calc(233 / var(--DW) * var(--WW));
  margin-bottom: calc(100 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .works .page_ttl {
    margin-left: calc(30 / var(--DW) * var(--WW));
    margin-bottom: calc(60 / var(--DW) * var(--WW));
  }
}

.works_swiper .swiper-slide {
  -webkit-filter: blur(1px);
          filter: blur(1px);
  opacity: 0.5;
}
.works_swiper .swiper-slide img {
  border-radius: 10px;
  -webkit-box-shadow: 0px 6px 14px 0px rgba(78, 64, 52, 0.1019607843), 0px 25px 25px 0px rgba(78, 64, 52, 0.0901960784), 0px 57px 34px 0px rgba(78, 64, 52, 0.0509803922), 0px 101px 41px 0px rgba(78, 64, 52, 0.0117647059), 0px 159px 44px 0px rgba(78, 64, 52, 0);
          box-shadow: 0px 6px 14px 0px rgba(78, 64, 52, 0.1019607843), 0px 25px 25px 0px rgba(78, 64, 52, 0.0901960784), 0px 57px 34px 0px rgba(78, 64, 52, 0.0509803922), 0px 101px 41px 0px rgba(78, 64, 52, 0.0117647059), 0px 159px 44px 0px rgba(78, 64, 52, 0);
}
.works_swiper .swiper-slide-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
.works_swiper .swiper-button-prev {
  left: 13% !important;
}
@media screen and (max-width: 750px) {
  .works_swiper .swiper-button-prev {
    display: none;
  }
}
.works_swiper .swiper-button-next {
  right: 13% !important;
}
@media screen and (max-width: 750px) {
  .works_swiper .swiper-button-next {
    display: none;
  }
}
.works_swiper .swiper-pagination {
  top: calc(550 / var(--DW) * var(--WW)) !important;
}
@media screen and (max-width: 750px) {
  .works_swiper .swiper-pagination {
    top: calc(160 / var(--DW) * var(--WW)) !important;
  }
}

.works_txtbox {
  text-align: center;
  margin-top: calc(120 / var(--DW) * var(--WW));
  margin-bottom: calc(150 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .works_txtbox {
    margin-top: calc(70 / var(--DW) * var(--WW));
    margin-bottom: calc(100 / var(--DW) * var(--WW));
  }
}
.works_txtbox h3 {
  font-family: var(--fontH);
  font-size: calc(24 / var(--DW) * var(--WW));
  letter-spacing: 0.05em;
  margin-bottom: calc(40 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .works_txtbox h3 {
    font-size: calc(20 / var(--DW) * var(--WW));
  }
}
.works_txtbox h3 span {
  font-family: var(--fontE);
  font-size: calc(12 / var(--DW) * var(--WW));
  width: calc(75 / var(--DW) * var(--WW));
  height: calc(24 / var(--DW) * var(--WW));
  line-height: calc(24 / var(--DW) * var(--WW));
  text-align: center;
  border-radius: 30px;
  background-color: #EEE8E0;
  letter-spacing: 0.05em;
  display: block;
  margin: 0 auto 5px;
}
@media screen and (max-width: 750px) {
  .works_txtbox h3 span {
    font-size: calc(10 / var(--DW) * var(--WW));
    width: calc(67 / var(--DW) * var(--WW));
    height: calc(21 / var(--DW) * var(--WW));
    line-height: calc(21 / var(--DW) * var(--WW));
  }
}
.works_txtbox p {
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .works_txtbox p {
    font-size: calc(14 / var(--DW) * var(--WW));
    width: calc(320 / var(--DW) * var(--WW));
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.works_pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  overflow: hidden;
}

.works_pic__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.works_pic__inner img {
  height: 315px;
  max-width: none;
}

.works_process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(90 / var(--DW) * var(--WW));
  width: calc(1126 / var(--DW) * var(--WW));
  margin: calc(80 / var(--DW) * var(--WW)) auto 0;
}
@media screen and (max-width: 750px) {
  .works_process {
    width: calc(320 / var(--DW) * var(--WW));
    margin: calc(60 / var(--DW) * var(--WW)) auto 0;
    gap: calc(60 / var(--DW) * var(--WW));
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.works_process__lead {
  font-family: var(--fontH);
  font-size: calc(28 / var(--DW) * var(--WW));
  letter-spacing: 0.06em;
  width: calc(365 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .works_process__lead {
    font-size: calc(22 / var(--DW) * var(--WW));
    width: 100%;
  }
}

.works_process__txt {
  font-family: var(--fontH);
  letter-spacing: 0.05em;
  width: calc(671 / var(--DW) * var(--WW));
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .works_process__txt {
    font-size: calc(14 / var(--DW) * var(--WW));
    width: 100%;
  }
}

.works_point {
  text-align: center;
  padding: calc(160 / var(--DW) * var(--WW)) 0 calc(100 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .works_point {
    padding: calc(80 / var(--DW) * var(--WW)) 0 calc(120 / var(--DW) * var(--WW));
    width: calc(360 / var(--DW) * var(--WW));
    margin-left: auto;
    margin-right: auto;
  }
}
.works_point h3 {
  font-family: var(--fontH);
  font-size: calc(28 / var(--DW) * var(--WW));
  letter-spacing: 0.05em;
  margin-bottom: calc(60 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .works_point h3 {
    font-size: calc(22 / var(--DW) * var(--WW));
    margin-bottom: calc(40 / var(--DW) * var(--WW));
  }
}
.works_point h3 div {
  margin-bottom: calc(20 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .works_point h3 div {
    width: calc(274 / var(--DW) * var(--WW));
    margin-left: auto;
    margin-right: auto;
  }
}
.works_point h3 span {
  font-family: var(--fontE);
  font-size: calc(20 / var(--DW) * var(--WW));
  display: block;
  margin: 0 auto 0;
}
@media screen and (max-width: 750px) {
  .works_point h3 span {
    font-size: calc(16 / var(--DW) * var(--WW));
  }
}

.company {
  background-color: #FAF9F7;
  background-image: url(../img/company_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: calc(200 / var(--DW) * var(--WW)) 0 calc(100 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .company {
    background-image: url(../img/sp_company_bg.png);
    padding: calc(240 / var(--DW) * var(--WW)) 0 calc(80 / var(--DW) * var(--WW));
  }
}
.company h2 {
  width: calc(974 / var(--DW) * var(--WW));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .company h2 {
    width: 100%;
    padding: 0 5%;
  }
}

.company__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(77 / var(--DW) * var(--WW));
  width: calc(974 / var(--DW) * var(--WW));
  margin: calc(80 / var(--DW) * var(--WW)) auto 0;
}
@media screen and (max-width: 750px) {
  .company__inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(30 / var(--DW) * var(--WW));
    margin: calc(40 / var(--DW) * var(--WW)) auto 0;
  }
}

.company_img {
  width: calc(430 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .company_img {
    width: 100%;
    padding: 0 5%;
  }
}

.company_txt {
  width: calc(467 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .company_txt {
    width: 100%;
  }
}
.company_txt dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .company_txt dl {
    width: calc(310 / var(--DW) * var(--WW));
    border-top: 1px solid rgba(78, 64, 52, 0.5);
    margin-left: auto;
    margin-right: auto;
  }
}
.company_txt dl dt, .company_txt dl dd {
  border-bottom: 1px solid rgba(78, 64, 52, 0.5);
  padding: 10px 0;
}
.company_txt dl dt {
  width: calc(160 / var(--DW) * var(--WW));
  font-weight: bold;
  color: #666666;
}
@media screen and (max-width: 750px) {
  .company_txt dl dt {
    width: 100%;
    font-size: calc(14 / var(--DW) * var(--WW));
    border-bottom: 0 !important;
    padding-top: 30px;
  }
}
.company_txt dl dd {
  width: calc(307 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .company_txt dl dd {
    width: 100%;
    font-size: calc(14 / var(--DW) * var(--WW));
    padding-bottom: 30px;
  }
}
.company_txt .map {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .company_txt .map {
    height: 200px;
  }
}
.company_txt .map iframe {
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .company_txt .map iframe {
    max-height: 200px;
  }
}
.company_txt p {
  font-size: calc(14 / var(--DW) * var(--WW));
  line-height: 2;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .company_txt p {
    width: calc(310 / var(--DW) * var(--WW));
    margin-left: auto;
    margin-right: auto;
  }
}

.contact_sec {
  padding: calc(80 / var(--DW) * var(--WW)) 0 calc(80 / var(--DW) * var(--WW));
  background-image: url(../img/contact_sec_bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .contact_sec {
    padding: calc(100 / var(--DW) * var(--WW)) 5% calc(100 / var(--DW) * var(--WW));
  }
}
.contact_sec h2 {
  margin-bottom: calc(60 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .contact_sec h2 {
    margin-bottom: calc(30 / var(--DW) * var(--WW));
  }
}
.contact_sec h2 span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_sec .footer__bnrWrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: calc(60 / var(--DW) * var(--WW));
  padding: 0;
}
@media screen and (max-width: 750px) {
  .contact_sec .footer__bnrWrap {
    margin-top: calc(30 / var(--DW) * var(--WW));
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .contact_sec .footer__bnrWrap li {
    width: calc(50% - 10px);
  }
}
.contact_sec .footer__bnrWrap .legend span {
  font-size: calc(14 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .contact_sec .footer__bnrWrap .legend span {
    font-size: calc(12 / var(--DW) * var(--WW));
    line-height: 1.5;
    display: inline-block;
  }
}

.contact_sec_event {
  width: calc(920 / var(--DW) * var(--WW));
  border: 1px solid #D1C2AB;
  padding: calc(40 / var(--DW) * var(--WW));
  margin: calc(80 / var(--DW) * var(--WW)) auto 0;
  border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .contact_sec_event {
    width: 100%;
    margin-top: 20px;
  }
}

.contact_sec_event__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(30 / var(--DW) * var(--WW));
  margin-top: calc(40 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .contact_sec_event__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact_sec_event__img {
  width: calc(340 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .contact_sec_event__img {
    width: 100%;
  }
}

.contact_sec_event__txt {
  width: calc(470 / var(--DW) * var(--WW));
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 750px) {
  .contact_sec_event__txt {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .contact_sec_event__txt p {
    font-size: calc(14 / var(--DW) * var(--WW));
  }
}
.contact_sec_event__txt p + p {
  margin-top: 10px;
  font-size: calc(14 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .contact_sec_event__txt p + p {
    font-size: calc(13 / var(--DW) * var(--WW));
  }
}
.contact_sec_event__txt .btn {
  background-color: #FBF7F4;
  border: 0.5px solid rgba(78, 64, 52, 0.5019607843);
  border-radius: 5px;
  font-size: calc(14 / var(--DW) * var(--WW));
  display: block;
  width: 238px;
  height: 60px;
  line-height: 60px;
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .contact_sec_event__txt .btn {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
  }
}
.contact_sec_event__txt .btn span {
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact_sec_event__txt .btn:hover {
  opacity: 0.9;
}
.contact_sec_event__txt .btn:hover span {
  right: 46px;
}

.footer_fixBtn {
  display: none;
}

@media screen and (max-width: 750px) {
  .footer_fixBtn {
    height: 70px;
    line-height: 70px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #fff;
    border-top: 1px solid rgb(164, 156, 149);
  }
  .footer_fixBtn li {
    width: 50%;
    text-align: center;
  }
  .footer_fixBtn li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: calc(14 / var(--DW) * var(--WW));
  }
  .footer_fixBtn li span {
    line-height: 0;
  }
  .footer_fixBtn li + li {
    border-left: 1px solid rgb(164, 156, 149);
  }
  .footer_fixBtn svg {
    width: calc(22 / var(--DW) * var(--WW));
    fill: none;
    margin-right: 7px;
  }
  .footer_fixBtn path {
    stroke: currentColor;
  }
}
.fix_bnr {
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  position: fixed;
  bottom: 10px;
  right: 2%;
  z-index: 1;
  width: calc(343 / var(--DW) * var(--WW));
}
@media screen and (max-width: 750px) {
  .fix_bnr {
    right: 0;
    bottom: 80px;
    width: calc(240 / var(--DW) * var(--WW));
  }
}

.fix_bnr.on {
  opacity: 1;
}

.about__img,
.concept_pic_pc,
.concept_pic_sp--1,
.concept_pic_sp--2,
.applehouse_img img:first-child {
  opacity: 0;
  translate: 0 1rem 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition-property: opacity, translate;
  transition-property: opacity, translate;
}

.applehouse_img img:last-child {
  opacity: 0;
  translate: 0 1rem 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transition-property: opacity, translate;
  transition-property: opacity, translate;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.active .about__img,
.active .applehouse_img img:first-child,
.active .applehouse_img img:last-child,
.active .concept_pic_pc,
.active .concept_pic_sp--1 {
  opacity: 1;
  translate: 0 0 0;
}

.active.concept_pic_sp--2 {
  opacity: 1;
  translate: 0 0 0;
}