@charset "UTF-8";
/*----------------------------------------------------------------------------

 reset

----------------------------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}
ul, ol {
  list-style-type: none;
}
em, strong, th, address {
  font-style: normal;
  font-weight: normal;
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
img,
object,
embed {
  border: 0;
  vertical-align: top;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
hr {
  display: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}
li {
  list-style-type: none;
}
strong {
  font-weight: bold;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
}

/*----------------------------------------------------------------------------

 CSS Custom Properties 

----------------------------------------------------------------------------*/
:root {
  --primary-color: #95CBCC;
  --primary-txt-color: #000000;
  --primary-bg-color: #FFFFFF;
  --secondary-bg-color: #F8F7F0;
  --gray-color: #C2C1C1;
  --base-width: 1920;
}
@media screen and (max-width: 640px) {
  :root {
    --base-width: 375;
  }
}

/*----------------------------------------------------------------------------

 base

----------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
  padding-top: 80px;
  color: var(--primary-txt-color);
  font-family: 'Zen Old Mincho', serif;
  line-height: 1;
  font-size: 1.6rem;
  background: var(--primary-bg-color);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 640px) {
  body {
    padding-top: 45px;
  }
}
.sp,
.sp_inline {
  display: none;
}
.pc {
  display: block;
}
.pc_inline {
  display: inline;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline;
  }
  .pc,
  .pc_inline {
    display: none;
  }
}
.d-inline-block {
  display: inline-block;
}
.common_wrap {
  display: flex;
}
.common_title {
  margin-left: calc(160 / 1920 * 100vw);
  margin-bottom: 1em;
  font-size: clamp(4.5rem, (80 / var(--base-width) * 100vw), 8.0rem);
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}
.common_txt {
  font-size: clamp(1.2rem, (22 / var(--base-width) * 100vw), 2.2rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
}
@media screen and (max-width: 640px) {
  .common_wrap {
    flex-direction: column;
  }
  .common_title {
    margin-left: calc(32 / var(--base-width) * 100vw);
    margin-bottom: 50px;
    font-size: 4.0rem;
  }
  .common_txt {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
#onetrust-consent-sdk #onetrust-banner-sdk {
  font-family: 'Noto Sans JP', sans-serif;
}

/*----------------------------------------------------------------------------

 fadein

----------------------------------------------------------------------------*/
.fadein {
  opacity : 0;
  filter: blur(5px);
  transition : opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein.scrollin {
  opacity : 1;
  filter: blur(0);
}
@keyframes fadein { /* animation: fadein 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    filter: blur(0);
	}
}
.fadein_x,
.fadein_x02 {
  opacity : 0;
  transform : translate3d(-20px, 0, 0);
  filter: blur(5px);
  transition : transform 1.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein_x02 {
  transform : translate3d(-60px, 0, 0);
  transition-duration: 2s;
}
.fadein_x.scrollin,
.fadein_x02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  filter: blur(0);
}

/* for Firefox */
@-moz-document url-prefix() {
  .fadein_x {
    transform : translate3d(-20px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x02 {
    transform : translate3d(-60px, 0, 0) rotate(0.0001deg);
  }
  .fadein_x.scrollin,
  .fadein_x02.scrollin {
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
  }
}

@keyframes fadein_x { /* animation: fadein_x 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform : translate3d(-20px, 0, 0);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    filter: blur(0);
	}
}

/* for Firefox */
@-moz-document url-prefix() {
  @keyframes fadein_x {
    0% {
      opacity : 0;
      transform : translate3d(-20px, 0, 0) rotate(0.0001deg);
      filter: blur(5px);
    }
    100% {
      opacity : 1;
      transform : translate3d(0, 0, 0) rotate(0.0001deg);
      filter: blur(0);
    }
  }
}

.fadein_y,
.fadein_y02 {
  opacity : 0;
  transform : translate3d(0, 30px, 0);
  filter: blur(5px);
  transition : transform 1.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.fadein_y02 {
  transform : translate3d(0, 60px, 0);
  transition-duration: 2s;
}
.fadein_y.scrollin,
.fadein_y02.scrollin {
  opacity : 1;
  transform : translate3d(0, 0, 0);
  filter: blur(0);
}

/* for Firefox */
@-moz-document url-prefix() {
  .fadein_y {
    transform : translate3d(0, 30px, 0) rotate(0.0001deg);
  }
  .fadein_y02 {
    transform : translate3d(0, 60px, 0) rotate(0.0001deg);
  }
  .fadein_y.scrollin,
  .fadein_y02.scrollin {
    transform : translate3d(0, 0, 0) rotate(0.0001deg);
  }
}

@keyframes fadein_y { /* animation: fadein_y 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    transform : translate3d(0, 20px, 0);
    filter: blur(5px);
  }
  100% {
    opacity : 1;
    transform : translate3d(0, 0, 0);
    filter: blur(0);
	}
}

/* for Firefox */
@-moz-document url-prefix() {
  @keyframes fadein_y {
    0% {
      opacity : 0;
      transform : translate3d(0, 20px, 0) rotate(0.0001deg);
      filter: blur(5px);
    }
    100% {
      opacity : 1;
      transform : translate3d(0, 0, 0) rotate(0.0001deg);
      filter: blur(0);
    }
  }
}

.scale_down {
  opacity : 0;
  filter: blur(5px);
  transform: scale(1.05);
  transition : opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1), transform 1.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.scale_down.scrollin {
  opacity : 1;
  transform: scale(1);
  filter: blur(0);
}

/* for Firefox */
@-moz-document url-prefix() {
  .scale_down {
    transform : scale(1.05) rotate(0.0001deg);
  }
  .scale_down.scrollin {
    transform : scale(1) rotate(0.0001deg);
  }
}

@keyframes scale_down { /* animation: scale_down 1.4s cubic-bezier(0.33, 1, 0.68, 1) both; */
  0% {
    opacity : 0;
    filter: blur(5px);
    transform: scale(1.05);
  }
  100% {
    opacity : 1;
    transform: scale(1);
    filter: blur(0);
	}
}

/* for Firefox */
@-moz-document url-prefix() {
  @keyframes scale_down {
    0% {
      opacity : 0;
      filter: blur(5px);
      transform: scale(1.05) rotate(0.0001deg);
    }
    100% {
      opacity : 1;
      transform: scale(1) rotate(0.0001deg);
      filter: blur(0);
    }
  }
}

.no_blur {
  filter: blur(0) !important;
}

/*-------------------------------------------------

gide line

--------------------------------------------------*/
body {
  position: relative;
}
body.debug::before {
  display: block;
  content: '';
  width: 1px;
  height: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  background: magenta;
  pointer-events: none;
  z-index: 9999;
}
body.debug #onetrust-consent-sdk #onetrust-banner-sdk,
body.debug .disclaimer {
  display: none !important;
}

/*-------------------------------------------------

Header

--------------------------------------------------*/
.Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
  background-color: var(--secondary-bg-color);
}
.Header .Header_Inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 60px;
}
.Header .Header_Inside .Header_Logo01 img {
  width: 200px;
}
.Header .Header_Inside .Header_Logo02 img {
  width: 90px;
}
@media screen and (max-width: 1200px) {
  .Header .Header_Inside {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 991px) {
  .Header .Header_Inside {
    padding-inline: 25px;
  }
}
@media screen and (max-width: 640px) {
  .Header {
    height: 45px;
    padding-inline: 17px;
  }
  .Header .Header_Inside {
    padding-inline: 0;
  }
  .Header .Header_Inside .Header_Logo01 a {
    display: block;
  }
  .Header .Header_Inside .Header_Logo01 a img {
    display: block;
    width: 120px;
  }
  .Header .Header_Inside .Header_Logo02 a {
    display: block;
  }
  .Header .Header_Inside .Header_Logo02 a img {
    display: block;
    width: 63px;
  }
}

/*-------------------------------------------------

main

--------------------------------------------------*/
main {
  overflow-x: clip;
}

/*-------------------------------------------------

store

--------------------------------------------------*/
#store {
  position: fixed;
  bottom: 135px;
  right: 0;
  line-height: 1;
  z-index: 10;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  perspective: 1000;
  pointer-events: none;
}
:root {
  --store_wrap_width: auto;
}
#store .wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 190px;
  background: rgba(255,255,255,.90);
  box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.2);
  border-radius: 5px 0 0 5px;
  transform: translateX(calc(100% - 46px));
  transition: transform .1s ease-in-out, box-shadow .1s ease-in-out;
  will-change: transform;
  cursor: pointer;
  pointer-events: auto;
}
body:not(.tablet):not(.mobile) #store .wrap:hover,
body.tablet #store .wrap.open,
body.mobile #store .wrap.open {
  transform: translateX(0%);
  transition: transform .1s ease-in-out .1s, box-shadow .1s ease-in-out .1s;
}

/* 展開なし */
/*
body:not(.tablet):not(.mobile) #store .wrap {
  transition: background .2s ease-in-out, box-shadow .1s ease-in-out;
}
body:not(.tablet):not(.mobile) #store .wrap:hover {
  background: rgba(255,255,255,1);
  background: rgba(246,246,246,1);
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
  transition: background .2s ease-in-out .1s, box-shadow .1s ease-in-out .1s;
}
*/

body #store .wrap > a {
  display: block;
  width: 100%;
  height: 100%;
}
#store .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 100%;
  text-align: center;
  letter-spacing: .05em;
}
#store .ttl a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#store .ttl .txt {
  color: #000;
  font-size: 20px;
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  writing-mode: sideways-lr;
  letter-spacing: 0.05em;
}
#store .btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 5px;
  padding: 0px 20px 0 15px;
}
#store .btns a {
  position: relative;
  display: inline-block;
  min-width: 7.8em;
  padding: 0.4em 1.666em 0.1em 1em;
  color: #000;
  font-size: 1.4rem;
  font-family: 'Bellefair', serif;
  letter-spacing: .05em;
  text-decoration: none;
  text-align: center;
  line-height: 1.666em;
  transition: all .1s ease-in-out;
  background: transparent;
}
#store .btns a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1.4em;
  width: .35em;
  height: .35em;
  border-top: 1px solid var(--primary-bg-color);
  border-right: 1px solid var(--primary-bg-color);
  border-color: var(--primary-color);
  transform: translateY(-50%) rotate(45deg);
  transition: all .1s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  #store .btns a:hover {
    color: #fff;
    background: var(--primary-color);
    transition: all .1s ease-in-out .1s;
  }
  #store .btns a:hover::after {
    border-color: #fff;
    transition: all .1s ease-in-out .1s;
  }
}
@media screen and (max-width: 1600px) {
  #store {
    bottom: 8.4375vw;
  }
  #store .wrap {
    /*
    height: max(120px,11.625vw);
    transform: translateX(calc(100% - min(2.875vw,46px)));
    */
  }
  #store .ttl {
    /*
    width: max(28px,2.875vw);
    */
  }
}
@media screen and (max-width: 991px) {
  #store {
    bottom: 83px;
  }
  #store .wrap {
    /*
    height: 120px;
    transform: translateX(calc(100% - 28px));
    */
  }
  #store .btns {
    gap: 10px 5px;
    padding: 0px 20px 0 15px;
  }
  #store .btns a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 640px) {
  #store {
    top: auto;
    bottom: 70px;
  }
  #store .wrap {
    height: 150px;
    transform: translateX(calc(100% - 32px));
  }
  #store .btns {
    gap: 6px 0px;
    padding: 0 15px 0 0;
  }
  #store .ttl {
    width: 32px;
  }
  #store .ttl .txt {
    font-size: 1.7rem;
  }
  #store .btns a {
    padding-bottom: 0;
    font-size: 1.2rem;
  }
  #store .btns a::after {
    transform: translateY(-20%) rotate(45deg);
  }
}
body.tablet #store .wrap,
body.mobile #store .wrap {
  transition-duration: .2s;
}
body.tablet #store .wrap.open,
body.mobile #store .wrap.open {
  transition-duration: .2s;
}

