@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Serif JP", serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  border-bottom: 1px solid #99958F;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .header {
    height: 75px;
  }
}

/* スクロールしたらヘッダーメニューのフォントカラー変更 */
.header.headerColorScroll {
  background-color: #222;
  border-color: #222;
  transition: background-color 0.4s ease-out;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header__logo {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 132px;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
  margin-right: 48px;
}

.header__item {
  height: inherit;
  padding: 0 18px;
}

.header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.header__link {
  font-size: 18px;
  font-family: "Cormorant", serif;
  font-weight: 500;
  color: #F9F2E5;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 22px;
  right: 15px;
  width: 22px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 19px;
  right: 15px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transition: 0.3s transform, 0.3s background-color;
  background-color: #F9F2E5;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(-45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(45deg);
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 34, 34, 0.9);
}

.drawer-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
  margin-top: -15px;
}

.drawer-menu__items {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawer-menu__item {
  width: 100%;
  position: relative;
  display: inline-block;
  text-align: center;
}

.drawer-menu__link {
  width: 100%;
  font-size: 18px;
  font-family: "Cormorant", serif;
  font-weight: 500;
  display: inline-block;
  color: #F9F2E5;
  padding: 23px 0;
  text-align: center;
}

.drawer-menu__link::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  background-image: url(../images/section-logo.svg);
  background-size: contain;
}

.drawer-menu__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
}

.mv {
  width: 100%;
  height: 100vh;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: inherit;
}

.mv__slider,
.swiper-slide picture,
.swiper-slide img {
  height: inherit;
}

.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

/* ページネーションカスタマイズ */
.swiper-wrapper .swiper-pagination-bullet {
  position: relative;
  width: 68px;
  height: 4px;
  bottom: 27px;
  border-radius: 0;
  background-color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .swiper-wrapper .swiper-pagination-bullet {
    width: 38px;
    bottom: 14px;
  }
}

.swiper-wrapper .swiper-pagination-bullet:not(:first-child) {
  margin-left: 19px;
}
@media screen and (max-width: 768px) {
  .swiper-wrapper .swiper-pagination-bullet:not(:first-child) {
    margin-left: 8px;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 50px;
  width: 35px;
  top: 56.5%;
}

.swiper-button-prev {
  left: 5%;
}

.swiper-button-next {
  right: 5%;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../images/mv-arrow-prev.svg);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../images/mv-next-arrow.svg);
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: 100vh;
  width: 100%;
}

.mv__title-wrap {
  position: absolute;
  z-index: 10;
  top: 52%;
  left: 16%;
  transform: translate(-6%, -26%);
}
@media screen and (max-width: 768px) {
  .mv__title-wrap {
    top: 51%;
    left: 50%;
    transform: translate(-50%, -59%);
  }
}

.mv__title-main {
  font-size: 54px;
  font-family: "Cormorant", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .mv__title-main {
    font-size: 36px;
    letter-spacing: normal;
  }
}
@media screen and (max-width: 374px) {
  .mv__title-main {
    font-size: 28px;
  }
}

.mv__title-sub {
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-top: 6px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .mv__title-sub {
    font-size: 14px;
    letter-spacing: normal;
    color: #F9F2E5;
    text-align: center;
  }
}
@media screen and (max-width: 374px) {
  .mv__title-sub {
    font-size: 12px;
  }
}

.top-about {
  padding: 72px 0;
  background-color: #272625;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 55px 0;
  }
}

.top-about__wrap {
  display: flex;
  justify-content: center;
  margin-top: 74px;
  gap: 41px;
}
@media screen and (max-width: 768px) {
  .top-about__wrap {
    flex-direction: column-reverse;
    margin-top: 50px;
    gap: 37px;
  }
}

.top-about__img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 360/500;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-about__img {
    max-width: 240px;
    aspect-ratio: 240/333;
    margin-inline: auto;
  }
}

.top-about__title {
  display: flex;
  align-items: center;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.41em;
  margin-top: 26px;
  color: #F9F2E5;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .top-about__title {
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.28em;
    margin-inline: auto;
  }
}

.top-about__box {
  text-align: center;
}

.top-about__text {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: left;
  color: #F9F2E5;
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .top-about__text {
    font-size: 14px;
    line-height: 1.87;
    letter-spacing: 0.065em;
    margin-top: -80px;
  }
}
@media screen and (max-width: 374px) {
  .top-about__text {
    line-height: 1.8571428571;
    letter-spacing: 0.03em;
  }
}

