@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1100px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 1099.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #333;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  background: #474645;
  color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

img {
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
}

/*========================
common
========================*/
.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 27px;
  }
}

.sec-title {
  text-align: center;
  font-size: 36px;
  letter-spacing: 18px;
  font-weight: bold;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .sec-title {
    font-size: 21px;
    line-height: 28px;
    /* 133.333% */
    letter-spacing: 10.5px;
  }
}

/*========================
header
========================*/
header {
  background: #474645;
  padding: 15px 0;
}
header .inner {
  max-width: 1200px;
}
header .header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .logo {
  display: inline-block;
  max-width: 372px;
}
header .logo img {
  display: block;
}
@media screen and (max-width: 767px) {
  header .logo {
    max-width: 186px;
  }
}
header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  color: white;
  gap: 70px;
  letter-spacing: 0.2em;
}

.hamburger {
  position: relative;
  width: 24px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6.5px, 6.5px);
          transform: rotate(45deg) translate(6.5px, 6.5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer.active {
  right: 0;
}
.drawer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

/*========================
mv
========================*/
.mv {
  position: relative;
}

.mv__text {
  position: absolute;
  z-index: 2;
  width: 116px;
  top: 53px;
  right: 150px;
}
@media screen and (max-width: 767px) {
  .mv__text {
    width: 48px;
    top: 21px;
    right: 37px;
  }
}

/*========================
intro
========================*/
.intro {
  margin-top: -1px;
  background: #474645;
  position: relative;
  z-index: 2;
  padding: 65px 0;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 35px 0 55px;
  }
}

.intro__logo {
  max-width: 373px;
  margin: 0 auto 92px;
}
@media screen and (max-width: 767px) {
  .intro__logo {
    max-width: 124px;
    margin: 0 auto 26px;
  }
}

/*========================
reservation
========================*/
.reservation {
  padding-bottom: 62px;
}
@media screen and (max-width: 767px) {
  .reservation {
    padding-bottom: 32px;
  }
}

.reservation__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .reservation__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 35px;
  }
}

.reservation__item {
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .reservation__item {
    line-height: 1.5;
  }
}
.reservation__item .img {
  display: block;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .reservation__item .img {
    margin-bottom: 15px;
  }
}

/*========================
map 
========================*/
.map {
  text-align: center;
}
.map iframe {
  width: 100%;
  height: 554px;
}
@media screen and (max-width: 767px) {
  .map iframe {
    height: 375px;
  }
}
.map .iframe {
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .map .iframe {
    margin-bottom: 15px;
  }
}

/*========================
location
========================*/
.location {
  padding: 158px 0 87px;
}
@media screen and (max-width: 767px) {
  .location {
    padding: 48px 0 56px;
  }
}
.location .sec-title {
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  .location .sec-title {
    margin-bottom: 28px;
  }
}

.location__items {
  margin-top: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 24px;
}
@media screen and (max-width: 767px) {
  .location__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 21px;
    margin-top: 32px;
  }
}

.location__item {
  width: calc((100% - 48px) / 3);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .location__item {
    width: 100%;
  }
}
.location__item .img {
  margin-bottom: 4px;
}

/*========================
consulting
========================*/
.consulting {
  padding-top: 40px;
}
.consulting .inner {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .consulting .inner {
    padding: 0;
  }
}

.consulting__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  margin: 30px 0 47px;
  color: #474645;
}
@media screen and (max-width: 767px) {
  .consulting__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.consulting__box .img {
  max-width: 400px;
  min-height: 600px;
}
@media screen and (max-width: 767px) {
  .consulting__box .img {
    min-height: 0;
  }
}
.consulting__box .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  display: block;
}
.consulting__box .content {
  padding: 66px 50px 48px;
}
@media screen and (max-width: 767px) {
  .consulting__box .content {
    padding: 24px;
  }
}
.consulting__box h3 {
  font-size: 34px;
  letter-spacing: 4.5px;
  font-weight: bold;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .consulting__box h3 {
    font-size: 27px;
    letter-spacing: 2.5px;
  }
}
.consulting__box .copy {
  font-size: 24px;
  letter-spacing: 4.8px;
  font-weight: bold;
  line-height: 1.58;
  margin: 16px 0;
}
@media screen and (max-width: 767px) {
  .consulting__box .copy {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}
.consulting__box p {
  font-weight: 500;
  letter-spacing: 2.5px;
}
@media screen and (max-width: 767px) {
  .consulting__box p {
    letter-spacing: 0.18em;
  }
}
.consulting__box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 767px) {
  .consulting__box .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .consulting__box .left {
    width: 100%;
  }
}
.consulting__box .left ul {
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 3.2px;
}
@media screen and (max-width: 767px) {
  .consulting__box .left ul {
    letter-spacing: 0.04em;
  }
}
.consulting__box .label {
  margin: 34px 0 20px;
  background: #B7D2CF;
  color: white;
  text-align: center;
  padding: 7px;
  font-weight: 500;
  line-height: 28px;
  /* 175% */
  letter-spacing: 3.2px;
}
@media screen and (max-width: 767px) {
  .consulting__box .label {
    letter-spacing: 2.6px;
    padding: 4px;
  }
}
.consulting__box .right {
  width: 150px;
  height: 150px;
}

.consulting__about {
  max-width: 385px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .consulting__about {
    max-width: 258px;
  }
}

/*========================
footer
========================*/
footer {
  padding: 37px 0 67px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 27px 0 32px;
  }
}

.footer__logo {
  max-width: 372px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 275px;
  }
}