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

common

-------------------------------------------*/
@charset "utf-8";

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

html {
  height: 100%;
}

body {
	color: #233b6c;
	background-color: #FFFFFF;
	font-family:  "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
	word-wrap: break-word;
	height: 100%;
}

a {
  text-decoration:none; 
}

a:link, a:visited, a:hover, a:active {
  color: #233b6c;
}

h1,h3,h4,h5,h6 { margin-bottom : 24px}

h1 {
    font-size : 48px;
    line-height : 1;
}

h2 {
  font-size: 44px;
  position: relative;
  margin: 96px 0 0 0;
  text-align: center;
}

h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4%;/*線の上下位置*/
  display: inline-block;
  width: 25%;/*線の長さ*/
  height: 5px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #233b6c;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

h2 span {
  display: block;
  font-size: 20px;
  color: #F6CB68;
}

h3 {
    font-size : 24px;
    line-height : 1;
    position: relative;
    text-align: center;
}

h3:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -40%;/*線の上下位置*/
  display: inline-block;
  width: 40%;/*線の長さ*/
  height: 4px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #F6CB68;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

h4 {
  font-size: 20px;
  position: relative;
  text-align: center;
}

h4:before {
  content: '';
  position: absolute;
  left: 50%;
  display: inline-block;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);/*位置調整*/
}

h4 span {
  display: block;
  font-size: 16px;
  color: #F6CB68;
}

p{
  line-height: 1.8rem;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  font-weight: bold;
}

#menu_bar img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  opacity: 0.2;
}

#menu_bar .wrapper{
  position: relative;
}

#menu_bar .wrapper .bar_title{
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  font-family: arial;
  font-size: 32px;
  font-weight: bold;
  color: #233b6c;
  text-shadow: 2px 2px 10px #ffffff ,
  -2px 2px 10px #ffffff ,
  2px -2px 10px #ffffff ,
  -2px -2px 10px #ffffff;
  line-height: 1;
  padding: 5px 10px;
  white-space: nowrap;
  letter-spacing: 16px;
}

th{
  font-size: 1.2rem;
}
td{
  font-weight: bold;
}

.br_sp{
  display: none
}

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

header

-------------------------------------------*/
header{
  height: 250px;
  padding-bottom: 0;
}

#header_top .wrapper{
  width: 80%;
  height: 200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header_top .wrapper img{
  width: 310px;
  height: 130px;
}

#header_top .info{
  display: flex;
  justify-content: space-around;
}

#header_top .btn--navy {
  display: block;
  width: 200px;
  text-align: center;
  padding: 10px 0;
  margin: 12px 0 4px;
  height: 50px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  background-color: #233b6c;
  border-bottom: 5px solid #F6CB68;
}

#header_top .btn--navy:hover {
  margin-top: 3px;
  color: #233b6c;
  background: #F6CB68;
  border-bottom: 2px solid #233b6c;
}

#header_top .tel{
  margin: 16px 16px 4px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.mobile_menu{
    display: none;
  }

@media (min-width: 601px) {
  a[href*="tel:0836453652"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  }
  }

#header_top .tel span{
  font-size: 30px;
  font-weight: bold;
}
  
#header_bottom>.wrapper{
  padding-top: 20px;
}

#header_bottom ul{
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  font-weight: bold;
}

#header_bottom li{
	position: relative;
	text-decoration: none;
}
#header_bottom li::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #F6CB68;
	transition: all 0.3s ease 0s;
}
#header_bottom li:hover {
	cursor: pointer;
}
#header_bottom li:hover::after {
	width: 100%;
}

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

top_page

-------------------------------------------*/
#hero img{
  width: 100%;
  max-width: 1900px;
}

#hero .wrapper{
  position: relative;
}

#hero .wrapper .main_title{
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0 1rem;
  padding:0;
  font-size: 5vw;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 10px #F6CB68 ,
  -2px 2px 10px #F6CB68 ,
  2px -2px 10px #F6CB68 ,
  -2px -2px 10px #F6CB68;
  line-height: 1;
  padding: 5px 10px;
  white-space: nowrap;
}

