@charset "utf-8";
/*+++++++++++++++++++++++++++++++++++++++++
  　ヘッダー
*+++++++++++++++++++++++++++++++++++++++++*/
header {
  width: 100%;
  height: min(7.41vw, 80px);
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(255,255,255,0.97);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
header.header__top {
  background-color: transparent;
  box-shadow: none;
  transition: 0.5s;
}
header.header__top:hover {
  background-color: rgba(255,255,255,0.97);
}
header.header__white {
  background-color: rgba(255,255,255,0.97);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
header.header__w {
  background-color: rgba(255,255,255,0.97);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  justify-content: space-between;
}
.header__hamburger {
  display: none;
}
.header__maincontents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 min(3.44vw, 44px) 0 min(1.88vw, 24px);
  width: calc(100% - min(11.67vw, 168px) - min(6.11vw, 88px));
  gap: min(1.56vw, 20px);
}
.header__contact .header__maincontents {
  width: calc(100% - min(6.11vw, 88px));
}
.header__inner .header__maincontents a {
  transition: 0.3s;
}
.header__logo {
  width: calc(min(25.78vw, 330px));
}
header.header__top .header__logo {
  opacity: 0;
}
header.header__white .header__logo {
  opacity: 1;
}
header.header__w  .header__logo {
  opacity: 1;
}
header.header__top:hover .header__logo {
  opacity: 1;
}
.header__logo:hover {
  opacity: 0.5;
}
.header__maincontents ul {
  display: flex;
  justify-content: end;
  width: calc(100% - min(25.78vw, 330px) - min(1.39vw, 20px));
  gap: calc(min(2.66vw, 34px) - 1px);
  font-size: min(1.02vw, 13px);
  font-weight: var(--f_weight-500);
}
.header__maincontents > ul > li > a {
  padding-bottom: min(1.39vw, 20px);
}
header.header__top .header__maincontents > ul > li > a {
  color: var(--white);
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
header.header__white .header__maincontents > ul > li > a {
  color: var(--gray03);
  text-shadow: none;
}
header.header__top:hover .header__maincontents > ul > li > a {
  color: var(--gray03);
  text-shadow: none;
  cursor: pointer;
}
.header__maincontents .header__linklist > .header__currentpage a {
  color: var(--gold01);
}
.header__maincontents .header__linklist > .header__currentpage::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: var(--gold01);
  bottom: 14px;
  z-index: 15;
  transform: scale(1, 1);
}
.header__maincontents .header__linklist > li:not(.header__currentpage)::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--gold01);
  bottom: -15px;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
  z-index: 15;
}
.header__maincontents .header__linklist > li:not(.header__currentpage):hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
.header__buttons {
  display: flex;
}
.header__button__reservation {
  background-color: var(--gold01);
  color: var(--white);
  width: min(11.67vw, 168px);
  height: min(7.41vw, 80px);
  text-align: center;
  font-size: min(1.18vw, 17px);
  font-weight: var(--f_weight-700);
  position: relative;
  transition: 0.3s;
}
.header__button__reservation:hover {
  background-color: var(--gold);
}
.header__button__reservation a,
.header__button__login a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  position: absolute;
}
.header__button__reservation span {
  font-size: min(0.83vw, 12px);
  font-weight: var(--f_weight-400);
}
.header__button__reservation > img {
  position: absolute;
  top: 5px;
  left: calc(min(2.13vw, 23px) * -1);
  z-index: 3;
  width: min(4.44vw, 48px);
}
.header__button__login {
  background-color: var(--gray02);
  color: var(--white);
  width: min(6.11vw, 88px);
  height: min(7.41vw, 80px);
  text-align: center;
  font-size: min(0.83vw, 12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: var(--f_weight-700);
  transition: 0.3s;
  position: relative;
  transition: ease 0.2s;
}
.header__button__login:hover {
  background: var(--gray04);
}
.header__button__login img {
  width: min(3.75vw, 54px);
}

/* ドロップダウンメニュー
=================================*/
.header__maincontents li {
  position: relative;
}
.header__maincontents .header__linklist > li {
  height: min(7.41vw, 80px);
}
.header__maincontents .dropdown__lists {
  width: min(23.33vw, 336px);
  position: absolute;
  top: min(2.43vw, 35px);
  left: calc((min(23.33vw, 336px) / 2 - 50%) * -1);
  padding: min(2.08vw, 30px);
  display: none;
}
.header__maincontents .header__linklist > li{
  display: block;
  height: 100%;
  padding-bottom: 0;
}
.header__maincontents .header__linklist > li:hover .dropdown__lists,
.dropdown__lists:hover {
  background-color: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  display: block;
  animation: fadein 0.2s;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__maincontents .dropdown__list {
  transition: all 0.3s;
  color: var(--gray03);
  font-weight: var(--f_weight-400);
  font-size: min(1.02vw, 13px);
  margin-bottom: min(1.04vw, 15px);
}
.header__maincontents .dropdown__list:last-of-type {
  margin-bottom: 0;
}
.header__maincontents .dropdown__list > a {
  width: 100%;
  transition: 0.3s;
  display: block;
}
.header__maincontents .dropdown__list > a:hover {
  opacity: 0.5;
}
@media (max-width: 1279px) {
  header.header__top .header__maincontents ul a {
    color: var(--gray03);
  }
  .header__maincontents {
    padding: 0 min(2.31vw, 25px);
    width: calc(
      100% - min(15.56vw, 168px) - min(8.15vw, 88px) - min(7.41vw, 80px)
    );
    gap: min(1.85vw, 20px);
  }
  .header__contact .header__maincontents {
    width: calc(100% - min(8.15vw, 88px));
  }
  .header__logo {
    width: min(30.83vw, 333px);
  }
  .header__maincontents ul {
    display: none;
  }
  .header__button__reservation {
    width: min(15.56vw, 168px);
    font-size: min(1.57vw, 17px);
  }
  .header__button__reservation span {
    font-size: min(1.11vw, 12px);
  }
  .header__button__login {
    width: min(8.15vw, 88px);
    font-size: min(1.11vw, 12px);
  }
  .header__button__login img {
    width: min(5vw, 54px);
  }

  /* ハンバーガーメニュー
=================================*/
  .header__hamburger {
    display: block;
  }
  .hamburger__menu {
    position: absolute;
    width: min(34.81vw, 376px);
    height: 100vh;
    top: 0;
    margin-top: min(7.41vw, 80px);
    padding: min(5.56vw, 60px) min(1.39vw, 15px);
    clear: both;
    background-color: var(--gold10);
    transition: 1s;
    z-index: 11;
    box-shadow: 1px -1px 4px rgba(0, 0, 0, 0.1);
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    left: -100vw;
  }
  .hamburger__menu::-webkit-scrollbar {
    display: none;
  }
  /* Hamburger menu button */
  .menu__btn:checked ~ .hamburger__menu {
    left: 0;
    transition: 0.6s;
  }
  /* Hamburger menbu text */
  .hamburger__menu a {
    text-decoration: none;
    font-weight: var(--f_weight-500);
    font-size: min(1.39vw, 15px);
    text-transform: capitalize;
    color: var(--gray03);
    opacity: 0;
    transition: 0.5s;
  }
  .hamburger__menu .header__linklist__top > li:not(.accordion__box) {
    position: relative;
  }
  .hamburger__menu .header__linklist__top > li:not(.accordion__box) a::before {
    content: "";
    background-image: url(../images/header/header_arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: min(2.22vw, 24px);
    height: min(2.22vw, 24px);
    position: absolute;
    bottom: calc(50% - min(2.22vw, 24px) / 2);
    right: calc(min(2.22vw, 24px) / 2);
  }
  .hamburger__menu .header__linklist__top > li:not(.accordion__box):first-of-type a::before {
    bottom: 50%;
  }
  .hamburger__menu li {
    border-bottom: 1px solid var(--gray07_5);
    padding: min(1.85vw, 20px) 0;
    opacity: 0;
    transition: 0.5s;
  }
  .hamburger__menu li:first-of-type {
    padding-top: 0;
  }
  .hamburger__menu li a {
    width: 100%;
    display: block;
  }
  .menu__btn:checked ~ .hamburger__menu a,
  .menu__btn:checked ~ .hamburger__menu li {
    opacity: 1;
    transition: 0.3192s;
  }
  .menu__btn {
    display: none;
  }
  .menu__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    background-color: var(--gold10);
    height: min(7.41vw, 80px);
    width: min(7.41vw, 80px);
    transition: 0.5s;
  }
  header.header__top .menu__icon {
    background-color: rgba(244,242,236,0);
  }
  header.header__top:hover .menu__icon {
    background-color: var(--gold10);
  }
  header.header__white .menu__icon {
    background-color: var(--gold10);
  }
  .menu__icon::before {
    transition: 0.3192s;
  }
  .menu__btn:checked ~ .menu__icon::before {
    content: "";
    position: absolute;
    width: min(7.41vw, 80px);
    background-color: var(--gold10);
    padding: 5px 0;
    bottom: -1px;
    left: 0;
    z-index: 15;
  }
  .menu__navicon {
    background: var(--gray03);
    display: block;
    height: 2px;
    width: min(2.96vw, 32px);
    position: relative;
    transition: 0.2192s;
  }
  .menu__navicon:before,
  .menu__navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: var(--gray03);
    transition: 0.2192s;
  }
  .menu__navicon:before {
    top: min(0.83vw, 9px);
  }
  .menu__navicon:after {
    bottom: min(0.83vw, 9px);
  }
  /* Hamburger Menu Animation Start */
  .menu__btn:checked ~ .menu__icon {
    box-shadow: 1px 6px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--gold10);
  }
  .menu__btn:checked ~ .menu__icon .menu__navicon:before {
    transform: rotate(-45deg);
  }
  .menu__btn:checked ~ .menu__icon .menu__navicon:after {
    transform: rotate(45deg);
  }
  .menu__btn:checked ~ .menu__icon:not(.steps) .menu__navicon:before {
    top: 0;
  }
  .menu__btn:checked ~ .menu__icon:not(.steps) .menu__navicon:after {
    bottom: 0;
  }
  .menu__btn:checked ~ .menu__icon .menu__navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s;
  }
  .header__linklist__bottom {
    margin-top: min(5.83vw, 63px);
    padding-bottom: min(5.56vw, 60px);
  }
  .header__linklist__bottom li {
    border: 0;
    padding: 0;
    margin-bottom: min(1.76vw, 19px);
  }
  .header__linklist__bottom li:last-of-type {
    margin-bottom: 0;
  }
  .menu__btn:checked ~ .hamburger__menu a:hover,
  .menu__btn:checked ~ .hamburger__menu a:hover ~ .hamburger__toggle-label {
    opacity: 0.5;
  }

  /* アコーディオン
=================================*/
  .accordion__box {
    position: relative;
  }
  .accordion__box > a {
    cursor: pointer;
  }
  .hamburger__toggle {
    display: none;
  }
  .hamburger__toggle-label,
  .hamburger__submenu {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .hamburger__toggle-label {
    position: absolute;
    right: 0;
    top: calc(min(2.22vw, 24px) / 2 + min(0.46vw, 5px));
    height: min(2.22vw, 24px);
    width: min(2.22vw, 24px);
    transition: 0.3192s;
    margin-right: calc(min(2.22vw, 24px) / 2);
  }
  .hamburger__toggle-label span {
    position: relative;
    height: min(2.22vw, 24px);
    width: min(2.22vw, 24px);
  }
  .hamburger__toggle-label span::before,
  .hamburger__toggle-label span::after {
    content: "";
    background-image: url(../images/header/header_minus.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: inline-block;
    position: absolute;
    width: min(2.22vw, 24px);
    height: min(2.22vw, 24px);
    transition: all 0.3s;
  }
  .hamburger__toggle-label span::before {
    top: -1px;
    left: 0;
  }
  .hamburger__toggle-label span::after {
    transform: rotate(90deg);
    left: 0;
    top: -1px;
  }
  .hamburger__submenu {
    padding: min(2.78vw, 30px) 0 min(0.93vw, 10px) min(1.39vw, 15px);
  }
  .hamburger__submenu li {
    border: 0;
    padding: 0;
    margin-bottom: min(2.31vw, 25px);
    position: relative;
  }
  .hamburger__submenu li a::before {
    content: "";
    background-image: url(../images/header/header_arrow-min.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: min(4.27vw, 16px);
    width: min(2.22vw, 24px);
    height: min(2.22vw, 24px);
    position: absolute;
    top: -50%;
    right: calc(min(2.22vw, 24px) / 2);
  }
  .hamburger__submenu li:last-of-type {
    margin-bottom: 0;
  }
  .hamburger__submenu li a {
    font-size: min(1.2vw, 13px);
    color: var(--gray05);
  }
  .hamburger__toggle01:checked + .hamburger__toggle-label01 span::after {
    transform: rotate(0);
  }
  .hamburger__toggle02:checked + .hamburger__toggle-label02 span::after {
    transform: rotate(0);
  }
}
@media (max-width: 767px) {
  header {
    height: 60px;
  }
  header.header__top {
    background-color: transparent;
  }
  header.header__white {
    background-color: rgba(255,255,255,0.97);
  }
  .header__maincontents {
    width: calc(100% - 60px * 2 - 49px);
    padding: 0 10px 0 0;
  }
  .header__contact .header__maincontents {
    width: calc(100% - 60px);
    padding: 0 10px;
  }
  .header__logo {
    max-width: 181px;
    width: 100%;
  }
  header.header__top .header__logo {
    opacity: 0;
  }
  header.header__white .header__logo {
    opacity: 1;
  }
  .header__button__reservation {
    height: 60px;
    width: 60px;
    font-size: 11px;
  }
  .header__button__reservation a span {
    font-size: 10px;
    transform: scale(0.8);
    display: block;
    transform-origin: center center;
  }
  .header__button__reservation > img {
    display: none;
  }
  .header__button__login {
    height: 60px;
    width: 60px;
    font-size: 10px;
  }
  .header__button__login img {
    width: 40px;
  }
  .menu__icon {
    height: 60px;
    width: 49px;
    background-color: rgba(255,255,255,0);
  }
  .menu__icon::before {
    display: none;
  }
  .menu__navicon {
    width: 24px;
  }
  .menu__navicon:before {
    top: 7px;
  }
  .menu__navicon:after {
    bottom: 7px;
  }
  .hamburger__menu {
    margin-top: 60px;
    background-color: rgba(255,255,255,0.97);
    width: 100%;
    box-shadow: none;
    padding: 36px 15px 40px;
    left: -100vw;
    transform: none;
    transition: 0.3s;
  }
  /* Hamburger menu button */
  .menu__btn:checked ~ .hamburger__menu {
    left: 0;
    transform: none;
    transition: 0.3s;
  }
  .hamburger__menu li {
    padding: 21px 0;
  }
  .hamburger__menu .header__linklist__top > li:not(.accordion__box) a::before {
    width: 24px;
    height: 24px;
    bottom: calc(50% - 12px);
  }
  .hamburger__menu .header__linklist__top > li:not(.accordion__box):first-of-type a::before {
    bottom: 50%;
  }
  .hamburger__menu a {
    font-size: 15px;
  }
  .menu__btn:checked ~ .menu__icon {
    box-shadow: none;
    background-color: rgba(255,255,255,0);
  }
  header.header__top:hover .menu__icon {
    background-color: rgba(255,255,255,0);
  }
  header.header__white .menu__icon {
    background-color: rgba(255,255,255,0);
  }
  .header__linklist__bottom {
    margin-top: 59px;
    padding-bottom: 80px;
  }
  .header__linklist__bottom li {
    padding: 0;
    margin-bottom: 20px;
  }
  .header__linklist__bottom li:last-of-type {
    margin-bottom: 0;
  }
  .header__linklist__bottom li a {
    font-size: 14px;
  }
  .hamburger__toggle-label {
    height: 24px;
    width: 24px;
    right: -1px;
    top: 19px;
  }
  .hamburger__toggle-label span {
    height: 24px;
    width: 24px;
  }
  .hamburger__toggle-label span::before,
  .hamburger__toggle-label span::after {
    height: 24px;
    width: 24px;
  }
  .hamburger__submenu li {
    margin-bottom: 27px;
    padding: 0;
  }
  .hamburger__submenu li:last-of-type {
    margin-bottom: 0;
  }
  .hamburger__submenu li::before {
    width: 7px;
    height: 7px;
    right: 10px;
  }
  .hamburger__submenu li a {
    font-size: 13px;
    color: var(--gray05);
  }
  .hamburger__submenu li a::before {
    width: 24px;
    height: 24px;
    background-size: 16px;
  }
  .hamburger__submenu {
    padding: 33px 0 13px 15px;
  }
}

/*+++++++++++++++++++++++++++++++++++++++++
  　フッター
*+++++++++++++++++++++++++++++++++++++++++*/
/* フッター上部
=================================*/
.footer__top {
  background: var(--gray03);
  color: var(--white);
  padding: min(8.98vw, 97px) 0 min(9.17vw, 99px);
}
.footer__top {
  font-weight: var(--f_weight-500);
}
.footer__top a {
  transition: 0.3s;
}
.footer__top a:hover {
  opacity: 0.7;
}
.footer__top__mainlist {
  border-bottom: var(--gray04) solid 1px;
  padding-bottom: min(1.94vw, 21px);
  display: flex;
  gap: min(7.78vw, 84px);
}
.footer__top__sublist {
  color: var(--gray06);
  font-weight: var(--f_weight-400);
  padding-top: min(1.94vw, 21px);
  margin-bottom: min(7.5vw, 81px);
  display: flex;
  gap: min(7.13vw, 77px);
  font-size: min(1.2vw, 14px);
}
.footer__top__info {
  display: flex;
  justify-content: space-between;
  gap: 0 min(1.71vw, 20px);
}
.footer__top__infolist {
  margin-top: min(1.39vw, 15px);
  max-width: min(58.48vw, 683px);
  width: 100%;
}
.footer__top__infolist > h3 {
  font-weight: var(--f_weight-700);
  margin-bottom: min(1.2vw, 13px);
  font-size: min(1.54vw, 18px);
}
.footer__top__infolist p {
  font-weight: var(--f_weight-400);
  font-size: min(1.39vw, 15px);
}
.footer__top__infolist p a {
  border-bottom: 1px solid var(--white);
}
.footer__top__infolist > p {
  line-height: 1.8;
}
.footer__top__infolist__flex {
  margin-top: min(2.31vw, 25px);
  display: flex;
  flex-wrap: wrap;
  gap: min(2.22vw, 24px);
}
.footer__top__infolist__flex.sp__view {
  display: none;
}
.footer__top__infolist__flex p {
  font-size: min(1.67vw, 18px);
}
.footer__top__infolist__flex p span {
  font-size: min(1.11vw, 13px);
  margin-right: min(0.65vw, 7px);
}
.footer__top__infolist .footer__top__infolist__flex p a {
  border-bottom: none;
  text-decoration: none;
}
.footer__top__inforight {
  max-width: min(41.52vw, 465px);
  width: 100%;
}
.footer__top__sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: min(1.71vw, 20px) min(3.52vw, 38px);
  margin-bottom: min(4.17vw, 45px);
}
.footer__top__sns ul {
  display: flex;
  flex-wrap: wrap;
  gap: min(1.48vw, 16px);
}
.footer__top__sns ul li {
  max-width: min(4.44vw, 48px);
  width: 100%;
}
.footer__top__copyright {
  font-weight: var(--f_weight-400);
  text-align: right;
  font-size: min(0.94vw, 11px);
}
@media (max-width: 767px) {
  .footer__top {
    padding: 54px 0 40px 0;
  }
  .footer__top__mainlist {
    font-size: 14px;
    padding-bottom: 23px;
    display: block;
    letter-spacing: 0.04em;
  }
  .footer__top__sublist {
    font-size: 13px;
    padding-top: 22px;
    margin: 0;
    display: block;
    letter-spacing: 0.02em;
  }
  .footer__top__mainlist li,
  .footer__top__sublist li {
    margin-bottom: 20px;
  }
  .footer__top__mainlist li:last-of-type,
  .footer__top__sublist li:last-of-type {
    margin: 0;
  }
  .footer__top__info {
    margin-top: 76px;
    display: block;
  }
  .footer__top__infolist {
    margin-bottom: 52px;
    max-width: 100%;
  }
  .footer__top__infolist > h3 {
    font-size: 18px;
    margin-bottom: 13px;
  }
  .footer__top__infolist > p {
    font-size: 13px;
  }
  .footer__top__infolist__flex {
    margin-top: 20px;
    gap: 8px 17px;
  }
  .footer__top__infolist__flex.sp__view {
    display: flex;
  }
  .footer__top__infolist__flex.pc__view {
    display: none;
  }
  .footer__top__infolist__flex p {
    font-size: 15px;
  }
  .footer__top__infolist__flex p span {
    font-size: 12px;
    margin-right: 5px;
  }
  .footer__top__inforight {
    max-width: 100%;
  }
  .footer__top__sns {
    margin-bottom: 53px;
    display: block;
  }
  .footer__top__sns > p {
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 0.06em;
  }
  .footer__top__sns ul {
    gap: 16px;
  }
  .footer__top__sns ul li {
    min-width: 48px;
    width: 48px;
  }
  .footer__top__copyright {
    font-size: 12px;
    text-align: left;
  }
}
/* フッター下部
=================================*/
.footer__bottom {
  background: var(--gray02);
  color: var(--gray05);
  padding: min(7.04vw, 76px) 0;
}
.footer__bottom__delimiter {
  border-bottom: var(--gray04) solid 1px;
}
.footer__bottom .btn--outline {
  margin-top: min(0.37vw, 4px);
  border: var(--gold03) solid 1px;
  color: var(--gold03);
  background: rgba(0, 0, 0, 0);
  line-height: 1.5;
}
.footer__bottom .btn--outline::after {
  content: url(../images/icon/otherlink_gold03.svg);
  transition: ease 0.2s;
}
.footer__bottom .btn--outline:hover {
  color: var(--white);
  background: var(--gold03);
}
.footer__bottom .btn--outline:hover::after {
  content: url(../images/icon/otherlink_white.svg);
}
.footer__box {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: min(1.71vw, 20px);
}
.footer__box-right {
  width: min(25.93vw, 280px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__bottom__links {
  display: flex;
  gap: min(5vw, 54px);
  width: calc(100% - (min(25.93vw, 280px) + min(1.71vw, 20px)));
}
.footer__bottom__links a {
  transition: 0.3s;
  font-size: min(1.3vw, 14px);
}
.footer__bottom__links a:hover {
  opacity: 0.7;
}
.footer__bottom__links ul {
  width: min(23.15vw, 250px);
}
.footer__bottom__mainlist li,
.footer__bottom__sublist li {
  margin-bottom: min(1.76vw, 19px);
}
.footer__bottom__mainlist li:last-of-type,
.footer__bottom__sublist li:last-of-type {
  margin: 0;
}
.footer__bottom__delimiter {
  padding-bottom: min(2.13vw, 23px);
}
.footer__bottom__logo {
  margin-top: 150px;
  width: min(12.41vw, 145px);
}
@media (max-width: 767px) {
  .footer__bottom {
    padding: 39px 15px;
  }
  .footer__box {
    display: block;
  }
  .footer__box-right {
    width: 100%;
    align-items: flex-start;
  }
  .footer__bottom__links {
    display: block;
    width: 100%;
  }
  .footer__bottom__links ul {
    width: 100%;
  }
  .footer__bottom__links a {
    font-size: 14px;
    letter-spacing: 0;
  }
  .footer__bottom__mainlist {
    margin: 36px 0 60px;
  }
  .footer__bottom__mainlist li,
  .footer__bottom__sublist li {
    margin-bottom: 20px;
  }
  .footer__bottom__mainlist li:last-of-type,
  .footer__bottom__sublist li:last-of-type {
    margin: 0;
  }
  .footer__bottom__sublist li.footer__bottom__delimiter {
    padding-bottom: 23px;
    margin-bottom: 21px;
  }
  .footer__bottom__logo {
    display: none;
  }

  .footer__bottom .btn--outline {
    padding: 22px;
    margin: 0;
  }
  .footer__bottom .btn--outline::after {
    right: 22px;
  }

  .footer__bottom__logo-sp {
    margin: 95px 9px 0 auto;
    max-width: 134px;
    display: block;
  }
}
