@charset "utf-8";
/*
Theme Name: Pit
Theme URI:
Description:
Author:
Version: 1.0
License:
License URI:
Tags:
*/
/*-----------------------------------------------------
@@ Reset
------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
http://code.google.com/p/html5resetcss/downloads/list
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}
th,td{
  text-align: left;
  vertical-align: top;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}




article, aside, dialog, figure, footer, header,hgroup, menu, nav, section { display: block; }

img{border: 0; vertical-align: bottom;-ms-interpolation-mode: bicubic; }


/* For modern browsers */
.clearfix:before,.clearfix:after,.cf:before,.cf:after{
  content:"";
  display:table;
}
.clearfix:after,.cf:after{clear:both;}
.clearfix,.cf{zoom:1;}/* For IE 6/7 (trigger hasLayout) */

*{box-sizing: border-box;}

/*-----------------------------------------------------
@@ 基本
------------------------------------------------------*/
a{color: #0066cc;text-decoration: underline;}
a:hover{color: #ff6600;transition-duration:0.3s;}

html{
  color: #333333;
  background: white;
  overflow-y: scroll;  /*ここでスクロールバーを常に表示*/
}
body{
  text-align: center;
  font-size: 16px;
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  background-color: white;
  word-wrap: break-word;
  overflow-wrap : break-word;
}
/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}

/*
ゴシック
  font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-weight: 700;

明朝
  font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  font-weight: 700;

*/



/*-----------------------------------------------------
@@ ヘッダ
------------------------------------------------------*/
/* PC */
@media screen and (min-width: 768px)  {

  body {
    padding-top: 65px;
  }

  .wrap-header{
    margin: 0 auto;
    border-top: 16px solid #372f85;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .header-back {
    position: absolute;
    width: 100%;
    height: 160px;
    /*background-color: red;*/
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 55%, rgba(255,255,255,0.85) 70%, rgba(255,255,255,0.5) 85%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 55%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.5) 85%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 55%,rgba(255,255,255,0.85) 70%,rgba(255,255,255,0.5) 85%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
    top: 0px;
  }

  #page-header{
    max-width: 1300px;
    margin: 0 auto;  /* Header Menuの表示領域 */
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 10px;
  }

  #page-header h1{
    width: 133px;
    padding: 14px 0;
  }
  #page-header h1 a{
    display: block;
    width: 133px;
    height: 58px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/logo.png) no-repeat 0 0;
    background-size: contain;
  }
  #page-header h1 a:hover{
    opacity: 0.8;
  }


}/* PC ここまで */
@media screen and (min-width: 900px) {
  #page-header h1{
    width: 240px;
    padding: 14px 0;
  }
  #page-header h1 a{
    display: block;
    width: 240px;
    height: 105px;
  }
}


/* スマホ */
@media screen and (max-width: 767.9px) {

  body {
    padding-top: 85px;
  }

  .wrap-header{
    margin: 0 auto;
    border-top: 8px solid #372f85;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 10;
  }
  .header-back {
    position: absolute;
    width: 100%;
    height: 30px;
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 );
    top: 77px;
  }

  #page-header{
    width: 100%;
    margin: 0 auto;  /* Header Menuの表示領域 */
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 10px 0 32px;
    z-index: 900;
  }

  #page-header h1{
    width: 133px;
    padding: 11px 0 8px;
  }
  #page-header h1 a{
    display: block;
    width: 133px;
    height: 58px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/logo.png) no-repeat 0 0;
    background-size: contain;
  }

}/* スマホ ここまで */

