@charset "UTF-8";

/* common parts
==================================================================  */
.fn-zgn {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.fn-ns {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-style: normal;
}
/* ttl
---------------------------------------------------------------- */
/* section ttl */
.ttl-sec {
  position: relative;
  text-align: center;
  line-height: 1;
  color: var(--cl-main);
  margin-bottom: 50px;
}
.ttl-sec span {
  display: block;
}
.ttl-sec .fn-zgn {
  font-size: 1.7rem;
  padding-bottom: 0.8em;
}
.ttl-sec .fn-ns {
  font-size: 4.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 0.6em;
}
.ttl-sec::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background-color: var(--cl-accent);
}
/* bg ttl */
.ttl-bg {
  position: absolute;
  font-size: 15.3rem;
  font-weight: 600;
  font-feature-settings: "palt";
  line-height: 0.65;
  letter-spacing: 0.15em;
  color: var(--white);
  opacity: 0.4;
}
.top-text {
  font-weight: 400;
  margin-top: -20px;
}
/* ttl-icon */
.ttl-icon {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;

  padding: 0.6em;
  margin-bottom: 60px;
}
.ttl-icon span {
  display: inline-block;
  margin-right: 0.2em;
  width: 32px;
}
.ttl-icon span img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .ttl-bg {
    font-size: 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .ttl-sec {
    margin-bottom: 40px;
  }
  .ttl-sec .fn-ns {
    font-size: 3.6rem;
  }
  .ttl-icon {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .ttl-bg {
    font-size: 15vw;
  }
}
@media only screen and (max-width: 599px) {
  .ttl-sec .fn-ns {
    font-size: 3.2rem;
  }
  .ttl-sec .fn-zgn {
    padding-bottom: 0.5em;
  }
}

/* btn
---------------------------------------------------------------- */
/* base */
.btn {
  display: inline-block;
  position: relative;

  font-size: 1.6rem;
  line-height: 1;
  color: var(--white);

  padding: 1em 3em;

  text-align: center;
  background-color: var(--cl-accent);
  border: 1.5px solid var(--cl-accent);

  transition: all 0.3s ease;
  cursor: pointer;
}
/* next */
.btn-next::after {
  content: "";
  width: 0.6em;
  height: 0.6em;
  position: absolute;
  top: 1px;
  bottom: 0;
  right: 20px;
  margin: auto;

  vertical-align: middle;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.btn:hover {
  opacity: 1;
  background-color: var(--white);
  color: var(--cl-accent);
}
/* close-icon */
.close-icon {
  display: block;
  width: 50px; /*枠の大きさ*/
  height: 50px; /*枠の大きさ*/
  position: relative;
  border-radius: 100px;
}
.close-icon::before,
.close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 35px; /* 棒の高さ */
  background: var(--cl-accent);
}
.close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* arrow */
.arrow {
  position: relative;
}
.arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: -1em;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--cl-main);
  border-right: 3px solid var(--cl-main);
  transform: translate(-50%) rotate(45deg);
}

