@charset "utf-8";
/* CSS Document */

html {
	scroll-behavior: smooth;
}

@font-face {
  font-family: "titlefont";
  src: url( "../fonts/YDWbananaslipplus.otf") format("opentype");
}

.move{
   opacity: 0; 
    position: relative;
  z-index: 1;
}

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
animation-delay: 0.1s;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.move2{
   opacity: 0; 
    position: relative;
  z-index: 1;
  max-width: 85rem;
  margin: 0 auto;
}

.fadeUp2{
animation-name:fadeUpAnime2;
animation-duration:2s;
animation-fill-mode:forwards;
animation-delay: 0.1s;
opacity:0;
}

@keyframes fadeUpAnime2{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:rgba(238,237,234,1);
  text-align:center;
margin-right: 40%;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 43%;
  left: 47.5%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
}

/* fadeUpをするアイコンの動き */

.fadeUp2{
animation-name: loadingAnime;
animation-duration:4s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes loadingAnime{
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }
    100% {
    opacity: 1;
  }
}



/*========= レイアウトのためのCSS ===============*/

#container{
    width:100%;
    height: 100vh;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.prog-bar{
	width:110%;
	height:5px;
	background:#333;	/*バーの背景色*/
	border-radius:5px;
	position:relative;
  top: 2rem;
  right: 5px;
	overflow: hidden;
}
.prog-bar .bar{
	height:100%;
	background:#00aec9;	/*バーカラー*/
	position:absolute;
	animation: progress 2.2s normal;	/*アニメーションスピード*/
	animation-fill-mode: forwards;
}
@keyframes progress {
	0% {width: 0}
	100% {width: 100%}
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
    right: -120%;
  width:90%;
    height: 100vh;/*ナビの高さ*/
  background:#f4f1ee;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:80%;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center;
}

#g-nav li a{
  color: #333;
  text-decoration: none;
  padding:20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}


/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:20px;
  right: 10px;
  cursor: pointer;
    width: 60px;
    height:60px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}






.header-logo {
  width: 45%;
  margin-top: 13vh;
  padding-bottom: 27vh;
  max-width: 25.6rem;
  position: relative;
  z-index: 100;
}

.header-nav__PC {
  display: none;
}

.header-ENGLISH__PC {
  display: none;
}

  .header-noren {
display: none;
  }

