@charset "UTF-8";
body {
  color: #202020;
}

body {
  font-family: "noto sans jp", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a:hover {
  opacity: 0.8;
}

/*インナー幅用の基本CSS*/
.inner {
  width: 100%;
  max-width: 37.5rem;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

/* ================================================
   cssここから書く
================================================ */
/*共通*/
.section-title-primary {
  color: #796a64;
  font-family: "lato", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .section-title-primary {
    font-size: 3rem;
    line-height: 1.1666666667;
  }
}

.section-title {
  text-align: center;
}

.section-title_sub {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .section-title_sub {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}

.border {
  border-bottom: 8px solid #a7b8ab;
  display: inline-block;
}

.section-top {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .section-top {
    margin-top: 7.5rem;
  }
}

.btn02 {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
  -webkit-filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  background: linear-gradient(266.64deg, #feac62 0%, #c54b1d 100%);
  border-radius: 10px;
  width: 18.5625rem;
  max-width: 100%;
  text-align: center;
}

.btn02::before {
  content: "";
  position: absolute;
  background: linear-gradient(266.64deg, #a38f87 0%, #413530 100%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
  z-index: -1;
}

.btn02:hover::before {
  opacity: 0;
}

.btn01 {
  color: #202020;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  padding-right: 3.25rem;
}

.btn01::after {
  content: "";
  position: absolute;
  background-image: url(../images/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.75rem;
  height: 0.25rem;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 100%;
}

/* ボタンhover後の背景色 */
.btn02::before {
  content: "";
  position: absolute;
  background: linear-gradient(266.64deg, #a38f87 0%, #413530 100%);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 10px;
  z-index: -1;
}

.btn02:hover::before {
  opacity: 0;
}

/*header*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 5.625rem;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

.header_inner,
.header_inner nav,
.header_nav,
.header_nav-item,
.header_nav-item a {
  height: inherit;
}

.header_inner {
  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;
  height: i;
}

.header_logo {
  width: 5.25rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .header_logo {
    width: 8.1875rem;
  }
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}

.header_nav-item a {
  color: #202020;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-block: auto;
  position: relative;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

/*headerの下線*/
.link {
  position: relative;
}

.link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #796a64;
  left: 0;
  bottom: 20px;
  -webkit-transition: all 0.8s 0s ease;
  transition: all 0.8s 0s ease;
}

.link:hover::after {
  width: 100%;
}

/*headerの背景色が変わる*/
* {
  text-align: center;
  margin: 0;
  padding: 0;
}

.change-color {
  background-color: #F4F2F1;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.header_logo-link {
  position: relative;
  display: block;
}

.header_logo-link::before {
  position: absolute;
  content: "";
  background-image: url(../images/logo\ .svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.header_logo-link.change-logo::before {
  z-index: 1;
  -webkit-animation-name: fade;
          animation-name: fade;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  opacity: 1;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*hamburger*/
.hamburger {
  z-index: 9999;
  width: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  background-color: #fff;
  display: block;
  height: 0.125rem;
  position: relative;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  width: 1.4375rem;
}

.hamburger span:nth-child(2) {
  margin-top: 0.5625rem;
  margin-bottom: 0.5625rem;
}

.is-openSP span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0.6875rem;
}

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

.is-openSP span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -0.6875rem;
}

/*sp-nav*/
.sp-nav {
  background-color: #796a64;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}

.is-openSP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sp-nav_logo img {
  width: 5.25rem;
  max-width: 100%;
  margin-top: 1.375rem;
  margin-left: 1.25rem;
}

.sp-nav_items {
  margin-inline: auto;
  width: 10rem;
  margin-top: 10.125rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.sp-nav_item a {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  float: left;
}

.contact-btn {
  display: block;
  background-color: #fff;
  border-radius: 10px;
  height: inherit;
  padding: 21px 86px 15px 128px;
}

.sp-nav_btn {
  width: 20.9375rem;
  height: 3.75rem;
  margin-inline: auto;
  margin-top: 4.5rem;
  position: relative;
}

.sp-nav_btn img {
  width: 2.1875rem;
  position: absolute;
  top: 0.8125rem;
  left: 5.3125rem;
}

/*fv*/
.fv {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.fv__image {
  aspect-ratio: 375/812;
  max-height: 50.75rem;
}
@media screen and (min-width: 768px) {
  .fv__image {
    aspect-ratio: 1440/768;
  }
}

.fv__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.fv_logo {
  position: absolute;
  width: 64%;
  min-width: 15rem;
}
@media screen and (min-width: 768px) {
  .fv_logo {
    max-width: 25rem;
    width: 100%;
  }
}

/*concept*/
@media screen and (min-width: 768px) {
  .section-concept {
    margin-top: 7.375rem;
  }
}

.concept__content {
  text-align: center;
  margin-top: 2.5rem;
}

.concept__intro {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .concept__intro {
    font-size: 2rem;
    line-height: 1.25;
  }
}

.concept__intro span {
  font-size: 1rem;
  line-height: 2.25;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .concept__intro span {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.concept__text {
  gap: 2.125rem;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .concept__text {
    margin-top: 3rem;
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.concept__bottom {
  margin: 1.5rem calc(50% - 50vw) 0;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .concept__bottom {
    width: 100%;
    margin-inline: auto;
  }
}

.frame {
  margin-top: 1.5rem;
}

/*event*/
.event {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f4f2f1;
}
@media screen and (min-width: 768px) {
  .event {
    height: 47.5rem;
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.event-slider__container {
  position: relative;
  margin-top: 2.5rem;
}

.event-slider__list {
  margin-inline: auto;
  width: 58.6666666667%;
  min-width: 14.1875rem;
}
@media screen and (min-width: 768px) {
  .event-slider__list {
    max-width: 60.25rem;
    width: 100%;
  }
}

.event-slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.event-slider__arrows img {
  height: 1.875rem;
  width: 1.875rem;
}

.event-item {
  padding-right: 7px;
  padding-bottom: 7px;
  -webkit-filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.25));
  color: #202020;
}

.event__body {
  text-align: left;
  padding: 1.125rem 1rem 1rem;
  background-color: #fff;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .event__body {
    padding: 1rem;
  }
}

.event-title {
  text-align: left;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.event__body time {
  font-size: 0.875rem;
  line-height: 1.1428571429;
}

.zoom__image {
  overflow: hidden;
  max-width: 400px;
}

.zoom__image img {
  -webkit-transition: 1s all;
  transition: 1s all;
}

.zoom__image img:hover {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}

/*works*/
@media screen and (min-width: 768px) {
  .inner.works__inner {
    max-width: 63.375rem;
  }
}

/*tab*/
@media screen and (min-width: 768px) {
  .inner.works__inner {
    max-width: 63.375rem;
  }
}

/*タブ切り替え*/
.works-tab__conatiner {
  margin-top: 2.5rem;
}

.works-tab__items {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.125rem 1fr 1.125rem 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 1.125rem;
     -moz-column-gap: 1.125rem;
          column-gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .works-tab__items {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.works-tab__item {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  background: #f4f2f1;
  border-radius: 10pk 10px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .works-tab__item {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.works-tab__item.active {
  background-color: #796a64;
  color: #fff;
}

.works-panel__item {
  display: none;
  text-align: center;
  padding: 2.5rem 2.625rem;
}
@media screen and (min-width: 768px) {
  .works-panel__item {
    padding: 3.5rem 3rem;
  }
}

.works-panel__item.active {
  display: block;
  border: 2px solid #796a64;
  border-radius: 0px 0px 10px 10px;
}

@media screen and (min-width: 768px) {
  .works-panel__inner {
    display: -ms-grid;
    display: grid;
    -webkit-column-gap: 5.5625rem;
       -moz-column-gap: 5.5625rem;
            column-gap: 5.5625rem;
    -ms-grid-columns: 23.8125rem 5.5625rem 25rem;
    grid-template-columns: 23.8125rem 25rem;
    -ms-grid-rows: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas: "item01 item02" "item03 item02" "item04 item02";
  }
}

.works-panel__heading {
  font-family: "noto serif jp", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .works-panel__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.item01 {
  grid-area: item01;
}

.item02 {
  grid-area: item02;
}

.item03 {
  grid-area: item03;
}

.item04 {
  grid-area: item04;
}

@media screen and (min-width: 768px){
  .item01 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .item02 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 3;
  }
  .item03 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .item04 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

.works-panel__image {
  margin-top: 2.5rem;
  border-radius: 100px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .works-panel__image {
    margin-top: 0;
    max-width: 25rem;
  }
}

.works-panel__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.works-panel__text {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 2.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .works-panel__text {
    margin-top: 1.5rem;
  }
}

.works-panel__btn {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .works-panel__btn {
    text-align: left;
  }
}

.btn01 {
  color: #202020;
}

.voice {
  background: -webkit-gradient(linear, left top, right top, from(#f4f2f1), color-stop(80%, #f4f2f1), color-stop(80%, #fff), to(#fff));
  background: linear-gradient(90deg, #f4f2f1 0%, #f4f2f1 80%, #fff 80%, #fff 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .voice {
    background: -webkit-gradient(linear, left top, right top, from(#f4f2f1), color-stop(72%, #f4f2f1), color-stop(72%, #fff), to(#fff));
    background: linear-gradient(90deg, #f4f2f1 0%, #f4f2f1 72%, #fff 72%, #fff 100%);
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.voice-title {
  font-family: "noto serif jp", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .voice-title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.voice-container {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .voice-container {
    margin-top: 2.5rem;
  }
}

.voice__image {
  aspect-ratio: 200/180;
  max-width: 100%;
  width: 60%;
  min-width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .voice__image {
    width: 100%;
    min-width: none;
  }
}

.voice__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .voice__image01 {
    aspect-ratio: 540/426;
    width: 33.75rem;
  }
}

.voice__image02 {
  z-index: 1;
  margin-top: -5.875rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .voice__image02 {
    margin-top: -19.4375rem;
    aspect-ratio: 700/415;
    width: 43.75rem;
  }
}

.voice-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 2.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .voice-text {
    margin-top: 3rem;
  }
}

.contact {
  background-image: url(../images/Rectangle\ 50.jpg);
  background-size: cover;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .contact {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
}

.contact__inner {
  text-align: center;
}

.contact-text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .contact-text {
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }
}

.contact-text span {
  font-size: 1.5rem;
  line-height: 1.6666666667;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-text span {
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}

.emphasis {
  color: #f37500;
}

.contact__btn {
  margin-top: 2.5rem;
  text-align: center;
}

/*モーダルウィンドウ*/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 10000;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__container {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10001;
  background-color: #fff;
  border-radius: 10px;
  max-width: 100%;
  width: 90%;
  padding: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .modal__container {
    padding: 5rem 6.25rem;
    width: 43.75rem;
  }
}

.modal__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3333333333;
}

.modal__close {
  position: relative;
}

.modal__close:before {
  position: absolute;
  content: "✕";
  top: -7.5rem;
  left: 40vw;
  color: #fff;
  width: 3.125rem;
  height: 3.125rem;
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .modal__close:before {
    top: -9.375rem;
    left: 28.125rem;
  }
}

@-webkit-keyframes ModalfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes ModalfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes ModalfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes ModalfadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.modal[aria-hidden=false] .modal__container,
.modal[aria-hidden=false] .modal__overlay {
  -webkit-animation: ModalfadeIn 0.5s;
          animation: ModalfadeIn 0.5s;
}

.modal[aria-hidden=true] .modal__container,
.modal[aria-hidden=true] .modal__overlay {
  -webkit-animation: ModalfadeOut 0.5s;
          animation: ModalfadeOut 0.5s;
}

.modal__container,
.modal__overlay {
  will-change: transform;
}

.contact-form__item {
  margin-top: 2.5rem;
  text-align: left;
}

.contact-form__item input {
  border: 1px solid #202020;
  width: 100%;
  margin-top: 1rem;
  padding: 0.625rem 1rem;
}

.contact-form__label {
  font-size: 1.25rem;
  line-height: 1.2;
}

.contact-form__btn {
  margin-top: 5rem;
}

.qa-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .qa-items {
    gap: 0.5rem;
  }
}

.qa-item {
  text-align: left;
}

.js-qa-container {
  -webkit-animation: fadeIn 0.5s ease infinite;
          animation: fadeIn 0.5s ease infinite;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.qa-item__head {
  background-color: #F7F6F2;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .qa-item__head {
    padding: 1.625rem 3.625rem;
  }
}

.qa-container__text,
.qa-item__text {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .qa-container__text,
  .qa-item__text {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.qa-item__text {
  position: relative;
  padding-left: 1.375rem;
  font-weight: 400;
}

.qa-item__text::before {
  content: "Q";
  position: absolute;
  width: 0.9375rem;
  height: 1.5rem;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .qa-item__text::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

/*アコーディオン*/
.qa-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}

/* アコーディオンが開いた時のスタイル */
.qa-item[open]:not([data-accordion-before-close]) .qa-item__icon::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*アイコンバーのスタイル*/
.qa-item__icon::before,
.qa-item__icon::after {
  background-color: #000;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  width: 1.25rem;
  top: 0.75rem;
}

.qa-item__icon::before {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.qa-item__icon::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.qa-container {
  overflow: hidden;
  padding: 1.5rem 2.375rem;
}
@media screen and (min-width: 768px) {
  .qa-container {
    padding: 2.875rem 4.875rem 2.5rem;
  }
}

.qa-container__text {
  text-align: left;
  background: #fff;
}

summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

/*フローティング*/
.floating {
  position: fixed;
  bottom: 0;
  z-index: 10;
  width: 95%;
}
@media screen and (min-width: 768px) {
  .floating {
    width: 6.25rem;
    bottom: 9.375rem;
    right: 0;
  }
}

.floating__link {
  text-align: center;
  height: 4.375rem;
  border-bottom: 10px solid #796a64;
  background-color: #fff;
  border-radius: 0px 20px 0px 0px;
  color: #796a64;
  font-size: 1.25rem;
  line-height: 1.2;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
@media screen and (min-width: 768px) {
  .floating__link {
    position: relative;
    margin-left: auto;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    color: #fff;
    border-bottom: none;
    border-right: 5px solid #B9A69E;
    background: linear-gradient(184.53deg, #FDAC61 0.6%, #C4491B 99.38%);
    -webkit-box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
            box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px 0px 0px 20px;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    letter-spacing: 0.2em;
    width: 6.25rem;
    height: 21rem;
    z-index: 10;
  }
}

.floating__link:hover {
  opacity: 1;
}

/*ボタンのhover後の背景色*/
@media screen and (min-width: 768px) {
  .floating__link::before {
    background: linear-gradient(184.53deg, #A48F87 0.6%, #3F322E 99.38%);
    border-right: 5px solid #B9A69E;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 20px 0px 0px 20px;
    width: 6.25rem;
    height: 21rem;
    z-index: -1;
  }
}

.floating__link span {
  position: relative;
  padding-left: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .floating__link span {
    padding-left: 0;
    padding-top: 3.5rem;
  }
}

.floating__link span::before {
  content: "";
  position: absolute;
  background-image: url(../images/mail1.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.1875rem;
  height: 2.1875rem;
  top: 40%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .floating__link span::before {
    background-image: url(../images/mailwhite.svg);
    width: 3rem;
    height: 3rem;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  .floating__link:hover::before {
    opacity: 0;
  }
}

/*ページトップへ*/
.pagetop {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  z-index: 99;
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 3.125rem;
  }
}

.pagetop__link {
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

/*ローディング*/
.opening {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
}

.opening__logo {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .opening__logo {
    width: 100%;
    max-width: 25rem;
  }
}

.footer {
  background-color: #796a64;
  padding-block: 5rem;
}

.section-footer {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .section-footer {
    margin-top: 11.25rem;
  }
}

.footer__logo {
  width: 8.125rem;
  max-width: 100%;
}

.footer__container {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.company {
  font-style: "noto sans jp", sans-serif;
  width: 12.5625rem;
  max-width: 100%;
}

.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.footer__nav {
  margin-top: 1.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 0;
    -ms-grid-columns: 1fr 2.5rem 1fr 2.5rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 2.5rem;
       -moz-column-gap: 2.5rem;
            column-gap: 2.5rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}

.footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.footer__items:not(:first-child) {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer__items:not(:first-child) {
    margin-top: 0;
  }
}

.footer__nav-item {
  text-align: left;
  font-family: "noto sans jp", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.footer__nav-item a {
  color: #fff;
}

.footer__copy {
  color: #fff;
  font-family: "noto sans jp", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 5rem;
  }
}