@charset "UTF-8";
/*
theme Name: theme
Author:
Description: original theme
version： 1.0.0
*/
/*＝＝＝＝＝↓リセットCSS↓＝＝＝＝＝*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*＝＝＝＝＝↑リセットCSS↑＝＝＝＝＝*/

/*＝＝＝＝＝↓共通CSS↓＝＝＝＝＝*/
/* デバイスにより表示、非表示 */
@media only screen and (max-width: 1000px) {
.pc {
    display: none;
  }
}

.sp {
  display: block;
}

body {
  font-size: 20px;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
}

.width1000 {
  width: 1000px;
  margin: 0 auto;
}

section {
  padding: 80px 0 100px 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* h2タイトル */
h2 {
  color: #333;
  font-size: 38px;
  text-align: center;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  line-height:1.4;
  margin-bottom: 60px;
  position: relative;
}

/* インナー幅 */
.width1000 {
  width: 1000px;
  margin: 0 auto;
}
/* スマホ改行 */
.sp {
  display: none;
}

@media only screen and (max-width: 1000px) {
.width1000 {
  width: 90%; /*インナー幅*/
}
}

@media only screen and (max-width: 640px) {
h2 {
  font-size: 28px;
  margin-bottom: 30px;
}
section {
  padding: 40px 0 ;
}
/* スマホ改行 */
.sp {
  display: block;
}
}

/*＝＝＝＝＝↑共通CSS↑＝＝＝＝＝*/

/* ヘッダ */
header {
  height: 70px;
  width: 100%;
  position: fixed;
  background:rgba(255,255,255,0.8);;
  /*opacity: 0.9;*/
  z-index:500;
}
header .flex {
  padding: 0 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ロゴ */
header .flex h1 {
  padding: 5px 0;
  font-size: 34px;
  letter-spacing: 2px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
@media only screen and (max-width: 479px) {
header {
  height: 45px;
  text-align: center;
}
header .flex {
    display: block;
}
header .flex h1 {
  font-size: 24px;
  padding: 2px 0;
}
}

/* 電話番号 */
header .flex .tel-1 a {
  color: #333;
  font-size: 26px;
  font-weight: bold;
  display: block;
  letter-spacing:3px;
}

header .flex .tel-1 a:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(images/tel.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}

/* メインビジュアル */
.mv {
	}
.mv-box {
  position: relative;
  background-image: url(images/mv_bg.jpg);/* MV背景画像 */
  background-size: cover;
  background-repeat: no-repeat;
  height: 850px; /*MV高さ*/
  width: 100%;
  text-align:right;
}
.mv-box .mv-img {
	position: absolute;
	bottom: 35%;
  right: 30px;
	margin: auto;
	width: 100%;
}
.mv-box .mv-img img {
	max-width: 750px;
}
.mv-box .mv-sp {
	display: none;
	}

@media only screen and (max-width: 640px) {
.mv-box {
  max-height: 400px; /*MV高さ*/
  padding-top:60px;
}
.mv-box .mv-sp {
	display: block;
	}
.mv-box .mv-pc {
	display: none;
	}
.mv-box .mv-img img {
	max-width: 100%;
  max-height: 320px;
}
}
@media only screen and (max-width: 375px) {
.mv-box {
  max-height: 300px; /*MV高さ*/
}
.mv-box .mv-img {
	bottom: 25%;
  right: 0;
}
}

/*イントロ*/
.intro {
  text-align: center;
  background: url(images/img_intro.png) right bottom no-repeat #f7f6f8;
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
  padding-bottom: 100px;

	}
.intro p {
  padding-bottom: 20px;
	}
@media only screen and (max-width: 1000px) {
  .intro {
    text-align: left;
  }
} 

/* お悩み */
.onayami {
  background: #fff;
}
.onayami ul {
  margin: 0 auto;
  width: 70%;
  background-image: url(images/bg_onayami.png);
  padding: 30px 40px 30px 40px;
  border: #ccc solid 1px;
}
.onayami ul li {
	line-height:2.5;
	font-size:20px;
}
.onayami ul li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(images/icon_check.png);/* リストスタイル画像 */
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  padding-left: 15px;
}

@media only screen and (max-width: 560px) {
.onayami ul {
    width: 90%;
    padding: 5%;
  }
  .onayami ul li {
    margin-left: 1em;
    text-indent: -1.5em;
    line-height:2;
    font-size:18px;
    }
  .onayami ul li::before {
    width: 10px;
    height: 15px;
  }
}

/*お任せください*/
.omakase{
  text-align: center;
  background: #7a9061;
  padding: 50px 0;
}
.omakase h3{
  font-size: 32px;
  color:#fff;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.omakase h3 span {
  font-size: 46px;
  background: linear-gradient(transparent 90%, #fbf781 90%);
}
@media only screen and (max-width: 640px) {
.omakase{
  padding: 30px 0;
}
}
@media only screen and (max-width: 375px) {
  .omakase h3{
    font-size: 24px;
  }
  .omakase h3 span {
    font-size: 28px;
  }  
  }

/*漫画画像*/
.manga {
background:#eaeedc;
}
.manga img {
margin-bottom: 20px;
width: 100%;
border: 1px solid #000;
box-sizing: border-box;
}

/*選ばれる理由*/
.reason{
  background:#fff;
}
.reason p {
  font-size: 26px;
  font-weight: bold;
}
.reason ul {
  padding: 0 60px;
}
.reason li {
 position: relative;
 padding: 1.6rem 0 0 10rem;
 min-height: 80px;
 color: #000;
 background: #ecebed;
 margin-bottom: 20px;
 border-radius: 20px;
 border: #7a9061 solid 2px;
}
.reason li span {
 position: absolute;
 top: 0;
 left: 0;
 padding: 1rem 1.6rem;
 margin: 10px;
 color: #fff;
 background: #7a9061;
 font-size: 20px;
 border-radius: 10%;
}
.reason li span:after {
 position: absolute;
 top: calc(50% - 7px);
 right: -11px;
 width: 0;
 height: 0;
 content: '';
 border-width: 7px 0 7px 12px;
 border-style: solid;
 border-color: transparent transparent transparent #7a9061;
}
.reason li span strong {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width:800px) {
.reason p {
  font-size: 20px;
  line-height: 1.2;
}
.reason ul {
  padding: 0;
}  
.reason li {
 padding: 1rem 0 0 6.5rem;
 min-height: 65px;
}
.reason li span {
 padding: 0.5rem 0.6rem;
 font-size: 18px;
}
.reason li span strong {
  font-size: 24px;
}
}
 
/*サロンについて*/
.salon {
  text-align: center;
  background:#eaeedc;
	}
.salon img {
 width: 80%;
 box-sizing: border-box;
 margin-bottom: 40px;
}
.salon p {
  padding-bottom: 20px;
	}
.salon ul {
  text-align: left;
  border: #308146 solid 1px;
  padding: 20px;
  background: #fff;
  margin: 20px 0;
  border-radius: 10px;
}
@media only screen and (max-width: 1000px) {
.salon img {
  width: 100%;
  margin-bottom: 20px;
 }
 .salon p {
  text-align: left;
  font-size: 16px;
	}
} 

/*多数のメニュー*/
.about {
  background: url(images/bg_about.png) right bottom no-repeat #fff;
  background-repeat: no-repeat;
  background-size: 70%;
  text-align: center;
  padding-bottom: 300px;
	}
.about p {
  padding-bottom: 20px;
  font-size: 20px;
}
.about p span {
  background: rgba(255,255,255,0.7);
}
@media only screen and (max-width: 640px) {
.about p {
  text-align: left;
   }
   .about {
    background-size: 120%;
    }  
}
@media only screen and (max-width: 375px) {
  .about {
    padding-bottom: 50px;
    }
  
  .about p {
    font-size: 18px;
  }
 }
 
 /*概要*/
.gaiyou {
	background:url(images/bg_gaiyou.jpg) bottom no-repeat;
	background-size: cover;
	}
.gaiyou .gaiyou-box{
	padding: 20px 0;
	}
.gaiyou table {
	text-align:left;
	width: 100%;
	}
.gaiyou th {
	border-bottom: #fff solid 1px;
	padding:15px;
	width: 30%;
	color:#fff;
	background-color:rgba(122,144,97,0.8);
  white-space: nowrap;
	}
.gaiyou td {
	border-bottom: #fff solid 1px;
	padding:8px 15px ;
	width: 70%;
	background-color:rgba(237,237,237,0.8);
	}
.gaiyou tr:last-child th,
.gaiyou tr:last-child td {
	border-bottom: none;
	}
.gaiyou p {
	padding:10px 0;
	}
@media only screen and (max-width: 1000px) {
.gaiyou .gaiyou-box{
	padding :20px 0;
}
}
@media only screen and (max-width: 640px) {
.gaiyou th,
.gaiyou td {
  font-size: 16px;
}
}

/* 地図 */
section.map {
  background-color:#eee;
  padding: 0;
}

/*フッター*/
footer {
  background-color: #7a9061; /*フッター背景色*/
  text-align: center;
  font-size: 12px;
  color: #fff; /*フッター文字色*/
  height: 60px;
  line-height: 60px;
}

/* スマホ固定ボタン */
.sp-btn {
  display: none;
}

@media only screen and (max-width: 1000px) {
  .sp-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    font-size: 16px;
    width: 100%;
    text-align: center;
    
/*    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;*/
  }

  /* スマホ電話ボタン */
.sp-btn .tel-btn {
    position: relative;
    width: 90%;
    background-color: #fff;
    height: 60px;
    line-height: 1.2;
    border-radius: 20px;
    margin: 10px auto;
    border: 2px solid #7a9061;
  }
  .sp-btn .tel-btn a {
    width: 100%;
    color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
  .sp-btn .tel-btn a:before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url(images/tel.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
  .sp-btn .tel-btn a span {
    font-size: 12px;
  }

}