#hero .wrapper .main_text{
  position: absolute;
  top: 60%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  font-size: 2vw;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 10px #F6CB68 ,
  -2px 2px 10px #F6CB68 ,
  2px -2px 10px #F6CB68 ,
  -2px -2px 10px #F6CB68;
  line-height: 1;
  padding: 5px 10px;
  white-space: nowrap;
}

.text1{
  text-indent: 1em;
  margin-bottom: 1em;
}

.text2{
  text-indent: 1em;
  margin-bottom: 2em;
}

#greeting .wrapper{
  display: flex;
  width: 80%;
  margin: 60px auto 0;
}

#greeting .name{
  text-align: end;
}

.wrapper .item_container{
  width: 50%;
  padding-left: 120px;
}

.wrapper .item_container2{
  width: 50%;
  padding-right: 120px;
}

.item_container img{
  width: 100%;
  object-fit: cover;
}

.item_container2 img{
  width: 100%;
  object-fit: cover;
}

.wrapper .text_container{
  width: 50%;
  padding-left: 80px;
}

.wrapper .text_container2{
  width: 50%;
  padding-left: 120px;
}

.item_text{
  width: 80%;
}

.item_text h3{
  text-align: center;
}

#about .wrapper{
  display: flex;
  justify-content: space-around;
  flex-wrap:wrap;
  width: 80%;
  max-width: 1200px;
  margin: 12px auto;
}

.item_s{
  max-width: 280px;
  margin-top: 40px;
}

.item_s img{
  width: 100%;
}

.item_s h3{
  margin: 8px 0;
  text-align: center;
}

#about .hover {
	overflow: hidden;
	position: relative;
  cursor: pointer;
}

#about .hover .text1 {
	font-size: 130%;
	color: #fff;
	padding-top: 120px;
	padding-left: 72px;
}
#about .hover .hover_text {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.4);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-webkit-transform: scale(0);	/* 大きさを０にして表示しない */
	transform: scale(0);
}
#about .hover:hover .hover_text {
	-webkit-transform: scale(1);	/* 大きさを１にして表示する */
	transform: scale(1);
}

#access .g_map_base{
  margin-top: 52px;
}

.g_map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  }
  .g_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  }

#footer1{
  margin-top: 0;
}

#footer1 .wrapper{
  width: 100%;
  height: 60px;
  background-color: #F6CB68;
}

#footer1 .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer1 .sns img{
  height: 50px;
  margin-right: 25px;
}

#footer2 .wrapper{
  width: 100%;
  height: 400px;
  background-color: #233b6c;
}

#footer2 .logo{
  display: flex;
  justify-content: center;
  padding-top: 60px;
}

#footer2 img{
  width: 336px;
  height: 131px;
}

#footer2 .footer_text{
  text-align: center;
  padding-top: 15px;
  color: #fff;
}

#footer2 .footer_message{
  font-size: 20px;
}

#footer2 .footer_tel{
  font-size: 20px;
}

.footer_tel>a {
  color: #fff;
}

#footer2 .copyright{
  text-align: center;
  padding-top: 32px;
}

#footer2 small{
  color: #fff;
}

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

trimming_page

-------------------------------------------*/
#trimming .wrapper{
  width: 80%;
  margin: 60px auto 0;
}

#trimming .wrapper .tr_container{
  display: flex;
  margin-bottom: 36px;
}

#trimming .text_container h3{
  margin: 8px 0 16px 0;
  text-align: center;
}

#process{
  width: 80%;
  margin-left: 10%;
}

#process .process_wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#process .box{
  width: 360px;
  margin-top: 80px;
  margin-right: 40px;
  position: relative;
}

#process .box_inner img{
  width: 100%;
  padding-bottom: 12px;
}

#process .box_inner .process_text{
  width: 100%;
  padding-bottom: 12px;
}

#process .box_inner{
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto
}

#process .box:before,
#process .box:after{
  content: "";
  width: 100%;
  position: absolute;
}

