@charset "UTF-8";
/*  all */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: "Noto Sans JP","Poppins","Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "sans-serif";
  overflow-x: hidden;
  background: #fff;
}

ul, ol, li {
  list-style: none;
  padding-left: 0;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
p {
    font-size: 1rem;
    line-height: 2;
    font-weight: 400;
    letter-spacing: 0;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
.en {
  font-family: "Poppins"!important;
}

@media (max-width: 768px) {
    p {
        font-size: 0.9rem;
    }
}
/*==================================== レイアウト ====================================*/

.pc-only {
  display: initial !important;
}
.sp-only {
  display: none !important;
}
.l_container {
    margin: 0 10%;
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: initial !important;
    }
    .l_container {
        margin: 0 5%;
    }
    .flex_col{
        display: block;
    }
}


/* ================================ 装飾 =================================== */

.season_plan {
    background-image: url("../images/bg_wave_red.webp"), url("../images/bg_wave_red2.webp");
    background-size: 1920px, 1920px;
    background-repeat: repeat-x, repeat-x;
    background-position: center top, center bottom;
    background-color: #77060D;
    padding: 100px 1rem 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.button {
    position: relative;
    color: #fff;
    background: #293F36;
    border-radius: 4px;
    padding: 12px 63px;
    border: 2px solid #293F36;
    display: flex;
    justify-content: center;
    align-items: center;
    }
.button::before {
    position: absolute;
    content: '';
    background: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-radius: 0 0 4px 0;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #fff transparent;
    transform: rotate(0deg);
    bottom: 2px;
    right: 2px;
}

@media (max-width: 768px) {
    .season_plan {
        background-size: 768px, 768px;
        padding: 40px 0 30px;
    }
    .button {
        width: auto;
        font-size: 14px;
        padding: 12px 0;
    }
}

/*==============================================================================*/
/*================================== ヘッダー ==================================*/
/*==============================================================================*/

.header--pc {
    background: #fff;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    text-align: center;
    padding: 1.5rem 0;
    z-index: 99;
}
.header--pc img {
    width: 8%;
}
.header--language {
    position: fixed;
    z-index: 190;
    top: 1.8rem;
    right: 5.5rem;
}
.lang--jp {
    padding-right: 1rem;
}
.lang--en {
    color: #989898;
    padding-left: 1.3rem;
    border-left: #000 solid 2px;
}
.link--none:hover {
    opacity: 1;
}
.en_lang--jp, .jp_lang--en {
    color: #989898;
    padding-right: 1rem;
}
.en_lang--en {
    padding-left: 1.3rem;
    border-left: #000 solid 2px;
}

@media (max-width: 768px) {
    .header--pc img {
        width: 20%;
    }
    .header--language {
        display: none;
    }
}


/*==============================================================================*/
/*================================ アニメーション ================================*/
/*==============================================================================*/

.fadeBlock {
	opacity: 0;
	transition: all 1s;
}
.fadeBlock.fadeIn {
	opacity: 1;
}
.fadeBottom {
	transform: translateY(100px);
}
.fadeBottom.fadeIn {
	transform: translateY(0);
}

/*============================== スライダーslick ================================*/


/*=== slider-index ==== */

.slider-section {
    margin: 0 0 7.5rem;
}
.slider-section h3 {
    text-align: center;
    font-size: 5rem;
    font-weight: 100;
    line-height: 1;
    margin: 2rem 0;
}
/* ボタン */
.slider-index-box {
    position: relative;
}
.slider-index-box p {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 88px;
    padding: 16px;
    border-radius: 0px 0px 16px 16px;
    background: rgba(0, 0, 0, 0.80);
}
.slider-index-box p span{
    font-size: 12px;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
    content: '';
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    width: 2.5rem;
    height: 2.5rem;
    bottom: 0;
    opacity: 1;
}
.slick-prev:before {
    background-image: url("../images/common/arrows_index_left.svg");
    left: 5rem;
}
.slick-next:before {
    background-image: url("../images/common/arrows_index_right.svg");
    right: 5rem;
}

.slick-slide {
    margin: 0 5px;
}

/*-- 白いマスク
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}
--*/

@media (max-width: 768px) {
    .slider-section {
        margin: 0 0 4rem;
    }
    .slider-section h3 {
        font-size: 3rem;
    }
    .slider-index-list {
        overflow-x: hidden;
    }
    .slick-list {
        border-radius: 16px 0px 0px 16px;
        padding: 0 25% !important;
    }
    .slick-prev:before {
        left: 3rem;
    }
    .slick-next:before {
        right: 3rem;
    }
}

/*===============================文字スクロール==================================*/

.scroll-list {
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  gap: 0;
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 3rem;
  line-height:3rem;
  overflow: hidden;
}
.scroll-list li {
  font-family: "poppins";
  font-size: 3em;
  font-weight:100;
  white-space: nowrap;
  padding: 0 1rem 0 0;
  margin: 0;
  animation: marquee-left 40s linear infinite;
}
.text-mode1 {
  font-weight:400;  
}
.text-mode2 {
  font-weight:600;
}

/* PCの時のフォントサイズ */
@media (min-width: 600px) {
  .scroll-list li {
    font-size: 3vw;
  }
}

/* アニメーション */
@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }
}
@media (max-width: 768px) {
    .scroll-list {
        height: 2.3rem;
        line-height: 2.3rem;
    }
    .scroll-list li {
        font-size: 3em;
    }
}

