@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
}

body {
  background: #fff;
  color: #333;
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1.5rem;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴ StdN','Hiragino Kaku Gothic StdN', "ＭＳ Ｐゴシック", sans-serif;
  word-break: break-all;
}
ul {
  padding-left: 0;
}
img {
  border: 0;
}
a {
	transition: 0.1s ease-in-out;
	color: inherit;
}
a:hover {
  text-decoration: none;
  color: #333;
  opacity: 0.7;
}
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}
iframe {
	border: none;
}

h1 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	color: #6F4B3E;
}
h2 {
	text-align: center;
	font-size: 1.3rem;
	font-weight: bold;
	color: #6F4B3E;
}
h3 {
	font-size: 1.0rem;
	text-align: center;
	margin-bottom: 10px;
	font-weight: bold;
}
h2 {
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
	color: #6F4B3E;
}
h4 {
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	color: #6F4B3E;
}

/*============
サイト共通スタイル
=============*/
.uk-container {
  max-width: 1000px;
  margin-bottom: 100px;
}
.uk-container-small {
  max-width: 820px;
  margin: 0 auto;
}
.uk-link,
a {
  color: inherit;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media only screen and (max-width: 768px) {
	h1 {
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	color: #6F4B3E;
}
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
	a[href*="tel:"] {
		pointer-events: auto;
		cursor: default;
		text-decoration: none;
	}
}

.widthbase {
	width: 1024px;
	margin: 0 auto;
}
.widthtopcontents {
	width: calc(100vw * 0.8);
	margin: 0 auto;
}
.pagecontents {
	width: 80%;
	margin: 0 auto;
}

.insta {
	width: 33px;
}
.info {
	background-color: #fff;
	padding: 1rem;
	margin: 3rem;
}

@media only screen and (max-width: 768px) {
	.widthbase {
		width: 90%;
		margin: 0 auto;
	}
	.widthtopcontents {
		width: 85%;
		margin: 0 auto;
	}
	.pagecontents {
		width: 100%;		
	}
	.info {
		background-color: #fff;
		padding: 0;
		margin: 0;
	}
}

.flexbox {
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.flex-between {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.flex-center {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}

.flex-between .flex-item{
	width: 48%;
}

.text-end {
	text-align: right;
}
.arrow_s {
	position: relative;
	padding: 0 0 0 16px;
}

.arrow_s:before {
	content: '';
	position: absolute;
	top: 50%;   /* 縦軸をセンタリングする */ 
	left: 0;
	transform: translateY(-50%);   /* 縦軸をセンタリングする */  
	border: 5px solid transparent;
	border-left: 8px solid #555;   /* 好みで色を変えてください */  
}

.cancel-policy {
	margin-bottom: 3rem;
}

.cancel-policy .cancel-policy-text {
	display: none;
}

@media screen and (max-width: 768px) {
	.flex-between {
		display: block;
	}
	.flex-between .flex-item {
		width: 100%;
	}
}

/*============
ヘッダー
=============*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100vw;
	z-index: 3;
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: #FFF;
}
header .logo {
	width: 220px;
	font-size: 1.5rem;
    font-weight: bold;
    color: #50A050;
	padding-top: 5px;
	font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

header .contact-telephone {
	font-size: 1.3rem;
	color: #50A050;
}

@media screen and (max-width: 768px) {
	header {
		padding: 1rem 0;
	}
	header .logo {
		font-size: 1.2rem;
		width: 7em;
		padding-top: 5px;
	}

	header .contact-telephone {
		font-size: 1.2rem;
		padding: 0;
	}
}

/* ヘッダーメニュー */
header ul {
	display: flex;
	list-style: none;
	text-align: left;
	margin: 0;
	padding: 0;
}

header ul li {
	display: flex;
	position: relative;
	margin: 0;
	width: 150px;
}

nav.menu {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: #f6f3ec;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
}

.open nav.menu {
  left: 0;
  opacity: 1;
}

nav.menu .inner {
  padding: 200px 30px 0;
}

nav.menu .inner ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

nav.menu .inner ul li {
  position: relative;
  margin: 0;
  padding-bottom: 20px;
}
nav.menu .inner ul li a::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  top: 0;
  left: -50px;
}
nav.menu .inner ul li a {
  position: relative;
  display: inline-block;
  color: #333;
  height: 48px;
  font-size: 16px;
  padding: 0.5em 0 0 0.5em;
  text-decoration: none;
  transition-duration: 0.2s;
}

nav.menu .inner ul li a.home::before {
  background-image: url(../images/icon/home-icon.svg);
}
nav.menu .inner ul li a.about::before {
  background-image: url(../images/icon/about-icon.svg);
}
nav.menu .inner ul li a.message::before {
  background-image: url(../images/icon/message-icon.svg);
}
nav.menu .inner ul li a.guide::before {
  background-image: url(../images/icon/guide-icon.svg);
}
nav.menu .inner ul li a.menu-price::before {
  background-image: url(../images/icon/menu-price-icon.svg);
}
nav.menu .inner ul li a.faq::before {
  background-image: url(../images/icon/faq-icon.svg);
}
nav.menu .inner ul li a.voice::before {
  background-image: url(../images/icon/voice-icon.svg);
}
nav.menu .inner ul li a.sns::before {
  background-image: url(../images/icon/sns-icon.svg);
}

nav.menu .inner ul li a:hover {
  color: #50a050;
}

@media screen and (max-width: 768px) {
  nav.menu {
    left: -100%;
    width: 100%;
  }

  nav.menu .inner {
    padding: 200px 15px 0;
  }
}

.l-header {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  padding: 30px;
  height: 130px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  border-bottom: 4px solid #c5b389;
  box-sizing: border-box;
  z-index: 3;
}

.header-logo {
  display: block;
  width: 200px;
  height: auto;
  top: 0;
  left: 0;
  z-index: 3;
}
.header-logo a:hover {
  opacity: 1;
}

.toggle_btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  top: 0;
  right: 0;
  z-index: 3;
}

.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #50a050;
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn span {
  background-color: #50a050;
}

.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
フッター
=============*/
.totop-btn {
  margin-bottom: -3px;
}

.totop-btn .uk-totop {
  background-color: #c5b389;
  color: #fff;
  padding: 10px 10px 10px;
}

.totop-btn .uk-totop:focus,
.uk-totop:hover {
  color: #e2d1b3;
}

footer {
}

footer .corporate {
	background: #f6f3ec;
	padding: 2.5rem 0;
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: center;
	        justify-content: center;
	-webkit-align-items: center;
	        align-items: center;
}

footer .corporate .logo {
	width: 10vh;
	padding-right: 2rem;
}

.contact {
  font-size: 14px;
  background-color: #c5b389;
  color: #fff;
  padding: 20px 0;
}

.contact ul {
  margin: 0;
}

.contact ul li {
  display: inline-block;
  margin-right: 20px;
}

.contact ul li:last-child {
  margin-right: 0;
}

.contact ul li a:hover {
  color: #333;
}

footer .copyright {
	font-size: 0.8rem;
}
.sp-menu-button {
	display: none;
}

@media screen and (max-width: 768px) {
	footer {
		margin-bottom: 18vw;
		font-size: 1rem;
	}
	.copyright {
	}
	.sp-menu-button {
		position: fixed;
		display: flex;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100vw;
		height: 18vw;
		z-index: 3;
		background-color: #FFF;
	}
	.sp-menu-button-item {
		width: 25vw;
		border-left: 1px solid #DDD;
		border-right: 1px solid #DDD;
		padding: 0.8vw 7.1vw;
	}
	.sp-menu-button-item .icon-text {
		font-size: 0.8rem;
		text-align: center;
	}
}

/*============
コンテンツメニューボタン
=============*/
.contents-menu {
	position: fixed;
	top: 0;
	padding: 0;
	left: 50%;
	transform: translate(-50%, 0%);
	z-index: 3;
}

.contents-menu-icons2 {
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	position: relative;
        top: -10px;
        left: -28px;
}

.contents-menu-icons2 .contents-item2 {
	width: 45px;
	padding: 0px 1rem;
	filter: drop-shadow(2px 2px 2px grey)
}

@media only screen and (max-width: 768px) {
	.contents-menu {
		position: static !important;
		transform:  translate(0, 0) !important;
		margin: 1rem;
	}
	.contents-menu-icons {
		display: flex;
		-webkit-justify-content: space-between;
		        justify-content: space-between;
	}
	
	.contents-menu-icons2 {
		display: none;
		-webkit-justify-content: space-between;
		        justify-content: space-between;
		padding-bottom: 3rem;
	}
}
@media screen and (min-width: 768px) {
	.contents-menu-icons {
		display: -webkit-flex;
		display:         flex;
		-webkit-justify-content: center;
		        justify-content: center;
		-webkit-align-items: center;
		        align-items: center;
		padding-top: 15px;
	}
	.contents-menu-icons .contents-item {
		width: 45px;
		padding: 0px 1rem;
	}
}

/*============
トップページ トップイメージ
=============*/
.top-image {
  padding-top: 80px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
	margin-bottom: 2rem;
}

.top-image .top-image-back {
	position: relative;
	width: 100%;
	background-color: #FEFCF3;
}

/* スライダー */
.slider {	/* 横幅94%で左右に余白を持たせて中央寄せ */
	width: 60%;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.slider {
		width: 100%;
	}
}

.slider img {
	width: 100%;	/* スライダー内の画像を横幅100%に */
	height: auto;
}

/* slickのJSで書かれるタグ内、スライド左右の余白調整 */
.slider .slick-slide {
	margin: 0 10px;
}

/*ドットナビゲーションの設定*/
.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width: 8px;	/* ドットボタンのサイズ */
	height: 8px;	/* ドットボタンのサイズ */
	display: none;	/* 非表示にする */
	border-radius: 50%;
	background: #ccc;	/* ドットボタンの色 */
}