#process .box::before{
  border-top: 2px solid #233b6c;
  border-left: 4px solid #233b6c;
}

#process .box::after{
  border-bottom: 2px solid #233b6c;
  border-right: 4px solid #233b6c;
  right: 0;
  bottom: 0;
}

#process .text_align{
  text-align: center;
  margin-top: 8px;
}

#process .text_align span{
  vertical-align: middle;
}

#process .box_inner .number{
  font-size: 3rem;
  font-weight: bold;
  color: #F6CB68;
  margin-right: 12px;
}

#process p .pr_text{
  font-size: 1.5rem;
  font-weight: bold;
}

#process {
  margin-bottom: 40px;
}

#process .text_align p {
  line-height: 4rem;
}

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

price_page

-------------------------------------------*/
.sp_text{
  display: none;
}

#price .price_container{
  padding: 80px;
  width: 90%;
  min-width: 1200px;
  margin: auto;
}

#price .price_list {
  width: 100%;
  table-layout: fixed;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}

#price .price_list th {
  padding: 10px;
  border-bottom: solid 4px #778ca3;
  color: #233b6c;
}

#price .price_list td {
  padding: 10px;
  border-bottom: solid 1px #778ca3;
}

#price .price_container table tr:nth-child(2n) {
  background-color: rgba(0,0,0,0.1);
}

#price .price_container table tr:nth-child(2) {
  background-color: initial;
}

#price .others_container{
  width: 70%;
  min-width: 800px;
  margin: auto;
}

#price .others{
  font-weight: bold;
  font-feature-settings: "palt";
  border: 4px solid;
  border-color: #233b6c;
  padding: 32px;
}

#price .others span {
  background:linear-gradient(transparent 50%, #F6CB68 0%);
  }

#price .option_wrapper{
  width: 100%;
  padding-top: 36px;
}

#price .option_wrapper:last-child{
  padding-bottom: 80px;
}

#price .option_container{
    padding: 24px;
    width: 80%;
    margin: auto;
  }

#price .option_container p{
    width: 100%;
    text-align: center;
  }

#price .option_price {
    width: 30%;
    margin: auto;
  }

#price .option_price, td, th {
    border: none;
    border-top: 1px dashed #233b6c;
    border-bottom: 1px dashed #233b6c;
    padding: 12px;
    text-align: center;
  }

#price .table_wrapper table {
    border-collapse: collapse;
}

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

staff_page

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

.trimmer_wrapper{
  margin: 100px auto 150px ;
  width: 50%;
}

.trimmer_wrapper>h3{
  margin-bottom: 80px;
}

.tr_layer {
  display: flex;
}

.img_layer {
  padding-right: 25px;
  width: 50%;
  height: auto;
}

.img_layer img {
  width: 100%;
}

.table_layer {
  padding-left: 25px;
  width: 50%;
  height: auto;
}

.table_layer th {
  width: 150px;
}

.table_layer td {
  width: 500px;
}

h4 {
margin-bottom: 12px;
margin-left: 8px;
}

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

late-spa_page

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

#latee {
  max-width: 1200px;
  margin: 0 auto;
}

#latee h2 {
  margin-bottom: 3rem;
}

.biyou_wrapper1 {
  display: flex;
  margin: 5rem 0;
}

.biyou_img{
  width: 50%;
}

.biyou_img img{
  width: 100%;
  padding-right: 15px;
}

.biyou_text{
  width: 40%;
  padding: 15px 30px 0 30px;

}

.biyou_message{
  text-align: center;
}

.biyou_title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 0.5rem;
  text-align: center;
}

.biyou_wrapper2 {
  display: flex;
  margin: 5rem 0 5rem;
}

.logo_wrapper {
  width: 50%;
  text-align: center;
}

.reason_wrapper {
  width: 100%;
  display: flex;
  margin: 5rem 0 5rem;
}

.reason_item {
  width: 50%;
  text-align: center;
  margin: 0 30px;
}

.reason_item img {
  width: 100%;
  padding-bottom: 15px;
}

.effect_wrapper {
  display: flex;
  margin: 5em 0;
}

