@charset "UTF-8";
/* ----------------------------------------------------------------------
	index
  1.reset
  2.margin
  3.color
  4.font
  5.base
  6.button
  7.header
  8.footer
  9.contents
  10.section
---------------------------------------------------------------------- */

/* ----------------------------------------------------------------------
	1.reset (A Modern CSS Reset)
---------------------------------------------------------------------- */
*,*::before,*::after {
  box-sizing: border-box;
}

ul[class],ol[class] {
  padding: 0;
  list-style: none;
}

body,h1,h2,h3,h4,p,ul[class],ol[class],li,figure,figcaption,blockquote,dl,dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.8;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,button,textarea,select {
  font: inherit;
}

button {
	background: none;
	border: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ----------------------------------------------------------------------
	2.margin
---------------------------------------------------------------------- */
/* contents margin */
:root {
  --cm-p200: 10.41666vw;
  --cm-p150: 7.8125vw;
  --cm-p125: 6.51041vw;
  --cm-p100: 5.20833vw;
  --cm-p80: 4.16666vw;
  --cm-p60: 3.125vw;
  --cm-p50: 2.60416vw;
  --cm-p40: 2.08333vw;
  --cm-p30: 1.5625vw;
  --cm-p20: 1.04166vw;
  --cm-p10: 0.52083vw;
}

:root {
  --cm-200: 19.53125vw;
  --cm-150: 14.64843vw;
  --cm-125: 12.20703vw;
  --cm-100: 9.76562vw;
  --cm-80: 7.8125vw;
  --cm-60: 5.85937vw;
  --cm-50: 4.88281vw;
  --cm-40: 3.90625vw;
  --cm-30: 2.92968vw;
  --cm-25: 2.60416vw;
  --cm-20: 1.95312vw;
  --cm-10: 0.97656vw;
}
/* ----------------------------------------------------------------------
	3.font
---------------------------------------------------------------------- */
/* YakuHanMPs(明朝体 少量版 Bold) */
@font-face {
  font-family: "YakuHanMPs-B";
  font-style: bold;
  font-weight: 500;
  src: url("../fonts/YakuHanMPs-Bold.eot");
  src: url("../fonts/YakuHanMPs-Bold.woff2") format("woff2"), url("../fonts/YakuHanMPs-Bold.woff") format("woff");
}

/* Shippori Mincho(Mediun) */
@font-face {
  font-family: "Shippori Mincho Medium";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ShipporiMinchoS-Medium.eot");
  src: url("../fonts/ShipporiMinchoS-Medium.woff2") format("woff2"), url("../fonts/ShipporiMinchoS-Medium.woff") format("woff");
}

/* Shippori Mincho(Semi-bold) */
@font-face {
  font-family: "Shippori Mincho Semi-bold";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/ShipporiMinchoS-SemiBold.eot");
  src: url("../fonts/ShipporiMinchoS-SemiBold.woff2") format("woff2"), url("../fonts/ShipporiMinchoS-SemiBold.woff") format("woff");
}

:root {
  --fs-p75: 3.90625vw;
  --fs-p70: 3.64583vw;
  --fs-p65: 3.38541vw;
  --fs-p60: 3.125vw;
  --fs-p55: 2.86458vw;
  --fs-p50: 2.60416vw;
  --fs-p45: 2.34375vw;
  --fs-p40: 2.08333vw;
  --fs-p35: 1.82291vw;
  --fs-p30: 1.5625vw;
  --fs-p27: 1.40625vw;
  --fs-p24: 1.25vw;
  --fs-p21: 1.09375vw;
  --fs-p18: 0.9375vw;
  --fs-p16: 0.8333vw;
  --fs-p14: 0.72916vw;
  --fs-p12: 0.625vw;
  --fs-p10: 0.52083vw;
}

:root {
  --fs-75: 7.32421vw;
  --fs-70: 6.83593vw;
  --fs-65: 6.34765vw;
  --fs-60: 5.85937vw;
  --fs-55: 5.37109vw;
  --fs-50: 4.88281vw;
  --fs-45: 4.39453vw;
  --fs-40: 3.90625vw;
  --fs-35: 3.41796vw;
  --fs-30: 2.92968vw;
  --fs-27: 2.63671vw;
  --fs-24: 2.34375vw;
  --fs-21: 2.05078vw;
  --fs-18: 1.7578vw;
  --fs-16: 1.5625vw;
  --fs-14: 1.36718vw;
  --fs-12: 1.17187vw;
  --fs-10: 0.97656vw;
}

html {
  font-size: 62.5%;
}

body {
  color: var(--black);
  font-family: "YakuHanMPs-B", "Shippori Mincho Medium";
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1rem;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  body{
    font-family: "YakuHanMPs-B", "Shippori Mincho Semi-bold";
    font-weight: 700;
  }
} 

/* ----------------------------------------------------------------------
	4.color
---------------------------------------------------------------------- */
:root {
  --white: #FFFFFF;
  --black: #151D21;
  --gold: #745229;
  --beige: #D3CBBC;
  --bluegray:#575B6C;
  --midnight: #151D21;
  --smokeblue: #628799;
  --darkgray: #333333;
  --lightgray: #999999;
}

html {
  color: var(--black);
}
/* ----------------------------------------------------------------------
	5.base
---------------------------------------------------------------------- */
html {
  position: relative;
  overflow-x: hidden;
  height: 100%;
}

body {
  position: relative;
  height: 100%;
}

h1,h2,h3 {
  font-weight: normal;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* uppercase */
.uc {
  text-transform: uppercase;
}

br.tbsp-only {
  display: none;
}

br.sp-only {
  display: none;
}

.dis-sp-only {
  display: none;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  /* no line break */
  br.tb-none {
    display: none;
  }

  br.tb-only-none {
    display: none;
  }

  br.tbsp-only {
    display: block;
  }
}
/* SP */
@media screen and (max-width: 520px) {
  /* no line break */
  br.tb-only-none {
    display: block;
  }

  br.sp-none {
    display: none;
  }

  br.sp-only {
    display: block;
  }

  .dis-sp-none {
    display: none;
  }

  .dis-sp-only {
    display: block;
  }
}

/* ----------------------------------------------------------------------
	6.button
---------------------------------------------------------------------- */
.btn { 
  display: inline-block;
  padding: clamp(1rem, 1vw, 2rem) clamp(2rem, 2vw, 4rem);
  color: var(--white);
  font-size: min(var(--fs-p27), 2.7rem);
  letter-spacing: 0.2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--midnight);
  z-index: -2;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--smokeblue);
  transition: all 0.3s;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  .btn { 
    font-size: min(var(--fs-27), 2.7rem);
  }
}
/* SP */
@media screen and (max-width: 520px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 2.1rem;
  }
}

