/* CSS Document */
/* リセット */
html, body {
  height: 100%;
  margin: 0;
}

/* 背景画像を全面にカバー */
body {
  background-image: url("images/01.jpg"); /* ← ここを置き換える */
  background-size: cover;       /* 画面に合わせて拡大縮小 */
  background-position: center;  /* 中央寄せ */
  background-repeat: no-repeat; /* 繰り返さない */
  background-attachment: fixed; /* スクロールしても固定（モバイルでは無視されることあり） */
  background-color: #000;       /* 画像読み込み前のフォールバック色 */
}
a {
  color: #000;
}
/*
□□□□□□□□□□□□□□□□□□□□□□□□□□

                　　　　PC用CSS
*/
@media print, screen and (min-width: 769px) {
  /*
□□□□□□□□□□□□□□□□□□□□□□□□□□
*/
  /*改行等表示・非表示*/
  .spv {
    display: none;
  }
  /*全体文字サイズ*/
  body {
    font-size: 1.5em;
    line-height: 1.2em;
  }
  /*---------------menu---------------*/
	
	
  .drawer_menu {
    overflow: hidden;
  }
	
  .menu__line__con {
    position: fixed;
    background-color: rgba(144, 248, 48, 0.95);
    left: 0px;
    top: 0px;
    padding: 20px;
    height: 20px;
    width: 30px;
    z-index: 99;
    border-bottom-right-radius: 20px;
  }	
  .menu {
    height: 20px;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 30px;
    z-index: 99;
  }
  .menu__line {
    background: #000000;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
  }
  .menu__line--center {
    top: 9px;
  }
  .menu__line--bottom {
    bottom: 0;
  }
  .menu__line--top.active {
    top: 8px;
    transform: rotate(45deg);
    background-color: #000;
  }
  .menu__line--center.active {
    transform: scaleX(0);
    background-color: #000;
  }
  .menu__line--bottom.active {
    bottom: 10px;
    transform: rotate(135deg);
    background-color: #000;
  }
  /*---------- gnav ----------*/
  .gnav {
    background: rgba(250, 250, 250, 1.0);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
    color: #888;
    font-family: 'Zen Maru Gothic', sans-serif;
  }
  .gnav__wrap {
    /*
	align-items: center;
	display: flex;
	justify-content: center;
	*/
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
  }
  .gnav__name {
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
    padding: 0;
    padding: 10px 0 10px 10px;
  }
  .gnav__name img {
    width: 320px;
    height: auto;
  }
  .gnav__con {
    width: 80%;
    margin: 0 auto 5vh;
    line-height: 2.0em;
    text-align: left;
  }
  .gnav__con a {
    text-decoration: none;
    color: #888888;
  }
  
  
  
  
  .gnav_icon_box {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 20px;
  }
  .gnav_icon_title {
    font-weight: bold;
  }
  .gnav_icon_icon {
    font-size: 45px;
  }
  .gnav_icon_icon a {
    text-decoration: none;
  }
  .gnav_icon_icon i {
    /*color: #888;*/
    margin: 0 15px;
  }
  
  .gnav_icon_tel {
    font-size: 2.0em;
  }
  
  /*◆◆◆◆◆◆◆◆◆◆↓PC用◆◆◆◆◆◆◆◆◆◆*/
}
/*◆◆◆◆◆◆◆◆◆◆↑PC用◆◆◆◆◆◆◆◆◆◆*/
/*
□□□□□□□□□□□□□□□□□□□□□□□□□□

                　　　　SP用CSS
*/
@media only screen and (max-width: 768px) {
  /*
□□□□□□□□□□□□□□□□□□□□□□□□□□
*/
  * {
    box-sizing: border-box;
  }
  /*改行等表示・非表示*/
  .pcv {
    display: none;
  }
  /*全体文字サイズ*/
  body {
    width: 100%;
    max-width: 100%;
    font-size: 1.5em;
    line-height: 1.2em;
  }
  img {
    max-width: 100%;
  }
  /*------------------------------*/
  .hoge_css {
    display: none;
  }
  /*◆◆◆◆◆◆◆↓スマホ用◆◆◆◆◆◆◆*/
}
/*◆◆◆◆◆◆◆↑スマホ用◆◆◆◆◆◆◆*/