@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-default: #433C2C;
  --color-inverse: #ffffff;
  --color-sub: #8B8475;

  --color-gold: #927A43;
  --color-boarder: #EED9C2;

  --color-g-border: #D9D9D9;
  --color-bg: #F7F4F0;

  --serif: "Noto Serif JP", serif;
  --ja: "Zen Kaku Gothic New", sans-serif;
  --en: "Montserrat", sans-serif;
  --header: 6rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:1023px) {
  :root {
    --header: 7rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  scroll-behavior: smooth;
  /* 1200px >>10px */
  font-size: clamp(8px, 0.833vw, 10px);
}

body {
  font-family: var(--ja);
  font-weight: 400;
  font-size: 1.6rem;

  background: var(--color-bg);
  color: var(--color-default);
}

* {
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */


@media screen and (max-width:1023px) {
  html {
    font-size: 16px;
  }

  body {
    font-size: 16px;
  }
}

/*================================================
 *  section btn icon ttl
 ================================================*/
section {
  position: relative;
}

.section {
  padding-bottom: 16rem;
}


/* wrap */


.c_wrap-md {
  width: 70.8333%;
  min-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.c_wrap-lg {
  width: 82.63%;
  min-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ttl */
.hd {
  margin-bottom: 5.6rem;
}

.hd .en {
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  font-family: var(--en);
  display: block;
  position: relative;
  padding-left: 1.9rem;
  color: var(--color-gold);
}

.hd .en::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_hd.svg);
  width: 1.2rem;
  height: 1.2rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.hd .ja {
  font-size: 3.2rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: var(--serif);
  line-height: 1.6;
  display: block;
  margin-top: 5.6rem;
}

.hd.md .ja {
  margin-top: 3.2rem;
}

.hd.wt,
.hd.wt .en {
  color: var(--color-inverse);
}


.hd.wt .en::before {
  background-image: url(../images/icon_hd_wt.svg);
}

.hd.wt .ja {
  font-weight: 600;
}


.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon_insta {
  background-image: url(../images/icon_insta.svg);
  width: 24px;
  height: 24px;
}

.icon_arrow {
  background-image: url(../images/icon_arrow.svg);
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}



/* c_btn */
.c_btn-box {
  width: 100%;
}

.c_btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.8rem;
  line-height: 1;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ac .c_btn {
  justify-content: center;
  margin: 0 auto;
}

.c_btn.wt {
  color: var(--color-inverse);
}

.c_btn .en {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  font-family: var(--en);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  transition: transform .7s cubic-bezier(.54, .01, .04, .98);
  position: relative;
}

.c_btn .en.ja {
  font-family: var(--ja);
}

.c_btn:hover .en {
  transform: translateX(2.4rem);
}

.c_btn .en::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/icon_arrow.svg);
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  left: -2.4rem;
  top: 50%;
  transform: translate(-2.4rem, -50%);
  transition: transform .7s cubic-bezier(.54, .01, .04, .98);
}

.c_btn:hover .en::before {
  transform: translate(0, -50%);
  left: -2.4rem;
}

.c_arrow {
  display: block;
  width: auto;
  height: auto;
  overflow: hidden;
}

.c_btn .c_arrow i {
  position: relative;
  transition: transform .7s cubic-bezier(.54, .01, .04, .98);
}

.c_btn:hover .c_arrow i {
  transform: translateX(1.6rem);
}

.c_btn.wt .c_arrow i,
.c_btn.wt .en::before {
  background-image: url(../images/icon_arrow_wt.svg);
}

.icon_blank,
.c_btn[target="_blank"] .c_arrow i,
.c_btn[target="_blank"] .en::before {
  background-image: url(../images/icon_arrow_blank.svg);
}

.icon_blank {
  width: 1em;
  height: 1em;
}



@media screen and (max-width:1023px) {
  .section {
    padding-bottom: 100px;
  }

  .c_wrap-md {
    width: 84%;
    min-width: unset;
  }

  .c_wrap-lg {
    width: 84%;
    min-width: unset;
  }

  .hd {
    margin-bottom: 40px;
  }

  .hd .en {
    font-size: 12px;
  }

  .hd .en::before {
    width: 10px;
    height: 10px;
  }

  .hd .ja {
    font-size: 26px;
    margin-top: 32px;
  }

  .hd.md .ja {
    margin-top: 24px;
  }

  .icon_arrow {
    width: 16px;
    height: 16px;
  }

  .c_btn {
    gap: 8px;
  }

  .c_btn .en {
    font-size: 13px;
  }

  .c_btn:hover .en {
    transform: translateX(24px);
  }

  .c_btn .en::before {
    width: 16px;
    height: 16px;
    left: -40px;
    transform: translate(-40px, -50%);
  }

  .c_btn:hover .en::before {
    /* left: -24px; */
    transform: translate(0, -50%);
  }


  .c_btn:hover .c_arrow i {
    transform: translateX(16px);
  }




  .c_btn {
    gap: 8px;
  }

  .c_btn .en {
    font-size: 13px;
  }

  .c_btn:hover .en {
    transform: translateX(20px);
  }

  .c_btn .en::before {
    width: 16px;
    height: 16px;
    left: -20px;
    transform: translate(-20px, -50%);
  }

  .c_btn:hover .en::before {
    transform: translate(0, -50%);
    left: -20px;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header .nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 20px 32px 40px;
}

header .nav_left {
  width: 36%;
  max-width: 496px;
  height: 50px;
  display: flex;
  align-items: center;
}


header .nav_right {
  position: fixed;
  top: 32px;
  right: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 100;
  background: rgb(247 244 240 / 80%);
  border: 1px solid var(--color-bg);
  padding: 13px 38px;
  border-radius: 100px;
  backdrop-filter: blur(20px);
}

.nav_right .nav_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 32px;
}

.nav_right .nav_menu a {
  line-height: 1;
  font-size: 15px;
}

.nav_right .nav_menu li span {
  display: none;
}

.nav_right .nav_menu .insta a {
  color: var(--color-gold);
  margin-left: 4px;
  font-family: var(--en);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nav_right .nav_menu .insta a i {
  margin-right: 8px;
}

@media screen and (max-width:1023px) {
  header {}

  header .nav_inner {
    padding: 24px 15px;
  }


  header .nav_left {
    width: 75%;
  }

  header .nav_right {
    width: 100%;
    padding: 0;
    top: 0;
    right: 0;
  }

  .hamburger {
    position: absolute;
    right: 15px;
    top: 33px;
    width: 37px;
    height: 8px;
    cursor: pointer;
    z-index: 300;
    transition: all .1s ease-out;
  }

  /* line open */
  .hamburger__line {
    position: absolute;

    right: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-gold);
    transition: all .4s ease-out;
  }

  .hamburger__line--1 {
    top: 0;
  }

  .hamburger__line--3 {
    top: 100%;
    width: 28px;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: rotate(45deg);
    top: 50%;
    width: 28px;
  }

  .open_nav .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 50%;
    width: 28px;
  }

  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
    padding: 24px 15px;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  .nav_right .nav_menu {
    display: block;
  }

  .nav_right .nav_menu .sp_logo {
    margin-bottom: 116px;
  }

  .nav_right .nav_menu .sp_logo a {
    width: 75.44%;
    display: block;
  }

  .nav_right .nav_menu li {
    text-align: center;
    margin-bottom: 44px;
  }

  .nav_right .nav_menu li a {
    font-size: 20px;
  }

  .nav_right .nav_menu li a span {
    text-transform: uppercase;
    display: block;
    font-family: var(--en);
    color: var(--color-gold);
    font-size: 12px;
    margin-top: 10px;
    line-height: 1;
  }

  .nav_right .nav_menu .insta {
    width: 87.5%;
    margin: 88px auto 0;

  }

  .nav_right .nav_menu .insta a {
    display: block;
    margin: 0;
    font-size: 20px;
    padding: 21px 0;
    position: relative;
    z-index: 1;
  }

  .nav_right .nav_menu .insta a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--color-inverse);
    filter: blur(4px);
    border-radius: 15px;
    z-index: -1;
  }

  .nav_right .nav_menu .insta a i {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
}

