@charset "utf-8";


/* 全体のスタイル調整 */
* {
  box-sizing: border-box;
}

/* bodyの初期全体スタイル */
body {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  font-family: 'Kiwi Maru', serif;
  font-family: 'M PLUS 1p', sans-serif;
  color: black;
}

/* 初期スタイル調整こっからこぴぺした！！！！！！！！！！！！！ */
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 17px;
}

h1 {
  font-size: 25px;
}

h4 {
  font-size: 17px;
}

h3 {
  font-size: 17px;
  text-align: left;
  background: linear-gradient(transparent 70%, #a7d6ff 70%);
  display: inline; //インライン要素にする
  background: linear-gradient(transparent 60%,
      #fbeb64 60%);
}


p {
  margin-top: 0;
  margin-bottom: 1.5em;
  text-align: left;
}

address {
  font-style: normal;
}

a {
  color: #666;
  text-decoration: none;
}

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

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

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

section {
  padding: 92px 0 10px;

}

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

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

/*h2角折れ見出し関連*/
.h2-title {
  position: relative;
  background: #dfefff;
  box-shadow: 0px 0px 0px 5px #dfefff;
  border: dashed 2px white;
  padding: 0.2em 0.5em;
  color: #454545;
  margin: 10px;
}

.h2-title:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: #fff #fff #add3fa;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}


/*テキスト関連*/
.txt-center {
  text-align: center;
  padding-top: 20px;
}

.txt-lead {
  font-weight: 500;
  text-align: center;
}

/*ボタン関連*/
.btn {
  display: block;
  padding: 20px 35px;
  border-radius: 8px;
  margin: 0 auto;
  border: none;
}

.btn:hover,
.btn:focus {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}


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

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

.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

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

  .pc-only {
    display: block;
  }
}

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



/* ヘッダーブロック ここから */
.header {
  position: fixed;
  top: 15px;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
  z-index: 200;
}

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

/*ロゴ*/
.logo-area {
  width: 200px;
  margin: 0;
  text-align: left;
}

@media screen and (min-width:768px) {
  .logo-area {
    width: 250px;
  }
}

/*ハンバーガーメニュー*/
.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: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #555;
  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: 70%;
  max-width: 300px;
  height: 100%;
  background: rgba(130, 180, 255, 0.5);
  transition: 0.3s ease-in-out;
  transform: translateX(-105%);
}

.gnav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 50px;
}

.gnav-item {
  border-bottom: 2px dotted #eee;
  margin: 10px;
  padding-bottom: 20px;
}

/* ハンバーガー文字 */
.gnav-item a {
  color: #fff;
  font-size: 12px;
  display: block;
  width: 200px;
  text-align: center;
}

.gnav-item a::first-line {
  font-size: 16px;
  font-weight: bold;
}


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

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

  .gnav-item a {
    color: #333;
    width: 120px;
  }

  .gnav-item a:hover {
    color: #6bb6ff;
  }

}



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

}

.mv-title {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
  margin-top: 50px;

}

@media screen and (min-width:768px) {
  .mv-area {
    width: 100%;
    height: 600px;
  }

  .mv-title {
    margin-top: 50px;
  }
}



/*-------------------------------------------
　TOPの情報
-------------------------------------------*/
.info-area {
  background-color: #c5e0fa;
  /* padding-top: 30px;
  padding-bottom: 20px; */
  padding: 30px 10% 20px
  }

/* .info-txt {
  color: #fff;
} */

.dot p {
  text-align: center;
  }


/*-------------------------------------------
　サービス内容
-------------------------------------------*/
.service-area {
  background-color: #fff;
}

.service-content {
  display: flex;
  flex-wrap: wrap;
}

.service-item {
  flex: 80%;
  text-align: center;
  padding: 20px 20px 0;
  margin: 10px 10px;
  border: 3px solid #6bb6ff;
  border-radius: 10px;
}

.service-item img {
  width: 180px;
  margin: 0 auto;
}

.xcheck {
  width: auto;
  margin: 50px;
  display: block;
  margin-bottom: 0;
}

.xcheck img {
  margin: auto;
  display: block;
  width: 100%;
  padding-top: 30px;

}



@media screen and (min-width:768px) {
  .service-content {
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-item {
    flex: 1;
  }

  .xcheck img {
    margin: auto;
    display: block;
    width: 55%;

  }

  
}


/*-------------------------------------------
　実績 works
-------------------------------------------*/

.works .header-logo path {
  fill: #292929;
}

.works .header {
  background-color: rgba(255, 255, 255, .9);
}

.works main {
  padding: 100px 20px;
  text-align: center;
  width: fit-content;

}

.works-list {
  list-style: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 150px 20px 150px;
  grid-template-columns: 150px 150px;
  -ms-grid-rows: 100px 20px 100px 20px 100px 20px 100px 20px 100px 20px 100px;
  grid-template-rows: 100px 100px 100px 100px 100px 100px;
  grid-gap: 20px;
  margin: 0 auto;
  width: 320px;
  position: relative;
}

.works-list>li:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.works-list>li:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

.works-list>li:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}