/* header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 95px;
  padding: 20px 30px;
  background-color: var(--white);
  border-bottom: 5px solid var(--cl-accent);
}
.header-logo img {
  width: auto;
  height: 54px;
}
.header-info {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
/* nav */
.menu-list {
  gap: 0 2em;
  /* burger animation */
  .hamburger-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 9999;
    background: rgb(0, 90, 157);
    background: linear-gradient(
      45deg,
      rgba(0, 90, 157, 1) 0%,
      rgba(0, 128, 207, 1) 100%
    );
  }
  .bar {
    position: absolute;
    width: 50%;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    transition: 0.4s ease;
  }
  .bar--top {
    top: 26%;
  }
  .bar--middle {
    top: 46%;
  }
  .bar--bottom {
    top: 66%;
  }
  .js-close .bar--top {
    top: 48%;
    transform: translateX(-50%) rotate(45deg);
  }
  .js-close .bar--middle {
    opacity: 0;
    transition: 0.1s;
  }
  .js-close .bar--bottom {
    top: 48%;
    transform: translateX(-50%) rotate(-45deg);
  }
  /* burger inner */
  .burger-nav {
    position: fixed;
    z-index: 99;
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    text-align: center;
    background-color: var(--white);
    padding: 120px 2em;

    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: 0.5s;
  }

  .burger-nav ul li a {
    display: block;
    padding: 1em;
    font-size: 1.5rem;
  }
  .burger-nav ul li a span {
    font-size: 1.8rem;
  }
  .burger-mask {
    z-index: 90;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
  }
  /* active */
  .burger-nav.js-active {
    right: 0;
  }
  .burger-mask.js-active {
    display: block;
  }
}
.menu-list a {
  position: relative;
  padding: 0.6em 0;
  height: 100%;
}
.menu-list a:hover {
  opacity: 1;
}
.menu-list a::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--cl-accent);
  bottom: 0;
  left: 0;

  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s;
}
.menu-list a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
/* burger animation */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 9999;
  background-color: var(--cl-accent);
}
.bar {
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  transition: 0.4s ease;
}
.bar--top {
  top: 26%;
}
.bar--middle {
  top: 46%;
}
.bar--bottom {
  top: 66%;
}
.js-close .bar--top {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.js-close .bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.js-close .bar--bottom {
  top: 48%;
  transform: translateX(-50%) rotate(-45deg);
}
/* burger inner */
.burger-nav {
  position: fixed;
  z-index: 99;
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  text-align: center;
  background-color: var(--white);
  padding: 120px 2em;

  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.5s;
}

.burger-nav ul li a {
  display: block;
  padding: 1em;
  font-size: 1.6rem;
  border-bottom: 1px solid #e7dcd1;
}
.burger-nav ul li a span {
  font-size: 1.8rem;
}
.burger-mask {
  z-index: 90;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
/* active */
.burger-nav.js-active {
  right: 0;
}
.burger-mask.js-active {
  display: block;
}
@media screen and (max-width: 1280px) {
  .menu-list {
    gap: 1.5em;
  }
  .menu-list a {
    font-size: 1.5rem;
  }
  .header-logo img {
    height: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    position: static;
    padding: 10px 15px;
    height: 60px;
  }
  .header-logo img {
    height: 40px;
  }
  .header-info {
    display: none;
  }
  .hamburger-menu,
  .drawer__bg {
    display: block;
  }
}
@media screen and (max-width: 599px) {
  .burger-nav {
    width: 80vw;
    right: -100vw;
    padding: 80px 1.5em 0;
  }
}

/* entry
---------------------------------------------------------------- */
.entry-wrap {
  position: fixed;
  padding-right: 10px;
  bottom: 25%;
  right: 0;
  z-index: 50;
  transform: translateX(140%);
  transition: 0.4s ease;

  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.entry-wrap.is-show {
  transform: translateX(0);
}
.entry-inner {
  position: relative;
  color: var(--white);
  background-color: var(--cl-main);
  border-radius: 30px 0 30px 0;
  width: 100px;
  height: 80px;
}
.entry-jp {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0;
}
.entry-en {
  position: absolute;
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0.3;
  left: 0;
  bottom: 0;
}
.entry-btn-02 .entry-inner {
  background-color: var(--cl-accent);
}
.entry-btn-03 .entry-inner {
  background-color: #d9772f;
}
@media only screen and (max-width: 767px) {
  .entry-wrap {
    right: 0;
    right: 0;
    top: unset;
    bottom: 0;
    padding: 0;
    transform: translate(0%, 120%);
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .entry-wrap.is-show {
    transform: translate(0%, 0%);
  }
  .entry-btn + .entry-btn {
    margin-top: 0;
  }
  .entry-btn {
    flex: 1;
  }
  .entry-inner {
    width: 100%;
    height: 60px;
    padding: 0.5em;
    border-radius: 0;
  }
  .entry-jp {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 599px) {
  .entry-btn {
    font-size: 1.4rem;
  }
}
/* mv
---------------------------------------------------------------- */
.mv {
  margin-top: 95px;
  width: 100%;
  height: 0;

  padding-top: 50.7%;
  background-image: url(../img/mv/mv_pc.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

@media only screen and (max-width: 1024px) {
  .mv {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .mv {
    padding-top: 134%;
    background-image: url(../img/mv/mv_sp.jpg);
  }
}
/* message
---------------------------------------------------------------- */
/* bg */
#message {
  position: relative;
}
#message::before {
  content: "";
  display: block;

  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;

  width: 100%;
  height: 100vh;

  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../img/message/bg.jpg");
  background-size: cover;
}
/* deco */
.message-bg {
  position: relative;
}
.message-bg::before {
  content: "";
  display: block;
  width: min(254px, 20vw);
  height: 100%;

  background: url("../img/message/01.png") center top no-repeat;
  background-size: 100%;

  position: absolute;
  z-index: 1;
  top: 12%;
  right: calc(50% + 338px);
}
.message-bg::after {
  content: "";
  display: block;
  width: min(254px, 20vw);
  height: 100%;

  background: url("../img/message/04.png") center bottom no-repeat;
  background-size: 100%;

  position: absolute;
  z-index: 1;
  bottom: 8%;
  left: calc(50% + 348px);
}

.message-wrap {
  position: relative;
}
.message-wrap::before {
  content: "";
  display: block;
  width: min(173px, 16vw);
  height: 100%;

  background: url("../img/message/02.png") center top no-repeat;
  background-size: 100%;

  position: absolute;
  top: 12%;
  left: calc(50% + 340px);
}
.message-wrap::after {
  content: "";
  display: block;
  width: min(173px, 16vw);
  height: 100%;

  background: url("../img/message/03.png") center bottom no-repeat;
  background-size: 100%;

  position: absolute;
  bottom: 5%;
  right: calc(50% + 340px);
}
/* content */
.message-wrap {
  background-color: var(--white);
  width: 790px;
  max-width: 100%;
  margin: 0 auto;

  padding: 20px;
}
.message-line {
  border: 1px solid #dfccbb;
  padding: 40px 1em 60px;
}
.message-text {
  margin-top: -10px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.08em;
  padding: 0 0.5em;
}
.message-text p + p {
  padding-top: 1em;
}
@media only screen and (max-width: 1024px) {
  .message-bg::before {
    right: calc(50% + 250px);
  }
  .message-bg::after {
    left: calc(50% + 250px);
  }
  .message-wrap::before {
    left: calc(50% + 280px);
  }
  .message-wrap::after {
    right: calc(50% + 280px);
  }
}
@media only screen and (max-width: 767px) {
  .message-wrap::before,
  .message-wrap::after {
    display: none;
  }
  .message-bg::before {
    width: min(180px, 30vw);
    background: url("../img/message/05.png") right top no-repeat;
    background-size: 100%;
    top: 4%;
    right: unset;
    left: 2%;
  }
  .message-bg::after {
    width: min(180px, 30vw);
    background: url("../img/message/06.png") right bottom no-repeat;
    background-size: 100%;
    bottom: 2%;
    left: unset;
    right: 2%;
  }
  .message-text {
    line-height: 2;
  }
  .message-line {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 499px) {
  .message-wrap {
    padding: 10px;
  }
  .message-bg::after {
    bottom: 3%;
  }
  .message-text {
    line-height: 1.7;
    text-align: justify;
    letter-spacing: 0.05em;
  }
  .message-text span {
    display: inline;
  }
  .message-text br {
    display: none;
  }
}
@media only screen and (max-width: 399px) {
  .message-line {
    padding-bottom: 70px;
  }
}
/* brand
---------------------------------------------------------------- */
#brand {
  position: relative;
  background-color: #e7dcd1;
}
#brand .ttl-bg {
  bottom: 0.11em;
  left: 0;
  opacity: 1;
  color: #dfccbb;
}

/* tab-slider
---------------------------------------------------------------- */
.tab-slider-wrap {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  width: 100%;
  height: 100%;
}

/* タブ
  --------------------*/
.tab-wrap {
  width: 100%;
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 25px;
}
/* タブのデザイン */
.tab-item {
  position: relative;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  padding: 30px 10px;
  text-align: center;
  border-radius: 0 20px 0 20px;
}
.tab-item > div {
  width: 100%;
}
.tab-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(1, 30, 106, 0.7);
}
.tab-ttl {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--white);
  width: 100%;
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  padding: 0.6em 0;
}
.tab-img {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.tab-item:hover .tab-img {
  transform: scale(1.1);
}
/* active・ホバーの時 */
.swiper-thumb .swiper-slide-thumb-active.tab-item::before,
.tab-item:hover::before {
  transition: all 0.3s ease;
  background-color: rgb(213, 59, 23, 0.7);
}

/* コンテンツ
  --------------------*/
.swiper-main-parent {
  position: relative;
}
.swiper-main {
  height: auto;
  width: calc(100% - 100px);
}
.main-item {
  padding: 0 10px 10px 0;
}
.main-item-inner-wrap {
  position: relative;
  background-color: var(--white);
  border-radius: 0 var(--box-br) 0 var(--box-br);
  border: 1.5px solid #dfccbb;
  box-shadow: 10px 10px 0px 0 #dfccbb;
  padding: 50px;
}
.main-item-inner {
  gap: 2em;
}
/* img */
.main-item-img {
  position: relative;
  width: 100%;
  flex-basis: 42%;
}
.main-item-img .brand-num {
  position: absolute;
  top: -4%;
  left: -6%;
  width: max(30%, 70px);
}
/* text */
.main-item-content {
  flex: 1;
}
.main-item-content-ttl {
  width: 100%;
  font-size: 2.3rem;
  line-height: 1.2;
  color: var(--cl-accent);
  padding: 0.5em 0.5em 0.6em;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  margin-bottom: 20px;
}
.main-item-content-text {
  font-weight: 400;
}
.main-item-content .btn {
  margin-top: 30px;
}
/* pagenation
--------------------*/
/* 前・次ボタンの縦位置調整（スライドの高さの中央に合わせる） */
.swiper-button-prev,
.swiper-button-next {
  width: auto;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
/* 通常の前へ・次へボタンの画像を非表示に変更 */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}
/* ボタンのデザイン */
.swiper-main-parent .arrow {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: 1.5px solid var(--cl-accent);
  background-color: var(--white);
  transition: all 0.3s ease;
}
.swiper-main-parent .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 50%;
  width: 0.6em;
  height: 0.6em;
  border-top: 1.5px solid var(--cl-accent);
  border-right: 1.5px solid var(--cl-accent);
  transform: translate(30%, -50%) rotate(45deg);
}
.swiper-main-parent .swiper-button-prev .arrow {
  transform: scale(-1, 1);
}
.swiper-main-parent .arrow:hover {
  background-color: var(--cl-accent);
}
.swiper-main-parent .arrow:hover::before {
  border-color: var(--white);
}
@media only screen and (max-width: 1024px) {
  .tab-wrap {
    height: 250px;
  }
  .tab-ttl span {
    display: block;
  }
  .main-item-inner-wrap {
    padding: 40px 30px;
  }
  .main-item-inner {
    gap: 30px 1.5em;
  }
  .main-item-img .brand-num {
    top: -2%;
    left: -4%;
  }
}
@media only screen and (max-width: 767px) {
  .tab-slider-wrap {
    flex-direction: column;
  }
  .tab-wrap {
    margin: 0 0 30px 0;
    /* 高さ指定 */
    height: 300px;
  }
  .tab-ttl {
    font-size: 1.5rem;
    padding: 0.4em 0;
  }
  .main-item-inner {
    flex-direction: column;
  }
  .main-item-inner-wrap {
    padding: 8%;
  }
  .main-item-content-ttl {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .main-item-btn {
    text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .swiper-main {
    height: auto;
    width: 400px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 499px) {
  .main-item-content-text {
    font-size: 1.5rem;
  }
}

/* search
---------------------------------------------------------------- */
#search {
  background-size: auto auto;
  background-color: #eaeaea;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 190px,
    rgba(1, 30, 106, 0.1) 190px,
    rgba(1, 30, 106, 0.1) 191.5px
  );
}
#search .inner {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  #search {
    background-image: none;
  }
}

/* data
---------------------------------------------------------------- */
#data {
  background-color: #f4ebe0;
  position: relative;
  z-index: 0;
}
#data .ttl-bg {
  color: #515151;
  opacity: 0.1;
  bottom: 0.11em;
  left: 0;
  z-index: -1;
}
/* タブ切り替え
--------------------*/
.data-tab-wrap {
  position: relative;
  background-color: #ddcdb7;
  padding: 60px;
  border-radius: var(--btn-br);
  margin-bottom: 20px;
}
/* deco */
.data-tab-wrap::before {
  content: "";
  display: block;
  width: min(281px, calc((281 / 1400) * 100vw));
  height: 100%;

  background: url("../img/data/bg_1.png") right top no-repeat;
  background-size: 100%;

  position: absolute;
  z-index: -1;
  top: max(-100px, calc((-100 / 1400) * 100vw));
  right: 90%;
}
.data-tab-wrap::after {
  content: "";
  display: block;
  width: min(296px, calc((296 / 1400) * 100vw));
  height: 100%;

  background: url("../img/data/bg_2.png") left bottom no-repeat;
  background-size: 100%;

  position: absolute;
  z-index: 0;
  bottom: max(70px, calc((70 / 1400) * 100vw));
  left: 86%;
}
/* タブ */
.data-tab-item {
  position: relative;
  flex: 1;

  width: 100%;
  padding: 0.5em;
  margin-bottom: 50px;
  background-color: var(--white);
  border: 2px solid var(--cl-accent);

  font-size: 2.3rem;
  color: var(--cl-accent);
  text-align: center;

  cursor: pointer;
  transition: 0.3s ease;
}