/*================================================
 *  ft_slide
 ================================================*/



@media screen and (max-width:1023px) {}


/*================================================
* price
================================================*/

@media screen and (max-width:1023px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:1023px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:1023px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:1023px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:1023px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:1023px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:1023px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:1023px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:1023px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:1023px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:1023px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:1023px) {}

/*================================================
* price
================================================*/
.newsList {
  border-top: 1px solid #EED9C2;
}

.newsList li {
  border-bottom: 1px solid #EED9C2;
}

.newsList li a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4rem;
  padding: 56px 20px;
}

.newsList li a span {
  display: block;
  letter-spacing: 0.03em;
}

.newsList li a .n_date {
  min-width: 7rem;
  font-family: var(--en);
  color: var(--color-sub);
  font-size: 1.4rem;
}

.newsList li a .n_cat {
  font-size: 1.4rem;
  width: 8.8rem;
  height: 2.7rem;
  display: grid;
  place-content: center;
  background: var(--color-inverse);
  border: 1px solid var(--color-inverse);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.newsList li a .n_cat.imp {
  border: 1px solid #B01717;
  color: #B01717;
}

.newsList li a .n_ttl {
  border-bottom: 1px solid transparent;
  transition: .4s;
  line-height: 1.5;
}

.newsList li a:hover .n_ttl {
  border-bottom: 1px solid var(--color-default);
}

@media screen and (max-width:1023px) {
  .newsList li a {
    flex-wrap: wrap;
    gap: 15px;
    padding: 24px 0;
  }

  .newsList li a .n_date {
    font-size: 12px;
    min-width: 62px;
  }

  .newsList li a .n_cat {
    font-size: 12px;
    width: 64px;
    height: 20px;
  }

  .newsList li a .n_ttl {
    font-size: 14px;
    width: 100%;
    letter-spacing: 0;
  }
}


/*================================================
 *  footer
 ================================================*/
footer {
  padding-bottom: 40px;
  position: relative;
  /* z-index: 1; */
  /* background: linear-gradient(180deg, rgba(247, 244, 240, 1) 0%, rgba(248, 233, 217, 1) 100%); */
}

footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(247, 244, 240, 1) 0%, rgba(248, 233, 217, 1) 100%);
  /* z-index: -1; */
}


