@charset "UTF-8";

:root {
  --base: #ffffff;
  --main-red: #d70020;
  --acnt-gold: #c1a470;
  --acnt-black: #1b1919;
  --acnt-black-rgb: rgb(27, 25, 25);
  --black: #000000;
  --black-rgb: rgb(0, 0, 0);
  --gray: #e2e2e2;
  --gray2: #eeeeee;
  --txt-gray: #76767b;
}

html {
  font-size: 62.5%;
}

body {
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: var(--base);
  color: var(--acnt-black);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-kerning: normal;
  letter-spacing: .04em;
  position: relative;
}

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(../img/pc/main_bg_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

.wrapper {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto); */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

a {
  color: var(--acnt-black);
  text-decoration: none;
  transition: .3s ease-in-out;
}

ul {
  list-style: none;
}

/* parts */
.flexB {
  display: flex;
  justify-content: space-between;
}

.flexC {
  display: flex;
  justify-content: center;
}

.flexE {
  display: flex;
  justify-content: flex-end;
}

.flexW {
  display: flex;
  flex-wrap: wrap;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* グラデーションタイトル */
.gr-txt {
  background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(50, 48, 48, 1) 50%, rgba(255, 11, 47, 1) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}

/* btn */
.button {
  position: relative;
  display: block;
  cursor: pointer;
  width: 240px;
  padding: 16px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto;
  z-index: 5;
  background-color: var(--acnt-black);
  transition: .3s ease-in-out;
}

.button::before,
.button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.button::before {
  border: 1px solid;
  border-image: linear-gradient(45deg, rgba(186, 148, 68, 1) 0%, rgba(84, 41, 33, 1) 35%, rgba(208, 160, 68, 1) 69%, rgba(99, 36, 0, 1) 75%, rgba(211, 167, 68, 1)) 1;
}

.button::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px auto auto 1px;
  transition: .3s ease-in-out;
}

.button:hover {
  background: rgb(252, 241, 201);
    background: linear-gradient(180deg, rgba(252, 241, 201, 1) 0%, rgba(240, 228, 193, 1) 35%, rgba(227, 214, 184, 1) 73%, rgba(190, 180, 156, 1) 100%);
    color: #46350f;
}

/* button2 */
.button2 {
  background: var(--acnt-black);
  display: inline-grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 1rem;
  align-items: center;
  inline-size: max(100%, 15rem);
  color: var(--base);
  font-weight: 600;
  padding: 2.3rem;
  border-radius: calc(1px / 0);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.35);
}

.button2::before {
  content: "";
}

.button2::after {
  content: "";
  display: inline-block;
  inline-size: 1.5ex;
  aspect-ratio: 1;
  border-block-start: 2px solid;
  border-inline-end: 2px solid;
  justify-self: end;
  rotate: 45deg;
}

.button2:hover {
  background: var(--main-red);
}

/* button3 */
.button3 {
  background: var(--base);
  display: inline-grid;
  border: 1px solid var(--acnt-gold);
  grid-template-columns: 1fr auto 1fr;
  column-gap: 1rem;
  background: var(--acnt-black);
  align-items: center;
  inline-size: min(100%, 10rem);
  color: var(--base);
  font-weight: 600;
  padding: .8rem 1rem;
  border-radius: calc(1px / 0);
}

.button3::before {
  content: "";
}

.button3::after {
  content: "";
  display: inline-block;
  inline-size: 1ex;
  aspect-ratio: 1;
  border-block-start: 1px solid var(--base);
  border-inline-end: 1px solid var(--base);
  justify-self: end;
  rotate: 45deg;
}

.prev.button3::before {
  content: "";
  display: inline-block;
  inline-size: 1ex;
  aspect-ratio: 1;
  border-block-start: 1px solid var(--base);
  border-inline-end: 1px solid var(--base);
  justify-self: end;
  rotate: 226deg;
}

.prev.button3::after {
  content: "";
  display: none;
}

/* ブラック四角枠 */
.black-frame {
  border: 3px solid var(--acnt-black);
  margin-bottom: 3.6rem;
  position: relative;
}
.black-frame__inner{
  padding: 0 1rem 2rem;
}
/* .gold-frame::before,
.gold-frame::after {
  position: absolute;
  content: "";
  display: block;
  width: 22px;
  height: 11px;
  background-color: var(--acnt-gold);
  clip-path: polygon(50% 0%, 0% 11px, 22px 11px);
}

.gold-frame::before {
  top: -2px;
  left: -9px;
  rotate: 314deg;
}

.gold-frame::after {
  bottom: -2px;
  right: -9px;
  rotate: 130deg;
} */

/* 四角枠 */
.frame {
  border: 2px solid var(--acnt-black);
  padding: 2rem;
  position: relative;
  margin-bottom: 6rem;
}

.frame::before,
.frame::after {
  content: "";
  display: block;
  width: 14px;
  height: 7px;
  background-color: var(--acnt-black);
  clip-path: polygon(50% 0%, 0% 7px, 14px 7px);
  position: absolute;
}

