@charset "UTF-8";

/* ベース */

html {
  font-size: 62.5%;
}

body {
  color: #000000;
  text-align: center;
  font-size: 1.4rem;
  font-family: 'Raleway', "Hiragino Kaku Gothic ProN",  Meiryo,  sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.hidden {
  display: none;
}

.inner {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}

.wrapper {
  padding: calc(4vw + 1.8vw * 1.4) 0;
}

.section-title {
  font-family: 'Satisfy', cursive;
  font-size: 4rem;
  letter-spacing: 4px;
  text-align: left;
  border-bottom: 2px solid;
  margin-bottom: 40px;
}

.section-title-right {
  text-align: right;
}

.section-title-center {
  text-align: center;
  border: none;
}

.view-more-btn {
  float: right;
  margin: 10px 0;
  font-size: 1.7rem;
  letter-spacing: 1.7px;
}

.view-more-btn-left {
  float: left;
}

.view-more-btn::after {
  content:"";
  display: block;
  width: 0;
  margin: 0 auto;
  border-bottom: 1px solid;
  transition: width 0.3s ease-in-out;
}

.view-more-btn:hover::after {
  width: 100%;
}

.sp-br {
  display: none;
}

/* ベース(320px-767px) */

@media(max-width: 767px) {

  .wrapper {
    padding: 40px 0;
  }

  .section-title {
    font-size: 3.5rem;
    letter-spacing: 3.5px;
    margin-bottom: 25px;
  }

  .view-more-btn {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }

  .view-more-btn::after {
    display: none;
  }

  .sp-hide {
    display: none;
  }

  .sp-br {
    display: block;
  }

}

/* ローディング画面 */

.loading-contents {
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9000;
}

.loading-contents-item {
  width: 20%;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
}

/* レスポンシブ(768px-1023px) ローディング画面 */

@media(max-width:1023px) {

  .loading-contents-item {
    width: 50%;
  }

}

/* トップジャンプボタン */

.top-jmp-btn {
  position: fixed;
  bottom: 20px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 3rem;
  line-height: 50px;
  color: #000000;
  cursor: pointer;
}

.top-jmp-btn:hover {
  background-color: rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

/* トップジャンプボタン(320px-767px) */

@media(max-width: 767px) {

  .top-jmp-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #000000;
  }

}

/* ヘッダー */

header {
  width: 100vw;
  display: table;
  background-color: rgba(255, 255, 255, 0.3);
  position: fixed;
  top: 0;
  z-index: 110;
}

.site-title {
  display: table-cell;
  width: 20vw;
  padding: 0 3vw;
  vertical-align: middle;
}

.site-title-img {
  display: block;
  width: 100%;
}

.header-nav {
  display: table-cell;
  width: 80vw;
}

.header-nav ul {
  display: flex;
  flex-wrap: wrap;
  width: 80vw;
}

.header-nav ul li {
  flex: auto;
  width: calc(80vw / 6);
  padding: 2vw 0;
}

.header-nav ul li a {
  display: block;
  margin: -2vw 0;
  padding: 2vw 0;
  font-family: 'Satisfy', cursive;
  font-size: 1.8vw;
  letter-spacing: 0.1vw;
}

.header-nav ul li a:hover {
  background-color: rgba(0, 0, 0, 0.6);
  color: #FFFFFF;
}

.header-nav-btn {
  display: none;
}

/* ヘッダー(320px-767px) */

@media(max-width: 767px) {

  header {
    display: block;
  }

  .site-title {
    position: absolute;
    width: 125px;
    padding: 0;
    top: 50%;
    left: 50%;
    margin: -11.165px 0 0 -62.5px;
  }

  .site-title-img {
    display: block;
    width: 100%;
  }

  .header-nav {
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    width: 100%;
    padding: 60px 0 0;
    background-color: #FFFFFF;
    display: none;
  }

  .header-nav ul {
    flex-direction: column;
    width: 100%;
  }

  .header-nav ul li {
    width: 100%;
    padding: 0;
    border-top: 1px solid rgba(138, 132, 124, 0.3);
  }

  .header-nav ul li a {
    height: calc(calc(100vh - 60px) / 6);
    line-height: calc(calc(100vh - 60px) / 6 - 1px);
    margin: 0;
    padding: 0;
    font-size: 3vh;
    letter-spacing: 0.1vh;
  }

  .header-nav ul li a:hover {
    background-color: #FFFFFF;
    color: #000000;
  }

  .header-nav-btn {
    display: block;
    float: right;
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: relative;
  }

  .header-nav-btn::before,
  .header-nav-btn::after {
    content: "";
    display: block;
    width: 55%;
    height: 1px;
    background-color: #000000;
    position: absolute;
    left: 50%;
    margin-left: -16.5px;
  }

  .header-nav-btn::before {
    top: 21px;
  }

  .header-nav-btn::after {
    top: 38px;
  }

}

/* サイト画像 */

.site-img-wrapper {
  width: 100%;
  background: url("../images/site-img.jpeg") no-repeat 50% 55%;
  background-size: cover;
  padding-top: 48%;
}

/* サイト画像(320px-767px) */

@media(max-width: 767px) {

  .site-img-wrapper {
    width: 100vw;
    height: 315px;
    padding-top: 0;
    background-position: center 60%;
  }

}

/* インフォメーション */

.information-wrapper {
  position: relative;
  background-color: #dcc2b3;
}

.information-wrapper::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 50px 100vw 0 0 ;
  border-color: transparent #faf5e9 transparent transparent;
}

