:root {
  --font-family-base: "Noto Sans JP","游ゴシック体", YuGothic, "Arial", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

:root {
  --MainWhite: #fff;
  --MainBlack: #46494b;
  --MainGray: #b7bcbc;
  --base-font-size: 16;
  --min-width-default: 320px;
  --max-width-default: 1920px;
  --min-width-md: 769px;
}

.yugo{
  font-family:"游ゴシック体", YuGothic, "游ゴシック Medium",
  "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif !important;
  font-weight:600;
}
.en {

}


html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  font-feature-settings: "palt";
  overflow-x: hidden;
  -webkit-appearance: none;
  background: var(--MainWhite);
  font-size: 62.5%;
  letter-spacing: .05em;
}
body {
  font-family: var(--font-family-base);
  font-weight: 400;
  /* color: var(--MainBlack); */
  line-height: 2;
  /* bodyにデフォルト値を設定する */
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 14;
  --clamp-max: 16;
}

*,
::before,
::after {
  --clamp-root-font-size: 10;
  --clamp-slope: calc(
    (var(--clamp-max) - var(--clamp-min)) /
      (var(--clamp-viewport-max) - var(--clamp-viewport-min))
  );
  --clamp-y-axis-intersection: calc(
    var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min))
  );
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) +
      (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );

  font-size: var(--clamp);
}
main {
  flex: 1;
}
body {
  overflow-x: hidden;
}
a,
button {
  cursor: pointer;
  /* @include Transition;
  &::before,
  &::after {
    @include Transition;
  }
  &:hover {
    // opacity: 0.6;
    &::before,
    &::after {
      @include Transition;
    }
  } */
}
section {
  padding: 0 0 70px 0;
}
@media (width >= 768px) {
  section {
    padding: 180px 0;
  }
}
/* フォント周り
------------------------------------------------------------*/

/* Font sizes */
.fz-14 {
  font-size: 14px;
  font-size: 1.4rem;
}

.fz-18 {
  font-size: 18px;
  font-size: 1.8rem;
}

.fz-20 {
  font-size: 20px;
  font-size: 2rem;
}

/* Important versions */
.fz-14-important {
  font-size: 14px !important;
  font-size: 1.4rem !important;
}

.fz-18-important {
  font-size: 18px !important;
  font-size: 1.8rem !important;
}

/* Font family */
.EBGaramond {
  font-family: "EB Garamond", serif;
}

/* Transition */
.transition {
  transition: all 0.5s ease-in-out;
}

/* Responsive sizes */
/* 14px から 20px */
.res-size-14-20 {
  font-size: clamp(
    14px,
    calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))),
    20px
  );
}

/* 16px から 24px */
.res-size-16-24 {
  font-size: clamp(
    16px,
    calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320))),
    24px
  );
}

/* 18px から 28px */
.res-size-18-28 {
  font-size: clamp(
    18px,
    calc(18px + (28 - 18) * ((100vw - 320px) / (1920 - 320))),
    28px
  );
}

/* 20px から 32px */
.res-size-20-32 {
  font-size: clamp(
    20px,
    calc(20px + (32 - 20) * ((100vw - 320px) / (1920 - 320))),
    32px
  );
}

/* 24px から 36px */
.res-size-24-36 {
  font-size: clamp(
    24px,
    calc(24px + (36 - 24) * ((100vw - 320px) / (1920 - 320))),
    36px
  );
}

/* 28px から 42px */
.res-size-28-42 {
  font-size: clamp(
    28px,
    calc(28px + (42 - 28) * ((100vw - 320px) / (1920 - 320))),
    42px
  );
}

/* 32px から 48px */
.res-size-32-48 {
  font-size: clamp(
    32px,
    calc(32px + (48 - 32) * ((100vw - 320px) / (1920 - 320))),
    48px
  );
} /* 36px から 54px */
.res-size-36-54 {
  font-size: clamp(
    36px,
    calc(36px + (54 - 36) * ((100vw - 320px) / (1920 - 320))),
    54px
  );
}
/* 40px から 60px */
.res-size-40-60 {
  font-size: clamp(
    40px,
    calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320))),
    60px
  );
}

