@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
/* -------------------------------------------

base

------------------------------------------- */
:root {
    --main: #C48A8A;
    --sub: #D1A3A3;
}
body {
  background: #24241f;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
/* link */
a {
  color: #fff;
}

/* -------------------------------------------

h1

------------------------------------------- */
h1.low {
  width: 4rem;
  position: absolute;
  left: 2.5rem;
  top: 2rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  h1.low {
    width: 3.6rem;
    left: 1.5rem;
    top: 1.5rem;
  }
}
/* -------------------------------------------

sns

------------------------------------------- */
.sns {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.sns a {
  display: flex;
  align-items: center;
}
.sns a i {
  margin-right: 0.6rem;
  margin-top: 0.25rem;
}

.gnav-sp .sns {
  gap: 8rem;
}
.gnav-sp .sns i {
  font-size: 2.6rem;
  margin-right: 1.5rem;
}

@media screen and (max-width: 768px) {
  .sns {
    gap: 1.5rem;
  }
  .gnav-sp .sns {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
/* -------------------------------------------

footer

------------------------------------------- */
footer {
  padding: 4rem 8rem;
  background: #0e0e0e;
}

footer .wrap-1,
footer .wrap-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .wrap-1 {
  margin-bottom: 4rem;
}

footer .wrap-2 {
  flex-direction: row-reverse;
}

footer .logo {
  width: 6rem;
}

footer nav {
  width: 30rem;
}
footer nav ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
}
footer nav ul li {
  width: 15rem;
  font-family: "Cormorant Garamond", serif;
}

footer small {
  display: block;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  footer .wrap-1,
  footer .wrap-2 {
    flex-direction: column;
    align-items: center;
  }
  footer .wrap-1 {
    margin-bottom: 4rem;
  }
  footer .wrap-2 {
    flex-direction: column;
  }
  footer .logo {
    margin-bottom: 3rem;
  }
  footer nav {
    width: 100%;
  }
  footer nav ul {
    row-gap: 1rem;
  }
  footer nav ul li {
    width: 50%;
    font-family: "Cormorant Garamond", serif;
    text-align: center;
    font-size: 1.8rem;
  }
  footer small {
    margin-top: 4rem;
  }
}
/* -------------------------------------------

class

------------------------------------------- */
/* heading */
.heading-1 {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4rem;
  text-align: center;
}
.heading-1 span {
  display: block;
}
.heading-1 .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}
.heading-1 .en::first-letter {
  color: var(--main);
  font-size: 6.4rem;
}
.heading-1 .jp {
  color: #929292;
  font-family: "Zen Old Mincho", serif;
}
.heading-1.adjust .en {
  font-size: 3.4rem;
}
.heading-1.adjust .en::first-letter {
  font-size: 3.4rem;
}

/* more */
.more-wrap.center {
  display: flex;
  justify-content: center;
}

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

.more {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2em;
  position: relative;
  display: flex;
  justify-content: center;
}
.more span {
  display: flex;
  align-items: center;
}
.more span::after {
  content: "";
  width: 5rem;
  height: 0.1rem;
  background: #fff;
  margin-left: 1rem;
}
.more span::before {
  content: "";
  width: 4rem;
  height: 4rem;
  border: solid 0.1rem #fff;
  border-radius: 50%;
  position: absolute;
  right: -2rem;
  top: calc(50% - 2rem);
}

/* 追加：丸の右上の小さい白丸 */
.more::after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #fff;
  border-radius: 0% 100% 50% 50%/ 0% 50% 50% 100%;
  position: absolute;
  right: -0.45rem;
  top: 66%;
  transform: rotate(45deg) skew(10deg, 10deg);
}

/* detail */
dl.detail {
  display: flex;
  flex-wrap: wrap;
}

dl.detail dt {
  padding: 1.5rem 0;
  width: 25%;
  white-space: nowrap;
}

dl.detail dd {
  padding: 1.5rem 0;
  width: 75%;
}

@media screen and (max-width: 768px) {
  dl.detail {
    display: block;
  }
  dl.detail dt {
    display: flex;
    align-items: center;
    padding: 1.5rem 0 0.3rem 0;
    width: 100%;
  }
  dl.detail dt::before {
    content: "◆";
    color: var(--sub);
    font-size: 1.2rem;
    margin-right: 0.5rem;
  }
  dl.detail dd {
    padding: 0 0 1.5rem 0;
    width: 100%;
  }
}
dl.bk dt,
dl.bk dd {
  border-bottom: 0.1rem solid #525252;
}

dl.wh dt,
dl.wh dd {
  border-bottom: 0.1rem solid #525252;
}

@media screen and (max-width: 768px) {
  dl.bk dt {
    border-bottom: none;
  }
  dl.wh dt {
    border-bottom: none;
  }
}
/* ttl */
.ttl,
.CMS-NEWS-TITLE,
.CMS-ARTICLE-TITLE {
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 3rem;
  padding: 1rem 0 1.5rem 0;
  position: relative;
}

.ttl:after,
.CMS-NEWS-TITLE:after,
.CMS-ARTICLE-TITLE::after {
  content: "";
  background: var(--sub);
  display: block;
  height: 3px;
  bottom: -3px;
  position: absolute;
  width: 25%;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .ttl:after,
  .CMS-NEWS-TITLE:after,
  .CMS-ARTICLE-TITLE::after {
    width: 40%;
  }
}
/* base-width */
.base-width {
  width: 88rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .base-width {
    width: auto;
  }
}
/* page-top */
#page-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 999;
}
#page-top a {
  background: var(--sub);
  border-radius: 50%;
  color: #000;
  font-size: 1.2rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  padding-left: 0.1rem;
}

