/*共通*/
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: "Arial", "メイリオ";

}

a{
	color: none;
	text-decoration: none;
}

a:hover{
	opacity: 0.7;
}

img{
	border: 0;
	max-width: 100%;
	height: auto;
}

h1{
	font-weight: normal;
	color: #fff;
	font-size: 22px;
	display: inline-block;
	margin: -10px 0 0;
	line-height: 1.3;
}

h1 span{
	font-size: 10px;
}

h2{
	width: 300px;
	font-size: 24px;
	color: #A89084;
	text-align: center;
	border-bottom: solid 1px;
	margin: 0 auto 30px;
	padding-bottom: 10px;
}

h3{
	font-size: 20px;
	font-weight: bold;
	color: #A89084;
	text-align: center;
	margin: 40px auto 20px;
}

p{
	text-align: center;
}

section{
	padding: 50px 10px;
}

@media screen and (min-width:1024px) {
section > div{
	max-width: 980px;
	margin: 0 auto;
}
}

.bg_gray{
	background-color: #F8F8F8;
}

.bg_brown{
	background-color: #A89084;
	color: #fff;
}


/*ヘッダー*/
header{
	height: 65vh;
	background: url(../img/top01.JPG) center bottom no-repeat;
	background-size: cover;
	position: relative;
}

@media screen and (min-width:1024px){
header{
	background: url(../img/top01.JPG) center 65% no-repeat;
	background-size: cover;
}
}

.header_fix{
	width: 100%;
	position: fixed;
	z-index: 1;
}

nav{
	padding: 10px 45px 10px 10px;
	background-color: #A89084;
	display: flex;
	justify-content: space-between;
}

nav ul.menu_pc{
	display: none;
}

@media screen and (min-width:1024px) {
nav{
	padding: 10px;
}

nav ul.menu_pc{
	display: inherit;
}

nav ul.menu_pc li{
	list-style: none;
}

nav ul.menu_pc li a{
	padding: 10px;
	display: inline-block;
	color: #fff;
}
}

.menu_and_tel{
	display: flex;
	justify-content: right;
}

/*ヘッダーのハンバーガーメニュー*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:-120%;
    left:0;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:#A89084;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:45%;
    left:45%;
    transform: translate(-38%,-45%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: center; 
}

#g-nav li a{
  color: #fff;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#g-nav li.g-nav_r{
	font-size: 22px;
	padding-top: 40px;
	font-weight: bold;
}

#g-nav li.g-nav_tel{
	color: #fff;
	line-height: 1.1em;
}

#g-nav li.g-nav_tel a{
	font-weight: bold;
	font-size: 18px;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 5px;
  cursor: pointer;
    width: 50px;
    height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 20px;
    height: 3px;
    border-radius: 2px;
  background-color: #fff;
    width: 50%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media screen and (min-width:1024px) {
div#g-nav{
	display: none;
}

.openbtn1{
	display: none;
}
}

.header_tel{
	width: 50px;
	padding: 8px 0;
	text-align: center;
	background-color: #fff;
	color: #A89084;
	border-radius: 8px;
	font-size: 0.9em;
	line-height: 1.2em;
	box-shadow: 0px 3px 6px gray;
}

.header_line{
	margin-left: 8px;
	color: #07b53b;
}

.pc_tel{
	display: none;
}

@media screen and (min-width:1024px) {
.header_tel{
	display: none;
}

.pc_tel{
	display: inline;
	color: #fff;
	font-size: 10px;
	text-align: center;
	margin-left: 10px;
	margin-top: 4px;
}

.pc_tel span{
	font-size: 20px;
	font-weight: bold;
}

.pc_tel span.small{
	font-size: 12px;
	font-weight: normal;
}

.pc_tel a.line_green{
	color: #fff;
}
}

.header_text{
	color: #fff;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

@media screen and (min-width:1024px){
.header_text{
	bottom: 20px;
	left: 20px;
	font-size: 16px;
}
}

.header_text p{
	text-align: left;
	text-shadow: 0px 3px 6px gray;
}

/*instagram*/
.instagram_container{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.instagram_container a{
	color: #A89084;
}

@media screen and (min-width:530px){
.instagram_container{
	display: flex;
	justify-content: center;
	align-items: center;
}

.instagram_container div{
	margin: 0 20px;
}
}

.instagram_container p{
	text-align: left;
}

.insta_img{
	width: 58px;
}

.arrow{
	width: 24px;
}

@media screen and (max-width:390px){
.arrow{
	display: none;
}
}

/*診療時間*/
#time table , #time td, #time th {
	border: 1px solid #595959;
	border-collapse: collapse;
	text-align: center;
	margin: 0 auto;
}

#time td, #time th {
	padding: 8px 3px;
	width: 30px;
	height: 25px;
}

#time th {
	background: #f0e6cc;
}

#time .even {
	background: #fbf8f0;
}

#time .odd {
	background: #fefcf9;
}

#time .table_time01{
	width: 98px;
}

#time .table_time02{
	width: 50px;
}

p.uketsuke{
	margin-top: 20px;
}

