@charset "utf-8";

body {
  font-family: "Noto Sans JP", serif;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: calc(28 / 14);
  letter-spacing: 0.05em;
  background: #262626 !important;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  background: url('../images/bg.png') center / contain repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
}

.hidden {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

picture, img, a, span {
    display: inline-block;
}

img, svg {
    width: 100%;
    height: 100%;
}

button {
    color: inherit;
    background: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

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

.u-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
.br-sp br{
  display: none;
}
@media screen and (min-width: 768px) {
  .br-sp br{
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .br-pc br{
    display: none;
  }
}

.c-link,
.c-link02 a {
  text-decoration: underline !important;
}
.c-link:hover,
.c-link02 a:hover {
  text-decoration: underline !important;
  opacity: 0.7;
}

.l-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.l-outer {
  margin-left: 0 !important;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1366px;
    height: inherit;
    padding: 0 60px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .l-inner {
    padding: 0 90px !important;
  }
  .l-outer {
    width: calc(100% - 249px);
    margin-left: 249px !important;
    overflow-x: hidden;
  }
}

.l-detail {
  padding: 100px 0 160px;
}

.bg-white {
  background: #ECEBE8 !important;
  color: #272727;
}

.title-main {
  font-family: "Noto Serif JP", serif;
  font-size: 60px;
  letter-spacing: 0.036em;
  line-height: calc(115 / 80);
  color: #D5C2A2;
}
@media screen and (min-width: 768px) {
  .title-main {
    font-size: 80px;
  }
}

.title-sub {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: calc(24 / 16);
}

.title-sub-black {
  color: #313131;
}

.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 256px;
  background: #7B6D3D;
  border: 1px solid #7B6D3D;
  padding: 10px 20px 10px 65px;
  flex-shrink: 0;
}
.button p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #FEF9F2;
  text-decoration: none;
}
.button::after {
  content: "";
  background: url('../images/icon-arrow.svg') center / contain no-repeat;
  width: 29px;
  height: 32px;
  transition: background 0.3s;
}
.button:hover {
  background: #FDF9F2;
}
.button:hover p {
  color: #7B6D3D;
}
.button:hover::after {
  background: url('../images/icon-arrow-gold.svg') center / contain no-repeat;
}

.bg-text__wrap {
  display: flex;
  justify-content: center;
  gap: 50px;
  width: 100%;
  height: 160px;
  pointer-events: none;
}
.bg-text {
  width: auto;
  height: 160px;
  flex-shrink: 0; 
  animation: infinity-scroll-left 50s infinite linear 0.5s both;
  pointer-events: none;
  color: transparent;
  -webkit-text-stroke: 1px rgba(254, 249, 241, 0.55);
  text-stroke: 1px rgba(254, 249, 241, 0.55);
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
.bg-text__brown {
  -webkit-text-stroke: 1px #D8D7D2;
  text-stroke: 1px #D8D7D2;
}

.c-head {
  padding: 85px 0 101px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .c-head {
  padding: 26px 0 101px;
  }
}

.c-breadcrumb {
  display: flex;
  justify-content: end;
  font-size: 13px;
  color: #D8D8D8;
  font-weight: 300;
  letter-spacing: 0.06em;
  gap: 17px;
}
@media screen and (min-width: 1200px) {
  .c-breadcrumb {
    margin-right: -60px;
  }
}
.c-breadcrumb a {
  transition: text-decoration 0.3s
}
.c-breadcrumb a:hover {
  text-decoration: underline;
}

.c-head__img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.c-head__title-main {
  margin-top: 106px;
  font-size: 55px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #D5C2A2;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .c-head__title-main {
    font-size: 80px;
  }
}
.c-head__title-sub {
  margin-top: 17px;
  font-size: 16px;
  line-height: calc(24 / 16);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.c-detail__title-main {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #6f5330;
}

.c-detail__title-sub {
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 50px;
}