/*============================= ローディング画面 =============================*/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #e4e4e4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; 
  overflow: hidden;
}
.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
}
.no-scroll {
  overflow: hidden;
}
.spinner {
  position: absolute;
  width: 600px;
  height: 36px;
  margin-left: -300px;
  overflow: visible;
  user-select: none;
  cursor: default;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
}
.spinner div {
  position:absolute;
  width:20px;
  height:36px;
  font-size: 30px;
  font-weight: bold;
  opacity:0;
  font-family:Helvetica, Arial, sans-serif;
  animation:move 2s linear infinite;
  transform:rotate(180deg);
  color:#000;
}
.spinner div:nth-child(2) {
  animation-delay:0.2s;
}
.spinner div:nth-child(3) {
  animation-delay:0.4s;
}
.spinner div:nth-child(4) {
  animation-delay:0.6s;
  color: #f768d6;
}
.spinner div:nth-child(5) {
  animation-delay:0.8s;
}
.spinner div:nth-child(6) {
  animation-delay:1s;
}
.spinner div:nth-child(7) {
  animation-delay:1.2s;
}

/* ローディングアニメーション*/
@keyframes move {
  0% {
    left:0;
    opacity:0;
  }
	35% {
		left: 41%; 
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%; 
		transform:rotate(0deg); 
		opacity:1;
	}
	100% {
		left:100%; 
		transform:rotate(-180deg);
		opacity:0;
	}
}

/*========================== ハンバーガーメニュー ========================== */

.hamburger_menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: fit-content;
    background: #d5d7ca;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 204;
    opacity: 0;
    transform: translatey(-100vw);
    transition: all .6s;
    visibility: hidden; 
}
.hamburger_menu .inner h3 {
    font-size: 2.5rem;
    font-weight: 100;
    text-align: center;
    margin-bottom: 2.5rem;
}
.open .hamburger_menu {
    transform: translatey(0);
    left: 0;
    opacity: 1;
    visibility: visible;
}
.hamburger_menu .inner {
    margin: 4rem 10% 3.5rem;
    padding: 0 0 7rem;
    height: 450px;
}
.hamburger_menu .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hamburger_menu .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #000;
}
.hamburger_menu .inner ul li a:hover {
    background: #e4e4e4;
}


