@charset "UTF-8";
/* 文字コードの指定 */
/* ページ全般の設定 */
* {
  box-sizing: border-box;
}

/* ふわっと */
:root {
  --ease-main: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-fast: 0.4s;
  --dur-main: 0.8s;
  --dur-slow: 1.2s;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  color: #000000;
  background: #FFFEF2;
}

/* ふわっと */
a,
button,
img {
  transition-duration: var(--dur-main);
  transition-timing-function: var(--ease-main);
}

a {
  transition: opacity var(--dur-main) var(--ease-main), transform var(--dur-main) var(--ease-main);
}

a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

/*ページ遷移*/
body {
  opacity: 1;
  transition: opacity 0.5s ease;
}

body.is-leave {
  opacity: 0;
}

li {
  list-style: none;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.header {
  flex-shrink: 0;
}

/* TOP main */
.page-top {
  flex: 1;
  display: flex;
  min-height: 0;
}

main {
  flex: 1;
}

.footer {
  flex-shrink: 0;
}

a {
  color: #000000;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

em {
  font-style: normal;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

.flex {
  display: flex;
}
@media (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.grid {
  display: grid;
}
@media (max-width: 767px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.content-width {
  max-width: 70rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .content-width {
    width: 100%;
  }
}

.section-title {
  font-size: 3.2rem;
}

.fixed-side-menu {
  position: fixed;
  right: 0;
  top: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
}
@media (max-width: 767px) {
  .fixed-side-menu {
    align-items: flex-end;
    top: 10rem;
    display: none;
  }
}
@media (max-width: 767px) {
  .fixed-side-menu li:nth-child(1) img {
    width: 8rem;
  }
}
.fixed-side-menu li:nth-child(2), .fixed-side-menu li:nth-child(3), .fixed-side-menu li:nth-child(4), .fixed-side-menu li:nth-child(5), .fixed-side-menu li:nth-child(6) {
  padding-right: 1rem;
}

.header {
  width: 100%;
  padding: 2rem 3.3rem 0 3rem;
  position: relative;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .header {
    height: 4.8rem;
  }
}
@media (max-width: 767px) {
  .header {
    position: fixed;
    padding: 0 1.6rem;
    height: 4.8rem;
  }
}
.header .header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  gap: 6.9444444444vw;
}
@media (min-width:1080px) {
  .header .header__inner {
    gap: 7.5rem;
  }
}
@media (max-width: 1024px) {
  .header .header__inner {
    height: 4.8rem;
  }
}
@media (max-width: 767px) {
  .header .header__inner {
    height: 4.8rem;
    width: 100%;
    align-items: center;
  }
}
.header .header__logo {
  line-height: 1;
  display: flex;
  max-width: 14.6296296296vw;
  width: 100%;
  z-index: 1000;
}
@media (min-width:1080px) {
  .header .header__logo {
    max-width: 15.8rem;
  }
}
@media (max-width: 767px) {
  .header .header__logo {
    max-width: 12.6rem;
  }
}
.header .header__logo img {
  width: 15.8rem;
}
.header .header__logo a {
  display: flex;
}
.header .header__inner__right {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 3.3rem;
}
.header nav {
  width: 100%;
}
@media (max-width: 1024px) {
  .header nav {
    display: none;
  }
}
.header .header__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.3148148148vw;
}
@media (min-width:1080px) {
  .header .header__menu {
    gap: 2.5rem;
  }
}
.header .header__menu li a {
  font-size: 1.8rem;
  color: #8C8C8C;
  line-height: 1.6;
  letter-spacing: -0.025em;
  text-shadow: 0.3px 0 0 currentColor;
  transform: scale(1, 0.85);
}
.header .header__menu li .current {
  color: #000000;
}
.header .lang-menu {
  display: flex;
  align-items: center;
}
.header .lang-menu li:nth-child(1) {
  margin-right: -0.3rem;
  position: relative;
  z-index: 1;
}
.header .lang-menu li a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  background: #7d7d7d;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.04em;
}
.header .lang-menu .is-current a {
  background: #231815;
}

/*=================================================
    SP ハンバーガーメニュー
===================================================*/
/* ハンバーガーメニューボタン */
.hamburger-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  z-index: 10000;
  cursor: pointer;
}
.hamburger-btn .hamburger-btn__line {
  width: 30px;
  height: 20px;
  position: relative;
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  bottom: 50%;
  left: 50%;
  right: 50%;
}
.hamburger-btn .hamburger-btn__line .line {
  position: absolute;
  content: "";
  background: #000000;
  height: 2px;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
  width: 30px;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(1) {
  top: 0;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(2) {
  bottom: 43%;
}
.hamburger-btn .hamburger-btn__line .line:nth-child(3) {
  bottom: 0;
}

/* ×　オープン */
.hamburger-btn.active {
  top: 0;
  right: 0;
}
.hamburger-btn.active .hamburger-btn__line {
  width: 30px;
  height: 11px;
}
.hamburger-btn.active .line:nth-child(1), .hamburger-btn.active .line:nth-child(2), .hamburger-btn.active .line:nth-child(3) {
  width: 30px;
  height: 2px;
  top: 33%;
  left: 0;
}
.hamburger-btn.active .line:nth-child(1) {
  transform: rotate(-45deg);
}
.hamburger-btn.active .line:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger-btn.active .line:nth-child(3) {
  transform: rotate(45deg);
}

/* メニューの中身 */
#hamburger-menu {
  width: 100%;
  height: 100%;
  background-color: #FFFEF2;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  visibility: hidden;
  padding: 3rem 2rem 6.4rem;
}
#hamburger-menu .hamburger-menu__list {
  margin: 40px auto 0;
  width: 90%;
}
#hamburger-menu .hamburger-menu__list li {
  text-align: center;
}
#hamburger-menu .hamburger-menu__list li:last-child {
  margin-bottom: 0;
}
#hamburger-menu .hamburger-menu__list li a {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  transform: scale(1, 0.85);
}
#hamburger-menu .hamburger-menu__contact {
  margin-top: 3rem;
}
#hamburger-menu .hamburger-menu__contact .more-btn {
  margin: 0 auto;
}
#hamburger-menu .sns-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  margin-top: 5rem;
}
#hamburger-menu .line-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* ハンバーガーメニュー開いた時 */
#hamburger-menu.active {
  overflow: scroll;
  visibility: visible;
  transition: all 0.5s;
  left: 0;
  -webkit-overflow-scrolling: touch;
}