/* タブをクリックした時 ホバーした時 */
.data-tab-item:hover,
.data-tab-item.is-active {
  color: var(--white);
  background-color: var(--cl-accent);
}
.data-tab-arrow {
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
  bottom: -20.5px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: var(--cl-accent) transparent transparent transparent;
}

.data-tab-item:hover .data-tab-arrow,
.data-tab-item.is-active .data-tab-arrow {
  opacity: 1;
}
/* パネル */
.panel-item {
  display: none;
  width: 100%;
}
.panel-item.is-active {
  display: grid;
  gap: 40px;
  animation: panel-show 0.5s ease forwards;
}
.panel-content {
  overflow: hidden;
  border-radius: 0 0 var(--box-br) var(--box-br);
  background-color: var(--white);
}
.panel-hotel {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
}
.panel-food {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
}

.panel-hotel .panel-content:nth-of-type(1),
.panel-food .panel-content:nth-of-type(1) {
  grid-area: 1 / 1 / 2 / 3;
}
.panel-hotel .panel-content:nth-of-type(2),
.panel-food .panel-content:nth-of-type(2) {
  grid-area: 1 / 3 / 2 / 5;
}
.panel-hotel .panel-content:nth-of-type(3) {
  grid-area: 2 / 1 / 3 / 3;
}
.panel-hotel .panel-content:nth-of-type(4) {
  grid-area: 2 / 3 / 3 / 5;
}
.panel-hotel .panel-content:nth-of-type(5) {
  grid-area: 3 / 2 / 4 / 4;
}
.panel-food .panel-content:last-of-type {
  grid-area: 2 / 2 / 3 / 4;
}