.information {
  width: 80%;
  margin: 0 auto;
}

.information-list {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.information-list-item {
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
}

.information-list-item a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.information-list-item time {
  flex: auto;
  width: 20%;
  vertical-align: top;
}

.information-list-item p {
  flex: auto;
  width: 80%;
}

/* インフォメーション(320px-767px) */

@media(max-width: 767px) {

  .information-list-item {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    border-bottom: 1px dotted;
  }

  .information-list-item a {
    flex-direction: column;
    position: relative;
  }

  .information-list-item a::after {
    content: "→";
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .information-list-item time {
    width: 85%;
    font-size: 1rem;
  }

  .information-list-item p {
    flex: auto;
    width: 85%;
  }

}

/* 挨拶 */

.greeting-wrapper {
  background-color: #faf5e9;
  position: relative;
}

.greeting-wrapper::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 50px 0 0 100vw;
  border-color: transparent transparent transparent #a49587;
}

.greeting {
  width: 80%;
  margin: 0 auto;
}

.greeting-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.greeting-img {
  flex: auto;
  width: 40%;
}

.greeting-text {
  flex: auto;
  width: 60%;
  padding: 0 20px;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 1.5;
}

.greeting-text p {
  margin-top: 10px;
}

/* 挨拶(320px-767px) */

@media(max-width: 767px) {

  .greeting-box {
    flex-direction: column;
  }

  .greeting-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .greeting-text {
    width: 100%;
    padding: 15px 0;
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    line-height: 1.5;
  }

  .greeting-text p {
    margin-top: 15px;
  }

}

/* スタッフ紹介 */

.staff-wrapper {
  background-color: #a49587;
  padding-bottom: 0;
}

.staff {
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.staff-list-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 700px;
  margin: 10px auto;
}

.staff-img-box {
  flex: auto;
  width: 40%;
}

.staff-img-box-1,
.staff-img-box-3 {
  order: 2;
}

.staff-img {
  padding-top: 138%;
}

.staff-img-1 {
  background: url("../images/staff-1.jpeg") center/cover;
}

.staff-img-2 {
  background: url("../images/staff-2.jpeg") 80% 50%/cover;
}

.staff-img-3 {
  background: url("../images/staff-3.jpeg")80% 50%/ cover;
}

.staff-text {
  flex: auto;
  width: 60%;
  padding: 0 15px;
  text-align: left;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  line-height: 1.3;
}

.staff-text-1,
.staff-text-3 {
  order: 1;
}

.staff-text p {
  margin: 10px 0;
}

.staff-name {
  font-size: 2rem;
  letter-spacing: 2px;
  line-height: 1.5;
}

.decoration {
  position: absolute;
  z-index: -1;
}

.decoration-1 {
  top: 44%;
  left: 72%;
  width: 24%;
}

.decoration-2 {
  top: 71%;
  left: 2%;
  width: 27%;
}

.decoration-4 {
  top: 7%;
  left: 5%;
  width: 25%;
}

/* スタッフ(320px-767px) */

@media(max-width: 767px) {

  .staff-list-item {
    flex-direction: column;
    max-width: none;
    margin: 30px auto;
  }

  .staff-img-box {
    width: 50%;
    margin: 0 auto;

  }

  .staff-img-box-1,
  .staff-img-box-3 {
    order: 1;
  }

  .staff-text {
    width: 100%;
    padding: 0;
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    text-align: center;
  }

  .staff-text-1,
  .staff-text-3 {
    order: 2;
  }

  .staff-name {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }

  .decoration {
    position: absolute;
    z-index: -1;
  }

  .decoration-1 {
    top: 57%;
    left: 77%;
    width: 20%;
  }

  .decoration-2 {
    top: 90%;
    left: 6%;
    width: 23%;
  }

  .decoration-4 {
    top: 24%;
    left: 10%;
    width: 23%;
  }

}

/* 製品紹介 */

.products-wrapper {
  background: transparent;
  position: relative;
  padding-top: 11.6vw;
}

.products-wrapper::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 50px 100vw;
  border-color: transparent transparent transparent #a49587;
}