@media screen and (max-width: 768px) {
    .hamburger_menu {
        width: 100%;
        height: auto;
    }
    .hamburger_menu .inner {
        margin: 6rem 5%;
        padding: 0;
    }
    .hamburger_menu .inner h3 {
        font-size: 1.7rem;
        text-align: left;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
}
/*----------.toggle_btn ----------=*/
.toggle_btn {
    display: inline;
    position: fixed;
    background: #d5d7ca;
    border-radius: 50px;
    color: #293F36;
    font-size: 24px;
    top: 22px;
    right: 24px;
    width: 37px;
    height: 37px;
    transition: all .5s;
    cursor: pointer;
    z-index: 180;
}
.toggle_btn::before {
    position: absolute;
    content: "";
    background-image: url("../images/common/nav_img.webp");
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    top: 23%;
    left: 23%;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background-color: #293f3600;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn {
    background: #fff;
    z-index: 208;
}
.open .toggle_btn::before {
    display: none;
}
.open .toggle_btn span {
  background-color: #000;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(14px) translateX(7px) rotate(-315deg);
  transform: translateY(14px) translateX(7px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-14px) translateX(7px) rotate(315deg);
  transform: translateY(-14px) translateX(7px) rotate(315deg);
}

.nav_language {
    display: none;
}

.open .nav_language{
    display: block;
    position: fixed;
    font-size: 1rem;
    top: 1.8rem;
    right: 5.5rem;
    z-index: 204;
}
/*----------#link_list ----------*/
.link_list {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1.5rem;
}
.link_box h4{
    font-size: 1rem;
    color: #fff;
    background: #000;
    font-weight: 400;
    padding: 0.2rem 1rem 0.3rem;
    border-radius: 50px;   
}
.link_box h4 span{
    float: right;
    font-size: 0.8rem;
    line-height: 2;
}
.link_areas {
    height: 320px;
}
.link_contents {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem 3.5rem;
    margin: 1rem 0 0;
}
.link_contents a {
    position: relative;
    font-family: "poppins";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    border-left: solid 2px #000;
    padding-left: 0.8rem;
    margin-left: 1.3rem;
}
.link_contents a::before {
    content: "▶︎";
    position: absolute;
    left: -24px;
    top: 30%;
}
.link_contents a span {
    font-size: 0.8rem;
}
.link_artist{
    width: 17.3rem;
    display: block;
    margin-bottom: 1rem;
}
.link_artist h4 span{
    font-size: 0.8rem; 
}
.link_website h4 {
    color: #000!important;
    background: #fff!important;
    font-weight: 500 !important;
}
@media screen and (max-width: 1440px) {
    .hamburger_menu .inner {
        margin: 6rem 5% 4rem;
        height: 90vh;
        overflow-y: auto;
    }
    .link_areas {
        height: auto;
    }
    .link_artist, .link_website{
        width: auto;
    }
    .link_box {
        width: 100%;
    }
}
@media screen and (max-width: 900px) {
    .link_list {
        flex-direction: column;
    }
    .link_areas {
        margin: 2rem 0 0!important;
    }
    .link_artist {
        width: 100%;
    }
    .link_box h4 {
        line-height: 1.3;
    }
    .link_box h4 span {
        line-height: 1.7;
    }
    .link_box .guest-room {
        margin: 1rem 0 0;
    }
}

/*---------- #mask ----------*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 102;
  cursor: pointer;
}

/*================================ タブ切り替え ================================ */

.tabBox .tabArea {
  width: 100%;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.tabBox .tabArea .one_tab {
  width: 33.2%;
}
.tabBox .tabArea .one_tab a {
  display: block;
  text-decoration: none;
  transition-duration: 0.3s;
  text-align: center;
  color: #fff;
}
.tabBox .tabArea .one_tab a:hover {
  opacity: 1;
  text-decoration: none;
}
.tabBox .tabArea .one_tab .tab_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
  height: 80px;
  background-color: #d5d7ca;
  transition-duration: 0.3s;
}
.tabBox .tabArea .one_tab .tab_inner:hover {
  background: #e4e6d8;
}
.tabBox .tabArea .one_tab .tab_inner small{
    font-size: 0.9rem;
}
.tabBox .tabArea .one_tab a.select .tab_inner {
    height: 80px;
    border-bottom: solid 4px #000;
}
.tabBox .tabArea.bottom {
  align-items: flex-start;
}
.contents {
    margin: 0 0 10%;
}
.contents .tab_main {
  display: none;
  transition-duration: 0.3s;
}
.tab_main.is_show {
  display: block;
}

.tabBox.is-fixed {
  padding-top: 7.3%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
@media (max-width: 768px) {
    .tabBox .tabArea .one_tab .tab_inner {
        font-size: 0.6rem;
        align-items: flex-start;
        text-align: left;
        padding: 0 0.5rem;
    }
    .tabBox .tabArea .one_tab .tab_inner small {
        font-size: 0.7rem;
    }
    .tabBox .tabArea {
        height: 86px;
    }
    .contents {
        margin: 0 0 10%;
    }
    .tabBox .tabArea .one_tab a:hover {
        opacity: 1;
        text-decoration: none;
    }
}
@media (max-width: 1100px) {.tabBox.is-fixed {padding-top: 9%;}}
@media (max-width: 770px) {.tabBox.is-fixed {padding-top: 18%;}}
@media (max-width: 430px) {.tabBox.is-fixed {padding-top: 21%;}}




/*========================== INDEX nav ==========================*/

.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: rgba(0,0,0,.85);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: all 200ms ease-in;
}
.show-nav .overlay {
    opacity: 1;
    visibility: visible;
}
nav.nav {
  width: 70rem;
  height: 37rem;
  position: fixed;
  right: -70rem;
  top: 9rem;
  padding: 3% 4.5%;
  border-radius: 0 0 0 30px;
  background-color: #d5d7ca;
  transition: all 200ms ease-in-out;
  z-index: 199;
}
nav.nav_index ul {
    border: none;
    padding: 0;
}
.toggle {
    position: absolute;
    top: 0;
    right: 100%;
    width: 50px;
    height: 175px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    background: #000;
    border-radius: 0.5rem 0 0 0.5rem;
    writing-mode: vertical-rl;
}
.toggle h4{
    font-size: 1rem;
    line-height: 1px;
    margin: auto 0;
    pointer-events: none;
}
span.toggler,
span.toggler:before{
    content: '';
    display: block;
    height: 2px;
    width: 1.5rem;
    margin-top: 2rem;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    pointer-events: none;
}

span.toggler:before{
    bottom: 6px;
}
.toggler_img {
    position: absolute;
    bottom: 1rem;
    width: 20px;
    height: 20px;
    background-image: url("../images/common/arrows_left.svg");
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}
.deleteclass {
    background-image: url(../images/common/arrows_right.svg)!important;
}
.deleteclass .toggle_btn {
    z-index: 180;
}
.link_grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem 1rem;
}
/* Show Nav */
.show-nav .nav {
  right: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,.6);
}
.show-nav .overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1090px) {
    .link_grid {
        grid-auto-flow: row;
        grid-template-columns: auto;
        grid-template-rows: auto;
        gap: 1rem;
    }
    nav.nav {
        width: 90%;
        height: 30rem;
        right: -90%;
        top: 8rem;
        padding: 2rem 1rem;
        border-radius: 0 0 0 20px;
    }
    .toggle {
        width: 26px;
        height: 140px;
    }
    span.toggler, span.toggler:before {
        width: 0.9rem;
        margin-top: 1.6rem;
    }
    .toggler_img {
        width: 16px;
        height: 16px;
        bottom: 1.2rem;
    }
    .inside_scroll {
        height: 100%;
        overflow: auto;
    }
}

