@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

/*============================
	base
============================*/
:root {
  --black: #000;
  --white: #fff;
  --brown: #5a2800;
  --red: #a02d37;
  --font-serif: "Noto Serif JP", 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;
  --bg-3: url("../img/texture-3.jpg") repeat-y center / 100% auto;
  --bg-4: url("../img/texture-4.jpg") repeat-y center / 100% auto;
}

html {
  font-size: calc(10 / 1440 * 100vw);
  color: var(--black);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  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 {
  display: block;
  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%;
}

/*============================
	fixed_btn
============================*/
.fixed_btn {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  position: fixed;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .fixed_btn {
    width: 100%;
    height: max(65px, 8rem);
    flex-direction: row;
    transform: none;
    top: auto;
    bottom: 0;
    z-index: 10;
  }
}

.fixed_btn-item {
  background-color: var(--red);
  width: max(48px, 6.8rem);
}

@media (max-width: 767px) {
  .fixed_btn-item {
    width: 100%;
    height: 100%;
  }
}

.fixed_btn-item a {
  width: 100%;
  color: var(--white);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  padding: 1.5rem 0 2rem;
}

@media (max-width: 767px) {
  .fixed_btn-item a {
    width: 100%;
    height: 100%;
    writing-mode: horizontal-tb;
    justify-content: center;
    padding: 1rem;
    text-decoration: none;
  }
}

.fixed_btn-item a::before {
  content: "";
  display: block;
  background: url("../img/reserve_icon.png") no-repeat center / contain;
  width: max(26.5px, 3.2rem);
  height: max(28px, 3.8rem);
}

.fixed_btn-item p {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .fixed_btn-item p {
    row-gap: 0.5rem;
  }
}

.fixed_btn-txt {
  font-size: max(12px, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.4em;
  display: flex;
  align-items: center;
}

.fixed_btn-txt::after {
  content: "";
  background-color: var(--white);
  width: 1px;
  height: 7.1rem;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .fixed_btn-txt::after {
    width: 7.1rem;
    height: 1px;
    margin: 0 0 0 1rem;
  }
}

/*============================
	header
============================*/
.header {
  /* background: var(--bg-1); */
  width: 100%;
  height: max(70px, 10rem);
  color: var(--brown);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12rem 0 3rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header {
    height: max(60px, 8rem);
    padding: 0 0 0 2rem;
  }
}

.header__logo {
  margin: 6.5rem 0 0;
  width: 21.9rem;
}

.header__logo.toppage{
 visibility: hidden;
 pointer-events: none;
}

@media (max-width: 767px) {
  .header__logo {
    width: max(150px, 20.6rem);
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--red);
    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: 6rem 4.5rem;
}

@media (max-width: 767px) {
  .header__contents {
    /* background: var(--bg-1); */
    background: url(../img/texture-3.jpg) no-repeat center top / cover;
    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;
    color: #000;
  }

  .header__contents.js-show {
    opacity: 1;
    visibility: visible;
  }
}

.header__nav-list {
  display: flex;
  gap: 5rem 4rem;
}

@media (max-width: 767px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.header__nav-item a {
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .header__nav-item a {
    font-size: max(15px, 1.8rem);
  }
}

.header__sns li {
  width: max(20px, 2.5rem);
  height: max(20px, 2.5rem);

}
@media (max-width: 767px) {
  .header__sns li {
    width: max(25px, 3rem);
    height: max(25px, 3rem);
    filter: grayscale(100%) brightness(0);  /* 黒 */

  }
}

/*============================
	footer
============================*/
.footer {
  background: url(../img/back-footer.jpg) no-repeat center top / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0 1.8rem;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    padding: 8rem 0 18rem;
  }
}

.pagetop {
  background-color: var(--black);
  width: max(30px, 4rem);
  height: max(30px, 4rem);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }

}
@media (max-width: 768px) {
  .pagetop {
    bottom:max(55px, 7rem);;
  }

}

.pagetop::before {
  content: "";
  display: inline-block;
  width: max(7px, 1rem);
  height: max(7px, 1rem);
  border: 0.2rem solid var(--white);
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  transform: translate(-55%, -45%) rotate(-45deg);
  top: 50%;
  left: 50%;
}

.footer__logo {
  display: block;
  width: max(160px, 21.9rem);
  height: auto;
  margin: 6rem 0;
}
@media (max-width: 767px) {
  .footer__logo {
    width: max(170px, 23rem);
    margin: 10rem 0;
  }
}

.footer__link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4rem 4.5rem;
}