.slick-dots .slick-active button {
	background: #333;	/*ドットボタンの現在地表示の色*/
}

.top-image .top-image-back .letters-on-the-photo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 8em;
	height: 6em;
	color: #6F4B3E;
	background-color: rgba(255,255,255,0.5);
	text-align: center;
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 2.0rem;
	text-shadow:0 0 10px #FFF;
	letter-spacing: 0.3em;
	padding-top: 1em;
}

@media screen and (max-width: 768px) {
	.top-image {
		padding-top: 50px;
	}
	.top-image .top-image-back .letters-on-the-photo {
		top: 25%;
		left: 81%;
		top: 50%;
		left: 50%;
		width: 8em;
		height: 5.5em;
		font-size: 0.8rem;
		line-height: 1.2rem;
		letter-spacing: 0.2em;
		padding-top: 1em;
	}
}

/*============
トップページ コンテンツ
=============*/
#top-page .widthtopcontents {
}

.topcontents-txt {
	padding-bottom: 5rem;
	text-align: center;
	word-break: normal;
}

@media screen and (max-width: 768px) {
	#top-page.widthtopcontents {
		width: 100%;
	}
	#top-page .toppage-contents {
		width: 85%;
		margin: 0 auto;
	}
	.topcontents-txt {
		text-align: justify;
		
	}
}

