@charset "UTF-8";

:root {
	--base: #FCFEFD;
	--gn: #67A59F;
	--br: #694933;
	--lgn1: #B5D9D6;
	--lgn2: #E0F1E9;
	--or: #F68D02;
	--be: #F7F5F2;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 1.6rem;
	letter-spacing: 1px;
	line-height: 1.875;
	font-weight: 400;
	color: #000;
	background: var(--base);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
	opacity: 0;
	transition: opacity 1.6s ease;
}

body.appear {
	opacity: 1;
}

@media (max-width: 820px) {
	body {
		font-size: 1.4rem;
	}
}

.en article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.2;
	font-weight: normal;
	font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
}

a,
a::after,
a::before {
	color: inherit;
	outline: none;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: top;
}

video {
	max-width: 100%;
	height: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th,
td {
	text-align: left;
	vertical-align: top;
	font-weight: normal
}


blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

input,
textarea,
select {
	max-width: 100%;
}

/*-----------------------
/*clearfix
---------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

/* For IE 6/7 only */
.cf {
	*zoom: 1;
}

/*-----------------------
/*animation
---------------------------------*/

/* アニメーション　ズームイン */
@-webkit-keyframes zoomIn {
	0% {
		transform: scale(1.3) rotate(0.0001deg);
	}

	100% {
		transform: scale(1.0);
	}
}


@keyframes zoomIn {
	0% {
		transform: scale(1.3) rotate(0.0001deg);
	}

	100% {
		transform: scale(1.0);
	}
}

/* アニメーション　ズームアウト */
@-webkit-keyframes zoomOut {
	0% {
		transform: scale(1.0) rotate(0.0001deg);
	}

	100% {
		transform: scale(0.4);
	}
}







/*-----------------------
component パーツ
-----------------------*/
/*ローディング*/
.c-loading {
	background: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	transition: all 0.6s ease;
	opacity: 1;
}

[data-loading=true] .c-loading {
	opacity: 0;
	z-index: -9999;

}

.c-loading__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.center{
	text-align: center;
}
/*ラジオボタン*/
.c-radio,
[type=radio] {
	display: none
}

.c-radio + span,
[type=radio] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0 1em 0 1.4em;
	position: relative
}

.c-radio + span::before,
[type=radio] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 50%;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em
}

.c-radio + span::after,
[type=radio] + span::after {
	-webkit-transform: translateY(-50%);
	background: #616161;
	border: 1px solid #9e9e9e;
	border-radius: 50%;
	box-shadow: 0 0 0 .1em #fff inset;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s ease 0s;
	width: 1em
}

.c-radio:checked + span::before,
:checked[type=radio] + span::before {
	border: 1px solid #9e9e9e
}

.c-radio:checked + span::after,
:checked[type=radio] + span::after {
	opacity: 1
}

/*チェックボックス*/
.c-checkbox,
[type=checkbox] {
	display: none
}

.c-checkbox + span,
[type=checkbox] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0 1em 0 1.4em;
	position: relative
}

.c-checkbox + span::before,
[type=checkbox] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 2px;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em
}

.c-checkbox + span::after,
[type=checkbox] + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid #616161;
	border-left: 3px solid #616161;
	content: "";
	display: block;
	height: .6em;
	left: 0;
	margin-top: -.2em;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .3s ease 0s;
	width: 1em
}

.c-checkbox:checked + span::before,
:checked[type=checkbox] + span::before {
	border: 1px solid #9e9e9e
}

.c-checkbox:checked + span::after,
:checked[type=checkbox] + span::after {
	opacity: 1
}

/*セレクトボックス*/
.c-select,
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url(./img/arrow-bottom-w.png);
	background-position: center right .2em;
	background-repeat: no-repeat;
	background-size: 16px auto;
	border: 1px solid #bdbdbd;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 1em;
	padding: .4em 2.4em .4em .8em;
	width: auto
}

.c-select::-ms-expand,
select::-ms-expand {
	display: none
}

.c-select:focus,
select:focus {
	border: 1px solid #9e9e9e;
	box-shadow: none;
	outline: 0
}

.c-select[multiple],
select[multiple] {
	background-image: none;
	height: 100px;
	padding: 0
}

.c-select[multiple] option,
select[multiple] option {
	padding: .4em 1.2em .4em .4em
}

.c-btn1wrap {
	display: block;
	margin-right: 70px
}

.c-btn1 {
	position: relative;
	color: var(--main);
	font-weight: 800;
	display: flex;
	height: 70px;
	align-items: center;
}

.c-btn {
	display: inline-block;
}

.c-btn1:after {
	content: '';
	width: 70px;
	height: 70px;
	background: var(--main);
	opacity: .15;
	border-radius: 50%;
	display: block;
	position: absolute;
	right: -53px;
	top: 0;
}

.c-arrow-r {
	position: absolute;
	display: block;
	top: calc(50% + -3px);
	right: 0;
	z-index: 1
}

.c-arrow-r::before {
	content: '';
	position: absolute;
	left: 11px;
	top: 3px;
	width: 12px;
	height: 2px;
	background: var(--main);
	display: block;
	transition-duration: .6s;
}

.c-arrow-r::after {
	content: '';
	position: absolute;
	left: 16px;
	top: 0px;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--main);
	border-right: 2px solid var(--main);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	display: block;
	transition-duration: .6s
}

.c-btn1:hover:after {
	opacity: 1;
	-webkit-animation: zoomOut .4s ease forwards;
	animation: zoomOut .2s ease forwards;
}

.c-btn1:hover .c-arrow-r::before {
	background: #fff;
}

.c-btn1:hover .c-arrow-r::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.c-btn1:hover {
	text-decoration: underline;
}

@media (max-width: 820px) {
	.c-floating {
		bottom: 0;
		position: fixed;
		right: 0;
		transition: all .3s ease 0s;
		width: 100%;
		text-align: center;
		height: 60px;
		display: flex !important;
		z-index: 999
	}

	.c-floating .tel-num {
		background: #F68D02;
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		width: calc(100% - 60px)
	}

	.c-floating .tel-num a {
		color: #fff;
		padding: 0.3em;
		display: block;
		width: 100%;
	}

	.c-floating .tel-num b {
		font-size:20px;
		display: block;
	}
.c-floating .tel-num b:after {
    content: '';
    background: url(../images/ico-link.svg) no-repeat;
    width: 15px;
    height: 16px;
    background-size: cover;
    position: absolute;
    top: 54%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 24px;
}
	.c-floating .p-access {
		width: 60px;
		background: var(--br);
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 700;
		font-size: 11px;
	}
	.c-floating .p-webbtn .top{
		top: -20px
	}
	
}

/*-----------------------
layout レイアウト
-----------------------*/

.l-row {
	display: flex;
	flex-wrap: wrap;
}

.l-row--middle {
	align-items: center;
}

.l-row--baseline {
	align-items: baseline;
}

.l-row--end {
	align-items: flex-end;
}

.l-row--center {
	justify-content: center;
}