@media (max-width: 767px) {
  .footer__link {
    flex-direction: column;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: max(20px, 3rem) 3.2rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-item a {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer__sns li {
  width: max(20px, 2rem);
  height: max(20px, 2rem);
  filter: grayscale(100%) brightness(0);  /* 黒 */

}

.copy {
  font-size: max(13px, 1.4rem);
  color: #000;
  letter-spacing: 0.05em;
}



.scroll {
    position: absolute;
    left: 6rem;
    bottom: 4rem;
    display: flex;
    align-items: center;
    z-index: 999;
    font-size: max(13px, 1.5rem);
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: #fff;
}

.scroll span {
    width: 0.12rem;
    height: 6rem;
    background: #fff;
    margin-top: 1rem;
    animation: scroll infinite 1.5s;
    margin-right: 0.2rem;
}

@keyframes scroll {
    0% {
        transform: scale(1, 1);
        transform-origin: bottom;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: bottom;
    }
}
@media (max-width: 767px) {
  .scroll span {
      height: 9rem;
      margin-right: 0rem;
  }
}




/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
	position: fixed;
	top: 45%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
	width: max(55px, 8rem);
    list-style: none;
}
.fixed-btn li:not(:last-of-type) {
	margin-bottom: 2rem;
}
.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: 100%;
        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(55px, 7rem);
		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(23px, 3rem);
		height: max(23px, 3rem);
		margin-right: 1rem;
	}	
	/* 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(13px, 1.2rem);
	}
	.fixed-btn a > span > span:nth-child(2) {
		/* font-weight: bold; */
		font-size: max(15px, 1.5rem);
        /* text-decoration: underline; */
	}		
	.fixed-btn li.tel {
		margin-bottom: 0;
	}	
	.fixed-btn .tel a > span > span:nth-child(2) {
		font-size: max(16px, 1.9rem);
	}	
	.fixed-btn .tel a {
		background: #be2d37;
		color: #fff;
	}	
	.fixed-btn .reserve a {
		background: #be2d37;
		color: #fff;
	}	
}




/*  ----------------------------------------------------------

local menu

----------------------------------------------------------  */
ul.lcmenu {
	display:flex;
	flex-wrap: wrap;
	margin-bottom: 4rem;
	justify-content: space-between;
}
ul.lcmenu li {
	width: 32%;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
ul.lcmenu li a {
	display: block;
	padding: 1.8rem 0 2rem 0;
	background: #333;	
	white-space: nowrap;
	font-size: max(15px, 1.8rem);
}
ul.lcmenu li.current a {
	font-weight: bold;
	color: #fff;
	background: #be2d37;	
}
@media screen and (max-width: 767px) {
	ul.lcmenu li a {
		padding: 1.2rem 0 1.3rem 0;
	}	
}





.menu__pasteimg {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

._reserve {
  text-align: center;
  font-weight: 700;
  font-size: max(17px, 2.5rem);
  letter-spacing: 0.1rem;
  margin-top: 10rem;
}
._reserve2 {
  text-align: center;
  font-weight: 700;
  font-size: max(17px, 2.5rem);
  letter-spacing: 0.1rem;
  margin-top: 14rem;
}
@media screen and (max-width: 767px) {
  ._reserve2 {
    margin-top: 2rem;
  }
}