/*-------------------------------------------------

 kv

--------------------------------------------------*/
#kv {
  position: relative;
  overflow: clip;
  background: var(--primary-color);
  z-index: 1;
}
#kv .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/kv_bg.webp") no-repeat center center/cover;
  z-index: -1;
}
#kv .outer {
	position: relative;
}
#kv .inner {
	position: relative;
}
#kv .inner .visual_block {
  position: relative;
  background: #fff;
  aspect-ratio: 1920 / 830;
  overflow: hidden;
}
#kv .slider_wrap {
  aspect-ratio: 1920 / 830;
  aspect-ratio: 1920 / 1080;
  overflow: clip;
  transform: translateY(-6.5%);
}
#kv .inner .txt_block {
  position: relative;
  aspect-ratio: 1920 / 268;
  display: flex;
  gap: min(200 / 1920 * 100vw, 200px);
  justify-content: center;
  align-items: center;
}
#kv .inner .txt_block .logo {
  width: min(400 / 1920 * 100vw, 400px);
  opacity: 0;
}
body.loaded #kv .inner .txt_block .logo {
  animation: scale_down 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#kv .inner .txt_block .logo .thesteady {
  width: calc(175 / 400 * 100%);
  margin-top: min(36 / 1920 * 100vw, 36px);
  margin-inline: auto;
}
#kv .inner .txt_block .txt {
  opacity: 0;
}
body.loaded #kv .inner .txt_block .txt {
  animation: fadein_x 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#kv .btm_line {
  position: relative;
  width: 100%;
  height: 16px;
}
#kv .btm_line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vegas-animation-zoomInBasic {
  animation: zoomInBasic cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-duration: 20.0s !important;
}
.vegas-animation-zoomOutBasic {
  animation: zoomOutBasic cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-duration: 12.0s !important;
}
.vegas-animation-zoomInLeftToRight {
  animation: zoomInLeftToRight cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-duration: 20.0s !important;
}
.vegas-animation-zoomInRightToLeft {
  animation: zoomInRightToLeft cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-duration: 20.0s !important;
}
.vegas-animation-zoomOutTopToBottom {
  animation: zoomOutTopToBottom cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-duration: 16.0s !important;
}
.vegas-animation-zoomInTopToBottom {
  animation: zoomInTopToBottom cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-duration: 16.0s !important;
}

