@charset "utf-8";

/* 全体のスタイル調整 */

* {
  box-sizing: border-box;
}

/* bodyの初期スタイル調整 */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  line-height: 1.5em;
  color: #000;
  background-color: #fffff7;
}

.outer-pannel {
  margin-right: 12px;
  margin-left: 12px;
}

/* 初期スタイル調整 */
h1,
h2,
h3 {
  font-weight: 700;
  margin: 12px 0 12px;
  padding: 12px 0 12px 0;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  text-align: center;
}

h2 {
  font-size: 24px;
  background-color: #e7e7e7;
  }

h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 800px) {
  body {
    font-size: 18px;
  }
  h2 {
    font-size: 25px;
    letter-spacing: 0.5em;
  }
  h3 {
    font-size: 23px;
    letter-spacing: 0.5em;
  }
}


p {
  margin-top: 0.1em;
  margin-bottom: 0.4em;
  text-align: left;
}

address {
  font-style: normal;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #9acd32;
  text-decoration: none;
}

a.btn {
  padding: 3px 5px;
  border: solid 1px #777;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  background-color: #f0f0f0;
  border-radius: 6px;
}
a.btn:hover,
a.btn:focus {
  background-color: #c0c0c0;
}

ul {
  margin:  0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

hr.vsp4 {
  height: 4px;
  margin: 0;
  border: none;
  color: transparent;
}
hr.vsp8 {
  height: 8px;
  margin: 0;
  border: none;
  color: transparent;
}
hr.vsp16 {
  height: 16px;
  margin: 0;
  border: none;
  color: transparent;
}
hr.vsp24 {
  height: 24px;
  margin: 0;
  border: none;
  color: transparent;
}
hr.vsp32 {
  height: 32px;
  margin: 0;
  border: none;
  color: transparent;
}

/* 初期スタイル調整 ここまで */


/* 共通スタイル調整 ここから */

/*テキスト関連*/
.txt-left {
  text-align: left;
}
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}
.txt-normal {
  font-weight: 500;
}
.txt-bold {
  font-weight: 700;
}
.txt-sumiya {
  letter-spacing: 0.04em;
  padding-right: 0;
}  
h2 .txt-sumiya {
  letter-spacing: 0.04em;
  padding-right: 0.4em;
}
h3 .txt-sumiya {
  letter-spacing: 0.04em;
  padding-right: 0.4em;
}
.txt-nsp {
  letter-spacing: 0.02em;
}  
.txt-lh2 {
  line-height: 2em;
}
.txt-black {
  color: #000;
}
.txt-gray {
  color: #707070;
}
.txt-p24 {
  font-size: 24px;
}
.txt-p22 {
  font-size: 22px;
}
.txt-p20 {
  font-size: 20px;
}
.txt-p18 {
  font-size: 18px;
}
.txt-info {
  margin-top: 32px;
  border-top: solid 2px #ccc;
}

/*レイアウト関連*/
.inner {
  margin: 0 auto;
  padding: 0;
/*  padding: 0 15px;
*/
}

@media screen and (min-width: 800px) {
  .inner {
    max-width: 1200px;
  }
}



.sp-only {
  display: block;
}
.pc-only {
  display: none;
}

@media screen and (min-width: 800px) {
  .sp-only {
    display: none;
  }
  .pc-only {
    display: block;
  }
}



/* 共通スタイル調整 ここまで */

/* ヘッダーブロック ここから */
.header {
  position: fixed;
  top: 0px;
  width:100%;
  padding: 0;
  background: #000;
  z-index: 200;
}

.header-logo-menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 50px;
}

/*ロゴ*/
.logo-area {
  width: 160px;
  height: 45px;
  margin: 0;
  padding-top: 4px;
  text-align: left;
  color: #fff;
}

@media screen and (min-width: 800px) {
  .logo-area {
    width: 160px;
    height: 45px;
  }
}

/*ハンバーガーメニュー*/
.gnav-toggle {
  position: relative;
  margin-top: 12px;
}


/*チェックボックス等は非表示*/
.gnav-hidden {
  display: none;
}