.l-row--between {
	justify-content: space-between;
}

.l-row--reverse {
	flex-direction: row-reverse;
}

.l-inner {
	width: min(1530px, 90%);
	margin: 0 auto;
}
.l-inner_m {
	width: min(1280px, 90%);
	margin: 0 auto;
}
.l-inner_s {
	width: min(865px, 90%);
	margin: 0 auto;
}

.l-section {
	padding: 0 120px;
}

@media screen and (max-width: 1460px) {
	.l-section {
		padding: 0 80px;
	}
}

@media screen and (max-width: 820px) {
	.l-section {
		padding: 0 5%;
	}
}

/*-----------------------
Utility
-----------------------*/
.sp {
	display: none;
}

@media (max-width: 820px) {
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}
}

/* 共通初期状態 */
.l-kv_img,
.t_kv_copy {
	opacity: 0;
	transition: opacity 0.8s ease;
}

/*
.menuwrap,
.timetable {
	opacity: 0;
	transition: opacity 1.8s ease;
}
*/

/* フェードイン時 */
.fadein {
	opacity: 1;
}

.u-bold {
	font-weight: bold;
}

.u-bold.u-extra {
	text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, 0px 2px 0 #000, 0 -2px 0 #000, 0px 0 0 #000, 2px 0 0 #000;
}

.u-hover:hover {
	opacity: .8;
	transition: all .5s ease 0s
}

.u-hover-scale-wrap {
	width: auto;
	overflow: hidden;
}

.u-hover-scale {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
	transition: all .5s ease 0s
}

.u-hover-scale:hover {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1)
}

.u-hover-up {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	transition: all .5s ease 0s
}

.u-hover-up:hover {
	-webkit-transform: translate(0, -.3em);
	transform: translate(0, -.3em)
}

.u-hover-down {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	transition: all .5s ease 0s
}

.u-hover-down:hover {
	-webkit-transform: translate(0, .3em);
	transform: translate(0, .3em)
}

.u-fadein {
	opacity: 0;
	transition: all .8s ease 0s;
}

.u-fadein.is-anim {
	opacity: 1
}

.u-fadein-up,
.js-scroll {
	-webkit-transform: translate(0, 2.8rem);
	opacity: 0;
	transform: translate(0, 2.8rem);
	transition: all 1s ease .3s;
}

.u-fadein-up.is-anim,
.js-scroll.is-active {
	-webkit-transform: translate(0, 0);
	opacity: 1;
	transform: translate(0, 0);
}

.u-txt-center {
	text-align: center;
}

.u-attention li {
	position: relative;
	padding-left: 1.2em;
	font-size: 87%;
	font-weight: 700;
	opacity: .8
}

.u-attention li:before {
	position: absolute;
	content: '※';
	left: 0;
}

.u-attention a {
	text-decoration: underline;
}

.u-attention a:hover {
	background: var(--main);
	color: #fff;
	text-decoration: none;
}

.u-mb-6 {
	margin-bottom: 6em
}

@media screen and (max-width: 820px) {
	.u-mb-6 {
		margin-bottom: 3em
	}
}

.u-shadow,
.treatment-list__box,
#consultationhours {
	box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.05);
}

/*-----------------------
loading
-----------------------*/
.spinner {
	margin: 0 auto;
	width: 70px;
	text-align: center;
}