.panel-ttl {
  font-size: 1.7rem;
  color: var(--cl-main);
  padding: 0.5em;
  background-color: #bdc3d2;
}
.panel-con-btm {
  background-color: var(--white);
  padding: 1em 2em 2em;
}
.panel-img {
  width: 100%;
}
.panel-text {
  font-weight: 400;
  padding-top: 1em;
}
/* パネル切り替えのアニメーション */
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 1024px) {
  .data-tab-wrap {
    padding: 30px;
  }
  .panel-item.is-active {
    gap: 30px;
  }
  .panel-con-btm {
    padding: 1em 1em 2em;
  }
}
@media only screen and (max-width: 767px) {
  /* deco */
  .data-tab-wrap::before {
    width: max(160px, 30vw);
    top: -4%;
    right: 80%;
  }
  .data-tab-wrap::after {
    width: max(140px, 20vw);
    bottom: -3%;
    left: 80%;
  }
  /* tab */
  .data-tab-item {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding: 0.3em;
  }
  .panel-item.is-active {
    display: block;
  }
  .data-tab-arrow {
    bottom: -15.5px;
    border-width: 15px 10px 0 10px;
  }
  .panel-item {
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
  }
  .panel-content + .panel-content {
    margin-top: 20px;
  }
  .panel-img {
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 599px) {
  .data-tab-wrap::after {
    left: 80%;
  }
}

/* search
---------------------------------------------------------------- */
.search-wrap {
  background-color: var(--white);
  border: 4px solid var(--cl-main);
  border-radius: var(--box-br);
  margin-top: 60px;
  padding: 3em;
}
.search-building {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 2px solid #afafaf;
}
#search .ttl-icon {
  position: relative;
  letter-spacing: 0.05em;
  color: var(--white);
  width: fit-content;
  background-color: var(--cl-main);
  border-radius: 100px;
  margin: 0 auto 60px;
  padding: 0.4em 2em 0.5em;
}
#search .ttl-icon span {
  margin-right: 0.4em;
  width: 27px;
}
.search-ttl-arrow {
  content: "";
  position: absolute;
  display: block;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 0 !important;
  height: 0;
  border-style: solid;
  border-width: 24px 15px 0 15px;
  border-color: var(--cl-main) transparent transparent transparent;
}
/* btn */
.search-btn-list {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
.search-btn-left,
.search-btn-right {
  flex-basis: 260px;
}
.search-btn-img {
  flex: 1;
}
.search-other .search-btn-left {
  align-self: flex-end;
}

.search-other .search-btn-img {
  align-self: center;
}

.search-other .search-btn-right {
  align-self: flex-start;
}
.search-btn-item {
  font-size: 1.5rem;
  background-color: var(--white);
}
.search-btn-item:not(:first-of-type) {
  margin-top: 40px;
}
.search-btn-left .search-btn-item {
  padding-right: 1.5em;
  border-right: 5px solid var(--cl-accent);
}
.search-btn-right .search-btn-item {
  padding-left: 1.5em;
  border-left: 5px solid var(--cl-accent);
}
.search-btn-ttl {
  line-height: 1.4;
  padding: 0.4em 0.4em 0.5em;
  border: 1px solid var(--cl-accent);
  border-radius: 100px;
  gap: 10px;
}
.search-btn-floor {
  position: relative;
  z-index: 0;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1;
}
.search-btn-floor::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 56%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: var(--cl-accent);
  border-radius: 100px;
}
.search-btn-left .search-btn-item:last-of-type .search-btn-ttl {
  align-items: flex-start;
  text-align: left;
  gap: 15px;
}
.search-btn-left .search-btn-item:last-of-type .search-btn-floor {
  margin-top: 0.4em;
}
.search-btn-left .search-btn-item:last-of-type .search-btn-floor::before,
.search-btn-sp .btn32-item:nth-of-type(4) .search-btn-floor::before {
  width: calc(100% + 1em);
}
.search-btn-thumb {
  margin: 15px 0;
}
.search-btn-thumb img {
  width: 104px;
}
.search-btn .btn {
  width: 100%;
  padding: 0.6em 1em 0.7em;
}
.search-btn + .search-btn {
  margin-top: 10px;
}
.search-btn-day .btn {
  background-color: #d7c4a6;
  border-color: #d7c4a6;
  color: var(--black);
}
.search-btn-day .btn:hover {
  background-color: var(--white);
}
.d-128 {
  display: none;
}