/*-----------------------------------------------------
@@ Header Menu
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  .wrap-headermenu{
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    margin-left: auto;
  }
  #headermenu{
    /*margin-left: auto;*/
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  #headermenu-btn{display: none;}

  ul.headermenu-list{
    font-size: 0;
    /*display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;*/
  }
  ul.headermenu-list > li{
    /*flex: 1;*/
    font-size: 15px;
    font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-size: 15px;
    display: inline-block;
    list-style-type: none;
    margin-left: 26px;
    position: relative;
  }
  ul.headermenu-list > li:before {
    content: "";
    width: 26px;
    height: 1px;
    display: block;
    background-color: #372f80;
    position: absolute;
    top: 50%;
    left: -26px;
  }
  ul.headermenu-list > li:first-child{
    margin-left: 0;
  }
  ul.headermenu-list > li:first-child:before {
    display: none;
  }
  ul.headermenu-list > li > a{
    display: block;
    text-align: center;
    color: #372f80;
    text-decoration: none;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
  }

  .header-tel {
    font-size: 15px;
    font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    color: #372f80;
    margin-left: 40px;
  }



}/* PC ここまで */

@media screen and (max-width: 767.9px) {

  .wrap-headermenu{
    position: relative;
  }

  #headermenu-btn{
    display: block;
    position: absolute;
    top: -29px;
    right: 2px;
    width: 89px;
    height: 54px;
    text-indent: -100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1000;/**/
    /*background-color: pink;*/
  }
  #headermenu-btn span{
    display: block;
    height: 2px;
    background-color: #372f85;
    position: absolute;
    right: 9px;
  }
  #headermenu-btn span:first-child{
    width: 71px;
    top: 12px;
  }
  #headermenu-btn span:nth-child(2){
    width: 58px;
    top: 26px;
  }
  #headermenu-btn span:nth-child(3){
    width: 46px;
    top: 40px;
  }

  #headermenu-btn:hover{
    cursor: pointer;
  }
  #headermenu-btn.clicked{
    background-position:  0 100%;
  }

  #headermenu{
    display: none;  /* 最初は非表示 */
  }


  /*モーダル*/
  .modaal-fullscreen .modaal-close {
      background: none !important;
      right: 19px !important;
      top: 17px !important;
      border: 3px solid white !important;
      border-radius: 50%;
  }
  .modaal-close:before, .modaal-close:after {
      top: 8px !important;
      left: 21px !important;
      width: 3px !important;
      height: 28px !important;
      border-radius: 0 !important;
  }

  .headermenu-list {
    font-size: 0;
    list-style-type: none;
    padding-top: 60px;
    border-bottom: 1px solid white;
    margin-bottom: 40px;
  }
  .headermenu-list > li {
    font-size: 20px;
    font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 400;
    margin-bottom: 60px;
  }
  .headermenu-list > li > a {
    color: white;
    text-decoration: none;
  }

  .header-tel {
    font-size: 20px;
    font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 400;
  }
  .header-tel a {
    color: white;
    text-decoration: none;
  }

}/* スマホ ここまで */


/*-----------------------------------------------------
@@ フッタ
------------------------------------------------------*/
@media screen and (min-width: 600px) {/* PC ここから-------------------------------- */

  #page-footer{
    clear: both;
    width: 100%;
    background: #372f85;  /*フッタ背景色*/
    height: 50px;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 599.9px) {/* スマホ ここから-------------------------------- */

  #page-footer{
    clear: both;
    width: 100%;
    background: #372f85;  /*フッタ背景色*/
    height: 25px;
  }

}/* スマホ ここまで================================ */



/*-----------------------------------------------------
@@ IME制御（WinIEのみ）等
------------------------------------------------------*/
.imeon{ime-mode:active;}
.imeoff{ime-mode:disabled;}

.right{text-align: right;}
.center{text-align: center;}
.left{text-align: left;}

.nowrap{white-space: nowrap;}



@media screen and (max-width: 767.9px) {/* スマホ */
  .pc{display: none !important;}
}/* スマホ */

@media screen and (min-width: 768px)  {/* PC */
  .sp, .smp{display: none !important;}
}/* PC */


/*-----------------------------------------------------
@@ レスポンシブ対策
------------------------------------------------------*/
video, img, object {
    max-width: 100%;
    height: auto;
}