/* 48px から 72px */
.res-size-48-72 {
  font-size: clamp(
    48px,
    calc(48px + (72 - 48) * ((100vw - 320px) / (1920 - 320))),
    72px
  );
}

/* コンテナの共通スタイル */
.l-container-s,
.l-container-mm,
.l-container-m,
.l-container,
.l-container-l {
  margin: 0 auto;
}

/* 幅70%のコンテナ */
.l-container-s {
  width: 70%;
  max-width: var(--width-content-s);
}

/* 幅80%のコンテナ */
.l-container-mm,
.l-container-m {
  width: 80%;
  max-width: var(--width-content);
}

/* 幅80%のコンテナ */
.l-container,
.l-container-l {
  width: 80%;
}

/* 特定の最大幅を持つコンテナ */
.l-container {
  /* max-width: var(--width-content-m); */
  max-width: 1400px;
  margin: auto;
}

.l-container-l {
  max-width: var(--width-content-l);
}

/* サムネイルデフォルト
------------------------------------------------------------*/
.thumbnail {
  span {
    display: block;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* レイアウトまわり
------------------------------------------------------------*/
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 20px;
}

@media (width >= 769px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 3fr));
  }
}

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

.flex-reverse {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}

@media (width >= 576px) {
  .flex-reverse {
    display: flex;
    justify-content: flex-end;
  }
}

.flex-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}

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

/* レスポンシブまわり
------------------------------------------------------------*/
.sp-none {
  display: none;
}
@media (width >= 769px) {
  .sp-none {
    display: block;
  }
}
.pc-none {
  display: block;
}
@media (width >= 769px) {
  .pc-none {
    display: none;
  }
}

/* カラーまわり
------------------------------------------------------------*/
.fontWhite {
  color: var(--MainWhite);
}
.bgBlack {
  background-color: var(--mainBlack);
}
.bgGray {
  background-color: var(--mainGray);
}
.bgWhite {
  background-color: var(--mainWhite);
}

/* テキストまわり
------------------------------------------------------------*/
.fwb {
  font-weight: 600;
}
.fwm {
  font-weight: 500;
}
.tac {
  text-align: center;
}
.tal {
  text-align: left;
}
.tar {
  text-align: right;
}

/* ページネーション
------------------------------------------------------------*/
/* .pagination {
  margin-top: 100px;
  .nav-links {
    position: relative;
    .page-numbers {
      position: relative;
      margin-left: 20px;
      @include EBGaramond;
      @include fz(20);
      &::before {
        content: "";
        background: $MainBlack;
        width: 1px;
        height: 20px;
        position: absolute;
        top: 2px;
        bottom: 0;
        left: -12px;
        margin: auto;
      }
      &:nth-child(1),
      &.next,
      &.prev,
      &.prev + a {
        margin-left: unset;
      }
      &:nth-child(1),
      &.prev + a {
        &::before {
          display: none;
        }
      }
    }
    .next,
    .prev,
    .prev-post > a,
    .next-post > a {
      position: absolute;
      top: -60px;
      width: 120px;
      text-align: center;
      display: inline-block;
      &::before {
        content: "";
        position: absolute;
        background: $MainBlack;
        bottom: 0;
        left: 0;
        right: 0;
        top: unset;
        margin: auto;
        width: 120px;
        height: 1px;
        display: block !important;
        @include Transition;
      }
      &::after {
        content: "";
        position: absolute;
        bottom: 0;
        width: 2px;
        height: 10px;
        background: $MainBlack;
        @include Transition;
      }
    }
    .next,
    .next-post > a {
      right: calc(50% - 150px);
      @include md {
        right: calc(50% - 180px);
      }
      &::after {
        transform: skewX(60deg);
        right: 6px;
      }
    }
    .prev,
    .prev-post > a {
      left: calc(50% - 150px);
      @include md {
        left: calc(50% - 180px);
      }
      &::after {
        transform: skewX(-60deg);
        left: 6px;
      }
    }
  }
} */

/*----------------------------
scroll 画像 ｜
----------------------------*/

.img-path-Right {
  --inset-top: 0;
  --inset-right: 0;
  --inset-bottom: 0;
  --inset-left: 100%;
  clip-path: inset(
    var(--inset-top) var(--inset-right) var(--inset-bottom) var(--inset-left)
  );
  transition: 0.6s ease-in;
  &.is-visible {
    --inset-left: 0;
  }
}