#ft_slide {
  padding-bottom: 16rem;
}

.ft_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.ft_swiper .swiper-slide {
  width: 60rem;
  margin: 0 2.5px;
}

.ft_wrap {
  width: 94.44%;
  margin: 0 auto;
  background: rgb(255 255 255 / 80%);
  border: 1px solid var(--color-inverse);
  border-radius: 1.5rem;
  padding: 72px 0;
  position: relative;
  z-index: 1;
}


.ft_inner {
  width: 87.5%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.ft_logo a {
  display: block;
  max-width: 392px;
  width: 65.88%;
  margin: 0 auto 170px;
}

.ft_logo .copy {
  text-align: center;
  color: #7B735F;
  font-size: 12px;
  font-family: var(--serif);
  letter-spacing: 0;
}

.ft_access {
  border-left: 1px solid #EED9C2;
}

.ft_access-inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 16.8%;
}

.ft_access h2 {
  font-family: var(--serif);
  font-size: 2.6rem;
  margin-bottom: 4rem;
}

.ft_access h2 span {
  display: block;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: var(--color-gold);
  font-weight: 600;
}

.ft_access iframe {
  max-width: 418px;
  display: block;
  aspect-ratio: 418/240;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.ft_access .address {
  margin: 24px 0;
  line-height: 1.5;
}


.ft_access .route li {
  position: relative;
  padding-left: 1em;
  font-size: 1.3rem;
  margin-top: 16px;
}

.ft_access .route li span {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}



.ft_access .route li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}



@media screen and (max-width:1023px) {
  footer {
    padding-bottom: 24px;
  }

  #ft_slide {
    padding-bottom: 80px;
  }

  .ft_swiper .swiper-slide {
    width: 300px;
    margin: 0 1.5px;
  }

  .ft_wrap {
    width: 94.66%;
    border-radius: 10px;
  }


  .ft_inner {
    width: 89.8%;
    grid-template-columns: repeat(1, 1fr);
  }

  .ft_logo {
    order: 2;
  }

  .ft_access {
    order: 1;
    border-left: none;
    border-bottom: 1px solid #EED9C2;
    padding-bottom: 42px;
  }

  .ft_access-inner {
    width: 100%;
    margin: 0;
  }

  .ft_access h2 {
    font-size: 21px;
    margin-bottom: 28px;
  }

  .ft_access h2 span {
    font-size: 14px;
  }

  .ft_access iframe {
    max-width: 100%;
    aspect-ratio: 315/200;
    max-height: 300px;
  }

  .ft_access .route li {
    font-size: 13px;
  }

  .ft_logo a {
    display: block;
    max-width: 235px;
    width: 74.6%;
    margin: 96px auto;
  }
}

/*================================================
* subVisual
================================================*/
#subVisual {
  padding-top: 6.4rem;
  padding-bottom: 2.2rem;
}

.subVisual_topwrap {
  width: 88.88%;
  margin: 0 auto;
}

.subVisual_topwrap .hd {
  margin-bottom: 8rem;
}

.subVisual_topwrap .hd .ja {
  font-size: 5rem;
  margin-top: 1rem;
  letter-spacing: 0.06em;
}

.subVisual_underwrap {
  width: 91.944%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .subVisual_underwrap:has(.anc_list) {
  display: flex;
  align-items: center;
  justify-content: space-between;
} */

.breadcrumbs {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}

.breadcrumbs li:not(:last-child) {
  padding-right: 1.8rem;
  position: relative;
}

.breadcrumbs li:not(:last-child)::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/breadcrumbs_arrow.svg);
  width: 1rem;
  height: 1rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}



.anc_list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 4rem;
}

.anc_list a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1.2rem;
  font-size: 1.5rem;
}

.anc_list .icon_arrow {
  background-image: url(../images/anclist_arrow.svg);
  width: 3.2rem;
  height: 2rem;
}

@media screen and (max-width:1023px) {
  #subVisual {
    padding-top: 48px;
    padding-bottom: 22px;
  }

  .subVisual_topwrap .hd {
    margin-bottom: 64px;
  }

  .subVisual_topwrap .hd .ja {
    font-size: 32px;
    margin-top: 1rem;
    letter-spacing: 0.06em;
  }

  .subVisual_underwrap {
    flex-wrap: wrap;
  }

  .breadcrumbs {
    font-size: 12px;
    padding-bottom: 64px;
    width: 100%;
  }

  .subVisual_underwrap:has(.anc_list) .breadcrumbs {
    padding-bottom: 32px;
  }

  .anc_list {
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }

  .anc_list li {
    /* width: 100%; */
  }

  .anc_list a {
    gap: 8px;
    font-size: 15px;
  }

  .anc_list .icon_arrow {
    width: 32px;
    height: 20px;
  }
}




/*================================================
* access
================================================*/


@media screen and (max-width:1023px) {}