.vegas-animation-topToBottom {
  animation: topToBottom cubic-bezier(0.33, 1, 0.68, 1) both;
  animation-duration: 12.0s !important;
}
@keyframes zoomInBasic {
  0% {
      transform: scale(1.0);
  }
  100% {
      transform: scale(1.2);
  }
}
@keyframes zoomOutBasic {
  0% {
      transform: scale(1.2);
  }
  100% {
      transform: scale(1.0);
  }
}
@keyframes zoomInLeftToRight {
  0% {
      transform: scale(1.1) translateX(-2%);
  }
  100% {
      transform: scale(1.2) translateX(10%);
  }
}
@keyframes zoomInRightToLeft {
  0% {
      transform: scale(1.1) translateX(5%);
  }
  100% {
      transform: scale(1.4) translateX(-8%);
  }
}
@keyframes zoomInTopToBottom {
  0% {
      transform: scale(1.0) translateY(-12%) translateX(0%);
  }
  100% {
      transform: scale(1.15) translateY(-16%) translateX(6%);
  }
}
@keyframes zoomInTopToBottom_sp {
  0% {
      transform: scale(1.0) translateY(0%) translateX(0%);
  }
  100% {
      transform: scale(1.2) translateY(-6%) translateX(8%);
  }
}
@keyframes zoomOutTopToBottom {
  0% {
      transform: scale(1.4) translateY(12%);
  }
  100% {
      transform: scale(1.0) translateY(-22%);
  }
}
@keyframes zoomOutTopToBottom_sp {
  0% {
      transform: scale(1.4) translateY(12%);
  }
  100% {
      transform: scale(1.0) translateY(0%);
  }
}
@keyframes topToBottom {
  0% {
      transform: scale(1.2) translateY(8%);
  }
  100% {
      transform: scale(1.2) translateY(-8%);
  }
}
@media screen and (max-width: 640px) {
  #kv {

  }
  #kv .bg {
    background: url("../img/kv_bg_sp.webp") no-repeat center center/cover;
  }
  #kv .slider_wrap {
    aspect-ratio: 375 / 320;
    transform: translateY(0%);
  }
  #kv .inner .visual_block {
	  aspect-ratio: 375 / 320;
  }
  #kv .inner .txt_block {
    aspect-ratio: inherit;
    height: 240px;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  #kv .inner .txt_block .logo {
    width: 200px;
  }
  #kv .inner .txt_block .logo .thesteady {
    margin-top: 20px;
  }
  body.loaded #kv .inner .txt_block .txt {
    animation: fadein_y 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
  }
  #kv .inner .txt_block .txt .common_txt {
    text-align: center;
  }
  #kv .btm_line {
    height: 12px;
    font-size: 1rem;
  }
  
  .vegas-animation-zoomOutTopToBottom {
	  animation: zoomOutTopToBottom_sp cubic-bezier(0.33, 1, 0.68, 1) both;
	  animation-duration: 12.0s !important;
	}
  .vegas-animation-zoomInTopToBottom {
	  animation: zoomInTopToBottom_sp cubic-bezier(0.33, 1, 0.68, 1) both;
	  animation-duration: 12.0s !important;
	}
}

