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

body {
  font-family: "Cormorant", "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
==================================================================== */
.header {
  position: fixed;
  height: 94px;
  width: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid #F9F2E5;
  transition: background-color 0.3s;
}
@media screen and (max-width: 768px) {
  .header {
    border: none;
    height: 75px;
  }
}

.header.transform {
  background-color: #222222;
}

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

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

.header__nav {
  height: inherit;
  margin-left: auto;
  margin-right: auto;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__link {
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F9F2E5;
  font-size: 18px;
  font-weight: 500;
  padding: 0 29px;
}

.header__link--contact {
  padding: 8.5px 31px;
  border: 1px solid #F9F2E5;
  border-radius: 3px;
}

/* hamburger menu
------------------------------------------------------------- */
.hamburger {
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 16px;
}

.hamburger span {
  position: absolute;
  background-color: #F9F2E5;
  width: 25px;
  height: 2px;
  transition: 0.3s opacity, 0.3s transform;
}

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

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

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

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

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

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

/* drawer
------------------------------------------------------------- */
.drawer {
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(34, 34, 34, 0.84);
  overflow-y: scroll;
}

.drawer__items {
  padding: 162px 0 233px;
  width: 198px;
  margin: 0 auto;
}

.drawer__item:not(:last-child) {
  width: 80px;
  margin: auto;
}

.drawer__link::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/icon-beige-small.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 4px;
  display: inline-block;
}

.drawer__link {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #F9F2E5;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.667;
  padding: 25px 0;
}

.drawer__item:first-child {
  margin-top: -25px;
}

.drawer__link--contact {
  border: 1px solid #F9F2E5;
  border-radius: 6px;
  padding: 14px 60px;
  width: 198px;
  margin-top: 25px;
  text-align: center;
}

.drawer__link--contact:before {
  display: none;
}

/* mv
------------------------------------------------------------- */
.mv {
  width: 100%;
  height: 100vh;
  min-height: 400px;
}

.mv__inner {
  position: relative;
  height: inherit;
  min-height: inherit;
}

.mv__slider,
.swiper-slide picture,
.swiper-slide img {
  height: inherit;
  min-height: inherit;
  width: 100%;
}

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

.mv__title-wrap {
  position: absolute;
  width: 100%;
  z-index: 1;
  left: 205px;
  top: 55%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .mv__title-wrap {
    left: 0;
    text-align: center;
  }
}

.mv__title {
  color: #F9F2E5;
  font-size: 54px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 36px;
  }
}

.mv__title-sub {
  color: #F9F2E5;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .mv__title-sub {
    font-size: 14px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0px var(--swiper-pagination-bullet-horizontal-gap, 10px);
}
@media screen and (max-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0px var(--swiper-pagination-bullet-horizontal-gap, 5px);
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 22px;
  }
}

.swiper-pagination-bullet {
  background-color: #F9F2E5;
  width: 70px;
  height: 4px;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 40px;
    height: 2px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  width: 34px;
  height: 34px;
  transform: translateY(160%);
}

.swiper-button-next {
  background-image: url(../images/arrow-next.svg);
  right: 70px;
}

.swiper-button-prev {
  background-image: url(../images/arrow-prev.svg);
  left: 70px;
}

/* about
------------------------------------------------------------- */
.about {
  padding-top: 75px;
  padding-bottom: 80px;
  background-color: #272625;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 54px;
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .about__inner {
    padding-left: 35px;
    padding-right: 35px;
  }
}

.about__body {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}
@media screen and (max-width: 768px) {
  .about__body {
    display: block;
    margin-top: 52px;
  }
}

.about__title-wrap {
  margin-top: 25px;
  margin-left: 38px;
}
@media screen and (max-width: 768px) {
  .about__title-wrap {
    margin: 0 auto;
  }
}

.about__title {
  color: #F9F2E5;
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 400;
  line-height: 2;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 14px;
    letter-spacing: 0.2em;
    margin: 0 auto;
  }
}

.about__title-sub {
  color: #F9F2E5;
  font-size: 16px;
  letter-spacing: 0.85em;
  font-weight: 300;
  line-height: 2;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .about__title-sub {
    font-size: 14px;
    font-weight: 400;
  }
}

.about__img-wrap {
  margin-left: 48px;
}
@media screen and (max-width: 768px) {
  .about__img-wrap {
    margin-left: 0;
  }
}

.about__img {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  width: 360px;
  aspect-ratio: 360/500;
}
@media screen and (max-width: 768px) {
  .about__img {
    width: 240px;
    aspect-ratio: 240/333;
    margin: 30px auto 0 auto;
  }
}