@media screen and (max-width: 1115px) {
	.topcontents-txt {
		text-align: justify;
	}
}

/* 一人ひとりに寄り添った環境と施術 */
.feature {
/*	padding-bottom: 3rem;*/
}

.feature .feature-item {
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.feature .feature-item .feature-contents {
	width: 30%;
	padding-bottom: 5rem;
}

.feature .feature-item .feature-contents .explain-photo {
	margin-bottom: 3px;
}

@media screen and (max-width: 768px) {
	.feature .feature-item {
		display: block;
	}
	.feature .feature-item .feature-contents {
		width: 100%;
	}
}

.pointbox {
	margin: 2em auto;
	padding:2em;/*内側余白*/
	position: relative;
	border: 8px solid rgba(80, 160, 80, 0.3); /* 線の太さ・種類・色 */
	z-index: 0;
	font-weight: bold;
}

.pointbox:before{
	background-color: #50A050;/* ワインポイントの色 */
	content: '';
	display: block;
	position: absolute;
	top: -8px;
	left: -8px;
	width: 8px;
	height: 8px;
	z-index: 1;
}

.waribiki-img {
	width: 439px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.waribiki-img {
		width: 100%;
	}
}

.ribbon {
	display: inline-block;
	position: relative;
	height: 45px;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 20px;
}

.ribbon:before {/*左側のリボン端*/
	content: '';
	position: absolute;
	width: 10px;
	bottom: -10px;
	left: -5px;
	z-index: -2;
	border: 20px solid #56adf3;
	border-left-color: transparent;/*山形に切り抜き*/
}

.ribbon:after {/*右側のリボン端*/
	content: '';
	position: absolute;
	width: 10px;
	bottom: -10px;
	right: -5px;
	z-index: -2;
	border: 20px solid #56adf3;
	border-right-color: transparent;/*山形に切り抜き*/
}

.ribbon h3 {
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0 20px;
	line-height: 45px;
	font-size: 18px;
	color: #FFF;
	background: #50A050;/*真ん中の背景色*/
}

.ribbon h3:before {
	position: absolute;
	content: '';
	top: 100%;
	left: 0;
	border: none;
	border-bottom: solid 10px transparent;
	border-right: solid 15px #60B060;/*左の折り返し部分*/
}

.ribbon h3:after {
	position: absolute;
	content: '';
	top: 100%;
	right: 0;
	border: none;
	border-bottom: solid 10px transparent;
	border-left: solid 15px #60B060;/*右の折り返し部分*/
}

.triangle-right{
	border-style: solid;
	border-width: 20px 0 20px 20px;
	border-color: transparent transparent transparent #fb3c3c;
	display: inline-block;
	width: 0;
	height: 0;
}

/* 院長からのメッセージ */
.message {
	padding-bottom: 5rem;
}

.message .message-contents {
	display: flex;
}

.message .message-contents .left-message-contents {
	width: 40%;
	margin-right: 1rem;
}

.message .message-contents .right-message-contents {
	width: 60%;
}

.message .message-contents .right-message-contents .contents-txt {
	margin-bottom: 5em;
}

.message .message-contents .link-button-area {
	height: 4rem;
	margin: 1rem 0;
}

.message .message-contents .link-button {
	width: 13rem;
	margin: 0 auto;
	padding: 0.5rem 0;
	border-radius: 1.5rem;
	background-color: #6F4B3E;
	color: #FFF;
	text-align: center;
	box-shadow: 5px 5px 5px #c2c2c2;
}

@media screen and (max-width: 768px) {
	.message .message-contents {
		display: block;
	}
	.message .message-contents .left-message-contents,
	.message .message-contents .right-message-contents {
		width: 100%;
		margin: 0 auto;
	}
	.message .message-contents .left-message-contents {
		padding-bottom: 0.3em;
	}
}

/* 下層ページから抜粋してTOPページに表示する */
.contents-area {
	background-color: #FEFCF3;
	padding: 1rem;
}

.underlayer-contents {
	display: flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
	padding-bottom: 3rem;
}

.underlayer-contents .underlayer-contents-left,
.underlayer-contents .underlayer-contents-rught {
	width: 47%;
	margin-bottom: 1.5rem;
}

.underlayer-contents .medical-date,
.underlayer-contents .location {
	width: 47%;
}

@media screen and (max-width: 768px) {
	.contents-area {
		width: 85%;
		margin: 0 auto;
	}
	.underlayer-contents {
		display: block;
	}
	.underlayer-contents .underlayer-contents-left,
	.underlayer-contents .underlayer-contents-rught,
	.underlayer-contents .medical-date,
	.underlayer-contents .location,
	.underlayer-contents .directions-itsukaichi,
	.underlayer-contents .directions-westhiroshima {
		width: 100%;
	}
}

.directions .page-contents-item-left-right {
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
.directions .directions-itsukaichi,
.directions .directions-westhiroshima {
	width: 47%;
}
@media screen and (max-width: 768px) {
	.directions .directions-itsukaichi,
	.directions .directions-westhiroshima {
		width: 100%;
	}
}

.directions .page-contents-item-left-right .slider {
	width: 100%;
	margin: 0 auto;
}
/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.directions-westhiroshima .slick-prev, 
.directions-westhiroshima .slick-next {
	position: absolute;	/* 絶対配置にする */
	top: 45%;
	cursor: pointer;	/* マウスカーソルを指マークに */
	outline: none;	/* クリックをしたら出てくる枠線を消す */
	border-top: 2px solid #FEFCF3;	/* 矢印の色 */
	border-right: 2px solid #FEFCF3;	/* 矢印の色 */
	height: 15px;
	width: 15px;
	display: none;	/* 非表示にできないので、色を背景と同じにする */
}

.directions-westhiroshima .slick-prev {	/*戻る矢印の位置と形状*/
	left: 7%;
	transform: rotate(-135deg);
	z-index: 3;
}

.directions-westhiroshima .slick-next {	/*次へ矢印の位置と形状*/
	right: 7%;
	transform: rotate(45deg);
	z-index: 3;
}

.directions-itsukaichi {
	padding-bottom: 3rem;
}

.directions-itsukaichi p,
.directions-westhiroshima p {
	text-align: center;
}

/* コラム一覧 */
.column {
	width: 70%;/* 2カラムバージョン */
	margin: 0 auto;
	padding-bottom: 3rem;
}
.column-item {
	flex-wrap: wrap;
}
.column-item-btn {
	width: 30%;/* 3カラムバージョン */
	width: 45%;/* 2カラムバージョン */
	background-color: #D8AE82;
	border-radius: 10px;
	padding: 0.5em;
	margin-bottom: 1em;
	overflow: hidden;
	color: #000;
	text-align: center;
	font-weight: bold;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 0.9em;
}
.js-btn-more {
	font-size: 0.9em;
	text-align: right;
}
.js-btn-close {
	font-size: 0.9em;
	text-align: center;
}

@media screen and (max-width: 400px) {
	.column {
		width: 100%;
	}
	.column-item-btn {
		width: 40%;	/* 2カラムバージョン */
		font-size: 0.9em;
	}
}

/*============
ご予約-ボタン
=============*/
.reserve-btn {
  width: 600px;
  margin: 0 auto;
}

.reserve-btn a {
  display: block;
  position: relative;
  font-family: 'Hina Mincho', serif;
  color: #fff;
  font-size: 32px;
  margin: 50px auto 30px;
  padding: 1.5em 1em 1em;
  border-radius: 10px;
  background: #50a050;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.reserve-btn a::after {
  content: "Reservation";
  font-family: 'MonteCarlo', cursive;
  position: absolute;
  font-size: 24px;
  letter-spacing: 0.05em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
}

@media screen and (max-width: 768px) {
  .reserve-btn {
    width: 100%;
  }

  .reserve-btn a {
    font-size: 28px;
    padding: 2em 3.5em 1em;
  }

  .reserve-btn a::after {
    font-size: 28px;
  }
}
/*============
詳しくはこちら-ボタン
=============*/
#top-page .detail-btn .uk-button,
#top-page .detail-btn-w .uk-button {
  font-family: 'Hina Mincho', serif;
  color: #fff;
  font-size: 28px;
  padding: 1em 3.5em;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

#top-page .detail-btn,
#top-page .detail-btn-w {
  margin: 50px auto 30px;
}

#top-page .detail-btn button,
#top-page .detail-btn-w button {
  background: #50a050;
  position: relative;
  border: none;
  transition: 0.3s;
}