.spinner > div {
	width: 18px;
	height: 18px;
	background-color: var(--gn);

	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

/*-----------------------
共通パーツ
-----------------------*/
.ttlwrap_type2 {
	font-size: clamp(14px, 4.560px + 0.8vw, 20px);
	margin-bottom: 16px;
}

.ttlwrap_type2 .ttl {
	margin-left: 16px;
	display: inline;
	font-weight: 500
}
.ttlwrap_type2 .ttl span {
    display: flex;
    padding-left: 1em;
    font-size: 80%;
	line-height: 1.6
}
.ttlwrap_type2 .ico-num{
	float: left
}
.ico-num {
	color: #fff;
	background: #FFB100;
	border-radius: 5px;
	position: relative;
	font-size: 23px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ico-num:before {
	content: "";
	position: absolute;
	top: 50%;
	right: -25px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #FFB100;
	z-index: 0;
}

.notelist li{
	position: relative;
	padding-left: 1.2em
}
.notelist li:before{
	content: '※';
	position: absolute;
	left: 0;
}
.table_type1{
	margin-bottom: 40px
}
.table_type1 table{
	border: 1px solid #B8A294;
	border-collapse: separate;/*collapseから変更*/
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
	margin-bottom: 30px
}
.table_type1 table th{
	font-weight: normal;
	text-align: center;
	vertical-align: middle;
	padding: .67em;
	color: var(--br)
}

.table_type1 table td{
	padding: 1em 1.6em
}
.table_type1 table thead th{
	background: #F7F5F2;
		border-bottom: 1px solid #B8A294
}
.table_type1 table tbody th{
	background: #B8A294;
	width:240px;
	color: #fff;
	font-weight: 500
}
@media screen and (max-width: 820px) {
	.table_type1 table tbody th{
	width:auto;
}
}
.table_type1 table tbody tr:not(:last-child) td{
	border-bottom: 1px solid #B8A294
}
.table_type1 table tbody tr:not(:last-child) th{
	border-bottom: 1px solid #F7F5F2
}
.table_type1 table tbody td:not(:last-child),.table_type1 table thead th:not(:last-child){
	border-right: 1px solid #B8A294
}
/*
main section:last-child {
	padding-bottom: 14vw
}
*/

footer {
	margin-top: -14vw
}

.bloglist {
	width: min(865px, 100%);
	margin: 0 auto;
}

.bloglist li {
	background: #fff;
	border-radius: 30px 10px;
	margin-bottom: 20px;
	padding: 20px 32px
}

@media screen and (max-width: 820px) {
	.bloglist li {
		padding: 20px 16px
	}
}

.blogcard {
	column-gap: 20px;
	align-items: center
}

.blogcard .img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.blogcard .img img,
.blogcard .img .circle-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%; /* 念のためimgにも丸指定 */
  display: block;
}

.blogcard .txtarea {
	width: calc(100% - 160px);
}

.blogcard .date_cate {
	display: flex;
	column-gap: 10px;
	font-size: 14px;
	margin-bottom: 8px;
	align-items: anchor-center;
}

.blogcard .date {
	color: var(-br);
}

.blogcard .cate {
	background: #FFB100;
	border-radius: 3px;
	line-height: 1;
	padding: 3px 5px;
	color: #fff;
}

.blogcard .ttl {
	font-size: 20px;
	font-weight: 500;
	display: block
}

.blogcard .txt {
	opacity: .8;
	font-size: 14px;
	line-height: 1.5714;
	display: block
}

.blogcard .link {
	text-align: right;
	font-size: 14px;
	display: block;
	text-decoration: underline;
	position: relative;
	padding-right: 1em;
}

.blogcard .link:before {
	top: calc(50% - 4px);
}

@media screen and (max-width: 820px) {
	.blogcard {
		column-gap: 8px;
		align-items: flex-start;
	}

	.blogcard .img {
		width: 80px;
		height: 80px;
	}

	.blogcard .txtarea {
		width: calc(100% - 88px);
	}

	.blogcard .date_cate {
		column-gap: 8px;
		font-size: 12px;
		margin-bottom: 4px;
	}

	.blogcard .ttl {
		font-size: 16px;
	}

	.blogcard .txt {
		font-size: 12px;
	}

	.blogcard .link {
		font-size: 12px;
	}
}

.readarea {
	font-size: 18px;
	line-height: 2;
	position: relative;
	z-index: 1;
	margin-bottom: 40px;
	text-align: center
}

@media screen and (max-width: 820px) {
	.readarea {
		font-size: 14px;
		text-align: left
	}
}


.txtlink {
	font-weight: 600;
	text-decoration: underline;
	color: var(--gn)
}

.txtlink:hover {
	opacity: .8
}

.checklist {
	column-gap: 32px;
	width: min(870px, 100%);
	margin: 0 auto 150px
}

@media screen and (max-width: 820px) {
	.checklist {
		column-gap: 0;
		margin: 0 auto 75px
	}
}

.checklist li {
	border-bottom: 1px dashed var(--br);
	width: calc(100% / 2 - 24px);
	padding: 15px 0;
	font-size: 20px;
	font-weight: 500;
	padding-left: 40px;
	position: relative
}

@media screen and (max-width: 820px) {
	.checklist li {
		width: 100%;
		font-size: 16px;
		padding-left: 35px;
	}
}

.checklist li:before {
	content: '';
	background: url(../images/ico-check.svg)no-repeat;
	width: 34px;
	height: 34px;
	background-size: cover;
	position: absolute;
	top: 15px;
	left: 0
}

@media screen and (max-width: 820px) {
	.checklist li:before {
		width: 20px;
		height: 20px;
		top: 21px;
		left: 10px;
	}
}

.liner {
	background: linear-gradient(transparent 60%, #FFEEB4 0%);
	display: inline;
}

.bnr_type1 {
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

.bnr_type1 .img {
	width: 42%;
	overflow: hidden;
	border-radius: 15px 0 0 15px;
}

.bnr_type1 .img img {
	border-radius: 15px 0 0 15px;
	transition: .6s all
}

.bnr_type1 .txt {
	width: 58%;
	background: var(--gn);
	color: #fff;
	display: flex;
	align-items: center;
	padding: 25px;
	border-radius: 0 15px 15px 0;
	font-weight: 600;
	font-size: clamp(14px, 11.701px + 0.613vw, 22px);
	position: relative;
	transition: .3s all
}

.bnr_type1:hover .txt {
	background: #5eb5ac
}

.bnr_type1:hover .img img {
	transform: scale(1.05, 1.05)
}

.btn_type1 {
	text-align: center;
}

.btn_type1 a {
	display: inline-block;
	background: #fff;
	padding: 1.2em 60px;
	min-width: 312px;
	text-align: center;
	color: var(--br);
	border: 2px solid var(--br);
	border-radius: 3em;
	font-weight: 600;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.btn_type1._gn a {
	color: #326C69;
	border: 2px solid #326C69;
}

.btn_type1._gn a:hover {
	background: #326C69;
	color: #fff
}

.btn_type1 a:hover {
	background: var(--br);
	color: #fff
}

.btn_type2 {
	display: inline-block;
	background: #fff;
	padding: 1.2em 20px;
	text-align: center;
	border: 1px solid var(--gn);
	border-radius: 10px;
	font-size: clamp(16px, 14.276px + 0.46vw, 22px);
}

.btn_type2:hover {
	background: var(--lgn2);
}
.btn_type3 {
    text-align: right;
}
.btn_type3 a{
	display: inline-block;
	background: var(--br);
	color: #fff;
	font-size: 15px;
	line-height: 1;
	padding: 5px 20px 5px 10px;
	border-radius: 3em
}
@media screen and (max-width: 820px) {
	.btn_type3 a{
		font-size: 10px
	}
}
.btn_type3 a:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 4px);
    right: 0;
}
.arrow_r,
.arrow_r_2 {
	position: relative
}

.arrow_r_2 {
	padding-right: 30px
}

.arrow_r:before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 10px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: -8px
}

.arrow_r._gn:before {
	border-top: 2px solid var(--gn);
	border-right: 2px solid var(--gn);
}

.arrow_r_2:before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 11px;
	z-index: 1;
	transform: rotate(45deg) translateY(-50%);
	-webkit-transform: rotate(45deg) translateY(-50%);
	-ms-transform: rotate(45deg) translateY(-50%);
}

