
@charset "utf-8";

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);
  }
}

/*========= 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;
  margin-top: -5rem;
  padding-bottom: 20rem;
   display: block;
   margin: 0 45% 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: 15rem;
      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;
      padding-right: 5%;
}

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

.FV-storetime {
  width: 50%;
  max-width: 25rem;
  margin-top: 0rem;
position: relative;
	z-index: 1;
    height: auto;
}

  .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: 36vh;
}
  
.FV-backgroundcolor {
  position: absolute;
  top: 32rem;
  bottom: 0;
  width: 100%;
  background: #FFFFFF;
}
  
.FV-storetime-position {
  text-align: right;
position: relative;
  padding-right: 8rem;
margin-top: 20rem;
}
  
.FV-storetime {
  width: 35rem;
  height: auto;
  margin-top: 14.5rem;
position: relative;
	z-index: 1;
  max-width: 250rem;
}
  
}

.section0-bg {
  margin-top: -10rem;
  background-color: #FFFFFF;
}

.section0 {

padding-top: 7rem;
}

.section0-title {
  padding-top: 12rem;
  width: 65%;
  font-weight: 600;
  padding-bottom: 4rem;
  max-width: 30rem;
}

.section0-descripution {
  text-align: left;
  line-height: 200%;
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom:7rem;
    padding: 0 5%;
  margin: 0 auto;
  max-width: 65rem;
  position: relative;
}

.section0-img {
  margin-top: 5rem;
  width: 70%;
  max-width: 37.5rem;
}

.section0-link {
  text-decoration:underline;
  color: #0000EE;
}

@media(min-width: 1300px) {
  
  .section0 {
padding-top: 7rem;
display: flex;
align-items:center;
max-width: 144rem;
    margin: 0 auto;
    position: relative;
    right: 5%;
}
  
  .section0-img {
    margin-top:25rem;
  width: 45rem;
}
  
  .section0-text {
    text-align: left;
    width: 80rem;
    margin: 0 auto;
  }
  
  .section0-title {
  padding-top: 12rem;
  font-weight: 600;
  padding-bottom: 4rem;
  width: 40rem;
  padding-left: 5rem;
}
  
.section0-descripution {
  text-align: left;
  line-height: 200%;
  font-size: 1.8rem;
    padding: 10rem 13rem 10rem 10rem;
  margin: 0 auto;
  max-width: 85rem;
  background-image: url( "../images/main-section0-bg-PC@2x.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
  
}

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

.section1-contentwrapper {
	padding: 0 5%;
  max-width: 95rem;
  margin: 0  auto;
}

.section1-h1 {
	font-family: "titlefont";
  font-size:min(10vw,70px);
	font-weight: 100;
	transform: rotate(-3deg);
	text-align: left;
	padding-top: 6rem;
  margin-bottom: 15%;
}

.section1-p1 {
	font-size: 1.6rem;
	font-weight: 600;
	padding-top: 0rem;
	text-align: left;
  line-height: 200%;
  letter-spacing: 0.1em;
}

.section1-p3 {
	font-size: 1.6rem;
	font-weight: 600;
	padding-top: 0rem;
	text-align: left;
  line-height: 200%;
  letter-spacing: 0.1em;
}

.section1-p2 {
	padding-top: 3rem;
	text-align: left;
	font-size: 1.8rem;
	font-weight: 600;
}

.section1-img {
	width: 82%;
	padding-top: 3rem;
  max-width: 35rem;
}

@media(min-width: 1300px) {
  
.section1 {
  padding-top: 10rem;
}  
  
  
.section1-contentwrapper {
	margin: 0 0rem;
  width: 120rem;
  margin: 0 auto;
  max-width: 10000rem;
}
  
  .section1-h1 {
	font-family: "titlefont";
	font-size: 4vw;
	font-weight: 100;
	transform: rotate(-3deg);
	width: 100%;
	padding-top: 6rem;
  margin: 0 auto 0 0;
  text-align: left;
  max-width: 10000rem;
}
  
  .section1-p1 {
  font-size: 1.8rem;
	padding-top: 15.5rem;
	text-align: left;
    line-height: 200%;
}
  
  .section1-p3 {
	font-size: 1.8rem;
}
  
  .section1-p2 {
	font-size: 2.3rem;
}
  
  .section1-img {
	width: 48rem;
	margin-top: -10rem;
  margin-left: 35%;
    max-width: 10000rem;
}

  }
  
.section2 {
	background-color: #FFFFFF;
  padding-top: 5rem;
}

.section2-contentarea {
  max-width: 59rem;
  margin: 0 auto;
}


.section2-h1 {
	font-family: "titlefont";
	font-size: 2.5rem;
	font-weight: 100;
	padding-top:10rem;
  text-align: left;
  margin-bottom: 0rem;
  font-size:min(7vw,3.6rem);
}

.section2-contentwrapper {
	  display: flex;
  flex-direction: column;
  margin: 0 5% 0 5%;
  display: inline-block;
}

.section2-contentwrapper2 {
  max-width: 65rem;
  padding-right: 7rem;
}

.section2-kumo2-position {
  display: none;
}

.section2-yuge {
	width: 5rem;
	position: relative;
	z-index: 2;
	display: block;
	margin:0 70% 0 auto;
	padding-top: 6rem;
  margin-bottom: 3rem;
}

.section2-banndai-position {
	text-align: left;
	margin-top: -1.5rem;
  margin-left: 5rem;
}

.section2-banndai {
width: 80%;
position: relative;
z-index: 1;
max-width: 27.5rem;
}

.section2-kumo1 {
  animation: fuwafuwa 10s ease-in-out infinite alternate;
  background: url( "../images/main__section1__kumo6__pc.png") no-repeat center center / 10rem auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  width: 100%;
  height: 70px;
  margin-top: 13px;
position: relative;
z-index: 2;
}
 
@keyframes fuwafuwa {
0% {
  transform: translate(20%,0) rotate(-7deg);
}
	
  100% {
  transform: translate(-40%,0) rotate(7deg);
}
}

.section2-zyaguti-position {
	text-align: left;
	margin-top: 6rem;
}

.section2-zyaguti {
	width: 53%;
  max-width: 20rem;
	
}

.section2-kohaku {
	width: 50%;
	margin-left: 60%;
  padding-top: 1rem;
	position: relative;
	z-index: 2;
	display: block;
  max-width: 19.5rem;
}

.section2-p1 {
	font-size: 1.6rem;
	font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 200%;
	padding-top: 5.5rem;
	text-align: left;
}

.section2-p4 {
	font-size: 1.6rem;
	font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 200%;
	padding-top: 0rem;
	text-align: left;
}

.section2-p2 {
	text-align: left;
	font-size: 1.6rem;
	font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 200%;
  display: block;
}

.section2-red {
	color: #ff0000;
  	font-size: 1.6rem;
	font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 200%;
  
}

.section2-p3-position {
	margin-top: 2rem;
	text-align: left;
}

.section2-p3 {
	margin-top: 4.5rem;
	font-size: 1.6rem;
	font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 200%;
	text-decoration: underline;
}

.section2-wagumo1-position {
	text-align: right;
	margin-top: -3rem;
}

.section2-wagumo1 {
	width: 40%;
	animation: fuwafuwa2 6.5s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}

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

.section2-wagumo2-position {
  display: block;
	text-align: left;
	padding-top: 8rem;
}

.section2-wagumo2 {
	width: 32%;
  max-width: 20rem;
animation: fuwafuwa3 6s ease-in-out infinite alternate;
transition: 9s ease-in-out;
}

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

.section2-kumo2-position {
  display: block;
	text-align: right;
	margin-top: -4rem;
}

.section2-kumo2 {
	width: 27%;
  max-width: 22rem;
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);
  }
}

.section2-yuge2 {
  display: none;
}

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

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

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

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

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

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

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

@media(min-width:1300px) {
  
.section2 {
	background-color: #FFFFFF;
  padding-top: 25rem;
}
  
  .section2-contentarea {
      display: flex;
  flex-direction:row-reverse;
    max-width: 147rem;
  }
  
  .section2-PC-right {
    display: inline-block;
    padding-right: 5rem;
  }
  
    .section2-PC-left {
    width: 60%;
      max-width: 10000rem;
  }

.section2-h1 {
	font-family: "titlefont";
	font-size: 4rem;
	font-weight: 100;
	width: 50rem;
	padding-top:0rem;
	margin: 0 auto 0 0;
  padding-top: 4rem;
}

.section2-contentwrapper {
  margin: 0 5% 0 5%;
	  display: flex;
  justify-content: center;
}
  
  .section2-yuge {
    display: none;
  }

.section2-yuge2 {
	width: 7.5rem;
	position: relative;
	z-index: 2;
	display: block;
	margin:0 30% 0 auto;
	padding-top: 6rem;
}

.section2-banndai-position {
	text-align: left;
	margin-top: -1.5rem;
    margin-left: 0rem;
}

.section2-banndai {
width: 27rem;
position: relative;
z-index: 1;
margin-left: 45%;
max-width: 10000rem;
}
  
  .section2-kumo1 {
  display: none;
  }

  .section2-kumo1-PC {
    display: flex;
    width: 20rem;
    margin-top: -20rem;
    position: relative;
    z-index: 0;
	animation: fuwafuwa5 8s ease-in-out infinite alternate;
	transition: 6s ease-in-out;
  }
	
@keyframes fuwafuwa5 {
0% {
  transform: translate(70%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}
  
.section2-kumo1-position {
	text-align: left;
	margin-top: -7rem;
}

.section2-kumo1 {
width: 11%;
position: relative;
z-index: 2;
}

.section2-zyaguti-position {
	text-align: left;
	margin-top: -5rem;
}

.section2-PC-zyaguti {
  display: block;
	width: 20rem;
  margin-top: -0rem;
  margin-left: 20%;
}
  
  .section2-zyaguti {
    display: none;
  }

.section2-kohaku {
	width: 16rem;
	position: relative;
	z-index: 2;
	display: block;
  margin-left: 75%;
  margin-top: 3rem;
  max-width: 10000rem;
   padding-top: 0rem;
}

.section2-p1 {
	font-size: 1.8rem;
	font-weight: 600;
  line-height: 200%;
	padding-top: 5.5rem;
	text-align: left;
}
  
.section2-p4 {
	font-size: 1.8rem;
	font-weight: 600;
  line-height: 200%;
	padding-top: 0rem;
	text-align: left;
}
  
.section2-p3 {
	font-size: 1.8rem;
	font-weight: 600;
  line-height: 200%;
	text-align: left;
}

.section2-p2 {
	text-align: left;
	font-size: 1.8rem;
	font-weight: 600;
}

.section2-red {
	color: #ff0000;
}

.section2-p3-position {
	margin-top: 2rem;
	text-align: left;
}

.section2-p3 {
	margin-top: 4.5rem;
	font-size: 1.6rem;
	font-weight: 600;
	text-decoration: underline;
}
  
.section2-wagumo1-PC {
  display: block;
  width: 23.5rem;
  margin: 20rem 20rem 0rem 25rem;
animation: fuwafuwa6 10s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}
	
@keyframes fuwafuwa6 {
0% {
  transform: translate(-130%,0) 
}
	
  100% {
  transform: translate(0%,0)
}
}

.section2-wagumo1-position {
	text-align: right;
	margin-top: -1rem;
}

.section2-wagumo1 {
	display: none;
}

.section2-wagumo2-position {
	text-align: left;
	padding-top: 6rem;
}

.section2-wagumo2 {
	display: none;
}
  
.section2-wagumo2-PC {
  display: block;
  width: 20rem;
  padding-top: 11rem;
  margin-left: 60%;
animation: fuwafuwa8 10s ease-in-out infinite alternate;
transition: 1.5s ease-in-out;
}
	
@keyframes fuwafuwa8 {
0% {
  transform: translate(40%,0) 
}
	
  100% {
  transform: translate(-10%,0)
}
}

.section2-kumo2-position {
	text-align: right;
	margin-top: -4rem;
}

.section2-kumo2 {
	display: none;
}
  
  .section2-kumo2-PC {
    display: block;
    width: 20rem;
    padding-top: 2rem;
	 animation: fuwafuwa7 3s ease-in-out infinite alternate;
	 transition: 1.5s ease-in-out;
  }

	@keyframes fuwafuwa7 {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}
  
  .section2-contentwrapper {
    display: none;
  }

  .section2-contentwrapper-PC {
    display: inline-block;
  }
  
}

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

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

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

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

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

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

.section3-img2 {
	width: 100%;
	height: auto;
	padding-top: 10rem;
}

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

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

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

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

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

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

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

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

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

.section4-title-position {
display:flex;
justify-content: center;
}

.section4-logo {
  width: 8rem;
}

.section4-p {
  display: inline-block;
}

.section4-h1-position {
  display: inline-block;
}


.section4-h1 {
	font-family: "titlefont";
	font-size: 2.5rem;
	font-weight: 100;
	writing-mode: vertical-rl;
	text-align: left;
  padding-top: 3rem;
}

.section4-h1-fontchange {
	font-family: "ab-kirigirisu";
	font-size: 3rem;
	line-height: 180%;
}

.section4-p {
  padding-top: 15rem;
  font-size: 1.6rem;
	font-weight: 600;
	writing-mode: vertical-rl;
	text-align: left;
  padding-right: 2rem;
  letter-spacing: 0.1em;
line-height: 200%;
  height: 60rem;
}

.section4-link {
  font-size: 1.6rem;
  text-decoration: underline;
  display: block;
  margin-right: 20%;
  font-weight: 600;
  padding-top: 4rem;
  letter-spacing: 0.1em;
line-height: 200%;
}

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

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

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

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

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

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



@media(min-width: 1300px) {
  
  .section4 {
	background-color: #ffffff;
	padding-top: 17rem;
    display: flex;
    justify-content: center;
  
}
  
  .section4-contentwrapper {
    width: 120rem;
    margin: 0 auto;
      display: flex;
  flex-direction:row-reverse;
    justify-content:center;
    
  }

.section4-title-position {
display:flex;
justify-content: center;
  padding-right: 20rem;
}

.section4-logo {
  width: 12.5rem;
}

.section4-h1 {
	font-family: "titlefont";
	font-size: 3.5rem;
	font-weight: 100;
	writing-mode: vertical-rl;
	text-align: left;
  padding-top: 3rem;
}

.section4-h1-fontchange {
	font-family: "ab-kirigirisu";
	font-size: 4rem;
	line-height: 180%;
}

.section4-p {
  padding-top: 25rem;
  font-size: 1.8rem;
	font-weight: 600;
	writing-mode: vertical-rl;
	text-align: left;
  padding-right: 5rem;
  line-height: 200%;
}

.section4-link {
  font-size: 1.8rem;
  text-decoration: underline;
  display: block;
  margin-right: 57%;
  font-weight: 600;
  padding-top: 4rem;
}

.section4-img1 {
display: none; 
}

.section4-img2 {
display: none;
}
  
.section4-img1-PC {
  display: inline-block;
  width: 27rem;
  margin-left: -11rem;
  margin-right: 13rem;
  padding-top: 30rem;

}

.section4-img2-PC {
  display: inline-block;
  width: 21rem;
  margin-right: 0rem;
    position: relative;
  z-index: 2;
  margin-top: -10rem;
}

.section4-img3 {
  width: 15rem;
      display: block;
  margin-left: 8rem;
    position: relative;
  z-index: 3
}

}


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

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

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

.section5-list {
  font-size: 1.6rem;
  list-style: none;
  padding-top: 4rem;
  line-height: 200%;
  font-weight: 600;
letter-spacing: 0.1em;
  width: 80%;
  margin: 0 auto;
}

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

.section5-h2__plus{
  font-size: 1.5rem;
  display: inline-block;
  text-align: center;
  padding-top: 1rem;
}

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

.section5-list2 {
width: 100%;
  margin: 0 auto;
  list-style: none;
  padding-top: 4rem;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
}

.section5-list2-position1 {
    display: flex;
  justify-content: space-between;
}

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

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

}

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

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

.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%;
}

@media(min-width: 1300px) {

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

.section5-contentwrapper {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

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

.section5-list {
  font-size: 2rem;
  list-style: none;
  padding-top: 1.5rem;
  text-align: left;
  line-height: 150%;
  width: 70%;
}

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

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

.section5-list2-position {
  text-align: center;
  line-height: 150%;
}

.section5-list2 {
    text-align: left;
  display: inline-block;
  font-size: 2rem;
  list-style: none;
  padding-top: 1.5rem;
  line-height: 150%;
  width: 70%;
}


.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%;
}
}

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

.section6-contentarea {
  max-width: 60rem;
  margin: 0 auto;
}

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

.section6-h1 {
  font-family:"titlefont";
	font-size: min(7vw,3.6rem);
	font-weight: 100;
	width: 45%;
	border-bottom: dashed 1px #333333;
	padding-bottom: 2rem;
	margin: 0 auto 0 2rem;
}

.section6-p1 {
  padding-top: 4rem;
  margin: 0 2rem;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  text-align: left;
}

.section6-p3 {
  padding-top: 0rem;
  margin: 0 2rem;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  text-align: left;
}

.section6-p2 {
  padding-top: 2.5rem;
  margin: 0 2rem;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  text-align: left;
}

.section6-adress {
  text-align: left;
  display: block;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  font-weight: 600;
  margin: 0 2rem;
}

.section6-link {
font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  display: block;
  padding-top: 2.5rem;
  text-decoration: underline;
  margin: 0 auto 0 2rem;
  width: 23rem;
}

.section6-img1 {
  width: 25rem;
  display: block;
  margin: 0 2rem;
  padding-top: 4rem;
}

.section6-img2 {
  padding-top: 2rem;
  width: 25rem;
  display: block;
  margin: 0 2rem;
  text-align: right;
  margin-left:auto;
}

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

.section6-img2-position {
  margin: 0 0 0 auto;
}

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

  .section6-contentarea {
  max-width: 10000rem;
}
  
  .section6-right {
    display: inline-block;
    max-width: 10000rem;
  }
  
  .section6-left {
    display: inline-block;
    width: 50%;
    margin-right: 13rem;
  }
  
.section6-h1 {
  font-family:"titlefont";
	font-size: 4rem;
	font-weight: 100;
	width: 27rem;
	border-bottom: dashed 1px #333333;
	padding-bottom: 2rem;
	margin: 0 auto 0 2rem;
}

.section6-p1 {
  padding-top: 4rem;
  margin: 0 2rem;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
  line-height: 200%;
}
  
.section6-p3 {
  padding-top: 0rem;
  margin: 0 2rem;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
  line-height: 200%;
}

.section6-p2 {
  padding-top: 2.5rem;
  margin: 0 2rem;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
  line-height: 200%;
}

.section6-adress {
  text-align: left;
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 2rem;
}

.section6-link {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  padding-top: 2.5rem;
  text-decoration: underline;
  margin: 0 auto 0 2rem;
  width: 23rem;
}

.section6-img1 {
  width: 35rem;
  display: block;
  margin: 0 0rem;
  padding-top: 0rem;
}

.section6-img2 {
  padding-top: 5rem;
  width: 35rem;
  display: block;
  margin: 0 0 0 auto;
  text-align: right;
  margin-left:7rem;
}

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

.section6-img2-position {
  margin: 0 0 0 auto;
}
  
}

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

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

.section7-h1 {
  font-family:"titlefont";
	font-size: min(7vw,3.6rem);
	font-weight: 100;
	width: 40%;
	border-bottom: dashed 1px #333333;
	padding-bottom: 2rem;
	margin: 0 auto 0 0;
}

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

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

.section7-adress {
  padding-top: 5rem;
  text-align: left;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  display: block;
}

.section7-tell {
  padding-top: 2rem;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  text-align: left;
  display: block;
}

.section7-mail {
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  text-align: left;
  display: block;
}

.section7-storetime {
  padding-top: 2rem;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  text-align: left;
  display: block;
}

.section7-storetime2 {
  padding-top: 0rem;
  font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.1em;
line-height: 200%;
  text-align: left;
  display: block;
}

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

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

.section7-contentwrapper {
  width: 120rem;
  text-align: left;
    padding: 0 0rem;
  max-width: 10000rem;
}

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

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

.section7-text {
  display: inline-block;
  margin-left: 10rem;
}

.section7-adress {
  padding-top: 5rem;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
  display: block;
}

.section7-tell {
  padding-top: 2rem;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
  display: block;
  line-height: 180%;
}

.section7-mail {
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
  display: block;
  line-height: 180%;
}

.section7-storetime {
  padding-top: 2rem;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
  display: block;
  line-height: 180%;
}
  
.section7-storetime2 {
  padding-top: 0rem;
  font-size: 1.8rem;
  text-align: left;
  font-weight: 600;
  display: block;
  line-height: 180%;
}

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

.footer {
  background-image: url( "../images/main__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;
  font-weight: 600;
  color: #ffffff;
  line-height: 250%;
  text-decoration: none;
  list-style: none;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.top__news__qr {
  padding-top:5rem; 
  margin: 0 auto;
}

@media(min-width: 1300px){
  
  .top__news__qr {
  position: absolute;
  top:-50rem;
    left: 70%;
    width:20rem; 
}
  
  .footer-contentwrapper {
    max-width: 146.5rem;
    margin: 0 auto;
      display: flex;
  justify-content: space-between;
    padding: 11rem 5rem ;
  }
  
  .footer {
  background-image: url( "../images/main__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;
}
  
}



















