@charset "utf-8";

html{
  font-size: 62.5%;
}

body{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #C6DADE;
  margin: 0 auto;
}

header{
  background-color: rgba(118, 215, 234, 0.5);
  display: flex;
  /* justify-content: space-between; */
  height: 100px;
  position: relative;
}

h1{
  width: 81px;
  height: 100px;
  margin: 0 auto;
}


.hamburger {
  /* position: fixed; */
  top: 55px;
  left: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 20px;
  width: 45px;
  height: 3.8px;
  border-radius: 10px;
  background-color: #f0f0f0;
  transition: all .4s;}

  .hamburger__line:nth-of-type(1) {
  top: 14px;
}
.hamburger__line:nth-of-type(2) {
  top: 29px;
}
.hamburger__line:nth-of-type(3) {
  top: 44px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(15px) rotate(-45deg);
}
.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-15px) rotate(45deg);
}



.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background-color: #9bd2dd;
  box-shadow: 2px 0 4px rgba(0,0,0,.1);
  transform: translateX(-100%);
  transition: transform .4s;
  z-index: 90;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  margin: 0;
  padding: 100px 0 0;
  list-style: none;
}

.nav__item {
  padding: 0 20px;
}

.nav__link {
  display: block;
  padding: 15px 0;
  color: #666;
  font-size: 2rem;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}



.navicon{
  position: absolute;
  right: 20px;
  width: 150px;
  display: flex;
 justify-content: space-between;
 margin-right: 30px;
 line-height: 70px;
}

.search{
  padding-top: 5px;
}


.sale{
  height: 40px;
  line-height: 35px;
  /* display: flex; */
  background-color: #000;
  color: #fff;
  font-weight: 800;
  font-size: 3rem;
  overflow: hidden;
  width: 100%;
}

.sale p{
    padding-right: 100px;
}

.track {
  display: flex;
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}


.fix {
  position: fixed;   
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;      
}

#index .mainvisual {
  width: 100%;
  height: 790px;
  background-image: url(images/visual_img01.png);
  background-size: cover;
  position: relative;
  z-index: 1;
}



#index .mainvisual p{
  font-family: "Funnel Sans", sans-serif;
  font-style: italic;
  position: absolute;
  right: 0;
  bottom: 30px;
  font-size: 15rem;
  color: #000;
  font-weight: 800;
  text-align: end;
}


/* .lipnavはじまり */
ul{
  list-style-type: none;
}

.lipnav{
  height: 180px;
  background-color: #9bd2dd;

}

.lipnav ul{
  width: 100%;
  padding-top: 40px;
  display: flex;
  justify-content: space-around;
  /* height: 100px; */
}

.lipnav ul li{
  /* width: 100px; */
  background-color: #fff;
  border: #8cb1b9 solid 2px;
  border-radius: 94px;
}

.lipnav ul li a{
  display: block;
  padding-right: 20px;
  line-height: 4.8;
  text-decoration: none;
  color: #EF8468;
  font-weight: 300;
  font-size: 2rem;
}

.lipnav ul li a:hover{
  border-radius: 94px;
  background-color: #f0f0f0;
}

.lipnav ul img{
  margin: 0 20px 0 0;
  border-radius: 50%;
  border: #8cb1b9 solid 1px;
}

.contents{
  /* width: 1440px; */
  margin: 0 auto;
}

section{
  margin: 50px;
}

.sectitle{
display: flex;
position: relative;
}

.btn{
  margin: 10px 0 10px 30px;
  padding: 0 10px;
  background-color: #9bd2dd;
  font-size: 2rem;
  border-radius: 20px;
}

.btn a{
  color: #f0f0f0;
  text-decoration: none;
}

.btn a:hover{
  color: #0a5666;
}

h2{
  font-size: 3rem;
}

.banner{
  margin: 0 auto;
  width: 1000px;
  height: 471px;

}


.slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

/* .newsはじまり */

.info{
  margin: 0 auto;
  width: 1000px;
  height: 200px;
  padding: 10px 30px;
  border: #8cb1b9 solid 2px;
  overflow: auto;
  background-color: #f0f0f0;
}