/* YouTube等のiframeを囲む
<div class="video169"><iframe>...</iframe></div> 16:9の場合
<div class="video34"><iframe>...</iframe></div> 4:3の場合
*/
.video169, .video34{
    width:100%;   /*横幅いっぱいにwidthを指定*/
    height:0px;   /*高さはpaddingで指定するためheightは0に*/
    position: relative;
}
.video169{padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/}
.video34 {padding-bottom: 75%;  /*高さをpaddingで指定(4:3)*/}

.video169 iframe, .video34 iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* @@ Googleマップ */
.gmap2{
	position:relative;
	width:100%;
	height:500px;
	overflow:hidden;
	margin:0 0 20px;
}
.gmap2 iframe,.gmap2 object,.gmap2 embed{
	position:absolute;
	top:0;left:0;
	width:100%;
	height:100%;
}
@media screen and (max-width:767px){
	.gmap2{height:300px;margin:0 0 10px;}
}


/*-----------------------------------------------------
@@ 共通
------------------------------------------------------*/
@media screen and (min-width: 768px) {/* PC ここから-------------------------------- */

  .ttl-01 {
    font-size: 36px;
    line-height: 1.25;
    color: #372f85;
    font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 700;
  }
  .catch-01 {
    font-size: 20px;
    line-height: 1.25;
    color: #9b97c2;
    margin-bottom: 56px;
    letter-spacing: 0.15em;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767.9px) {/* スマホ ここから-------------------------------- */

  .ttl-01 {
    font-size: 22px;
    line-height: 1.25;
    color: #372f85;
    font-family: 'Noto Serif JP', "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    font-weight: 400;
    font-weight: 700;
  }
  .catch-01 {
    font-size: 12px;
    line-height: 1.25;
    color: #9b97c2;
    margin-bottom: 12px;
  }

}/* スマホ ここまで================================ */



/* @@ なんか */


/*-----------------------------------------------------
@@ index インデックス トップページ
------------------------------------------------------*/
@media screen and (min-width: 768px) {/* PC ここから-------------------------------- */

  .wrap-kv {
    max-width: 1920px;
    margin: 0 auto 115px;
    position: relative;
  }
  .wrap-kv:after {
    display: block;
    content: "";
    width: 100%;
    height: 180px;
    position: absolute;
    bottom: 0;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  }

  .btn-scrolldown {
    width: 158px;
    height: 85px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 8;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767.9px) {/* スマホ ここから-------------------------------- */

  .wrap-kv {
    margin: 0 auto 115px;
    position: relative;
  }
  .wrap-kv:after {
    display: block;
    content: "";
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
    background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
  }

  .btn-scrolldown {
    width: 100px;
    height: 36px;
    position: absolute;
    bottom: -36px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 8;
  }

}/* スマホ ここまで================================ */


/*-----------------------------------------------------
@@ ゲルマニウム温泉
------------------------------------------------------*/
@media screen and (min-width: 768px) {/* PC ここから-------------------------------- */

  .sec01 {
    background: white url(images/sec01-back.jpg) no-repeat 0 0;
    background-size: 560px 373px;
    /*max-width: 1920px;*/
    margin: 0 auto;
    position: relative;
    padding-top: 218px;
  }

  .btn-float-inquiry {
    position: absolute;
    top: 25px;
    right: 0;
    display: block;
    width: 60px;
    height: 302px;
  }
  .btn-float-reserve {
    position: absolute;
    top: 410px;
    right: 0;
    display: block;
    width: 60px;
    height: 270px;
  }
  .fixed-inquiry {
    position: fixed;
    top: 180px;
    z-index: 4;
  }
  .fixed-reserve {
    position: fixed;
    top: 563px;
    z-index: 4;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767.9px) {

  .sec01 {
    background: white url(images/sec01-back.jpg) no-repeat 0 0;
    background-size: 244px 163px;
    margin: 0 auto;
    position: relative;
    padding-top: 40px;
  }

  .btn-float-inquiry {
    position: absolute;
    top: 10px;
    right: 0;
    display: block;
    width: 30px;
    height: 151px;
  }
  .btn-float-reserve {
    position: absolute;
    top: 180px;
    right: 0;
    display: block;
    width: 30px;
    height: 135px;
  }
  .fixed-inquiry {
    position: fixed;
    top: 110px;
    z-index: 4;
  }
  .fixed-reserve {
    position: fixed;
    top: 280px;
    z-index: 4;
  }


}
@media screen and (max-width: 599.9px) {/* スマホ ここから-------------------------------- */

  .sec01 {
    background: white url(images/sec01-back.jpg) no-repeat 0 0;
    background-size: 165px 105px;
    margin: 0 auto;
    position: relative;
    padding-top: 78px;
  }

}/* スマホ ここまで================================ */


/*-----------------------------------------------------
@@ ゲルマニウム温浴の特徴
------------------------------------------------------*/
@media screen and (min-width: 768px) {/* PC ここから-------------------------------- */

  .sec02 {
    margin: 0 auto;
    position: relative;
    padding-top: 218px;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767.9px) {/* スマホ ここから-------------------------------- */

  .sec02 {
    margin: 0 auto;
    position: relative;
    padding-top: 78px;
  }

}/* スマホ ここまで================================ */


/*-----------------------------------------------------
@@ ゲルマニウム温浴の仕組み
------------------------------------------------------*/


/*-----------------------------------------------------
@@ ゲルマニウム温浴で得られる効果
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/





/*-----------------------------------------------------
@@ ページトップへ戻る
------------------------------------------------------*/
@media screen and (min-width: 768px) {/* PC ここから-------------------------------- */

  #page_top{
    width: 102px;
    height: 70px;
    position: fixed;
    right: 55px;
    bottom: -70px;/* 高さ分、画面の外へ。jQueryで画面内に移送させる。 */
    /*opacity: 0.6;*/
  }
  #page_top a{
    display: block;
    width: 102px;
    height: 70px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/btn-totop.png) no-repeat 0 0;
    background-size: contain;
  }

}/* PC ここまで================================ */

@media screen and (max-width: 767.9px) {

  #page_top{
    width: 88px;
    height: 60px;
    position: fixed;
    right: 35px;
    bottom: -70px;/* 高さ分、画面の外へ。jQueryで画面内に移送させる。 */
    /*opacity: 0.6;*/
  }
  #page_top a{
    display: block;
    width: 88px;
    height: 60px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/btn-totop.png) no-repeat 0 0;
    background-size: contain;
  }

}
@media screen and (max-width: 599.9px) {/* スマホ ここから-------------------------------- */

  #page_top{
    width: 60px;
    height: 41px;
    position: fixed;
    right: 35px;
    bottom: -70px;/* 高さ分、画面の外へ。jQueryで画面内に移送させる。 */
    /*opacity: 0.6;*/
  }
  #page_top a{
    display: block;
    width: 60px;
    height: 41px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/btn-totop.png) no-repeat 0 0;
    background-size: contain;
  }

}/* スマホ ここまで================================ */






