@charset "utf-8";
/*
Theme Name: SWEET CUBE
Theme URI:
Description:  
Author: 
Author URI: 
Version: 1.0
*/


#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.side-cart{
  position: fixed;
  z-index: 99;
  right: 0;
  bottom: 5%;
  width: 74px;
}
.side-cart .side-cart_icon svg{
  fill: var(--sub-color02);
}
.side-cart a{
  background:var(--main-color);
  border-radius: 30px 0 0 30px;
  color: var(--sub-color02);
}
.side-cart a:hover{
  color: #fff;
  background: #EA6376;
}
.side-cart a:hover .side-cart_icon svg{
  fill: #fff;
}
.side-cart.fixed{
  bottom: 30px;
  position: absolute;
}
@media screen and (min-width: 1541px){
  .side-cart a{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 45px 18px 37px 20px;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.3em;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .side-cart a .side-cart_icon{
    line-height: 1;
    padding-right: 8px;
  }
}
@media screen and (max-width: 1540px){
  .side-cart{
    bottom: 2%;
    right: 5px;
  }
  .side-cart a{
    border-radius: 13.3px;
    display: block;
    text-align: center;
    width: 80px;
    height: 80px;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    padding: 14px 5px;
  }
  .side-cart .side-cart_icon svg{
    width: 38px;
    height: 34px;
    display: block;
    margin: 0 auto 5px;
  }
}  
@media screen and (max-width: 767px){
  .side-cart a{
    border-radius: 7.5px;
    width: 60px;
    height: 60px;
    font-size: 1.0rem;
    padding: 10px 5px;
  }
  .side-cart .side-cart_icon svg{
    width: 28px;
    height: 25px;
  }
}
#left-text{
  width: 50px;
  position: relative;
  color: #000;
}
#left-text p{
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  position: fixed;
  left: 24px;
  top: 315px;
  transform: translate(-50px, -50%);
  height: 100%;
  text-align: center;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 1.0s ease-out;
}
@media screen and (max-width: 767px){
  #left-text p{
    top: 35%;
  }
}
.bg-circle01{
  position: absolute;
  background-image: url('img/bg_circle01.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 522px;
  height:  447px;
  z-index: -1;
}
.bg-circle02{
  position: absolute;
  background-image: url('img/bg_circle02.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 520px;
  height:  495px;
  z-index: -1;
}
.bg-circle03{
  position: absolute;
  background-image: url('img/bg_circle03.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 677px;
  height:  489px;
  z-index: -1;
}
.bg-circle04{
  position: absolute;
  background-image: url('img/bg_circle04.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 499px;
  height:  519px;
  z-index: -1;
}
.button-right{
  text-align: right;
}
.button{
  position:relative;
  display: inline-block;
  padding: 10px 85px 10px 20px;
}
.button > div{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #554D4D;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 1.7px;
  transition: 0.3s;
}
.button > div::before{
  content: '';
  position: absolute;
  left:0;
  top: 50%;
  width: calc(100% - 30.5px);
  background-color: #554D4D;
  border-radius: 1px;
  height: 2px;
}
.button > div::after{
  content: '';
  position: absolute;
  top: calc(50% - 10px);
  right: 36px;
  background-color: #554D4D;
  border-radius: 2px;
  height: 13px;
  width: 2px;
  transform: rotate(-50deg);
}
.button::after{
  content:'';
  position: absolute;
  top: 50%;
  right:0;
  transform: translate(0, -50%);
  background: #E60020;
  opacity: 0.2;
  width: 65px;
  height: 65px;
  z-index: 0;
  border-radius: 50%;
  transition: 0.3s;
}
.button > div > span{
  color:var(--sub-color03);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.75px;
  transition: 0.3s;
}
.button:hover::after{
  opacity: 0.4;
  transform: translate(0, -50%) scale(1.1);
}
.button:hover > div{
  color: #000;
}
.button:hover > div > span{
  color: var(--main-color);
}
a.link-open svg{
  stroke: #fff;
  margin-left: 5px;
  margin-bottom: 4px;
}
.link-arrow{
  color: var(--sub-color03);
  font-size: 1.7rem;
}
.link-arrow img{
  margin-right: 8px;
}
.r-mark{
  font-size: 60%;
}
.r-mark::after{
  content: none!important;
}
@media screen and (max-width: 767px){
  .button{
    padding: 10px 66px 10px 20px;
  }
  .button > div{
    font-size: 1.4rem;
  }
  .button > div > span{
    font-size: 1.2rem;
    margin-top: 6px;
  }
  .button::after{
    width: 53px;
    height: 53px;

  }
  .button > div::before{
    width: calc(100% - 26.5px);
    height: 1px;
    top: 50%;
  }
  .button > div::after{
    right: 31px;
    width: 1px;
  }
  .link-arrow{
    font-size: 1.5rem;
  }
  .link-arrow img{
    width: 15px;
  }
}
.block .block-title_en{
  font-family: var(--font-family-en);
  font-size: 3.0rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #E60020;
  margin-bottom: 10px;
  line-height: 0.8;
  padding-bottom: 8px;
  margin-bottom: 13px;
}
.block .block-title_en span{
  border-bottom: 2px solid #E60020;
}
.block .block-title{
  font-size: 2.6rem;
  margin-bottom: 25px;
  color: var(--font-color-heading);
}
@media screen and (max-width: 1023px){
  .block .block-title_en{
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
  .block .block-title{
    margin-bottom: 16px;
  }
}
.content .content-title{
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 0 100px;
  margin-left: 50px;
  position:relative;
}
.content .content-title::after{
  content: '';
  position:absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255,255,255,0.15);
}
.content .content-title .container{
  width: 100%;
  height: 100%;
  z-index: 2;
}
.content .content-title h1{
  color: var(--main-color);
  letter-spacing: 2px;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  left:0;
  bottom: -13px;
}
.content .content-title h1 .en{
  font-family: var(--font-family-en);
  font-size: 9.8rem;
  font-weight: 600;
  margin-right: 30px;
}
.content .content-title h1 .ja{
  font-size: 2.0rem;
  font-weight: 700;
}
@media screen and (max-width: 1023px){
  .content .content-title{
    height: 315px;
    margin: 0 0 70px;
    border-radius: 0 0 0 50px;
  }
  .content .content-title h1{
    right: 0;
    bottom: -35px;
  }
  .content .content-title h1 .en{
    font-size: 6.8rem;
    display: block;
    margin-right: 30px;
    text-align: right;
    margin-bottom: 10px;
  }
  .content .content-title h1 .ja{
    font-size: 1.6rem;
    display: block;
    text-align: right;
    margin-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .content .content-title{
    height: 390px;
  }
  .content .content-title h1 .en{
    font-size: 65px;
    margin-right: 15px;
  }
  .content .content-title h1 .ja{
    font-size: 15px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 1023px){
  #left-text p{
    font-size: 1.2rem;
    left: 18px;
    top: 230px;
  }
}
@media screen and (max-width: 767px){
  #left-text{
    width: 0;
  }
  #left-text p{
    left: 14px;
    top: 250px;
  }
  .block .block-title_en{
    font-size: 2.3rem;
  }
  .block .block-title{
    font-size: 2.1rem;
    margin-bottom: 20px;
    letter-spacing: 1.05px;
  }
}
.news-list{
  list-style: none;
  padding: 0;
  margin: 0 auto 80px;
}
.news-list li{
  margin-bottom: 25px;
}
.news-list li > a{
  display: flex;
  gap: 10px 20px;
  align-items: center;
}
.news-list li > a:hover{
  color: var(--main-color);
}
.post-date{
  font-family: var(--font-family-gochic);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.35;
}
.post-category{
  font-size: 1.3rem;
  text-align: center;
  padding: 6px 10px;
  min-width: 130px;
  border: 1px solid var(--font-color-text);
  border-radius: 50px;
  line-height: 1;
}
.news-list li > a:hover .post-category{
  border-color: var(--main-color);
}
.post-title{
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}
.news-list .post-excerpt{
  flex: 1;
}
@media screen and (max-width: 1023px){
  .news-list li > a{
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .news-list li{
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .news-list{
    margin: 0 auto 30px;
  }
  .news-list li{
    margin-bottom: 30px;
  }
  .post-date{
    font-size: 1.6rem;
  }
  .post-category{
    font-size: 1.2rem;
    padding: 4px 10px;
  }
  .post-title{
    width: 100%;
    font-size: 1.6rem;
  }
  .news-list .post-excerpt{
    width: 100%;
    font-size: 1.5rem;
  }
}

.pagination{
  margin: 0 auto;
}
.pagination ul.page-numbers{
  list-style: none;
  padding:0;
  margin:0;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: var(--font-family-en);
  font-size: 1.8rem;
  font-weight: 500;
}
.pagination ul.page-numbers li{
  width: 21px;
  height: 21px;
  text-align: center;
  line-height: 21px;
}
.pagination ul.page-numbers li:has(.current){
  color: #fff;
  background: var(--main-color);
  border-radius: 15px;
}
.pagination ul.page-numbers li:has(.next),.pagination ul.page-numbers li:has(.prev){
  width: auto;
}

.wow{
  opacity: 0;
  transform: translateY(50px);
}

.wow.animated{
  opacity: 1;
  transition: 1.5s;
  transform: translateY(0px);
}
.js-slide-up-row {
  position: relative;
  opacity: 0;
  width: fit-content;
}
.js-slide-up-row.is-setup {
  opacity: 1;
}
.js-slide-up-row__base {
  opacity: 0;
}
.js-slide-up-row__line,
.js-slide-up-row__checker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.js-slide-up-row__text {
  display: block;
}
.u-visually-hidden {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}