/*=========================
  Common
=========================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
@font-face {
  font-family: "vladimir";
  src: url("../font/vladimir-script.ttf") format("truetype");
}
.font-vladimir {
  font-family: "vladimir", serif;
  font-size: 1.5em;
}

.semibold {
  font-weight: 600;
}

:root {
  --main: #0f0f0f;
  --sub: #532e1c;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  font-family: "Shippori Mincho", serif;
  color: #0f0f0f;
  max-width: 1920px;
  margin: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  body {
    text-align: justify;
  }
}
a {
  text-decoration: none;
  transition: 0.4s;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  line-height: 2;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: initial;
  }
}
.button {
  color: var(--sub);
  border: var(--sub) 1px solid;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
}

.button:hover {
  opacity: 1;
  background-color: var(--sub);
  color: var(--white);
}

@media screen and (max-width: 960px) {
  .button {
    font-size: 1.2rem;
    padding: 0.25rem 0.5rem;
  }
}
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--sub);
}

@media screen and (max-width: 960px) {
  .section-title {
    font-size: 1.8rem;
  }
}
/*=========================
  header
=========================*/
header {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
header .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
header .title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}
header .nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .nav .nav-links {
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
header .tel {
  position: absolute;
  right: 5%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sub);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
header .tel .icon {
  width: 20px;
  margin-top: 4px;
  margin-right: 0.25rem;
}

@media screen and (max-width: 960px) {
  header {
    padding: 1.5rem 0 0.5rem;
  }
  header .title {
    font-size: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
    margin-bottom: 1.25rem;
  }
  header .nav {
    flex-direction: column-reverse;
  }
  header .nav .nav-links {
    gap: 10%;
    font-size: 1.1rem;
  }
  header .nav .tel {
    position: initial;
    margin-bottom: 0.75rem;
    font-size: clamp(1.2rem, 1.05rem + 0.75vw, 1.5rem);
  }
  header .nav .tel .icon {
    font-size: clamp(1rem, 0.875rem + 0.625vw, 1.25rem);
  }
}
/*=========================
  mv
=========================*/
section.mv {
  position: relative;
}
section.mv .container {
  position: absolute;
  z-index: 1;
  bottom: 10%;
  left: 10%;
  width: -moz-fit-content;
  width: fit-content;
}
section.mv .mv-img {
  width: 100%;
}
section.mv .title {
  font-size: 4rem;
  color: #ffffff;
}

@media screen and (max-width: 960px) {
  section.mv .mv-img {
    height: 100%;
    min-height: 560px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 30% 50%;
       object-position: 30% 50%;
  }
  section.mv .container {
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 1rem;
  }
  section.mv .title {
    font-size: clamp(2.5rem, 1.75rem + 3.75vw, 4rem);
  }
}
/*=========================
  Information
=========================*/
section.information {
  padding: 5rem 0;
}
section.information .info-items {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
section.information .info-items__item {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  border-bottom: var(--main) 1px solid;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
section.information .info-items__item .date {
  width: 30%;
  text-align: center;
}
section.information .info-items__item .body {
  width: 70%;
  text-align: justify;
}

@media screen and (max-width: 960px) {
  section.information .info-items__item {
    flex-wrap: wrap;
    padding: 0 0.5rem;
    font-size: 0.9rem;
  }
  section.information .info-items__item .date {
    text-align: left;
    min-width: 140px;
    padding: 0;
  }
  section.information .info-items__item .body {
    width: 100%;
  }
}
/*=========================
  about
=========================*/
section.about {
  background: url(../img/bg-about.jpg) no-repeat;
  background-position: 100% 50%;
  background-size: cover;
  min-height: 500px;
}
section.about .container {
  width: 50%;
  height: 500px;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
section.about .body {
  margin: 0 1rem;
}
section.about .body p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 960px) {
  section.about {
    background-position: 90% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  section.about .container {
    width: 100%;
    height: auto;
    padding: 10% 5%;
  }
  section.about .body {
    margin: auto;
  }
  section.about .body p {
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 2rem;
  }
}
/*=========================
  menu
=========================*/
section.menu {
  padding: 5rem 0;
  background-color: #f6f6f6;
}
section.menu .container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
section.menu .text {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

@media screen and (max-width: 960px) {
  section.menu .text {
    font-size: 0.9rem;
  }
}
/*=========================
  gallery
=========================*/
section.gallery {
  padding: 5rem 0;
  background: url(../img/gallery-illust.svg) no-repeat;
  background-position: 100% 100%;
}
section.gallery .container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
section.gallery .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 3rem;
  margin-bottom: 4rem;
}
section.gallery .grid .box {
  background-color: #ccc;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 960px) {
  section.gallery .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*=========================
  footer
=========================*/
footer {
  padding: 5rem 0;
}
footer .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
footer .title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
footer .address {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 4rem;
}
footer .nav .nav-links {
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  margin-bottom: 4rem;
}
footer .nav .tel {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sub);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
footer .nav .tel .icon {
  width: 30px;
  margin-top: 4px;
  margin-right: 0.5rem;
}

@media screen and (max-width: 960px) {
  footer .title {
    font-size: 1.25rem;
  }
  footer .address {
    font-size: 0.9rem;
  }
  footer .nav .nav-links {
    font-size: 1.15rem;
  }
  footer .nav .tel {
    font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  }
  footer .nav .tel .icon {
    width: clamp(1.25rem, 0.9375rem + 1.5625vw, 1.875rem);
  }
}
.map .wrapper {
  height: 360px;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.copyright {
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}/*# sourceMappingURL=style.css.map */