@charset "utf-8";


/*全体の設定
-----------------------------------------------------------------------------------------------------------------------------------------------------*/
html,body {height: 100%;}
body{
  margin:0px;
  padding: 0px;
  font-family:"Hiragino Kaku Gothic Pro",Osaka,"メイリオ","ＭＳ Ｐゴシック","MS PGothic",Verdana,Arial,sans-serif;
  font-size: 14px;
  line-height: 2;
  color:#460000; /*全体の文字色*/
  background-color:#FFFFFC;  
}

img{
  outline:none;
  border-style:none;
}

br {
   letter-spacing:normal;
}

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

a {
   color:#C79943;
}

a:hover {
   color: #FF5A5D;
   text-decoration:underline;
}

/*ヘッダー(全体）---------------------------------------------*/
header {
	background-color: #FFFFFC; 
}

/*ロゴ画像（PC）----------------------------------------------*/
h1{
	background-color: #FFFFFC ;
	text-align : center;
	margin: 10px;
}
h1 img{
    width: 40%;
}
/*ロゴ画像(スマホ：画面幅480px以下）---------------------------*/
@media screen and (max-width:480px){
h1 img{
    width: 80%;
}
}

/*Gナビ (PC) ------------------------------------------------*/
@media screen and (min-width:481px){
.gnavi__wrap1 {
    width: 80%;
    margin: 20px 10% 80px 10%;
}
.gnavi__wrap2 {
    display:none;
}
.gnavi__lists {
    display: flex;
}
.gnavi__list {
    width: 20%;
    height: 40px;
    background-color: #FFFFFC;
    position: relative;
    transition: all .3s;
}
.gnavi__list:hover {
    background-color: #D7BA4C;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list:hover::before {
    background-color: #D7BA4C;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #1b4059;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.gnavi__list:hover a {
    color: #fff;
}

/*Gナビ・ドロップリスト（PC）*/
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    background-color: #D7BA4C;
    height: 40px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #C79943;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #C79943;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}
}

/*Gナビ (スマホ：画面幅480px以下） -------------------------------------*/
@media screen and (max-width:480px){
.gnavi__wrap2 {
    width: 90%;
    margin: 20px 5%;
}
.gnavi__wrap1 {
    display: none;
}
.gnavi__lists {
    display: flex;
    flex-direction: column;
}
.gnavi__list {
    width: 34%;
    height: 30px;
    background-color: #D7BA4C;
    transition: all .3s;
    text-align: center;
    text-align-last: justify;
    padding: 0 33%;
}
.gnavi__list:hover {
    background-color: #C79943;
}
.gnavi__list a { 
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #1b4059;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.gnavi__list:hover a {
    color: #fff;
}
}

/* コンテナー（headerとfooterをのぞくブロックを囲むブロック）
 ------------------------------------------------*/
#container {
	margin: 0;
}

/*コンテンツ(PC)（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#contents {
	overflow: hidden;
	padding: 50px 0;
	background-color: ;
}
#contents section{
	padding: 50px 15% 0;
	background-color: ;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 20px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	background: #C79943;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #b49f84;	/*枠線の幅、線種、色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
	color: #b49f84;			/*文字色*/
	background: #fff;	/*背景色*/
}
/*コンテンツ内にあるh4(見出し)タグの指定*/
#contents h4 {
	margin-bottom: 10px;
	clear: both;
	padding: 0 20px;
	font-size: 14px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	font-weight: bold;	/*文字の太さ*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 40px 20px;	/*上、左右、下への余白*/
	background-color: ;
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p,
#contents h4 + p {
	margin-top: -10px;
}
}

/*コンテンツ (スマホ：画面幅480px以下）（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#contents {
	overflow: hidden;
	padding: 0px 0 50px 0;
	background-color: ;
}
#contents section{
	padding: 50px 3% 0 3%;
	background-color: ;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 20px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	background: #C79943;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #b49f84;	/*枠線の幅、線種、色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
	color: #b49f84;			/*文字色*/
	background: #fff;	/*背景色*/
}
/*コンテンツ内にあるh4(見出し)タグの指定*/
#contents h4 {
	margin-bottom: 10px;
	clear: both;
	padding: 0 20px;
	font-size: 14px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	font-weight: bold;	/*文字の太さ*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#contents section p {
	margin-top: 20px;
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p,
#contents h4 + p {
	margin-top: -10px;
}
}

/*flex box設定（PC）(要素の横並び）
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
.flex-container {
	display: flex;
}
.flex-item {
	padding: 20px;
	width: 50%;
}
.flex-item img{
	margin: 0 10%;
	width: 80%;
}
}

/*flex box設定 (スマホ：画面幅480px以下）(スマホは横並びにしない）
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
.flex-container {

}
.flex-item {
	padding-top: 0px;
}
.flex-item img{
	margin: 20px 5% 0;
	width: 90%;
}
}

/*button（PC）(ボタンセクション）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
a.btn {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 150px;
	margin: 20px auto;
	padding: 0.8rem 4rem;
	font-weight: bold;
	border: 2px solid #FF5A5D;
	background: #FF5A5D;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn:hover {
	color: #FF5A5D;
	background: #fff;
}
}

/*button(スマホ：画面幅480px以下）(ボタンセクション）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
a.btn {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 150px;
	margin: auto;
	padding: 0.8rem 4rem;
	font-weight: bold;
	border: 2px solid #FF5A5D;
	background: #FF5A5D;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn:hover {
	color: #FF5A5D;
	background: #fff;
}
}

/*usagi（PC）(うさぎ表示）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#usagi img {
	width: 10%;
	margin: 0 45%;
}
}

/*usagi(スマホ：画面幅480px以下）(うさぎ表示）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#usagi img {
	width: 20%;
	margin: 0 40%;
}
}

/*pan(パンくずリスト）設定
---------------------------------------------------------------------------*/

