@charset "utf-8";

/*
==============
base.css
==============
*/

/* -----------------
■ デフォルトリセット
------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

html {
  color-scheme: light dark;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
}

textarea {
  resize: y;
}

table {
  border-collapse: collapse;
}




/* -----------------
■ フォント
------------------- */
body {
  font-family: "Noto Serif JP", serif; 
	-webkit-text-size-adjust: 100%;
}




/* -----------------
■ 全体
------------------- */
:root {
  --scrollbar: 0;
  --unit: 1px;
  --customW: 1;
}

/* calc(0 / var(--customW) * var(--unit)) */

html {
	font-size: 62.5%;
}

a {
	transition: opacity .4s;
}

a:hover {
	opacity: .6;
}

.js-fadein {
	opacity: 0;
  transition: opacity 1.8s cubic-bezier(.42, 0, .15, 1), transform 1.8s cubic-bezier(.19, 1, .22, 1);
  transform: translateY(90px);
}

.js-fadein.is-view {
	opacity: 1;
  transform: translateY(0);
}


@media screen and (max-width: 767px)
{
	:root {
		--designWidth: 390;
	  --unit: 100vw;
	  --customW: var(--designWidth);
	}

	img {
		width: 100%;
	}

} /* media end */




/* -----------------
■ ヘッダー
------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0 19px;
  text-align: center;
  background-color: #fff;
  z-index: 10;
}


@media screen and (max-width: 767px)
{
  .header {
    padding: calc(20 / var(--customW) * var(--unit)) 0;
  }

  .header img {
    width: calc(284 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ title
------------------- */
.title__ja {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.title__en {
  margin-top: 20px;
}


@media screen and (max-width: 767px)
{
  .title__ja {
    font-size: calc(12 / var(--customW) * var(--unit));
    letter-spacing: 0.09em;
  }

  .title__en {
    margin-top: calc(12 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ restaurant
------------------- */
.restaurant {
  max-width: 900px;
  margin-top: 150px;
  margin-inline: auto;
  padding-top: 98px;
  border-top: 1px solid #c9c9c9;
}

.restaurant__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.restaurant__item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

.restaurant__item:nth-of-type(n+2) {
  margin-top: 70px;
}

.restaurant__img {
  width: 56.667%;
}

.restaurant__detail {
  width: 37.222%;
}

.restaurant__detail a {
  display: block;
}

.restaurant__detail-place,
.restaurant__detail-name {
  margin-right: -55px;
  font-size: 1.8rem;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.restaurant__detail-text {
  margin-top: 10px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.restaurant__detail-link {
  display: inline-block;
  margin-top: 25px;
  padding: 0 17px 6px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #696461;
}

.restaurant__detail-link span {
  display: inline-block;
  padding-right: 25px;
  background: url(../img/common/icon_link_arrow.svg) no-repeat;
  background-position: right 6px;
}


@media screen and (min-width: 768px) and (max-width: 1000px)
{
  .restaurant__detail-place,
  .restaurant__detail-name {
    margin-right: 0;
  }

} /* media end */


@media screen and (max-width: 767px)
{
  .restaurant {
    position: relative;
    max-width: none;
    margin-top: calc(78 / var(--customW) * var(--unit));
    padding-top: calc(80 / var(--customW) * var(--unit));
    border-top: none;
  }

  .restaurant::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(330 / var(--customW) * var(--unit));
    height: 1px;
    transform: translateX(-50%);
    background-color: #c9c9c9;
  }

  .restaurant__item {
    display: block;
  }

  .restaurant__item:nth-of-type(n+2) {
    margin-top: calc(78 / var(--customW) * var(--unit));
  }

  .restaurant__img {
    width: auto;
  }

  .restaurant__detail {
    width: calc(330 / var(--customW) * var(--unit));
    margin-top: calc(20 / var(--customW) * var(--unit));
    margin-inline: auto;
  }

  .restaurant__detail-place,
  .restaurant__detail-name {
    margin-right: 0;
    font-size: calc(16 / var(--customW) * var(--unit));
    line-height: 1.25;
    letter-spacing: 0.03em;
  }

  .restaurant__detail-text {
    margin-top: calc(12 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
    line-height: 1.5;
    letter-spacing: 0.01em;
  }

  .restaurant__detail-link {
    margin-top: calc(25 / var(--customW) * var(--unit));
  }

  .restaurant__detail-link a {
    padding: 0 calc(18 / var(--customW) * var(--unit)) calc(6 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
    line-height: 1.5;
    letter-spacing: 0.01em;
  }

  .restaurant__detail-link a span {
    padding-right: calc(25 / var(--customW) * var(--unit));
    background: url(../img/common/icon_link_arrow.svg) no-repeat;
    background-size: calc(11 / var(--customW) * var(--unit));
    background-position: right calc(6 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ pagetop
------------------- */
.pagetop {
  margin-top: 112px;
  text-align: center;
}


@media screen and (max-width: 767px)
{
  .pagetop {
    margin-top: calc(80 / var(--customW) * var(--unit));
  }

  .pagetop img {
    width: calc(90 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ footer
------------------- */
.footer {
  max-width: 900px;
  margin-top: 80px;
  margin-inline: auto;
  padding-top: 46px;
  padding-bottom: 138px;
  text-align: center;
  border-top: 1px solid #707070;
}

.footer__logo img {
  margin-inline: auto;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 0 33px;
  margin-top: 42px;
}

.footer__copyright {
  margin-top: 34px;
  font-size: 1.0rem;
  font-family: "Marcellus", serif;
  line-height: 1.3;
  letter-spacing: 0.075em;
}


@media screen and (max-width: 767px)
{
  .footer {
    max-width: calc(330 / var(--customW) * var(--unit));
    margin-top: calc(74 / var(--customW) * var(--unit));
    padding-top: calc(26 / var(--customW) * var(--unit));
    padding-bottom: calc(80 / var(--customW) * var(--unit));
  }

  .footer__logo img {
    position: relative;
    left: calc(-6 / var(--customW) * var(--unit));
    width: calc(72 / var(--customW) * var(--unit));
  }

  .footer__sns {
    gap: 0 calc(20 / var(--customW) * var(--unit));
    margin-top: calc(26 / var(--customW) * var(--unit));
  }

  .footer__sns img {
    width: calc(13 / var(--customW) * var(--unit));
  }

  .footer__copyright {
    margin-top: calc(22 / var(--customW) * var(--unit));
    font-size: calc(6 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ 汎用
------------------- */
.lh0 { line-height: 0; }

.clearfix:after{
	content: ".";
	display: block; 
	clear: both; 
	height: 0; 
	font-size:0;	
	visibility:hidden;
}


@media screen and (min-width: 768px)
{
	.spEle,
	.spEleIn {
		display: none;
	}

	.pcEleIn {
		display: inline-block;
	}


} /* media end */


@media screen and (max-width: 767px)
{
	.pcEle,
	.pcEleIn {
		display: none;
	}

	.spEleIn {
		display: inline-block;
	}


} /* media end */


