@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #333;
  /* RGB */
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 3.2rem;
  text-align: center;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

a:hover {
  opacity: 0.5;
}
.product-info{
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
line-height: 3.0rem;
}

/*========= ヘッダー ===============*/
.header {
  width: 100%;
  height: 60px;
  border-top: solid 5px #6CEBF0;
  max-width: 1366px;
  margin: 0 auto;
}

.header__content-wrapper {
  position: relative;
}

.header__top-logo {
  position: absolute;
  top: 15px;
  left: 30px;
  width: 115px;
}

/*========= フッター ===============*/
.footer{
  max-width:1366px;
  padding: 40px 30px 20px 30px;
  margin: 0 auto;
  border-top: #6CEBF0 solid 5px;
}
.footer__logo{
  width: 115px;
  margin-bottom: 10px;
  text-align: left;
}
.footer ul{
  text-align: left;
}
.footer_access{
  text-align: left;
  margin-bottom: 20px;
}
.footer__telnumber{
  font-family:'Nunito Sans', sans-serif; 
  font-weight: 800;
  font-size: 1.8rem;
  color: #333;
}
.mail{
  font-family:'Nunito Sans', sans-serif; 
  color: #333;
  font-size: 1.8rem;
}
.footer li a{
  font-family:'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.footer__insta{
  width: 30px;
  margin-top: 10px;
}
@media(min-width:1100px){
  .footer{
    box-sizing: border-box;
    max-width:1366px;
    padding: 40px 0 10px;
    margin: 0 auto;
    border-top: #6CEBF0 solid 5px;
  }

  .footer__wrapper{
    display: flex;
    justify-content: space-between;
  }
  .footer_access{
    margin-bottom: 20px;
    padding-left: 130px;
  }
  .footer ul{
   padding-right:130px; 
   margin-top: -70px;
  }
  .footer__logo{
    width: 180px;
    margin-bottom: 20px;
    padding-left: 130px;
  }
}
small{
  font-family:'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}

.br-pc{
  display: none;
}
@media(min-width:1100px){
  .br-pc{
    display: block;
  }
  .br-sp{
    display: none;
  }
}

/*========= メイン ===============*/
.main {
  background-color: #FFFFFF;
  margin-bottom: 80px;
}
@media(min-width:1100px){
  .main{
  margin-bottom: 100px;
  }
}

/*========= ボタン ===============*/
.btn a {
  display: flex;
  box-sizing: border-box;
  justify-content: space-around;
  align-items: center;
  position: relative;
  padding: 7px 20px 14px 30px;
  width: 160px;
  color: #333;
  font-family: 'Nunito Sans', sans-serif;
  text-align: center;
  text-decoration: none;
  background-color: #F5FF00;
  margin: 0px auto;
  margin-top: 30px;
}

.btn a::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: rgba(0 0 0 / 0);
  border: 1px solid #333;
}

.btn a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}
@media(max-width:1100px){ /*最大1100まではこの形式*/
/*========= ナビゲーション ===============*/
#g-nav {
  margin: 0 auto;
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: rgba(255, 255, 255, 1);
  border-left: #6CEBF0 solid 5px;
  /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

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

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
  width: 250px;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 20px 10px;
  display: block;
  border-bottom: dotted #6CEBF0 2px;
  /*text-transform: uppercase;*/
  letter-spacing: 0.1em;
  font-family: 'Nunito Sans', sans-serif;
  ;
  font-weight: 700;
  font-size: 18px;
}

.g-nav__insta {
  width: 40px;
}

/*========= ナビボタンのためのCSS ===============*/
.openbtn {
  display: block;
  background-color: none;
  right: 0px;
  top: 7px;
  position: absolute;
  z-index: 9999;
  /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 1px;
  background-color: #6CEBF0;
  width: 45%;
}

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

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

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

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

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

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
}
@media(min-width:600px){
  .header__content-wrapper,.footer__wrapper,.footer__logo{
margin: 0px 10%;
    }

}
@media(min-width:1100px) {
.header{
  height: 100px;
  max-width: 1366px;
}
.header__top-logo{
  width: 180px;
  padding-left: 20px;
}
 .header__content-wrapper{
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  height: 100px;
  margin: 10px auto;
  }
  .header__content-wrapper ul{
  display: flex;
    list-style: none;
    margin-top: 24px;
  }
  .g-nav__top{
    display: none;
  }
  .header__content-wrapper li{
    border-left: 2px solid #6CEBF0;
    height: 30px;
    font-family: 'Nunito Sans', sans-serif ;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    font-weight: 700;
    padding: 0 10px;
    width: 130px;
  }
  .header__content-wrapper li:last-child{
    border-right: 2px solid #6CEBF0;
}
.header__content-wrapper li:first-child{
  border-left: none;
}
.header__content-wrapper li a{
padding: 10px 0;
color: #333333;
text-align: center;
text-decoration: none;
font-size: 1.5rem;
}
.g-nav__insta {
  width: 40px;
}
.footer__wrapper,.footer__logo{
  margin: unset;
      }
}


#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#6CEBF0;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
  line-height: normal;
    font-size: 1.3rem;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:20px;
	z-index: 1000;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
/* ＝＝＝＝＝トップに戻る＝＝＝＝＝ */
/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/*　上から下がる動き　*/
.fadeDownTrigger,.flipLeftTrigger{
  opacity: 0;
}
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flipLeft{
  animation-name: flipLeftAnime;
  animation-duration:2s;
  animation-fill-mode:forwards;
  perspective-origin: left center;
  opacity:0;
  }
  
  @keyframes flipLeftAnime{
    from {
     transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
     opacity: 0;
    }
  
    to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
    }
  }