@charset "utf-8";


/*-------------------------------
再利用可能なパーツは制作完了後utility.cssへ
-------------------------------*/

/*-------------------------------
            リセットcss
--------------------------------*/

.siteContent,
.entry-body {
  padding: 0;
}

.blog .siteContent,
.blog .entry-body,
.single .siteContent,
.single .entry-body,
.archive .siteContent,
.archive .entry-body,
.category .siteContent,
.category .entry-body {
  padding: 3em 0;
}

h2 {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}

h3,
h3:after {
  border: none;
}

h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  background: none;
}

h4 {
  border-radius: 0;
}

p {
  margin: 0;
}


.mainSection-marginBottom-on {
	margin-bottom: 0;
}

/*-------------------------------
基本設定（サイト全体のフォントとか背景色など）
--------------------------------*/
body {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
    font-weight: 400;
    font-size: 16px;
	color: #666;
	line-height: 1.6;
	background: #fff;
}

/*-----リンクをマウスオーバーした際-----*/
a:hover {
    opacity: 0.8;
    text-decoration: none;
}

/*-------------------------------
           カラム関連
--------------------------------*/

@media (min-width: 600px) {
  .wp-block-columns {
    margin: 0;
  }
}

/*カラムの中身を中央に寄せる*/
.column2-center,
.column2-1center,
.column3-center,
.column4-center {
  justify-content: center;
}

/*2カラムを1カラムにする*/
.column2-1center > div:first-child {
  width: 100%;
  max-width: 1080px;
}

.column2-1center > div:last-child {
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
}

/*カラム内の横幅を設定*/
.column2-center > div {
  max-width: calc(1080px / 2);
}

.column3-center > div {
  max-width: calc(1080px / 3);
}

.column4-center > div {
  max-width: calc(1080px / 4);
}

@media screen and (max-width: 600px) {
	.column2-center >div:nth-child(2) {
		margin-top: 40px;
	}
	
	.wp-block-columns {
		margin-bottom: 0;
	}
	
}

/* 横に作成したカラムを縦に並べる */
.column_vertical {
  flex-direction: column;
}

.column_vertical > div:nth-child(1),
.column_vertical > div:nth-child(2) {
  width: 100%;
}

.column_vertical > div:nth-child(1) {
  margin-bottom: 5px;
}

/*カラムのコンテンツを逆に表示*/
.reverse {
  flex-direction: row-reverse;
}

@media screen and (min-width: 600px) {
    .reverse .wp-block-column:not(:first-child) {
	    margin-left: 0;
	    margin-right: 16px;
    }
}

/*-sp時、カラム落ちの順番入れ替え-*/
@media screen and (max-width: 768px) {
    .flex_order {
      display: flex;
    }

    .flex-item :first-child {
      order: 2;
    }

    .flex-item :nth-child(2) {
      order: 1;
    }
}

/*-カラムが落ちないようにする-*/
.column_nowrap {
  flex-direction: row;
  flex-wrap: nowrap;
}

/*-------------------------------
             便利系
--------------------------------*/

/*非表示系*/

.invisible {
	display: none;
}

/*pc非表示*/
@media screen and (min-width: 1025px) {
  .pc_none {
    display: none;
  }
}

/*タブレット非表示*/
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .tab_none {
    display: none;
  }
}

/*スマホ非表示*/
@media screen and (max-width: 600px) {
  .sp_none {
    display: none;
  }
}

  .mgn_null {
    margin: 0 !important;
  }

  .mgn_null > p {
    margin: 0 !important;
  }

  .wp-block-column.mgn_null {
    margin: 0 !important;
  }

@media screen and (min-width: 600px) {
  .mgn_null >.wp-block-column,
  .mgn_null >.wp-block-column >.wp-block-cover  {
    margin: 0 !important;
  }
}

.separator {
  width: 100%;
  border-bottom: 1px dotted #cecece;
}

@media screen and (min-width: 600px) {
  .center {
    text-align: center;
  }
}