/* 共通 ここから-------------------------------- */


.germaniumbath .img1 , .germaniumbath .img2{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content:  space-between;

}
.germaniumbath .img1 div img{
  width : 100%;
}
.germaniumbath .img1 div , .germaniumbath .img2 div{
  width : 33%;
}
.germaniumbath .img2 div{
  text-align: center;
}

.germaniumbath h2 ,   .germaniumbath p{
  text-align: center;
}

.howGermanium span{
  color: #000;
}

/* 共通 ここまで-------------------------------- */




@media screen and (min-width: 768px) {/* PC ここから-------------------------------- */

  .germaniumbath .inner{
     padding-right : 30%;
     padding-bottom : 100px;
  }
 
  .germaniumbath{
    width : 65%;
    margin : 0 auto;
    text-align: left;
    line-height: 2.5;
    background : url(./images/germaniumbath-bg.png) no-repeat 100% 30px;
    background-size: 25%;
  }
  .FeaturesofGermanium{
    width : 65%;
    margin : 0 auto 200px auto;
  }
  .FeaturesofGermanium img{
    width : 100%;
  }
  .sec03{
    background : url(./images/how-bg.jpg) no-repeat 0 0;
    background-size: cover;
    padding : 150px 0 100px 0;
    color : #372f85;
    margin-bottom : 100px;
  }

  .howGermanium{
    width : 65%;
    margin : 0 auto;
    text-align: left;
    line-height: 2;

  }
  .howGermanium img{
    width : 100%;
    margin : 40px 0 20px 0;
  }

  .howGermanium p{
    text-align: center;
    font-size: 120%;
    margin-top : 30px;
  }
  .sp{display:none;}

}/* PC ここまで================================ */