.works-list>li:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}

.works-list>li:nth-child(5) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}

.works-list>li:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}

.works-list>li:nth-child(7) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}

.works-list>li:nth-child(8) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}

.works-list>li:nth-child(9) {
  -ms-grid-row: 9;
  -ms-grid-column: 1;
}

.works-list>li:nth-child(10) {
  -ms-grid-row: 9;
  -ms-grid-column: 3;
}

.works-list>li:nth-child(11) {
  -ms-grid-row: 11;
  -ms-grid-column: 1;
}

.works-list>li:nth-child(12) {
  -ms-grid-row: 11;
  -ms-grid-column: 3;
}





.works-list li img {
  display: block;
  width: 100%;
}

.worksword {
  width: fit-content;
  /* コンテンツの幅に合わせる */
  margin: 30px auto;
  text-align: left;

}

@media screen and (min-width: 1024px) {
  .works-list {
    -ms-grid-columns: 210px 30px 210px 30px 210px 30px 210px;
    grid-template-columns: 210px 210px 210px 210px;
    -ms-grid-rows: 140px 30px 140px 30px 140px;
    grid-template-rows: 140px 140px 140px;
    grid-gap: 30px;
    width: 930px;
    margin: auto;
  }

  .works-list>li:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }

  .works-list>li:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }

  .works-list>li:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }

  .works-list>li:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
  }

  .works-list>li:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }

  .works-list>li:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }

  .works-list>li:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }

  .works-list>li:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
  }

  .works-list>li:nth-child(9) {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }

  .works-list>li:nth-child(10) {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }

  .works-list>li:nth-child(11) {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }

  .works-list>li:nth-child(12) {
    -ms-grid-row: 5;
    -ms-grid-column: 7;
  }

}


/*-------------------------------------------
　問い合わせ
-------------------------------------------*/

.mina img {
  margin: auto;
  display: block;
  width: 50%;
}

/* おしゃれボタン */
.button a {
  background: #eee;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.button a::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #6bb6ff;
  transition: 0.2s;
}

.button a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  transform: rotate(45deg);
}

.button a:hover::before {
  top: 0;
  left: 0;
}

.button a:hover {
  text-decoration: none;
  background-color: #b3d9ff;
}


/*-------------------------------------------
　アクセス
-------------------------------------------*/
.shop-area {
  padding-bottom: 0;
}

.shop-area img {
  display: block;
  max-width: 280px;
  max-height: 280px;
  /* border-radius: 2%; */
  overflow: hidden;
  margin: 20px auto 30px;

}

.shop-maparea {
  position: relative;
  padding-top: 75%;

}

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

}

.shopword {
  width: fit-content;
  /* コンテンツの幅に合わせる */
  margin: 30px auto;
  text-align: left;

}




/* さんかくアイコン */
.dli-caret-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
}

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

  .shop-maparea {
    padding-top: 30%;
  }

  .shopword {
    width: fit-content;
    /* コンテンツの幅に合わせる */
    text-align: left;

  }

}


/*-------------------------------------------
　ページトップ
-------------------------------------------*/
.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);
}


/*-------------------------------------------
　フッター
-------------------------------------------*/
.footer {
  padding: 1em 0;
  width: 100%;
}

.top .footer,
.profile .footer {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
}

.footer-txt {
  font-size: 12px;
  text-align: center;
}



/*--------------------------------------------------

スクロール

--------------------------------------------------*/

/* スクロールの幅の設定 */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* スクロールの背景の設定 */
::-webkit-scrollbar-track {
  border-radius: 5px;
  box-shadow: 0 0 4px #c5e0fa inset;
}

/* スクロールのつまみ部分の設定 */
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #c5e0fa;
}



/*--------------------------------------------------

会社概要

--------------------------------------------------*/

table {
  border: 2px solid #6bb6ff;
  margin: auto;
  background-color: #fff;
}

th {
  border: 1px solid #6bb6ff;
  padding: 5px;
}

td {
  border: 1px solid #6bb6ff;
  padding: 5px;
}

/*--------------------------------------------------

店舗案内

--------------------------------------------------*/
.shop-maparea {
  padding: 5px;
  text-align: center;
}