#top-page .detail-btn-w button {
  background: #fff;
}

#top-page .detail-btn button:hover,
#top-page .detail-btn-w button:hover {
  opacity: 0.7;
}

#top-page .detail-btn-w .uk-button {
  color: #50a050;
}

@media screen and (max-width: 768px) {
  #top-page .detail-btn .uk-button,
  #top-page .detail-btn-w .uk-button {
    font-size: 1em;
    padding: 1em 4.5em;
    line-height: 1.5;
  }
}

.cont-title h2 {
  position: relative;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  color: #50a050;
  margin-bottom: 100px;
}

.notice {
	width: 70%;
	margin: 2rem auto;
}

.notice-contents {
	margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
	.notice {
		width: 100%;
	}
	.notice .info-date {
		width: 6rem;
	}
}

.cont-title h2::after {
  position: absolute;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #c5b389;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
}
h2.news::after {
  content: "News";
}
h2.treatment::after {
  content: "Treatment";
}
h2.voice::after {
  content: "Voice";
}
h2.reservation::after {
  content: "Reservation";
}
h2 {
	margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
	h2 img {
		width: 20vw;
	}
}

/*============
装飾ライン
=============*/
.deco {
  position: relative;
  height: 1px;
  background-color: #c5b389;
  margin: 40px 0;
}

.deco::before {
  content: "";
  background-image: url(../images/icon/deco-left.svg);
  width: 63px;
  height: 11px;
  position: absolute;
  left: 0;
  transform: translate(-1px, -5px);
}

.deco::after {
  content: "";
  background-image: url(../images/icon/deco-right.svg);
  width: 63px;
  height: 11px;
  position: absolute;
  right: 0;
  transform: translate(1px, -5px);
}