/*sp時に使用*/
@media screen and (max-width: 600px) {
  .sp_txt_center {
    text-align: center;
  }

  .sp_txt_left {
    text-align: left !important;
  }

  .sp_br_none br {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .sp_pdg {
    padding: 0 20px;
  }
}

/*画像サイズ*/
.img_cover img {
    width: 400px;
    height: 210px;
    object-fit: cover;
    object-position: 50% 40%;
}

/*-------------------------------
             ヘッダー
--------------------------------*/

.container.siteHeadContainer {
    width: 100%;
    max-width: initial;
}

header.siteHeader:before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_plants01.png)no-repeat;
    width: 191px;
    height: 195px;
    position: absolute;
    background-size: 70%;
	top: -30px;
}

@media screen and (max-width: 768px) and (min-width: 600px){
	header.siteHeader:before {
    background-size: 45%;
	}
}

@media screen and (max-width: 599px){
	header.siteHeader:before {
    background-size: 45%;
	}
}

/*ヘッダー全幅表示*/

.navbar-brand {
    padding: 15px 0;
    width: 52%;
    text-align: right;
}

/* ヘッダーロゴ設定 */
@media screen and (max-width: 768px) {
	.siteHeadContainer {
    padding: 0 20px 5px 0 !important;
	}
}

/* ヘッダーロゴの大きさ */
.navbar-brand img {
    max-height: 30px !important
}


/*adominバー表示時のスマホメニュー位置調整*/
.admin-bar .vk-mobile-nav-menu-btn {
    left: 88% !important;
    top: calc(42px + 10px) !important;
}

.vk-mobile-nav-menu-btn {
    left: 88% !important;
    top: 10px !important;
}


/*-------------------------------
            フッター
--------------------------------*/

footer,.siteFooter {
  border: none;
}

.siteFooter {
    background: #fff;
}

.copySection {
    background: #fff;
}

.copySection >p {
	letter-spacing: .1em;
}

footer .sectionBox {
    padding-top: 2em;
	padding-bottom: 0;
}

@media screen and (max-width: 600px) {
	.sectionBox {
        padding-top: 0;
        padding-bottom: 1.5em;
	}
}

.sectionBox > .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container.sectionBox.copySection.text-center {
    padding-top: 12px;
    padding-bottom: 12px;
}

.footerWidget .col-md-12 {
    text-align: center;
}

.footerWidget .col-md-12 >aside:nth-child(2) {
	margin-bottom: 0;
}

.col-md-4 .textwidget {
    font-size: 14px;
}

.col-md-4 {
	font-size: 16px;
	color: #333;
	letter-spacing: 0.1em;
}

.foot_txt {
    text-align: center;
    line-height: 1.6;
    letter-spacing: .1em;
}

.foot_txt >strong {
	font-size: 20px;
}

.sns__icon_wrap {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.sns_fb, .sns_tw {
    width: 30px;
	margin: 0 5px;
}

.sns__icon_wrap

@media screen and (max-width: 600px){
	.sectionBox > .row {
		flex-direction: column;
	}
	
	.col-md-4 {
		margin-top: 20px;
	}
}

/*-------------------------------
             共通
--------------------------------*/

/*背景*/

.bg_menu {
	background: #eee;
}

/*幅*/

.w_50{
	width: 50%;
	margin: 0 auto;
}

.w_70{
	width: 70%;
	margin: 0 auto;
	max-width: 960px;
}

/*文字色*/

.color_purple{
	color: #c9ace6;
}

/*枠線*/

.border_purple {
    padding: 30px;
    border: solid 20px #e6daf2;
    box-sizing: border-box;
	background:#fff;
}

/*下線*/

.borderbottom_purple{
	border-bottom: solid 1px #c9ace6;
}

@media screen and (max-width: 599px){
	.w_50,.w_70{
	width: 95%;
	margin: 0 auto;
	}
}

/*-------------------------------
           見出し
--------------------------------*/

.page-header {
	background-repeat: no-repeat;
	background-position: 50%;
}

/*見出しの設定*/
h2 {
    font-size: 3.2rem;
    letter-spacing: 0.1em;
	line-height: 1.6;
}
h2:before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/ill_star.png)no-repeat;
    width: 56px;
    height: 61px;
    margin: 0 auto 20px;
}

h3 {
    font-size: 2.4rem;
    letter-spacing: .1em;
	line-height: 1.6;
}

@media screen and (max-width: 599px){
	h3{
	letter-spacing: 0;
	}
	h2 {
    font-size: 2.8rem;
	}
}