.top-about__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-about__button {
  position: relative;
  font-size: 16px;
  padding: 16px 57px;
  letter-spacing: 0.05em;
  border: 0.5px solid #F9F2E5;
  border-radius: 6px;
  margin-top: 39px;
  color: #F9F2E5;
  outline: none;
  transition: all 0.3s; /*アニメーションの指定*/
}
@media screen and (max-width: 768px) {
  .top-about__button {
    font-size: 14px;
    padding: 14px 47px;
    margin-top: 28px;
  }
}

.top-about__button::after {
  display: inline-block;
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 26px;
  right: 20px;
  border-top: 1.5px solid #F9F2E5;
  border-right: 1.5px solid #F9F2E5;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .top-about__button::after {
    top: 21px;
  }
}

.service {
  padding: 80px 0;
  background-color: #222;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 59px 0;
  }
}

.tab__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 41px;
}
@media screen and (max-width: 768px) {
  .tab__list {
    margin-top: 43px;
  }
}

.tab__button {
  display: inline-block;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid #2C2C2C;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .tab__button {
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .tab__button {
    font-size: 12px;
  }
}

.tab__button:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .tab__button:first-child {
    margin-right: 33px;
  }
}
@media screen and (max-width: 374px) {
  .tab__button:first-child {
    margin-right: 30px;
  }
}

.tab__button.is-active {
  border-bottom-color: #707070;
}

.tab__button:hover {
  opacity: 0.7;
}

.tab__contents {
  width: 86%;
  margin: 48px auto 0;
}
@media screen and (max-width: 768px) {
  .tab__contents {
    width: 72.5%;
  }
}

.tab__content {
  display: none;
  width: 100%;
  max-width: 1030px;
  margin-inline: auto;
}

.tab__content.is-active {
  display: block;
}

.service__cards {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(27.5%, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 768px) {
  .service__cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}

.card {
  box-shadow: 3px 3px 4px 0px rgba(29, 29, 29, 0.75);
}

.service__img {
  height: 100%;
  aspect-ratio: 330/370;
}
@media screen and (max-width: 768px) {
  .service__img {
    aspect-ratio: 250/280;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.service__box {
  position: relative;
}

.service__label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  padding: 5px 28px;
  color: #F9F2E5;
  background-color: #332F27;
}

.card__body {
  padding: 16px 16px;
}

.card__title {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .card__title {
    font-size: 14px;
  }
}

.card__text {
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #F9F2E5;
  margin-top: 10px;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
}

.news {
  padding: 74px 0 80px;
  background-color: #BCB5A8;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 55px 0 62px;
  }
}

.news__items {
  width: 100%;
  max-width: 85.8333%;
  margin: 36px auto 0;
}
@media screen and (max-width: 768px) {
  .news__items {
    max-width: 82%;
    margin-top: 34px;
  }
}

.news__item {
  display: flex;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid #A4A4A0;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    align-items: baseline;
    padding-top: 19px;
    padding-bottom: 19px;
  }
}
@media screen and (max-width: 570px) {
  .news__item {
    align-items: flex-start;
  }
}

.news__item:first-child {
  padding-top: 0;
}

.news__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news__lead {
  display: flex;
  align-items: center;
}

.news-item__date {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .news-item__date {
    font-size: 14px;
    letter-spacing: -0.03em;
  }
}
@media screen and (max-width: 374px) {
  .news-item__date {
    font-size: 12px;
  }
}

.news__label {
  display: inline-block;
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 5px 24px;
  margin-left: 30px;
  color: #fff;
  background-color: #332F27;
}
@media screen and (max-width: 768px) {
  .news__label {
    padding: 4.5px 20px;
    margin-left: 28px;
  }
}

