@charset "UTF-8";

/* ===============================
   リセット
================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  margin: 0;
  padding:0;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a { text-decoration: none; color: inherit; transition: all .3s ease;}
img{ max-width: 100%; height: auto; vertical-align: middle; border: none; }
figure {margin: 0;}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ===============================
   共通レイアウト
================================ */

html.base-large{
    font-size: 28px;
}
html.base-medium{
    font-size: 24px;
}
html.base-small{
    font-size: 20px;
}
@media (max-width: 479px) {
  html.base-large{
    font-size: 24px;
  }
  html.base-medium{
    font-size: 20px;
  }
  html.base-small{
    font-size: 16px;
  }
}


body {
  font-size: 1rem;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Shippori Mincho", serif;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.1em;
  background-color: #F9F8F7;
}

.inner{
  width: 70%;
  max-width: 1400px;
  margin: 0 auto;
  /*padding: 30px 0;*/
}

a:hover {
  color: #c38456;
}

h2 {
  text-align: center;
  font-size: clamp(1.325rem, 2.5vw, 2rem);
  font-weight: 500;
  margin-bottom: 50px;
}
h3 {
  text-align: center;
  font-size: clamp(1.0625rem, 2vw, 1.5rem);
  font-weight: normal;
}
	h3 p{
		margin-bottom:0 !important;
	}

.btn {
  max-width: 100%;
}
.btn a {
  font-size: 0.925rem;
  color: #535050;
  height: 80px;
  background-color: #D3CDCD;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #D3CDCD;
  border-radius: 5px;
  box-shadow: 5px 5px 8px 0 rgba(150,150,150,0.7);
  white-space: nowrap;
}
.btn a:after {
  content: "";
  display: inline-block;
  width: 0.625em;
  height: 0.5em;
  background-image: url(../image/arrow1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 8px;
}
.btn a:hover {
  color: #c38456;
  background-color: #f5f5f5;
}
.btn a:hover:after {
  background-image: url(../image/arrow3.svg);
}

@media (max-width: 1499px) {
  .inner{
    width: 84%;
  }
}
@media (max-width: 1299px) {
  .inner{
    width: calc(100% - 60px);
    padding: 80px 0;
  }
}
@media (max-width: 479px) {
  .inner {
      width: calc(100% - 40px);
  }
}




/* ===============================
   うごき
================================ */
/*.fadein {
  animation: fadeIn 3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}*/

.fadeIn {
  opacity: 0;
  transition: opacity 2s;
}
.fadeIn.is-show {
  opacity: 1;
}




/* ===============================
   ヘッダー
================================ */
header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 1000;
  transition: 0.25s ease;
  padding: 0 5vw 0 2.5vw;
}
header:hover {
  /*background: rgba(255,255,255,0.9);*/
  /* hover時に帯表示 */
}

header:hover #pc-nav > ul > li > a,header:hover #pc-nav > ul > li > span {
  /*color: #333;*/
}

header .header-tools {
  display: flex;
  align-items: center;
}
header .logo {
  margin: 0;
}
header .logo a {
  display: inline-block;
  height: 100%;
}
header .logo img {
  width: 350px;
  transition: 0.2s ease;
  vertical-align: baseline;
}
header .logo img.logo-black {
  display: none;
}
header:hover .logo img.logo-white {
  /*display: none;*/
}
header:hover .logo img.logo-black {
  /*display: inline;*/
}

/* 文字サイズ切替 */
.fsize-controller {
  display: flex;
  gap: 8px;
  margin-left: 50px;
}
.fsize-controller p {
  font-size: 14px;
  color: #fff;
  line-height: 30px;
  margin-right: 8px;
}
.fsize-controller__button {
  width: 30px;
  height: 30px; 
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
}
header:hover .fsize-controller p {
  /*color: #333;*/
}
header:hover .fsize-controller__button {
  /*color: #333;
  border: 1px solid #333;*/
}

html.base-large .fsize-controller__button:nth-of-type(1),
html.base-medium .fsize-controller__button:nth-of-type(2),
html.base-small .fsize-controller__button:nth-of-type(3) {
  background-color: #888;
  
}
html.base-large header:hover .fsize-controller__button:nth-of-type(1),
html.base-medium header:hover .fsize-controller__button:nth-of-type(2),
html.base-small header:hover .fsize-controller__button:nth-of-type(3) {
  color: #fff;
}

