@charset "UTF-8";
/*---------------------------
body
----------------------------*/
@media (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}
/*---------------------------
wrap
----------------------------*/
#wrap {
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  #wrap {
    overflow-x: auto;
  }
}

/*---------------------------
header
----------------------------*/
header {
  margin: 0px;
  padding: 0;
  font-size: 10px;
  text-align: left;
  background-color: #fff;
  width: 100%;
}
header .inner {
  padding: 0px;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 200px 1fr;
}
@media screen and (max-width: 767px) {
  header .inner {
    display: block;
  }
}
header .inner .logo {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  header .inner .logo {
    padding: 0.5rem 1rem;
  }
}
header .inner .logo h1 a img {
  width: 120px;
  height: auto;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  header .inner .logo h1 a img {
    margin-top: 0px;
  }
}
@media screen and (max-width: 767px) {
  header .inner .nav {
    display: none;
  }
}
header .sp_menu {
  display: none;
  width: 40px;
  height: 28px;
  position: absolute;
  top: 15px;
  right: 15px;
}
@media screen and (max-width: 767px) {
  header .sp_menu {
    display: block;
  }
}
header .sp_menu span {
  display: block;
  width: 100%;
  height: 1px;
  background: #A7A6AA;
  position: absolute;
}
header .sp_menu span:nth-of-type(1) {
  top: 0px;
  left: 0px;
}
header .sp_menu span:nth-of-type(2) {
  top: 50%;
  left: 0px;
}
header .sp_menu span:nth-of-type(3) {
  bottom: 0px;
  left: 0px;
}
header .sp_menu.bk span {
  background-color: #999 !important;
}
header .sp_menu.on span {
  background-color: #999;
}
@media screen and (max-width: 767px) {
  header .sp_menu.on span:nth-of-type(1) {
    display: none;
  }
  header .sp_menu.on span:nth-of-type(2) {
    transform: rotate(45deg);
    bottom: auto;
    top: 15px;
  }
  header .sp_menu.on span:nth-of-type(3) {
    transform: rotate(-45deg);
    bottom: auto;
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  header.index {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  header.index .inner .logo {
    display: none;
  }
  header.index .sp_menu span {
    background-color: #fff;
  }
  header.index .sp_menu.bk span {
    background-color: #999 !important;
  }
}

/*---------------------------
nav
-----------------------------*/
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px) {
  nav ul {
    width: 100%;
    display: block;
    background-color: #fff;
  }
}
nav ul li {
  list-style: none;
  display: block;
}
nav ul li a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  padding: 1rem;
  text-align: center;
  display: block;
  letter-spacing: 2px;
}
nav ul li a:hover {
  background: #A6A5A9;
  color: #fff;
}
@media screen and (max-width: 640px) {
  nav ul li a:hover { /*sp*/
    border-radius: 0px;
  }
}
nav ul li a.current {
  background: #A6A5A9;
  color: #fff;
}
@media screen and (max-width: 640px) {
  nav ul li a.current { /*sp*/
    border-radius: 0px;
  }
}
nav ul li.reseve a {
  background: #A6A5A9;
  color: #fff;
  padding: 1rem 1rem;
  padding-right: 1.5rem;
  position: relative;
  width: 150px;
}
@media screen and (max-width: 767px) {
  nav ul li.reseve a {
    width: 100%;
  }
}
nav ul li.reseve a::after {
  display: block;
  content: ">";
  position: absolute;
  top: 25%;
  right: 10px;
}
@media screen and (max-width: 767px) {
  nav ul li.reseve a::after {
    right: 30%;
  }
}

