@charset "UTF-8";
/*******************************
BaseCss
*******************************/
:root {

}

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,p,blockquote,table,th,td,figure {
	margin: 0;
	padding: 0;
}
body{
	font-weight: 500;
	font-style: normal;
	width : 100%;
	min-height: 100vh;
}

img {
	border: 0;
  width: 100%;
	max-width: 100%;
  height: auto;
	vertical-align: bottom;
}

h1,h2,h3,h4,h5,h6 {
	clear: none;
}

h1,h2,h3,h4,h5,h6,p,pre,blockquote,address,ul,dl,ol,th,em {
	font-size: 100%;
	font-weight: 500;
	font-style: normal;
}

ul,dl,ol {
	list-style-type: none;
	list-style-position: outside;
	text-indent: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

th,td {
	text-align: left;
	vertical-align: top;
}

input,select,textarea {
	font-size: 100%;
}

pre,code,kbd,samp,tt {
	font-family: monospace;
}

.clear {
	clear: both;
	height: 0;
	line-height:0;
	overflow: hidden;
}

a{
	outline:none;
}

/* ClearFix */
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix { display: inline-block; }
/*\*/
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}
/**/

.noscript{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	background:#F00;
	color:#fff;
	padding:20px;
}

body{
	text-align:center;
	font-size: 16px;
	font-family:  "Zen Kaku Gothic Antique",
                "Yu Gothic",
                YuGothic,
                "Hiragino Sans",
                Meiryo,
                sans-serif;
	min-width: auto;
	-webkit-text-size-adjust: 100%;
	position: relative;
}

html,body{
    overflow-x: clip;
}

a{
	text-decoration:none;
	color: var(--Txtcolor);
}
a, a img{
    transition: all 300ms 0s ease;
}
a:hover{
    color: var(--Maincolor);
}
/*a:hover img{
    opacity: .6;
}*/
a:focus, *:focus { outline:none; }
.underline{
	text-decoration: underline;
}

p{
    text-align: left;
    line-height: 1.8;
}


/*******************************
LoadingCss
*******************************/
#loading {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #fff;
    opacity: 1.0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

#loading .ball{
	border-radius: 100%;
	margin: 2px;
	border: 2px solid #000;
	border-bottom-color: transparent;
	height: 26px;
	width: 26px;
	display: inline-block;
	-webkit-animation: rotate .75s 0s linear infinite;
	animation: rotate .75s 0s linear infinite;
	position: absolute;
	top: 50%;
    left: 47%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@keyframes rotate{
	0%{-webkit-transform:rotate(0);transform:rotate(0)}
	50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}
	100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}
}


/*******************************
PageCss
*******************************/

/*PC setting*/
#home{
  background-color: #f7efc4;
}

#pc-view{
  width: min(100%, 1600px);
  margin: 0 auto;
  display: block;
}

.column-left,
.column-right{
  display: none;
}

.view-body{
  width: 100%;
	background-color: #fff;
}

.view-body-inner{
  min-height: 100vh;
}

.builder{
  max-width: 90%;
  margin: 0 auto;
}