/*========================== ARTISTS nav ==========================*/

#click-btn{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 20.5rem;
    right: 0;
    width: 50px;
    height: 175px;
    color: #fff;
    background: #000;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem 0 0 0.5rem;
    writing-mode: vertical-rl;
    z-index: 190;
}
#click-btn span, #click-btn span::before {
    content: '';
    display: block;
    height: 2px;
    width: 1.5rem;
    top: 0px;
    margin-top: 2rem;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    pointer-events: none;
}
#click-btn span::before {
    margin-top: 6px;
}
#click-btn::after{
    position: absolute;
    content: '';
    bottom: 1rem;
    width: 20px;
    height: 20px;
    background-image: url(../images/common/plus_icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}
#popup-wrapper {
    background-color: rgba(0, 0, 0, .85);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 210;
}
#popup-inside {
    color: #fff;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 13% 10.5% 25%;
    position: relative;
    display: block;
    overflow: auto;  
}
#close {
    position: absolute;
    content: '';
    top: 10%;
    right: 10.5%;
    width: 40px;
    height: 40px;
    background-image: url(../images/common/cross_icon.svg);
    background-size: cover;
    background-repeat: no-repeat;
    
    cursor: pointer;
    z-index: 300;
}
.popup-contents {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 5%;
}
.popup-box {
    display: flex;
    flex-direction: column;
}
.popup-box h4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 1.4rem;
    margin-bottom: 1rem;
    border-bottom: solid 1px #fff;
    gap: 0rem 1rem
}
.popup-box h4 span {
    font-size: 0.9rem;
}
.popup-box img {
    padding-top: 1.5rem;
    margin-top: auto;
}