/* PCナビ */
#pc-nav {
    height: 100%;
}
#pc-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%; /* ヘッダーの高さに合わせる */
}

#pc-nav > ul > li {
  position: relative;
  height: 100%;
}

#pc-nav > ul > li > a,#pc-nav > ul > li > span {
  display: block;
  color: #fff;
  /*font-size: clamp(0.75rem, 1.8vw, 0.875rem);*/
  font-size:28px !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 1em;
  height: 100%;
  width: 100%;
}
.base-small #pc-nav > ul > li > a,
.base-small #pc-nav > ul > li > span {
	font-size:24px !important;
}
#pc-nav > ul > li > a > i,
#pc-nav > ul > li > span > i{
	text-decoration:underline;
	font-style:normal;
}

header:hover #pc-nav > ul > li > a:hover,header:hover #pc-nav > ul > li > span:hover {
  color: #c38456;
}


/* ドロップダウン */
#pc-nav > ul:last-of-type li span:after {
  content: "";
  width: 0;
  height: 0;
  border-right: 6.5px solid transparent;
  border-top: 8px solid #fff;
  border-left: 6.5px solid transparent;
  position: absolute; 
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .2s;
}
header:hover #pc-nav > ul:last-of-type li span:after {
  /*border-top: 8px solid #333;*/
  border-top: 8px solid #FFF;
}
header:hover #pc-nav > ul:last-of-type li:hover span:after {
  transform: rotate(180deg);
  transform-origin:50% 25%;
}
#pc-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #D3CDCD;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 999;
  height: auto;
}
#pc-nav .dropdown-menu li a {
  padding: 12px 20px;
  display: block;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
  font-size: clamp(0.75rem, 1.8vw, 0.875rem);
}
#pc-nav .dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #c38456;
}
#pc-nav li:hover .dropdown-menu {
  display: block;
}


/* SPナビ（ハンバーガー） */
#sp-nav {
  display: none;
}
#sp-nav {
  position: fixed;       /* 固定レイヤーにしておく（画面外に隠す） */
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  padding-top: 80px;         /* header 高さ分の余白 */
  transform: translateX(100%);   /* 初期は画面外（右） */
  transition: transform 0.32s ease;
  will-change: transform;
}

/* --- open 時にスライドイン --- */
#sp-nav.open {
  transform: translateX(0);
}
/* メニュー内の要素 */
#sp-nav .fsize-controller,
#sp-nav ul {
  padding: 20px;
}
#sp-nav .fsize-controller {
  margin-left: 0;
  margin-bottom: 10px;
}
#sp-nav .fsize-controller p {
  color: #333;
}
#sp-nav .fsize-controller__button {
  color: #333;
  border: 1px solid #333;
}

#sp-nav ul {
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

#sp-nav ul li {
  border-bottom: 1px solid #ccc;
}

#sp-nav ul li a {
  display: block;
  padding: 16px 0;
  font-size: 0.75rem;
  text-decoration: none;
  color: #333;
}


.hamburger {
  display: none;
  width: 60px;
  height: 60px;
  background-color: #d3cdcd;
  border-radius: 4px;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 15px;
  z-index: 1001;
}
.hamburger span:not(.label) {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background-color: #333;
  transition: all 0.5s ease;
}
.hamburger span:not(.label):nth-of-type(1) {
  top: 12px;
}
.hamburger span:not(.label):nth-of-type(2) {
  top: 20px;
}
.hamburger span:not(.label):nth-of-type(3) {
  top: 28px;
}
.hamburger.open span:not(.label):nth-of-type(1) {
  top: 20px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.open span:not(.label):nth-of-type(2) {
  opacity: 0;
}
.hamburger.open span:not(.label):nth-of-type(3) {
  top: 20px;
  transform: translateX(-50%) rotate(-45deg);
}

.hamburger .label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: -0.05em;
}

.base-large #pc-nav a,
.base-medium #pc-nav a{
	letter-spacing:-1px;
}