.news__text {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .news__text {
    font-size: 14px;
    margin-top: 19px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 570px) {
  .news__text {
    margin-left: 0;
    line-height: 1.83;
  }
}
@media screen and (max-width: 374px) {
  .news__text {
    font-size: 13px;
  }
}

.top-contact {
  height: 399px;
  background-color: #272625;
}
@media screen and (max-width: 768px) {
  .top-contact {
    width: 100%;
    height: 312px;
    background-image: url(../images/contact-contact-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.top-contact__inner {
  height: inherit;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .top-contact__inner {
    display: initial;
  }
}

.top-contact__body {
  width: 46.7%;
  height: inherit;
  padding-top: 75px;
  padding-right: 50px;
  padding-left: 20px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .top-contact__body {
    padding-top: 58px;
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 900px) {
  .top-contact__body {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-contact__body {
    width: 100%;
    max-width: 600px;
    margin-right: auto;
    padding-top: 55px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.top-contact__text {
  font-size: 14px;
  margin-top: 55px;
  margin-right: 66px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .top-contact__text {
    margin-top: 43px;
    letter-spacing: initial;
    margin-inline: auto;
  }
}

.top-contact__wrap {
  margin-top: 17px;
  margin-right: 66px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-contact__wrap {
    margin-inline: auto;
  }
}

.contact-bottom-img {
  width: 46.5%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  padding: 29px;
  background-color: #222;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px;
  }
}

.footer__copyright {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.035em;
  text-align: center;
  color: #F9F2E5;
}

/*================================
Aboutページ
================================*/
.about-mv {
  height: 100%;
}

.about-mv__inner {
  position: relative;
}

.about__title {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: inherit;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .about__title {
    transform: translate(-49%, -56%);
  }
}

.about__heading {
  height: inherit;
  font-size: 46px;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .about__heading {
    font-size: 36px;
  }
}

.message {
  padding: 80px 0;
  background-color: #272625;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 60px 0;
  }
}

.message__inner {
  width: 100%;
  max-width: 770px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .message__inner {
    width: 76%;
    max-width: 600px;
    padding: 0;
  }
}

.message__text--main {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6666666667;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .message__text--main {
    font-size: 15px;
    line-height: 1.7333333333;
  }
}

.message__text--sub {
  display: inline-block;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 30px;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .message__text--sub {
    font-size: 14px;
    line-height: 1.8571428571;
    margin-top: 20px;
    text-align: left;
  }
}

.message__body {
  width: 100%;
  max-width: 694px;
  display: flex;
  padding-right: 25px;
  padding-left: 25px;
  margin-top: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .message__body {
    max-width: 88%;
    flex-direction: column;
    padding: 0;
    margin-top: 60px;
  }
}
@media screen and (max-width: 374px) {
  .message__body {
    max-width: 100%;
  }
}

.message-img {
  width: 100%;
  aspect-ratio: 290/340;
}
@media screen and (max-width: 768px) {
  .message-img {
    aspect-ratio: 250/290;
  }
}

.message__wrap {
  width: 100%;
  margin-top: 79px;
  margin-left: 32px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .message__wrap {
    margin-top: 16px;
    margin-left: 0;
  }
}

.message__heading {
  font-size: 38px;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .message__heading {
    font-size: 32px;
  }
}

.message__heading::before {
  display: inline-block;
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 10px;
  background-image: url(../images/section-logo.svg);
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .message__heading::before {
    width: 20px;
    height: 20px;
    background-image: url(../images/section-sp-logo.svg);
  }
}

.message__text,
.message__text-hidden {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 23px;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .message__text,
  .message__text-hidden {
    line-height: 1.8571428571;
    margin-top: 14px;
  }
}

.name__label {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #F9F2E5;
  margin-top: 20px;
  margin-right: 9px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .name__label {
    font-size: 13px;
    letter-spacing: 0;
    margin-top: 8px;
    text-align: left;
  }
}

.company-profile {
  padding: 74px 0 78px;
  background-color: #222;
}
@media screen and (max-width: 768px) {
  .company-profile {
    padding: 54px 0 58px;
  }
}

.company-profile__inner {
  width: 100%;
  max-width: 850px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .company-profile__inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.company-profile__heading {
  font-size: 38px;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .company-profile__heading {
    font-size: 32px;
  }
}

.company-profile__heading::before {
  display: inline-block;
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 10px;
  background-image: url(../images/section-logo.svg);
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .company-profile__heading::before {
    width: 20px;
    height: 20px;
    background-image: url(../images/section-sp-logo.svg);
  }
}

.company-profile__info {
  max-width: 91.75%;
  margin-top: 48px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .company-profile__info {
    max-width: 82.7%;
    margin-top: 14px;
  }
}

.info-wrap {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid #99958F;
}
@media screen and (max-width: 768px) {
  .info-wrap {
    padding: 19px 0;
    flex-direction: column;
  }
}

.info-title,
.info-text,
.info-text--map {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #F9F2E5;
}

.info-title {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .info-title {
    width: 30%;
  }
}

.info-text {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .info-text {
    width: 100%;
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .info-text span {
    display: block;
    margin-top: 7px;
  }
}

.info-text--map {
  display: block;
  margin-top: 16px;
  -webkit-text-decoration: underline #F9F2E5;
          text-decoration: underline #F9F2E5;
}
@media screen and (max-width: 768px) {
  .info-text--map {
    margin-top: 7px;
  }
}

.info-text--map::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 14px;
  margin-left: 4px;
  background-image: url(../images/map-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 20px;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal__body {
  position: relative;
  display: inline-block;
  width: 460px;
}
@media screen and (max-width: 768px) {
  .modal__body {
    width: 268px;
  }
}

.modal__content {
  padding: 24px;
  background: #fff;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal__content {
    padding: 14px;
  }
}

.modal__close-button {
  cursor: pointer;
}

.modal__close-button::before,
.modal__close-button::after {
  display: block;
  position: absolute;
  top: 30px;
  right: 24px;
  content: "";
  width: 10px;
  height: 10px;
  height: 2px;
  background: #222;
}
@media screen and (max-width: 768px) {
  .modal__close-button::before,
  .modal__close-button::after {
    top: 23px;
    right: 10px;
  }
}

.modal__close-button::before {
  transform: rotate(-45deg);
}

.modal__close-button::after {
  transform: rotate(45deg);
}

.modal__name {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .modal__name {
    font-size: 14px;
    margin-bottom: 13px;
  }
}

.modal iframe {
  width: 100%;
  aspect-ratio: 206/203;
}
@media screen and (max-width: 768px) {
  .modal iframe {
    aspect-ratio: 1/1;
    vertical-align: bottom;
  }
}

/*================================
// contactページ
================================*/
.contact-mv {
  height: 100%;
}

.contact-mv__inner {
  position: relative;
}

.contact__title {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: inherit;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .contact__title {
    transform: translate(-50%, -54%);
  }
}

.contact__heading {
  height: inherit;
  font-size: 46px;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .contact__heading {
    font-size: 36px;
    letter-spacing: initial;
  }
}

.sub-contact {
  padding: 79px 0 82px;
  background-color: #272625;
}
@media screen and (max-width: 768px) {
  .sub-contact {
    padding: 60px 0 22px;
  }
}

.sub-contact__inner {
  width: 100%;
  max-width: 850px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sub-contact__inner {
    max-width: 375px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.sub-contact__box {
  text-align: center;
  margin-left: -8%;
  text-indent: 4rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__box {
    text-align: left;
    text-indent: initial;
    margin-left: 0;
  }
}

.sub-contact__text {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.8666666667;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}

.sub-contact__container {
  margin-top: 22px;
  padding-right: 30px;
  padding-left: 30px;
  box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .sub-contact__container {
    margin-top: 20px;
    padding-right: 17px;
    padding-left: 17px;
  }
}

.sub-contact__form {
  padding: 62px 0;
}
@media screen and (max-width: 768px) {
  .sub-contact__form {
    padding: 40px 0;
  }
}

.form__list {
  width: 100%;
  max-width: 498px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .form__item:not(:first-child) {
    margin-top: 20px;
  }
}

.form__item:not(:nth-child(3)) {
  display: flex;
}
@media screen and (max-width: 768px) {
  .form__item:not(:nth-child(3)) {
    flex-direction: column;
  }
}

.form__item:nth-child(-n+2) {
  align-items: center;
}

.form__item:nth-child(2) {
  margin-top: 23px;
}
@media screen and (max-width: 768px) {
  .form__item:nth-child(2) {
    margin-top: 20px;
  }
}

.form__item:nth-child(n+3) {
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .form__item:nth-child(n+3) {
    margin-top: 17px;
  }
}

.form__label-text {
  width: 28%;
  display: inline-block;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .form__label-text {
    width: 100%;
  }
}

.form__item:nth-child(4) .form__label-text {
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .form__item:nth-child(4) .form__label-text {
    margin-top: 0;
  }
}

.required {
  color: red;
}

.form__input {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .form__input {
    width: 100%;
  }
}

.form__radio-wrap {
  margin-top: 5px;
  margin-left: 34px;
}
@media screen and (max-width: 768px) {
  .form__radio-wrap {
    display: flex;
    flex-direction: column;
    margin-top: 7px;
    margin-left: 25px;
  }
}

.form__radio {
  display: inline-block;
}

.form__radio-label {
  font-size: 14px;
  position: relative;
  display: inline-block;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .form__radio-label {
    display: block;
  }
}

.form__radio-label:first-child {
  margin-top: 8px;
}

.form__radio:not(:first-child) {
  margin-left: 51px;
}
@media screen and (max-width: 768px) {
  .form__radio:not(:first-child) {
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .form__radio:nth-child(2) .form__radio-label {
    margin-top: 15px;
  }
}

.form__radio:nth-child(n+3) .form__radio-label {
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .form__radio:nth-child(n+3) .form__radio-label {
    margin-top: 13px;
  }
}

.form__radio-label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -13px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background-color: #332F27;
  border: 1px solid #BCB5A8;
  border-radius: 50%;
}

.form__radio-label::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -11px;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  background-color: #BCB5A8;
  border-radius: 50%;
  opacity: 0;
}

.form__radio input:checked + .form__radio-label::after {
  opacity: 1;
}

.form__input,
.form__textarea {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 8px 12px;
  background-color: #BCB5A8;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__textarea {
    margin-top: 4px;
  }
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  opacity: 0.5;
  color: #99958F;
}

.form__input::placeholder,
.form__textarea::placeholder {
  opacity: 0.5;
  color: #99958F;
}

.form__textarea {
  width: 73%;
  height: 171px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .form__textarea {
    width: 100%;
  }
}

.form__button {
  display: inline-block;
  margin-top: 40px;
  margin-left: 35%;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .form__button {
    display: block;
    margin-top: 20px;
    margin-left: 0;
    text-align: center;
  }
}

.button-btn {
  padding: 14px 74px;
  color: #F9F2E5;
  border: 1px solid #F9F2E5;
  border-radius: 5px;
  transition: all 0.3s; /*アニメーションの指定*/
}
@media screen and (max-width: 768px) {
  .button-btn {
    padding: 11px 68px;
  }
}

.thanks {
  padding: 370px 0;
  background-color: #272625;
}

.thanks__text {
  font-size: 18px;
  color: #F9F2E5;
  text-align: center;
}

.thanks__button {
  margin-top: 70px;
  text-align: center;
}

.button--chacoal {
  padding: 14px 30px;
  color: #F9F2E5;
  background-color: #272625;
  border: 1px solid #F9F2E5;
  border-radius: 5px;
}

.inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.heading {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 38px;
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}
@media screen and (max-width: 768px) {
  .heading {
    font-size: 32px;
  }
}

.heading.heading--black {
  color: #222;
}

.heading::before {
  display: inline-block;
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 10px;
  background-image: url(../images/section-logo.svg);
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .heading::before {
    width: 20px;
    height: 20px;
    background-image: url(../images/section-sp-logo.svg);
  }
}

.heading::after {
  display: inline-block;
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #99958F;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .heading::after {
    margin-left: 16px;
  }
}

.contact-button {
  font-size: 18px;
  font-family: "Cormorant", serif;
  font-weight: 500;
  color: #F9F2E5;
  padding: 12px 32px;
  border: 1px solid #F9F2E5;
  border-radius: 3px;
}

.contact-button.contact-button--large {
  padding: 10px 70px;
}

.contact-button.contact-button--wide {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  padding: 15px 48px;
  letter-spacing: 0.05em;
  color: #F9F2E5;
  outline: none;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .contact-button.contact-button--wide {
    padding: 12px 37px;
  }
}
@media screen and (max-width: 768px) {
  .contact-button.contact-button--wide {
    font-size: 14px;
  }
}

.contact-button.contact-button--wide::after {
  content: "";
  position: absolute;
  top: 47%;
  right: 8%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #F9F2E5;
  border-right: 1.5px solid #F9F2E5;
  transform: rotate(45deg);
}

.button--shadow:hover {
  box-shadow: 3px 3px 5px -2px rgba(0, 0, 0, 0.8);
  border-color: transparent;
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
    margin-top: 7px;
  }
}/*# sourceMappingURL=style.css.map */