.mb6em {
	margin-bottom: 6em;
}

.contents-txt {
	text-align: justify;
	word-break: normal;
}

@media screen and (max-width: 768px) {
	.contents-txt {
		text-align: justify;
	}
}







.main-txt {
  text-align: center;
  line-height: 3.2em;
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
}
@media screen and (max-width: 768px) {
  .main-txt {
    line-height: 2.5em;
  }
}

.main-center {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}


a.image-btn {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
  transition: 0.3s;
}



/*おしらせ*/
.info-list-container ul {
  padding: 0;
}

.info-list-container li {
  margin-bottom: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info-list-container p {
  margin: 0;
}

.info-list-container .info-date {
  display: block;
  font-size: 16px;
  color: #50a050;
  text-align: center;
  width: 30%;
}

.info-list-container .info-text {
  display: block;
  width: 70%;
}

@media screen and (max-width: 768px) {
  .info-list-container .info-date {
    padding-right: 0.5em;
  }

  .info-list-container .info-text {
    font-size: 16px;
  }
}

/*丁寧な施術*/
@media screen and (max-width: 1024px) {
  .uk-column-1-2 {
    column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .col-inner {
    margin-bottom: 40px;
  }
  .uk-column-1-2 {
    column-count: 1;
  }
}

/**/
.link-button {
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}


.link-button .link-icon-area {
	background-color: #50A050;
}










/*診療時間・定休日*/
.access-sec {
  font-family: "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", sans-serif;
  height: auto;
  color: #333;
  margin-bottom: 100px;
  padding-bottom: 100px;
}

.access-title h3 {
  font-family: "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", sans-serif;
  text-align: center;
  font-size: 28px;
  letter-spacing: 5px;
  color: #333;
  margin: 80px auto 50px;
}

#table {
  background-color: #fff;
  border-top: 1px solid #757575;
  border-bottom: 2px solid #757575;
  border-spacing: 0;
  width: 100%;
  text-align: center;
}

#table th,
#table td {
  border-top: 1px solid #333;
  border-right: 1px solid #eeeeee;
  box-sizing: border-box;
  height: 3rem;
}

#table th {
	width: 11%;
}
#table th.time {
	width: 23%;
}

#table td .open {
  color: #50a050;
}

#table td:last-child {
  border-right: none;
}

@media only screen and (max-width: 768px) {
  .access-sec {
    padding-bottom: 10px;
  }

  #table {
    font-size: 14px;
  }
  #table th,
  #table td {
    height: 60px;
    line-height: 1.5em;
  }
	#table th {
		width: 11%;
	}
	#table th.time {
		width: 23%;
	}
}


/*============
  下層共通ページタイトル
  =============*/
.page-title {
  position: relative;
  background-color: #f6f3ec;
  height: 260px;
  margin-bottom: 50px;
}

.page-title h1 {
  font-family: 'Hina Mincho', serif;
  display: block;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1024px) {
  .page-title h1 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-title h1 {
    width: 90%;
  }
}

/*============
  Q＆Aページ
  =============*/
.wrap {
	padding: 130px 0;
}
.qa-card{
	background-color: #f1f6f0;
	padding: 20px;
	margin: 20px auto;
	width: 70%;
}
.qa-text{
	font-weight: bold;
	color: #15780e;
}
@media screen and (max-width: 768px) {
  .qa-card{
	background-color: #f1f6f0;
	padding: 20px;
	margin: 20px auto;
	width: 85%;
}
}
.qa-inner dt,
.qa-inner dd {
  position: relative;
  min-height: 45px;
  padding: 0.5em 0 0 50px;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.qa-inner dt h4 {
  font-size: 27px;
  color: #50a050;
  font-weight: bold;
}

.qa-inner dd {
  font-weight: bold;
  border-bottom: 1px solid #c5b389;
  padding-bottom: 80px;
}

.qa-inner dt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(../images/icon/qa-icon_q.svg) center center no-repeat;
  background-size: contain;
}

.qa-inner dd:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background: url(../images/icon/qa-icon_a.svg) center center no-repeat;
  background-size: contain;
}

.uk-description-list > dt:nth-child(n + 2) {
  margin-top: 80px;
}

/*============
  初めての方へ〈施術の流れ〉ページ
  =============*/
.gu-area {
	width: 70%;
	margin: 0 auto;
}
.gu-card2 {
	background-color: #fcf8e6;
	padding: 1.5rem; 
	border-radius: 20px;
	box-shadow: 5px 5px 5px #c2c2c2;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	position: relative;
	margin-bottom: 1.5rem;
}
.gu-card{
	background-color: #fcf8e6;
	padding: 20px;
	margin: 20px auto;
	width: 70%;
	height: 220px;
	border-radius: 20px;
	box-shadow: 5px 5px 5px #c2c2c2;
	display: flex;
	position: relative;
}
.gu-text-b{
	font-weight: bold;
	font-size: 110%;
}
.gu-text {
	width: 47%;
}
.gu-img2 {
	width: 47%;
}
.gu-img{
	width: 47%;
	position: absolute;
	top: 0;
	right: 20px;
}
@media screen and (max-width: 768px) {
	.gu-area {
		width: 100%;
	}
	.gu-card2 {
		display: block;
	}
	.gu-text,
	.gu-img2 {
		width: 100%;
	}
.gu-card{
	background-color: #fcf8e6;
	padding: 20px;
	margin: 20px auto;
	width: 85%;
	height: auto;
	border-radius: 20px;
	box-shadow: 5px 5px 5px #c2c2c2;
	display: block;
	position: initial;
}
.gu-text{
	width: 100%;
}
.gu-img{
	width: 100%;
	position: initial;
}
}
h2.process::after {
  content: "process";
}

