@charset "utf-8";
/* CSS Document */

/*==================================================
02: common
==================================================*/
:root {
  --height_header: 0px;
  --height_fix_footer: 0px;

  --base_width: 1100px;
  --base_color: #fff;
  --base_bg: #141418;

  --c_main: #cab15d;
  --c_sub: #dad4cd;
  --c_acc: #5a4823;

  --font_jp: "Noto Sans JP", sans-serif;
  --font_jp02: "Zen Old Mincho", serif;
  --font_en: "Cinzel Decorative", serif;
  --icons: "Material Symbols Outlined";

  --section: 100px;
  --transition: 0.3s ease;
}
@media (max-width: 520px) {
  :root {
    --base_width: 100%;
    --section: 50px;
  }
}

a[href=""] {
  pointer-events: all;
}

/*----------------------------------------
common
----------------------------------------*/
body {
  /* padding-top: var(--height_header); */
  font-weight: 300;
}
@media (max-width: 520px) {
  body {
    padding-bottom: var(--height_fix_footer);
  }
}

.w470 {
  width: min(100%, 470px);
}
.w1400 {
  width: min(90%, 1400px);
  margin-inline: auto;
}

.sec_margin {
  margin: var(--section) auto;
}
.sec_padding {
  padding: var(--section) 0;
}

.mt60 {
  margin-top: 60px;
}
.mt90 {
  margin-top: 90px;
}
@media (max-width: 520px) {
  .mt60 {
    margin-top: 35px;
  }
  .mt90 {
    margin-top: 45px;
  }
}

/* figure,img */
img {
  object-fit: cover;
}
.of_cont img,
img.of_cont {
  object-fit: contain;
}

/* [class*="grid_"] 等分 */
[class*="grid_"] {
  --gap: 50px;
  display: grid;
  grid-template-columns: repeat(var(--grid), 1fr);
  gap: var(--gap);
}
.grid_2c {
  --grid: 2;
}
.grid_3c {
  --grid: 3;
}
.grid_4c {
  --grid: 4;
}
@media (max-width: 520px) {
  [class*="grid_"] {
    --gap: 30px;
    --grid: 1;
  }
  [class*="grid_"].sp_2c {
    --grid: 2;
  }
}

/* .box_2c 按分 */
.box_2c {
  --gap: 50px;
  --box: 30%;
  display: grid;
  grid-template-columns: var(--box) 1fr;
  align-items: flex-start;
  gap: var(--gap);
}
.box_2c.reverse {
  grid-template-columns: 1fr var(--box);
}
@media (min-width: 521px) {
  .box_2c.reverse > *:first-child {
    order: 1;
  }
}
@media (max-width: 520px) {
  .box_2c,
  .box_2c.reverse {
    --gap: 30px;
    grid-template-columns: 1fr;
  }

  /* .box_2c > .figure {
    width: 80%;
    margin-inline: auto;
  } */
}

/* .tereco */
.tereco > *:nth-child(even) .box_2c {
  grid-template-columns: 1fr var(--box);
}
@media (min-width: 521px) {
  .tereco > *:nth-child(even) .box_2c > *:first-child {
    order: 1;
  }
}
@media (max-width: 520px) {
  .tereco > *:nth-child(even) .box_2c {
    grid-template-columns: 1fr;
  }
}

/* .dist_ */
[class*="dist_"] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--distance);
}
.dist_10 {
  --distance: 10px;
}
.dist_20 {
  --distance: var(--margin20);
}
.dist_30 {
  --distance: var(--margin30);
}
.dist_40 {
  --distance: var(--margin40);
}
.dist_50 {
  --distance: var(--margin50);
}
.dist_100 {
  --distance: var(--margin100);
}

/*----------------------------------------
font
----------------------------------------*/
body .fs32 {
  font-size: 3.2rem;
}

@media (max-width: 520px) {
  body .fs16,
  body .fs18 {
    font-size: 1.4rem;
  }
  body .fs20,
  body .fs22 {
    font-size: 1.6rem;
  }
  body .fs24,
  body .fs26 {
    font-size: 1.8rem;
  }
  body .fs28,
  body .fs30 {
    font-size: 2rem;
  }
  body .fs32 {
    font-size: 2.1rem;
  }
  body .fs35 {
    font-size: 2.2rem;
  }
  body .fs40 {
    font-size: 2.4rem;
  }
  body .fs45 {
    font-size: 2.8rem;
  }
  body .fs50 {
    font-size: 3.2rem;
  }
}

/* font-family */
.font_en {
  font-family: var(--font_en);
}
.font_jp02 {
  font-family: var(--font_jp02);
}

/* color */
.fc_wht {
  color: #fff;
}
.fc_main {
  color: var(--c_main);
}
.fc_acc {
  color: var(--c_acc);
}

