@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;
}

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;
  }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  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: 42px;
  text-align: center;
  line-height:1.4;
  margin-bottom: 60px;
  position: relative;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
/* インナー幅 */
.width1000 {
  width: 1000px;
  margin: 0 auto;
}
/* スマホ改行 */
.sp {
  display: none;
}

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

@media only screen and (max-width: 640px) {
h2 {
  font-size: 26px;
  margin-bottom: 40px;
  letter-spacing: -1px;
}
h2:after {
  bottom: -15px;
}
section {
padding: 40px 0 ;
}
p {
  font-size: 18px;
}
}

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

/* ヘッダ */
header {
  height: 80px;
  width: 100%;
  position: fixed;
  background:rgba(0,0,0,0.6);;
  /*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 {
  height: 60px;
  padding: 5px 0 0 0;
  font-size: 38px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
header .flex h1 img {
  height: 70px;
}
@media only screen and (max-width: 640px) {
header {
  height: 50px;
  text-align: center;
}
  header .flex h1 {
  height: 40px;
  padding: 0;
}
header .flex h1 img {
  height: 45px;
}
header .flex {
  display: block;
}
}

/* メインビジュアル */
.mv {
	}
.mv-box {
  position: relative;
  background-image: url(images/mv_bg.jpg);/* MV背景画像 */
  background-size: cover;
  background-repeat: no-repeat;
  height: 760px; /*MV高さ*/
  width: 100%;
  text-align:center;
}
.mv-box .mv-img {
	position: absolute;
	bottom: 12%;
	margin: auto;
	width: 100%;
}
.mv-box .mv-img img {
	max-width: 800px;
}
.mv-box .mv-sp {
	display: none;
	}
@media only screen and (max-width: 720px) {
.mv-box {
  max-height: 140px; /*MV高さ*/
  padding-top:200px;
}
.mv-box .mv-sp {
	display: block;
	}
.mv-box .mv-pc {
	display: none;
	}
.mv-box .mv-img img {
	max-width: 94%;
  max-height: 320px;
}
}

/*　こんなお悩み　*/
.onayami {
}
.onayami img {
margin-bottom: 20px;
width: 100%;
box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
.onayami img {
  margin-bottom: 0;
 }
}

/* 訴求文 */
.please{
  text-align: center;
  background-image: url(images/img_sokyu.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0;
}
.please h3{
  font-size: 48px;
  color:#fff;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  line-height: 1.4;
  letter-spacing: -1px;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
.please{
  padding: 30px 0;
}
}
@media only screen and (max-width: 375px) {
  .please h3{
    font-size: 24px;
  }
}

/*漫画画像*/
.manga {
}
.manga img {
margin-bottom: 20px;
width: 100%;
border: 1px solid #000;
box-sizing: border-box;
}
@media only screen and (max-width: 640px) {
.manga img {
  margin-bottom: 0;
 }
}

/* ここが魅力 */
.detail {
  background-image: url(images/bg_stripe.png);
}
.detail .detail-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
}
.detail .detail-box h3 {
  color: #e0a6b8;
  text-align: center;
  font-size: 30px;
  background: #f9f4f5;
  border-radius: 10px;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  padding: 5px;
  margin-bottom: 30px;
}
.detail .detail-box img {
  width: 100%;
}
.detail .detail-box p {
  text-align: center;
  margin: 10px 0 70px 0;
}
@media only screen and (max-width: 1000px) {
  .detail .detail-box p {
    text-align: left;
  }
}
@media only screen and (max-width: 640px) {
  .detail .detail-box h3 {
    font-size: 22px;
    line-height: 1.2;
    padding: 10px 5px;
  }
  .detail .detail-box p {
    margin-bottom: 40px;
  }  
  .detail .detail-box p:last-child {
    margin-bottom: 10px;
  }  
}

/* 受付終了 */
.close{
  text-align: center;
  padding: 40px 0;
}
.close h3{
  font-size: 46px;
  color:#E0A6B8;
  font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  line-height: 2;
  letter-spacing: -1px;
}
@media only screen and (max-width: 640px) {
.close{
  padding: 30px 0;
}
}
@media only screen and (max-width: 375px) {
  .close h3{
    font-size: 24px;
  }
}

/*お問い合わせ*/
/*　LINEボタン　*/
#contact {
  background-color: #fbf7f8;
}
#contact p {
  text-align: center;
}
#contact .line-btn p {
  background-color: #C7AE70;/* ボタン色 */
  width: 70%;
  padding: 20px 0;
  border-radius: 10px;
  margin: 40px auto 0 auto;
  text-align: center;
  box-shadow: 0 5px 10px -5px rgba(0,0,0,0.3)
}
#contact .line-btn p a {
  color: #fff;
  font-size: 22px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  background-image: 
  display: block;
  background-image:url(images/icon_yubi.png);
  background-repeat: no-repeat;
  background-size: 50px;
  background-position: right 20px top 50%;
}
.line-btn p:hover {
	opacity: 0.8 ;
  cursor:pointer
}
@media only screen and (max-width: 375px) {
  #contact .line-btn p {
    width: 100%;
    padding: 10px 0;
  }
  #contact .line-btn p a {
    background-position: right 20px top 10%;
  }
  }
  

/*概要*/
.gaiyou {
	background:url(images/bg_gaiyou.jpg) no-repeat;
	background-size: cover;
  font-size: 20px;
	}
.gaiyou h2 {
  color: #fff;
}
.gaiyou .gaiyou-box{
	padding: 20px 0;
	}
.gaiyou table {
	text-align:left;
	width: 100%;
	}
.gaiyou th {
	border-bottom: #fff solid 1px;
	padding:2%;
	width: 32%;
	color:#fff;
	background-color:rgba(98,97,98,0.6);
  white-space: nowrap;
	}
.gaiyou td {
	border-bottom: #fff solid 1px;
	padding:2%;
	width: 70%;
	background-color:rgba(237,237,237,0.8);
	}
.gaiyou td a {
  color: #5ebeb2;
  }
.gaiyou td span {
  font-size: 16px;
  }
.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: #E0A6B8; /*フッター背景色*/
  text-align: center;
  font-size: 12px;
  color: #fff; /*フッター文字色*/
  height: 60px;
  line-height: 60px;
}

/* 下部固定ボタン */
.contact-btn {
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 20px;
  font-size: 22px;
  width: 250px;
  background-color: #C7AE70;/* スマホ問い合わせボタン背景色 */
  height: 100px;
  line-height: 100px;
  border-radius: 10px;
  border: #fff solid 3px;
}
.contact-btn p {
  text-align: center;
  width: 100%;
}
.contact-btn p a {
    color: #fff;/* スマホボタン文字色 */
    display: block;
 }
.contact-btn:hover {
    opacity: 0.9 ;
}
@media only screen and (max-width: 640px) {
.contact-btn {
  bottom: 10px;
  right: 5%;
  width: 90%;
  height: 70px;
  line-height: 70px;

}
}
  