.process-inner p {
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.process-inner p a {
  text-decoration: underline;
  transition: 0.3s;
}

.process-inner p a:hover {
  opacity: 0.4;
}

/*============
  施術メニュー・料金ページ
  =============*/
.mp-card {
	width: 80%;
	margin: 0 auto;
	padding: 1.2rem;
}
.caution01,
.caution02 {
  position: relative;
}
.caution01::after,
.caution02::after {
  position: absolute;
  padding-left: 5px;
  color: #000;
  font-size: 0.7em;
}
.caution01::after {
  content: "※1";
  white-space: nowrap;
}
.caution02::after {
  content: "※2";
  white-space: nowrap;
}
.green {
  color: #6F4B3E;
  font-weight: bold;
}


.scroll-down {
  font-family: 'Hina Mincho', serif;
  max-width: 1000px;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
  color: #fff;
  font-size: 36px;
  text-align: center;
  line-height: 1.5em;
  margin: 80px auto;
}
.scroll-down .scroll-btn {
  position: relative;
  width: 49.5%;
  background-color: #50a050;
  padding: 1em 0 2.5em;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.scroll-down .scroll-btn:hover {
  color: #fff;
}
.scroll-down .scroll-btn::after {
  content: "";
  position: absolute;
  left: 48%;
  bottom: 15%;
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.scroll-down .scroll-btn p {
  margin-bottom: 0;
}


#menu-type01,
#menu-type02,
#menu-type03 {
  padding-bottom: 100px;
}

#menu-type01 {
  background-color: #f6f3ec;
}
#menu-type02 {
  background-color: #e5e5e5;
}

#menu-type01 .menu-title,
#menu-type02 .menu-title,
#menu-type03 .menu-title {
  background-color: #50a050;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}
#menu-type01 .menu-title h2,
#menu-type02 .menu-title h2,
#menu-type03 .menu-title h2 {
  font-family: 'Hina Mincho', serif;
  background-color: #50a050;
  font-size: 36px;
  color: #fff;
  text-align: center;
  padding: 0.8em 0 1em;
}

#menu-type01 .l-process-name {
  text-align: center;
  margin-top: 60px;
}
#menu-type01 .l-process-name h2 {
  font-family: 'Hina Mincho', serif;
  font-size: 36px;
  color: #50a050;
}
#menu-type01 .l-process-name p {
  font-family: 'Hina Mincho', serif;
  font-size: 24px;
  text-align: center;
}
#menu-type01 table {
  background-color: #fff;
  width: 100%;
  text-align: left;
  border-top: 2px solid #757575;
  border-bottom: 2px solid #757575;
  border-spacing: 0;
}
#menu-type01 table th,
#menu-type01 table td {
      padding: 2em;
  border-bottom: 1px dashed #757575;
}
#menu-type01 table th {
  border-right: 1px solid #757575;
}
#menu-type01 .menu-wrap {
  margin: 60px 0;
  padding: 30px 0;
  border-top: 3px dotted #757575;
}

#menu-type02 .menu-wrap {
  margin: 60px 0;
  padding: 30px 0;
}

.menu-wrap .s-process-name {
  text-align: center;
}
.menu-wrap .s-process-name h2 {
  font-family: 'Hina Mincho', serif;
  font-size: 28px;
  color: #50a050;
}
.menu-wrap .sample-inner {
  margin-top: 40px;
}
.menu-wrap .sample-inner .txt-title {
  font-size: 20px;
  font-weight: bold;
  color: #50a050;
}
.menu-wrap .sample-inner p {
  margin-top: 0;
}

.menu_list-box {
  margin-top: 50px;
}
.uk-list-bullet > ::before {
  content: "●";
  left: -35px;
  margin-bottom: -1.5em;
  background-image: none;
}

@media screen and (max-width: 768px) {
	.mp-card {
	width: 90%;
	margin: 0 0 30px 0;
	padding: 0.8rem;
}
  .scroll-down {
    line-height: 0.7em;
  }
  .scroll-btn {
    padding: 1em 0 2.5em;
    font-size: 16px;
    letter-spacing: 0.01em;
  }
  #menu-type01 .menu-title h2,
  #menu-type02 .menu-title h2,
  #menu-type03 .menu-title h2 {
    font-size: 24px;
  }
  #menu-type01 table {
    font-size: 14px;
  }
  #menu-type01 .l-process-name h2 {
    font-size: 24px;
  }
  #menu-type01 .l-process-name p {
    font-size: 16px;
    letter-spacing: 0.01em;
  }
  .menu-wrap .s-process-name h2 {
    font-size: 20px;
    text-align: left;
  }
  .menu-wrap .sample-inner .txt-title {
    font-size: 16px;
  }
  .menu_list-box {
    margin-top: 50px;
  }
  .menu-wrap p {
    text-align: left;
  }
}


/*============
  お客さまの声ページ
  =============*/