.spbtn{
display: none;
position: absolute;
top: 20px;
right: 5%;
z-index: 9999;
cursor: pointer;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 26px;
  height: 19px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 8px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(14px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-21px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

.sp-page-navigation{
  background-color: rgba(0, 0, 0, 0.6);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s ease, opacity .3s ease, visibility 0s linear .45s;
}

.sp-page-navigation.active{
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform .45s ease, opacity .3s ease;
}

.sp-page-navigation .inner{
  background-color: #f7efc4;
  padding-top: 50px;
  padding-bottom: 20px;
  margin-left: 20%;
}

.sp-page-navigation nav{
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  transform: translateX(24px);
  opacity: 0;
  transition: transform .45s ease .08s, opacity .35s ease .08s;
}

.sp-page-navigation.active nav{
  transform: translateX(0);
  opacity: 1;
}

.sp-page-navigation nav a{
  display: block;
  text-align: left;
  color: #000;
  font-family: "Jost",sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1em;
  margin-bottom: 40px;
}

.sp-page-navigation nav a span{
    font-size: 22px;
    line-height: 1em;
    font-weight: 600;
    display: inline-block;
    transform: translateY(-0.06em);
  }

body.sp-nav-open{
  overflow: hidden;
}

body.sp-nav-open .spbtn{
  position: fixed;
  top: 25px;
  right: 5%;
}

.pagetop{
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 40px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease, visibility 0s linear 300ms;
}

.pagetop.fixed{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease;
}

@media screen and (min-width: 769px){
  #pc-view{
    display: grid;
    grid-template-columns: 1fr 480px 1fr;
    gap: 30px;
    align-items: start;
    padding: 0 25px;
  }

  .column-left,
  .column-right{
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
  }

  .sticky-panel{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .pc-side-figure{
    width: 50%;
  }

   .column-left .pc-side-figure{
    margin-bottom: -2vw;
  }

  .pc-side-figure img{
    min-width: 115px;
    width: 100%;
    height: auto;
    display: block;
  }

  .pc-side-title{
    width: 100%;
    margin: 0 auto;
  }

  .pc-side-title img{
    min-width: 230px;
  }

  .pc-side-nav{
    width: min(100%, 210px);
    margin: 0 auto 20px;
    display: grid;
    gap: 15px;
  }

  .pc-side-nav a{
    position: relative;
    z-index: 10;
		white-space: nowrap;
    padding: 8px 20px 6px;
		display: block;
		text-align: left;
    border: 2px solid #231815;
    background: rgba(247, 239, 196, 0.6);
    color: #000;
    font-family: "Jost", sans-serif;
    font-size: 2.7vh;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1em;
  }

  .pc-side-nav a span{
    font-size: 2.2vh;
    line-height: 1em;
    font-weight: 600;
    display: inline-block;
    transform: translateY(-0.06em);
  }

  .pc-side-nav a:hover{
    opacity: 1;
    background: #231815;
    color: #fff;
  }

  .view-body{
    width: 100%;
    min-width: 0;
    position: relative;
    z-index: 1;
  }

  .view-body-inner{
    min-height: 200vh;
    background: transparent;
  }

  .pagetop{
    right: calc(50% - 240px + 20px);
  }
}

@media screen and (max-width: 768px){
  #pc-view{
    padding: 0;
  }

  .view-body-inner{
    min-height: 100vh;
  }

  .spbtn{
    display: block;
  }
}


/*PC setting*/
.page-header{
  width: 100%;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}

.page-header h1{
  width: 100px;
}

.spbtn{
  flex: 0 0 auto;
}

#main-hero{
  position: relative;
  z-index: 1;
}

#main-hero .swiper-slide img{
  display: block;
}

.main-hero-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 auto 24px;
  font-size: 0;
}

.main-hero-pagination.swiper-pagination-lock{
  display: none;
}

.main-hero-pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  margin: 0;
  background: #fff;
  opacity: 1;
  border: 2px solid #000;
  transition: transform 300ms ease, background-color 300ms ease;
}

.main-hero-pagination .swiper-pagination-bullet-active{
  background: #000;
  transform: scale(1.15);
}

.bg-wrap{
  background-image: url(../img/all-bg.jpg);
  background-position:top 200px center;
  background-repeat: no-repeat;
  background-size: cover;
}

#conept{
  padding-top: 60px;
  padding-bottom: 280px;
  position: relative;
  z-index: 2;
  margin-top: -130px;
  background-image: url(../img/concept-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.concept-content{
  padding: 10% 5% 0;
  text-align: center;
  background-color: #fff;
}

.concept-content .title-img img{
  max-width: 100%;
  margin: 0 auto;
}

.concept-content p{
  padding: 20px 0;
  font-size: 16px;
  text-align: center;
}

.sub-title{
  font-family: "Jost", sans-serif;
  display: inline-block;
  background-color: #fff;
  padding: 12px 30px;
  font-size: 36px;
  line-height: 1.1em;
  font-weight: 600;
  border-radius: 100px;
}

.sub-title span{
  display: inline-block;
  font-family: "Zen Kaku Gothic Antique","Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 500;
  transform: translateY(-0.1em);
}

.sub-title span.momo{
  font-size: 24px;
  line-height: 1em;
  font-family: "Zen Kaku Gothic Antique","Noto Sans JP", sans-serif;
  font-weight: 500;
}

#gallery{
  position: relative;
  z-index: 3;
  margin-top: -180px;
}

.gallery-read p{
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 30px;
  color: #fff;
}

.gallery-read p.title{
  margin: 20px 0;
  display: inline-block;
  font-size: 24px;
  line-height: 1.8em;
  font-weight: bold;
  border-bottom: 2px solid #fff;
}

.mv-btn{
  display: block;
  position: relative;
}