/*---------------------------
footer
---------------------------*/
footer {
  background-color: #A6A5A9;
  padding: 2rem 0;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 4rem;
  }
}
footer .inner {
  display: grid;
  grid-template-columns: 22% 1fr 15%;
  grid-gap: 100px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  footer .inner {
    display: block;
    max-width: 80%;
    margin-bottom: 1rem;
  }
}
footer .inner .flogo img {
  display: block;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  footer .inner .flogo img {
    width: 50%;
    height: auto;
    margin: auto;
    margin-bottom: 1.5rem;
  }
}
footer .inner .flogo a {
  display: block;
  border: 1px solid #fff;
  padding: 1rem;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 4px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  footer .inner .flogo a {
    display: none;
  }
}
footer .inner .flogo a span {
  padding-left: 2rem;
}
footer .inner .info {
  padding-right: 150px;
}
@media screen and (max-width: 767px) {
  footer .inner .info {
    text-align: center;
    padding-right: 0px;
  }
}
footer .inner .info h2 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}
footer .inner .info dl > div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer .inner .info dl > div {
    font-size: 0.6rem;
  }
}
footer .inner .info dl > div dt {
  width: 18%;
}
footer .inner .info dl > div dd {
  width: 82%;
}
footer .inner .info .map {
  padding-top: 1rem;
}
footer .inner .info .map iframe {
  width: 100% !important;
  height: 220px !important;
}
footer .inner .snav ul {
  list-style: none;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  footer .inner .snav ul {
    display: none;
  }
}
footer .inner .snav ul li {
  margin-bottom: 1rem;
}
footer .inner .snav ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
}
footer .inner .snav ul li a span {
  display: inline-block;
  padding-right: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  footer .inner .snav .sns {
    padding-top: 1rem;
    text-align: center;
  }
}
footer > p {
  text-align: center;
  padding: 1rem 0;
  font-size: clamp(0.6rem, 2vw, 1rem);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

/*---------------------------
common
-----------------------------*/
* .inner {
  max-width: 1200px;
  margin: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  * .inner {
    /*769px~1000px(inner1000pxの場合)*/
    max-width: 96%;
  }
}
@media only screen and (min-width: 641px) and (max-width: 768px) {
  * .inner { /*tablet*/
    max-width: 94%;
  }
}
@media screen and (max-width: 640px) {
  * .inner { /*sp*/
    max-width: 90%;
  }
}

.content_title {
  background-color: #eee;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 4rem;
}
.content_title .inner {
  padding: 4rem 0;
}
.content_title .inner h1 span {
  display: block;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
}
.content_title.profile {
  background-image: url(../img/common/title_bg_profile.webp);
}
@media screen and (max-width: 767px) {
  .content_title.profile {
    background-image: url(../img/common/title_bg_profile_sp.webp);
  }
}
.content_title.profile .inner h1 span {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 5px;
}
.content_title.concept {
  background-image: url(../img/common/title_bg_concept.webp);
}
@media screen and (max-width: 767px) {
  .content_title.concept {
    background-image: url(../img/common/title_bg_concept_sp.webp);
    background-size: 100% 100%;
  }
}
.content_title.concept .inner {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .content_title.concept .inner {
    padding: 3rem 0;
  }
}
.content_title.concept .inner h1 {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.content_title.concept .inner h1 span {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 5px;
}

* {
  box-sizing: border-box;
}

h2 {
  font-weight: normal;
}
h2 > span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
  letter-spacing: 6px;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.pagetop {
  position: fixed;
  bottom: 60px;
  right: 40px;
  background-image: url(../img/pagetop_bg.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    display: none;
  }
}
.pagetop::before {
  width: 80px;
  content: "ページトップへ";
  display: block;
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-size: 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .pagetop::before {
    display: none;
  }
}
.pagetop.pagetop_bottom {
  bottom: 50px;
}
@media screen and (max-width: 767px) {
  .pagetop.pagetop_bottom {
    bottom: 60px;
  }
}
.pagetop.pagetop_bottom::before {
  color: #fff;
}

.f_menu {
  display: none;
  width: 100%;
  background-color: #000000;
  color: #fff;
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .f_menu {
    display: block;
  }
}
.f_menu ul {
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
  list-style: none;
}
.f_menu ul li {
  border-right: 1px solid #333;
}
.f_menu ul li a {
  padding: 1rem 0.5rem;
  color: #fff;
  display: block;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
}
.f_menu ul li:last-child {
  display: block;
  cursor: pointer;
  background-image: url(../img/common/pagetop_bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35%;
}