.effect_item {
  text-align: center;
}

.effect_item img {
  width: 200px;
}

.achievement_wrapper {
  text-align: center;
}

.achievement_title {
  margin: 3em 0 1em;
}

.achievement_bold {
  font-size: x-large;
  font-weight: bold;
}

.tokkyo {
  padding-bottom: 30px;
}

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

shop_info

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

.info_main {
  max-width: 1200PX;
  margin: 0 auto;
}

.info_wrapper {
  max-width: 1200PX;
  display: flex;
  margin: 5em auto;
}

.info_img {
  width: 50%;
}

.info_img img{
  width: 100%;
  padding-right: 15px;
}

.info_table {
  width: 50%;
  padding-left: 15px;
}

.contact {
  max-width: 1200PX;
  margin: 0 auto;
}

.contact_wrapper {
  display: flex;
  max-width: 1200PX;
  margin: 5em auto 0.5em auto;
}

.line {
  width: 100%;
  text-align: right;
}

.contact_wrapper img {
  width: 50%;
}

.qr {
  width: 100%;
}

.qr img {
  width: 50%;
}

.contact_text {
  text-align: center;
}

.tel_wrapper {
  max-width: 1200PX;
  margin: 5em auto;
}

.tel_inner {
  width: 45%;
  padding: 0.5em 1em;
  margin: 2em auto;
  border: dashed 2px #233b6c;/*点線*/
}
.tel_inner p {
  text-align: center;
  margin: 0; 
  padding: 0;
}

.gallery_wrapper {
  max-width: 1200PX;
  margin: 5em auto;
  text-align: center;
}

.gallery_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery_box{
  width: 360px;
  margin-top: 1em;
  margin-right: 40px;
  position: relative;
}

.gallery_box img{
  width: 100%;
  padding-bottom: 12px;
}

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

nanopet_page

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

#nano {
  max-width: 1200px;
  margin: 0 auto;
}

#nano h2 {
  margin-bottom: 3rem;
}

.nano_wrapper1:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
  margin: 5rem 0;
}

.nano_wrapper1:nth-child(odd) {
  display: flex;
  margin: 5rem 0;
}

.nano_img{
  width: 50%;
}

.nano_img img{
  width: 100%;
  padding-right: 15px;
}

.nano_text{
  width: 40%;
  padding: 15px 30px 0 30px;

}

.nano_message{
  text-align: center;
}

.nano_title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 0.5rem;
  text-align: center;
}

.nano_wrapper2 {
  display: flex;
  margin: 2rem 0 5rem;
}

.logo_wrapper {
  width: 50%;
  text-align: center;
}


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

mobil_common

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

@media (max-width: 600px) {
  header{
    height: 100px;
  }

  #header_top{
    position: fixed;
    z-index: 1;
  }

  #header_top .wrapper{
    width: 80%;
    height: 100px;
    margin: 0 auto;
  }
  
  .main_menu{
    display: none;
  }

  .mobile_menu{
    display: block;
  }

  #menu_bar>.wrapper>h1{
    margin: 0 auto 2rem;
  }
  
  #header_top>.wrapper>.info{
    display: none;
  }

  #header_top .wrapper img{
    width: 50%;
    height: auto;
  }

  #header_bottom{
    display: none;
  }

  .hamburger-menu div {
    width: 35px;
    height: 5px;
    background-color: #F6CB68;
    margin: 6px 0;
  }

  .hamburger-menu + .sidenavs:target {
    overflow-x: visible;
    /* ボックスからはみ出る箇所をそのまま表示 */
    width: 100%;
    display:block;
    
  }
  .sidenavs:target {
    overflow-x: hidden;
    /* ボックスからはみ出る箇所を隠す */
    width: 0;
  }
  /* ハンバーガーメニュー表示時 */
  .sidenavs {
    height: 100%;
    width: 0;
    position: fixed;
    /* 画像の配置を指定 */
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #F6CB68;
    overflow-x: hidden;
    /* 横スクロールを無効にする */
    padding-top: 60px;
    transition: 0.5s;
    /* アニメーションの時間を0.5秒に指定 */
  }
  /* ハンバーガーメニュー表示時のリンク */
  .sidenavs a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
    /* アニメーションの時間を0.3秒に指定 */
    font-weight:bold;
  }
  /* マウスオーバー後のリンク */
  .sidenavs a:hover {
    color: white;
  }
  /* クローズボタン */
  .sidenavs .close-btn {
    position: absolute;
    /* 親要素との絶対位置を指定 */
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

  .g_map_base .g_map {
    margin: 0 auto;
  }

  h1,h3,h4,h5,h6 { margin : 0}

h1 {
    font-size : 36px;
    line-height : 1;
}

h2 {
  font-size: 28px;
  position: relative;
  margin: 0.5rem 0 0 0;
  text-align: center;
}

h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10%;/*線の上下位置*/
  display: inline-block;
  width: 25%;/*線の長さ*/
  height: 5px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #233b6c;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

h2 span {
  display: block;
  font-size: 14px;
  color: #F6CB68;
}

h3 {
    font-size : 20px;
    line-height : 1;
    position: relative;
    text-align: center;
}

h3:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -40%;/*線の上下位置*/
  display: inline-block;
  width: 40%;/*線の長さ*/
  height: 4px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #F6CB68;/*線の色*/
  border-radius: 2px;/*線の丸み*/
}