/*アイコンのスペース*/
#gnav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

/*ハンバーガーの形をCSSで表現*/
#gnav-open span,
#gnav-open span::before,
#gnav-open span::after {
  content: '';
  position: absolute;
  height: 4px;
  /*線の太さ*/
  width: 28px;
  /*長さ*/
  border-radius: 3px;
  background: #bbb;
  display: block;
  cursor: pointer;
}

#gnav-open span::before {
  bottom: -8px;
}

#gnav-open span::after {
  bottom: -16px;
}

/*閉じる用の薄黒箇所*/
#gnav-close {
  display: none;
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*チェックが付いたら表示*/
#gnav-input:checked ~ #gnav-close {
  display: block;
  opacity: 0.5;
}

#gnav-input:checked ~ #gnav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}


/*メニューの中身*/
#gnav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
}

.gnav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
/*  text-transform: uppercase; */
  text-transform: none;
}

.gnav-item {
  border-bottom: 1px solid #aaa;
  margin: 4px;
  padding-bottom: 12px;
}

.gnav-item a {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  display: block;
  width: 160px;
  text-align: center;
}
.gnav-item a:hover {
  color: #85a7cc;
}
.gnav-item a::first-line {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  width: 160px;
}

@media screen and (min-width: 800px) {
  .gnav-menu {
    flex-direction: row;
    padding-top: 18px;
    margin: 0;
  }

  .gnav-item {
    border-bottom: none;
    margin: 0;
    padding-bottom: 0;
  }

  .gnav-item a {
    color: #fff;
    margin: 0 0;
    width: 140px;
    font-size: 17px;
    letter-spacing: -0.02em;
  }

  .gnav-item a:hover {
    color: #85a7cc;
  }

}