/* back to top */
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background: transparent;
	width: 6rem;
	height: 6rem;
  border-radius: 50%;
	text-align: center;
	transition:all 0.3s;
}

#page-top a:hover{
	background: var(--smokeblue);
}

#page-top {
	position: fixed;
	right: 2rem;
	z-index: 20000;
	opacity: 0;
	transform: translateY(100px);
  -webkit-opacity: 0;
  -webkit-tranform: translateY(100px);
}

/* ----------------------------------------------------------------------
	7.header
---------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 22vw;
  height: 100vh;
  background-color: var(--gold);
  font-size: min(var(--fs-p30), 3rem);
  color: var(--white);
  z-index: 1;
}

.header-inner {
  width: 100%;
  height: 100%;
  display: grid;
  justify-items: center;
  align-content: space-between;
}

.header-logo {
  width: min(67%, 30rem);
  height: auto;
  padding-top: 8vh;
}

.gnav-list {
  display: grid;
  justify-items: center;
}

.gnav-item {
  line-height: 2.5;
}

.gnav-item a,
.share-list a {
  color: var(--white);
}

.share {
  width: 100%;
}

.share-list {
  width: 100%;
  display: grid;
}

.share-item {
  width: 100%;
  height: 10rem;
  display: grid;
  place-items: center;
}

.share-item i {
  margin-left: 1rem;
  font-size: 1.2em;
  vertical-align: middle;
}

.share-item._store {
  background-color: var(--midnight);
  transition-duration: .3s;
}

.share-item._store:hover {
  background-color: var(--smokeblue);
  transition-duration: .3s;
}

.header-clogo img {
  width: 12rem;
  height: auto;
  margin: 0 auto;
}

.sp-menu {
  display: none;
}

/* Responsive -------------------------------------------------------- */
/* PC WIDE */
@media screen and (min-width: 2000px) {
  .share-item {
    height: 12rem;
  }
  .header-clogo img {
    width: 15rem;
  }
}
/* TB */
@media screen and (max-width: 1024px) {
  .header {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 16.113vw;
    background-color: transparent;
    font-size: min(var(--fs-30), 3rem);
    z-index: 100;
  }

  .header-inner {
    width: 100%;
    display: flex;
    justify-items: auto;
  }

  .header-logo {
    width: min(30%, 30rem);
    height: auto;
    margin: 2rem auto 0 2rem;
    padding: 0 0 0 2rem;
  }

  .gnav,
  .share {
    display: none;
  }

  .sp-menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(21, 29, 33, 0.9);
    padding: var(--cm-20) var(--cm-25);
    z-index: 10;
  }

  .sp-menu-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .sp-menu-list a{
    color: var(--white);
  }

  .sp-menu-list i {
    /* font-size: 3.6rem; */
    font-size: 3rem;
  }

  .sp-menu-list i.fa-instagram {
    margin-right: 0.5rem;
  }

  /* menu-btn */
  .openbtn{
    position: relative;
    background: transparent;
    cursor: pointer;
    width: 5rem;
    height: 5rem;
    border-radius: 0.5rem;
    z-index: 1000;
  }

  .openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 1.4rem;
    height: 0.2rem;
    border-radius: 0.5rem;
	  background: var(--white);
  	width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top:1.3rem;	
  }

  .openbtn span:nth-of-type(2) {
    top:1.9rem;
  }

  .openbtn span:nth-of-type(3) {
    top:2.5rem;
  }

  .openbtn span:nth-of-type(3)::after {
    content:"Menu";
    position: absolute;
    top: 0.4rem;
    left: 0.1rem;
    color: var(--white);
    font-size: 0.6rem;
    text-transform: uppercase;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 1.4rem;
    left: 1.8rem;
    transform: translateY(0.6rem) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3){
    top: 2.6rem;
    left: 1.8rem;
    transform: translateY(-0.6rem) rotate(45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    transform: translateY(0) rotate(-45deg);
    top: 0.5rem;
    left: 0.4rem;
  }

  /* sp-menu modal */
  #sp-gnav{
    position:fixed;
    z-index: 999;
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;
    background: var(--lightgray);
    transition: all 0.6s;
  }

  #sp-gnav.panelactive{
    right: 0;
  }

  #sp-gnav.panelactive #sp-gnav-list-wrap {
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

  #sp-gnav ul {
    width: 100%;
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
  }

  #sp-gnav li{
    width: 100%;
    text-align: center;
  }

  #sp-gnav li a{
    width: 100%;
    color: var(--darkgray);
    text-decoration: none;
    padding:1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}

