﻿@charset "UTF-8";

/* PC&SP共通CSS START */
#wrap {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}

#wrap .layer {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 72px;
  left: 0;
}

#wrap .layer #mainVisual {
  width: 100%;
  position: relative;
}

#wrap .layer #mainVisual ul.slider button {
  display: none!important;
}

#wrap .layer #mainVisual .btn a {
  background-color: #fff;
  color: #444;
  opacity: 0.5;
  font-size: 0.8125em;
  padding: 12px 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#wrap section {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

#wrap section#about {
  padding: 200px 0 65px;
}

#wrap section .sectionInner {
  width: 60%;
  margin: 0 auto;
}

#wrap section .sectionInner h2 {
  font-size: 2em;
  margin: 0 0 50px;
  text-align: center;
}

#wrap section .sectionInner h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: #b4c7bb;
  margin: 10px auto 0;
}

#wrap section .sectionInner .col2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
  
#wrap section .sectionInner .col2 .col {
  width: calc(50% - (0.5 * 66px));
}
  
#wrap section .sectionInner .col2 .col p:first-child {
  font-size: 1.125em;
  margin: 0 0 20px;
}
  
#wrap section .sectionInner .col2 .col p:nth-child(2) {
  font-size: 0.8125em;
  margin: 0 0 20px;
}
  
#wrap section .sectionInner .col2 .col dl dt {
  font-size: 0.8125em;
  font-weight: 600;
}

#wrap section .sectionInner .col2 .col dl dd {
  font-size: 0.8125em;
}

#wrap section .col6 {
  width: 100%;
  display: flex;
}

#wrap section .col6 .col {
  width: calc(100% / 6);
}

#wrap section .col6 .col a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

#wrap section .col6 .col a::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(180, 199, 187, 0.5);
  opacity: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

#wrap section .col6 .col a span {
	font-size: 0.8125em;
	text-align: center;
	color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

#wrap section#news .sectionInner {
  padding: 150px 0;
}

#wrap section#news .sectionInner .logo {
  max-width: 400px;
  margin: 0 auto;
}

#wrap section#news .newsBlock {
  background-color: #444;
}

#wrap section#news .newsBlock .newsBlockInner {
  width: 60%;
  margin: 0 auto;
  padding: 60px 0;
}

#wrap section#news .newsBlock .newsBlockInner .col2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#wrap section#news .newsBlock .newsBlockInner .col2 .col dl dt,
#wrap section#news .newsBlock .newsBlockInner .col2 .col dl dd {
  font-size: 1.125em;
  color: #fff;
}

#wrap section#news .newsBlock .newsBlockInner .col2 .col dl dt {
  margin: 0 0 10px;
}

#wrap section#news .newsBlock .newsBlockInner .col2 .col .btn a {
  display: inline-block;
  border: solid 1px #b4c7bb;
  color: #b4c7bb;
  padding: 10px 35px;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

#wrap section#sns {
  width: 100%;
  background-color: #b4c7bb;
}

#wrap section#sns .sectionInner {
  width: 60%;
  margin: 0 auto;
  padding: 50px 0;
}

#wrap section#sns .sectionInner .col2 {
  display: flex;
  justify-content: center;
}

#wrap section#sns .sectionInner .col2 .col {
  width: auto;
}

#wrap section#sns .sectionInner .col2 .col:first-child {
  margin-right: 40px;
}

#wrap section#sns .sectionInner .col2 .col a {
  color: #fff;
}

#wrap section#sns .sectionInner .col2 .col a i {
  font-size: 3em;
}

#wrap section#sns .sectionInner .col2 .col a span {
  display: none;
}

#wrap section#shop .sectionInner {
  padding: 200px 0;
  text-align: center;
}

#wrap section#shop .sectionInner p a {
  color: #b4c7bb;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

/* PC&SP共通CSS END */

/* PCのみCSS START */
@media screen and (min-width: 1025px) {
  #wrap section .col6 .col a:hover::before,
  #wrap section .col6 .col a:hover span {
    opacity: 1;
  }

  #wrap section#news .newsBlock .newsBlockInner .col2 .col .btn a:hover {
    background-color: #b4c7bb;
    border: solid 1px #b4c7bb;
    color: #fff;
  }

  #wrap section#shop .sectionInner p a:hover {
    color: #000;
  }

}
/* PCのみCSS END */

/* タブレットのみCSS START */
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #wrap section .col6 {
    flex-wrap: wrap;
  }
  
  #wrap section .col6 .col {
    width: calc(100% / 3);
  }
}
/* タブレットのみCSS END */

/* タブレット＆SP CSS START */
@media screen and (max-width: 1024px) {
  #wrap .layer {
    height: auto;
  }
  
  #wrap section#about {
    padding: 100px 0 65px;
  }
  
  #wrap section#about .sectionInner {
    width: 100%;
    padding: 0 30px;
  }
  
  #wrap section#about .sectionInner .col2 {
    flex-direction: column;
  }
  
  #wrap section#about .sectionInner .col2 .col {
    width: 100%;
  }
  
  #wrap section#about .sectionInner .col2 .col:first-child {
    margin: 0 0 40px;
  }
  
  #wrap section#news .newsBlock .newsBlockInner .col2 {
    flex-direction: column;
  }
  
  #wrap section#news .newsBlock .newsBlockInner .col2 .col:first-child {
    margin-bottom: 20px;
  }
  
  #wrap section#news .newsBlock .newsBlockInner .col2 .col dl {
    text-align: center;
  }

}
/* タブレット＆SP CSS END */

/* SPのみCSS START */
@media screen and (max-width: 599px) {  
  #wrap section .sectionInner h2 {
    font-size: 1.375em;
  }
  
  #wrap section .sectionInner .col2 {
    flex-direction: column;
  }
  
  #wrap section .sectionInner .col2 {
    flex-direction: column;
  }
  
  #wrap section .sectionInner .col2 .col {
    width: 100%;
  }
  
  #wrap section .col6 {
    flex-direction: column;
  }
  
  #wrap section .col6 .col {
    width: 100%;
  }
  
  #wrap section#news .newsBlock .newsBlockInner {
    width: 100%;
  }
  
  #wrap section#sns .sectionInner .col2 {
    flex-direction: row;
  }
  
  #wrap section#shop .sectionInner {
    padding: 100px 0;
  }
}