.arrow_r_2:after {
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background: var(--br);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.js-close {
	font-size: 14px;
	color: var(--br);
	line-height: 1;
	background: rgb(252, 252, 252);
	border-width: 1px;
	border-style: solid;
	border-color: rgb(226, 226, 226);
	border-image: initial;
	padding: 13px 1em;
	border-radius: 3em;
	text-align: center;
	width: 200px;
	margin: 10px auto;
	cursor: pointer
}

.btn_type1 .arrow_r_2:after {
	right: 30px
}

.btn_type1 .arrow_r_2:before {
	right: 41px
}

.bnr_type1 .txt .arrow_r_2 {
	position: absolute;
	right: 20px;
}

.bnr_type1 .txt .arrow_r_2:after {
	background: #326C69;
	width: 32px;
	height: 32px;
}

@media screen and (max-width: 820px) {
	.bnr_type1 .txt .arrow_r_2 {
		position: absolute;
		right: 10px;
	}

	.bnr_type1 .txt .arrow_r_2:after {
		background: #326C69;
		width: 22px;
		height: 22px;
	}
}

.arrow_r_2._gn:after {
	background: #326C69;
}

.bnr_type1 .txt .arrow_r_2:before {
	right: 16px;
	width: 10px;
	height: 10px;
}

@media screen and (max-width: 820px) {
	.bnr_type1 .txt .arrow_r_2:before {
		right: 12px;
		width: 7px;
		height: 7px;
	}
}

.box_type1 {
	border: 4px solid var(--lgn1);
	padding: 47px 53px;
	border-radius: 15px;
	background: #fff;
}

@media screen and (max-width: 820px) {
	.box_type1 {
		border: 2px solid var(--lgn1);
		padding: 47px 16px 20px;
		border-radius: 8px;
	}
}

.box_type2 {
	border-radius: 100px 15px 100px 15px;
	padding: 80px 200px;
	width: min(1280px, 100%);
	margin: 0 auto
}

@media screen and (max-width: 820px) {
	.box_type2 {
		border-radius: 16px;
		padding: 40px 16px;
	}

	.t-first .box_type2 {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}
}

.box_type3 {
	margin: 0 auto 30px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	background: #fff;
	padding: 20px 40px 30px;
	border-radius: 15px
}

@media screen and (max-width: 820px) {
	.box_type3 {
		padding: 20px 10px 30px;
	}
}
.list_type1 li{
	position: relative;
	    padding: 3px 0 3px 20px;
}
.list_type1 li:before{
	content: '';
    background: url(../images/ico-check_br.svg) no-repeat;
    width: 15px;
    height: 15px;
    background-size: cover;
    position: absolute;
        top: 12px;
    left: 0;
}
.bg_be {
	background: #F7F5F2;
}
.bg_gn {
	background: #F6FBF2;
	padding: 0 0 70px
}

.bg_gn2 {
	background: #E0F1E9;
	padding: 0 0 clamp(40px, 34.253px + 1.533vw, 60px);
}
.bg_gn3 {
	background: #ECF6F3;
	padding: 0 0 70px
}
.bg_gradation {
	background: #218B83;
	background: linear-gradient(45deg, rgb(33 139 131 / 72%) 0%, rgb(34 129 77 / 55%) 100%);
}

.bg_type1 {
	padding: 110px 0;
	border-radius: 130px 130px 0 0
}

.ttlwrap {
	position: relative;
}

.secttl {
	font-size: clamp(20px, 18.552px + 0.92vw, 36px);
	font-weight: 500;
	line-height: 1;
	margin-bottom: .8em;
	text-align: center
}

.secttl .subttl {
	color: var(--gn);
	font-size: 18px;
	font-weight: 700;
}

.ttl1 {
	background: var(--gn);
	color: #fff;
	font-size: clamp(24px, 20.552px + 0.92vw, 36px);
	padding: .2em 0;
	text-align: center;
	font-weight: 500;
	border-radius: 10px
}

.box_type1 .ttl1 {
	width: 80%;
	margin: -74px auto 60px;
	letter-spacing: 4px
}

@media screen and (max-width: 820px) {
	.box_type1 .ttl1 {
		width: 100%;
		margin: -74px auto 16px;
		font-size: 16px;
		font-weight: 600;
		line-height: 1.2;
		padding: 1em 0;
	}
}

.ttl2 {
	text-align: center
}

.ttl2 span {
	color: #fff;
	font-size: clamp(20px, 16.552px + 0.92vw, 36px);
	line-height: 1.8;
	font-weight: 500;
	display: inline;
	padding: 0 4px 2px 4px;
	background: linear-gradient(transparent 96%, #ffffff 0%);
	margin-bottom: 57px
}

@media screen and (max-width: 820px) {
	.ttl2 {
		text-align: left
	}
}

.ttl3 {
	font-size: clamp(20px, 18.575px + -0.153vw, 26px);
	font-weight: 500;
	display: inline-block;
}
.ttl4 {
	font-size: clamp(17px, 16.575px + -0.153vw, 26px);
	font-weight: 500;
	display: inline-block;
	position: relative;
	color: var(--br);
	    margin-bottom: 1em;
	padding-left: 34px
}
.ttl4:before,.ttl4:after{
	content: '';
	position: absolute;
	border-radius: 50%
}
.ttl4:before{
	width: 26px;
	height: 26px;
	background: #FEEEB4;
	top: 0;
	left: 0;
	z-index: 1
}
.ttl4:after{
	width: 18px;
	height: 18px;
	background: #FFB100;
	top: 4px;
	left: 4px;
	z-index: 2
}
@media screen and (max-width: 820px) {
	.ttl4:before{
		top: -2px
	}
	.ttl4:after{
		top: 2px
	}
}
.ttl6{
	font-size: clamp(14px, 12.276px + 0.46vw, 20px);
}
.phonebloc {
	align-items: center;
	line-height: 1.2;
	column-gap: 10px;
}
@media screen and (max-width: 1100px) {
	.phonebloc {
	column-gap: 4px;
}
}
.phonebloc .txt {
	display: flex;
	flex-direction: column;
}

.phonebloc .txt span {
	font-size: 12px;
}

.phonebloc .txt a {
	font-size: 30px;
}
@media screen and (max-width: 1100px) {
	.phonebloc .txt span {
    font-size: 10px;
}
	.phonebloc .txt a {
	font-size: 24px;
}
}
.p-webbtn {
	display: block;
	position: relative;
}

.p-webbtn .top {
	padding: 5px 15px;
	color: var(--or);
	border: 2px solid var(--or);
	background: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	border-radius: 10px;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: 1;
	width: 12.5em;
	display: inline-block;
}

.p-webbtn .bottom {
	background: var(--or);
	border: 2px solid #fff;
	color: #fff;
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	line-height: 1;
	border-radius: 3em;
	position: relative;
	display: block;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
	transition: .3s all;
	font-size: 17px;
	padding: 20px 48px 13px 18px;
}
@media screen and (max-width: 1100px) {
	.p-webbtn .bottom {
		font-size: 14px
	}
}
.p-webbtn .bottom:after {
	content: '';
	background: url(../images/ico-link.svg)no-repeat;
	width: 15px;
	height: 16px;
	background-size: cover;
	position: absolute;
	top: 54%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	right: 24px
}

.p-webbtn:hover .bottom {
	background: #F6AB02
}

.menuwrap {
	column-gap: 12px;
	margin-top: 24px
}

.menuicon {
	border: 1px solid var(--gn);
	width: 156px;
	height: 156px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	border-radius: 50%;
	background: #fff;
}

.menuicon .ico {
	margin-bottom: 13px
}

.menuicon .txt {
	text-align: center;
	line-height: 1.35;
}

@media screen and (max-width: 820px) {
	.menuwrap {
		column-gap: 1px;
		margin-top: 10px;
		justify-content: center;
	}

	.menuicon {
		width: 110px;
		height: 110px
	}

	.menuicon .ico {
		height: 23px;
		margin-bottom: 5px
	}

	.menuicon .ico img {
		width: auto;
		height: 100%;
	}

	.menuicon .txt {
		font-size: 12px
	}
}

.timetable {
	font-weight: 600;
	color: var(--br);
}

.timetable table {
	table-layout: fixed;
	margin-bottom: 12px;
}

.timetable th {
	width: 150px
}

.timetable td {
	vertical-align: middle;
	text-align: center;
}

.timetable thead th {
	background: #937963;
	color: #fff;
	font-size: 18px;
	padding: 15px;
	text-align: center;
	border-radius: 3px 0 0 3px;
	line-height: 1;
}

.timetable thead td {
	background: #ECE5DD;
}

.timetable thead td:last-child {
	border-radius: 0 3px 3px 0
}

.timetable tbody th {
	padding: 10px 0 18px 0;
	font-size: 18px;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #DDDDDD;
}

.timetable tbody th span {
	font-size: 13px
}

.timetable tbody td {
	border-bottom: 1px solid #DDDDDD;
}

.timetable .open {
	width: 15px;
	height: 15px;
	border: 2px solid var(--br);
	border-radius: 50%;
	display: inline-block;
}

.timetable .close {
	width: 20px;
	background: var(--br);
	height: 2px;
	transform: rotate(-45deg);
	display: inline-block;
	top: -7px;
	position: relative;
}

@media screen and (max-width: 820px) {
	.timetable th {
		width: 120px
	}

	.timetable thead th,
	.timetable tbody th {
		font-size: 14px
	}

	.timetable thead th {
		padding: 10px;
	}

	.timetable tbody th {
		padding: 10px 0 14px 0
	}

	.timetable tbody th span {
		font-size: 10px
	}

	.timetable .open {
		width: 10px;
		height: 10px;
		border: 1px solid var(--br)
	}

	.timetable .close {
		width: 14px;
		height: 1px;
		top: -5px;
	}
}
.p_t120{
	padding-top: clamp(60px, 42.759px + 4.598vw, 120px);
}
.p_t60{
	padding-top: clamp(40px, 34.253px + 1.533vw, 60px);
}
.p_b120{
	padding-bottom: clamp(60px, 42.759px + 4.598vw, 120px);;
}
.p_b60{
	padding-bottom: clamp(40px, 34.253px + 1.533vw, 60px);
}
/*-----------------------
header
-----------------------*/
.side_navbloc {
	position: fixed;
	top: 10px;
	right: -200px;
	z-index: 1001;
	transition: right 0.6s ease;
}

.side_navbloc.is-slidein {
	right: -2px;
}

.side_navbloc .btn {
	margin-bottom: 8px
}

.drawer.sp {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1000
}

.drawer .btn._menu {
	border-radius: 15px 0 0 15px;
	background: var(--br);
	height: 76px;
	width: 76px;
	flex-direction: column;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer
}
.drawer .btn._menu:hover{
	opacity: .8
}
.drawer.sp .btn._menu {
	border-radius: 8px 0 0 8px;
	height: 65px;
	width: 65px;
}

.drawer .btn._menu span {
	width: 20px;
	height: 3px;
	background: #fff;
	margin-bottom: 5px;
	border-radius: 3px;
	transition: all 0.3s ease;
}

.drawer .btn._menu span:last-child {
	margin-bottom: 0
}

/* is-open 時の変形 */
.js-drawer_nav.is-open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.js-drawer_nav.is-open span:nth-child(2) {
	opacity: 0;
}

.js-drawer_nav.is-open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.side_navbloc .btn._reservation a {
	background: #fff;
	border: 2px solid #F68D02;
	writing-mode: vertical-rl;
	text-orientation: upright;
	color: #F68D02;
	border-radius: 15px 0 0 15px;
	padding: 30px;
	width: 76px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
}
.side_navbloc .btn._reservation a:hover{
	background: #F68D02;
	color: #fff
}
.side_navbloc .btn._timeschedule {
	background: #fff;
	border: 2px solid var(--br);
	writing-mode: vertical-rl;
	text-orientation: upright;
	line-height: 1.3;
	border-radius: 15px 0 0 15px;
	padding: 30px;
	width: 76px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: .3s all
}
.side_navbloc .btn._timeschedule:hover{
	background: var(--br);
	color: #fff
}

/* オーバーレイ */
.screenparts {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(174 171 167 / 77%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 999;
	/* drawer_nav より下 */
}

.screenparts.is-visible {
	opacity: 1;
	visibility: visible;
}


.drawer_nav,
.drawer_timeschedule {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	pointer-events: none;
}

.drawer_nav {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-100%);
	transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	z-index: 1000;
	pointer-events: none;
	padding: 40px 5%
}

@media screen and (max-width: 820px) {
	.drawer_nav {
		width: calc(100% - 65px);
	}
}

.drawer_nav_inner {
	overflow-y: auto;
	height: 100%
}

.drawer_nav_sitelogo {
	width: min(260px, 80%);
	margin: 0 auto 30px
}

.drawer_navlist a {
	font-size: 18px;
	padding: 1em .5em;
	border-bottom: 1px solid var(--lgn1);
	display: block;
	font-weight: 500
}

@media screen and (max-width: 820px) {
	.drawer_navlist a {
		font-size: 14px;
	}
}

.drawer_navlist a:hover {
	color: var(--gn)
}

.drawer_navlist a:before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 11px;
	z-index: 1;
	transform: rotate(45deg) translateY(-50%);
	-webkit-transform: rotate(45deg) translateY(-50%);
	-ms-transform: rotate(45deg) translateY(-50%);
}

.drawer_navlist a:after {
	content: '';
	display: inline-block;
	width: 22px;
	height: 22px;
	background: var(--gn);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

/* 表示状態 */
.drawer_nav.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
	/* ← スライドイン！ */
}

.drawer_timeschedule {
	background: rgba(237, 237, 237, 0.77)
}

.drawer_nav.is-visible,
.drawer_timeschedule.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.drawer_timeschedule_in {
	width: min(1000px, 90%);
	background: #fff;
	border-radius: 15px;
	padding: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.l-header {
	margin: 16px auto 20px;
	position: relative;
	z-index: 3
}

@media screen and (max-width: 820px) {
	.l-header {
		margin: 3px auto 0
	}
}

.header_top {
	justify-content: space-between;
	margin-bottom: 10px;
	align-items: center;
}

.header_sitelogo {
	width: 270px;
}
@media screen and (max-width:1100px) {
	.header_sitelogo {
		width: 220px;
	}
}
@media screen and (max-width: 820px) {
	.header_sitelogo {
		width: 180px;
	}
}

.header_sitelogowrap .description {
	font-size: 11px
}
@media screen and (max-width: 1100px) {
	.header_sitelogowrap .description {
		font-size: 10px;
	}
}

.header_ctaparts {
	align-items: end;
	column-gap: 20px
}
@media screen and (max-width: 1100px) {
	.header_ctaparts {
		column-gap: 8px
	}
}
.subnavlist li {
	position: relative
}

.subnavlist li a {
	padding: 0 0.3em 0.5em
}
@media screen and (max-width: 1100px) {
	.subnavlist li a {
		font-size: 11px
	}
}
.subnavlist li:first-child a:before {
	content: '';
	width: 1px;
	height: 1em;
	background: #000;
	position: absolute;
	right: 0;
	top: 8px
}

.ctaparts_wrap {
	column-gap: 10px
}
@media screen and (max-width: 1100px) {
	.ctaparts_wrap {
	column-gap: 4px
}
}

.header_bottom {
	background: var(--gn);
	border: 1px solid #fff;
	border-radius: 15px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	padding: 0;
	align-items: center;
	justify-content: center;
	height: 92px;
	position: relative;
	z-index: 3
}
@media screen and (max-width: 1100px) {
.gnavlist{
padding: 10px 30px;
}
}
.gnavlist a {
	color: #fff;
	font-size: clamp(12px, 1.385px + 1.108vw, 20px);
	font-weight: 700;
	padding: 32px clamp(9px, -8.249px + 1.801vw, 22px);
	line-height: 1;
	position: relative
}
@media screen and (max-width: 1100px) {
	.gnavlist a {
		padding: 9px clamp(9px, -8.249px + 1.801vw, 22px)
	}
}
.gnavlist a:before {
	content: '';
	width: 14px;
	height: 14px;
	border-radius: 2px;
	background: #fff;
	position: relative;
	left: -10px
}
@media screen and (max-width: 1100px) {
	.gnavlist a:before {
	width: 10px;
	height: 10px;
}
}
.gnavlist .current-menu-item a:before,
.gnavlist a:hover:before {
	background: #FFEEB4;
}

.gnavlist a:hover {
	color: #FFEEB4;
}

.drower {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 120px;
	background: var(--sub);
	display: flex;
	cursor: pointer;
	transition: .3s;
	position: relative;
	z-index: 3
}

@media screen and (max-width: 1460px) {
	.drower {
		width: 85px;
		height: 85px;
	}
}

@media screen and (max-width: 820px) {
	.drower {
		width: 65px;
		height: 65px;
	}
}

.drower:hover {
	background: var(--gn);
}

.screen {
	display: none;
	opacity: .7;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: .3s;
	z-index: 1;
}


.drower span {
	display: block;
	width: 24px;
	height: 2px;
	border-radius: 3px;
	margin-bottom: 5px;
	background-color: #fff;
	transition: .3s;
}

.drower p {
	color: #001F65;
	font-weight: bold;
	font-size: 10px;
}

.open .drower {
	background: var(--main);
}

.open .drower span:nth-of-type(1) {
	transform: rotate(45deg) translate(6px, 6px);
}

.open .drower span:nth-of-type(2) {
	transform: scaleX(0);

	transform-origin: center;
}

.open .drower span:nth-of-type(3) {
	transform: rotate(-45deg) translate(4px, -4px);
}


.open .screen {
	display: block;
}

.l-nav {
	position: fixed;
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	width: 100%;
	min-width: auto;
	height: 100%;
	max-height: 100%;
	padding: 155px 20px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 2;
	top: 0;
	left: 0;
	background: #fff;
}

.open .l-nav {
	opacity: 1;
	visibility: visible;
}

@media screen and (max-width: 820px) {
	.l-nav {
		padding: 100px 3% 155px;
	}
}

/*-----------------------
main
-----------------------*/


/*-----------------------
kv
-----------------------*/
.t_kv {
	position: relative;
	background: linear-gradient(0deg, rgba(228, 239, 234, 1) 0%, rgba(252, 254, 253, 1) 100%);
}

.t_kv .t_kv_inner {
	align-items: center;
}

@media screen and (max-width: 1100px) {
	.t_kv .t_kv_inner {
		flex-direction: column;
		        width: min(1530px, 95%);
	}
}

.l-kv_img {
	width: calc(100% - 550px);
	margin-left: 30px;
	overflow: hidden;
	border-radius: 15px;
}

.t_kv_inner .txtarea {
	margin-top: 40px
}
.t_kv .timetable {
	width: 516px;
	position: absolute;
	bottom: clamp(20px, -876.000px + 70vw, 300px);
	right: 0;
	background: #fff;
	padding: 25px 40px;
	border-radius: 15px 0 0 15px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 1100px) {
	.l-kv_img {
		width: 100%;
		margin: 0 auto;
		border-radius: 8px;
		margin-top: -70px;
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 767px) {
	.l-kv_img {
/*
	width: 100vw;
		margin: 0 calc(50% - 50vw) 40px;
*/
		order: 1;
		position: relative
	}
}
@media screen and (max-width: 1100px) {
	.t_kv_inner .txtarea {
		order: 2;
		margin: 0 auto 65px
	}

	.t_kv_copy {
		width: 80%;
		margin: 0 auto 12px
	}
	.t_kv .timetable {
		position: inherit;
		order: 3;
border-radius: 8px;
	}
}
@media screen and (max-width: 820px) {
	.t_kv .timetable {
		width: 100%;
		position: inherit;
		padding: 25px 10px;
		
	}
	.l-kv_img {
		margin-top: 0
	}
}
.kv_slide .img {
	overflow: hidden;
	position: relative;
}

.kv_slide .img img {
	width: 100%;
	height: auto;
	transform: scale(1.2);
	/* 最初は拡大 */
	transition: transform 10s ease;
}

.kv_slide .img.is-animate img {
	transform: scale(1);
	/* 表示中はズームイン（元サイズに） */
}



/*-----------------------
お知らせ
-----------------------*/
.t_newslist {
	width: min(1000px, 90%);
	margin: 0 auto 42px
}

.t_newslist a {
	padding: 1em 0;
	border-bottom: 1px dashed var(--lgn1);
}

.t_newslist a .date {
	width: 17%
}

.t_newslist a .txt {
	width: 83%;
	padding-right: 20px
}

.t_newslist a:hover {
	color: var(--gn)
}

@media screen and (max-width: 820px) {
	.t-news {
		padding-top: 65px
	}
	.t_newslist{
		padding-top: 10px
	}
	.t_newslist a .date {
		width: 70px;
		font-size: 10px;
		        margin-top: 5px;
	}

	.t_newslist a .txt {
		width: calc(100% - 80px);
		padding-right: 0
	}
}

/*-----------------------
バナーエリア
-----------------------*/
.bnrarea {
	padding: 80px 0 110px
}

.bnrlist {
	width: min(1000px, 90%);
	margin: 0 auto;
	column-gap: 1rem;
	grid-row-gap: 1rem;
}

.bnrlist li {
	width: calc(50% - 0.9rem);
}

@media screen and (max-width: 820px) {
	.bnrarea {
		padding: 0
	}

	.bnrlist {
		column-gap: 0;
		grid-row-gap: 0;
		width: 100%
	}

	.bnr_type1 .img,
	.bnr_type1 .txt {
		width: 100%;
		border-radius: 0
	}

	.bnrlist li {
		width: 50%;
		border: 1px solid var(--base);
	}
/*
	.bnrlist li:nth-child(-n + 2){
		border-bottom: 1px solid var(--base);
	}
	.bnrlist li:nth-child(odd){
		border-right: 1px solid var(--base);
	}
*/

	.bnr_type1 {
		filter: none
	}

	.bnr_type1 .img img {
		border-radius: 0;
	}

	.bnr_type1 .txt .arrow_r_2 {
		right: 10px
	}
}

/*-----------------------
top Message
-----------------------*/
.t-message {
	text-align: center;
	position: relative;
	padding: 74px 0 0;
    overflow: hidden;
}

.t-message .secttl {
	position: relative;
	z-index: 1
}

.t-message .img {
	border-radius: 30px 10px;
	overflow: hidden;
	z-index: 0;
	opacity: .8;
	transition: .3s all
}

.t-message .img-right {
	margin-top: -150px
}

.message_img1 {
	width: min(260px, 100%);
	position: relative;
	right: 20px;
}

.message_img2 {
	width: max(355px, 100%);
}

.message_img3 {
	width: max(493px, 100%);
	position: relative;
	right: 60px;
	margin-left: -110px;
}

.three-column {
	display: grid;
	grid-template-columns: 1fr 60% 1fr;
	gap: 20px;
	/* 任意で余白 */
	align-items: start;
	max-width: 100%;
	margin: 0 auto;
	padding: 40px 20px;
}

.col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.img-right {
	gap: 120px
}

/*
.t-message .fade-target {
	opacity: 0;
	transition: opacity 1.2s ease, transform 1.2s ease;
}


.t-message .fade-in {
	opacity: 1;
}
.message_img1 {
	transition-delay: 0s;
}

.message_img2 {
	transition-delay: 0.4s;
}

.message_img3 {
	transition-delay: 0.8s;
}

.t-message .secttl {
	transition-delay: 1.2s;
}

.t-message .readarea {
	transition-delay: 1.6s;
}
*/

@media screen and (max-width: 1280px) {
	.t-message .img {
		opacity: .5;
	}
}

@media screen and (max-width: 959px) {
	.t-message .img {
		display: none
	}

	.three-column {
		display: flex;
		flex-direction: column;
		gap: 0;
		align-items: center;
		padding: 30px 5% 20px
	}

	.t-message .img-right {
		margin-top: 0;
	}

	.t-message .readarea {
		width: 100%;
		max-width: 100%;
		text-align: left;
		margin-bottom: 0
	}

	.t-message .btn_type1 {
		margin-bottom: 40px
	}
.t-message .readarea {
	transition-delay: 1.2s;
}

}

/*-----------------------
top diagnosis
-----------------------*/
.t-diagnosis {
	padding-top: 80px
}

@media screen and (max-width: 820px) {
	.t-diagnosis {
		padding: 120px 5% 65px
	}
}

.fukidashi {
	background: #fff;
	border-radius: 5px;
	color: var(--gn);
	font-size: 28px;
	text-align: center;
	display: inline-block;
	line-height: 1;
	padding: 15px 36px;
	position: absolute;
	top: -100px;
	left: 38%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

@media screen and (max-width: 820px) {
	.fukidashi {
		font-size: 16px
	}
}

.fukidashi:before,
.fukidashi:after {
	content: '';
	background: #fff;
	position: absolute;
	border-radius: 50%;
}

.fukidashi:before {
	width: 26px;
	height: 26px;
	bottom: -13px;
	left: 44px;
}

.fukidashi:after {
	width: 12px;
	height: 12px;
	bottom: -28px;
	left: 65px;
}

.t-diagnosis .box_type1 {
	width: min(1280px, 90%);
	margin: 0 auto 68px;
}

@media screen and (max-width: 820px) {
	.t-diagnosis .box_type1 {
		width: 100%;
		margin-bottom: 38px
	}
}

.diseaselist {
	column-gap: 8px;
	grid-row-gap: 8px;
	width: min(870px, 100%);
	margin: 0 auto;
}

.diseaselist li {
	width: calc(100% / 3 - 6px);
}

@media screen and (max-width: 820px) {
	.diseaselist li {
		width: calc(100% / 2 - 6px);
	}
}

.diseaselist li a {
	width: 100%;
	text-align: left;
	display: flex;
	align-items: center;
	height: 3.6em;
	line-height: 1.3
}

.diseaselist li .arrow_r_2:before {
	right: 21px
}

.diseaselist li .arrow_r_2:after {
	right: 11px
}

/*-----------------------
top 当院の特徴
-----------------------*/
.t-about {
	padding: 100px 0 70px
}

.featureslist {
	column-gap: 5%;
}

.featureslist li {
	width: calc(100% / 3 - 3.34%)
}

@media screen and (max-width: 820px) {
	.featureslist li {
		width: 100%;
		margin-bottom: 46px
	}
}

.t-about .box_type1 {
	width: min(1280px, 90%);
	margin: 0 auto 130px;
}

@media screen and (max-width: 820px) {
	.t-about .box_type1 {
		margin: 0 auto 65px;
		width: min(578px, 100%);
		border: none
	}
}

.featureslist .img {
	border-radius: 15px 15px 0 0;
	margin-bottom: 16px;
	overflow: hidden;
}

@media screen and (max-width: 820px) {
	.featureslist .img {
		border-radius: 8px 8px 0 0;
	}

	.featureslist .img img {
		aspect-ratio: 2.2 / 1;
		object-fit: cover;
	}
}

.featureslist .ttlwrap_type2 {
	font-size: clamp(16px, -7.600px + 2vw, 26px);
	margin-bottom: 16px
}

@media screen and (max-width: 820px) {
	.featureslist .ttlwrap_type2 {
		font-size: 18px
	}
}

.t-faq {
	margin-bottom: 110px
}

@media screen and (max-width: 820px) {
	.t-faq {
		margin-bottom: 0
	}
}

.accordion_list {
	width: min(1000px, 90%);
	margin: 0 auto 60px;
	list-style: none;
	padding: 0;
}

.accordion_list li {
	margin-bottom: 12px;
}

.accordion-header {
	background-color: var(--lgn2);
	padding: 20px 65px 20px 90px;
	transition: background 0.3s ease;
	cursor: pointer;
	position: relative;
	font-size: 16px;
	background-image: url(../images/ico-q.svg);
	background-repeat: no-repeat;
	background-size: 42px 42px;
	background-position: left 36px top 12px;
	font-size: 22px;
	font-weight: 500
}

@media screen and (max-width: 820px) {
	.accordion-header {
		padding: 20px 35px 20px 40px;
		position: relative;
		font-size: 16px;
		background-image: url(../images/ico-q.svg);
		background-repeat: no-repeat;
		background-size: 22px 22px;
		background-position: left 10px top 20px;
		font-size: 16px;
		font-weight: 500;
	}
}

.accordion-header::before,
.accordion-header::after {
	position: absolute;
	content: '';
	top: 1px;
	right: 20px;
	bottom: 0;
	width: 14px;
	height: 2px;
	margin: auto;
	background: var(--gn);
	border-radius: 3px
}

.accordion-header::after {
	transform: rotate(-90deg);
	transition: transform 0.3s;
}

.accordion-header.active::after {
	transform: rotate(0deg);
}

.accordion-content {
	display: none;
	background-color: #fff;
	padding: 20px 65px 20px 90px;
	position: relative;
	background-image: url(../images/ico-a.svg);
	background-repeat: no-repeat;
	background-size: 42px 42px;
	background-position: left 36px top 13px;
}

@media screen and (max-width: 820px) {
	.accordion-content {
		padding: 10px 16px 20px 40px;
		background-size: 22px 22px;
		background-position: left 10px top 12px;
	}
}
.accordion-content a{
	color: var(--gn);
	font-weight: 600;
	text-decoration: underline
}
.accordion-header:hover {
	opacity: .9
}

.t-faq .bnr_type1 {
	width: min(680px, 80%);
	margin: 0 auto
}

/*-----------------------
top 初診の方
-----------------------*/
.t-first {
	padding: 110px 0 300px;
	    clip-path: inset(0 0 0 0);
	position: relative
}
.t-first:before{
	content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background: url(../images/bg_img1.jpg)no-repeat;
    background-size: cover;
}
@media screen and (max-width: 820px) {
	.t-first {
		padding: 80px 5%
	}
}

.t-first .btn_type1 {
	margin-bottom: 65px
}

.t-first .box_type3 .ttl {
	font-size: 24px;
	padding-left: 34px;
	margin-bottom: 16px;
	font-weight: 500
}

.t-first .box_type3 .ttl._heart {
	color: #EF8660;
	background: url(../images/ico-heart.svg)no-repeat;
	background-size: 27px 23px;
	background-position: left top 5px
}

.t-first .box_type3 .ttl._body {
	color: #F98903;
	background: url(../images/ico-body.svg)no-repeat;
	background-size: 24px 30px;
	background-position: left top 5px;
	padding-top: 4px;
	padding-bottom: 4px;
}

@media screen and (max-width: 820px) {
	.t-first .box_type3 .ttl {
		font-size: 18px;
		padding-left: 23px
	}

	.t-first .box_type3 .ttl._heart {
		background-size: 19px 17px;
	}

	.t-first .box_type3 .ttl._body {
		background-size: 19px 24px;
	}
}

.t-first .ttl2 {
	margin-bottom: 58px
}

@media screen and (max-width: 820px) {
	.t-first .ttl2 {
		margin-bottom: 28px
	}
}

.symptomslist {
	gap: 4px;
	display: flex;
	flex-wrap: wrap;
}

.symptomslist li {
	background: #FCFCFC;
	border: 1px solid #E2E2E2;
	font-size: 18px;
	padding: 13px 1em;
	color: var(--br);
	border-radius: 3em;
	line-height: 1;
}

@media screen and (max-width: 820px) {
	.symptomslist li {
		font-size: 14px
	}
}

/*-----------------------
top  アクセス
-----------------------*/
.t-access > .line {
	margin-top: -14vw;
	position: relative;
}

.t-access .secttl {
	margin-bottom: 40px
}

.t-access .img {
	margin-bottom: 16px
}

.t-access .txt {
	margin-bottom: 70px
}

.t-access .btn_type1 {
	margin-bottom: 70px
}

.map {
	position: relative;
}

.map._main {
	margin-bottom: 70px
}

.map .icon {
	position: absolute;
	top: -80px;
	right: 0;
}
@media screen and (max-width: 820px) {
	.map .icon {
		width: 120px
	}
}
.map iframe {
	width: 100%;
}

.t-parking {
	width: min(1000px, 100%);
	margin: 0 auto 90px
}

.t-parking .ttlwrap {
	text-align: center;
	margin-bottom: 40px
}

.parkinglist {
	column-gap: 30px;
	margin-bottom: 46px
}

@media screen and (max-width: 820px) {
	.parkinglist {
		margin-bottom: 0px
	}
}

.parkinglist li {
	width: calc(100% / 3 - 20px);
	font-size: 14px;
	line-height: 1.46
}

@media screen and (max-width: 820px) {
	.parkinglist li {
		width: 100%;
		margin-bottom: 40px
	}
}

.parkinglist li .ttl {
	font-size: 16px;
	margin-bottom: .65em;
	font-weight: 500
}

@media screen and (max-width: 820px) {
	.parkinglist li .ttl {
		font-size: 14px;
	}
}

.parkinglist li p {
	margin-bottom: .65em
}

.map_pin {
	padding-left: 18px;
	position: relative;
	color: #326C69;
	text-decoration: underline;
	font-weight: 500
}

.map_pin:before {
	content: '';
	background: url(../images/ico-pin-gn.svg) no-repeat;
	width: 14px;
	height: 20px;
	background-size: cover;
	position: absolute;
	top: 3px;
	left: 0;
}

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

	.map_pin {
		position: relative;
		color: #326C69;
		text-decoration: none;
		font-weight: 500;
		padding: 1em 36px;
		border: 1px solid var(--gn);
		width: 100%;
		text-align: center;
		display: block;
		border-radius: 3em;
	}

	.map_pin:before {
		content: '';
		background: url(../images/ico-pin-gn.svg) no-repeat;
		width: 14px;
		height: 20px;
		background-size: cover;
		position: absolute;
		top: 13px;
		left: 16px;
	}
}

.t-parking .note {
	text-align: center;
	font-size: 15px;
	font-weight: 500
}

@media screen and (max-width: 820px) {
	.t-parking .note {
		text-align: left;
		font-size: 14px;
	}
}

#consultationhours {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 232px
}

/*-----------------------
top  院長ブログ
-----------------------*/
.t-blog{
	padding-bottom: 14vw
}
@media screen and (max-width: 1100px) {
	.bg_type1.t-blog {
		padding: 80px 16px 14vw;
		border-radius: 16px;
	}
}

/*-----------------------
footer
-----------------------*/
@media screen and (max-width: 820px) {
	footer{
		padding-bottom: 60px
	}
}
.footer_contents {
	justify-content: space-between;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--gn);
	margin-bottom: 30px
}

@media screen and (max-width: 820px) {
	.footer_contents {
		padding-top: 80px
	}
}

.footer_left {
	width: calc(100% - 375px);
	column-gap: 70px
}
@media screen and (max-width: 1100px) {
	.footer_left {
		flex-direction: column;
	}
}
@media screen and (max-width: 820px) {
	.footer_left {
		width: 100%;
	}
}

.footer_right {
	width: 375px
}

@media screen and (max-width: 820px) {
	.footer_right {
		width: 100%
	}
}
.footer_right .footer_nav {
	column-gap: 10px;
}

.footer_right .footer_nav li {
	width: calc(100% / 2 - 8px);
}

.footer_right .footer_nav a {
	padding: 0 16px 10px 0;
	position: relative;
	width: 100%
}

@media screen and (max-width: 820px) {
	.footer_right .footer_nav a {
		font-size: 12px
	}
}

.footer_right .footer_nav a:before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 10px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	position: absolute;
	top: calc(50% - 7px);
	right: 0;
}
.footer_left .footer_logoarea {
	width: 300px
}

@media screen and (max-width: 820px) {
	.footer_left .footer_logoarea {
		width: 280px;
	}
}

.footer_left .footer_logo {
	margin-bottom: 26px
}
@media screen and (max-width: 820px) {
	.footer_left .footer_logo {
	width: 220px
}
}

.footer_left .footer_addr {
	width: calc(100% - 370px)
}
@media screen and (max-width: 1100px) {
	.footer_left .footer_addr {
		width: 100%;
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 820px) {
	.footer_left .footer_addr {
		font-size: 12px
	}

	.footer_left .footer_addr .map_pin {
		margin-top: 20px;
		width: 100%
	}
}

.footer_left .map_pin:before {
	top: 7px
}

@media screen and (max-width: 820px) {
	.footer_left .map_pin:before {
	top: 14px
}
}

.footer_link {
	font-size: 13px;
}
.footer_phone{
	margin-bottom: 10px
}

.copylight {
	text-align: right;
	font-size: 10px;
	margin-bottom: 30px
}