.info div{
  width: 880px;
  height: 50px;
  border-bottom: dotted #8cb1b9 1px;
  display: flex;
  justify-content: flex-start;
  font-size: 1.8rem;
  line-height: 50px;
}

.info div dt{
  width: 9em;
}

.info div dd{
  width: calc(100% - 9em);
  text-align: justify;
}

/*.info div dt{
  margin-right: 20px;
}*/



/* .shareはじまり */
.allposts{
  width: 100%;
  display: flex;
  justify-content: space-around;
}

/* snsはじまり */
.snsicon{
  text-align: center;
}

.snsicon img{
  padding: 30px;
}


/* footerはじまり */
footer{
  color: #666;
  background-color: #9bd2dd;
  padding: 50px;
  position: relative;
  height: 350px;
  overflow: hidden;
}

.foo{
  display: flex;
  justify-content: space-between; 
}

#footerImg{
  position: absolute;
  top: 50px;
  right: 50px;
}

.foologo_mark{
  position: absolute;
  top: 60px;
  left: 70px;
}

.foologo_type{
  position: absolute;
  top: 250px;
  left: 50px;
}



.local{
  /* margin-right: 50px; */
  display: flex;
  justify-content: space-evenly;
  margin-top: 20px;
}

.lo01{
  /* margin-right: 5rem; */
  font-size: 2rem;
}

.lo02{
  font-size: 1.6rem;
}


.small{
  padding-top: 200px;
  font-size: 40px;
  text-align: center;
}

/* aboutページ*/

#about .contents{
  font-size: 2rem;
  color: #666;
}

#about .contents img{
  border-radius: 150px;
}


#about .mainvisual {
  height: 650px;
  background-image: url(images/visual_img03.jpg);
  background-size: cover;
  background-position: 0 -100px;
  position: relative;
  z-index: 1;
}

#about .mainvisual p{
  font-family: "Funnel Sans", sans-serif;
  font-style: italic;
  position: absolute;
  bottom: 0;
  font-size: 13rem;
  color: #000;
  font-weight: 800;
}

.btnA{
  height: 35px;
  padding: 0 10px;
  background-color: #9bd2dd;
  font-size: 2rem;
  border-radius: 20px;
  position: absolute;
  top: 35px;
  left: 400px;
}

.btnA a{
  color: #f0f0f0;
  text-decoration: none;
}

.btnA a:hover{
  color: #0a5666;
}



/* .pankuzuはじまり */
.pankuzu{
  letter-spacing: 2px;
  padding: 20px 20px 20px 50px;
  background-color: #9bd2dd;
  font-size: 1.8rem;
  color: #666;
}

.pankuzu a{
  color: #666;
  text-decoration: none;
}

.pankuzu a:hover{
  color: #fff;
}

.pankuzu span{
  color: #bd7a6a;
}

.line{
  background-color: #9bd2dd;
  padding: 20px;
}

#hepburn{
  padding: 50px;
  background-color: #e1e1e1;
  color: #666;
  font-size: 3rem;
  text-align: start;
}

h3{
  font-size: 3rem;
  color: #333;
  padding: 20px;
}

.sec00{
  line-height: 2.5;
  text-align: center;
}

.sec00 span{
  margin: 0 20px 0 10px;
}

.sec img{
  float: right;
  margin-left: 30px;
}

#aigis img{
  float: left;
  margin-right: 30px;
}

.number{
  font-size: 4rem;
  color: #f0f0f0;
}

/* productページ */

.introImg{
  /* width: 714px; */
  /* height: 822px; */
  width: 100%;
  height: auto;
}

.intro{
  display: flex;
}

#product_DropDope section{
  margin: 0;
}

.setsumei{
  padding: 50px;
}

.setsumei h2{
  font-size: 5rem;
  font-weight: 900;
  padding: 0 0 20px 0;
}

.setsumei p{
  font-size: 3rem;
  margin-right: 20px;
}

.colorTester{
  display: flex;
  margin: 30px 0;
  
}