@media screen and (min-width:1024px){
#time td, #time th {
	padding: 8px 3px;
	width: 50px;
	height: 25px;
}

#time .table_time01{
	width: 120px;
}

#time .table_time02{
	width: 70px;
}
}

.time_tel{
	width: 260px;
	font-size: 1.1em;
	margin: 30px auto 0;
	background-color: #A89084;
	border-radius: 10px;
	text-align: center;
	line-height: 1.2em;
	box-shadow: 0px 3px 6px gray;
}

.time_line{
	background-color: #07b53b;
}

.time_tel a{
	display: block;
	width: 100%;
	color: #fff;
	padding: 22px 20px 20px;
}

.time_tel span{
	font-size: 0.7em;
}

.time_tel_pc{
	display: none;
}

@media screen and (min-width:1024px){
.time_tel{
	display: none;
}

.time_tel_pc{
	display: block;
	text-align: center;
	color: #A89084;
	margin: 10px 0 0;
}

.time_tel_pc span{
	font-size: 18px;
	font-weight: bold;
}

.time_line_pc{
	color: #A89084;
}
}

/*アール鍼灸整骨院とは*/
.circle_box{
	display: flex;
	justify-content: space-around;
	margin-top: 40px;
}

.circle{
	width: 104px;
	height: 104px;
	margin: 0 2px;
	border-radius: 52px;
	background-color: #EAB8D7;
	text-align: center;
	color: #fff;
	font-size: 18px;
	position: relative;
	text-shadow: 0px 3px 6px gray;
}

.circle span{
	font-size: 36px;
	color: #A89084;
	font-weight: bold;
	position: absolute;
	top: -26px;
	left: 40px;
	text-shadow: none;
}

@media screen and (min-width:1024px){
.circle{
	width: 150px;
	height: 150px;
	border-radius: 75px;
	padding-top: 14px;
	font-size: 20px;
}

.circle span{
	font-size: 40px;
	top: -26px;
	left: 60px;
}
}

#about img{
	width: 300px;
	height: 200px;
	object-fit: cover;
	margin: 10px auto 0;
	display: block;
}

@media screen and (min-width:1024px){
#about h3{
	display: none;
}

.about_container{
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.about_container div{
	width: 32%;
	position: relative;
	margin-bottom: 220px;
}

.about_container div img{
	position: absolute;
	top: 200px;
}

#about img{
	width: 313px;
}
}

/*メニュー*/
#menu table{
	margin: 24px auto 0;
}

#menu table , #menu td, #menu th {
	border-collapse: collapse;
}

#menu td, #menu th {
	padding: 1px;
	width: 14em;
	height: 25px;
}

#menu td.kega{
	width: 8em;
}

#menu table td span.circle_list{
	color: #A89084;
	font-size: 0.8em;
	padding-right: 5px;
}

#menu td.price{
	text-align: right;
	width: 5em;
}

#menu td.price_op{
	text-align: right;
	width: 9em;
}

#menu td.op{
	width: 21em;
}

@media screen and (min-width:1024px){
#menu td.price_op{
	width: 13em;
}
}

#menu th {
	background: #f0e6cc;
}

#menu .even {
	background: #fbf8f0;
}

#menu .odd {
	background: #fefcf9;
}


/*アクセス*/
#access img{
	width: 260px;
	height: 260px;
	object-fit: cover;
	display: block;
	margin: 0 auto;
}

.access_text{
	font-size: 18px;
	color: #A89084;
	text-align: center;
	margin: 10px auto;
}

.triangle{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 24px 0 24px;
	border-color: #A89084 transparent transparent transparent;
	margin: 10px auto;
}

.slider{
	display: none;
}

@media screen and (min-width:1024px){
.access_container{
	display: none;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
	display: block;
    width:100%;
    margin:0 auto;
    padding-top: 30px;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

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

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

/*ドットナビゲーションの設定*/

.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:10px;/*ドットボタンのサイズ*/
    height:10px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#F8F8F8;/*ドットボタンの色*/
}

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


/*.access_container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

#access img{
	margin-bottom: 30px;
}

.last_img{
	margin-bottom: 0;
}

.triangle{
	display: none;
}

.triangle_pc{
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 30px solid transparent;
	border-bottom: 30px solid transparent;
	border-left: 30px solid #A89084;
	border-right: 0;
	margin: 30px 10px 0;
}*/
}

/*マップ*/
iframe {
  vertical-align:bottom;
  width: 100%;
  aspect-ratio: 5/3; //アスペクト比（縦横比）を指定
}

@media screen and (min-width:1024px){
iframe {
  aspect-ratio: 5/2; //アスペクト比（縦横比）を指定
}
}

/*フッター*/
footer{
	text-align: center;
	color: #fff;
	background-color: #A89084;
	padding: 40px 10px;
}

address{
	font-style: normal;
}

.footer_r{
	font-size: 20px;
	font-weight: bold;
	padding: 10px 0;
}

.footer_tel{
	font-size: 18px;
	padding: 10px 0 0;
}

.footer_tel a{
	color: #fff;
}