@charset "utf-8";

/* ---------------------------------
  _01 スタイルリセット
------------------------------------*/

html { font-size: 62.5%;}
body {
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: #706557;
	background-color: #fff;
	background-image: url("../images/common/bg.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	padding: 0;
	line-height: 1.6;}
img {
	border: 0;
	display: block;}

a { text-decoration: inherit; /* 必要に応じて「none」に */}
a:link { color: #706557;}
a:visited { color: inherit;}
a:hover { color: #841e38;}

ul {
	margin: 0;
	padding: 0;
	list-style: none;}
ol {
	margin: 0;
	padding: 0;}
li {
	margin: 0;
	padding: 0;}
dl, dt, dd {
	margin: 0;
	padding: 0;}
form {
	margin: 0;
	padding: 0;}

hr { display: none;}


/* ---------------------------------
  _02 共通クラス
------------------------------------*/
.red_font { color: #e8383d;}
.yellow_font { color: #ffff00;}
.light_blue_font { color: #86b3e0;}
.white_font { color: #ffffff;}
.bold { font-weight: bold; }
.underline { text-decoration: underline; }
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
	display: inline-block;
	vertical-align: middle;}

.supplement { /* 補助的に入れる見出しを表示しないようにするクラス */
	position: absolute;
	left: -10000em;}
.notes {
	margin-left: 1.25em;
	text-indent: -1.25em;
}
.center {
	text-align: center;
}

.flexbox_space-between {
	display: flex;
	justify-content: space-between;
}
.flexbox {
	display: flex;	
}
.flex-wrap {
	flex-wrap:wrap;
}
.flex-column {
	flex-direction: column;
}
@media screen and (min-width: 641px){

.hide_pc { display: none !important;}
section { padding: 0px 0 60px; }
section .container {
    margin: 0 auto;
    width: 1100px;
    height: auto;
}
}
@media screen and (max-width: 640px){

.hide_sp { display: none !important;}
section { padding: 10px 0 40px; }
section .container {
	margin: 0 1.5rem;
}
.flexbox_space-between {
	flex-direction: column;
}
.flexbox {
	flex-direction: column;
}
}

/*PCで電話番号リンクを無効に*/
@media screen and (min-width: 641px){
	a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/* 数字フォント */
@font-face {
  font-family: "font_num";
  src: url("../fonts/bodoni-mt-regular.ttf") format("truetype");
}


/* ---------------------------------
  _02 ヘッダー＆ナビゲーション
------------------------------------*/

header {
	width: 100%;
	position: sticky;
	top: 0;
	z-index:1020;
	background-color: transparent;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background-color: white;
}
header .header_top {
	background-color: #706557;
	height: 40px;
	color: #ffffff;
	font-size: 0.9em;
}
header .header_top_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1100px;
	margin: 0 auto;
	height: 40px;
	font-family: kinuta-maruminfuji-stdn, serif;
	font-weight: 400;
	font-style: normal;
}
header .header_top_inner .copy {
	margin-right: auto;
}
header .header_top_inner .pay {
	color: #ffd700;
	margin-right: 1.5em;
	border-bottom: 2px solid #ffd700;
}
header .header_top_inner .counseling_wrapper {
	background-color: #948771;
	border: 2px solid #fff;
	display: flex;
	justify-content: space-around;
	align-items: center;
	height: 26px;
	padding: 0px 10px;
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
}


div.btn_counseling{
	width: fit-content;
	margin-left: 5px;
}
div.btn_counseling a{
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px 0px 10px;
	color: #fff;
	background-color: #c7b299;
	border-radius: 100vh;
	transition: 0.3s;
	text-decoration: none;
	cursor: pointer;
	font-size: 0.8em;
}
div.btn_counseling a::after {
	content: '';
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
    right: 10px;
}
div.btn_counseling a:hover {
	text-decoration: none;
	background-color: #e5ccb1;
}



header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
	width: 1100px;
	margin: 0 auto;
}
header .site_name {
	background-image: url("../images/common/logo.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: auto 50px;
	padding-left: 77px;
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
	font-weight: 600;
	font-style: normal;
	color: #706557;
	font-size: 22px;
	line-height:1;
	height: 50px;
}
header .site_name span {
	margin-bottom: 0.5em;
	display: block;
    font-size: 0.6em;
}
header .site_name a:hover, header h1 a:visited{
	color: inherit;
}
header .site_name img {
	height: 50px;
}
header .header_right {
	display: flex;
	align-items: center;
}
header .inquiry {
	text-align: right;
	font-size: 0.9em;
	line-height: 1.2;
	margin-right: 1em;
}
header .inquiry span.tel {
	font-family: "font_num", sans-serif;
	font-size: 2em;}
header .inquiry span.monday_holiday {
	color: #600;
	font-weight: 700;}


header nav {
	margin-left: auto;
}
header nav dl {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
}
header nav dl dd {
	text-align: center;
	border-left: 1px solid #cccccc;
}
header nav dl dd:last-child {
	margin-right:0;
	border-right: 1px solid #cccccc;
}
header nav dl dd a {
	font-weight: 600;
	width: 160px;
	height: 100px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
header nav dl dd a img{
	margin-bottom: 10px;
}
header nav dl dd a:link {
	color: inherit;
}
header nav dl dd a:hover {
	background-color: #f9f8d9;
	color: #f7931e;
}
header .nav_control {
	width: 60px;
	height: 60px;
	background-color: #706557;
	color: #ffffff;
	text-align: center;
	font-size: 0.7em;
	font-weight: 300}
header .nav_control img {
	margin: 1.0em auto 0.3em auto;}

@media screen and (max-width: 640px){


header .header_top {
	height: 2em;}
header .header_top_inner {
	margin: 0;
	width: 100%;
	height: 1.2em;
	flex-direction: column;}
header .header_top_inner .pay {
	margin: 0;
	border-bottom: none;
	line-height: 2em;}
header .container {
	width: 100%;
	height: auto;}
header .site_name {
	padding-left: 60px;
	padding-top: 0.9em;
	background-image: url("../images/common/logo.png");
	background-position: left 10px center;
	background-repeat: no-repeat;
	background-size: auto 30px;
	height: 50px;
	line-height:1.1;
	font-size: 11px;
	box-sizing: border-box;}
header .site_name span {
	margin-bottom: 0.2em;
	font-size: 0.8em;}

}





.openbtn{
	position: relative;
	background:#706557;
	cursor: pointer;
    width: 60px;
    height:60px;
	overflow: hidden;
	z-index: 1020;
	}
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 4px;
	background: #fff;
  	width: 32px;}
.openbtn span:nth-of-type(1) { top:12px;}
.openbtn span:nth-of-type(2) { top:22px;}
.openbtn span:nth-of-type(3) { top:32px;}
.openbtn span:nth-of-type(3)::after {
	content:"MENU";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top: 5px;
	left: -24px;
	width: 80px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;}
/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
    top: 15px;
    left: 20px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3){
    top: 27px;
    left: 20px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"CLOSE";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
	top: 7px;
	left: -16px;}

.sitemap {
	margin-right: -100vw;
	margin-top: 0;
	padding-top: 150px;
	position:fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(255,255,255,0.9);
	z-index: 1010;
	box-sizing: border-box;}
.sitemap .sitemap_inner {
	margin: 0 auto;
	padding-bottom: 40px;
	width: 1100px;
	height: calc(100vh - 150px);
	overflow-x: scroll;}
.sitemap .sitemap_inner .insta {
	display: flex;
	justify-content: center;
	align-items: center;
}
.sitemap .sitemap_inner .insta img{
	width: 35px;
	margin-right: 0.5em;
}
.sitemap .w100 {
	width: 100%;
	border-top: 1px solid #706557;
	margin-top: 20px;
}
.sitemap .w48 {
	width: 100%;
}
.sitemap ul {
	font-family: kinuta-maruminfuji-stdn, serif;
	font-weight: 500;
	font-style: normal;

}
.sitemap ul li {
	border-bottom: 1px solid #706557;
	padding: 0.75em 0;
	font-size: 1.1em;
	text-align: center;
}
.sitemap ul li a:link{
	color: inherit;
}
@media screen and (max-width: 640px){

.sitemap {
	padding-top: 70px;}
.sitemap .sitemap_inner {
	width: 100%;}

}



/* ---------------------------------
  _02 フッター
------------------------------------*/
footer {
}
footer .container {
	margin: 0 auto;
	padding: 0;
	width: 1100px;
}
footer .footer_menu {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}
footer .footer_menu a {
	width: 23%;
	color: #ffffff;
	text-align: center;
	box-shadow: 2px 2px 12px rgba(0, 0, 0, .3);
}
footer .footer_menu a img {
	width: 100%;
}
footer .footer_menu a:nth-child(1) { background-color:#bc8f8f;}
footer .footer_menu a:nth-child(2) { background-color:#46465e;}
footer .footer_menu a:nth-child(3) { background-color:#948771;}
footer .footer_menu a:nth-child(4) { background-color:#948771;}
footer .footer_menu a .category {
	font-size: 1.2em;
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
	padding: 10px;
}
footer .footer_menu a .category span {
	font-size: 0.7em;
	display: block;
}
footer .footer_menu a .text {
	padding: 5px 10px 10px;
	font-size: 0.9em;
}


footer .site_name {
	display: flex;
	justify-content:center;
}
footer .site_name img {
	height: 50px;
}
footer .name {
	font-family: dnp-shuei-mincho-pr6n, sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 1.4em;
	margin-left: 10px;
	line-height: 1.3;
}
footer .name span {
	display: block;
	font-size: 0.8em;
}
footer .inquiry {
	text-align: center;
	font-size: 0.9em;
}
footer .inquiry span {
	font-family: "font_num", sans-serif;
	font-size: 1.9em;	
}
footer .btn_insta {
	margin: 0 auto 20px;
	font-family: kinuta-maruminfuji-stdn, serif;
	font-weight: 500;
	font-style: normal;
}
footer .btn_insta a {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #ccc;
	width: 205px;
	margin:0 auto;
	padding: 2px 0;
	line-height: 1;
}
footer .btn_insta a span {
	font-size: 90%;
	display:block;
}
footer .btn_insta a img{
	width: 35px;
	margin-right: 0.5em;
}


footer .open {
	text-align: center;
	font-size: 0.9em;
}
footer address {
	text-align: center;
	font-size: 0.9em;
	font-style: normal;
}
footer .copyright {
	text-align: center;
	margin-top: 2em;
}

footer .clinic {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
footer .btn_official{
	width: fit-content;
	margin-right: 1em;
}
footer .btn_official a{
	background-color: #24263f;
	color: #fff;
	padding: 8px 40px 8px 20px;
	display: inline-block;
	line-height: 1.4;
	
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	transition: 0.3s;
	text-decoration: none;
	cursor: pointer;
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
	width: 145px;
	height: 26px;
}
footer .btn_official a::after{
	content: '';
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
    right: 13px;
}
footer .btn_official a:hover{
	text-decoration: none;
	background-color: #52577c;
}
footer .btn_official_insta{
	width: fit-content;
}
footer .btn_official_insta a {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #24263f;
	width: 177px;
	height: 36px;
	margin:0 auto;
	padding: 2px 14px;
	line-height: 1;
	color: #24263f;
}
footer .btn_official_insta a span {
	font-size: 90%;
	display:block;
}
footer .btn_official_insta a img{
	width: 33px;
	margin-right: 0.5em;
}


@media screen and (max-width: 640px){
	footer .container {
		width: 100%;
		padding-bottom: 70px;
	}
	footer .footer_menu {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		margin-bottom: 40px;
	}
	footer .footer_menu a {
		width: 45%;
		margin-bottom: 20px;
	}
	footer .footer_menu a .category {
		font-size: 1em;
	}
	footer .site_name {
		flex-direction: column;
		margin-bottom: 0.5em;
	}
	footer .site_name img {
		width: fit-content;
		margin: 0 auto 0.5em auto;
		height: 42px;
	}
	footer .name {
		font-size: 1.1em;
		margin-left: 0px;
		line-height: 1.4;
		text-align: center;
	}
	footer .btn_insta a {
		font-size: 90%;
	}
	footer .clinic {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	footer .btn_official{
		margin-right: 0;
		margin-bottom: 8px;
	}
	footer .btn_official a{
		height: 20px;
	}
	footer .btn_official_insta a{
		font-size: 90%;
	}

}

/* スマホ版  追従ボタン */
.footer_counseling_wrapper {
	display: none;
}
@media screen and (max-width: 640px){
	.footer_counseling_wrapper {
		background-color: #706557;
		display: flex;
		justify-content: space-around;
		align-items: center;
		font-family: a-otf-ud-shin-go-pr6n, sans-serif;
		font-weight: 600;
		font-style: normal;
		color: #fff;
		z-index: 100;
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 60px;
	}
	div.btn_counseling a{
		padding: 4px 40px 4px 30px;
		font-size: 1em;
	}
	div.btn_counseling a::after {
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		right: 20px;
	}
}





/* パンくずリスト */
nav.breadcrumb {
	background: rgba(112,101,87,0.1);
}
nav.breadcrumb ol {
	margin: 0 auto;
	padding: 0.5em 0;
	width: 1100px;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	font-size: 0.9em;
}
nav.breadcrumb ol li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .6em; /* 記号の左右の余白 */
}
@media screen and (max-width: 640px){

nav.breadcrumb ol {
	padding: 0.5em 1em;
	width: 100%;
	box-sizing: border-box;}
}

/* ページのトップへボタン */
html {
    scroll-behavior: smooth;
}
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 1px #948771;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #948771;
    border-right: 3px solid #948771;
    transform: translateY(20%) rotate(-45deg);
}
@media screen and (max-width: 640px){
.pagetop {
    right: 10px;
    bottom: 70px;
	background-color: rgba(255,255,255,0.5);
}

}

/* ページタイトル部 */
.pagetitle {
	text-align: center;
	height: 100px;
	background-image: url("../images/common/bg_pagetitle.jpg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.pagetitle h1 {
	color: #706557;
	font-family: kinuta-maruminfuji-stdn, serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.8em;
	letter-spacing: 0.2em;
	line-height: 100px;
}
section.opening p {
	text-align: center;
	margin: 30px 0;
}
section.opening ol {
	background-color: #fff;
	border: 1px solid #948771;
	border-radius: 10px;
	padding: 8px 20px;
	display: flex;
	list-style: none;
	flex-wrap: wrap;
}
section.opening ol li {
	margin-right: 1em;
}
section.opening ol li a {
	position: relative;
	display: inline-block;
	padding-left: 16px;
}
section.opening ol li a:before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 1px #706557;
	border-right: solid 1px #706557;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

@media screen and (max-width: 640px){

.pagetitle {
	height: 80px;}
.pagetitle h1 {
	font-size: 1.5em;
	letter-spacing: 0.1em;
	line-height: 80px;}
section.opening {
	padding-bottom: 0;}
section.opening p {
	margin: 20px 0;
	/*text-align: left;*/}
section.opening ol {
	margin-bottom: 1em;
	padding: 0;
	border: none;
	flex-wrap: wrap;
	}
section.opening ol li {
	margin: 0;
	padding: 4px 6px;
	/*border: 1px solid #c5baa8;
	width: 47%;*/
	width: 48%;
	font-size: 90%;
	line-height: 1.2;
	border-radius: 6px;
	box-sizing: border-box;}
section.opening ol li a{
	text-decoration: underline;
}
}


/* ---------------------------------
  コンテンツページ
------------------------------------*/
.con_wrapper {
	background: rgba(112,101,87,0.1);
	border-radius: 10px;
	padding: 40px;
	box-sizing: border-box;
}

.con_wrapper h2 {
	color: #706557;
	font-family: kinuta-maruminfuji-stdn, serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5em;
	/*border-bottom: 5px solid #706557;*/
	width: fit-content;
	margin: 0 auto 30px;
}
.con_wrapper p{
	margin-top: 0.5em;
}

.con_wrapper p.prologue {
	width: 700px;
	margin: 0 auto 20px;
	text-align: center;
}
.con_wrapper p.left{
	text-align: left;
}
.con_inner {
	background-color: #fff;
	border-radius: 10px;
	width: 1020px;
	margin: 0 auto;
	padding: 30px 50px;
	box-sizing: border-box;
}
.con_inner_opt {
	background-color: #e4e2e0;
	border-radius: 10px;
	width: 1020px;
	margin: 30px auto 0;
	padding: 30px 50px;
	box-sizing: border-box;
}
.opt_title {
	margin: 0 auto 20px auto;
	padding: 5px 60px;
	position: relative;
	width: fit-content;
	color: #413527;
	background-color: #948771;
	font-family: kinuta-maruminfuji-stdn, serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.2em;
	text-align: center;
	border-radius: 100vmax;
}
img.hige_kun {
	position: absolute;
	top: -10px;
	left: 10px;
	height: 50px;
}
img.wakige_chan {
	position: absolute;
	top: -10px;
	right: 10px;
	height: 50px;
}

@media screen and (max-width: 640px){

.con_wrapper {
	padding: 1.5em 1em;}
.con_wrapper h2 {
	font-size: 1.4em;
	text-align: center;
	margin: 0 auto 1em;}
.con_wrapper p.prologue {
	width: 95%;
	margin: 20px auto;
	/*text-align: left;*/}
.con_inner {
	margin: 0 auto;
	padding: 10px 10px;
	width: 100%;}
.con_inner_opt {
	margin: 20px auto;
	padding: 20px 10px;
	width: 100%;}
.opt_title {
	padding: 5px 50px;
	font-size: 1.1em;
	line-height: 1.2;
	letter-spacing: -0.05em;}
img.hige_kun { left: 0;}
img.wakige_chan { right: 0;}

}


/* ---------------------------------
  ボタン
------------------------------------*/
div.btn_pink, div.btn_beige, div.btn_navy{
	width: fit-content;
	margin: 10px auto 0 0;
}
div.btn_pink a, div.btn_beige a, div.btn_navy a {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 5px 30px 5px 15px;
	color: #fff;
	background-color: #bc8f8f;
	transition: 0.3s;
	text-decoration: none;
	cursor: pointer;
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.4em;
	letter-spacing: 0.1em;
}
div.btn_pink a::after,
div.btn_beige a::after,
div.btn_navy a::after {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
    right: 15px;
}
div.btn_pink a:hover,
div.btn_beige a:hover,
div.btn_navy a:hover {
	text-decoration: none;
	background-color: #b77474;}


div.btn_beige a{
	background-color: #c7b299;}
div.btn_beige a:hover {
	background-color: #c19f7a;}
div.btn_navy a {
	background-color: #46465e;}

/* footer お問合せフォームボタン */
div.btn_form{
	width: fit-content;
	/*margin: 0 auto 20px;*/
	margin: 0 auto 8px;
}
div.btn_form a{
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 5px 30px 5px 15px;
	color: #fff;
	background-color: #c7b299;
	transition: 0.3s;
	text-decoration: none;
	cursor: pointer;
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1.2em;
	letter-spacing: 0.1em;
	width: 160px;
}
div.btn_form a::after{
	content: '';
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
    right: 13px;
}
div.btn_form a:hover{
	text-decoration: none;
	background-color: #c19f7a;
}

/* ベーシック */
div.btn{
	width: fit-content;
	margin: 0 auto 1em auto;}
div.btn a{
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding: 0.5em 2em 0.5em 1em;
	color: #fff;
	background-color: #948771;
	border-radius: 15px;
	transition: 0.3s;
	text-decoration: none;
	cursor: pointer;
	font-family: a-otf-ud-shin-go-pr6n, sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1em;
	box-sizing: border-box;}
div.btn a::after{
	content: '';
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
    right: 13px;
}
div.btn a:hover{
	text-decoration: none;
	background-color: #c19f7a;
}

@media screen and (max-width: 640px){

div.btn_pink a,
div.btn_navy a,
div.btn_beige a {
	padding: 5px 30px 5px 15px;
	/*font-size: 1.2em;*/
	font-size: 1.0em;
	letter-spacing: 0.1em;}
div.btn_form a {
	font-size: 1.0em;
}

}

/* ---------------------------------
  _ clearfix
------------------------------------*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/* End hide from IE-mac */
	
	
	