@media (max-width: 1599px) {
  header {
    padding: 0 30px;
  }
  header .logo img {
    width: 280px;
  }
  .fsize-controller {
    margin-left: 30px;
  }
  .fsize-controller p {
    margin-right: 3px;
  }
  #pc-nav > ul > li > a, #pc-nav > ul > li > span {
    padding: 0 0.8em;
  }
  #pc-nav > ul > li > a,#pc-nav > ul > li > span,#pc-nav .dropdown-menu li a {
    font-size: clamp(0.8125rem, 1.5vw, 0.85rem);
  }
}
@media (max-width: 1399px) {
  header {
    padding: 0 15px;
  }
}
@media (max-width: 1299px) {
 /* #pc-nav { display: none; }
  #sp-nav { display: block; }
  .hamburger { display: block; }*/
  .header-tools .fsize-controller { display: none; }
  header {
    height: 100px;
  }
  header:hover {
    background: transparent;
  }
  header:hover .logo img.logo-white {
    display: block;
    opacity: 1;
  }
  header:hover .logo img.logo-black {
    display: none;
    opacity: 0;
  }
}
@media (max-width: 479px) {
  header {
    height: 80px;
  }
  header .logo img {
    width: 200px;
  }
}


/* ===============================
   footer
================================ */
footer {
  background: url(../image/footer_bg.jpg) center / cover no-repeat;
  color: #fff;
}
footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
footer section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px 5vw 50px 2.5vw;
}
footer .footer-logo a:hover {
  opacity: 0.7;
}
footer .footer-logo img {
  width: 350px;
}
footer .footer-menu {
  display: flex;
  gap: 3em;
  justify-content: right;
  margin-top: 80px;
  /*font-size: 0.925rem;*/
  font-size: 1.2rem;
}
.base-small footer .footer-menu {
	font-size: 1.4rem;
}
.base-medium footer .footer-menu {
	font-size: 1.4rem;
}
.base-large footer .footer-menu {
	font-size: 1.2rem;
}
footer .footer-menu-left {
  display: block;
  li{
  	margin:0 0 20px 0;
  		a{
  			text-decoration:underline;
  		}
  }
}
footer .footer-menu-right {
  display: block;
  li{
  	margin:0 0 20px 0;
  		a{
  			text-decoration:underline;
  		}
  }
}
footer .footer-logo a.ftr_contact_btn{
	display:block;
	background-color:#FFF;
	text-align:center;
	color:#333;
	border-radius:10px;
	width:320px;
	max-width:320px;
	margin:20px 0 0 0;
	padding:5px 5px 5px 5px;
	font-weight:800;
}
/*
footer .footer-menu-left {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 1em 3em;
}
footer .footer-menu-right {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 1em 3em;
}
*/
footer .footer-sub {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer small {
  font-size: 0.675rem;
}
footer .footer-sub-menu {
  display: flex;
  /*gap: 5em;*/
  gap: 2em;
  font-size: 0.825rem;
}

@media (max-width: 1299px) {
  footer section {
    width: calc(100% - 60px);
    padding: 80px 0 30px;
    margin: 0 auto;
  }
  footer .footer-menu {
    margin-bottom: 100px;
  }
}
@media (max-width: 999px) {
  footer .footer-logo {
    text-align: center;
  }
  footer .footer-menu {
    justify-content: center;
    margin-bottom: 120px;
  }
  footer .footer-sub {
    flex-direction: column;
    align-items: center;
  }
  footer small {
    order: 2;
  }
  footer .footer-sub-menu {
    order: 1;
    margin-bottom: 50px;
  }
  
footer .footer-logo a.ftr_contact_btn{
	width:320px;
	max-width:320px;
	margin:20px auto 0 auto;
	padding:5px 5px 5px 5px;
}
  
}
@media (max-width: 767px) {
  footer .footer-logo img {
    width: 280px;
  }
  footer .footer-menu {
    flex-direction: column;
    gap: 0;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 60px;
  }

  footer .footer-menu-left,
  footer .footer-menu-right {
    display: block;
    text-align: center;
  }

  footer .footer-menu-left li,
  footer .footer-menu-right li {
    margin-bottom: 1em;
  }
  footer .footer-sub-menu {
    display: block;
    text-align: center;
  }
  footer .footer-sub-menu li {
    margin-bottom: 1.5em;
  }
}

@media (max-width: 420px) {
footer .footer-logo a.ftr_contact_btn{
	width:80%;
	max-width:80%;
	margin:20px auto 0 auto;
	padding:5px 5px 5px 5px;
}
}