.vo-card{
	background-color: #f5f8f9;
	padding: 20px;
	border: double #3c2208 4px;
	box-shadow: 10px 10px 20px #c2c2c2;
	margin-bottom: 2rem;
}
.vo-text{
	font-weight: bold;
	text-align: right;
}
  @media screen and (max-width: 768px) {
    .voice-inner .uk-card-body {
      padding: 0;
  }
	  .vo-card{
	background-color: #f5f8f9;
	padding: 20px;
	margin: 20px auto;
	width: 85%;
	border: double #3c2208 4px;
	box-shadow: 10px 10px 20px #c2c2c2;
}
  }

/*============
  当院院長のご紹介ページ
  =============*/
  h2.message::after {
    content: "Message";
  }
  h2.career::after {
    content: "Career";
  }
  .message-inner .uk-card-title {
    font-size: 20px;
    color: #50a050;
  }


/*============
  当院のご紹介ページ
=============*/
h2.clinic::after {
  content: "Clinic";
}
.about-inner h3 {
  font-family: 'Hina Mincho', serif;
  position: relative;
  text-align: center;
  font-size: 28px;
  letter-spacing: 5px;
  color: #50a050;
}

.about-inner #table td {
  text-align: left;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.8em;
}
.mb50 {
	margin-bottom: 50px;
}
.mb90 {
	margin-bottom: 90px;
}


/*============
 個人情報保護方針ページ
=============*/
.policy-inner h4 {
  color: #50a050;
}
.policy-inner ul {
  position: relative;
  margin: 0;
  padding: 0
}
.policy-inner ul li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em;
  margin-top: 15px;
}
.policy-inner ul li span {
  position: absolute;
  left: 0;
  margin: 0
}



/*============
 アニメーション要素のスタイル
=============*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-fill-mode: backwards;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-direction: normal;
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn-bottom {
  opacity: 0;
  visibility: hidden;
  transition: 2s;
  transform: translateY(100px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.fadeIn-bottom__active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*============
 当院のご案内
=============*/
/* page-contents */
#page-contents {
	margin-top: 100px;
}

#page-contents h1 {
	padding: 0.3rem;
	margin: 1rem auto;
	text-align: left;
	font-size: 1.5rem;
	border-bottom: 1px solid #50A050;
}

#page-contents-old h1 {
	padding: 0.3rem;
	margin: 1rem auto;
	text-align: left;
	font-size: 1.5rem;
	border-bottom: 1px solid #50A050;
	width: 80%;
}

#page-contents h2 {
	margin-top: 0px;
	padding: 0.3rem;
	margin-bottom: 1.5rem;
	text-align: left;
	font-size: 1.3rem;
	border-bottom: 1px dashed #50A050;
}

#page-contents h3 {
	margin-top: 0px;
	margin-bottom: 0.5rem;
	text-align: left;
	font-weight: bold;
	color: #6F4B3E;
}

#page-contents h3.pink {
	margin-top: 0px;
	margin-bottom: 0.5rem;
	text-align: left;
	font-weight: bold;
	color: #e76b6b; 
}
#page-contents h3.blue {
	margin-top: 0px;
	margin-bottom: 0.5rem;
	text-align: left;
	font-weight: bold;
	color: cadetblue;
}

#page-contents h4 {
	margin-top: 0px;
	margin-bottom: 0.5rem;
	text-align: left;
	font-size: 1rem;
	color: #6F4B3E;
}

.page-contents-item {
	padding-bottom: 3rem;
}

table.about-table {
	width: 100%;
	border-top: 2px solid #000;
}

table.about-table th {
	width: 7rem;
}

table.about-table tr {
	berder-top: 1px solid #000;
}

#page-contents .page-contents-item .page-contents-item-left-right {
	display: -webkit-flex;
	display:         flex;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}
#page-contents .page-contents-item .page-contents-item-left-right .overview-table {
	width: 59%;
}
#page-contents .page-contents-item .page-contents-item-left-right .overview-image {
	width: 37%;
}

#page-contents .page-contents-item .page-contents-item-left-right .overview-table table {
	margin-bottom: 1rem;
}

#page-contents .page-contents-item .page-contents-item-left-right .overview-image img {
	margin-bottom: 0.5rem;
}
#page-contents .page-contents-item .page-contents-item-left-right .access-table,
#page-contents .page-contents-item .page-contents-item-left-right .parking-photo,
#page-contents .page-contents-item .page-contents-item-left-right .left-box,
#page-contents .page-contents-item .page-contents-item-left-right .right-box {
	width: 48%;
}

.page-contents-item table {
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
}

.page-contents-item table th,
.page-contents-item table td {
	padding: 0.5rem 0;
	border-bottom: 1px solid #000000;
}

.page-contents-item table tr:last-child th,
.page-contents-item table tr:last-child td {
	border-bottom: none;
}

.page-contents-item .box {
	display: -webkit-flex;
	display: flex;
	flex-direction: row;
	-webkit-justify-content: space-between;
	        justify-content: space-between;
}

.page-contents-item .rev {
	flex-direction: row-reverse;
}

.contents-box {
	padding-bottom: 3rem;
}

.page-contents-item .text {
	width: 50%;
	text-align: justify;
}

.page-contents-item .text2 {
	width: 100%;
	text-align: justify;
}

.page-contents-item .text-margin-bottom {
	margin-bottom: 20px!important;
}

.page-contents-item .photo {
	width: 45%;
/*	margin-left: 3%;*/
	padding-bottom: 1.3rem;
}

.page-contents-item .photo img {
	width: 100%;
	height: auto;
}