.frame::before {
  rotate: -45deg;
  top: -1px;
  left: -5px;
}

.frame::after {
  rotate: 132deg;
  bottom: -1px;
  right: -5px;
}

/* breadcrumb */
.breadcrumb {
  list-style: none;
  width: 100%;
  padding: .5rem 0 2rem;
}

.breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 1.4rem;
}

.breadcrumb li:after {
  content: "";
  background: url(../img/pc/breadcrumb_arrow.svg) no-repeat center/100%;
  padding: 0 0.2em;
  display: inline-block;
  width: 6px;
  height: 9px;
  margin: 0 .3rem;
}

.breadcrumb li:last-child:after {
  content: none;
}

.breadcrumb li a {
  text-decoration: none;
  color: var(--acnt-black);
}

/* common */
.page-ttl {
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--main-red);
  background-color: var(--base);
  position: relative;
  z-index: 10;
}

.content-wrapper {
  width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--base);
  border-top: 0;
  box-shadow: 0px 0px 26px 0px rgba(109, 109, 109, 0.6);
  position: relative;
  z-index: 0;
  background: #f2f0f0;
  padding: 0 2rem;
}

.content-wrapper header {
  padding: 1.6rem 0 2rem;
  margin-bottom: 2rem;
}

.header-info {
  margin-right: 1.6rem;
}

.header-credit {
  background: var(--base);
  border: 1px solid var(--black);
  padding: 2rem 2.9rem;
  margin-bottom: 1px;
}

.header-credit p {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
}

.header-credit .button {
  font-size: 1.2rem;
  padding: .8rem 1rem;
  width: 180px;
  transition: .5s ease-in-out;
}

.header-credit .button:hover, .header-credit .button:hover::after {
  opacity: .6;
  background: var(--acnt-black);
  color:  var(--base);
}

.header-credit .button img {
  vertical-align: sub;
}

.content {
  gap: 20px;
}

.content .left-aside {
  display: block;
  width: 200px;
}

.content.top main {
  display: block;
  width: 600px;
}

.content main.under {
  display: block;
  width: 838px;
  padding-bottom: 6rem;
}

.content main.under .ttl-txt{
  margin-bottom: 2rem;
}

.content .right-aside {
  display: block;
  width: 220px;
}

.left-aside nav .nav-item {
  height: 50px;
  padding-bottom: 1rem;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  position: relative;
}

.left-aside nav a,
.left-aside nav .nav-item_about {
  font-size: 1.6rem;
  background: url(../img/pc/nav-item-bg.jpg) repeat;
  display: block;
  color: var(--acnt-gold);
  padding-left: 1.5rem;
  border: 1px solid var(--acnt-gold);
  height: 50px;
  line-height: 50px;
  transition: .3s ease-in-out;
}

.left-aside nav .nav-item_about {
  margin-bottom: 0;
  cursor: pointer;
}

.left-aside nav a:hover,
.left-aside nav .nav-item_about:hover {
  background: rgb(252,241,201);
  background: linear-gradient(180deg, rgba(252,241,201,1) 0%, rgba(240,228,193,1) 35%, rgba(227,214,184,1) 73%, rgba(190,180,156,1) 100%);
  color: #46350f;
}

/* .left-aside nav span {
  text-transform: uppercase;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  display: block;
  margin-top: 0.3rem;
  transition: .3s ease-in-out;
} */

.left-aside nav li:nth-child(7) {
  background: var(--gray);
  margin-bottom: 0.5rem;
}

.left-aside nav li:nth-child(7) ul{
  padding: 1.1rem 0 .5rem;
  display: none;
}

.left-aside nav li:hover:nth-child(7) ul li {
  background: none;
}

.left-aside nav li>ul li {
  padding: 0 .5rem;
}

.left-aside nav li>ul li a {
  background: url(../img/pc/nav-item-bg.jpg) repeat;
  display: block;
  padding: 1rem;
  margin-bottom: 0.6rem;
  border-radius: 15px;
  border: 1px solid var(--acnt-gold);
  height: auto;
  line-height: inherit;
  font-size: 1.2rem;
}

.left-aside nav li>ul li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../img/pc/nav-menu_deco.svg) no-repeat center/100%;
  margin-right: .8rem;
}

.left-aside nav>ul>li:last-child {
  margin-bottom: 3.8rem;
}

.left-aside nav li>ul li a:hover {
  background: rgb(252,241,201);
  background: linear-gradient(180deg, rgba(252,241,201,1) 0%, rgba(240,228,193,1) 35%, rgba(227,214,184,1) 73%, rgba(190,180,156,1) 100%);
  color: #46350f;
}

.sub-nav {
  margin-bottom: 4rem;
}

.bnr-area .bnr-item {
  margin-bottom: 1.3rem;
}

/* 下層ページタイトル */
.ttl-txt {
  background: var(--acnt-black);
  border-top: 3px solid var(--acnt-gold);
  padding: 1rem 1rem .5rem;
  margin-bottom: 1rem;
  color: var(--base);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3rem;
}