/*-------------------------------
           cv area
--------------------------------*/

.cv_area {
    background: #c9ace5;
    color: #fff;
	position: relative;
}
.cv_area h2:before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/ill_star_white.png)no-repeat;
    width: 52px;
    height: 58px;
    margin: 0 auto 30px;
}
.cv_area:before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_plants07.png)no-repeat;
    width: 117px;
    height: 207px;
    position: absolute;
    top: 0;
    right: 0;
}
.cv_area:after {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_plants02.png)no-repeat;
    width: 179px;
    height: 321px;
    position: absolute;
    bottom: -100px;
    left: 0;
}

.cvarea_column {
    align-items: center;
	max-width: 700px;
}

.cvarea_column .wp-block-image, 
.cvarea_column figure {
    margin-bottom: 0;
}

.cvarea_column>div {
    position: relative;
}

.cvarea_column>div:nth-child(1) {
    flex-basis: 50%;
	font-size: 2rem;
	font-weight: bold;
}
.cvarea_column>div:nth-child(2) {
    margin-left: 0;
}

.cvarea_column p:after {
    content: "』";
    display: block;
    position: absolute;
    font-size: 50px;
    line-height: 1;
    bottom: 0;
    right: 0;
}
.cvarea_column p:before {
    content: "『";
    display: block;
    position: absolute;
    font-size: 50px;
    line-height: 1;
    top: 0;
    left: 0;
}

img.wp-image-1224 {
    position: absolute;
    top: -80px;
    left: -30px;
}

.cvarea_column>div:nth-child(2):after {
    content: "";
    display: block;
    background: url(/wp-content/uploads/cv_voice.png)no-repeat;
    width: 166px;
    height: 79px;
    position: absolute;
    top: -80px;
    right: -150px;
}

@media screen and (max-width: 1024px) and (min-width: 770px){
	.cvarea_column p {
    padding-bottom: 30px;
	}
	.cvarea_column p:before {
    left: -50px;
	}
	.cvarea_column p:after {
    right: -50px;
    bottom: 10px;
	}
}

@media screen and (max-width: 769px) and (min-width: 600px){
	.cvarea_column {
    width: 100%;
	margin-bottom: 30px;
	}
	.cvarea_column>div:nth-child(2) {
    flex-basis: 20% !important;
	margin-left: 0;
	}
	.cvarea_column>div:nth-child(1) {
    flex-basis: 60% !important;
	}
	.cv_area:after {
    background-size: 70%;
    bottom: -120px;
	}
	.cvarea_column>div:nth-child(2):after {
    top: -100px;
    right: -150px;
    transform: rotate(-10deg);
	}
	img.wp-image-1226 {
    position: absolute;
    top: -80px;
    left: -30px;
	}
}

@media screen and (max-width: 599px){
	.cv_area:before {
    top: 0;
    right: -50px;
    background-size: 70%;
	}
	.cv_area:after {
    background-size: 70%;
    bottom: -120px;
	}
	.cvarea_column>div:nth-child(2):after {
    right: -20px;
    background-size: 90%;
    top: 50px;
	}
	.cvarea_column p:before {
    top: -10px;
    left: -20px;
	}
	.cvarea_column p:after {
    right: -20px;
	}
	img.wp-image-1226 {
    position: absolute;
    top: -20px;
    left: 30px;
	}
}

/*リンクバナー*/

.btn_reservations,
.btn_reservations_footer{
	position: relative;
	z-index: 0;
}

.btn_reservations a,
.btn_reservations_footer a{
	border: 1px solid #8f82bc;
	background: #fff;
	color: #8f82bc;
	letter-spacing: .1em;
	text-align: center;
	display: inline-block;
	width: 90%;
	max-width: 700px;
	padding: 5px;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn_reservations_bg a{
	background: #f1ebf8;
}

.btn_reservations_footer a {
	max-width: 350px;
    margin-top: 20px;
}


.btn_reservations a,
.btn_reservations_footer a,
.btn_reservations a::before,
.btn_reservations_footer a::before{
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
	transition: all .5s;
	text-decoration: none !important;
}

.btn_reservations a::before,
.btn_reservations_footer a::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -100%;
	z-index: -1;
	background: #8f82bc;
}