@media screen and (max-width: 767.9px) {/* スマホ ここから-------------------------------- */

  .germaniumbath .inner{
    padding-right : 26%;
    padding-bottom : 50px;
 }

 .germaniumbath{
   width : 80%;
   margin : 0 auto;
   text-align: left;
   line-height: 2;
   background : url(./images/germaniumbath-bg.png) no-repeat 100% 30px;
   background-size: 25%;
 }
 .sec03{
  background : url(./images/how-bg-sp.jpg) no-repeat 0 0;
  background-size: cover;
  padding : 100px 0 100px 0;
  color : #372f85;
  margin-bottom : 100px;
}

  .howGermanium{
    margin : 0px 50px 0px 30px;
    text-align: left;
    line-height: 1.8;
  }
  .howGermanium img{
    width : 100%;
    margin : 40px 0;
  }
  .howGermanium p{
    text-align: center;
    font-size: 110%;
    margin-top : 10px;
  }

  .FeaturesofGermanium , .Effect{
    margin : 40px 60px 80px 40px;
  }
  .FeaturesofGermanium img{
    width : 100%;
  }
  .Effect img{
    width : 100%;
    margin-bottom: 40px;
  }
  .pc{display:none;}
}/* スマホ ここまで================================ */













@media screen and (min-width: 600px) {/* PC ここから-------------------------------- */

  .germaniumbath .img2 div img{
    width : 25%;
    margin : 40px auto 0 auto;
  }


  .Effect{
    margin : 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:  space-between;
  }
  .Effect img{
    width : 48%;
    margin-bottom : 40px;
  }
  .inquiry{
    width : 65%;
    margin : 0 auto;
  }
  .inquiry .ttl{
    width : 60%;
    margin : 40px auto 60px auto;
  }
  .inquiry .ttl img{
    width : 100%;
  }
  .sec05{
    margin : 200px 0;
  }
  .inquiry .shop{
    width : 100%;
    margin : 30px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content:  space-between;
  }
  .inquiry .shop div{
    width : 49.5%;
    margin : 5px 0;
  }


}/* PC ここまで================================ */

@media screen and (max-width: 599.9px) {/* スマホ ここから-------------------------------- */


  .germaniumbath .img2 div img{
    width : 40%;
    margin : 40px auto 0 auto;
  }

  .inquiry{
    margin : 40px 50px 80px 50px;

  }
  .footerinfo-sp{margin:50px 0;width:90%;}

  .inquiry .shop div{
    margin : 0 0 5px 0;
  }


}/* スマホ ここまで================================ */








@media screen and (min-width: 769px) {/* PC ここから-------------------------------- */
  .Effect{
    width : 65%;
  }
}/* PC ここまで================================ */


@media screen and (max-width: 768px) and (min-width: 600px) {/*タブレット ここから-------------------------------- */
  .Effect{
    width : 80%;

  }

}/* タブレット ここまで================================ */


@media screen and (max-width: 599.9px) {/* スマホ ここから-------------------------------- */


}/* スマホ ここまで================================ */