/*-------------------------------------------------

Special Contents

--------------------------------------------------*/
#special_contents {
  position: relative;
  padding-top: min(200 / 1920 * 100vw, 200px);
  padding-bottom: min(100 / 1920 * 100vw, 100px);
}
#special_contents .outer {
  position: relative;
}
#special_contents .inner {
  position: relative;
  width: calc(1460 / 1920 * 100vw);
  margin-left: auto;
  padding: min(80 / 1920 * 100vw, 80px) 0 min(120 / 1920 * 100vw, 120px) min(130 / 1920 * 100vw, 130px);
  background: var(--primary-color) url("../img/special_contents_bg.webp") no-repeat center center/cover;
}
#special_contents .inner .btm_line {
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}
#special_contents .inner .btm_line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#special_contents .inner .content_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(167 / 1920 * 100vw, 167px);
  width: min(847 / 1920 * 100vw, 847px);
}
#special_contents .inner .content {
  position: relative;
}
#special_contents .inner .content .num {
  position: absolute;
  top: -0.2em;
  left: 0;
  font-size: clamp(2.0rem, (40 / var(--base-width) * 100vw), 4.0rem);
  font-family: 'Bellefair', serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  transform: translateX(-110%);
  z-index: 2;
}
#special_contents .inner .content .img {
  position: relative;
  overflow: clip;
}
#special_contents .inner .content .img a {
  position: relative;
  display: block;
}
#special_contents .inner .content .img a img {
  transform: scale(1.00);
  transition: transform 0.4s ease-in-out;
}
#special_contents .inner .content .img.comingsoon {
	background: #fff;
}
#special_contents .inner .content .img.comingsoon img {
	opacity: 0.4;
}
@media (hover: hover) {
  #special_contents .inner .content .img a:hover img {
    transform: scale(1.04);
    transition: transform 0.4s ease-in-out 0.1s;
  }
}
#special_contents .inner .content .txt {
  position: absolute;
  right: 0;
  bottom: 20px;
  padding: 0.5em 0.8em 0.3em 0.8em;
  color: #000;
  font-size: clamp(1.0rem, (20 / var(--base-width) * 100vw), 2.0rem);
  font-family: 'Bellefair', serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: var(--primary-color);
}
#special_contents .inner .content .txt_block {
  margin-top: 0.5em;
}
#special_contents .inner .content .txt_block p {
  font-size: calc(20 / 22 * 100%);
  line-height: 1.5;
}
#special_contents .inner .content .img.comingsoon .txt {
	background-color: var(--secondary-bg-color);
}
@media screen and (orientation:portrait) {

}
@media screen and (max-width: 640px) {
  #special_contents {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  #special_contents .inner {
    position: relative;
    width: auto;
    margin-left: calc(32 / var(--base-width) * 100vw);
    padding: calc(60 / var(--base-width) * 100vw) calc(25 / var(--base-width) * 100vw) calc(80 / var(--base-width) * 100vw) 0;
    background: var(--primary-color) url("../img/special_contents_bg_sp.webp") no-repeat center center/cover;
  }
  #special_contents .inner .btm_line {
    bottom: -12px;
    height: 12px;
    font-size: 1rem;
  }
  #special_contents .inner .content_wrap {
    grid-template-columns: 1fr;
    gap: 60px;
    width: calc(200 / var(--base-width) * 100vw);
    margin-left: auto;
  }
  #special_contents .inner .content .num {
    top: -0.15em;
    font-size: 2.8rem;
    transform: translateX(-115%);
  }
  #special_contents .inner .content .txt {
    bottom: 10px;
    padding: 0.5em 0.8em 0.3em 0.8em;
    color: #000;
    font-size: 1.4rem;
  }
  #special_contents .inner .content .txt_block p {
    font-size: 100%;
  }
}
/*-------------------------------------------------

gallery

--------------------------------------------------*/
#gallery {
  position: relative;
  padding-top: min(100 / 1920 * 100vw, 100px);
  padding-bottom: min(200 / 1920 * 100vw, 200px);
}
#gallery .outer {
  position: relative;
  width: calc(1650 / 1920 * 100vw);
  margin-left: auto;
}
#gallery .outer .inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1650 / 5420;
}
#gallery .outer .inner .img {
  position: absolute;
  overflow: clip;
  --img-effect-range-x: -20;
}
#gallery .outer .inner .img.img1 {
  top: 0;
  left: 0;
  width: calc(700 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * -1px));
}
#gallery .outer .inner .img.img2 {
  top: calc(149 / 5420 * 100%);
  right: calc(100 / 1650 * 100%);
  width: calc(516 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * 1px));
}
#gallery .outer .inner .img.img3 {
  top: calc(1229 / 5420 * 100%);
  left: 0;
  width: calc(500 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * -1px));
}
#gallery .outer .inner .img.img4 {
  top: calc(1229 / 5420 * 100%);
  right: calc(270 / 1650 * 100%);
  width: calc(700 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * 1px));
}
#gallery .outer .inner .img.img5 {
  top: calc(2459 / 5420 * 100%);
  left: 0;
  width: calc(700 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * -1px));
}
#gallery .outer .inner .img.img6 {
  top: calc(2459 / 5420 * 100%);
  right: 0;
  width: calc(700 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * 1px));
}
#gallery .outer .inner .img.img7 {
  top: calc(3167 / 5420 * 100%);
  left: calc(170 / 1650 * -100%);
  width: calc(716 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * -1px));
}
#gallery .outer .inner .img.img8 {
  top: calc(3937 / 5420 * 100%);
  right: calc(220 / 1650 * 100%);
  width: calc(720 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * 1px));
}
#gallery .outer .inner .img.img9 {
  bottom: calc(423 / 5420 * 100%);
  left: 0;
  width: calc(400 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * -1px));
}
#gallery .outer .inner .img.img10 {
  bottom: 0;
  right: calc(310 / 1650 * 100%);
  width: calc(540 / 1650 * 100%);
  transform: translateX(calc(var(--img-effect-range-x) * 1px));
}
#gallery .outer .inner .img img {
  opacity: 0;
  transform: scale(1.00);
  filter: brightness(1.5) blur(10px);
  transition: transform 2.0s cubic-bezier(.2,1,.28,.92) 0s, 
              opacity 2.0s cubic-bezier(.2,1,.28,.92) 0s, 
              filter 2.0s cubic-bezier(.2,1,.28,.92) 0s;
}
#gallery .outer .inner .img.scrollin img {
  opacity: 1;
  filter: brightness(1) blur(0px);
  transform: scale(1);
}
@media screen and (max-width: 640px) {
  #gallery {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  #gallery .outer {
    width: 100%;
    margin-left: 0;
  }
  #gallery .outer .inner {
    aspect-ratio: 375 / 2166;
  }
  #gallery .outer .inner .img.img1 {
    width: calc(200 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * -1px));
  }
  #gallery .outer .inner .img.img2 {
    top: calc(115 / 2166 * 100%);
    right: 0;
    width: calc(155 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * 1px));
  }
  #gallery .outer .inner .img.img3 {
    top: calc(383 / 2166 * 100%);
    left: calc(20 / var(--base-width) * 100%);
    width: calc(134 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * -1px));
  }
  #gallery .outer .inner .img.img4 {
    top: calc(433 / 2166 * 100%);
    right: 0;
    width: calc(190 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * 1px));
  }
  #gallery .outer .inner .img.img5 {
    top: calc(776 / 2166 * 100%);
    left: 0;
    width: calc(280 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * -1px));
  }
  #gallery .outer .inner .img.img6 {
    top: calc(1036 / 2166 * 100%);
    right: 0;
    width: calc(313 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * 1px));
  }
  #gallery .outer .inner .img.img7 {
    top: calc(1566 / 2166 * 100%);
    left: 0;
    width: calc(161 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * -1px));
  }
  #gallery .outer .inner .img.img8 {
    top: calc(1701 / 2166 * 100%);
    right: 0;
    width: calc(187 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * 1px));
  }
  #gallery .outer .inner .img.img9 {
    bottom: calc(100 / 2166 * 100%);
    left: 10px;
    width: calc(128 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * -1px));
  }
  #gallery .outer .inner .img.img10 {
    bottom: 0;
    right: 20px;
    width: calc(162 / var(--base-width) * 100%);
    transform: translateX(calc(var(--img-effect-range-x) / 2 * 1px));
  }
  #gallery .outer .inner .img img {
    opacity: 0;
    transform: scale(1.00);
    filter: brightness(1.5) blur(10px);
    transition: transform 2.0s cubic-bezier(.2,1,.28,.92) 0s, 
                opacity 2.0s cubic-bezier(.2,1,.28,.92) 0s, 
                filter 2.0s cubic-bezier(.2,1,.28,.92) 0s;
  }
  #gallery .outer .inner .img.scrollin img {
    opacity: 1;
    filter: brightness(1) blur(0px);
    transform: scale(1);
  }
}