@media screen and (max-width: 768px) {
  #page-top {
    bottom: 1rem;
  }
}
/* txt-vertical */
.txt-vertical {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .txt-vertical.not {
    writing-mode: horizontal-tb;
    white-space: normal;
  }
}
/* list */
ul.list-group li {
  margin-left: 2rem;
  list-style: disc;
}
ul.list-group li:not(:last-child) {
  margin-bottom: 0.3rem;
}

/* preapre */
.prepare {
  color: var(--sub);
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 8rem 0;
}

/* map */
.gmap iframe {
  width: 100%;
  height: 36rem;
}

.gmap.grey iframe {
  filter: grayscale(100%);
}

/* display */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.mb-10 {
  margin-bottom: 1rem !important;
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

.mb-20 {
  margin-bottom: 2rem !important;
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

.mb-30 {
  margin-bottom: 3rem !important;
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

.mb-40 {
  margin-bottom: 4rem !important;
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

.mb-50 {
  margin-bottom: 5rem !important;
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

.mb-60 {
  margin-bottom: 6rem !important;
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

.mb-70 {
  margin-bottom: 7rem !important;
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

.mb-80 {
  margin-bottom: 8rem !important;
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

.mb-90 {
  margin-bottom: 9rem !important;
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

.mb-100 {
  margin-bottom: 10rem !important;
}

/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
  background: #000;
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.5s;
  z-index: -1;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 769px) {
  .gnav-sp {
    width: 70%;
    right: 0;
  }
}
.gnav-sp nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .gnav-sp nav {
    width: 80%;
  }
}
.gnav-sp-menu {
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid 0.1rem #929292;
  padding-bottom: 8rem;
  margin-bottom: 4rem;
  row-gap: 4.5rem;
}

.gnav-sp-menu li {
  font-weight: 500;
  width: 50%;
  line-height: 1;
}
.gnav-sp-menu li .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.gnav-sp-menu li .jp {
  color: #929292;
  font-family: "Zen Old Mincho", serif;
}

@media screen and (max-width: 768px) {
  .gnav-sp-menu {
    padding-bottom: 6rem;
    margin-bottom: 3rem;
    row-gap: 3rem;
  }
  .gnav-sp-menu li {
    text-align: center;
  }
  .gnav-sp-menu li .en {
    font-size: 2rem;
  }
  .gnav-sp-menu li .jp {
    font-size: 1.2rem;
  }
}
.gnav-sp-menu li span {
  display: block;
}

.gnav-sp-menu li a {
  display: block;
  white-space: nowrap;
}

.toggle-btn {
  background: transparent;
  cursor: pointer;
  display: block;
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 6rem;
  height: 6rem;
  transition: all 0.5s;
  z-index: 100000;
  border-radius: 50%;
  border: solid 0.1rem #fff;
}

@media screen and (min-width: 769px) {
  .toggle-btn {
    top: 2rem;
    right: 2rem;
  }
}
.toggle-btn span {
  background: #fff;
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.1rem;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 2.5rem;
}

.toggle-btn span:nth-child(2) {
  top: 3.4rem;
}

.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(0.5rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  transform: translateY(-0.5rem) rotate(45deg);
}

/* -------------------------------------------

fade

------------------------------------------- */
.fade {
  opacity: 0;
  transform: translateY(2rem);
}

.fade.is-animation {
  animation: fade 0.5s ease;
  animation-fill-mode: both;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* -------------------------------------------

news / blog　common

------------------------------------------- */
/* MORE-READ */
.CMS-NEWS-MORE-READ,
.CMS-ARTICLE-MORE-READ {
  background: var(--sub);
  border: none;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-family: "Shippori Mincho", serif;
  margin: 0 auto;
  width: 24rem;
  height: 4.8rem;
  transition: all 0.3s;
  padding-bottom: 0.2rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  font-weight: 500;
  transform: translate(-50%, 0);
}

.CMS-NEWS-MORE-READ:hover,
.CMS-ARTICLE-MORE-READ:hover {
  cursor: pointer;
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .CMS-ARTICLE-MORE-READ {
    width: 100%;
  }
}
/* DETAIL */
.CMS-NEWS-CONTENT img,
.CMS-ARTICLE-CONTENT img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 3rem auto;
}

@media screen and (max-width: 768px) {
  .CMS-NEWS-CONTENT img,
  .CMS-ARTICLE-CONTENT img {
    width: 100%;
  }
}
/* -------------------------------------------

news / blog　thumbnail

------------------------------------------- */
/* INDEX */
.CMS-NEWS-INDEX,
.CMS-ARTICLE-INDEX,
.CMS-NEWS-CATEGORY-INDEX,
.CMS-ARTICLE-CATEGORY-INDEX {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  padding-bottom: 10rem;
  position: relative;
}

.CMS-NEWS-INDEX > *,
.CMS-ARTICLE-INDEX > *,
.CMS-NEWS-CATEGORY-INDEX > *,
.CMS-ARTICLE-CATEGORY-INDEX > * {
  width: calc((100% - 8rem) / 3);
}

.CMS-NEWS-ITEM a,
.CMS-ARTICLE-ITEM a {
  display: block;
}

@media screen and (max-width: 768px) {
  .CMS-NEWS-INDEX,
  .CMS-ARTICLE-INDEX,
  .CMS-NEWS-CATEGORY-INDEX,
  .CMS-ARTICLE-CATEGORY-INDEX {
    flex-direction: column;
  }
  .CMS-NEWS-INDEX > *,
  .CMS-ARTICLE-INDEX > *,
  .CMS-NEWS-CATEGORY-INDEX > *,
  .CMS-ARTICLE-CATEGORY-INDEX > * {
    width: 100%;
  }
}
/* TIME */
.CMS-NEWS-TIME,
.CMS-ARTICLE-TIME {
  font-size: 1.2rem;
  line-height: 1;
  margin: 1.5rem 0 0.5rem 0;
}

.top-news .CMS-NEWS-TIME {
  color: #787878;
}

.top-news .CMS-NEWS-LINK {
  color: #000;
}

/* THUMBNAIL */
.CMS-NEWS-THUMBNAIL,
.CMS-ARTICLE-THUMBNAIL {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=common.css.map */