/* btn responsive */
.search-btn-sp {
  display: none;
}

@media only screen and (max-width: 1279px) {
  .search-wrap {
    padding: 3em 1.5em;
  }
  .search-btn-item:not(:first-of-type) {
    margin-top: 30px;
  }
  .search-btn-left,
  .search-btn-right {
    flex-basis: 220px;
  }
  .search-btn-right {
    padding-bottom: 45px;
  }
  .search-btn-left .search-btn-item {
    padding-right: 1em;
  }
  .search-btn-right .search-btn-item {
    padding-left: 1em;
  }
  .search-btn .btn {
    font-size: 1.5rem;
  }
  .d-128 {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .search-building .search-btn-left,
  .search-building .search-btn-right {
    display: none;
  }
  .search-building .search-btn-list {
    flex-direction: column;
  }
  .search-btn-list {
    row-gap: 40px;
  }
  .search-btn-img {
    order: 1;
    text-align: center;
  }
  .search-btn-img img {
    width: 200px;
  }
  .search-btn-left {
    order: 2;
  }
  .search-btn-right {
    order: 3;
  }
  .search-btn-left,
  .search-btn-right {
    display: flex;
    flex-basis: 100%;
    justify-content: center;
    gap: 20px;
    width: 100%;
  }
  .search-btn-item:not(:first-of-type) {
    margin: 0;
  }
  .search-btn-left .search-btn-item,
  .search-btn-right .search-btn-item {
    border: none;
    padding: 0;
  }
  .search-btn-thumb {
    height: 80px;
  }
  /* btn32 */
  .btn32-wrap {
    margin-top: 40px;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 40px 20px;
  }
  .btn32-item:nth-of-type(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .btn32-item:nth-of-type(2) {
    grid-area: 1 / 3 / 2 / 5;
  }
  .btn32-item:nth-of-type(3) {
    grid-area: 1 / 5 / 2 / 7;
  }
  .btn32-item:nth-of-type(4) {
    grid-area: 2 / 2 / 3 / 4;
  }
  .btn32-item:nth-of-type(5) {
    grid-area: 2 / 4 / 3 / 6;
  }

  .search-mt-1 {
    padding-top: 28px;
    height: 122px;
  }
  .search-mt-2 {
    padding-top: 20px;
    height: 101px;
  }

  /* search-other */
  .search-other .search-btn-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 12px;
  }
  .search-other .search-btn-img {
    flex-basis: 100%;
  }
  .search-other .search-btn-left,
  .search-other .search-btn-right {
    flex-basis: calc(50% - 10px);
  }
  .search-other .search-btn-left .search-btn-item,
  .search-other .search-btn-right .search-btn-item {
    flex-basis: 100%;
  }
  .search-btn-right {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .search-wrap {
    margin-top: 40px;
  }
  #search .ttl-icon {
    padding: 0.6em 1em 0.7em;
    margin-bottom: 40px;
  }
  #search .ttl-icon span {
    width: 20px;
  }
  .search-ttl-arrow {
    bottom: -20px;
  }
  .search-building {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .search-btn-left .search-btn-item,
  .search-btn-right .search-btn-item {
    flex-basis: calc(50% - 10px);
    width: 100%;
  }
  .search-btn-right {
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .search-btn-item:last-of-type .search-mt-2 {
    padding-top: 0;
    height: 80px;
  }
  /* btn32 */
  .btn32-wrap {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
  }
  .btn32-item:nth-of-type(1) {
    grid-area: 1 / 1 / 2 / 3;
  }
  .btn32-item:nth-of-type(2) {
    grid-area: 1 / 3 / 2 / 5;
  }
  .btn32-item:nth-of-type(3) {
    grid-area: 2 / 1 / 3 / 3;
  }
  .btn32-item:nth-of-type(4) {
    grid-area: 2 / 3 / 3 / 5;
  }
  .btn32-item:nth-of-type(5) {
    grid-area: 3 / 2 / 4 / 4;
  }
  .btn32-item:nth-of-type(3) .search-mt-2 {
    padding-top: 28px;
    height: 122px;
  }
  .btn32-item:last-of-type .search-mt-1 {
    padding: 0;
    height: 80px;
  }
}
@media only screen and (max-width: 599px) {
  #search .inner {
    padding-left: 3%;
    padding-right: 3%;
  }
  #search .top-text {
    padding: 0 3vw;
  }
  #search .top-text span:first-of-type {
    display: inline;
  }
  .search-wrap {
    padding: 2em 1em;
    border-width: 2px;
  }
  /* common */
  .search-btn-left,
  .search-btn-right {
    gap: 40px 12px;
  }
  .search-btn-left .search-btn-item,
  .search-btn-right .search-btn-item {
    flex-basis: calc(50% - 8px);
  }
  .search-btn .btn {
    padding: 0.6em 0.2em 0.7em;
    font-size: 1.4rem;
  }
  .search-btn .btn-next::after {
    display: none;
  }
  .search-btn-ttl {
    font-size: 1.4rem;
    line-height: 1.2;
    padding: 0.7em 0.2em 0.4em;
    gap: 6px;
    flex-direction: column;
  }
  .search-btn-sp .search-btn-floor {
    margin-top: -1.6em;
  }
  /* btn-32 */
  .btn32-wrap {
    gap: 40px 12px;
  }
  .search-mt-2 {
    padding: 0;
    height: 80px;
  }
  .btn32-item:nth-of-type(3) .search-mt-2 {
    padding-top: 6px;
    height: 97px;
  }
  /* other */
  .search-other .search-btn-ttl {
    padding: 0.4em 0.4em 0.5em;
  }
  .search-btn-left .search-btn-item:last-of-type .search-btn-ttl {
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* search - modal content
---------------------------------------------------------------- */
.search-modal-wrap .inner {
  padding: 3%;
}
.search-modal-content {
  background-color: #f4ebe0;
}
.modal-s-head {
  position: relative;
  height: 60px;
}
/* modal common */
.remodal-close-top {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: 0.3s ease;
}
.remodal-close-top:hover {
  opacity: 0.5;
}
.search-inner-3 .inner:first-of-type {
  padding-bottom: 0;
}
.search-inner-3 .inner:nth-of-type(2) {
  padding-top: 0;
  padding-bottom: 0;
}
.search-inner-3 .inner:nth-of-type(3) {
  padding-top: 0;
}
/* top */
.modal-s-top {
  position: relative;
  background-color: var(--white);
  padding: 60px 3vw;
  gap: 10px 40px;
}
.modal-s-top-img {
  width: 150px;
}
.modal-s-ttl {
  font-size: 4rem;
  line-height: 1.4;
  padding: 0 0.5em 0.2em;
  margin-bottom: 0.3em;
  border-bottom: 2px solid var(--black);
}
.modal-s-ttl-sub {
  font-size: 2.3rem;
  line-height: 1;
}
.modal-s-ttl .search-btn-floor {
  font-size: 2.8rem;
  margin-right: 0.6em;
}
.modal-s-ttl .search-btn-floor::before {
  width: 50px;
  height: 50px;
}
.modal-s-ttl .search-btn-floor-long.search-btn-floor::before {
  width: calc(100% + 0.5em);
}
/* timeline */
.modal-s-btm {
  width: calc(750px + 12%);
  max-width: 100%;
  padding: 60px 6%;
  margin: 0 auto;
}
.modal-timeline {
  position: relative;
  gap: 20px 0;
}
.modal-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 20.5px;
  width: 1.5px;
  height: calc(100% - 60px);
  background-color: var(--cl-accent);
}
.modal-tl-left {
  flex-basis: 160px;
  gap: 1em;
}
.modal-tl-time {
  position: relative;
  z-index: 0;
  font-size: 1.9rem;
  color: var(--cl-accent);
  line-height: 1;
  width: fit-content;
  width: 46px;
}
.modal-tl-time::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 56%;
  left: 46%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 1.5px solid currentColor;
  border-radius: 100px;
}
.modal-tl-left:not(:first-of-type) .modal-tl-time::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: -120%;
  left: 46%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--cl-accent);
  border-radius: 100px;
}
/* 時間なし */
.modal-tl-time-none.modal-timeline::before {
  height: calc(100% - 130px);
}
.modal-tl-time-none .modal-tl-left:last-of-type .modal-tl-time::before {
  background-color: #f4ebe0;
  border: none;
}
.modal-tl-time-none .modal-tl-left:last-of-type .modal-tl-time::after {
  display: none;
}
.modal-tl-ttl {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--cl-accent);
}
.modal-tl-right {
  flex-basis: calc(100% - 160px);
  background-color: var(--white);
  padding: 1.2em;
}
.search-modal-content .remodal-close-btm span {
  color: var(--cl-accent);
}
.modal-s-btm .btn {
  display: block;
  width: 100%;
  margin-top: 50px;
  font-size: 2.3rem;
  line-height: 1.4;
}
.modal-s-btm .btn-next::after {
  right: 40px;
}
@media only screen and (max-width: 1024px) {
  .modal-s-ttl {
    font-size: 3rem;
  }
  .modal-s-ttl .search-btn-floor {
    font-size: 2.4rem;
  }
  .modal-s-ttl .search-btn-floor::before {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  /* top */
  .modal-s-top {
    flex-direction: column;
    padding: 30px 6vw;
  }
  .modal-s-top-img {
    width: 120px;
  }
  .modal-s-ttl {
    font-size: 2.4rem;
  }
  .modal-s-ttl .search-btn-floor {
    font-size: 1.8rem;
    padding-bottom: 0.1em;
  }
  .modal-s-ttl .search-btn-floor::before {
    width: 30px;
    height: 30px;
  }
  .search-btn-floor::before {
    top: 52%;
  }
  .modal-s-ttl-sub {
    font-size: 2rem;
  }
  /* btm */
  .modal-s-btm {
    padding: 40px 6%;
  }
  .modal-s-btm .btn {
    margin-top: 40px;
    font-size: 1.8rem;
    padding: 0.8em 2em 0.8em 1em;
  }
  .modal-s-btm .btn-next::after {
    right: 20px;
  }
  .modal-tl-left {
    flex-basis: 120px;
    gap: 10px;
  }
  .modal-tl-time {
    font-size: 1.5rem;
    width: 37px;
  }
  .modal-tl-time::before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 56%;
    left: 46%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background-color: var(--white);
    border: 1.5px solid currentColor;
    border-radius: 100px;
  }
  .modal-tl-ttl {
    font-size: 1.3rem;
  }
  .modal-tl-right {
    flex-basis: calc(100% - 120px);
    background-color: var(--white);
    padding: 0.8em;
    font-size: 1.5rem;
  }
  .modal-timeline::before {
    left: 16px;
    height: calc(100% - 60px);
  }
  .modal-tl-text {
    font-size: 1.4rem;
  }
  .modal-tl-left:not(:first-of-type) .modal-tl-time::after {
    right: 45.5%;
  }
}
@media only screen and (max-width: 599px) {
  .modal-timeline {
    align-items: center;
    gap: 25px 0;
  }
  .modal-tl-left {
    gap: 10px;
  }
  .modal-tl-left:first-of-type {
    margin-top: -10px;
  }
}
@media only screen and (max-width: 399px) {
  .modal-timeline::before {
    top: 40px;
  }
  .modal-tl-23.modal-tl-time-none.modal-timeline::before {
    height: calc(90% - 130px);
  }
  .modal-timeline::before {
    height: calc(100% - 90px);
  }
}