/* SP */
@media screen and (max-width: 520px) {
  .header {
    height:10rem;
  }

  .header-logo {
    width: 12rem;
    height: auto;
    margin-top: -20px;
    padding: 0;
  }

  .sp-menu {
    padding: 1rem 1.5rem;
  }

  #sp-gnav li a {
    font-size: 2.1rem;
  }
}

/* ----------------------------------------------------------------------
	8.footer
---------------------------------------------------------------------- */
.footer {
  color: var(--white);
  background-color: var(--midnight);
}

.footer-inner {
  padding: var(--cm-p80) 0;
}

.footer-wrap {
  margin-bottom: var(--cm-p100);
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
}

.footer-logo img {
  width: min(9vw, 30rem);
  height: auto;
}

.f-nav-list a,
.f-share-list a {
  color: var(--white);
}

.f-nav-list {
  font-size: min(var(--fs-p21), 2.1rem);
}

.f-nav-item {
  line-height: 2.2;
}

.f-share-item {
  font-size: min(var(--fs-p21), 2.1rem);
  line-height: 2.8;
}

.f-share-item i {
  margin-left: 1rem;
  vertical-align: middle;
}

.footer-copy {
  font-size: min(var(--fs-p16), 1.6rem);
  text-align: center;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {  
  .footer-inner {
    padding: var(--cm-80) 0;
  }
  
  .footer-wrap {
    margin-bottom: var(--cm-80);
    grid-template-columns: 1fr;
  }
  
  .footer-logo img {
    width: min(60vw, 20rem);
    height: auto;
    margin: 0 auto var(--cm-80);
  }
  
  .f-nav,
  .f-share {
    text-align: center;
  }

  .f-nav-item,
  .f-share-item {
    font-size: min(var(--fs-27), 2.7rem);
    line-height: 3;
  }
  
  .footer-copy {
    font-size: min(var(--fs-16), 1.6rem);
    text-align: center;
  }
}
/* SP */
@media screen and (max-width: 520px) {
  .f-nav-item,
  .f-share-item {
    font-size: 2.1rem;
    line-height: 2.4;
  }

  .footer-copy {
    font-size: 1.4rem;
  }
}

/* ----------------------------------------------------------------------
	9.contents
---------------------------------------------------------------------- */
/* Contents Width wrap */
.w-wrap {
  width: 100%;
  padding-left: 22vw;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  .w-wrap {
    padding-left: 0;
  }
}
/* ----------------------------------------------------------------------
	10.section
---------------------------------------------------------------------- */
.s-inner {
  width: min(92%, 1250px);
  margin: auto;
  padding: var(--cm-p100) 0;
}

.s-header {
  font-size: min(var(--fs-p40), 4rem);
  text-align: center;
  margin-bottom: var(--cm-p80);
}

.s-txt {
  width: min(50vw, 100rem);
  margin: 0 auto var(--cm-p80);
  font-family: "YakuHanMPs-B", "Shippori Mincho Semi-bold";
  font-weight: 600;
  font-size: min(var(--fs-p21), 2.1rem);
  line-height: 2.4;
}

/* Responsive -------------------------------------------------------- */
/* TB */
@media screen and (max-width: 1024px) {
  .s-inner {
    padding: var(--cm-100) 0;
  }

  .s-header {
    font-size: min(var(--fs-40), 4rem);
    margin-bottom: var(--cm-80);
  }
  
  .s-txt {
    width: 100%;
    margin: 0 auto var(--cm-80);
    font-size: min(var(--fs-21), 2.1rem);
  }
}

@media screen and (max-width: 520px) {
  .s-header {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  
  .s-txt {
    width: 100%;
    margin: 0 auto 4rem;
    font-size: 1.6rem;
    line-height: 1.8;
  }
}