.colorTester ul{
width: 160px;
height: 40px;
display: flex;
}

.colorTester ul li{
  width: 40px;
  height: 40px;
  border: #f0f0f0 1px solid;
}

#product_DropDope .btn{
  width: 200px;
  text-align: center;
  font-size: 2rem;
}

.naiyou dt{
  font-size: 2rem;
  margin-bottom: 10px;
}

.naiyou dd{
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.color01{
  background-color: rgb(123, 13, 13);
}

.color02{
  background-color: rgb(215, 84, 84);
}

.color03{
  background-color: rgb(225, 181, 204);
}

.color04{
  background-color: rgb(214, 202, 202);
}

/* タブレット用（481px〜768px） */
@media screen and (max-width: 768px) {
  /* 全体レイアウト調整 */
  body {
    font-size: 1.4rem;
  }

  header {
    height: 80px;
  }

  h1 {
    width: 70px;
    height: auto;
  }

  .nav {
    width: 250px;
  }

  /* メインビジュアル */
  #index .mainvisual {
    height: 500px;
    background-position: center;
  }
  #index .mainvisual p {
    font-size: 8rem;
    bottom: 20px;
  }

  /* ナビゲーション */
  .lipnav {
    height: auto;
    padding: 20px 0;
  }
  .lipnav ul {
    flex-wrap: wrap;
    gap: 20px;
  }
  .lipnav ul li {
    flex: 1 1 calc(33.3% - 20px);
    border-radius: 50px;
    
  }
  .lipnav ul img {
    margin: 0 20px 0 0;
  }
  .lipnav ul li a {
    padding-right: 0;
    /* text-align: center; */
    /* line-height: 1.4; */
    font-size: 1.8rem;
  }

  /* バナー・ニュース */
  .banner {
    width: 90%;
    height: auto;
  }
  .info {
    width: 90%;
    height: auto;
  }
  .info div {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.4;
  }

  /* 投稿一覧 */
  .allposts {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* フッター */
  footer {
    padding: 20px;
    height: auto;
  }
  .foo {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  #footerImg {
    display: none;
  }
  .foologo_mark,
  .foologo_type {
    position: static;
  }

  .foologo_mark{
    text-align: center;
  }
  .small {
    padding-top: 20px;
    font-size: 1.4rem;
  }
}

/* スマホ用（〜480px） */
@media screen and (max-width: 480px) {
  body {
    font-size: 1.2rem;
  }

  header {
    height: 60px;
    position: relative;
  }
  h1 {
    width: 60px;
    position: absolute;
    top: 0;
    left: 200px;
  }
  .navicon{
    margin-right: 0;
    width: 20%;
    position: absolute;
    right: 0;
    line-height: 3.5;
  }


.navicon img{
    width: 60%;
    height: auto;
    margin: 0;
    }
  
  .hamburger {
    top: 20px;
    left: 10px;
    width: 36px;
    height: 36px;
  }
  .hamburger__line {
    left: 10px;
    width: 28px;
    height: 3px;
  }

  .nav {
    width: 200px;
  }

  /* メインビジュアル */
  #index .mainvisual {
    height: 300px;
  }
  #index .mainvisual p {
    font-size: 4rem;
    bottom: 10px;
  }

  /* ナビゲーション */
  .lipnav ul li {
    flex: 1 1 calc(50% - 10px);
    
  }

  /* バナー・ニュース */
  .banner {
    width: 100%;
  }
  .info {
    width: 100%;
    padding: 10px;
  }
  .info div {
    font-size: 1.4rem;
    flex-direction: column;
    line-height: 1.4;
  }
  .info div dt,
  .info div dd {
    width: 100%;
  }

  /* 投稿一覧 */
  .allposts {
    width: 100%;
    gap: 10px;
  }

  /* SNSアイコン */
  .snsicon img {
    width: 60px;
    height: auto;
    padding: 10px;
  }

  /* フッター */
  footer {
    text-align: center;
  }
  .lo01, .lo02 {
    font-size: 1.2rem;
  }
}