@media (max-width: 1090px) {
    #click-btn {
        width: 26px;
        height: 170px;
        top: 17.5rem;
    }
    #click-btn span {
        width: 0.9rem;
        margin-top: 1.6rem;
    }
    #click-btn span::before {
        width: 0.9rem;
    }
    #click-btn::after {
        width: 16px;
        height: 16px;
    }
    #popup-inside {
        padding: 20% 5%;
    }
    #close {
        top: 5%;
        right: 5%;
    }
    .popup-contents {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .popup-box h4 {
        font-size: 1.2rem;
        padding-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    .popup-box h4 span {
        font-size: 0.8rem;
        line-height: 2;
    }
}

/*========================== フッターfooter ========================== */


/* footer */
footer {
    background-image: url( "../images/common/footer_bg.webp");
    padding: 11rem 0 3rem;
    background-size:  cover;
    background-repeat: round;
}
footer .footer_list {
    margin-bottom: 3rem;
}
footer .footer-button {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    padding: 2.5rem 0;
    background-color: #fff;
    transition: color 0.8s ease;
}
footer .footer-button:hover, footer .footer-button span:hover {
    opacity: none;
    color: #000;
}
footer .footer-button:hover::before {
  transform: scaleX(1);
  transform-origin: left;
  
}
footer .footer-button:hover::after {
  position: absolute;
  top: 45%;
  right: 20px;
  width: 26px;
  height: 26px;
  content: "";
  display: block;
  background-image: url("../images/common/arrows_right.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 50;
  
}
footer .footer-button::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #becad3;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}
footer .footer-button::after {
  position: absolute;
  top: 45%;
  right: 20px;
  width: 26px;
  height: 26px;
  content: "";
  display: block;
  background-image: url(../images/common/arrows_right_blue.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 50;
}
footer .footer-button {
    position: relative;
    font-size: 1.3rem;
    font-weight: bold;
}
footer .footer-button span {
    font-size: 0.9rem;
    font-weight: bold;
    
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  padding: 1.5rem 0 0;
}

@media (max-width: 768px) {
    footer {
        background-image: url( "../images/common/footer_bg_sp.webp");
        padding: 5rem 0 1rem;
    }
    footer .footer_list {
        margin-bottom: 1.5rem;
    }
    footer .footer-button {
        font-size: 1rem;
        padding:1.5rem 3.5rem 1.5rem 1rem;
        background-color: #fff;
        transition: color 0.8s ease;
    }
    footer .footer-button span {
        position: relative;
        padding-top: 0.5rem;
        line-height: 1.3;
    }
    .copyright {
        padding: 1rem 5%;
    }
    
    [lang="en"] .footer .sns li a {
        padding-left: 6rem;
    }  
}