/*me（PC）(プロフィールページのセクション）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#me img {
	width: 50%;
	margin: 0 25%;
}
}

/*me(スマホ：画面幅480px以下）(プロフィールページのセクション）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#me img {
	width: 90%;
	margin: 0 5%;
}
}

/*menu（PC）(メニューページのセクション）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#menu img {
	width: 50%;
	margin: 0 25%;
}
}

/*menu(スマホ：画面幅480px以下）(メニューページのセクション）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#menu img {
	width: 90%;
	margin: 0 5%;
}
}

/*review(メニューページのお客様の声セクション）設定
---------------------------------------------------------------------------*/
#review img {
	width: 50px;
}
#review p {
	background-color: #FCFAF5;
	margin: 20px 20px;
}


/*question(メニューページのQ＆Aセクション）設定
---------------------------------------------------------------------------*/
#question img {
	width: 100px;
	margin-top: 20px;
}
#question p {
	margin: 0px 20px;

}

/*detail（PC）(各占いページのセクション）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#detail img {
	width: 50%;
	margin: 0 25%;
}
}

/*detail(スマホ：画面幅480px以下）(各占いページのセクション）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#detail img {
	width: 90%;
	margin: 0 5%;
}
}

/*payment（PC）(料金設定のセクション）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#payment table {
	width: 60%;
	margin: 0px 20% 20px;
}
#payment table, td, th {
border: 1px #D7BA4C solid;
text-align: center;
}
#payment th {
background-color: #FCFAF5;
}
#payment strong {
	font-weight: bold;
}
}

/*paymen(スマホ：画面幅480px以下）(料金設定のセクション）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#payment table{
	width: 80%;
	margin: 0px 10% 10px;
}
#payment table, td, th {
border: 1px #D7BA4C solid;
text-align: center;
}
#payment th {
background-color: #FCFAF5;
}
#payment strong {
	font-weight: bold;
}
}

/*booth（PC）(出店情報のセクション）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#booth img {
	width: 50%;
	margin: 0 25% 20px; 
}
#booth table {
	width: 80%;
	margin: 0px 10% 20px;
}
#booth table, td, th {
	border-style: none;
	text-align: center;
}
#booth td, th {
	height: 50px;
}
#booth th {
	background-color: #FCFAF5;
}
}

/*booth(スマホ：画面幅480px以下）(出店情報のセクション）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#booth img {
	width: 90%;
	margin: 0 5% 20px; 
}

#booth table{
	width: 90%;
	margin: 0px 5% 10px;
}
#booth table, td, th {
	border-style: none;
	text-align: center;
}
#booth td, th {
	height: 50px;
}
#booth th {
	background-color: #FCFAF5;
}
}

/*therapy（PC）(セラピーページのセクション）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#therapy strong {
	font-weight: bold;
}
}

/*therapy(スマホ：画面幅480px以下）(セラピーページのセクション）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#therapy strong {
	font-weight: bold;

}
}

/*contact（PC）(コンタクトページのformなど）設定
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
#LINE{
	width: 30%;
	margin: 0 35% 20px;
}
#LINE img{
	width:;
}
#formzu{
	width: 90%;
	margin: 0 5% 20px; 
}
#formzu iframe{
	width: 90%;
	margin: 0 5% 20px; 
	height: 1600px;
}
}

/*formzu(スマホ：画面幅480px以下）(コンタクトページのformなど）設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
#LINE{
	width: 90%;
	margin: 0 5% 20px;
}
#LINE img{
	width: 40%;
}
#formzu  {
	width: 100%;
}
#formzu iframe{
	width: 90%;
	margin: 0 5% 20px; 
	background-color: blue;
	height: 1800px;
}
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #D7BA4C;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
	padding: 10px 0;
}
footer a {
	color: #fff;	/*リンクテキストの文字色*/
	text-decoration: none;
	margin: 8px;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー&SNS設定（PC）
---------------------------------------------------------------------------*/
@media screen and (min-width:481px){
.fnavi {
	margin: 5px 0 0;
	display: flex;
}
.fsns {
	text-align: left;
}
.fsns img {
	margin: 30px 20px 10px;
}
.fsns_LINE{
	text-align: left;
}
.fsns_LINE img{
	margin: 0px 20px 10px;
	width: 80px;
}
}

/*フッターメニュー&SNS設定 (スマホ：画面幅480px以下）(スマホは横並びにしない）
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){
.fnavi {
}
.fsns img {
	margin: 20px 10px 10px;
}
.fsns_LINE {
	width: ;
}
.fsns_LINE img{
	margin: 0px 20px 10px;
	width: 30%;
}
}

/*Copyright設定
---------------------------------------------------------------------------*/
.copyright{;
}