/*-------------------------------------------------

Lineup

--------------------------------------------------*/
#lineup {
  position: relative;
  padding-top: min(100 / 1920 * 100vw, 100px);
  padding-bottom: min(200 / 1920 * 100vw, 200px);
  background-color: var(--secondary-bg-color);
}
#lineup .item_list {
  position: relative;
  width: min(1260 / 1920 * 100vw, 1260px);
  margin-inline: auto;
}
#lineup .item_list.quartz {
  margin-bottom: min(120 / 1920 * 100vw, 120px);
}
#lineup .outline {
  display: flex;
  align-items: center;
  margin-bottom: min(60 / 1920 * 100vw, 60px);
}
#lineup .outline .en {
  display: inline-block;
  font-size: clamp(2.0rem, (40 / var(--base-width) * 100vw), 4.0rem);
  font-family: 'Bellefair', serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}
#lineup .outline .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: min(30 / 1920 * 100vw, 30px);
  padding-right: min(30 / 1920 * 100vw, 30px);
  border-right: 1px solid #000;
}
#lineup .outline .en {
  display: inline-block;
  font-size: clamp(2.0rem, (40 / var(--base-width) * 100vw), 4.0rem);
  font-family: 'Bellefair', serif;
  align-items: center;
}
#lineup .outline .ja {
  display: inline-block;
  margin-top: 0.2em;
  font-size: clamp(1.0rem, (14 / var(--base-width) * 100vw), 1.4rem);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