.img-path-Left {
  --inset-top: 0;
  --inset-right: 100%;
  --inset-bottom: 0;
  --inset-left: 0%;
  clip-path: inset(
    var(--inset-top) var(--inset-right) var(--inset-bottom) var(--inset-left)
  );
  transition: 0.6s ease-in;
  &.is-visible {
    --inset-right: 0;
  }
}
.img-path-Top {
  --inset-top: 100%;
  --inset-right: 0;
  --inset-bottom: 0;
  --inset-left: 0%;
  clip-path: inset(
    var(--inset-top) var(--inset-right) var(--inset-bottom) var(--inset-left)
  );
  transition: 0.6s ease-in;
  &.is-visible {
    --inset-top: 0;
  }
}

.img-path-Bottom {
  --inset-top: 0;
  --inset-right: 0;
  --inset-bottom: 100%;
  --inset-left: 0;
  clip-path: inset(
    var(--inset-top) var(--inset-right) var(--inset-bottom) var(--inset-left)
  );
  transition: 0.6s ease-in;
  &.is-visible {
    --inset-bottom: 0;
  }
}

/* 共通
------------------------------------------------------------*/

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: auto;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
table,
th,
td,
span {
  white-space: nowrap;
}


/*----------------------------
btn ｜
----------------------------*/
.btn{
  text-align:center;
  a{
    color:#c6a464;
    position:relative;
    left: -15px;
    display: inline-block;
    letter-spacing: .1em;
    width: 72px;
  }
  @media (width >= 769px) {
    a{
      --clamp-min: 11;
      --clamp-max: 22;
      width: 178px;
    }
  }
  a:before,a:after{
    content:"";
  }
  a:before{
    position: absolute;
    top: 6px;
    right: -35px;
    width: 24px;
    height: 1px;
    background: #c6a464;
    transition: all .2s linear;
  }
  @media (width >= 769px) {
    a:before{
      top: 18px;
      right: -86px;
      width: 64px;
    }
  }
  a::after {
    content: "";
    position: absolute;
    top: 2px;
    right: -32px;
    width: 2px;
    height: 5px;
    background: #c6a464;
    transform: skewX(60deg);
    transition: all .2s linear;
  }
  @media (width >= 769px) {
    a::after {
      top: 10px;
      right: -80px;
      width: 2px;
      height: 9px;
    }
  }
  a:hover:before{
    right:-45px;
  }
  @media (width >= 769px) {
    a:hover:before{
      right:-101px;
    }
  }
  a:hover:after{
    right:-42px;
  }
  @media (width >= 769px) {
    a:hover:after{
      right:-96px;
    }
  }
}

.btn_white{
  text-align:center;
  a{
    position:relative;
    left: -15px;
    display: inline-block;
    letter-spacing: .1em;
    width: 72px;
  }
  @media (width >= 769px) {
    a{
      --clamp-min: 11;
      --clamp-max: 22;
      width: 178px;
    }
  }
  a:before,a:after{
    content:"";
  }
  a:before{
    position: absolute;
    top: 6px;
    right: -35px;
    width: 24px;
    height: 1px;
    background: #ffffff;
    transition: all .2s linear;
  }
  @media (width >= 769px) {
    a:before{
      top: 18px;
      right: -86px;
      width: 64px;
    }
  }
  a::after {
    content: "";
    position: absolute;
    top: 2px;
    right: -32px;
    width: 2px;
    height: 5px;
    background: #ffffff;
    transform: skewX(60deg);
    transition: all .2s linear;
  }
  @media (width >= 769px) {
    a::after {
      top: 10px;
      right: -80px;
      width: 2px;
      height: 9px;
    }
  }
  a:hover:before{
    right:-45px;
  }
  @media (width >= 769px) {
    a:hover:before{
      right:-101px;
    }
  }
  a:hover:after{
    right:-42px;
  }
  @media (width >= 769px) {
    a:hover:after{
      right:-96px;
    }
  }
}