/*-------------------------------------------
　メインビジュアル
-------------------------------------------*/
.mv-area {
  width: 100vw;
  height: 77vh;
  background-image: url(../img/c_banner.jpg);
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.mv-title {
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  text-shadow: 0px 0px 4px #111;
/*  margin-top: 0;
  margin-left: 0;
*/
  font-size: 23px;
  text-align: center;
  line-height: 2em;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 800px) {
  .mv-area {
    width: 100vw;
    height: 80vh;
  }

  .mv-title {
    margin-top: 100px;
    line-height: 2.4em;
  }
}


/*-------------------------------------------
　タイトルエリア
-------------------------------------------*/
.title-area {
  text-align: center;
  padding: 16px 0 4px;
}

.title-area h3.catch {
  padding: 16px 8px 4px;
  margin-bottom: -12px;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.title-area h3.catch2 {
  padding: 2px 8px 16px;
  margin-top:-8px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.title-area img {
  width: 50%;
  height: 5%;
  margin-top: 8px;
} 

.title-txt {
  color: #000;
  line-height: 2em;
}

.title-content {
}

@media screen and (min-width: 800px) {
  .title-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  .title-txt {
    flex: 1;
    margin-left: 20px;
    line-height: 2em;
  }

  .title-txt-right {
    flex: 1;
    margin-right: 20px;
    line-height: 2em;
  }

  .title-area img {
    flex: 1;
    width: 30%;
    height: 3%;
  }
}


/*-------------------------------------------
インフォ・エリア
-------------------------------------------*/
.info-area {
  padding: 8px 0 4px;
}

.info-txt {
  line-height: 1.7em;
  padding: 0 8px;
}
.info-txt-right {
  line-height: 1.7em;
  padding: 0 8px 0 16px;
}
.info-content {
}
.info-content img {
  max-width: 580px;
}


@media screen and (min-width: 800px) {
  .info-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .info-txt {
    flex: 1;
    padding-left: 16px;
    line-height: 1.7em;
  }
  .info-txt-right {
    flex: 1;
    padding-right: 16px;
    line-height: 1.7em;
  }
  .info-area img {
    flex: 1;
  }
}

/*-------------------------------------------
インフォ・エリア (中央配置)
-------------------------------------------*/
.infoC-area {
  padding: 8px 0 4px;
}

.infoC-txt {
  line-height: 1.7em;
  padding: 0 8px;
}
.infoC-content {
  margin: 0 auto;
}
.infoC-content p {
  text-align: center;
}
.infoC-content img {
/*  width: 100vw; */
}

@media screen and (min-width: 800px) {

  .infoC-content {
    margin: 0 auto;
    text-align: center;
  }
  .infoC-content p {
    text-align: center;
  }
  .infoC-content img {
    width: 580px;
  }


/*  .infoC-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
  .infoC-txt {
    flex: 1;
    padding-left: 16px;
    line-height: 1.7em;
  }
  .infoC-txt-right {
    flex: 1;
    padding-right: 16px;
    line-height: 1.7em;
  }
  .infoC-area img {
    flex: 1;
    width: 580px;
  }
*/
}

/*-------------------------------------------
　商品紹介エリア
-------------------------------------------*/
.service-area {
  padding: 8px 0 4px;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
  padding: 4px 4px;
}

.service-item {
  flex: 100%;
  justify-content: center;
  margin: 8px 0;
  padding: 8px 8px 16px;
  letter-spacing: 0.05em;
  display: flex;
}

.service-item h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
}

.service-item p {
  margin-top: -8px; 
  margin-bottom: 0;
  padding-left: 4px;
  padding-right: 2px;
}

.inaword {
  margin-top: 16px; 
}

.service-item img {
  width: 320px;
  margin-top: -16px; 
  margin-left: -8px;
  margin-bottom: 0;
}

img.sicon_ag {
  flex: 10%;
  justify-content: flex-start;
  width:100px;
  height: 110px;
  padding-top: 4px;
  padding-left: 8px;
  border-radius: 4px;
}

img.sicon_hm {
  flex: 10%;
  justify-content: flex-start;
  width:100px;
  height: 100px;
  padding-top: 4px;
  padding-left: 8px;
  border-radius: 4px;
}

img.sicon_sh {
  flex: 10%;
  justify-content: flex-start;
  width:100px;
  height: 100px;
  padding-top: 4px;
  padding-left: 8px;
  border-radius: 4px;
}

img.sicon_sh:hover {
  opacity: 0.5;
}

div.sitem {
  flex: 80%;
  justify-content: flex-start;
  margin-top: -16px;
  margin-left: 8px;
}  
div.sitem h4 {
  margin-top:0;
}
div.sitem img {
  width:100%;
  height: 20%;
}

.service-item2 {
  flex: 100%;
  text-align: left;
  padding: 8px 8px 4px;
  margin: 5px;
/*  border: 1px solid #ccc;
  border-radius: 8px;
*/
  letter-spacing: 0;
}

.service-item2 img {
  width: 320px;
  padding: 0 2px 0 4px;
}

@media screen and (min-width: 800px) {
  .service-content {
    display: flex;
    flex-wrap: wrap;
    padding: 8px 8px;
/*
    flex-wrap: nowrap;
*/
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-item {
    flex: 45%;
  }

  .service-item2 {
    flex: 45%;
  }

/*
  img.sitem {
    width:145px;
    height: 160px;
    margin-left: 2px;
  }
*/

}




/*-------------------------------------------
　ページトップ
-------------------------------------------*/
.pagetop {
  text-align: right;
  padding: 15px;
  background-color: #f0f0f0;
}

.pagetop a::after {
  content: "";
  background: url(../img/list-marker.svg) no-repeat;
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 3px 10px;
  transform: rotate(-90deg);
}


/*-------------------------------------------
　フッター
-------------------------------------------*/
.foot-area {
  color: #fff;
  text-align: center;
  padding-top: 16px;
  background-color: #596680;
}

.foot-logo {
  margin: 0 auto 20px;
}

.text-phone,
.text-phone a {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}

.text-email,
.text-email a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.foot-area_copy {
  color: #ccc;
  font-size: 14px;
  display: inline-block;
  width: 100%;
  padding: 10px;
  background-color: #333;
}

@media screen and (min-width: 800px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