#lineup .outline .txt {
  font-size: clamp(1.2rem, (20 / var(--base-width) * 100vw), 2.0rem);
  letter-spacing: 0.1em;
  opacity: 0;
}
#lineup .outline .txt.scrollin {
  animation: fadein_x 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
}
#lineup .item_list .list {
  position: relative;
  display: grid;
  gap: min(100 / 1920 * 100vw, 100px);
  grid-template-columns: repeat(4, 1fr);
}
#lineup .item_list .list .item .img {
  position: relative;
  margin-bottom: min(20 / 1920 * 100vw, 20px);
}
#lineup .item_list .list .item .img a {
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  #lineup .item_list .list .item .img a:hover {
    opacity: 0.75;
    transition: opacity 0.2s ease-in-out 0.1s;
  }
}
#lineup .item_list .list .item .serial {
  margin-bottom: 0.75em;
  font-size: clamp(1.0rem, (20 / var(--base-width) * 100vw), 1.8rem);
  font-family: 'Bellefair', serif;
  text-align: center;
  letter-spacing: 0.1em;
}
#lineup .item_list .list .item .price {
  font-size: clamp(1.0rem, (20 / var(--base-width) * 100vw), 1.8rem);
  font-family: 'Bellefair', serif;
  text-align: center;
  letter-spacing: 0.1em;
}
#lineup .item_list .list .item .price .min {
  display: inline-block;
  margin-left: 0.25em;
  font-size: calc(14 / 18 * 100%);
}
#lineup .item_list .list .item .btn {
  margin-top: min(30 / 1920 * 100vw, 30px);
  text-align: center;
}
#lineup .item_list .list .item .btn a {
  display: inline-block;
  padding: 0.85em 1em;
  color: #fff;
  font-size: clamp(1.2rem, (20 / var(--base-width) * 100vw), 2.1rem);
  font-family: 'Bellefair', serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  background-color: #000;
  border: 1px solid #000;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  #lineup .item_list .list .item .btn a:hover {
    color: #000;
    background-color: transparent;
    transition: color 0.2s ease-in-out 0.1s, background-color 0.2s ease-in-out 0.1s;
  }
}
@media screen and (max-width: 991px) {
  #lineup .item_list {
    width: 75vw;
  }
}
@media screen and (max-width: 640px) {
  #lineup {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  #lineup .item_list {
    width: calc(310 / var(--base-width) * 100vw);
  }
  #lineup .outline {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  #lineup .outline .title {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-right: 0;
    padding-right: 0;
    padding-left: 15px;
    border-right: 0;
    border-left: 1px solid #000;
  }
  #lineup .outline .en {
    padding: 0.15em 0 0;
    font-size: 2.8rem;
  }
  #lineup .outline .ja {
    margin-top: 0.8em;
    font-size: 1.1rem;
  }
  #lineup .outline .txt {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  #lineup .outline .txt.scrollin {
    animation: fadein 1.4s cubic-bezier(0.33, 1, 0.68, 1) both;
  }
  #lineup .item_list .list {
    gap: 40px 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  #lineup .item_list.quartz {
    margin-bottom: 60px;
  }
  #lineup .item_list .list .item .serial {
    margin-bottom: 0.45em;
    font-size: 1.4rem;
  }
  #lineup .item_list .list .item .price {
    font-size: 1.4rem;
  }
  #lineup .item_list .list .item .price .min {
    font-size: 1.1rem;
  }
  #lineup .item_list .list .item .btn {
    margin-top: 18px;
  }
  #lineup .item_list .list .item .btn a {
    padding: 0.75em 0.85em;
    font-size: 1.5rem;
  }
}

