@charset "UTF-8";
/* @import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');


/*============================
	base
============================*/
:root {
  --black: #000;
  --white: #fff;
  --brown: #003c78;
  --font-serif: "Zen Old Mincho", serif;
  --font-en: "Cinzel", serif;
  --bg-1: url("../img/texture-1.jpg") repeat-y center / 100% auto;
  --bg-2: url("../img/texture-2.jpg") repeat-y center / 100% auto;
}

html {
  font-size: calc(10 / 1440 * 100vw);
  color: var(--white);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  background-color: var(--black);
  font-family: var(--font-serif);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fade {
  opacity: 0;
}

.fadeUp {
  animation: fadeUp 0.6s ease both;
}

.header img,
section img,
.footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  vertical-align: bottom;
}

a {
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}

.map {
  width: 100%;
  height: 40rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.line {
  position: relative;
}

.line::before {
  content: "";
  background: url("../img/line.png") no-repeat center / cover;
  width: 100%;
  height: 16px;
  position: absolute;
  transform: translateX(-50%);
  top: -3px;
  left: 50%;
}

/*============================
	fixed_btn
============================*/
.fixed_btn {
  background: url("../img/fixed_bg.jpg") no-repeat center / cover;
  padding: 1px 0 1px 1px;
  position: fixed;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .fixed_btn {
    width: 100%;
    height: max(65px, 8rem);
    padding: 2px 2px 0;
    transform: none;
    top: auto;
    bottom: 0;
    z-index: 10;
  }
}

.fixed_btn-item {
  background-color: #262626;
  width: max(50px, 7rem);
  height: max(144px, 20rem);
  box-shadow: 4px 4px 5px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

@media (max-width: 767px) {
  .fixed_btn-item {
    width: 100%;
    height: 100%;
  }
}

.fixed_btn-item a {
  width: 100%;
  height: 100%;
  color: var(--white);
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 767px) {
  .fixed_btn-item a {
    writing-mode: horizontal-tb;
  }
}

.fixed_btn-item span {
  /* font-family: var(--font-en); */
  font-size: max(25px, 4rem);
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 0.7;
  opacity: 0.2;
  position: absolute;
  left: 0;
}

@media (max-width: 767px) {
  .fixed_btn-item span {
    bottom: 0;
  }
}

.fixed_btn-item p {
  font-size: max(14px, 2rem);
  letter-spacing: 0.05em;
}

/*============================
	header
============================*/
.header {
  width: 100%;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header .header__logo {
  width: 18.1rem;
  margin: 4rem 0 0 4rem;
}

/* @media (max-width: 950px) {
  .header .header__logo {
    margin: 1rem 0 0;
  }
} */

@media (max-width: 767px) {
  .header .header__logo {
    width: max(120px, 17rem);
    margin: 4rem 0 0 5rem;
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--brown);
    width: 8rem;
    height: 8rem;
    min-width: 60px;
    min-height: 60px;
    visibility: visible;
  }

  .header__hamburger-sp::before,
  .header__hamburger-sp::after,
  .header__line-sp {
    content: "";
    background-color: var(--white);
    width: 5rem;
    min-width: 35px;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: 0.3s;
  }

  .header__hamburger-sp::before {
    top: 30%;
    transform-origin: bottom left;
  }

  .header__hamburger-sp::after {
    top: 70%;
    transform-origin: top left;
  }

  .header__hamburger-sp.js-transform::before,
  .header__hamburger-sp.js-transform::after {
    transform: scale(1.414);
    top: 50%;
  }

  .header__hamburger-sp.js-transform::before {
    transform: rotate(45deg) translateX(-50%);
  }

  .header__hamburger-sp.js-transform::after {
    transform: rotate(-45deg) translateX(-50%);
  }

  .js-transform .header__line-sp {
    transform: scale(0);
  }
}

.header__contents {
  display: flex;
  align-items: center;
  gap: 5rem 2.5rem;
  position: absolute;
  top: 3.5rem;
  right: 12rem;
}

@media (max-width: 950px) {
  .header__contents {
    right: 4rem;
  }
}

@media (max-width: 767px) {
  .header__contents {
    background-color: var(--black);
    width: 100%;
    height: 100%;
    min-height: max-content;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    z-index: 100;
    transition: 0.3s ease-out;
  }

  .header__contents.js-show {
    opacity: 1;
    visibility: visible;
  }
}

.header__nav-list {
  display: flex;
  gap: 4rem 5.5rem;
}

@media (max-width: 950px) {
  .header__nav-list {
    gap: 4rem;
  }
}

@media (max-width: 767px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .header__nav-item {
    position: relative;
  }

}
.header__nav-item a {
  position: relative;
}
.header__nav-item a::before {
  content: "";
  border-left: 0.08rem solid #fff;
  /* background-color: #fff; */
  width: 1rem;
  height: 1.5rem;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: 0rem;
  left: -3rem;
  z-index: 10000;
}
.header__nav-item:last-child a::before {
  content: none;
}
/* .header__nav-item:nth-last-child(2) a::before {
  content: none;
} */
.header__nav-item:first-child a::before {
  content: none;
}
.header__nav-item:nth-last-child(1) img {
  width: 2rem;
  margin: -0.1rem 0 0 -1rem;
}
.header__nav-item:nth-last-child(1) i {
  font-size: 2rem;
  margin: -0.2rem 0 0 -2.5rem;
}
.header__nav-item a {
  font-size: max(10px, 1.4rem);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__nav-item a span {
  font-size: max(10px, 1.5rem);
  line-height: 1;
}
@media (max-width: 767px) {
  .header__nav-item a::before {
    content: none;
  }
  .header__nav-item a span {
    font-size: max(13px, 1.8rem);
    padding-bottom: 2rem;
    line-height: 1;
  }
  .header__nav-item:nth-last-child(1) img {
    width: 4.5rem;
    margin: 2rem 0 0 0rem;
  }
  .header__nav-item:nth-last-child(1) i {
    font-size: 4.2rem;
    margin: 1rem 0 0 0rem;
  }
}


.header__tel {
  font-size: max(14px, 2.4rem);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.header__tel::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(12px, 2.2rem);
  height: max(12px, 2.2rem);
}

/*============================
	footer
============================*/
.footer {
  background-color: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.2rem 0 2.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .footer {
    padding: 10rem 0 max(70px,10rem);
  }
}

.pagetop {
  background-color: var(--brown);
  background-color: #fff;
  width: max(35px, 5.7rem);
  height: max(35px, 5.7rem);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

@media (max-width: 767px) {
  .pagetop {
    bottom: max(55px, 7rem);
  }
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }
}

.pagetop::before {
  content: "";
  display: inline-block;
  width: max(8px, 1.2rem);
  height: max(8px, 1.2rem);
  border: 3px solid var(--black);
  border-left: 0;
  border-bottom: 0;
  border-radius: 1.5px;
  position: absolute;
  transform: translate(-55%, -45%) rotate(-45deg);
  top: 50%;
  left: 50%;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: max(15px, 3rem) 6rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-item a {
  font-size: max(10px, 1.5rem);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__nav-item a {
  position: relative;
}
.footer__nav-item a::before {
  content: "";
  border-left: 0.08rem solid #fff;
  /* background-color: #fff; */
  width: 1rem;
  height: 1.5rem;
  /* aspect-ratio: 293/95; */
  position: absolute;
  top: 0rem;
  left: -3rem;
  z-index: 10000;
}
.footer__nav-item:last-child a::before {
  content: none;
}
/* .footer__nav-item:nth-last-child(2) a::before {
  content: none;
} */
.footer__nav-item:first-child a::before {
  content: none;
}
.footer__nav-item:nth-last-child(1) img {
  width: 2rem;
  margin: -0.25rem 0 0 -2rem;
}
.footer__nav-item:nth-last-child(1) i {
  font-size: 2rem;
  margin: -0.2rem 0 0 -3.5rem;
}
@media (max-width: 767px) {
  .footer__nav-item a::before {
    content: none;
  }
  .footer__nav-item a span {
    font-size: max(13px, 1.8rem);
    padding-bottom: 2rem;
    line-height: 1;
  }
  .footer__nav-item:nth-last-child(1) img {
    width: 4rem;
    margin: 2rem 0 0 0rem;
  }
  .footer__nav-item:nth-last-child(1) i {
    font-size: 4.2rem;
    margin: 1rem 0 0 0rem;
  }
}

.footer__nav-item a span {
  /* font-family: var(--font-en); */
  font-size: max(10px, 1.4rem);
  line-height: 1;
}

.footer__logo {
  display: block;
  width: max(120px, 19.5rem);
  height: auto;
  margin: 12rem 0 8rem;
}
@media (max-width: 767px) {
  .footer__logo {
    display: block;
    width: max(130px, 20.5rem);
    height: auto;
    margin: 10rem 0 5rem;
  }
}

.footer p {
  letter-spacing: 0.1em;
}

.footer__tel {
  font-size: max(18px, 3rem);
  color: var(--brown);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.footer__tel::before {
  content: "";
  display: block;
  background: url("../img/tel_icon-ft.png") no-repeat center / contain;
  width: max(15px, 2.2rem);
  height: max(15px, 2.2rem);
}

.footer__sns li {
  width: max(24px, 3.3rem);
  height: max(24px, 3.3rem);
  margin-top: 2rem;
}

.copy {
  font-size: max(10px, 1.3rem);
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 3.5rem;
}



._reserve {
  text-align: center;
  margin-top: 3rem;
  font-size: max(18px, 2.6rem);
  letter-spacing: 0.05em;
}



/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
	position: fixed;
	top: 45%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
	width: 7.5rem;
    list-style: none;
}
.fixed-btn li:not(:last-of-type) {
	margin-bottom: 1.5rem;
}
.fixed-btn li::marker {
    content: none;
}
.fixed-btn img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
	.fixed-btn {
		top: auto;
		right: auto;
		bottom: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
		display: flex;
	}
	.fixed-btn li {
		width: 1000%;
        margin-top: 0;
        margin-bottom: 0 !important;
	}
  .fixed-btn li:not(:last-of-type) {
    border-right: solid 0.1rem #fff;
  }
	.fixed-btn a.sp {
		width: 100%;
		padding: 0;
		height: max(50px, 6rem);
		display: flex !important;
		align-items: center;
		justify-content: center;
		text-decoration: none !important;
		line-height: 1;
	}
    .fixed-btn a.pc {
        display: none;
    }
	/* icon */
	.fixed-btn li img {
		width: max(20px, 2.3rem);
		height: max(20px, 2.3rem);
		margin-right: 1.2rem;
	}	
	/* txt */
	.fixed-btn a > span {
		display: flex;
		flex-direction: column;
	}
	.fixed-btn a > span > span:nth-child(1) {
		margin-left: 0;
		margin-bottom: 0.3rem;
		font-size: max(12px, 1.5rem);
	}
	.fixed-btn a > span > span:nth-child(2) {
		/* font-weight: bold; */
		font-size: 1.5rem;
        text-decoration: underline;
	}		
	.fixed-btn li.tel {
		margin-bottom: 0;
	}	
	.fixed-btn .tel a > span > span:nth-child(2) {
		font-size: max(17px, 1.8rem);
	}	
	.fixed-btn .contact a > span > span:nth-child(1) {
		font-size: max(15px, 1.6rem);
	}	
	.fixed-btn .tel a {
		background: #003c78;
		color: #fff;
	}	
	.fixed-btn .contact a {
		background: #003c78;
		color: #fff;
	}	
}



/*  ----------------------------------------------------------

local menu

----------------------------------------------------------  */
ul.lcmenu {
	display:flex;
	flex-wrap: wrap;
	margin-bottom: 8rem;
	justify-content: space-between;
}
ul.lcmenu li {
	width: 48%;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
ul.lcmenu li a {
	display: block;
	padding: 2.2rem 0 2.4rem 0;
	background: #333;	
	white-space: nowrap;
	font-size: max(13px, 1.8rem);
}
ul.lcmenu li.current a {
	font-weight: bold;
	color: #fff;
	background: #003c78;	
  border: 0.1rem solid #fff;
}
@media screen and (max-width: 767px) {
	ul.lcmenu li a {
		padding: 1.2rem 0 1.3rem 0;
	}	
  ul.lcmenu li a {
    padding: 2.8rem 0 3.0rem 0;
  }
}




.menu__pasteimg {
	display: flex;
	flex-direction: column;
	gap: 4rem;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .menu__pasteimg {
    width: 100%;
  }
}



.table_link {
  text-decoration: underline;
}