.btn_reservations a:hover,
.btn_reservations_footer a:hover{
	color: #fff;
}

.btn_reservations a:hover::before,
.btn_reservations_footer a:hover::before{
	left: 0;
}


/*-------------------------------
           TOPページ
--------------------------------*/

.mainSection {
    margin-bottom: 0;
}

/*スライドショー*/

.carousel-item {
    padding: 0 0 50px 40%;
    width: 100vw;
    background: url(/wp-content/uploads/ss_bg.jpg)no-repeat;
    background-position: left 350%;
    background-size: contain;
}

.mini-content-container-1.container {
    margin-left: 30px;
}

h3.slide-text-title {
    font-size: 5rem;
    color: #666 !important;
    letter-spacing: 0;
	font-weight: unset;
    line-height: 1.35;
    text-shadow: 1px 1px 5px #fff, -1px 1px 5px #fff, 1px -1px 5px #fff, -1px -1px 5px #fff;
}

.slide-text-caption {
    font-weight: bold;
    font-size: 1.8rem;
	position: relative;
	margin-top: 3em;
	margin-bottom: 1em;
}

/*.slide-text-caption:after {
    content: "";
    display: block;
    background: url(/wp-content/uploads/ill_fairy01.png)no-repeat;
    width: 72px;
    height: 112px;
    position: absolute;
    bottom: -140px;
    left: 0;
}*/

.carousel-item img {
    position: relative;
    left: 70px;
}

@media screen and (max-width: 1024px) and (min-width: 769px){
	.carousel-item {
    background-position: left 180px;
	}
}

@media screen and (max-width: 768px) and (min-width: 600px){
	.carousel-item {
    background-position: left 80px;
	background-size: auto;
	}
	h3.slide-text-title {
    font-size: 5rem;
	}
	.slide-text-caption:after {
    left: 92%;
    bottom: -20px;
    transform: scale(-1, 1);
	}
}

@media screen and (max-width: 599px){
	.mini-content-container-1.container {
    margin-left: 0;
	}
	.carousel-item {
    background-position: 50% 130px;
    height: auto;
    background-size: cover;
	}
	.carousel-item>div {
    top: auto;
    left: 0;
    bottom: 0;
    transform: translate(0,0);
	}
	.carousel-item img {
    left: 0;
	}
	.slide-text-set {
    position: relative;
	}
	.carousel-item {
    padding: 0;
	}
	h3.slide-text-title {
    font-size: 3rem;
    color: #fff !important;
    text-shadow: none;
    margin-top: 10px;
	}
	.slide-text-caption {
    font-size: 1.6rem;
    font-weight: 400;
    margin-top: 0.5em;
	}
	.slide-text-caption br {
    display: none;
	}
}

/*お悩み、ご相談はそれぞれ*/

.bubble_cont {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 1px #555;
  border-radius: 4px;
  box-sizing: border-box;
}

.bubble_cont:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}

.bubble_cont:after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 50%;
    margin-left: -16px;
    border: 13px solid transparent;
    border-top: 13px solid #555;
    z-index: 1;
}

.bubble_cont p {
  margin: 0;
  padding: 0;
}

.bubble_cont_column01 {
    position: relative;
    left: -20px;
}

.bubble_cont_column02 {
    position: relative;
    right: -20px;
}
/*
.group_consult {
    background: url(/wp-content/uploads/bg_consult.jpg)no-repeat;
    background-size: cover;
}
*/
.consult_message {
    font-size: 2.4rem;
    font-weight: bold;
}

@media screen and (max-width: 1025px) and (min-width: 769px){
	.bubble_cont_column01 {
    left: 0;
	}
	.bubble_cont_column02 {
    width: 90%;
	}
}

@media screen and (max-width: 768px) and (min-width: 600px){
	.bubble_cont_column01 {
    position: relative;
    left: 0;
    width: 95%;
	margin: 0 auto;
    flex-wrap: nowrap !important;
	justify-content: center;
	}
	.bubble_cont_column01>div:nth-child(3) {
    margin-left: 32px;
	}
	.bubble_cont_column02 {
    right: 0;
    flex-wrap: nowrap;
    width: 95%;
	}
	.bubble_cont_column02>div:nth-child(3) {
    margin-left: 32px;
	}
}