/*----------------------------------------
background
----------------------------------------*/
.bg_wht {
  background-color: #fff;
}
.bg_main {
  background-color: color-mix(in srgb, var(--c_main) 10%, #fff);
}

/* .bg_img */
*:has(> .bg_img) {
  position: relative;
}
.bg_img {
  position: absolute;
  z-index: -1;
  inset: 0;
}

/* .bg_beige */
.bg_beige {
  color: var(--base_bg);
  background-color: var(--c_sub);
}
.bg_beige .titA span.en {
  color: var(--c_acc);
}
.bg_beige .titA span.jp {
  color: var(--base_bg);
}

/* .bg_ptn */
.bg_ptn {
  background: url(../images/bg_ptn.jpg) center center / cover no-repeat;
}

/*----------------------------------------
[class*="btn_"]
----------------------------------------*/
[class*="btn_"] {
  -webkit-appearance: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  /* min-width: 300px; */
  /* width: fit-content; */
  width: 100%;
  min-height: 60px;
  margin: 0px auto;
  padding: 10px;
  font-family: var(--font_jp02);
  text-align: center;
  color: var(--btn_color);
  background-color: var(--btn_bg);
  border: 2px solid var(--btn_bg);
}
/* [class*="btn_"]:hover {
  opacity: 1;
  color: var(--btn_bg);
  background-color: var(--btn_color);
} */
[class*="btn_"] p {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 520px) {
  [class*="btn_"] {
    /* min-width: auto;
    width: 90%; */
  }
  [class*="btn_"].ml0 {
    margin-left: auto;
  }
}

/* [class*="btn_"].L.R */
[class*="btn_"].L::before,
[class*="btn_"].R::after {
  content: "→";
  /* content: "arrow_circle_right"; */
  /* font-family: var(--icons); */
  /* font-variation-settings: "FILL" 1; */
  font-size: 1em;
  line-height: 1;
}

/* [class*="btn_"] p */
[class*="btn_"] p::before,
[class*="btn_"] p::after {
  display: block;
  width: var(--size);
  height: auto;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: currentColor;
}

/* .btn_link */
.btn_link {
  --btn_color: #fff;
  --btn_bg: var(--c_main);
}
.btn_link p::after {
  --size: 1em;
  --mask: url(../images/icon_link.svg) center center / contain no-repeat;
  content: "";
  aspect-ratio: 18 / 18;
}

/* .btn_A */
.btn_A {
  --btn_color: #fff;
  --btn_bg: var(--c_acc);
}

/* .btn_B */
.btn_B {
  --btn_color: #fff;
  --btn_bg: var(--c_acc);
  padding: 5px 20px;
}
.btn_B.L::before {
  --mask: var(--url) left center / contain no-repeat;
  content: "";
  display: block;
  width: auto;
  height: 60px;
  aspect-ratio: 85 / 52;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  background-color: var(--c_main);
}
.btn_B p {
  flex-flow: column;
  gap: 0;
}
@media (max-width: 520px) {
  .btn_B {
    padding: 0 10px;
  }
  .btn_B.L::before {
    height: 40px;
  }
}

/* .btn_C */
.btn_C {
  --btn_color: #fff;
  --btn_bg: var(--c_acc);
  min-height: auto;
  padding: 0px;
}

/*----------------------------------------
.link_
----------------------------------------*/
.link_tel {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}
.link_tel::before {
  --size: 0.65em;
  --mask: url(../images/icon_tel.svg) center center / contain no-repeat;
  aspect-ratio: 23 / 30;
  content: "";
  display: block;
  width: var(--size);
  height: auto;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  rotate: 10deg;
  background-color: currentColor;
}

/*----------------------------------------
.tit
----------------------------------------*/
/* .entry-title */
.entry-title {
  font-weight: bold;
  text-align: center;
}
.entry-title span.en {
  display: block;
  margin-bottom: -0.4em;
  font-size: clamp(1em, 10vw, 3em);
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  color: color-mix(in srgb, var(--c_main) 10%, #fff);
  mix-blend-mode: multiply;
}

/* .titX */
.titX {
  font-weight: bold;
}
.titX span.en {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.8em;
  text-transform: uppercase;
  color: var(--c_main);
}
.titX span.en::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: currentColor;
}

/* .titY */
.titY {
  position: relative;
  padding-bottom: 5px;
  font-weight: bold;
}
.titY::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--c_main) 20%,
    color-mix(in srgb, var(--c_main) 10%, #fff) 20%
  );
  mix-blend-mode: multiply;
}

/* .titA */
.titA span.en {
  font-size: 4.4rem;
  font-family: var(--font_en);
  color: var(--c_main);
}
.titA span.jp {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font_jp02);
  color: #fff;
}
@media (max-width: 520px) {
  .titA span.en {
    font-size: 3.5rem;
  }
}

/*----------------------------------------
.richtext
----------------------------------------*/
.richtext {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  line-height: 2;
}
.richtext a:not([href^="tel"]) {
  text-decoration: underline;
  color: var(--c_main);
}
.richtext a:not([href^="tel"]):hover {
  text-decoration: none;
}
.richtext em {
  color: var(--c_main);
}

/*----------------------------------------
.note_
----------------------------------------*/
.note_A {
  padding: 30px;
  border: 1px solid #fff;
}
.note_B {
  padding: 10px;
  border: 1px solid #fff;
}
.note_C span {
  padding: 5px 20px;
  font-weight: bold;
  color: red;
  background-color: #fff;
}

/*----------------------------------------
.js_delay
----------------------------------------*/
.js_delay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 520px) {
  .js_delay {
    flex-flow: column;
    gap: 0px 10px;
  }
}