.mv-btn::before{
  content: "";
  width: 80px;
  height: 80px;
  background-image: url(../img/mv-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top:calc(50% - 40px);
  left:calc(50% - 40px);
}

.gallery-content .builder .title{
  color: #fff;
  font-size: 24px;
  line-height: 1.2em;
  font-weight: 500;
  text-align: center;
  margin: 30px 0;
}

.gallery-content .builder .block{
  margin-bottom: 20px;
}

.gallery-content .builder .block p{
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}

.youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#howto{
  padding-top: 80px;
}

.howto-slider-wrap{
  position: relative;
  padding: 0 10px;
}

.howto-slider{
  position: relative;
}

.howto-slider .swiper-slide img{
  display: block;
}

.howto-slider-arrow{
  position: absolute;
  top: 50%;
  z-index: 2;
  cursor: pointer;
  width: 30px;
  height: 30px;
  margin-top: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translateY(-50%);
}

.howto-slider-arrow::after{
  content: none;
}

.howto-slider-prev{
  left: -8px;
  background-image: url(../img/slide-arrow-left.png);
}

.howto-slider-next{
  right: -8px;
  background-image: url(../img/slide-arrow-right.png);
}
.howto-slider .swiper-slide{
  background: #fff;
  padding: 20px 0;
}

.howto-slider .swiper-slide iframe{
  width: 90%;
  margin: 0 5%;
  aspect-ratio: 325/600;
  border: 0;
  border-radius: 10px;
}

.howto-slider .swiper-slide .howto-slider-txt{
  width: 90%;
  margin: 0 5%;
  display: grid;
  gap: 10px;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding-top: 10px;
  text-align: left;
}

.howto-slider .swiper-slide .howto-slider-txt .txt01{
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.howto-slider .swiper-slide .howto-slider-txt .txt02{
  display: block;
  font-size: 32px;
  font-weight: 600;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}

.howto-slider .swiper-slide .howto-slider-txt .txt03{
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.howto-read p{
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
  margin-top: 20px;
  margin-bottom: 30px;
}

#howto .links{
  display: block;
  text-align: center;
  padding-top: 30px;
}

#howto .links a{
  display: inline-block;
  background-color: #b8b3b3;
  color: #fff;
  padding: 5px 10px;
  min-width: 240px;
}


#present{
  padding-top: 80px;
}

.present-read p{
  text-align: center;
  font-size: 16px;
  line-height: 1.8em;
  margin-top: 20px;
  margin-bottom: 30px;
}

#present .links{
  display: block;
  text-align: center;
  padding-top: 30px;
}

#present .links .xlink-btn{
  position: relative;
  display:inline-block;
  text-align: left;
  background-color: #000;
  color: #fff;
  padding: 20px 50px 20px 30px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  min-width: 320px;
}

#present .links .xlink-btn::after{
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/icon-x.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 20px);
  right: 20px;
}

#product{
  padding-top: 80px;
  padding-bottom: 30px;
}

#product .builder{
  margin-top: 32px;
}

.product-block{
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
}

.product-block .product-title{
  position: relative;
  display: block;
  padding-left: 10px;
  margin-bottom: 20px;
  color: #000;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4em;
  text-align: left;
  letter-spacing: .01em;
  border-left: 6px solid #000;
}

.product-block .product-title span{
  font-size: 16px;
}

.product-block .product-detail{
  display: block;
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  text-align: center;
  letter-spacing: .01em;
  border-bottom: 1px solid #000;
}

.product-block .product-detail .read{
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 5px;
}

.product-block .product-detail .caption{
  font-size:12px;
}

.product-block .product-caption{
  display: grid;
  grid-template-columns: max-content 1fr;
  text-align: left;
  padding-top: 12px;
  color: #000;
  font-size: 14px;
  line-height: 1.65em;
}

.product-block .product-caption .col:nth-child(2){
  display: flex;
  flex-wrap: wrap;
}

.product-block .product-caption .col span{
  display: inline-block;
  white-space: nowrap;
}

.product-block .link-btn{
  display: block;
  max-width: 200px;
  margin: 20px auto;
  padding: 8px 15px;
  background: #b8b3b3;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.product-block .shop-links{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  margin-right: -1px;
}

.product-block .shop-links a{
  display: block;
  padding: 8px 10px;
  border: 2px solid #3f3b39;
  background: #fff;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  text-align: center;
  margin-left: -2px;
}