body.active {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .hamburger-btn,
  .hamburger-menu {
    display: none;
  }
}
@media (max-width: 1024px) {
  .hamburger-btn,
  .hamburger-menu {
    display: block;
  }
}

.mv {
  position: relative;
  flex: 1;
  min-height: 0;
  padding: clamp(24px, 5vh, 60px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mv .slider {
  width: min(76vw, 821px);
  aspect-ratio: 821/540;
  max-height: 65vh;
}
@media (min-width:1080px) {
  .mv .slider {
    width: clamp(600px, 76vw, 1000px);
    aspect-ratio: 821/540;
  }
}
@media (max-width: 767px) {
  .mv .slider {
    width: 92vw;
    max-height: 75vh;
  }
}
.mv .slider img {
  width: 100%;
  height: 100%;
  max-height: 65vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.mv .mv-logo {
  position: absolute;
  content: "";
  width: 40.5555555556vw;
  top: 50%;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
@media (min-width:1080px) {
  .mv .mv-logo {
    width: 438px;
  }
}

.news {
  padding: 7rem 2rem;
}
.news .news__list {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 5.8rem;
  margin-top: 2rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  color: #4C4948;
}
.news .news__list .news__list__hover {
  cursor: pointer;
}
.news .news__list .news__list__title {
  font-size: 1.2rem;
  padding-left: 1.5rem;
  margin-top: 1rem;
}
.news .news__list .news__list__text {
  background: #fff;
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 2px 2px 0 rgba(224, 214, 157, 0.5);
  font-size: 1.2rem;
  height: auto;
}
.news .news__list .news__list__text .list-title {
  margin-bottom: 2rem;
}
.news .news__list .news__list__text .ticket-link {
  margin-top: 3.5rem;
  text-align: right;
}
.news .news__list .news__list__text .ticket-link a {
  color: #4C4948;
}

.news__head {
  gap: 3rem;
  align-items: center;
}
.news__head .section-title {
  color: #727171;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  transform: scale(1, 0.85);
  letter-spacing: -0.02em;
}
.news__head .link-list {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.news__head .link-list li a {
  color: #fff;
  background: #BFC0C0;
  font-size: 1.1rem;
  border-radius: 1rem;
  padding: 0px 7px 0px;
  line-height: 1;
  transform: scale(1, 0.85);
  letter-spacing: 0.08em;
}
.news__head .link-list .current {
  background: #231815;
}

.news__list li {
  position: relative;
  overflow: visible;
}

/* 初期：非表示 */
.news__list__text {
  position: absolute;
  top: 100%;
  /* 親の「下」に出す */
  left: 0;
  width: 100%;
  font-weight: 700;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

@media (min-width: 768px) {
  .news__list li:hover .news__list__text {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.news__list li.is-open .news__list__text {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ページネーション */
.pagination {
  margin: 8rem auto 0;
  text-align: center;
}
.pagination .current {
  font-weight: bold;
}

.event-works {
  padding: 7rem 2rem;
}
.event-works .content-width {
  max-width: 72.2rem;
}
.event-works .section-title {
  transform: scale(1, 0.85);
}
.event-works .event-works__list {
  margin-top: 2rem;
  width: 100%;
}
.event-works .event-works__list li {
  align-items: flex-start;
  gap: 2.5rem;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  color: #4C4948;
  margin-bottom: 2rem;
}
.event-works .event-works__list li:last-child {
  margin-bottom: 0;
}
.event-works .event-works__list li .list-img {
  box-shadow: 2px 2px 0 rgba(224, 214, 157, 0.5);
  max-width: 30.8rem;
  width: 100%;
}
@media (max-width: 767px) {
  .event-works .event-works__list li .list-img {
    max-width: 100%;
  }
}
.event-works .event-works__list li .event-works__list__text {
  font-weight: 700;
}
.event-works .event-works__list li .date,
.event-works .event-works__list li .list-title {
  font-size: 1.86rem;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
}
.event-works .event-works__list li .list-text {
  font-size: 1.36rem;
  line-height: 1.5384615385;
  letter-spacing: 0.06em;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .page-about .content-width {
    max-width: 75rem;
    margin: 0 auto;
  }
}

.about {
  padding: 7rem 2rem;
}
.about .section-title {
  margin-bottom: 6rem;
  padding-left: 1rem;
  transform: scale(1, 0.85);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.about .about__img {
  max-width: 52.8rem;
  margin: 6rem auto 8rem;
  mix-blend-mode: multiply;
}
@media (max-width: 767px) {
  .about .about__img {
    margin: 0 auto 3rem;
    max-width: 100%;
    width: 85%;
  }
}
.about .about__more {
  transform: scale(1, 0.85);
  text-align: right;
  letter-spacing: -0.1em;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
@media (max-width: 767px) {
  .about .about__more {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .member {
    padding: 0 2rem;
  }
}
.member .section-title {
  margin-bottom: 3rem;
  padding-left: 1rem;
  transform: scale(1, 0.85);
  letter-spacing: -0.02em;
  font-weight: 700;
}
.member .member__list li {
  align-items: flex-start;
  justify-content: space-between;
  gap: 3.8rem;
  margin-bottom: 5.7rem;
  color: #000000;
}
.member .member__list li .list-img {
  max-width: 23.6rem;
  width: 100%;
}
@media (max-width: 767px) {
  .member .member__list li .list-img {
    margin: 0 auto;
  }
}
.member .member__list li .list-img img {
  width: 100%;
}
.member .member__list li .member__list__text {
  transform: scale(1, 0.85);
  margin-top: -2.4rem;
}
@media (min-width: 768px) {
  .member .member__list li .member__list__text {
    max-width: 48rem;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .member .member__list li .member__list__text {
    display: inline-block;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}
.member .member__list li .member__list__text .list-title {
  font-size: 2.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.member .member__list li .member__list__text .post,
.member .member__list li .member__list__text .profile {
  font-size: 1.3rem;
  letter-spacing: -0.06em;
}
.member .member__list li .member__list__text .profile {
  margin-top: 1.5rem;
}
.member .member__list li:last-child {
  margin-bottom: 0;
}

.company {
  margin-top: 11.1rem;
}
@media (max-width: 767px) {
  .company {
    margin-top: 8rem;
    padding: 0 2rem;
  }
}
.company .section-title {
  color: #727171;
  font-size: 2.1rem;
  font-weight: 500;
  padding-left: 0.5rem;
  margin-bottom: 6rem;
  transform: scale(1, 0.85);
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .company .section-title {
    margin-bottom: 2rem;
  }
}
.company .company-text {
  text-align: center;
  font-size: 1.69rem;
  transform: scale(1, 0.85);
  letter-spacing: -0.06em;
}

.service {
  margin-top: 13rem;
  padding-bottom: 14rem;
}
@media (max-width: 767px) {
  .service {
    margin-top: 8rem;
    padding: 0 2rem 8rem;
  }
}
.service .section-title {
  color: #727171;
  font-size: 2.1rem;
  font-weight: 500;
  padding-left: 0.5rem;
  margin-bottom: 6rem;
  transform: scale(1, 0.85);
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .service .section-title {
    margin-bottom: 2rem;
  }
}
.service .service-text {
  text-align: center;
  font-size: 1.69rem;
  transform: scale(1, 0.85);
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .service .service-text {
    display: inline-block;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: 1.4rem;
  }
}

/* 非表示がデフォルト */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s linear 0.8s;
}
.modal .modal-titile {
  font-size: 2.1rem;
  transform: scale(1, 0.85);
  letter-spacing: -0.02em;
  color: #898989;
}
.modal .modal-img {
  max-width: 33.3rem;
  width: 100%;
  margin-top: 3.5rem;
}
.modal .modal-text {
  font-size: 1.6rem;
  transform: scale(1, 0.85);
  letter-spacing: -0.06em;
}
@media (max-width: 767px) {
  .modal .modal-text {
    font-size: 1.4rem;
  }
}

.modal-wrap {
  position: relative;
  max-width: 60rem;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.modal-wrap::after {
  position: absolute;
  content: "";
  background-image: url(../images/modal-hand.png);
  background-size: contain;
  width: 52.35rem;
  height: 37.7rem;
  bottom: -20rem;
  left: -44.5rem;
  z-index: 2;
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  opacity: 1;
}
@media (max-width: 767px) {
  .modal-wrap::after {
    width: 31.35rem;
    height: 32.7rem;
    bottom: -25rem;
    left: -23.8rem;
  }
}
.modal-wrap::before {
  content: "";
  display: block;
  height: 4rem;
  width: 85%;
  position: absolute;
  background: #fff;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .modal-wrap::before {
    height: 3rem;
  }
}

/* 表示時 */
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0s linear 0s;
}

/* 開いたとき */
.modal.is-open .modal-wrap {
  opacity: 1;
}

/* 中身 */
.modal__inner {
  position: relative;
  max-width: 60rem;
  max-height: 80vh;
  margin: 10vh auto;
  padding: 4rem 4rem 4rem 10rem;
  background: #fff;
  overflow-y: auto;
  -ms-overflow-style: none;
  /* IE, Edge */
  scrollbar-width: none;
  /* Firefox */
}
@media (max-width: 767px) {
  .modal__inner {
    max-width: 100%;
    width: 85%;
    max-height: 88vh;
    margin: 5vh auto;
    padding: 4rem 4rem 4rem 5.5rem;
  }
}

.modal__inner::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.modal__inner {
  opacity: 0;
}

/* 開く時だけ少し遅らせる */
.modal.is-open .modal__inner {
  opacity: 1;
}

.modal:not(.is-open) .modal-wrap::after {
  opacity: 0;
}

/* 閉じるボタン */
.modal__close {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 3.4rem;
  height: 3.4rem;
}

.contact {
  padding: 7rem 2rem;
}
.contact .section-title {
  color: #727171;
  font-size: 3.17rem;
  padding-left: 0.5rem;
  margin-bottom: 3rem;
  transform: scale(1, 0.85);
  letter-spacing: -0.02em;
}
.contact .contact__movie {
  text-align: center;
  position: relative;
}
.contact .contact__movie::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFEF2;
  mix-blend-mode: multiply;
  opacity: 0.15;
  pointer-events: none;
}
.contact .contact__movie video {
  filter: brightness(0.95) contrast(1.15) saturate(1.3) sepia(0.3) hue-rotate(15deg);
}
@media (max-width: 767px) {
  .contact .contact__movie video {
    width: 100%;
    height: auto;
    filter: brightness(0.98) contrast(1.05) saturate(1.1) sepia(0.12) hue-rotate(8deg);
  }
}
.contact .section-text {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 7.5rem;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .contact .section-text {
    font-size: 1.6rem;
  }
}
.contact .Form {
  width: 100%;
}
.contact .Form-Item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
  .contact .Form-Item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact .Form-Item .Form-Item-Label {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: right;
  width: 11%;
  transform: scale(1, 0.85);
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .contact .Form-Item .Form-Item-Label {
    font-size: 1.4rem;
  }
}
.contact .Form-Item .Form-Item-Input {
  max-width: 53.3rem;
  width: 100%;
}
.contact .Form-Item .Form-Item-Input input,
.contact .Form-Item .Form-Item-Input textarea {
  width: 100%;
  padding: 5px 10px;
}
.contact .Form-Item .input-text {
  height: 3.6rem;
}
.contact .Form-Item textarea {
  height: 22.9rem;
}
.contact .Form-Item:nth-of-type(3), .contact .Form-Item:nth-of-type(4) {
  align-items: flex-start;
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input {
  text-align: center;
  /* input本体は非表示 */
  /* ボタン風デザイン */
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input .file-list {
  font-size: 1.4rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4.5rem auto 4.5rem;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .contact .Form-Item:nth-of-type(4) .Form-Item-Input .file-list {
    margin: 1.5rem auto 4.5rem 0;
  }
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input .file-list li {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-direction: column-reverse;
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input .file-list li .file-ui {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input .file-list li .file-name {
  width: 76%;
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input .file-list li:last-child {
  margin-bottom: 0;
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input .file {
  display: none;
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input .file-btn {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: #939392;
  color: #fff;
  border-radius: 1.5rem;
  cursor: pointer;
  font-size: 1.454rem;
  line-height: 1;
  flex-shrink: 0;
}
.contact .Form-Item:nth-of-type(4) .Form-Item-Input .caution {
  text-align: right;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}
.contact .Form-Item:last-of-type {
  margin-bottom: 0;
}
.contact .button-wrap {
  font-size: 1.73rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4.5rem auto 0;
  letter-spacing: -0.04em;
  gap: 2rem;
}
.contact .button-wrap input {
  max-width: 53.5rem;
  width: 100%;
  height: 3.5rem;
  color: #fff;
  background: #000000;
}
.contact .input-text,
.contact textarea {
  background: #fff;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.wpcf7-spinner {
  display: none !important;
}

.confirm_area {
  margin-top: 10rem;
}
@media (max-width: 767px) {
  .confirm_area {
    margin-top: 7rem;
  }
}
.confirm_area .confirm-title {
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 767px) {
  .confirm_area .confirm-title {
    font-size: 2.7rem;
  }
}
.confirm_area .confirm-text {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .confirm_area .confirm-text {
    font-size: 1.6rem;
  }
}
.confirm_area .Form {
  margin: 6rem auto 0;
}
@media (max-width: 767px) {
  .confirm_area .Form {
    margin: 3rem auto 0;
  }
}

.contact-thanks {
  padding: 15rem 2rem 15rem;
}
@media (max-width: 767px) {
  .contact-thanks {
    padding: 7rem 2rem;
  }
}
.contact-thanks .section-title {
  font-size: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-thanks .section-title {
    font-size: 3rem;
  }
}
.contact-thanks .section-text {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .contact-thanks .section-text {
    font-size: 1.6rem;
    margin-top: 4rem;
  }
}

.footer .copyright {
  text-align: center;
  padding-bottom: 1.2rem;
  font-size: 10px;
  color: #8C8C8C;
  transform: scale(1, 0.85);
  letter-spacing: 0.02em;
}/*# sourceMappingURL=style.css.map */