.header-noren_SP {
      display: block;
    width: 100%;
  height: 60vh;
  animation-name:norenAnime;
animation-duration:1.8s;
animation-delay: 2.5s;
animation-fill-mode:forwards;
	  position: relative;
	  z-index: 1;
}

   @keyframes norenAnime{
  from {
    opacity: 1;
	transform: translateY(550px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
} 

  .header_upside {
width: 100%;
background-color: rgba(238,237,234,0.96);
animation-name:norenAnime0;
animation-duration:1.8s;
animation-delay: 2.5s;
animation-fill-mode:forwards;
position: relative;
z-index: 1;
}

  @keyframes norenAnime0{
  from {
	height: 550px;
  }

  to {
	height: 0px;
  }
}

@media(min-width: 1300px)  {
  
  .header-noren_SP {
    display: none;
  }
  
      .header-noren {
    display: block;
    width: 100%;
  animation-name:norenAnime;
animation-duration:1.8s;
animation-delay: 2.5s;
animation-fill-mode:forwards;
	  position: relative;
	  z-index: 1;
  }
  
    @keyframes norenAnime{
  from {
    opacity: 1;
	transform: translateY(550px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
} 
  
  .openbtn1 {
    display: none;
     }
    
  .header_upside {
width: 100%;
background-color: rgba(238,237,234,0.96);
animation-name:norenAnime0;
animation-duration:1.8s;
animation-delay: 2.5s;
animation-fill-mode:forwards;
position: relative;
z-index: 1;
}  
  
  @keyframes norenAnime0{
  from {
	height: 550px;
  }

  to {
	height: 0px;
  }
}
  
 
    
 .header-logo {
  width: 13%;
  max-width: 30rem;
  padding-bottom: 20rem;
   display: block;
   margin: -3rem 46% 0 auto;
	 position: relative;
	 z-index: 2;
}
  
  .header-link {
	margin-top: -3rem;
     display: flex;
  justify-content: space-between; 
	  position: relative;
	  z-index: 2;
  }

.header-nav__PC {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright; 
  text-align: left;
  line-height: 450%;
  font-size:13px;
  font-weight: 700;
}
  
.header-ENGLISHposition__PC {
    padding-top: 10rem;
    padding-left: 11.5rem;
  }
  
  .header-ENGLISH__PC {
    display: block;
  }
  
    .header-english {
    width: 20rem;
      animation-name:rotateYAnime;
  animation-duration:2s;
  animation-delay: 5.3s;
  animation-fill-mode:forwards;
  animation-iteration-count:infinite;
  opacity: 0;
  }
  
  @keyframes rotateYAnime{
  0%{
    opacity: 1;
    }
  40%{
    transform: rotateY(0);
    opacity: 1;
    }
  100%{
    transform: rotateY(-360deg);
    opacity: 1;
    }}

  
  .header-navlistposition__PC {
    padding-top: 10rem;
    padding-right: 7.5rem;
  }
  
  .header-navlist__PC {
    border-left:0.5px solid #000000;
    margin: 0 0 0 auto;
    opacity: 0;
  }
  
  .navfadeUp {
animation-name:navAnime;
animation-duration:0.5s;
animation-delay: 4s;
animation-fill-mode:forwards;
opacity: 0;
}
  
@keyframes navAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time01{
animation-delay: 4.1s;
}

.delay-time02{
animation-delay: 4.2s;
}
  
.delay-time03{
animation-delay: 4.3s;
}
  
.delay-time04{
animation-delay: 4.4s;
}
  
.delay-time05{
animation-delay: 4.5s;
}
  
.delay-time06{
animation-delay: 4.6s;
}

  
}


.FV::before {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 60rem;
  background-image: url( "../images/english__FV__background_sp@2x.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}  

.FV-h1 {
  font-family: "titlefont";
  color: #fff;
  font-size: 3rem;
  font-weight: 100;
  padding-top: 10rem;
}

.FV-storetime-position {
  text-align: right;
position: relative;
}

.FV-backgroundcolor {
  position: absolute;
  top: 25rem;
  bottom: 0;
  width: 100%;
  background: #FFFFFF;
}

.FV-storetime {
  height: 21rem;
  width: auto;
  margin-top: 14.5rem;
position: relative;
	z-index: 1;
  padding-right: 5%;
}
.section1-Hairdryer-position {
  margin-bottom: 3rem;
}


  .header-ENGLISH__SP {
    display: block;
    text-align: left;
	  padding-top: 16rem;
  }
  
    .header-english_SPimg {
    width: 13rem;
      animation-name:rotateYAnime;
  animation-duration:2s;
  animation-delay: 4.8s;
  animation-fill-mode:forwards;
  animation-iteration-count:infinite;
  opacity: 0;
  margin-left: 10%;
  }

  @keyframes rotateYAnime{
  0%{
    opacity: 1;
    }
  40%{
    transform: rotateY(0);
    opacity: 1;
    }
  100%{
    transform: rotateY(-360deg);
    opacity: 1;
    }}

@media(min-width: 1300px) {
  
  .header-ENGLISH__SP {
  display: none;
}

  .FV::before {
  content: "";
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url(  "../images/main__FV__pc__FV.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}  
  
.FV-h1 {
  font-size: 5rem;
  font-weight: 100;
  padding-top: 30rem;
}
  
.FV-backgroundcolor {
  position: absolute;
  top: 32rem;
  bottom: 0;
  width: 100%;
  background: #FFFFFF;
}
  
.FV-storetime-position {
  text-align: right;
position: relative;
  padding-right: 4%;
}
  
.FV-storetime {
  width: 35rem;
  height: auto;
  margin-top: 14.5rem;
position: relative;
	z-index: 1;
  padding-right: 0;
} 
}

.section1 {
  background-color: #ffffff;
  padding-top: 10rem;
}

.section1-bandai-position {
text-align: left;
display: block;
position: relative;
z-index: 1;
}

.section1-bandai {
  width: 55%;
  height: auto;
  padding-left: 10%;
  max-width: 38.5rem;
}

.section1-cloud1-position {
display: block;
position: relative;
z-index: 10;
margin-top: -8rem;
}

.section1-cloud1 {
  margin-left: 30%;
  width: 33%;
  height: auto;
  max-width: 23.1rem;
  animation: fuwafuwa2 6.5s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa2  {
0% {
  transform: translate(40%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}

.section1-faucet-position {
  text-align: left;
  position: relative;
z-index: 10;
}

.section1-faucet {
  width: 28%;
  height: auto;
  max-width: 19.6rem;
}

.section1-Hairdryer-position {
  display: block;
  text-align: right;
}

.section1-Hairdryer {
  width: 46.6%;
  height: auto;
  max-width: 32.6rem;
}

.section1-cloud2-position {
  text-align: left;
  margin-top: -10rem;
}

.section1-cloud2 {
  width: 33%;
  height: auto;
  max-width: 32.6rem;
  animation: fuwafuwa 11s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa  {
0% {
  transform: translate(40%,0) 
}
	
  100% {
  transform: translate(-40%,0)
}
}

.section1-text {
  display: block;
  padding-top: 8.5rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.section1-bg {
  background-color: #f6f6f6;
  max-width: 66rem;
  margin: 0 auto;
}

.section1-text-area {
  padding-top: 8rem;
  padding-bottom: 8rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.section1-h1 {
	font-family: "titlefont";
	font-size: 4rem;
	font-weight: 100;
  font-size: 2.5rem;
  line-height: 160%;
}

.section1-p1 {
  padding-top: 5rem;
  font-size: 1.6rem;
  max-width: 55rem;
  margin: 0 auto;
  line-height: 180%;
  font-weight:500;
}

.section1-p2{
  padding-top: 2rem;
  font-size: 1.6rem;
}

.section1-cloud4-position {
  display: block;
  text-align: right;
  padding-top: 10rem;
}

.section1-cloud4 {
  width: 35%;
  max-width: 18.9rem;
  	animation: fuwafuwa2 9s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa2  {
0% {
  transform: translate(40%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}

.section1-cat-position {
  display: block;
  margin-top: -5rem;
}

.section1-cat {
  width: 55%;
  position: relative;
  right: 10%;
  max-width: 38.5rem;
}

.section1-steam-position {
  padding-top: 5rem;
  display: block;
}

.section1-steam {
  position: relative;
  right: 30%;
  width: 16%;
  max-width: 11.2rem;
}

.section1-bath {
  width: 58%;
  position: relative;
  left: 15%;
  max-width: 40.6rem;
}

.section1-cloud5-position {
  padding-top: 5rem;
  display: block;
  text-align: right;
  
}

.section1-cloud5 {
  width: 40%;
  max-width: 28rem;
  	animation: fuwafuwa5 12s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa5  {
0% {
  transform: translate(-120%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}


.section1-bandai-PC {
  display: none;
}

.section1-Hairdryer-PC {
  display: none;
}

.section1-bath-PC {
  display: none;
}

.section1-cloud6-PC {
  display: none;
}

.section1-cloud7-PC {
  display: none;
}

.section1-contentwarapper {
  max-width: 110rem;
  margin: 0 auto;
}


@media(min-width: 1300px)  {
  
  .section1 {
      padding-top: 5rem;
  }
  
  .section1-h1 {
  font-size: 4rem;
  line-height: 180%;
}
  
.section1-p1 {
  font-size: 1.6rem;
      max-width: 60rem;
  line-height: 180%;
}
  
  .section1-p2 {
    font-size: 1.6rem;
  }
  
  .section1-bandai {
    display: none;
  }
  
  .section1-cloud1 {
    display: none;
  }
  
  .section1-faucet {
    display: none;
  }
  
  .section1-Hairdryer {
    display: none;
  }
  
  .section1-cloud2 {
    display: none;
  }
  
  .section1-cloud4 {
    display: none;
  }
  
  .section1-steam {
    display: none;
  }
  
  .section1-bath {
    display: none;
  }
  
  .section1-photo1 {
    display: flex;
    justify-content: space-between;
    align-items:flex-end;
    position: relative;
    z-index: 1;
    padding-top: 20rem;
  }
  
  .section1-bandai-PC {
    display: inline;
    width: 36.5rem;
    margin-left: 10rem;
  }
  
  .section1-Hairdryer-PC {
    position: relative;
    top: -3rem;
    display: inline;
    width: 41.5rem;
    margin-right: 10rem;
  }
  
  .section1-bg {
  background-color:  rgba(246,246,246,0.8);
    max-width: 95rem;
    margin: 0 auto;
}
  
.section1-text-area {
  padding-top: 8rem;
  padding-bottom:8rem;
  margin-left: 0rem;
  margin-right: 0rem;
  max-width: 10000rem;
}
  
.section1-text {
  display: block;
  padding-top: 0rem;
  margin-left: 2rem;
  margin-right: 2rem;
  margin-top: -8rem;
  position: relative;
  z-index: 10;
}
  
  .section1-cat-position {
     text-align: left; 
  }
  
  .section1-cat {
    width: 26rem;
    display: block;
    margin-left: 25rem;
    margin-top: -6rem;
    max-width: 10000rem;
  }  
  
  .section1-bath-position {
    text-align: right;
    margin-right: 15rem;
    margin-top: -16rem;
  }
  
  .section1-bath-PC {
    display: inline;
    width: 41.5rem;
  }
  
  .section1-cloud4-position {
    display: none;
  }
  
  .section1-cat-position {
  display: inline;
    justify-content: flex-start;
  position: relative;
    z-index: 1;
    margin-top: -3rem;
}
  
  .section1-contentwarapper {
    max-width: 160rem;
    margin: 0 auto;
  }
  
  .section1-cloud5 {
    display: none;
  }
  
  .section1-cloud6-position {
    text-align: left;
    padding-left: 10rem;
  }
  
  .section1-cloud6-PC {
    width: 25rem;
    margin-top: -3rem;
  }
  
  .section1-cloud7-position {
    text-align: right;
    margin-top: 0rem;
  }
  
  .section1-cloud7-PC {
    display: inline;
    width: 45rem;
    margin-top: -30rem;
    position: relative;
    padding-left: 5rem;
    padding-right: 1rem;
animation: fuwafuwa4 3s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
  }
  
@keyframes fuwafuwa4 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
  
  
  .section1-cloud5-position {
    display: none;
  }
  
}


.section2 {
  background-color: #ffffff;
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.section2-textarea {
  max-width: 55rem;
  text-align: left;
  margin: 0 2rem;
}

.section2-h1 {
  font-family: "titlefont";
	font-size: 4rem;
	font-weight: 100;
  font-size: 2.5rem;
  width: 27rem;
  border-bottom: dashed 1px #333333;
	padding-bottom: 2rem;
}

.section2-img1-position {
  text-align: right;
  padding-top: 4rem;
}

.section2-p {
  font-size: 1.6rem;
  padding-top: 4rem;
}



.section2-img1 {
  width:  75%;
  max-width: 38rem;
}

.section2-locker {
  width: 100%;
  margin: 10rem 0;
}

.section2-img1-PC {
  display: none;
}

.section2-locker-PC {
  display: none;
}

.section2-contentwarapper {
  max-width: 70rem;
  margin: 0 auto;
}

@media(min-width: 1300px) {
  
  .section2 {
    padding-top: 25rem;
    padding-bottom: 0rem;
  }
  
  .section2-contentwarapper {
    max-width: 140rem;
    margin: 0 auto 0 10%;
    display: flex;
    align-items:flex-end;
    max-width: 10000rem;
    
  }
  
  .section2-img1 {
    display: none;
  }
  
  .section2-img1-position {
    text-align: right;
        margin-top: -11rem;
    margin-right: 20rem;
    padding-left: 7rem;
    
  }
  
  .section2-img1-PC {
    display:inline;
    width: 35rem;
  }
  
  .section2-h1 {
    font-size: 4rem;
    padding-bottom: 2rem;
  width: 43rem;
  }
  
  .section2-p {
    font-size: 1.6rem;
    line-height: 180%;
  }
  
  .section2-locker {
    display: none;
  }
  
  .section2-locker-PC {
    display: block;
    width: 100%;
    padding-top: 25rem;
    padding-bottom: 14rem;
  }
  
}

.section3 {
background-color: #ffffff;
}

.section3-contentwarraper {
  padding: 10rem 2rem;
    background-image: url( "../images/english__section3__bg.png");
}

.section3-tips {
  padding-top: 7rem;
  text-align: left;
}

.section3-h1 {
  font-family: "titlefont";
	font-size: 4rem;
	font-weight: 100;
  font-size: 2.5rem;
  width: 32rem;
  margin: 0 auto;
  border-bottom: dashed 1px #333333;
	padding-bottom: 2rem;
}

.section3-h2-1 {
  font-size: 1.8rem;
  text-align: left;

}

.section3-h2-2 {
  font-size: 1.8rem;
  text-align: left;
}

.section3-h2-3 {
  font-size: 1.8rem;
  text-align: left;
}

.section3-img-position {
  text-align: right;
}

.section3-img {
  padding-top: 3rem;
  width: 23.5rem;
}

.section3-p2 {
  padding-top: 2rem;
  font-size: 1.6rem;
  text-align: left;
}



.section5-slid {
  width: 17.5rem;
}

.scroll-infinity {
  padding-top: 8rem;
}

	@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 6);
}
.scroll-infinity__item>img {
  width: 100%;
}

.section3-contentarea {
  max-width: 70rem;
  margin: 0 auto;
}


@media(min-width: 1300px) {
  
  .section3-contentarea {
    max-width: 140rem;
    margin: 0 auto;
    background-color: #ffffff;
    margin: 0 auto;
    padding-bottom: 15rem;
  }
  
  .section3-contentwarraper {
  padding: 15rem 0rem;
    background-image: url( "../images/english__section3__bg.png");
}

.section3-tips {
  padding-top: 15rem;
  max-width: 92rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
  
  .section3-tips-text {
    max-width: 53rem;
    display: inline-block;
  }

.section3-h1 {
  padding-top: 15rem;
  font-family: "titlefont";
	font-size: 4rem;
	font-weight: 100;
  width: 52rem;
  margin: 0 auto;
  border-bottom: dashed 1px #333333;
	padding-bottom: 3rem;
}

.section3-h2-1 {
  font-size: 2.5rem;
  width: 26rem;
}

.section3-h2-2 {
  font-size: 2.5rem;
  width: 38rem;
}

.section3-h2-3 {
  font-size: 2.5rem;
  width: 17rem;
}

.section3-img-position {
  text-align: right;
  display: inline-block;
  width: 32%;
}

.section3-img {
  padding-top: 3rem;
  margin-left: 8rem;
  width: 100%;
}

.section3-p2 {
  padding-top: 2rem;
  font-size: 1.6rem;
  text-align: left;
  line-height: 180%;
}
  
.section5-slid {
  width: 36.5rem;
}

.scroll-infinity {
  padding-top: 15rem;
}

	@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 6);
}
.scroll-infinity__item>img {
  width: 100%;
}

  
  }

.section4 {
  background-color: #ffffff;
}

.section4-cloud6-position {
  padding-top: 10rem;
  text-align: right;
}

.section4-cloud6 {
  width: 40%;
  max-width: 24rem;
  	animation: fuwafuwa2 10s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa2  {
0% {
  transform: translate(-40%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}


.section4-cloud7-position {
  padding-top: 4rem;
  text-align: left;
}

.section4-cloud7 {
  width: 30%;
  max-width: 18rem;
  margin-left: 0.5rem;
  animation: fuwafuwa4 3s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa4 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

.section4-steam-position {
  text-align: right;
  margin-right: 5rem;
  margin-top: -3rem;
}

.section4-steam {
  width: 21%;
  max-width: 11.5rem;
}

.section4-textarea {
  margin-left: 2rem;
  margin-right: 2rem;
  padding-top: 4rem;
}

.section4-h1 {
  font-family: "titlefont";
	font-size: 4rem;
	font-weight: 100;
  font-size: 2.5rem;
  width: 23rem;
  margin: 0 auto;
  border-bottom: dashed 1px #333333;
	padding-bottom: 2rem;  
}

.section4-p {
  font-size: 1.6rem;
  padding-top: 4rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.section4-img {
    margin-top: 5rem;
  padding: 5rem 3rem 1rem 3rem;
  width: 100%;
  border: solid 1px #777777; 
}

.section4-cloud10-position {
display: none;
}

.section4-img2 {
width: 35%;
  max-width: 21rem;
  animation: fuwafuwa4 3s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
    margin-right: 5px;
}

@keyframes fuwafuwa4 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

.section4-img3-position {
  text-align: left;
}

.section4-img3 {
  width: 40%;
  max-width: 24rem;
    	animation: fuwafuwa3 6.5s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa3  {
0% {
  transform: translate(-40%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}


.section4-img4 {
  padding-top: 10rem;
  width: 100%;
}

.section4-img2-position {
  padding-top: 7rem;
  text-align: right;
}

.section4-cloud12-position {
  display: none;
}

.section4-cloud11-position {
  display: none;
}

.section4-img4-position-PC {
  display: none;
}

.section4-illustarea {
  max-width: 60rem;
  margin: 0 auto;
}

@media(min-width: 1300px) {
  
  .section4-illustarea {
    max-width: 10000rem;
  }
  
  .section4-img2-position {
    display: none;
  }
  
  .section4-cloud6-position {
    display: none;
  }
  
  .section4-cloud7-position {
    display: none;
  }
  
  .section4-steam-position {
    display: none;
  }
  
  .section4 {
    padding-top: 20rem;
  }

.section4-textarea {
  margin-left: 0rem;
  margin-right: 0rem;
  padding-top: 0rem;
}

.section4-h1 {
  font-family: "titlefont";
	font-size: 4rem;
	font-weight: 100;
  font-size: 4rem;
  width:38rem;
  margin: 0 auto;
  border-bottom: dashed 1px #333333;
	padding-bottom: 3rem;  
}

.section4-p {
  font-size: 1.6rem;
  padding-top: 6rem;
  max-width: 85rem;
  margin: 0 auto;
  line-height: 180%;
  margin-bottom: 0rem;
}

.section4-img {
  padding: 3rem;
  width: 56rem;
  border: solid 1px #777777; 
}

.section4-cloud10-position {
  display: block;
  padding-top: 5rem;
  text-align: left;
  max-width: 160rem;
  margin: 0 auto;
  margin-top: -5rem;
}
  
  .section4-cloud10 {
  width: 30rem;
  	animation: fuwafuwa6 11s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
  }
  
  @keyframes fuwafuwa6  {
0% {
  transform: translate(-80%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}

.section4-img3-position {
  display: none;
}
  
.section4-cloud12-position {
  display: block;
  margin-top: -10rem;
  max-width: 140rem;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}
  
  .section4-cloud12 {
    width: 37rem;
    	animation: fuwafuwa7 18s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
  }
  
  @keyframes fuwafuwa7  {
0% {
  transform: translate(-40%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}

.section4-cloud11-position {
  display: block;
  margin: -10rem auto 0 auto;
      max-width: 130rem;
    text-align: left;
}
  
  .section4-cloud11 {
    width: 25rem;
  }
  
  .section4-img4 {
    display: none;
  }
  
  .section4-img4-position-PC {
    display: block;
    padding-top: 16rem;
  }
  
  .section4-img4-PC {
    width: 100%;
  }
  

}


.section5 {
	padding-top: 10rem;
	background-color: #FFFFFF;
}

.section5-flame {
	background-image: url( "../images/english__section5__flame.png");
	background-size: 100% 100%;
 background-repeat: no-repeat;
	background-position: center;
  max-width: 48rem;
    margin: 0 auto;
}

.section5-h1 {
font-family:"titlefont";
	font-size: 2.5rem;
	font-weight: 100;
	width: 18rem;
	border-bottom: dashed 1px #333333;
	padding-bottom: 2rem;
	margin: 0 auto;
	padding-top: 11rem;
}

.section5-list {
	padding-top: 3rem;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 250%;
	padding-bottom: 11rem;
  list-style: none;
}

.section5-img-position {
	text-align: right;
	margin-right: 2rem;
}

.section5-img {
	width: 39%;
	position: relative;
	z-index: 2;
	margin-top: -6rem;
      max-width: 25rem;
}

.section5-img2 {
	width: 100%;
	height: auto;
	padding-top: 7rem;
}

.section5-img-PC {
  display: none;
}

.section3-img2-PC {
  display: none;
}

  .section5-contentwrapper {
 max-width: 64rem;
    margin: 0 auto;
  }

@media(min-width: 1300px) {
  
  .section5 {
	padding-top: 17rem;
	background-color: #FFFFFF;
}
  
  .section5-contentwrapper {
    width: 70rem;
    margin: 0 auto;
  }

.section5-flame {
	background-image: url( "../images/english__section5__flame.png");
	background-size: auto 100%;
 background-repeat: no-repeat;
	background-position: center;
  max-width: 10000rem;
}

.section5-h1 {
font-family:"titlefont";
	font-size: 2.8rem;
	font-weight: 100;
	width: 20rem;
	border-bottom: dashed 1px #333333;
	padding-bottom: 3rem;
	margin: 0 auto;
	padding-top: 15rem;
}

.section5-list {
	padding-top: 3rem;
	font-size: 2rem;
	font-weight: 500;
	line-height: 250%;
	padding-bottom: 12rem;
  list-style: none;
}
  
.section5-img {
display: none;
}
  
  .section5-img-PC {
  display: block;
  margin: 0 0 0 auto;
  width: 23rem;
	position: relative;
	z-index: 2;
	margin-top: -10rem;
  }
  
  .section5-img2 {
   display: none;
  }

.section5-img2-PC {
  display: block;
	width: 100%;
	height: auto;
	padding-top: 17rem;
}  
}

.section6 {
  background-color: #ffffff;
  padding-top: 10rem;
}

.section4-img2-PC {
  display: none;
}

.section4-img1-PC {
  display: none;
}


.section6-contentwarapper {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 55rem;
  margin:0 auto;
}

.section6-logo {
  width: 30%;
}

.section6-logo-position {
  text-align: left;
}

.section6-h1 {
  font-family:"titlefont";
	font-size: 1.4rem;
	font-weight: 100;
	width: 23rem;
	border-bottom: dashed 1px #333333;
	margin: 0 auto 0 0;
  text-align: left;
  line-height: 180%;
    position: relative;
  z-index: 2;
  margin-top: -3rem;
  padding-bottom: 2rem;
}

.section6-h1-fontsize {
  font-size: 2.5rem;
}

.section6-p {
  padding-top: 4rem;
  font-size: 1.6rem;
  text-align: left;
}

.section6-link-position {
  padding-top: 2rem;
  text-align: left;
}

.section6-link {
  font-size: 1.6rem;
  text-decoration: underline;
}

.section6-img1 {
  padding-top: 7rem;
  width: 55%;
  display: block;
  margin: 0 0 0 auto;
  
}

.section6-img2 {
  margin-top: -5rem;
  width: 40%;
    display: block;
}

.section6-img3 {
  margin-top: -5rem;
  width: 35%;
      display: block;
  margin-left: 8rem;
}

.section6-img1-PC {
  display: none;
}

.section6-img2-PC {
  display: none;
}

.section6-logo-position-PC {
  display: none;
}

  .section6-right {
max-width: 47.5rem;
    margin: 0 auto;
  }

@media(min-width: 1300px) { 
  
  .section6 {
    padding-top: 22rem;
  }
  
  .section6-contentarea {
    max-width: 137rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
  
  .section6-right {
    width: 30%;
    max-width: 10000rem;
  }
  
  .section6-contentwarapper {
    width: 60%;
    margin-left: 5rem;
    margin-right: 0;
    max-width: 10000rem;
  }
  
  .section6-logo {
  width: 30%;
}

.section6-logo-position {
  text-align: left;
}
  
  .section6-logo-position {
    display: none;
  }
  
  .section6-logo-position-PC {
    display: inline-block;
  }
  
  .section6-logo-PC {
    width: 12.5rem;
  }
  
  .section6-h1 {
    display: inline-block;
  font-size: 3rem;
    width: 65rem;
   margin-left: 5rem;
  }

.section6-h1-fontsize {
  font-size: 4rem;
}
  
  .section6-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10rem;
  }
  
  .section6-p {
    max-width: 70rem;
    font-size: 1.6rem;
  }
  
  .section6-img1 {
    display: none;
  }
  
  .section6-img1-PC {
    display: block;
    width: 28rem;
    margin: 0  0 0 auto;
  }
  
  .section6-img2 {
  display: none;
  }
  
  .section6-img2-PC {
    margin-top: -10rem;
    display: block;
    width: 15rem;
  }
  
  }

.section7 {
	background-color: #ffffff;
  padding-top: 14rem;
}

.section7-h1 {
  font-family:"titlefont";
	font-size: 2.5rem;
	font-weight: 100;
	width: 14rem;
	border-bottom: dashed 1px #333333;
	padding-bottom: 2rem;
  margin: 0 auto;
}

.section7-list1-position {
  text-align: center;
}

.section7-list {
  font-size: 1.6rem;
  list-style: none;
  padding-top: 4rem;
  text-align: left;
  display: inline-block;
  line-height: 200%;
}

.section7-h2 {
    font-family:"titlefont";
	font-size: 2rem;
	font-weight: 100;
  padding-top: 5rem;
}

.section7-h2__plus{
  font-size: 1.2rem;
  display: inline-block;
  text-align: center;
}

.section7-list2-position {
  text-align: center;
}

.section7-list2 {
    text-align: left;
  display: inline-block;
  font-size: 1.6rem;
  list-style: none;
  padding-top: 4rem;
  line-height: 200%;
}

.section7 {
	padding-top: 10rem;
	background-color: #FFFFFF;
}

.section7-flame {
	background-image: url(  "../images/english__section5__bg__pc.png");
	background-size: cover;
 background-repeat: no-repeat;
	background-position: center 5px top;

}

.section7-contentwrapper {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
      display: flex;
    justify-content: center;
}

.section7-bg {
background-color: rgba(255, 255, 255, 0.8);
    padding: 5.5rem ;
    padding-bottom: 5.5rem;
    margin-left: 2rem;
    margin-right: 2rem;
    max-width: 39rem;
}

.section7-slid {
  width: 17.5rem;
}


@media(min-width: 1300px) {

.section7 {
	padding-top: 17rem;
	background-color: #FFFFFF;
}
  
.section7-flame {
	background-image: url(  "../images/english__section5__bg__pc.png");
}

.section7-contentwrapper {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.section7-bg {
  background-color: rgba(255,255,255,0.8);
  padding-top: 0rem;
  padding-bottom: 0rem;
  height: 90rem;
  margin: 0 auto;
  width: 60rem;
  max-width: 10000rem;
}
  
.section7-h1 {
  font-family:"titlefont";
	font-size: 4rem;
	font-weight: 100;
	width: 20rem;
	border-bottom: dashed 1px #333333;
	padding-bottom: 3rem;
  padding-top: 10.3rem;
  margin: 0 auto;
}

.section7-list1-position {
  text-align: center;
}

.section7-list {
  font-size: 2rem;
  list-style: none;
  padding-top: 5rem;
  text-align: left;
  display: inline-block;
  line-height: 250%;
}

.section7-h2 {
  font-size: 2.5rem;
  padding-top: 9rem;
}

.section7-h2__plus{
  font-size: 1.5rem;
  display: inline-block;
  text-align: center;
}

.section7-list2-position {
  text-align: center;
}

.section7-list2 {
    text-align: left;
  display: inline-block;
  font-size: 2rem;
  list-style: none;
  padding-top: 4rem;
  line-height: 250%;
}
  }

.section8 {
  padding-top: 10rem;
  padding-bottom: 10rem;
	background-image: url( "../images/english__section7__bg.png")
}

.section8-contentwrapper {
  padding: 0 2rem;
      max-width: 55rem;
    margin: 0 auto;
}

.section8-h1 {
  font-family:"titlefont";
	font-size: 2.5rem;
	font-weight: 100;
	width: 11rem;
	border-bottom: dashed 1px #333333;
	padding-bottom: 1rem;
	margin: 0 auto 0 0;
}

.section8-img {
  padding-top: 5rem;
  width: 100%;
  max-width: 48rem;
}

.section8-text {
  text-align: left;
}

.section8-adress {
  padding-top: 5rem;
  font-size: 1.6rem;
  text-align: left;
  display: block;
}

.section8-tell {
  padding-top: 2rem;
  font-size: 1.6rem;
  text-align: left;
  display: block;
}

.section8-mail {
  font-size: 1.6rem;
  text-align: left;
  display: block;
}

.section8-storetime {
  padding-top: 2rem;
  font-size: 1.6rem;
  text-align: left;
  display: block;
}

.section8-chizu {
  padding-top: 4rem;
  width: 100%;
  height: 29rem;
}

@media(min-width: 1300px) {
  
.section8 {
  padding-top: 12rem;
  padding-bottom: 12rem;
	background-image: url( "../images/english__section7__bg.png")
}

.section8-contentwrapper {
  margin: 0 auto;
  width: 120rem;
  text-align: left;
      max-width: 10000rem;
}

.section8-h1 {
  font-family:"titlefont";
	font-size: 4rem;
	font-weight: 100;
	width: 15rem;
	border-bottom: dashed 1px #333333;
	padding-bottom: 3rem;
	margin: 0 auto 0 0;
}
  
  .section8-img-position {
    display: inline-block;
  }

.section8-img {
  padding-top: 8.5rem;
  width: 35rem;;
  display: flex;
  display: inline-block;
}

.section8-text {
  display: inline-block;
  margin-left: 10rem;
  width: 70rem;
}

.section8-adress {
  padding-top: 5rem;
  font-size: 1.6rem;
  text-align: left;
  font-weight: 500;
  display: block;
}

.section8-tell {
  padding-top: 2rem;
  font-size: 1.6rem;
  text-align: left;
  font-weight: 500;
  display: block;
  line-height: 180%;
}

.section8-mail {
  font-size: 1.6rem;
  text-align: left;
  font-weight: 500;
  display: block;
  line-height: 180%;
}

.section8-storetime {
  padding-top: 2rem;
  font-size: 1.6rem;
  text-align: left;
  font-weight: 500;
  display: block;
  line-height: 180%;
}

.section8-chizu {
  padding-top: 12rem;
  width: 100%;
  height: 55rem;
}  
}

.footer {
  background-image: url( "../images/english__footer__sp@2x.png");
  background-size: cover;
   background-repeat: no-repeat;
	background-position: center;
}

.footer-logo {
  width: 13rem;
  padding-top: 5rem;
}

.footer-SNS {
  padding-top: 2.5rem;
}

.footer-Instagram {
  display: inline-block;
  width: 3rem;
}

.footer-x {
  display: inline-block;
  width: 3rem;
  margin-left: 2.5rem;
}

.footer-Face {
  display: inline-block;
  width: 3rem;
  margin-left: 2.5rem;
}

.footer-link-pisition {
  margin: 0 auto;
  width: 25rem;
}

.footer-link {
  text-align: left;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 250%;
  text-decoration: none;
  list-style: none;
  padding-top: 5rem;
  padding-bottom: 5rem;
  font-weight: 600;
}

.footer-PC-SNS {
  display: none;
}

@media(min-width: 1300px){
  
  .footer-contentwrapper {
    max-width: 146.5rem;
    margin: 0 auto;
      display: flex;
  justify-content: space-between;
    padding: 11rem 5rem ;
  }
  
  .footer {
  background-image: url( "../images/english__footer__pc.png");
  background-size: cover;
   background-repeat: no-repeat;
	background-position: center;
}

.footer-logo {
  width: 18rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  display: inline-block;
}

.footer-PC-SNS {
  padding-top: 0rem;
  display: inline-block;
  margin: auto 0 0 0 ;
}
  
  .footer-SNS {
    display: none;
  }

.footer-Instagram {
  display: inline-block;
  width: 3rem;
}

.footer-x {
  display: inline-block;
  width: 3rem;
  margin-left: 2.5rem;
}

.footer-Face {
  display: inline-block;
  width: 3rem;
  margin-left: 2.5rem;
}

.footer-link-pisition {
  margin: 0 auto;
  width: 35rem;
   display: inline-block;
}

.footer-link {
  text-align: left;
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 250%;
  text-decoration: none;
  list-style: none;
      padding-top: 0rem;
  padding-bottom: 0rem;
  margin-left: 8.5rem;
}
  
}