/*-------------------------------------------------

Campaign

--------------------------------------------------*/
#campaign {
  position: relative;
  padding-bottom: min(100 / 1920 * 100vw, 100px);
  z-index: 1;
}
#campaign::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: min(300 / 1920 * 100vw, 300px);
  background-color: var(--secondary-bg-color);
  z-index: -1;
}
#campaign .outer {
  position: relative;
  width: min(1410 / 1920 * 100vw, 1410px);
  margin-inline: auto;
  padding-block: min(80 / 1920 * 100vw, 80px);
  background: url("../img/campaign_bg.webp") no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  overflow: clip;
}
#campaign .inner {
  position: relative;
  width: min(1064 / 1920 * 100vw, 1064px);
  margin-inline: auto;
}
#campaign .inner .common_wrap {
  justify-content: space-between;
  align-items: center;
}
#campaign .inner .img_block {
  width: calc(284 / 1026 * 100%);
}
#campaign .inner .txt_block {
  width: calc(642 / 1026 * 100%);
}
#campaign .inner .txt_block .title {
  margin-bottom: 0.75em;
  padding-bottom: 0.5em;
  font-size: clamp(2.0rem, (40 / var(--base-width) * 100vw), 4.0rem);
  font-family: 'Bellefair', serif;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #000;
}
#campaign .inner .txt_block .lead {
  margin-bottom: 1em;
  font-size: clamp(1.4rem, (23 / var(--base-width) * 100vw), 2.3rem);
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
}
#campaign .inner .txt_block .lead span {
	font-size: clamp(1.2rem, (16 / var(--base-width) * 100vw), 1.7rem);
	white-space: initial;
	display: inline-block;
	text-align: left;
	margin-top: 0.5em;
}
#campaign .inner .txt_block .note {
  font-size: clamp(1.0rem, (14 / var(--base-width) * 100vw), 1.4rem);
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
}
#campaign .inner .txt_block .note.indent {
  padding-left: 1.1em;
  text-indent: -1.1em;
}
#campaign .inner .txt_block .note.indent .icon {
  display: inline-block;
  width: 1.1em;
  text-indent: 0;
}
@media screen and (max-width: 1200px) {
  #campaign .inner .txt_block .lead .ctr {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  #campaign .outer {
    padding-block: min(100 / 1920 * 100vw, 100px);
  }
  #campaign .inner {
    width: 90%;
  }
}
@media screen and (max-width: 640px) {
  #campaign {
    padding-bottom: 50px;
  }
  #campaign::before {
    height: calc(300 / var(--base-width) * 100vw);
  }
  #campaign .inner {
    width: 100%;
    padding: 30px 30px 40px;
  }
  #campaign .outer {
    width: calc(310 / 375 * 100vw);
    margin-inline: auto;
    padding-block: 0;
    background: url(../img/campaign_bg.webp) no-repeat center center;
    background-size: cover;
  }
  #campaign .inner .common_wrap {
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
  #campaign .inner .img_block {
    width: calc(210 / var(--base-width) * 100vw);
  }
  #campaign .inner .txt_block {
    width: 100%;
  }
  #campaign .inner .txt_block .title {
    margin-bottom: 0.75em;
    padding-bottom: 0.75em;
    font-size: 2.8rem;
    text-align: center;
  }
  #campaign .inner .txt_block .lead {
    margin-bottom: 20px;
    font-size: 1.4rem;
    text-align: center;
    white-space: nowrap;
  }
  #campaign .inner .txt_block .lead .ctr {
    display: inline;
  }
  #campaign .inner .txt_block .lead span {
    font-size: 1.2rem;
		text-align: center;
		margin-top: 1em;
	}
  #campaign .inner .txt_block .note {
    max-width: 245px;
    margin-inline: auto;
    font-size: 1.1rem;
    line-height: 1.8;
  }
}

/*-------------------------------------------------

Special box

--------------------------------------------------*/
#special_box {
  position: relative;
  padding-block: min(100 / 1920 * 100vw, 100px);
}
#special_box .inner {
  position: relative;
  width: min(1500 / 1920 * 100vw, 1500px);
  margin-left: calc(160 / 1920 * 100vw);
}
#special_box .inner .common_wrap {
  justify-content: space-between;
  gap: 30px;
}
#special_box .inner .common_title {
  margin-top: 1em;
  margin-left: 0;
}
#special_box .txt_block .txt {
  margin-left: min(40 / 1920 * 100vw, 40px);
}
#special_box .img_block {
  width: calc(740 / 1500 * 100%);
}
@media screen and (max-width: 640px) {
  #special_box {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #special_box .inner {
    width: calc(310 / 375 * 100vw);
    margin-inline: auto;
  }
  #special_box .inner .common_title {
    margin-top: 0;
    margin-left: 0;
  }
  #special_box .txt_block .txt {
    margin-left: 0;
  }
  #special_box .inner .common_wrap {
    gap: 35px;
  }
  #special_box .img_block {
    width: 100%;
  }
}