@media screen and (max-width: 599px){
	.bubble_cont_column01, 
	.bubble_cont_column02 {
    left: 0 !important;
	}
}

/*ティンカーベルの特徴*/

.point_cont {
    align-items: center;
	position: relative;
}

.point_txt {
    background: #c9ace6;
    padding: 0 20px;
    color: #fff !important;
	margin-bottom:20px;
}

.point_bg {
    background: 
		url(/wp-content/uploads/bg_star01.png)no-repeat,
		url(/wp-content/uploads/bg_star02.png)no-repeat,
		url(/wp-content/uploads/bg_star03.png)no-repeat,
		url(/wp-content/uploads/ill_fairy03.png)no-repeat,
		url(/wp-content/uploads/bg_star04.png)no-repeat,
		url(/wp-content/uploads/bg_star05.png)no-repeat,
		url(/wp-content/uploads/bg_star06.png)no-repeat;
    background-position: 
		right top,
		left 23%,
		95% 45%,
		99% 43%,
		left 65%,
		right 85%,
		5% 98%;
}

@media screen and (max-width: 768px) and (min-width: 600px){
	.point_cont {
    width: 90%;
	}
	.point_3column {
    width: 90%;
    flex-wrap: nowrap;
	}
	.point_bg {
    background-position: right top, left 23%, 95% 41%, 99% 39%, left 65%, 115% 85%, 5% 98%;
	}
}

@media screen and (max-width: 599px){
	.point_bg {
    background-position: 
		180% top, 
		-50% 23%, 
		95% 43%, 
		105% 42%, 
		-80% 70%, 
		150% 85%, 
		5% 100%;
	}
	.point_3column>div {
    margin-bottom: 20px;
	}
	.point_txt {
    position: absolute;
    background: #c9ace6;
    padding: 0 20px;
    color: #fff !important;
    top: -20px;
    left: 0;
    transform: rotate(-10deg);
	}
}

/*鑑定料金*/

.price_table_title {
    font-size: 1.8rem;
    color: #c9ace5;
}

.price_table tr {
    text-align: right;
}

.price_table tr:nth-child(1) {
    background: #e6daf2;
    text-align: center;
}

.price_table03 td:nth-child(1) {
    text-align: left;
}

.price_table03 tr:nth-child(1) td{
    text-align: center;
}

.price_table strong {
    font-size: 10px;
    vertical-align: top;
	font-weight: 400;
}
.price_table01 em {
    font-size: 1.2rem !important;
    font-weight: 400;
    font-style: normal !important;
    background: #c9ace5;
    padding: 3px 5px;
    color: #fff;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif !important;
}

.price_table_note {
    font-size: 1.4rem;
}

@media screen and (max-width: 599px){
	.price_table03{
    width: 100%;
	}
}


/*お客様の声*/

.boxshadow {
    box-shadow: 0 0 10px #ccc;
    padding: 30px;
}

.voice_bg {
    background: 
		url(/wp-content/uploads/bg_star01.png)no-repeat, 
		url(/wp-content/uploads/ill_fairy04.png)no-repeat,
		url(/wp-content/uploads/bg_star02.png)no-repeat, 
		url(/wp-content/uploads/bg_star03.png)no-repeat;
    background-position: 
		right top, 
		3% 53%,
		left 50%, 
		95% 90%;
}

.voice_cont01>div,
.voice_cont02>div {
	position: relative;
}

.voice_cont01>div:nth-child(1):before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_plants03.png)no-repeat;
    position: absolute;
    top: -40px;
    left: -10px;
    width: 92px;
    height: 72px;
}

.voice_cont01>div:nth-child(2):before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_plants04.png)no-repeat;
    position: absolute;
    bottom: -10px;
    right: -30px;
    width: 82px;
    height: 103px;
}

.voice_cont02>div:nth-child(1):before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_plants05.png)no-repeat;
    position: absolute;
        bottom: -10px;
    left: -50px;
    width: 84px;
    height: 90px;
}

.voice_cont02>div:nth-child(2):before {
    content: "";
    display: block;
    background: url(/wp-content/uploads/bg_plants06.png)no-repeat;
    position: absolute;
    bottom: -30px;
    right: -10px;
    width: 59px;
    height: 120px;
}