.ttl-txt .initial , .ttl-txt02 .initial {
  color: var(--acnt-gold);
}

.ttl-txt .jp_font , .ttl-txt02 .jp_font {
  font-size: 1.3rem;
  margin-left: 1rem;
}

/* 枠内テキストタイトル */
.ttl-txt02 {
  text-transform: uppercase;
  font-size: 3rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  background: var(--acnt-black);
  margin-bottom: 0.3rem;
  border-bottom: 3px solid var(--acnt-gold);
  margin-bottom: 3rem;
  color: var(--base);
  padding: 1.5rem 1rem;
}

.ttl-txt02 .jp_font{
  display: block;
  margin-left: 0;
  padding-top: 1rem;
}




/* サブタイトル */
.sub-ttl {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4rem;
}

.sub-ttl span {
  background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(50, 48, 48, 1) 50%, rgba(255, 11, 47, 1) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 3.2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  display: block;
  border-bottom: 1px solid var(--acnt-black);
  width: fit-content;
  margin: 0 auto 1.3rem;
  padding: 0 1rem 1rem;
  position: relative;
  line-height: 1;
}

.sub-ttl span::before,
.sub-ttl span::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../img/pc/sub-ttl_deco.svg) no-repeat center/100%;
  position: absolute;
}

.sub-ttl span::before {
  bottom: -4px;
  left: -11px;
}

.sub-ttl span::after {
  bottom: -4px;
  right: -11px;
}

/* sub-ttl02 */
.sub-ttl02 {
  text-align: left;
  margin-bottom: 4rem;
  padding: 0 .8rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.sub-ttl02 span {
  display: block;
  border-bottom: 1px solid var(--acnt-black);
  padding: 0 1rem 1.5rem;
  margin: 0 auto 1.3rem;
  position: relative;
  line-height: 1;
  color: var(--acnt-black);
  font-weight: 600;
}

.sub-ttl02 span::before,
.sub-ttl02 span::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: url(../img/pc/sub-ttl_deco.svg) no-repeat center/100%;
  position: absolute;
}

.sub-ttl02 span::before {
  bottom: -4px;
  left: -10px;
}

.sub-ttl02 span::after {
  bottom: -4px;
  right: -10px;
}

/* inner */
.inner {
  padding: 0 4rem;
}

/* footer */
.footer-bnr{
  background: var(--gray);
  padding: 4rem 0;
}
.footer-bnr__grid {
  width: 1100px;
  margin: 0 auto;
}
.footer-bnr__grid li{
  transition: .4s;
  background: gray;
}
.footer-bnr__grid li:hover {
  background: white;
}
.footer-bnr__grid li a {
  display: block;
  position: relative;
  padding: 18px 3em 18px 1em;
  color: white;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 1.4em;
  line-height: .8;
  font-family: "Cormorant Garamond", serif;
}
.footer-bnr__grid li a::after{
  content: "";
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/pc/bnr-arrow.svg) no-repeat center/100%;
  line-height: 1;
  top: 50%;
  translate: 0 -50%;
  right: 1rem;
  transition: .6s;
}
.footer-bnr__grid li a:hover::after{
  right: .4rem;
}
.footer-bnr__grid li span{
  display: block;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}
.bnr-rec{
  background: linear-gradient(90deg, rgb(255 0 89 / 80%) 38.5%, rgb(255 141 181 / 80%) 100%);
}
.bnr-recM{
  background: linear-gradient(90deg, rgb(12 1 80 / 80%) 38.5%, rgb(80 108 239 / 80%) 100%);
}
.bnr-reserve{
  background: rgb(238 0 35 / 80%);
}
.bnr-mailmag{
  background: rgb(42 42 42 / 80%);
}
.bnr-question{
  background: rgb(5 110 46 / 80%);
}
.bnr-review{
  background: rgb(3 12 54 / 80%);
}
.footer-top {
  background: var(--main-red);
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}

.footer-top a {
  color: var(--base);
  display: block;
  padding: 1.8rem 0;
}

.footer-top a span {
  position: relative;
}

.footer-top a span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 9px;
  background: url(../img/pc/arrow-top.svg) no-repeat center/100%;
  margin-right: 0.5rem;
}

.footer-bottom {
  background: rgb(208, 0, 29);
  background: radial-gradient(circle, rgba(208, 0, 29, 1) 0%, rgba(193, 22, 30, 1) 30%, rgba(162, 28, 32, 1) 64%, rgba(135, 0, 29, 1) 100%);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 5rem;
  color: var(--base);
}

.footer-nav a {
  color: var(--base);
  font-size: 1.4rem;
}

.footer-nav a:hover {
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
}

.footer-nav ul {
  gap: 3rem;
}

.footer-nav ul li {
  margin-bottom: 1.2rem;
}

.nav-about a {
  padding-left: 5px;
}

.nav-about a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background: url(../img/pc/footer-nav-deco.svg) no-repeat center/100%;
  position: relative;
  top: -5px;
  margin-right: 5px;
}

.footer-logo {
  margin-bottom: 2rem;
}