/*-------------------------------------------------

Shop

--------------------------------------------------*/
#shop {
  position: relative;
  padding-top: min(100 / 1920 * 100vw, 100px);
  padding-bottom: min(200 / 1920 * 100vw, 200px);
}
#shop .inner {
  position: relative;
  width: min(1500 / 1920 * 100vw, 1500px);
  margin-left: calc(160 / 1920 * 100vw);
}
#shop .inner .common_title {
  margin-left: 0;
}
#shop .inner .common_wrap {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
#shop .txt_block .txt {
  margin-left: min(40 / 1920 * 100vw, 40px);
}
#shop .inner .common_wrap .btn_block a {
  display: inline-block;
  padding: 1.2em 2.0em;
  color: #fff;
  font-size: clamp(1.2rem, (20 / var(--base-width) * 100vw), 2.0rem);
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-decoration: none;
  background-color: #000;
  border: 1px solid #000;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  #shop .inner .common_wrap .btn_block a:hover {
    color: #000;
    background-color: transparent;
    transition: color 0.2s ease-in-out 0.1s, background-color 0.2s ease-in-out 0.1s;
  }
}
@media screen and (max-width: 640px) {
  #shop {
    padding-top: 50px;
    padding-bottom: 100px;
  }
  #shop .inner {
    width: calc(310 / 375 * 100vw);
    margin-inline: auto;
  }
  #shop .inner .common_wrap {
    gap: 35px;
  }
  #shop .txt_block .txt {
    margin-left: 0;
  }
  #shop .inner .common_wrap .btn_block a {
    padding: 1.6em 2.4em;
    font-size: 1.4rem;
  }
}

/*-------------------------------------------------

 footer

--------------------------------------------------*/
.p-footer {
  background-color: #000;
  position: relative;
  padding: 9.375vw 5vw 5.625vw;
  color: #fff;
}
@media screen and (min-width: 641px) {
  .p-footer {
    height: 96px;
    padding: 0;
  }
}
.p-footer__logoSeiko {
  position: relative;
  width: 23.75vw;
}
@media screen and (min-width: 641px) {
  .p-footer__logoSeiko {
    width: 100px;
    top: 34px;
    left: 40px;
  }
}
.p-footer__sns {
  position: absolute;
  top: 9.375vw;
  right: 5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 17.1875vw;
  height: 7.03125vw;
}
@media screen and (min-width: 641px) {
  .p-footer__sns {
    width: 70px;
    height: 30px;
    top: 34px;
    right: 30px;
  }
}
.p-footer__buttonFacebook,
.p-footer__buttonTwitter {
  background-color: #fff;
  border-radius: 50%;
  width: 7.03125vw;
  height: 7.03125vw;
  overflow: hidden;
  position: relative;
}
.p-footer__buttonFacebook svg,
.p-footer__buttonTwitter svg {
  position: absolute;
  fill: #000;
}
@media screen and (min-width: 641px) {
  .p-footer__buttonFacebook,
  .p-footer__buttonTwitter {
    width: 30px;
    height: 30px;
  }
}
.p-footer__buttonFacebook svg {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: -3.33333%;
  width: 44.44444%;
  height: 82.22222%;
}
.p-footer__buttonTwitter svg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translate(4%, 6%);
  transform: translate(4%, 6%);
  width: 57.77778%;
  height: 48.88889%;
}
.p-footer__copyright {
  text-align: center;
  font-size: 3.125vw;
  margin-top: 6.25vw;
  font-family: Montserrat, sans-serif;
}
@media screen and (min-width: 641px) {
  .p-footer__copyright {
    position: absolute;
    left: 170px;
    font-size: 12px;
    margin-top: 0;
    top: 43px;
  }
}
.p-buttonScrollTop {
  position: fixed;
  right: 20px;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background-color: #000;
  border-radius: 10px;
}
.p-buttonScrollTop:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30%;
  height: 30%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(30%) rotate(-45deg);
  transform: translateY(30%) rotate(-45deg);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (min-width: 641px) {
  .p-buttonScrollTop {
    right: 30px;
    bottom: -100px;
    width: 60px;
    height: 60px;
  }
  .p-buttonScrollTop:before {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
/* ------------------------------
Footer sns change 2025/5
------------------------------ */
.p-footer__buttonTwitter,
.p-footer__buttonFacebook {
  background-color: #313131;
  border-radius: 50%;
}
.p-footer__buttonTwitter {
  background-image: url("../img/logo_x.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 65% auto;
}
.p-footer__buttonFacebook {
  background-image: url("../img/logo_fb.svg");
  background-repeat: no-repeat;
  background-position: 47.5% center;
  background-size: 30% auto;
}