@media screen and (max-width: 1024px) and (min-width: 769px){
	.voice_cont01, 
	.voice_cont02 {
    width: 80%;
	}
}

@media screen and (max-width: 768px) and (min-width: 600px){
	.voice_cont01, .voice_cont02 {
    width: 90%;
	}
	.voice_bg {
    background-position: right top, 3% 53%, left 50%, 95% 98%;
	}
}


@media screen and (max-width: 599px){
	.voice_bg {
    background-position: 150% top, 0% 53%, -50% 50%, 95% 100%;
	}
	.voice_cont01>div, 
	.voice_cont02>div {
    margin-bottom: 20px;
	}
}

/*占術の種類*/

.fortunetelling_bg{
    background: 
		url(/wp-content/uploads/bg_star04.png)no-repeat, 
		url(/wp-content/uploads/bg_star05.png)no-repeat, 
		url(/wp-content/uploads/bg_star06.png)no-repeat, 
		url(/wp-content/uploads/ill_fairy05.png)no-repeat;
    background-position: 
		left 2%, 
		right 50%, 
		5% 95%, 
		3% 3%;
}

@media screen and (max-width: 768px) and (min-width: 600px){
	.fortunetelling_bg {
    background-position: left 2%, right 50%, 5% 98%, 3% 3%;
	}
	.border_purple {
    width: 90%;
	}
}

@media screen and (max-width: 599px){
	.fortunetelling_bg {
    background-position: -75% 2%, 140% 50%, 5% 100%, 3% 1%;
	}
	.fortunetelling_column>div {
    margin: 0 3% 3% 0;
    flex-basis: 45% !important;
	}
}

/*ごあいさつ*/
.greeting_column>div:nth-child(2) {
    flex-basis: 40%;
}
.greeting_column>div:nth-child(1) {
    flex-basis: 60%;
}

.greeting_bg {
    background: 
		url(/wp-content/uploads/bg_star01.png)no-repeat,
		url(/wp-content/uploads/bg_star02.png)no-repeat,
		url(/wp-content/uploads/bg_star03.png)no-repeat,
		url(/wp-content/uploads/ill_fairy03.png)no-repeat,
		url(/wp-content/uploads/bg_star05.png)no-repeat,
		url(/wp-content/uploads/bg_star06.png)no-repeat;
    background-position: 
		right top,
		left 23%,
		95% 45%,
		99% 43%,
		right 85%,
		5% 98%;
}

.shop_table table {
    border-top: solid 1px #ccc;
}

@media screen and (max-width: 769px) and (min-width: 600px){
	.greeting_column {
    width: 90%;
    flex-direction: column-reverse;
	}
	.greeting_column>div {
    flex-basis: 100% !important;
	}
	.greeting_column>div:nth-child(2) {
    margin-bottom: 30px;
	}
	.greeting_bg {
    background-position: right top, left 15%, 95% 60%, 99% 57%, -20% 62%, right 85%, 5% 98%;
	}
	.shop_table {
    width: 70%;
	}
	.gmap {
    width: 90%;
	}
}

@media screen and (max-width: 599px){
	.greeting_column h3 {
    font-size: 2.3rem;
    padding-top: 30px;
    padding-bottom: 10px;
	}
	.greeting_column {
    flex-direction: column-reverse;
	}
	.greeting_bg {
    background-position: 150% top, -50% 10%, 95% 63%, 99% 62%, -95% 65%, 140% 85%, 5% 102%;
	}
}

/*-------------------------------
          リンクバナー
--------------------------------*/

.btn_more {
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 600px) {
    .btn_more {
    	text-align: center;
	}
}

.btn_more a {
    border: 1px solid #111;
    color: #111;
	letter-spacing: .1em;
	text-align: center;
    display: inline-block;
    width: 100%;
    max-width: 200px;
    padding: 5px;
}

/*--hover--*/

.btn_more a {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn_more a,
.btn_more a::before {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
	transition: all .5s;
	text-decoration: none !important;
}

.btn_more a::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -100%;
	z-index: -1;
}

.btn_more a::before {
	background: #111;
}

.btn_more a:hover {
	color: #fff;
}

.btn_more a:hover::before {
	left: 0;
}