.about__text {
  color: #F9F2E5;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 2;
  width: 600px;
  margin: -60px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 14px;
    line-height: 1.857;
    width: 305px;
    margin-top: -85px;
  }
}
@media screen and (max-width: 375px) {
  .about__text {
    width: 100%;
  }
}

.about__btn {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .about__btn {
    margin-top: 30px;
  }
}

/* service
------------------------------------------------------------- */
.service {
  padding-top: 74px;
  padding-bottom: 80px;
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .service {
    padding-top: 54px;
    padding-bottom: 55px;
  }
}

.service__tab {
  padding: 0 85px;
}
@media screen and (max-width: 768px) {
  .service__tab {
    padding: 0;
  }
}

.service__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .service__cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    row-gap: 37px;
  }
}

.tab__contents {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .tab__contents {
    margin-top: 40px;
  }
}

.tab__content {
  display: none;
}

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

.tab__button {
  color: #F9F2E5;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #2C2C2C;
  padding-bottom: 4px;
  transition: 0.8s all;
}
@media screen and (max-width: 768px) {
  .tab__button {
    font-size: 14px;
  }
}

.tab__button + .tab__button {
  margin-left: 37px;
}
@media screen and (max-width: 768px) {
  .tab__button + .tab__button {
    margin-left: 44px;
  }
}
@media screen and (max-width: 375px) {
  .tab__button + .tab__button {
    margin-left: 28px;
  }
}

.tab__button.is-active {
  border-bottom: 1px solid #F9F2E5;
}

.tab__list {
  text-align: center;
  margin-top: 43px;
}

/* News
------------------------------------------------------------- */
.news {
  background-color: #BCB5A8;
  padding-top: 72px;
  padding-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 55px;
    padding-bottom: 48px;
  }
}

.news__items {
  max-width: 1080px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .news__items {
    padding-left: 30px;
    margin-top: 15px;
  }
}

.news__item:not(:first-child) {
  border-top: 1px solid #A4A4A0;
}

.news-item {
  display: flex;
  align-items: baseline;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news-item {
    padding-top: 22px;
    flex-wrap: wrap;
  }
}

.news-item__meta {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .news-item__meta {
    width: 100%;
  }
}

.news-item__date {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222222;
}
@media screen and (max-width: 768px) {
  .news-item__date {
    font-size: 13px;
  }
}

.news-item__tag {
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding: 6px 24px;
  color: #F9F2E5;
  background-color: #332F27;
  margin-left: 26px;
}
@media screen and (max-width: 768px) {
  .news-item__tag {
    padding: 4px 20px;
  }
}

.news-item__title {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222222;
  padding: 30px 25px;
  width: calc(100% - 200px);
}
@media screen and (max-width: 768px) {
  .news-item__title {
    font-size: 14px;
    margin-left: 0;
    width: 100%;
    padding: 20px 0;
  }
}

/* Contact
------------------------------------------------------------- */
.contact {
  background-color: #272625;
}