h4 {
  font-size: 16px;
  position: relative;
  text-align: center;
}

h4:before {
  content: '';
  position: absolute;
  left: 50%;
  display: inline-block;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);/*位置調整*/
}

h4 span {
  display: block;
  font-size: 16px;
  color: #F6CB68;
}

p{
  line-height: 1.4rem;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  font-weight: bold;
}

video{
  max-width: 100%;
  height: auto;
  }

}


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

mobil_top

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

@media (max-width: 600px) {
  #hero>.wrapper>h1{
    margin: 0 auto 2rem;
  }



  #greeting .wrapper {
    flex-direction: column;
    width: 100%;
    margin: 1rem auto 5rem ;
  }

  .wrapper .item_container{
    width: 100%;
    padding: 0;
  }

  .wrapper .item_container2{
    width: 100%;
    padding: 0;
  }

  .item_s>h3{
    margin-bottom: 1rem;
  }

  .wrapper .text_container{
    width: 100%;
    padding-left: 1px;
  }

  .wrapper .text_container h3{
    margin: 2rem 0;
  }

  .wrapper .text_container2 h3{
    margin: 2rem 0;
  }
  .wrapper .text_container2{
    width: 100%;
    padding-left: 1px;
  }

  .wrapper .text_container2 h3{
    margin: 2rem 0;
  }

  .item_text{
    margin-left: auto;
    margin-right: auto;
}

  #about .wrapper {
    margin: 1rem auto 5rem ;
}

  }

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

mobil_trimming

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

@media (max-width: 600px) {
  #trimming>.wrapper{
    width: 95%;
    margin-top: 2rem;
  }
  
  #trimming .text_container h3{
    margin: 1rem auto 2rem;
  }

  #trimming .tr_container {
    flex-direction: column;
    width: 100%;
    margin: 1rem auto 5rem ;
  }

  #process {
    margin:  2rem auto 0;
    width: 100%;
  }
  
  #process .process_wrapper {
    margin: 2rem auto 2rem;
    width: 100%;
  }

  #process .box {
    margin: 0 auto;
    width: 80%;
  }

  }

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

mobile_late

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

@media (max-width: 600px) {
  #latee {
    width: 100%;
    margin: 1rem auto 2rem ;
  }

  #latee .biyou_wrapper1{
    flex-direction: column;
  }

  .biyou_img{
    width: 100%;
  }

  .biyou_img img{
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .biyou_text{
    width: 70%;
    padding: 0;
    margin: 0 auto;
  }

  #latee .biyou_wrapper2{
    flex-direction: column-reverse;
  }

  .logo_wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }

  .reason_wrapper {
    flex-direction: column;
    margin: 3rem 0 3rem;
  }

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

  .reason_item p{
    margin-bottom: 2rem;
  }

  .effect_wrapper {
    margin: 3rem 0;
  }

  .effect_item>img {
    margin: 0.5rem 0;
  }

  .achievement_wrapper {
    width: 90%;
    margin: 0 auto;
  }

  .br_pc{
    display: none
  }
  }

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