.products-wrapper::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 50px 0 0 100vw;
  border-color: transparent transparent transparent #394d60;
}


.products-wrapper-background {
  background: url("../images/background-img.jpeg") #FFFFFF no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -100;
}

.products {
  width: 80%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.products-section-title {
  padding-top: 15px;
}

.products-list {
  width: 100%;
  margin: 0 auto 10px;
  display: flex;
  flex-wrap: wrap;
}

.products-list-item {
  flex: auto;
  width: 33%;
}

.product-img {
  width: 80%;
  margin: 0 auto;
  padding-top: 90%;
}

.product-img-1 {
  background: url("../images/product-1.jpeg") center/cover;
}

.product-img-2 {
  background: url("../images/product-2.jpeg") center/cover;
}

.product-img-3 {
  background: url("../images/product-3.jpeg") center/cover;
}

.product-text-wrapper {
  width: 80%;
  margin: 10px auto 0;
}

.product-name {
  font-size: 1.8rem;
  letter-spacing: 1px;
  line-height: 1.5;
}

.product-desc {
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1.5;
}

.products-view-more-btn {
  margin-bottom: 20px;
  margin-right: 10px;
}

/* 製品紹介(320px-767px) */

@media(max-width: 767px) {

  .products-wrapper {
    padding-top: 100px;
  }

  .products {
    margin: 0 auto 20px;
  }

  .products-section-title {
    padding-top: 15px;
  }

  .products-list {
    margin: 0 auto;
    flex-direction: column;
  }

  .products-list-item {
    width: 80%;
    margin: 0 auto;
  }

  .product-img {
    width: 50%;
    padding-top: 60%;
  }

  .product-text-wrapper {
    margin: 10px auto 20px;
  }

  .product-name {
    font-size: 1.6rem;
  }

  .product-desc {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-top: 5px;
  }

  .products-view-more-btn {
    margin-right: 20px;
  }

}

/* ブログ */

.blog-wrapper {
  background-color: #394d60;
  color:#FFFFFF;
  position: relative;
}

.blog-wrapper::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border-style: solid;
  border-width: 50px 100vw 0 0;
  border-color: transparent #FFFFFF transparent transparent;
}