.btn_white{
  text-align:center;
  span{
    color:#ffffff;
    position:relative;
    display: inline-block;
    letter-spacing: .1em;
    width:57px;
  }
  @media (width >= 769px) {
    span{
      --clamp-min: 11;
      --clamp-max: 22;
      width: 178px;
    }
  }
  span:before,span:after{
    content:"";
  }
  span:before{
    position: absolute;
    top: 6px;
    right: -35px;
    width: 24px;
    height: 1px;
    background: #ffffff;
    transition: all .2s linear;
  }
  @media (width >= 769px) {
    span:before{
      top: 18px;
      right: -86px;
      width: 64px;
    }
  }
  span::after {
    content: "";
    position: absolute;
    top: 2px;
    right: -32px;
    width: 2px;
    height: 5px;
    background: #ffffff;
    transform: skewX(60deg);
    transition: all .2s linear;
  }
  @media (width >= 769px) {
    span::after {
      top: 10px;
      right: -80px;
      width: 2px;
      height: 9px;
    }
  }
  span:hover:before{
    right:-45px;
  }
  @media (width >= 769px) {
    span:hover:before{
      right:-101px;
    }
  }
  span:hover:after{
    right:-42px;
  }
  @media (width >= 769px) {
    span:hover:after{
      right:-96px;
    }
  }
}

.img-scale{
  overflow:hidden;
  transition:1s all;
}
.img-scale:hover {
  color:#000;
  transition:1s all;
}
.img-scale .bg img{
  transition:1s all;
}
.img-scale:hover .bg img{
  transform:scale(1.1,1.1);
  transition:1s all;
}

.form{
  padding: 70px 0;
  background: #C6A464;
}
.form_inner{

}

.form_inner .contactform{
  max-width: 1152px;
  margin: auto;
}

.page-id-3631 .form_inner .contactform{
  max-width: 1170px;
}



.form_inner .contactform .flex-column{}
@media (width >= 769px) {
  .form_inner .contactform .flex-column{
    margin: 0 0 20px;
  }
}

.form_inner .contactform .flex-column h3{
  color: #fff;
  --clamp-min: 10;
  --clamp-max: 20;
  letter-spacing: .2em;
  margin: 0 0 15px 0;
}
.form_inner .contactform .flex-column input{
  background: #fff;
  width: 100%;
  cursor: pointer;
  padding: 10px;
}

@media (width >= 769px) {
  .form_inner .contactform .flex-column input{
    padding: 46px 15px;
  }
}


.form_inner .contactform .flex-column .input-border{
  margin:0 0 15px;
}
@media (width >= 769px) {
  .form_inner .contactform .flex-column .input-border{
    margin:0 0 40px;
  } 
}

.form_inner .contactform .flex-column textarea{
  background: #fff;
  width: 100%;
  cursor: pointer;
}
.form-btn{
  margin: 50px 0 0px 0;
}
@media (width >= 769px) {
  .form-btn{
    margin: 100px 0 50px 0;
  }
}
.form-btn_wrap{}
.form-btn_wrap p{
  width: 70px;
  margin: auto;
  position: relative;
  cursor: pointer;
  left: -20px;
}
.form-btn_wrap p input{
  position: relative;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
@media (width >= 769px) {
  .form-btn_wrap p{

  }
  .form-btn_wrap p input{
    font-size: 20px;
    cursor: pointer;
  }
}
.form-btn_wrap{
  p:before,p:after{
    content:"";
  }
  p:before{
    position: absolute;
    top: 22px;
    right: -35px;
    width: 24px;
    height: 1px;
    background: #fff;
    transition: all .2s linear;
  }
  @media (width >= 769px) {
    p:before{
      top: 30px;
      right: -86px;
      width: 64px;
    }
  }
  p::after {
    content: "";
    position: absolute;
    top: 18px;
    right: -32px;
    width: 2px;
    height: 5px;
    background: #fff;
    transform: skewX(60deg);
    transition: all .2s linear;
  }
  @media (width >= 769px) {
    p::after {
      top: 22px;
      right: -80px;
      width: 2px;
      height: 9px;
    }
  }
  p:hover:before{
    right:-45px;
  }
  @media (width >= 769px) {
    p:hover:before{
      right:-101px;
    }
  }
  p:hover:after{
    right:-42px;
  }
  @media (width >= 769px) {
    p:hover:after{
      right:-96px;
    }
  }
}


.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}