mobile_nano

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

@media (max-width: 600px) {
  #nano {
    width: 100%;
    margin: 1rem auto 2rem ;
  }

  #nano h2 {
    margin-bottom: 2rem;
  }

  #nano .nano_wrapper1{
    flex-direction: column-reverse;
    margin: 2rem;
  }

  .nano_img{
    width: 100%;
  }

  .nano_img img{
    padding-right: 0;
    margin-bottom: 0;
  }

  .nano_text{
    width: 70%;
    padding: 0;
    margin: 0 auto 1rem;
  }

  .nano_title{
    padding: 0;
    margin: 0 auto;
  }

  #nano .nano_wrapper2{
    flex-direction: column-reverse;
  }

  .logo_wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }

  .br_pc{
    display: none
  }
  }

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

mobile_staff

-------------------------------------------*/
@media (max-width: 600px) {
  #trimmer{
    margin: 0 auto;
  }
  
  .trimmer_wrapper {
    width: 100%;
    margin: 3rem auto;
  }

  .trimmer_wrapper>h3{
    width: 70%;
    margin: 3rem auto;
  }

  .tr_layer{
    flex-direction: column;
    width: 100%;
  }

  .img_layer {
    padding-right: 0;
    width: 80%;
    height: auto;
    margin: 0 auto 1rem;
  }

  .table_layer {
    padding-left: 0;
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .br_sp{
    display: block
  }
  }

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

mobile_price

-------------------------------------------*/
@media (max-width: 600px) {
  .sp_text{
    display: block;
    margin: 2rem auto 0;
    text-align: center;
  }

  #price .price_container{
    padding: 0;
    width: 100%;
  }

  #price .wrapper {
    max-width: 600px;
    overflow-x: auto;
    margin-bottom: 2rem;
  }

  #price table {
    white-space: nowrap;
    margin: 10px 0;
  }

  #price .wrapper::-webkit-scrollbar {
    height: 10px; /* スクロールバーの高さ */
  }

  #price .wrapper::-webkit-scrollbar-thumb {
    background:#F6CB68; /* ツマミの色 */
  }

  #price .wrapper::-webkit-scrollbar-track {
    background: #ddd; /* トラックの色 */
  }
  
  #price h3{
    margin-bottom: 2rem;
  }

  #price .option_price {
    width: 75%;
    margin: auto;
  }

  #price .option_container p{
    width: 100%;
    text-align: left;
  }

  }

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

mobile_shop

-------------------------------------------*/
  @media (max-width: 600px) {
    .contact_wrapper {
      margin: 2rem auto 0.5rem auto;
    }

    .tel_wrapper {
      margin: 5rem auto 0.5rem auto;
    }
    
    .info_wrapper{
      flex-direction: column;
      width: 100%; 
      margin: 2rem 0 4rem;
    }
  
    .info_img {
      padding-right: 0;
      width: 80%;
      height: auto;
      margin: 0 auto 1rem;
    }
  
    .info_table {
      padding-left: 0;
      width: 90%;
      height: auto;
      margin: 0 auto;
    }

    .tel_inner {
      width: 80%;
    }
    
    .tel_inner>p:nth-child(2) {
      margin-bottom: 1rem;
    }

    .gallery_inner{
      margin-top: 1rem;
    }

    .gallery_box:first-child{
      margin-top: 0.5rem;
    }

    .gallery_box{
      width: 100%;
      margin-top: 3rem;
      margin-right: 0;
    }

    .gallery_wrapper{
      margin-bottom: 2rem;
    }

    .gallery_wrapper>h3{
      margin-bottom: 1rem;
    }

    .qr {
      display: none;
    }

    .contact_wrapper>.line{
      text-align: center;
    }

    }