.contact__inner {
  display: flex;
  max-width: 1250px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    background-image: url(../images/contact-sp-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.contact__main {
  max-width: 625px;
  width: 100%;
  margin-left: auto;
  padding-top: 73px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .contact__main {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact__main {
    padding-top: 55px;
    padding-bottom: 80px;
    max-width: 100%;
  }
}

.contact__btn-wrap {
  margin-top: 51px;
}
@media screen and (max-width: 1024px) {
  .contact__btn-wrap {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn-wrap {
    margin-top: 44px;
  }
}

.contact__text {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #F9F2E5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 13px;
  }
}

.contact__btn {
  margin-top: 20px;
}

.contact__figure {
  max-width: 670px;
  margin-left: 50px;
}

.contact__img {
  aspect-ratio: 670/399;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* footer
------------------------------------------------------------- */
.footer {
  background-color: #222222;
  padding: 27px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 19px;
  }
}

.footer__copyright {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #F9F2E5;
}

/* ====================================================================
# about page
==================================================================== */
.contact-mv {
  width: 100%;
  height: auto;
  min-height: 400px;
}

.contact-mv__inner {
  position: relative;
  height: inherit;
  min-height: inherit;
}

.contact-mv__img,
.contact-mv__img picture,
.contact-mv__img img {
  height: inherit;
  min-height: inherit;
  width: 100%;
}

.contact-mv__img img {
  -o-object-fit: cover;
     object-fit: cover;
}

.about-title {
  font-size: 46px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #F9F2E5;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .about-title {
    font-size: 36px;
  }
}

/* message
------------------------------------------------------------- */
.message {
  padding-top: 74px;
  padding-bottom: 80px;
  background-color: #272625;
}
@media screen and (max-width: 768px) {
  .message {
    padding-top: 55px;
    padding-bottom: 25px;
  }
}

.message__inner {
  max-width: 850px;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 auto;
}

.lead__title {
  color: #F9F2E5;
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.667;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .lead__title {
    font-size: 15px;
    line-height: 1.733;
  }
}

.lead__text {
  color: #F9F2E5;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 300;
  text-align: center;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .lead__text {
    font-size: 14px;
    line-height: 1.857;
    text-align: left;
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
  }
}

.message__body {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .message__body {
    display: block;
    margin-top: 50px;
    padding-right: 37px;
    padding-left: 37px;
  }
}

.message__img img {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.26);
  width: 290px;
  aspect-ratio: 290/340;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .message__img img {
    margin: 0 auto;
    width: 250px;
  }
}

.message__title {
  margin-top: 87px;
  margin-left: 30px;
  width: 324px;
}
@media screen and (max-width: 768px) {
  .message__title {
    margin: 10px auto 0 auto;
  }
}
@media screen and (max-width: 375px) {
  .message__title {
    width: 100%;
  }
}

.message__title-main {
  font-size: 38px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #F9F2E5;
}

.message__title-main {
  display: flex;
  align-items: center;
}

.message__title-main::before {
  content: "";
  width: 23px;
  height: 23px;
  background-image: url(../images/icon-beige.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}

.message__title-text {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .message__title-text {
    margin-top: -5px;
  }
}

.message__title-text,
.message__title-name {
  font-size: 14px;
  color: #F9F2E5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .message__title-text,
.message__title-name {
    line-height: 1.857;
  }
}

.message__title-name {
  margin-top: 18px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .message__title-name {
    margin-top: 10px;
    text-align: left;
  }
}

/* Company Profile
------------------------------------------------------------- */
.company {
  padding-top: 69px;
  padding-bottom: 80px;
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .company {
    padding-top: 50px;
    padding-bottom: 61px;
  }
}

.inner.company__inner {
  max-width: 800px;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 768px) {
  .inner.company__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.company__body {
  margin-top: 62px;
  padding-left: 33px;
  padding-right: 33px;
}
@media screen and (max-width: 768px) {
  .company__body {
    margin-top: 35px;
    padding-right: 30px;
    padding-left: 30px;
  }
}

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

.company__content {
  padding-bottom: 16px;
  border-bottom: 1px solid #F9F2E5;
  display: flex;
}
@media screen and (max-width: 768px) {
  .company__content {
    display: block;
    padding-bottom: 20px;
  }
}

.company__meta,
.company__info {
  color: #F9F2E5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.company__meta {
  width: 133px;
}

.company__info {
  width: calc(100% - 133px);
}
@media screen and (max-width: 768px) {
  .company__info {
    width: 100%;
    margin-top: 12px;
  }
}

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

.company__modal {
  margin-top: 16px;
  display: flex;
  align-items: center;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .company__modal {
    margin-top: 7px;
  }
}

.company__modal::after {
  content: "";
  width: 10px;
  height: 14px;
  background-image: url(../images/map-pin.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 4.7px;
}

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

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

.modal__body {
  max-width: 460px;
  width: 100%;
  max-height: 500px;
}

.modal__content-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.modal__close-button {
  content: "";
  background-image: url(../images/close-btn.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
  cursor: pointer;
}

.modal__content iframe {
  display: block;
  margin-top: 23px;
  min-height: 407px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal__content iframe {
    margin-top: 14px;
    min-height: 240px;
    max-height: 240px;
  }
}

.modal__text {
  font-size: 15px;
  color: #222222;
}

/* ====================================================================
# Contact Form
==================================================================== */
.contact-form {
  padding-top: 78px;
  padding-bottom: 78px;
  background-color: #272625;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding-top: 57px;
    padding-bottom: 20px;
  }
}

.contact__lead-text {
  color: #F9F2E5;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.867;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
}
.contact-from__wrap {
  max-width: 800px;
  width: 100%;
  margin-top: 21px;
  margin-left: auto;
  margin-right: auto;
  background-color: #272625;
  box-shadow: 3px 3px 6px rgba(29, 29, 29, 0.75);
}

.contact-form__body {
  max-width: 498px;
  width: 100%;
  padding-top: 54px;
  padding-bottom: 58px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .contact-form__body {
    padding-top: 35px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.form__item {
  width: 100%;
}

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

.form__item dl {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form__item dl {
    display: block;
  }
}

.form__textarea dl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .form__textarea dl {
    display: block;
  }
}

.form__textarea dl dt.form__label {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .form__textarea dl dt.form__label {
    margin-top: 17px;
  }
}

.form__textarea {
  margin-top: 27px;
}
@media screen and (max-width: 768px) {
  .form__textarea {
    margin-top: 3px;
  }
}

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

.form__label-text {
  font-size: 14px;
  font-weight: 500;
  color: #F9F2E5;
  font-family: "Noto Sans JP", sans-serif;
}

.form__input {
  background-color: #BCB5A8;
  padding: 8px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__input {
    margin-top: 4px;
  }
}

.form__input-text,
.form__textarea-content {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.form__textarea-content {
  resize: none;
  height: 147px;
}

.form__input-text::-moz-placeholder, .form__textarea-content::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #99958F;
  font-family: "Noto Sans JP", sans-serif;
}

.form__input-text::placeholder,
.form__textarea-content::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #99958F;
  font-family: "Noto Sans JP", sans-serif;
}

.form__button {
  margin-top: 43px;
  margin-left: 138px;
}
@media screen and (max-width: 768px) {
  .form__button {
    text-align: center;
    margin-top: 20px;
    margin-left: 0;
  }
}

.button.button--contact {
  width: 183px;
  border-radius: 6px;
  font-size: 16px;
  border: 1px solid #F9F2E5;
  color: #F9F2E5;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .button.button--contact {
    width: 169px;
    font-size: 14px;
    padding: 13px;
  }
}

.required:after {
  content: "*";
  color: #F93212;
}

.form__radio-content label {
  position: relative;
  cursor: pointer;
  padding-left: 14px;
}

.form__radio-content label::before,
.form__radio-content label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.form__radio-content label::before {
  background-color: #272625;
  border: 1px solid #BCB5A8;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  left: 0;
}

.form__radio-content label::after {
  background-color: #BCB5A8;
  border-radius: 50%;
  opacity: 0;
  width: 6px;
  height: 6px;
  left: 2px;
}

.form__radio-content label:has(:checked)::after {
  opacity: 1;
}

.form__radio {
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .form__radio {
    margin-top: 20px;
  }
}

.form__radio-content {
  margin-top: 17px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .form__radio-content {
    margin-top: 3px;
    margin-left: 13px;
    display: flex;
    flex-direction: column;
  }
}

.form__radio-content label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.867;
  color: #F9F2E5;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .form__radio-content label:not(:first-child) {
    margin-top: 10px;
  }
}

.form__radio-content label:not(:last-child) {
  margin-right: 36px;
}
@media screen and (max-width: 768px) {
  .form__radio-content label:not(:last-child) {
    margin-right: 25px;
  }
}

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

/* ====================================================================
# 共通パーツ
==================================================================== */
.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

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

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

@media screen and (max-width: 768px) {
  .section-title--contact {
    max-width: 600px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.section-title__main {
  color: #F9F2E5;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section-title__main {
    font-size: 32px;
  }
}

.section-title__main.section-title__main--second {
  color: #222222;
}

.section-title__main::before {
  content: "";
  width: 23px;
  height: 23px;
  background-image: url(../images/icon-beige.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin-right: 10px;
}

.section-title__main.section-title__main--second::before {
  background-image: url(../images/icon-black.svg);
}

.section-title__main:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  display: block;
  margin-left: 0.5em;
  background-color: #99958F;
}
@media screen and (max-width: 768px) {
  .section-title__main:after {
    margin-left: 0.3em;
  }
}

.section-title__main.section-title__main--third::after {
  background: none;
}

/* card
------------------------------------------------------------- */
.card {
  width: 330px;
  background-color: #222222;
  position: relative;
  box-shadow: 3px 3px 6px rgba(29, 29, 29, 0.75);
}
@media screen and (max-width: 768px) {
  .card {
    width: 250px;
  }
}

.card__category {
  color: #F9F2E5;
  background-color: #332F27;
  display: inline-block;
  padding: 4.5px 28px;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

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

.card__text-wrap {
  padding: 17px 16px 16px;
}

.card__text-title {
  color: #F9F2E5;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.card__text {
  color: #F9F2E5;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.538;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ボタン
------------------------------------------------------------- */
.btn {
  text-align: center;
}

.btn__link {
  color: #F9F2E5;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.1875;
  border: 1px solid #F9F2E5;
  border-radius: 6px;
  padding: 17px 30px;
  display: inline-block;
  width: 204px;
  position: relative;
  transition: 0.3s box-shadow;
}
.btn__link:hover {
  box-shadow: 3px 3px 10px rgba(22, 22, 22, 0.8);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .btn__link {
    font-size: 14px;
    width: 173px;
    line-height: 1.214;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.btn__link.btn__link--wide {
  width: 265px;
}
@media screen and (max-width: 768px) {
  .btn__link.btn__link--wide {
    width: 227px;
  }
}

.btn__link::after {
  content: "";
  width: 5px;
  height: 10px;
  background-image: url(../images/btn-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}