.product-block .shop-links a:only-child{
  grid-column: 1 / -1;
  justify-self: center;
  width: 50%;
}

#colabo{
  background-color:#f7efc4 ;
  padding: 40px 0;
}

#colabo .builder{
  text-align: center;
}

#colabo .title{
  text-align: center;
  font-size: 26px;
  line-height: 1.4em;
  font-weight: 500;
  position: relative;
  margin-bottom: 30px;
  padding: 0 46px;
  display: inline-block;
}

#colabo .title::before,
#colabo .title::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 58px;
  background: #2c2421;
  transform-origin: center;
}

#colabo .title::before{
  left: 18px;
  transform: translateY(-50%) rotate(-21deg);
}

#colabo .title::after{
  right: 18px;
  transform: translateY(-50%) rotate(21deg);
}

#colabo img{
  display: block;
  max-width: 70%;
  margin: 0 auto 30px;
}

#colabo .link-btn{
  display: inline-block;
  margin: 0 auto;
  max-width: 80%;
  background-color: #000;
  color: #fff;
  display: block;
  padding: 5px;
  font-size: 16px;
}

#profile{
  background-color: #fff;
  padding: 40px 0;
}

#profile p{
  text-align: center;
  font-size: 16px;
  line-height: 1.6em;
  padding-top: 20px;
}

#profile .title{
  text-align: center;
  font-size: 26px;
  line-height: 1.4em;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  padding: 0;
}

#profile .title span{
  font-family: "Jost", "Noto Sans JP", sans-serif;
}

#playactive{
  background-color: #0095de;
  padding: 20px 0 40px;
}

#playactive .builder{
  text-align: center;
}

#playactive p{
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.6em;
  padding-top: 0px;
  margin-bottom: 30px;
}

#playactive .link-btn{
  display: inline-block;
  margin: 0 auto;
  max-width: 80%;
  background-color: #000;
  color: #fff;
  display: block;
  padding: 5px;
  font-size: 16px;
}


#page-footer{
  padding: 60px 0 0;
}

#page-footer .layout{
  max-width: 60%;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
}

.sub-links{
  text-align: center;
  margin-bottom: 20px;
}
.sub-links a{
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
}

.copyright{
background-image: url(../img/footer-bg.png);
background-repeat: no-repeat;
background-size: cover;
display: block;
padding: 15px;
font-size: 12px;
text-align: center;
}


@media screen and (max-width: 768px){
#conept{
  margin-top: -30vw;
  padding-top: 60px;
  background-size: 100%;
}

.concept-content{
  padding: 10% 4% 0;
}

.concept-content p{
  font-size: 14px;
}

.sub-title{
  font-size: 32px;
}

.gallery-read p{
  font-size: 14px;
}

.gallery-read p.title{
  font-size: 21px;
}

.gallery-content .builder .title{
  font-size: 21px;
}
.gallery-content .builder .block p{
  font-size: 14px;
}

.howto-read p{
  font-size: 14px;
}

#howto .links a{
 font-size: 14px;
}

.howto-slider .swiper-slide .howto-slider-txt{
  grid-template-columns: 60px 1fr;
}

.howto-slider .swiper-slide .howto-slider-txt .txt01{
  font-size: 18px;
}

.howto-slider .swiper-slide .howto-slider-txt .txt02{
  font-size: 24px;
}

.howto-slider .swiper-slide .howto-slider-txt .txt03{
  font-size: 12px;
  white-space: nowrap;
}

.present-read p{
 font-size: 14px;
}

#present .links .xlink-btn{
  font-size: 16px;
}

.product-block .product-title{
  font-size: 21px;
}

.product-block .product-title span{
  font-size: 14px;
}

.product-block .product-detail{
  font-size: 14px;
}

.product-block .product-detail .caption{
  font-size: 12px;
}
.product-block .product-caption{
  font-size: 12px;
}

.product-block .link-btn{
  font-size: 16px;
}

.product-block .shop-links{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-right: -1px;
}

.product-block .shop-links a{
  font-size: 14px;
}

#colabo .title{
  font-size: 21px;
  padding: 0 35px;
}

#colabo .link-btn{
  max-width: 90%;
  font-size: 14px;
}

#profile p{
  font-size: 14px;
}

#profile .title{
  font-size: 21px;
}

#playactive p{
  font-size: 14px;
}

#playactive .link-btn{
  max-width: 90%;
  font-size: 14px;
}
}