.page-contents-item .box:nth-child(even) {
	flex-direction: row-reverse;
}

.page-contents-item .box:nth-child(even) .text {
	text-align: justify;
}

.page-contents-item .box:nth-child(even) .photo {
	margin-left: 0;
/*	margin-right: 3%;*/
}

.page-contents-item .access-map {
	padding-bottom: 1.5rem;
}

.page-contents-item .access-map iframe {
	height: 50vw;
}

#page-contents .page-contents-item .page-contents-item-left-right .parking-photo {
	padding-bottom: 3rem;
}

.pluus-sejutsu {
	text-align: center;
	font-size: 2rem;
}

.pluus-sejutsu img {
	width: 3rem;
}

.price-table {
	width: 80%;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
	background-color: #FFF;
    margin: 0 auto;
}
.fs-s {
	font-size: 0.8rem;
	width: 80%;
	margin: 0 auto;
	padding-bottom: 1rem;
}
.po-ul li{
	margin-left: 50px;
}
.mb80{
	margin-bottom: 80px;
}
.icon-text {
	font-size: 0.8rem;
	line-height: 1rem;
	padding-top: 0.2rem;
	top: 50%;
    left: 50%;
    transform: translate(-10%,5%);
	text-align: center;
}
.menu01 {
	display: flex;
	position: relative;
}
.link01{
	text-decoration: underline;
	color: #50A050;
}
.shadow{
	filter: drop-shadow(2px 2px 2px grey)
}
.spbr{
	display: none;
}
.pink{
	color: #e76b6b;
	font-weight: bold;
}
.blue{
	color: cadetblue;
	font-weight: bold;
}
.fs-s02 {
	font-size: 0.8rem;
}

@media only screen and (max-width: 768px) {
	
	.faq01 {
	width: 10%!important;
	}
	.menu01 {
	display: block;
	/*width: 20%;*/
	position: relative;
}
	.icon-text {
	font-size: 0.6rem;
	line-height: 1rem;
	padding-top: 0.2rem;
	top: 50%;
    left: 50%;
    transform: translate(0%,5%);
	text-align: center;
	}

	.spbr{
		display: block;
	}

	.fs-s02 {
		line-height: 1.2rem;
	}

	#page-contents {
		margin-top: calc(56px + 0.5rem);
	}

	#page-contents .page-contents-item {
		padding: 0;
	}

	#page-contents h1 {
		text-align: center;
	}

	#page-contents h2 {
		margin-bottom: 1rem;
	}

	#page-contents .page-contents-item .page-contents-item-left-right {
		display: block;
	}

	#page-contents .page-contents-item .page-contents-item-left-right .overview-table,
	#page-contents .page-contents-item .page-contents-item-left-right .access-table {
		width: 100%;
	}

	#page-contents .page-contents-item .page-contents-item-left-right .overview-image,
	#page-contents .page-contents-item .page-contents-item-left-right .parking-photo,
	#page-contents .page-contents-item .page-contents-item-left-right .left-box,
	#page-contents .page-contents-item .page-contents-item-left-right .right-box {
		width: 100%;
	}

	#page-contents .page-contents-item .page-contents-item-left-right .access-table {
		padding-bottom: 1rem;
	}

	.page-contents-item .box {
		flex-direction: column;
	}
	.page-contents-item .box .photo {
		width: 100%;
		padding: 0.7rem 0;
	}

	.page-contents-item .box:nth-child(even) {
		flex-direction: column;
	}

	.page-contents-item .text {
		width: 100%;
	}

	.page-contents-item .box:nth-child(even) .text {
		text-align: justify;
	}

	.page-contents-item .box:nth-child(even) .photo {
		width: 100%;
		margin-left: 0;
		text-align: center;
	}

	.page-contents-item .box:nth-child(even) .photo {
		margin-left: 0;
		margin-right: 0%;
	}

	.page-contents-item .box:nth-child(even) .photo img {
		width: 100%;
		height: auto;
	}

	.page-contents-item .access-map iframe {
		height: 50vw;
	}

	.pluus-sejutsu {
		font-size: 1.3rem;
	}

	.pluus-sejutsu img {
		width: 2rem;
	}
	.price-table {
	    width: 100%;
        border-top: 2px solid #000;
        border-bottom: 2px solid #000;
        background-color: #FFF;
        margin: 0 auto;
        font-size: 0.7rem;
        text-align: left;
	}
	.fs-s {
	font-size: 0.8rem;
	width: 100%;
	margin: 0 auto;
   }
   .po-ul li{
	margin-left: 20px;
   }
}
.indent-1 {
	padding-left: 1em;
	text-indent: -1em;
}
.indent-2 {
	padding-left: 2em;
	text-indent: -2em;	
}
.faq01 {
	width: 3%;
}
table.com2 {
	border: none;
}
table.com2 tr {
	vertical-align: top;
}
table.com2 td {
	border: none;
	padding: 0;
}
table.com2 td.wid1 {
	width: 1em;
}
table.com2 td.wid15 {
	width: 1.5em;
}
table.com2 td.wid2 {
	width: 2em;
}
table.com2 td.unwid1 {
	width: calc(100% - 1em);
}
table.com2 td.unwid15 {
	width: calc(100% - 1.5em);
}
table.com2 td.unwid2 {
	width: calc(100% - 2em);
}

/*============
コラムページ
=============*/