.blog {
  width: 80%;
  margin: 0 auto;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.blog-list-item-box {
  flex: auto;
  width: 50%;
  margin-bottom: 30px;
}

.blog-list-item {
  width: 85%;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid;
  box-shadow: 0 0 15px 1px rgba(255, 255, 255, 1);
}

.blog-list-item:hover {
  opacity: 0.7;
  box-shadow: 0 0 15px 7px rgba(255, 255, 255, 1);
}

.blog-list-item time {
  display: block;
  text-align: left;
}

.blog-title {
  height: 60px;
  font-weight: normal;
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 15px 0;
}

.blog-view-more-btn {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
}

/* ブログ(320px-767px) */

@media(max-width: 767px) {

  .blog-list {
    flex-direction: column;
  }

  .blog-list-item-box {
    width: 100%;
    margin-bottom: 50px;
  }

  .blog-list-item:hover {
    opacity: 1;
    box-shadow: 0 0 15px 1px rgba(255, 255, 255, 1);
  }

  .blog-list-item time {
    font-size: 1.3rem;
  }

  .blog-view-more-btn {
    font-size: 1.4rem;
    letter-spacing: 1.4px;
  }

}

/* アクセス */

.access-wrapper {
  background-color: #FFFFFF;
}

.access {
  width: 80%;
  margin: 0 auto;
}

.access-text-wrapper {
  float: left;
  margin-bottom: 20px;
  text-align: left;
  font-size: 1.6rem;
  letter-spacing: 1.6px;
  line-height: 2;
  position: relative;
}

.access-site-title {
  width: 140px;
  height: 25px;
  line-height: normal;
}

.access-site-title a {
  display: block;
}

.access-site-title img {
  width: 100%;
  height: 100%;
}

.access-text-wrapper address {
  margin: 18px 0 10px;
}

.access-text-wrapper .map-jmp {
  display: inline-block;
  width: 55px;
  border: 1px solid;
  border-radius: 50px;
  text-align: center;
  font-size: 1.3rem;
}

.access-text-wrapper .map-jmp:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.access-text-wrapper .tell a {
  display: inline-block;
}

.access-text-wrapper .mail {
  position: absolute;
  top: 74px;
  left: 191px;
}

.access-text-wrapper .mail span {
  margin-right: 5px;
}

.fa-envelope {
  margin-left: 5px;
  transition: transform 0.3s;
}

.access-text-wrapper .mail a:hover .fa-envelope {
  transform: rotate(360deg);
}

.access-text-wrapper .business-hours {
  font-size: 1.4rem;
  letter-spacing: 1.4px;
}

.access-map-wrapper {
  float: right;
  width: 50%;
  min-width: 600px;
  height: 300px;
  position: relative;
}

.access-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-text-wrapper .tell a::after {
  content:"";
  display: block;
  width: 0;
  margin: 0 auto;
  border-bottom: 1px solid;
  transition: width 0.3s ease-in-out;
}

.access-text-wrapper .tell a:hover::after {
  width: 100%;
}

/* アクセス(320px-767px) */

@media(max-width: 767px) {

  .access-text-wrapper {
    float: none;
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    position: static;
  }

  .access-site-title {
    margin: 0 auto;
  }

  .access-text-wrapper address {
    margin-bottom: 0;
  }

  .access-text-wrapper .map-jmp:hover {
    background-color: inherit;
    color: inherit;
  }

  .access-text-wrapper .mail {
    position: static;
  }

  .access-text-wrapper .mail span {
    display: none;
  }

  .access-text-wrapper .mail a {
    border-bottom: 1px dotted;
  }

  .access-text-wrapper .mail a:hover .fa-envelope {
    transform: rotate(0deg);
  }

  .access-text-wrapper .business-hours {
    font-size: 1.3rem;
    letter-spacing: 1.3px;
    margin-top: 10px;
  }

  .access-map-wrapper {
    float: none;
    width: 100%;
    min-width: auto;
    height: 300px;
    position: relative;
  }

  .access-text-wrapper .tell a::after {
    display: none;
  }

  .access-text-wrapper .tell a:hover::after {
    width: 0;
  }

}

/* フッター */

footer {
  font-size: 1rem;
  background-color: #FFFFFF;
}