/* interview
---------------------------------------------------------------- */
#interview {
  position: relative;
  background-color: var(--white);
}
#interview .ttl-bg {
  z-index: 0;
  color: var(--cl-accent);
  writing-mode: vertical-rl;
  opacity: 0.15;
  top: 0.4em;
  right: -2px;
}
/* ttl */
.modal-blue .ttl-icon {
  position: relative;
  color: var(--cl-main);
  background-color: #ebedf0;
  border: 2px solid #c6cdd8;
}
.modal-red .ttl-icon {
  position: relative;
  color: var(--cl-accent);
  background-color: #f8f5f1;
  border: 2px solid rgb(191, 148, 116, 0.2);
  margin-top: 80px;
}
/* modal btn */
.modal-btn-content {
  gap: 8%;
}
.modal-btn {
  display: block;
  flex: 1;
  position: relative;
  z-index: 0;
  background-color: #ebedf0;
  border-radius: 0 var(--box-br) 0 var(--box-br);
}
.modal-btn:hover .img-big img {
  transform: scale(1.05);
}
.modal-num {
  position: absolute;
  z-index: 1;
  top: -4%;
  left: -4%;
  width: max(17%, 60px);
}
.modal-btn-top {
  position: relative;
  border-top-right-radius: var(--box-br);
  overflow: hidden;
}
.modal-copy {
  position: absolute;
  bottom: 1em;
  left: 0;

  padding: 0.6em 0.8em;
  background-color: var(--white);
  color: var(--cl-main);
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
}
.modal-btn-btm {
  flex-direction: column;
  gap: 1em;
  padding: 1em 1.5em;
  color: var(--cl-main);
  font-weight: 400;
}
.modal-label {
  flex-wrap: wrap;
  gap: 0.5em;
  font-size: 2.1rem;
  line-height: 1;
}
.modal-label span {
  display: block;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0.3em 1.2em 0.4em;
  color: var(--white);
  background-color: var(--cl-main);
  border-radius: 100px;
}
.modal-year {
  font-size: 1.5rem;
  padding-top: 0.5em;
}
.modaltop-btn {
  position: relative;
  font-size: 1.6rem;
  text-align: right;
  line-height: 1;
  color: var(--cl-main);
  padding-right: 2.5em;
}
.modaltop-btn::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("../img/interview/arrow.svg") no-repeat;
  background-size: 100%;
  position: absolute;
  top: 48%;
  right: 0.4em;
  transform: translate(-50%, -40%);
  transition: 0.4s ease;
}
.modal-btn:hover .modaltop-btn::after {
  right: 0;
}
/* modal content */
.modal-content .inner {
  text-align: left;
  overflow: hidden;
}
.modal-con-top {
  position: relative;
  color: var(--cl-main);
}
.modal-con-top::before {
  content: "";
  display: block;
  width: min(308px, calc((308 / 1400) * 100vw));
  height: 100%;

  background: url("../img/interview/deco.png") center top no-repeat;
  background-size: 100%;

  position: absolute;
  top: max(180px, calc((180 / 1600) * 100vw));
  left: 89%;
}
.modal-con-img {
  flex-basis: 50%;
  border-top-right-radius: var(--box-br);
  overflow: hidden;
}
.modal-con-img img {
  object-fit: cover;
  object-position: right top;
  width: 100%;
  height: 100%;
}
.modal-con-text {
  flex-basis: 50%;
  border-top-left-radius: var(--box-br);
  background-color: #ebedf0;
  padding: 3em;
}
.modal-con-num {
  position: static;
  width: 50px;
}
.modal-con-copy {
  position: static;
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: var(--cl-main);
  border-bottom: 1.5px solid currentColor;
  background-color: unset;
  padding-bottom: 0.4em;
  margin: 0.4em 0 0.6em;
}
/* q&a */
.qa-list {
  margin-top: 50px;
}
.qa-list dt {
  position: relative;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--cl-main);
  padding: 0.6em 0.6em 0.6em 3em;

  background-color: #ede3d8;
}
.qa-list dt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1em;
  display: block;
  transform: translateY(-50%);

  width: 28px;
  height: 28px;
  background: url(../img/interview/icon.svg) no-repeat center;
  background-size: 100%;
}
.qa-list dt:not(:first-of-type) {
  margin-top: 2em;
}
.qa-list dd {
  font-weight: 400;
  margin-top: 1em;
  color: var(--cl-main);
}
/* close-btn */
.remodal-close-btm {
  margin: 60px auto 0;
  display: block;
  cursor: pointer;
  transition: 0.3s ease;
}
.remodal-close-btm:hover {
  opacity: 0.5;
}
.remodal-close-btm span {
  display: inline-block;
  font-size: 1.7rem;
  text-align: center;
  color: var(--cl-main);
  padding: 0.6em;
  border-top: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  width: 140px;
}
/* red */
.modal-red .modal-btn,
.modal-red .modal-con-text {
  background-color: #f8f5f1;
}
.modal-red .modal-copy,
.modal-red .modal-con-copy {
  color: var(--cl-accent);
}
.modal-red .modal-label span {
  background-color: var(--cl-accent);
}
@media only screen and (max-width: 1024px) {
  /* btn */
  .modal-btn-content {
    gap: 30px 6%;
  }
  .modal-copy {
    font-size: 1.8rem;
  }
  .modal-btn-btm {
    padding: 1em;
  }
  /* content */
  .modal-con-text {
    padding: 2em;
  }
  .modal-con-num {
    width: 40px;
  }
  .modal-con-copy {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .modal-red .ttl-icon {
    margin-top: 60px;
  }
  .modal-btn-content {
    flex-direction: column;
    align-items: center;
  }
  .modal-btn {
    width: 400px;
    max-width: 100%;
  }
  .modal-num {
    top: -2%;
    left: -2%;
  }
  .modal-label {
    font-size: 1.8rem;
  }
  .modal-label span {
    font-size: 1.4rem;
  }
  /* content */
  .modal-con-top::before {
    background-position: center bottom;
    width: 26vw;
    top: unset;
    left: 84%;
    bottom: -16%;
  }
  .modal-con-top {
    display: block;
    width: 400px;
    max-width: 100%;
    margin: 0 auto;
  }
  .modal-con-text {
    padding: 1.5em;
    border-top-left-radius: 0;
    border-bottom-left-radius: var(--box-br);
  }
  .modal-con-num {
    position: absolute;
    z-index: 1;
    top: -2%;
    left: -2%;
    width: max(17%, 60px);
  }
  .modal-con-copy {
    font-size: 2.2rem;
    margin-top: 0;
  }
  .qa-list {
    margin-top: 40px;
  }
  .qa-list dt {
    font-size: 1.7rem;
    padding-left: 2.8em;
  }
  .qa-list dt::before {
    width: 20px;
    height: 20px;
  }
  .qa-list dt:not(:first-of-type) {
    margin-top: 1.5em;
  }
  .qa-list dd {
    font-size: 1.5rem;
  }
  .remodal-close-btm {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 599px) {
  .modal-con-top::before {
    width: 30vw;
    left: 78%;
    bottom: -14%;
  }
}

/* company
---------------------------------------------------------------- */
#company {
  position: relative;
  z-index: 0;
  background-color: #f4ebe0;
  padding-bottom: 80px;
}
#company::after {
  content: "";
  display: block;
  width: min(767px, 55vw);
  height: 100%;

  background: url("../img/company/bg.jpg") right bottom no-repeat;
  background-size: 100%;

  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
}
#company .ttl-bg {
  top: -3px;
  left: 0;
}
.company-text-img {
  text-align: center;
  padding-top: 10px;
}
.company-text-img img {
  width: 700px;
  max-width: 100%;
}
.company-text {
  margin-top: 30px;
}
.company-text-ttl {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cl-accent);
  padding-bottom: 0.2em;
  border-bottom: 1px solid currentColor;
  margin-bottom: 0.8em;
}
.company-text-wrap:not(:first-of-type) .company-text-ttl {
  margin-top: 20px;
}
.company-text-wrap:nth-of-type(2) .company-text-ttl {
  color: #9d342c;
}
.company-text-wrap:nth-of-type(3) .company-text-ttl {
  color: #49284e;
}
.company-text-wrap:nth-of-type(4) .company-text-ttl {
  color: var(--cl-main);
}
.company-text-list dt {
  font-weight: 400;
  flex-basis: 70px;
}
.company-text-list dd {
  font-weight: 400;
  flex-basis: calc(100% - 70px);
}
@media only screen and (max-width: 767px) {
  #company .ttl-bg {
    top: 0;
  }
}
@media only screen and (max-width: 599px) {
  #company {
    padding: 0;
  }
  .company-text-img {
    padding-top: 0;
  }
}
/* footer
---------------------------------------------------------------- */
/* footer */
.footer {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  background: var(--white);
  color: var(--black);
}
.footer .inner {
  padding: 30px 3%;
}
.copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  padding: 0.5em 1em;
}
.footer-nav a:hover {
  opacity: 0.5;
}
.footer-nav span {
  background-color: var(--black);
  width: 1px;
  height: 1em;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 60px;
  }
  .footer-nav a {
    padding: 0.5em 0.6em;
  }
  .footer-nav span {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 550px) {
  .footer-nav span:last-of-type {
    display: none;
  }
}
