@charset "UTF-8";

:root {
	--font-jp: "FOT-筑紫明朝 Pr6 R", serif;
	--color-black: #03141C;
	--color-gold: #D6C194;
	--color-green: #0E765E;
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
	font-size: 100%;
}

body {
	margin: 0;
	padding: 0;
	line-height: 1;
}

div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
sub,
sup,
var,
b,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
mark,
audio,
video,
a {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
	font: inherit;
}

span,
small,
em,
time,
i {
	font-style: normal;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

a {
	color: inherit;
	text-decoration: none;
	border: medium;
}

a:-webkit-any-link:focus-visible {
	outline-offset: 1px;
}

*:focus-visible {
	outline: -webkit-focus-ring-color auto 1px;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

legend {
	color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.8em;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

li {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

input,
select {
	vertical-align: middle;
}

abbr[title],
dfn[title] {
	cursor: help;
}

del {
	text-decoration: line-through;
}

ins {
	font-style: oblique;
	text-decoration: none;
}

mark {
	background: transparent;
	font-style: normal;
}

img {
	vertical-align: top;
}

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

th {
	font-weight: normal;
	text-align: left;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
}

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

::selection {
	background: #d4dcd6;
}

img,
video {
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
}

html {
	font-size: 62.5%;
	/* 16px * 62.5% = 10px */
	scroll-behavior: smooth;
}

body,
html {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
	color: #333;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.1em;
	-webkit-text-size-adjust: 100%;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
	font-size: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-jp);
	letter-spacing: 0.15em;
	color: var(--color-black);
}

th,
dt {
	font-family: var(--font-jp);
}

.link {
	text-decoration: underline;
}

@media (any-hover:hover) {
	.link:hover {
		text-decoration: none;
	}
}

.no-link {
	pointer-events: none;
}

a[href^=tel] {
	cursor: default;
}

:target {
	scroll-margin-top: 150px;
}

@media (max-width: 800px) {
	:target {
		scroll-margin-top: 60px;
	}
}

.container {
	margin: 0 auto;
	max-width: 1024px;
	width: 90%;
}

.container.wide {
	max-width: 1200px;
}

.container.x-wide {
	max-width: 1400px;
}

.container.narrow {
	max-width: 800px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
	position: fixed;
	width: 100%;
	z-index: 100;
}

/*------------
Header02
--------------*/
.header-layout02 {
	background-color: #fff;
	width: 100%;
}

.header-layout02 .h-utility {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 40px 0;
}

.header-layout02 .tel {
	font-size: 3.2rem;
}

.header-layout02 .h-contact {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	grid-gap: 30px;
	margin-bottom: 13px;
}

.header-layout02 .h-time {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 70px 10px 1fr;
	grid-template-columns: 70px 1fr;
	grid-gap: 5px 10px;
	font-size: 13px;
}

.header-layout02 .h-time dt {
	border: 1px solid #000;
	text-align: center;
	font-size: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header-layout02 .btn-icon {
	height: 50px;
	min-width: 150px;
	font-size: 14px;
}

@media (max-width: 1024px) {
	.header-layout02 .h-utility {
		justify-content: flex-start;
		padding: 12px 15px;
	}

	.header-layout02 .h-utility .h-logo {
		width: 260px;
	}

	.header-layout02 .h-contact {
		display: none;
	}

	.header-layout02 .gnavi {
		display: none;
	}
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi {
	background: var(--color-black);
}

.gnavi-list {
	display: flex;
	justify-content: center;
	width: 90%;
	margin-inline: auto;
	max-width: 1200px;
}

.gnavi-list>li {
	width: 16.6666666667%;
	border-left: 1px solid #A5AAAE;
}

.gnavi-list>li:last-of-type {
	border-right: 1px solid #A5AAAE;
}

.gnavi-list>li>a {
	display: block;
	text-align: center;
	font-family: var(--font-jp);
	color: #fff;
	padding: 6px 0 8px;
	font-size: 2rem;
	transition: opacity 0.3s;
}

@media (any-hover:hover) {

	.gnavi-list>li>a:hover {
		background-color: #42473f;
	}
}

.gnavi-list>li>span {
	display: block;
	text-align: center;
	font-family: var(--font-jp);
	color: #fff;
	padding: 6px 0 8px;
	font-size: 2rem;
	transition: opacity 0.3s;
}


/*dropdown*/
.dropdown {
	position: relative;
}


.dropdown.is-open .sub-menu {
	pointer-events: auto;
	opacity: 1;
}

.dropdown .sub-menu {
	display: -ms-grid;
	display: grid;
	grid-gap: 5px;
	pointer-events: none;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
	padding: 20px;
	font-family: var(--font-jp);
	position: absolute;
	top: 40px;
	right: 50%;
	width: -webkit-max-content;
	width: max-content;
	min-width: 150px;
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
	transition: opacity 0.3s;
	opacity: 0;
	z-index: 5;
}

.dropdown .sub-menu::before {
	content: "";
	display: block;
	position: absolute;
	top: -16px;
	left: 0;
	width: 100%;
	height: 16px;
}

.dropdown:last-child .sub-menu {
	right: 0;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.dropdown .sub-menu a:hover {
	text-decoration: underline;
}

/*drawer*/
.gnavi-drawer {
	pointer-events: none;
	background-color: #f5f5f5;
	position: fixed;
	inset: 0;
	overflow: hidden;
	opacity: 0;
	transition: opacity 0.5s;
	will-change: opacity;
}

.gnavi-drawer.is-open {
	opacity: 1;
	pointer-events: all;
}

.gnavi-drawer-container {
	display: -ms-grid;
	display: grid;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

.gnavi-drawer-wrapper {
	display: flex;
	flex-direction: row-reverse;
	height: 100%;
}

.gnavi-drawer-right-area {
	width: 50%;
	padding: 100px 5%;
	overflow: auto;
}

.gnavi-drawer-links {
	display: -ms-grid;
	display: grid;
	grid-gap: 30px;
	font-family: var(--font-jp);
}

.gnavi-drawer-links>li {
	font-size: 16px;
}

.gnavi-drawer-links>li>a {
	text-decoration: underline;
}

@media (any-hover:hover) {
	.gnavi-drawer-links>li>a:hover {
		text-decoration: none;
	}
}

.gnavi-drawer-links .sub-menu {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 20px 1fr 20px 1fr;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 5px 20px;
	margin-top: 15px;
	font-size: 14px;
}

@media (any-hover:hover) {
	.gnavi-drawer-links .sub-menu>li>a:hover {
		text-decoration: underline;
	}
}

.gnavi-drawer-left-area {
	background: url(../images/share/gnavi-drawer_bg.jpg) no-repeat center/cover;
	width: 50%;
	height: 100%;
	padding: 0 0 0 5%;
	display: flex;
	position: fixed;
	inset: 0;
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
	margin-top: 130px;
	position: relative;
}

.hero .splide__slide img {
	width: 100%;
	height: 80vh;
	-o-object-fit: cover;
	object-fit: cover;
}

.hero .splide__pagination {
	justify-content: flex-end;
	right: 10px;
}

.hero .time-table {
    min-width: 450px;
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: 1;
}

.hero-catch {
	position: absolute;
	bottom: 10%;
	left: 5%;
	color: #fff;
	z-index: 5;
}

.hero-catch .ttl-en {
	line-height: 1.3;
	font-family: "Cardo", serif;
	font-size: min(9.2rem, 5vw);
	margin-bottom: 30px;
}

.hero-catch .ttl-jp {
	line-height: 1.9;
	font-family: var(--font-jp);
	font-size: min(3.8rem, 2vw);
}

@media (max-width: 800px) {
	.hero {
		margin-top: 53px;
	}

	.hero .splide__slide img {
		height: 50vh;
	}

	.hero .splide__pagination {
		justify-content: flex-end;
		right: 10px;
	}

	.hero .time-table {
		min-width: 0;
		position: initial;
		margin: 20px 20px 50px;
	}

	.hero .time-table-head {
		color: initial;
		border-bottom: 1px solid #A5AAAE;
	}

	.hero .time-table-body {
		color: initial;
		border-bottom: 1px solid #A5AAAE;
	}

	.hero .time-table-body .item:first-child {
		color: initial;
	}

	.hero-catch {
		bottom: auto;
		top: 34vw;
		left: 8%;
	}

	.hero-catch .ttl-en {
		font-size: 3.6rem;
		margin-bottom: 20px;
	}

	.hero-catch .ttl-jp {
		font-size: 1.6rem;
	}
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
	font-size: 2.8rem;
	margin-bottom: 50px;
	color: #fff;
	text-align: center;
}

.t-ttl::before {
	content: attr(data-en);
	display: block;
	color: var(--color-gold);
	font-family: "Cardo", serif;
	font-size: 8.2rem;
	margin-bottom: 20px;
}

@media (max-width: 800px) {
	.t-ttl {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.t-ttl::before {
		font-size: 4rem;
		margin-bottom: 20px;
	}
}

/*------------
Block
--------------*/
.sec01 {
	background: var(--color-black);
	color: #fff;
	padding: 100px 0;
}

.sec02 {
	background: var(--color-black);
	padding: 0 0 100px;
}

.sec02-layout {
	background: #fff;
	text-align: center;
	padding: 35px 90px;
}

.sec02-layout .l-ttl {
	font-size: 2.8rem;
	padding-bottom: 10px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--color-black);
}

.sec02-layout .l-txt {
	margin-bottom: 25px;
}

.l-btn-list {
	display: flex;
	align-items: center;
	justify-content: center;
}

.l-btn-list li+li {
	margin-left: 30px;
}

.sec03 {
	overflow: hidden;
	background: var(--color-black);
}

.sec03-layout {
	position: relative;
	padding: 90px 100px 90px 0;
	display: flex;
	flex-direction: row-reverse;
	color: #fff;
	z-index: 1;
}

.sec03-layout::before {
	position: absolute;
	inset: 0 -1999px 0 -50px;
	background: url(../images/sec03_bg01.jpg) center center;
	display: inline-block;
	content: "";
	z-index: -1;
}

.sec03-layout .l-desc {
	padding-right: 80px;
}

.sec03-layout .l-desc .l-ttl {
	font-size: 2.8rem;
	margin-bottom: 50px;
	color: #fff;
}

.sec03-layout .l-desc .l-ttl::before {
	content: attr(data-en);
	display: block;
	color: var(--color-gold);
	font-family: "Cardo", serif;
	font-size: 8.2rem;
	margin-bottom: 20px;
}

.sec03-layout .l-desc .l-txt {
	margin-bottom: 50px;
}

.sec04-05-wrap {
	background: url(../images/sec04-05_bg01.jpg) center center;
}

.sec04-01 {
	background: var(--color-black);
	padding: 120px 0 20px;
}

.sec04-layout01 {
	display: flex;
	align-items: flex-start;
}

.sec04-layout01 .l-img {
	width: 540px;
}

.sec04-layout01 .l-desc {
	flex: 1;
	background: #fff;
	padding: 45px 60px 50px 160px;
	margin-top: 45px;
	margin-left: -85px;
}

.sec04-layout01 .l-desc .l-ttl {
	font-size: 2.5rem;
	margin-bottom: 25px;
}

.sec04-layout01 .l-desc .l-txt {
	margin-bottom: 30px;
}

.sec04-02 {
	padding-top: 50px;
	padding-bottom: 120px;
	background: transparent linear-gradient(180deg, var(--color-black) 0%, rgba(255, 255, 255, 0) 65%) 0% 0% no-repeat padding-box;
}

.sec04-layout02 {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
}

.sec04-layout02 .l-img {
	width: 540px;
}

.sec04-layout02 .l-desc {
	flex: 1;
	background: #fff;
	padding: 45px 160px 50px 60px;
	margin-top: 80px;
	margin-right: -85px;
}

.sec04-layout02 .l-desc .l-ttl {
	font-size: 2.5rem;
	margin-bottom: 25px;
}

.sec04-layout02 .l-desc .l-txt {
	margin-bottom: 30px;
}

.sec05 {
	padding-bottom: 90px;
}

.sec05 .t-ttl {
	color: initial;
}

.sec05-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 20px;
	margin-bottom: 65px;
}

.sec05-list li {
	width: calc(25% - 15px);
}

.sec05-list li a {
	position: relative;
	background: #E5DCCC;
	border: 1px solid #E5DCCC;
	display: block;
	padding: 20px;
	min-height: 290px;
	    height: 100%;
	transition: background-color 0.3s;
}

.sec05-list li a::before {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: inline-block;
	content: "";
	background: var(--color-gold);
	-webkit-mask: url(../images/share/ico_btn_right.svg) no-repeat center center/contain;
	width: 32px;
	height: 10px;
}

@media (any-hover:hover) {

	.sec05-list li a:focus-visible,
	.sec05-list li a:hover {
		background-color: #f6f3ee;
	}
}

.sec05-list li .list-ttl {
	position: relative;
	padding-left: 90px;
	margin-bottom: 25px;
	line-height: 1.4;
}

.sec05-list li .list-ttl img {
	position: absolute;
	top: 0;
	left: 0;
}

.sec05-list li .list-ttl .jp {
	padding-top: 10px;
	display: block;
	font-size: 1.8rem;
}

.sec05-list li .list-ttl .en {
	font-size: 1.3rem;
	color: var(--color-gold);
	font-family: "Cardo", serif;
}

.sec05-list li .list-txt {
	font-size: 1.3rem;
}

.sec05-layout {
	max-width: 1024px;
	margin-inline: auto;
	color: #fff;
}

.sec05-layout a {
	position: relative;
	background: url(../images/sec05_bg01.jpg) no-repeat center center/cover;
	display: flex;
	padding: 45px 55px;
}

.sec05-layout a::after {
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	transition: background-color 0.3s;
}

.sec05-layout a::before {
	position: absolute;
	bottom: 30px;
	right: 20px;
	display: inline-block;
	content: "";
	background: url(../images/share/ico_btn_right.svg) no-repeat center center/contain;
	width: 30px;
	height: 16px;
	overflow: hidden;
}

@media (any-hover:hover) {

	.sec05-layout a:focus-visible::after,
	.sec05-layout a:hover::after {
		background-color: rgba(255, 255, 255, .1);
	}
}

.sec05-layout .l-ttl {
	font-size: 2.8rem;
	margin-right: 50px;
	color: #fff;
}

.sec05-layout .l-ttl::after {
	line-height: 1.6;
	content: attr(data-en);
	display: block;
	font-family: "Cardo", serif;
	font-size: 1.6rem;
}

.sec05-layout .l-txt {
	flex: 1;
}

.sec06 {
	padding: 80px 0;
	background: url(../images/sec06_bg01.jpg) center center;
	color: #fff;
}

.sec06-list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 20px 1fr 20px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
}

.sec06-list li a {
	position: relative;
	background: #fff;
	color: initial;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 15px 20px;
	min-height: 130px;
	transition: opacity 0.3s;
}

.sec06-list li a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #21BE78;
	transform: scaleX(0);
	transform-origin: right top;
	transition: transform .2s ease;
}

@media (any-hover:hover) {

	.sec06-list li a:focus-visible::before,
	.sec06-list li a:hover::before {
		transform-origin: left top;
		transform: scaleX(1);
	}
}

.sec06-list li a::after {
	border-color: #21BE78;
}


.sec06-list li a .list-ttl {
	font-size: 2.4rem;
}

.sec06-list li a .btn::after {
	display: inline-block;
	content: "";
	background: var(--color-gold);
	-webkit-mask: url(../images/share/ico_btn_right.svg) no-repeat center center/contain;
	width: 20px;
	height: 5px;
	margin-left: 10px;
	-webkit-transform: translateY(-4px);
	transform: translateY(-4px);
}

.sec06-list li a img {
	position: absolute;
	top: 50%;
	right: 30px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.sec-map {
	margin-bottom: -10px;
}

@media (max-width: 800px) {
	.sec01 {
		padding: 60px 0;
	}

	.sec02 {
		padding: 0 0 60px;
	}

	.sec02-layout {
		padding: 30px 20px;
	}

	.sec02-layout .l-ttl {
		font-size: 1.9rem;
		padding-bottom: 5px;
		margin-bottom: 25px;
	}

	.sec02-layout .l-txt {
		text-align: left;
		margin-bottom: 20px;
	}

	.l-btn-list {
		display: block;
	}

	.l-btn-list li+li {
		margin-left: 0;
		margin-top: 10px;
	}

	.sec03-layout {
		padding: 60px 0;
		flex-direction: column-reverse;
	}

	.sec03-layout::before {
		inset: 0 -50px;
	}

	.sec03-layout .l-desc {
		padding-right: 0;
	}

	.sec03-layout .l-desc .l-ttl {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	.sec03-layout .l-desc .l-ttl::before {
		font-size: 4rem;
		margin-bottom: 20px;
	}

	.sec03-layout .l-desc .l-txt {
		margin-bottom: 40px;
	}

	.sec03-layout .l-img {
		margin-top: 30px;
		text-align: center;
	}

	.sec03-layout .l-img img {
		width: 50%;
	}

	.sec04-01 {
		padding: 60px 0 20px;
	}

	.sec04-layout01 {
		display: block;
	}

	.sec04-layout01 .l-img {
		width: 100%;
	}

	.sec04-layout01 .l-desc {
		padding: 25px;
		margin-top: 30px;
		margin-left: 0;
	}

	.sec04-layout01 .l-desc .l-ttl {
		font-size: 2rem;
		margin-bottom: 20px;
	}

	.sec04-layout01 .l-desc .l-txt {
		margin-bottom: 25px;
	}

	.sec04-02 {
		padding-top: 40px;
		padding-bottom: 60px;
	}

	.sec04-layout02 {
		display: block;
	}

	.sec04-layout02 .l-img {
		width: 100%;
	}

	.sec04-layout02 .l-img img {
		width: 100%;
	}

	.sec04-layout02 .l-desc {
		padding: 25px;
		margin-top: 30px;
		margin: 0;
		margin-top: 30px;
	}

	.sec04-layout02 .l-desc .l-ttl {
		font-size: 2rem;
		margin-bottom: 20px;
	}

	.sec04-layout02 .l-desc .l-txt {
		margin-bottom: 0;
	}

	.sec05 {
		padding-bottom: 60px;
	}

	.sec05 .t-ttl {
		color: initial;
	}

	.sec05-list {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1, 1fr);
		margin-bottom: 40px;
	}

	.sec05-list li {
		width: 100%;
	}

	.sec05-list li a {
		padding: 20px 20px 40px;
		min-height: auto;
	}

	.sec05-list li .list-ttl {
		padding-left: 65px;
	}

	.sec05-list li .list-ttl img {
		width: 50px;
	}

	.sec05-list li .list-ttl .jp {
		padding-top: 4px;
		font-size: 1.7rem;
	}

	.sec05-list li .list-ttl .en {
		font-size: 1.1rem;
	}

	.sec05-layout {
		max-width: auto;
	}

	.sec05-layout a {
		position: relative;
		display: block;
		padding: 25px 25px 65px;
	}

	.sec05-layout .l-ttl {
		font-size: 2.2rem;
		margin-right: 0;
		margin-bottom: 25px;
	}

	.sec05-layout .l-ttl::after {
		font-size: 1.4rem;
	}

	.sec06 {
		padding: 60px 0;
	}

	.sec06-list {
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1, 1fr);
	}

	.sec06-list li a .list-ttl {
		font-size: 2.2rem;
	}

	.sec-map iframe {
		height: 250px;
	}
}

/*------------
Post
--------------*/
.top-post-layout01 {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 200px 70px 1fr;
	grid-template-columns: 200px 1fr;
	grid-gap: 70px;
	min-height: 170px;
	position: relative;
}

.top-post-layout01 .l-ttl {
	font-size: 2.8rem;
	margin-bottom: 15px;
	color: #fff;
}

.top-post-layout01 .l-ttl::after {
	margin-top: 10px;
	content: attr(data-en);
	display: block;
	font-size: 1.6rem;
	line-height: 1;
}

.top-post-layout01 .l-btn {
	position: absolute;
	bottom: 0;
	left: 0;
}

.top-post-layout01 .l-btn .btn-more {
	background: none;
	border: 1px solid #fff;
	color: #fff;
	min-width: 160px;
	transition: background-color .3s, color .3s;
}

@media (any-hover:hover) {

	.top-post-layout01 .l-btn .btn-more:focus-visible,
	.top-post-layout01 .l-btn .btn-more:hover {
		background-color: #FFF;
		color: var(--color-black);
	}
}

.list-top-blog {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	grid-gap: 15px;
}

.list-top-blog .list-img {
	border: 1px solid #eaeaea;
	margin-bottom: 20px;
	overflow: hidden;
}

.list-top-blog .list-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 165px;
	transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.list-top-blog time {
	color: #aaa;
	display: block;
	font-size: 1.2rem;
}

.list-top-blog .list-ttl {
	display: inline-block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-bottom: 10px;
}

.list-top-blog .category {
	display: inline-block;
	background-color: #333;
	color: #fff;
	font-size: 11px;
	padding: 0 5px;
	margin-right: 5px;
}

.list-top-blog a {
	display: block;
	height: 100%;
}

@media (any-hover:hover) {

	.list-top-blog a:focus-visible .list-img img,
	.list-top-blog a:hover .list-img img {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
}

.list-top-news li+li {
	margin-top: 30px;
}

.list-top-news>li {
	display: flex;
	padding: 0;
}

.list-top-news a {
	background-image: linear-gradient(#FFF, #FFF);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 0 1px;
	transition: background-size 0.3s;
}

@media (any-hover:hover) {

	.list-top-news a:focus-visible,
	.list-top-news a:hover {
		background-position: bottom left;
		background-size: 100% 1px;
	}
}

.list-top-news time {
	display: inline-block;
	font-family: "Cardo", serif;
	font-size: 1.6rem;
	margin-right: 25px;
	white-space: nowrap;
}

.list-top-news .ttl {
	color: #FFF;
	display: inline-block;
	display: -webkit-box;
	font-size: 1.6rem;
	font-family: var(--font-jp);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	font-family: var(--font-jp);
}

.list-top-case {
	border-top: 1px solid #dfdfdf;
}

.list-top-case a {
	display: block;
	border-bottom: 1px solid #dfdfdf;
	padding: 20px 0;
}

@media (any-hover:hover) {
	.list-top-case a:hover .ttl {
		text-decoration: underline;
	}
}

.list-top-case .list-data {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 5px;
}

.list-top-case time {
	display: inline-block;
	color: #888;
	margin-right: 15px;
}

.list-top-case .category {
	display: inline-block;
	background-color: #333;
	color: #fff;
	font-size: 11px;
	padding: 0 5px;
	margin-right: 5px;
}

.list-top-case .ttl {
	display: inline-block;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	font-family: var(--font-jp);
}

@media (max-width: 800px) {
	.top-post-layout01 {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		grid-gap: 30px;
		min-height: 0;
	}

	.top-post-layout01 .l-ttl {
		font-size: 2.2rem;
		margin-bottom: 0;
	}

	.top-post-layout01 .l-btn {
		position: static;
		text-align: center;
	}

	.list-top-blog {
		display: flex;
		grid-gap: 0;
		flex-wrap: nowrap;
		margin: 0 -5vw 0 0;
		-webkit-overflow-scrolling: touch;
		width: calc(100% + 5vw);
		overflow-x: auto;
	}

	.list-top-blog li {
		flex: 0 0 240px;
		margin: 0 5% 0 0;
		max-width: 100%;
	}

	.list-top-news li+li {
		margin-top: 20px;
	}

	.list-top-news a {
		display: block;
		line-height: 1.5;
		padding: 0;
	}

	.list-top-news time {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}

	.list-top-news .ttl {
		-webkit-line-clamp: 2;
	}

	.list-top-case a {
		display: block;
		line-height: 1.5;
		padding: 10px 0;
	}

	.list-top-case time {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}

	.list-top-case .ttl {
		-webkit-line-clamp: 2;
	}
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
	margin-top: 130px;
	background: url(../images/page-header/u-ttl-bg.jpg) no-repeat center center/cover;
	color: #fff;
	padding: 80px 0;
	height: 360px;
	display: flex;
	align-items: center;
}

.page-ttl .title {
	font-family: var(--font-jp);
	color: #fff;
	width: 90%;
	max-width: 1200px;
	margin-inline: auto;
	font-size: 2.4rem;
	line-height: 1;
}

.page-ttl .title::before {
	content: attr(data-en);
	text-transform: capitalize;
	display: block;
	color: var(--color-gold);
	font-family: "Cardo", serif;
	font-size: 7.6rem;
	margin-bottom: 20px;
}

.page-ttl[data-en="doctor"] {
	background: url(../images/page-header/doctor.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="beginner"] {
	background: url(../images/page-header/beginner.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="internal"] {
	background: url(../images/page-header/internal.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="surgery"] {
	background: url(../images/page-header/surgery.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="dermatology"] {
	background: url(../images/page-header/dermatology.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="dentistry"] {
	background: url(../images/page-header/dentistry.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="vaccination"] {
	background: url(../images/page-header/vaccination.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="operation"] {
	background: url(../images/page-header/operation.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="pethotel"] {
	background: url(../images/page-header/pethotel.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="recruit"] {
	background: url(../images/page-header/recruit.jpg) no-repeat center center/cover;
}

.page-ttl[data-en="sickness"] {
	background: url(../images/page-header/sickness.jpg) no-repeat center center/cover;
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
	display: grid;
	padding: 0 5%;
	grid-template-columns: 220px 1fr;
	justify-content: space-between;
	margin: 0 auto;
}

.main-contents {
	padding: 0 70px;
	max-width: 900px;
	margin: 0 auto;
}


.side-contents-wrapper {
	position: sticky;
	top: 110px;
}

.side-contents-ttl {
	border-bottom: 1px solid #ddd;
	font-family: var(--font-jp);
	font-size: 15px;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.side-area-item+.side-area-item {
	margin-top: 30px;
}

.side-area-item-ttl {
	font-size: 13px;
	margin-bottom: 7px;
}

.side-area-links>li {
	position: relative;
	font-size: 14px;
}


.side-list {
	margin-top: 5px;
	padding-left: 15px;
}

summary::marker,
summary::-webkit-details-marker {
	/* display: none; */
}


.side-list>li {
	position: relative;
	font-size: 14px;
	padding-left: 8px;
}

.side-list>li::before {
	content: "-";
	position: absolute;
	top: 0;
	left: 0;

}

.side-area-links li+li {
	margin-top: 5px;
}

.side-area-links a {
	display: inline-block;
}

@media (any-hover:hover) {
	.side-area-links a:hover {
		text-decoration: underline;
	}
}

@media (max-width: 800px) {
	.sidebar-layout {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		grid-template-columns: 1fr;
		padding: 0 5vw 50px;
		width: 100%;
	}

	.sidebar-layout .tall+.tall {
		margin-top: 50px;
	}

	.sidebar-layout.sp-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.sidebar-layout.sp-reverse .side-contents {
		margin: 0 0 50px;
	}

	.main-contents {
		order: 1;
		width: 100%;
		padding: 0;
	}

	.side-contents {
		order: 2;
		width: 100%;
		margin-top: 50px;
	}

	.side-contents-wrapper {
		position: sticky;
		top: 20px;
	}

	.side-contents-ttl {
		font-size: 15px;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}

	.side-area-item+.side-area-item {
		margin-top: 30px;
	}
}


.breadcrumb {
	position: relative;
	z-index: 1;
}

.breadcrumb ul {
	font-size: 1.4rem;
	padding: 5px 5vw;
}

.breadcrumb ul li {
	display: inline;
}

.breadcrumb ul li+li:before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: 0 12px 0 3px;
	vertical-align: 1px;
}

.u-contents {
	padding: 150px 0;
	/*診療時間*/
}

.u-contents p+p {
	margin-top: 1.5em;
}

.u-contents .time-table {
	border: 1px solid #DFDFDF;
	background: #fff;
}

.u-contents .time-table-head,
.u-contents .time-table-body {
	grid-template-columns: 140px repeat(8, 1fr) ;
}

.u-contents .time-table-head {
	background-color: var(--color-black);
}

.u-contents .time-table-body {
	border-top: 1px solid #DFDFDF;
	color: var(--color-black);
}

.u-contents .time-table-body .item:first-child {
	background-color: #E6E8E9;
	color: #392E18;
}

@media (max-width: 800px) {
	.page-ttl {
		margin-top: 53px;
		padding: 30px 0;
		height: 220px;
	}

	.page-ttl h1 {
		font-size: 1.7rem;
	}

	.page-ttl h1::before {
		font-size: 5rem;
		margin-bottom: 15px;
	}

	.u-contents {
		padding: 60px 0;
	}
}

.postdata h2,
.u-h2 {
	position: relative;
	font-size: 3.4rem;
	margin-bottom: 50px;
	padding-bottom: 20px;
	text-align: center;
}

.postdata h2::before,
.u-h2::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: inline-block;
	content: "";
	background: var(--color-black);
	width: 40px;
	height: 2px;
}

.u-h3,
.postdata h3 {
	font-size: 2.2rem;
	margin-bottom: 30px;
	background: var(--color-black);
	color: #fff;
	padding: 5px 10px;
}

.postdata h3 {
	margin-bottom: 25px;
}

.u-h4,
.postdata h4 {
	position: relative;
	color: var(--color-green);
	font-size: 2rem;
	margin-bottom: 15px;
}

.u-h4 img,
.postdata h4 img {
	position: absolute;
	bottom: 0;
	right: 0;
}

@media (max-width: 800px) {

	.postdata h2,
	.u-h2 {
		font-size: 2.4rem;
		margin-bottom: 30px;
		padding-bottom: 15px;
	}

	.u-h3,
	.postdata h3 {
		font-size: 2rem;
		margin-bottom: 30px;
		padding: 8px 10px 5px;
	}

	.u-h4,
	.postdata h4 {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}

	.u-h4 img,
	.postdata h4 img {
		width: 50px;
	}
}

.tall+.tall {
	margin-top: 120px;
}

.short+.short {
	margin-top: 60px;
}

.x-short+.x-short {
	margin-top: 30px;
}

.hidden {
	overflow: hidden;
}

@media (max-width: 800px) {
	.tall+.tall {
		margin-top: 100px;
	}

	.short+.short {
		margin-top: 50px;
	}
}

.list-disc {
	display: -ms-grid;
	display: grid;
	grid-gap: 5px;
}

.list-disc li {
	line-height: 1.5;
	position: relative;
	padding-left: 15px;
}

.list-disc li:before {
	content: "";
	background: #333;
	display: block;
	position: absolute;
	top: 9px;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 5px;
}

.list-check {
	display: -ms-grid;
	display: grid;
	grid-gap: 5px;
}

.list-check li {
	font-weight: bold;
	position: relative;
	padding-left: 30px;
}

.list-check li::before {
	content: "";
	background: url(../images/share/icon_check.svg) no-repeat center/contain;
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
	height: 18px;
}

.list-num {
	counter-reset: number;
	display: -ms-grid;
	display: grid;
	grid-gap: 5px;
}

.list-num>li {
	padding-left: 30px;
	position: relative;
}

.list-num>li:before {
	background-color: var(--color-gold);
	border-radius: 15px;
	color: #fff;
	counter-increment: number;
	content: counter(number);
	font-size: 11px;
	position: absolute;
	top: 5px;
	left: 0;
	line-height: 20px;
	text-align: center;
	padding-left: 2px;
	width: 20px;
	height: 20px;
}

.list-num>li+li {
	margin-top: 5px;
}

.dl-style01 {
	display: -ms-grid;
	display: grid;
	grid-gap: 15px;
}

.dl-style01 .item {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 25% 75%;
	grid-template-columns: 25% 75%;
}

.dl-style01 dt {
	background: rgba(0, 0, 0, 0.1);
	font-size: 17px;
	padding: 20px;
}

.dl-style01 dd {
	background: #f5f5f5;
	padding: 20px;
}

@media (max-width: 800px) {
	.dl-style01 .item {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}
}

.card-style01 {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 25px 1fr 25px 1fr;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 25px;
}

.card-style01>li {
	background-color: #f5f5f5;
	padding: 15px;
}

.card-style01 .card-img {
	margin-bottom: 20px;
}

.card-style01 .card-ttl {
	margin-bottom: 15px;
}

@media (max-width: 800px) {
	.card-style01 {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		grid-gap: 25px;
	}
}

.table-style01 th,
.table-style01 td {
	border: 1px solid #c9c9c9;
	padding: 15px;
	vertical-align: middle;
}

.table-style01 th {
	background-color: var(--color-black);
	color: #fff;
}

.table-style01 .bg01 {
	background-color: #E6E8E9;
	color: #333;
}

.table-scroll-txt {
	display: none;
}

@media (max-width: 800px) {
	.table-scroll-txt {
		display: flex;
		align-items: center;
		margin-bottom: 10px;
	}

	.table-scroll-txt::before {
		content: "";
		display: block;
		background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
		width: 30px;
		height: 24.5px;
		margin-right: 10px;
	}

	.table-scroll {
		overflow-x: scroll;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
	}

	.table-scroll::-webkit-scrollbar {
		height: 5px;
	}

	.table-scroll::-webkit-scrollbar-track {
		border-radius: 5px;
		background: #f5f6f8;
	}

	.table-scroll::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #333;
	}

	.table-scroll table {
		margin-bottom: 10px !important;
		width: 150%;
	}

	.table-style01.sp-block colgroup {
		display: none;
	}

	.table-style01.sp-block th,
	.table-style01.sp-block td {
		display: block;
	}

	.table-style01.sp-block th {
		border-bottom: none;
	}


}

.box-style01 {
	background-color: #f5f5f5;
	padding: 8%;
}

.box-style01 .box-ttl {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 50px;
}

.box-style02 {
	background-color: #fff;
	padding: 4.5%;
	border: 1px solid var(--color-black);
}

.box-style02 .box-ttl {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 2rem;
	margin-bottom: 25px;
}

.box-style03 {
	background-color: #E6E8E9;
	padding: 4.5%;
}

.box-style03 .box-ttl {
	border-bottom: 1px solid #333;
	padding-bottom: 15px;
	font-size: 2.2rem;
	margin-bottom: 20px;
}

.box-style04 {
	background-color: #fff;
	border: 1px solid #D1D1D1;
	padding: 4.5%;
}

.box-style04 .box-ttl {
	border-bottom: 1px solid #D3D3D3;
	padding-bottom: 15px;
	font-size: 2.2rem;
	margin-bottom: 20px;
}

@media (max-width: 800px) {
	.box-style01 .box-ttl {
		font-size: 2rem;
		margin-bottom: 20px;
	}

	.box-style02 {
		padding: 8%;
	}

	.box-style02 .box-ttl {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}

	.box-style03 {
		padding: 8%;
	}

	.box-style03 .box-ttl {
		padding-bottom: 5px;
		font-size: 1.8rem;
		margin-bottom: 15px;
	}

	.box-style04 {
		padding: 8%;
	}

	.box-style04 .box-ttl {
		padding-bottom: 5px;
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
}

.list-anchor-link {
	display: flex;
	flex-wrap: wrap;
	font-size: 15px;
}

.list-anchor-link li {
	position: relative;
}

.list-anchor-link li::after {
	content: "";
	display: inline-block;
	background: #e0e0e0;
	width: 2px;
	height: 15px;
	margin: 0 20px;
	vertical-align: -1px;
}

.list-anchor-link a {
	display: inline-block;
	position: relative;
	font-weight: bold;
	padding-right: 25px;
}

.list-anchor-link a::before {
	content: "";
	background: url(../images/share/icon_arrow_down.svg) no-repeat 0 0/contain;
	width: 22px;
	height: 22px;
	position: absolute;
	right: -3px;
	top: 3px;
}

@media (any-hover:hover) {
	.list-anchor-link a:hover {
		text-decoration: underline;
	}
}

@media (max-width: 800px) {
	.list-anchor-link {
		display: block;
	}

	.list-anchor-link li::after {
		display: none;
	}

	.list-anchor-link a {
		padding: 0 0 0 30px;
	}

	.list-anchor-link a::before {
		right: inherit;
		left: 0;
		top: 2px;
	}
}

.list-anchor-link02 {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.list-anchor-link02 li >a{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	border: 1px solid var(--color-black);
	padding: 10px;
	line-height: 1.4;
	text-align: center;
	transition: .3s;
	height: 100%;
	min-height: 67px;
}

@media (any-hover:hover) {
	.list-anchor-link02 li >a:hover {
		background: var(--color-black);
		color: #fff;
	}
}
@media (max-width: 800px) {
	.list-anchor-link02 {
		grid-template-columns: repeat(2,1fr);
	}
	.list-anchor-link02 li >a{
		font-size: 1.3rem;
		min-height:0;
	}
}

.under-slider01 .splide {
	margin: 0 auto;
}

.under-slider01 .splide__track {
	overflow: visible;
}

.under-slider01 .splide__slide:not(.is-visible) .slide {
	pointer-events: none;
	opacity: 0.3;
}

.under-slider01 .splide__arrow--prev {
	left: calc((100% - 860px) / 2);
}

.under-slider01 .splide__arrow--next {
	right: calc((100% - 860px) / 2);
}

.under-slider01 .splide__arrow {
	top: 263px;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.under-slider01 .item-desc {
	margin-top: 25px;
}

.under-slider01 .item-ttl {
	font-size: 18px;
	margin-bottom: 10px;
}

.under-slider02 .item-img {
	position: relative;
}

.under-slider02 figcaption {
	background: #fff;
	font-size: 11px;
	font-weight: bold;
	line-height: 1.5;
	text-align: left;
	padding: 3px 5px;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

@media (max-width: 800px) {
	.under-slider01 .item-desc {
		margin-top: 15px;
	}

	.under-slider01 .item-ttl {
		font-size: 18px;
		margin-bottom: 0;
	}
}

.youtube {
	width: 100%;
	aspect-ratio: 16/9;
}

.youtube iframe {
	width: 100%;
	height: 100%;
}

.google-map iframe {
	vertical-align: bottom;
	width: 100%;
	height: 450px;
}

@media (max-width: 800px) {
	.google-map iframe {
		height: 300px;
	}
}

.faq-style {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style .item {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style dt {
	cursor: pointer;
	padding: 18px 50px;
	position: relative;
}

.faq-style dt .faq-icon {
	top: 15px;
	left: 0;
}

.faq-style dd {
	display: none;
	padding: 0 50px 30px;
	position: relative;
}

.faq-style dd .faq-icon {
	border: 1px solid #ccc;
	background-color: #ccc;
	color: #fff;
	top: 0;
	left: 0;
}

.faq-style .faq-ttl {
	font-weight: bold;
}

.faq-style .faq-icon {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 50px;
	color: #333;
	font-size: 1.5rem;
	width: 35px;
	height: 35px;
	line-height: 32px;
	text-align: center;
	position: absolute;
	transition: 0.3s;
}

.faq-style .faq-open-icon {
	background: url(../images/share/faq_arrow.svg) no-repeat center/contain;
	width: 10px;
	height: 21px;
	position: absolute;
	right: 30px;
	top: 24px;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (any-hover:hover) {
	.faq-style .item>dt:hover .faq-icon {
		background-color: #ffa29d;
		color: #fff;
	}
}

.faq-style .is-open .faq-icon {
	background-color: #ffa29d;
	color: #fff;
}

.faq-style .is-open .faq-open-icon {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

@media (max-width: 800px) {
	.faq-style {
		line-height: 1.5;
	}

	.faq-style dt {
		padding: 18px 30px 18px 50px;
	}

	.faq-style dt .faq-icon {
		top: 12px;
	}

	.faq-style dd {
		padding: 0 50px 30px;
	}

	.faq-style .faq-open-icon {
		width: 9px;
		height: 20px;
		right: 0;
		top: 19px;
	}
}

.list-flow>li {
	display: flex;
	flex-direction: row-reverse;
	padding-bottom: 30px;
	position: relative;
}

.list-flow>li::before,
.list-flow>li::after {
	content: "";
	position: absolute;
}

.list-flow>li::before {
	background-color: var(--color-gold);
	width: 1px;
	top: 45px;
	bottom: 0;
	left: 31px;
}

.list-flow>li::after {
	border-style: solid;
	border-width: 10px 5px 0 5px;
	border-color: var(--color-gold) transparent transparent transparent;
	bottom: -1px;
	left: 26px;
}

.list-flow>li:last-child {
	padding-bottom: 0;
}

.list-flow>li:last-child::before,
.list-flow>li:last-child::after {
	display: none;
}

.list-flow>li+li {
	margin-top: 25px;
}

.list-flow .num {
	order: 1;
	flex: 0 0 60px;
	display: block;
	color: #fff;
	background-color: var(--color-gold);
	border-radius: 50%;
	font-family: var(--font-jp);
	height: 60px;
	width: 60px;
	font-size: 2rem;
	line-height: 1;
	text-align: center;
	padding-top: 20px;
	margin-right: 50px;
}

.list-flow .list-ttl {
	font-size: 2rem;
	margin: 15px 0 15px;
}

.list-flow .list-img {
	flex: 0 0 40%;
	margin-left: 10%;
}

.list-flow .list-desc {
	flex: 1;
}

.list-flow p {
	line-height: 2;
}

@media (max-width: 800px) {
	.list-flow>li {
		display: block;
		padding-bottom: 30px;
		padding-left: 80px;
		position: relative;
	}

	.list-flow>li::before {
		top: 70px;
		bottom: 0;
		left: 24px;
	}

	.list-flow>li::after {
		left: 20px;
	}

	.list-flow>li:last-child {
		padding-bottom: 0;
	}

	.list-flow>li:last-child::before,
	.list-flow>li:last-child::after {
		display: none;
	}

	.list-flow>li+li {
		margin-top: 25px;
	}

	.list-flow .num {
		flex: 0 0 50px;
		height: 50px;
		width: 50px;
		font-size: 18px;
		padding-top: 15px;
		position: absolute;
		top: 0;
		left: 0;
	}

	.list-flow .list-desc {
		padding-top: 12px;
	}

	.list-flow .list-ttl {
		font-size: 1.2rem;
		margin: 0 0 20px;
	}

	.list-flow .list-img {
		margin: 0 0 25px;
		width: 100%;
	}

	.list-flow p {
		line-height: 1.7;
	}
}

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.l-imgR .l-img,
.l-imgL .l-img {
	margin: 0 5% 0 0;
	width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
	width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
	flex: 1;
}

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

.l-imgR .l-img {
	margin: 0 0 0 5%;
}

.fl-wrap {
	display: flow-root;
}

.fl-imgR,
.fl-imgL {
	width: 40%;
}

.fl-imgR.small,
.fl-imgL.small {
	width: 30%;
}

.fl-imgR {
	float: right;
	margin: 0 0 15px 35px;
}

.fl-imgL {
	float: left;
	margin: 0 35px 15px 0;
}

@media (max-width: 800px) {

	.l-imgR,
	.l-imgL {
		display: block;
	}

	.l-imgR .l-img,
	.l-imgL .l-img {
		margin: 0 0 15px;
		text-align: center;
		width: 100%;
	}

	.l-imgR .l-img.small,
	.l-imgL .l-img.small {
		width: 100%;
	}

	.l-imgR .l-img {
		margin: 0 0 15px;
	}

	.fl-imgR,
	.fl-imgL {
		float: none;
		margin: 0 0 15px;
		width: 100%;
	}

	.fl-imgR.small,
	.fl-imgL.small {
		width: 100%;
	}
}

/*------------
お問い合わせ
--------------*/
.tel-layout {
	background: #f5f5f5;
	max-width: 800px;
	padding: 5%;
	margin: 0 auto;
}

.tel-layout .l-ttl {
	border-bottom: 1px solid #333;
	margin-bottom: 30px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 10px;
	margin: 0 auto 25px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.tel-layout .l-tel {
	display: inline-flex;
	align-items: center;
	font-weight: bold;
	font-size: 35px;
	line-height: 1;
	margin: 0 auto;
	white-space: nowrap;
}

.tel-layout .l-tel img {
	margin-right: 10px;
}

.tel-layout .l-time {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 70px 10px 1fr;
	grid-template-columns: 70px 1fr;
	grid-gap: 10px;
	line-height: 1.5;
	margin: 20px auto 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.tel-layout .l-time dt {
	border: 1px solid #000;
	text-align: center;
	font-weight: bold;
	font-size: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media (max-width: 800px) {
	.tel-layout .l-ttl {
		font-size: 15px;
	}

	.tel-layout .l-tel {
		font-size: 25px;
	}

	.tel-layout .l-tel img {
		width: 15px;
	}
}
/*------------
検査・ワクチン接種
--------------*/
.price-layout {
	display: grid;
	grid-template: auto 1fr/1fr 200px;
	gap:40px;
	background: #E5DCCC;
	padding: 50px;
}

.price-layout .l-label {
	grid-area: 1 / 2 / 2 / 3;
	background: #63503D;
	padding: 15px;
	color: #fff;
	font-family: var(--font-jp);
	letter-spacing: 0.05em;
	line-height: 1.4;
	font-size: 1.8rem;
	text-align: center;
}

.price-layout .l-label .big {
	font-size: 2em;    
	vertical-align: -2px;
	margin: 0 0.1em;
}

.price-layout .l-ttl {
	font-family: var(--font-jp);
	font-size: 2.2rem;
	letter-spacing: 0.05em;
	line-height: 1.3;
	border-bottom: 1px solid #333;
	margin: 0 0 20px;
	padding: 0 0 15px;
	position: relative;
	z-index: 1;
}

.price-layout .l-ttl:before {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: #EEEAE3;
	border-radius: 50%;
	position: absolute;
	left: -12px;
	top: -5px;
	z-index: -1;
}

.price-layout .l-desc {
	grid-area: 1 / 1 / 3 / 2;
}

.price-layout .list-disc {
	grid-gap: 15px;
}

.price-layout .list-disc .small{
	font-size: 0.8em;
	color: #63503d;
}

.price-layout .l-price {
	grid-area: 2 / 2 / 3 / 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #63503D;
	font-family: "Cardo", var(--font-jp);
	font-size: 4rem;
	letter-spacing: 0.05em;
	line-height: 1.3;
	text-align: center;
}

.price-layout .l-price .small{
	font-size: 0.5em;
	margin-right: 0.1em;
}

@media (max-width: 800px) {
	.price-layout {
		display: block;
		padding: 25px;
	}

	.price-layout .l-label {
		padding: 10px;
		line-height: 1;
		font-size: 1.6rem;
		margin-bottom: 20px;
	}

	.price-layout .l-ttl {
		font-size: 2rem;
		padding: 0 0 10px;
	}

	.price-layout .l-ttl:before {
		width: 20px;
		height: 20px;
		left: -10px;
		top: -3px;
	}

	.price-layout .l-desc {
		margin-bottom: 20px;
	}

	.price-layout .list-disc {
		grid-gap: 10px;
	}

	.price-layout .l-price {
		font-size: 3rem;
	}

}
/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
	border-bottom: 1px solid #000;
	font-size: 18px;
	padding: 0 0 5px;
	margin: 0 0 15px;
}

.dl-privacy dd+dt {
	margin-top: 30px;
}

.list-privacy li {
	position: relative;
	padding: 0 0 0 15px;
}

.list-privacy li::before {
	background: #333;
	border-radius: 50%;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 10px;
	width: 5px;
	height: 5px;
}

.list-privacy li+li {
	margin-top: 3px;
}

/*------------
Add
--------------*/
/*------------
スタッフページ
--------------*/
.staff-layout {
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 60px;
}

.staff-layout .l-img {
	flex: 0 0 410px;
	margin-left: 65px;
}

.staff-layout .l-desc {
	margin-top: 20px;
}

.staff-layout .job {
	font-size: 18px;
	margin-bottom: 5px;
}

.staff-layout .name {
	border-bottom: 1px solid var(--color-black);
	line-height: 1;
	padding-bottom: 35px;
	margin-bottom: 30px;
}

.staff-layout .jp {
	font-size: 30px;
	margin-right: 25px;
}

.staff-layout .en {
	color: var(--color-gold);
	font-size: 18px;
}

.staff-profile {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.staff-profile .item {
	background: #E6E8E9;
	padding: 35px;
	width: 48.43%;
}

.staff-profile .item-ttl {
	font-size: 18px;
	margin-bottom: 15px;
}

.dl-career {
	border-top: 1px dotted #c0c0c0;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	line-height: 1.7;
}

.dl-career dt {
	border-bottom: 1px dotted #c0c0c0;
	padding: 10px 0;
	width: 25%;
}

.dl-career dd {
	border-bottom: 1px dotted #c0c0c0;
	padding: 10px 0;
	width: 75%;
}

.w50 {
	width: 50%;
}

.pet-pass-bnr {
	border: 1px solid #000;
	padding: 40px 45px;
}

.pet-pass-bnr .bnr-img {
	margin-bottom: 25px;
}

.pet-pass-bnr .btn-wrap {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 10px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}

.pet-pass-bnr .btn-wrap .app-btn {
	position: relative;
	background: var(--color-black);
	color: #fff;
	font-family: var(--font-jp);
	text-align: center;
	padding: 13px 15px 17px;
	border: 1px solid var(--color-black);
	transition: background-color 0.3s, color .3s;
}

@media (any-hover:hover) {
	.pet-pass-bnr .btn-wrap .app-btn:hover {
		background-color: #FFF;
		color: var(--color-black);
	}
}

.pet-pass-bnr .btn-wrap .app-btn::before {
	content: ''; /* 必要に応じて content を追加 */
	background: var(--color-black);
	-webkit-mask: url(../images/share/ico_btn_right.svg) no-repeat center center/contain;
	mask: url(../images/share/ico_btn_right.svg) no-repeat center center/contain; /* 標準の mask プロパティも追加 */
}

.pet-pass-bnr .btn-wrap .app-btn:hover::before {
	background: var(--color-black); /* hover時の背景色 */
}

.pet-pass-bnr .btn-wrap .app-btn::before {
	position: absolute;
	top: 50%;
	right: 12px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: inline-block;
	content: "";
	background: url(../images/share/ico_btn_right.svg) no-repeat center center/contain;
	width: 19px;
	height: 4px;
}

.list-flow-02 {
	border: 1px solid #D8D8D8;
	background: #fff;
	padding: 50px;
}

.list-flow-02>li {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	position: relative;
}

.list-flow-02>li+li {
	border-top: 1px solid #eaeaea;
	padding-top: 50px;
	margin-top: 50px;
}

.list-flow-02>li+li::before {
	content: "";
	width: 22px;
	height: 22px;
	border-bottom: 2px solid var(--color-black);
	border-right: 2px solid var(--color-black);
	position: absolute;
	top: -18px;
	left: 50%;
	-webkit-transform: translateX(-50%) rotate(45deg);
	transform: translateX(-50%) rotate(45deg);
	z-index: 2;
}

.list-flow-02>li+li::after {
	content: "";
	background: #fff;
	width: 75px;
	height: 22px;
	position: absolute;
	top: -18px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}

.list-flow-02 .list-img {
	width: 40%;
	margin: 0 0 0 50px;
}

.list-flow-02 .list-desc {
	flex: 1;
}

.list-flow-02 .list-ttl {
	display: flex;
	align-items: center;
	font-size: 22px;
	line-height: 1.5;
	margin: 0 0 35px;
}

.list-flow-02 .num {
	background: var(--color-green);
	color: #fff;
	display: inline-block;
	font-size: 15px;
	line-height: 30px;
	padding: 0 5px 0 8px;
	margin: 0 25px 0 0;
	position: relative;
}

.list-flow-02 .num::after {
	content: "";
	border-style: solid;
	border-width: 15px 0 15px 12px;
	border-color: transparent transparent transparent var(--color-green);
	position: absolute;
	right: -12px;
}

.access-ttl {
	font-size: 2rem;
	border: 1px solid var(--color-black);
	padding: 10px;
	text-align: center;
	margin-bottom: 25px;
}

.side-layout {
	border: 1px solid #ddd;
}

.side-layout .l-ttl {
	padding: 10px 20px;
	font-size: 1.8rem;
	border-bottom: 1px solid #ddd;
}

.side-layout .side-list {
	padding: 20px 20px 10px;
}

.side-layout .side-list>li {
	margin-bottom: 10px;
	cursor: pointer;
}

.side-layout .side-list>li>span {
	position: relative;
	padding-left: 15px;
	transition: opacity 0.3s;
}

.side-layout .side-list>li>span::before {
	position: absolute;
	top: 8px;
	left: 0;
	display: inline-block;
	content: "";
	border: 1px solid #333;
	width: 7px;
	height: 7px;
}

.side-layout .side-list>li .sub {
	display: none;
	padding-left: 20px;
}

.side-layout .side-list>li .sub li a {
	padding-left: 12px;
	position: relative;
	font-size: 1.4rem;
	transition: opacity 0.3s;
}

.side-layout .side-list>li .sub li a::before {
	position: absolute;
	top: -4px;
	left: 0;
	display: inline-block;
	content: "-";
}

.side-layout+.side-layout {
	margin-top: 30px;
}


.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center>.wp-block-media-text__media,
.wp-block-media-text>.wp-block-media-text__content,
.wp-block-media-text>.wp-block-media-text__media {
	align-self: start !important;
}

.wp-block-media-text,
.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media {
	margin-bottom: 3rem;
}

@media (max-width: 800px) {
	.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__content {
		grid-column: 1;
		grid-row: 2;
	}

	.wp-block-media-text.is-stacked-on-mobile>.wp-block-media-text__media {
		grid-column: 1;
		grid-row: 1;
	}

	.wp-block-media-text.is-stacked-on-mobile {
		grid-template-columns: 100% !important;
	}

	.wp-block-media-text>.wp-block-media-text__content {
		padding: 0;
	}

}

.list-case {
	border-top: 1px solid #ddd;
}

.list-case div {
	display: flex;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
}

.list-case dt {
	min-width: 100px;
	font-size: 1.8rem;
	padding-right: 15px;
}

.list-case dd {
	flex: 1;
	font-size: 1.6rem;
	padding-top: 3px;
}

.animal-list {
	display: flex;
	justify-content: center;
	grid-gap: 10px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.animal-list li {
	width: 23%;
	font-size: 2rem;
	border: 1px solid var(--color-black);
	padding: 10px;
	text-align: center;
}

.u-contents .sec05-list li a {
	min-height: 147px;
}

@media (max-width: 800px) {

	/*------------
	スタッフページ
	--------------*/
	.staff-layout {
		display: block;
		margin-bottom: 30px;
	}

	.staff-layout .l-img {
		text-align: center;
		margin: 0 0 30px;
	}

	.staff-layout .l-desc {
		margin: 0;
	}

	.staff-layout .job {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.staff-layout .name {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.staff-layout .jp {
		display: block;
		font-size: 25px;
		margin: 0 0 10px;
	}

	.staff-layout .en {
		font-size: 14px;
	}

	.staff-profile {
		display: block;
	}

	.staff-profile .item {
		padding: 25px;
		width: 100%;
	}

	.staff-profile .item+.item {
		margin-top: 30px;
	}

	.dl-career {
		font-size: 13px;
	}

	.w50 {
		width: 100%;
	}

	.pet-pass-bnr {
		padding: 20px;
	}

	.pet-pass-bnr .bnr-img {
		margin-bottom: 20px;
	}

	.pet-pass-bnr .btn-wrap .app-btn {
		padding: 10px 5px;
		font-size: 1.2rem;
	}

	.pet-pass-bnr .btn-wrap .app-btn::before {
		right: 10px;
		width: 15px;
		height: 4px;
	}

	.list-flow-02 {
		padding: 15px;
	}

	.list-flow-02>li {
		display: block;
	}

	.list-flow-02 .list-img {
		width: 100%;
		margin: 0 0 30px;
	}

	.list-flow-02 .list-ttl {
		display: block;
		font-size: 20px;
		margin: 0 0 15px;
	}

	.list-flow-02 .num {
		display: table;
		font-size: 12px;
		line-height: 25px;
		padding: 0 2px 1px 8px;
		margin: 0 0 15px;
	}

	.list-flow-02 .num::after {
		border-width: 13px 0 13px 10px;
		right: -10px;
	}

	.access-ttl {
		font-size: 1.7rem;
		padding: 12px 10px 10px;
		margin-bottom: 20px;
	}

	.side-layout .l-ttl {
		padding: 10px 15px 7px;
		font-size: 1.7rem;
	}

	.side-layout .side-list {
		padding: 15px 15px 10px;
	}

	.side-layout+.side-layout {
		margin-top: 20px;
	}

	.list-case dt {
		font-size: 1.7rem;
	}

	.list-case dd {
		font-size: 1.5rem;
		padding-top: 0;
	}

	.animal-list {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 10px 1fr;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
	}

	.animal-list li {
		width: 100%;
		font-size: 1.8rem;
		padding: 8px;
	}

	.u-contents .sec05-list li a {
		min-height: auto;
	}

	.u-contents .sec05-list li .list-ttl {
		margin-bottom: 0;
	}
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
	background-color: var(--color-black);
	padding: 50px 0 0;
	margin-top: auto;
	color: #fff;
	position: relative;
}

.f-layout {
	margin-bottom: 50px;
}

.f-layout .container {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 5% 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 5%;
}

.f-logo {
	margin-bottom: 40px;
}

.f-dl {
	margin-bottom: 20px;
}

.f-dl div {
	display: flex;
}

.f-dl div dt {
	width: 90px;
}

.f-dl div dd {
	flex: 1;
}

.card-f-dl {
	margin-bottom: 30px;
}

.card-f-dl dt {
	margin-bottom: 10px;
}

.f-btn-list {
	display: flex;
	align-items: center;
	margin-bottom: 35px;
}

.f-btn-list a+a {
	margin-left: 20px;
}

.site-map {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}

.f-links {
	display: -ms-grid;
	display: grid;
	grid-gap: 15px;
	font-size: 1.6rem;
	font-family: var(--font-jp);
}

@media (any-hover:hover) {
	.f-links a:hover {
		text-decoration: underline;
	}
}

.f-links .sub-menu {
	margin-top: 10px;
	display: -ms-grid;
	display: grid;
	grid-gap: 10px;
}

.f-links .sub-menu>li::before {
	content: "－";
	color: var(--color-gold);
	padding-right: 7px;
}

.copyright {
	color: #fff;
	text-align: center;
	padding: 25px 25px 40px;
}

.copyright small {
	font-size: 1.2rem;
}

.pagetop {
	position: absolute;
	bottom: 150px;
	right: 50px;
	z-index: 5;
}

.pagetop a {
	display: inline-block;
	text-align: center;
	width: 50px;
	height: 50px;
	padding: 18px 0 0;
	transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
	position: relative;
	z-index: 0;
}

@media (any-hover:hover) {
	.pagetop a:hover {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@media (max-width: 800px) {
	.footer {
		padding: 45px 0 0;
	}

	.f-layout {
		margin-bottom: 40px;
	}

	.f-layout .container {
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 40px;
	}

	.f-logo {
		margin-bottom: 30px;
	}

	.f-dl {
		margin-bottom: 20px;
	}

	.f-dl div {
		display: block;
	}

	.f-dl div dt {
		width: 70px;
	}

	.f-dl div+div {
		margin-top: 10px;
	}

	.f-btn-list {
		display: block;
		text-align: center;
	}

	.f-btn-list a+a {
		margin-left: 0;
	}

	.site-map {
		grid-gap: 20px;
	}

	.f-links {
		grid-gap: 5px;
		font-size: 1.3rem;
	}

	.f-links .sub-menu {
		margin-top: 5px;
		grid-gap: 5px;
	}

	.f-links .sub-menu>li::before {
		padding-right: 5px;
	}

	.pagetop {
		bottom: 200px;
		right: 20px;
	}
}

.sp-navi {
	display: none;
}

@media (max-width: 800px) {
	.footer {
		padding-bottom: 60px;
	}
}

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

	:root {
		--navi-background: var(--color-black);
		--navi-border-color: #fff;
		--navi-text-color: #fff;
		--svg-stroke: #fff;
		--menu-btn: #fff;
		--navi-font: var(--font-jp), "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
	}

	.sp-navi-btns {
		display: flex;
		background: var(--navi-background);
		box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 53px;
		z-index: 10000;
	}

	.sp-navi-btns>* {
		flex: 1;
		position: relative;
	}

	.sp-navi-btns .item {
		border-right: 1px solid var(--navi-border-color);
		font-size: 10px;
		font-family: var(--navi-font);
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
		white-space: nowrap;
	}

	.sp-navi-btns .item a {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		color: var(--navi-text-color);
		text-decoration: none;
		height: 100%;
		padding: 10px 0;
	}

	.sp-navi-btns .item .img {
		display: block;
	}

	.sp-navi-btns .item .img svg {
		-o-object-fit: cover;
		object-fit: cover;
		height: 20px;
		margin-bottom: 3px;
		stroke: var(--svg-stroke);
	}

	.sp-navi-btns .item .ttl {
		display: block;
	}

	.sp-menu-btn {
		cursor: pointer;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		padding-bottom: 10px;
	}

	.sp-menu-btn .ttl {
		display: block;
		color: var(--navi-text-color);
		font-family: var(--navi-font);
		font-size: 10px;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
	}

	.sp-menu-btn span:not(.ttl) {
		background: var(--menu-btn);
		position: absolute;
		left: 50%;
		width: 22px;
		height: 1px;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		transition: 0.4s;
	}

	.sp-menu-btn span:not(.ttl):nth-of-type(1) {
		top: 15px;
	}

	.sp-menu-btn span:not(.ttl):nth-of-type(2) {
		top: 21px;
	}

	.sp-menu-btn span:not(.ttl):nth-of-type(3) {
		top: 27px;
	}

	.sp-menu-btn.is-open span:nth-of-type(1) {
		-webkit-transform: translate(-50%, 6px) rotate(-45deg);
		transform: translate(-50%, 6px) rotate(-45deg);
	}

	.sp-menu-btn.is-open span:nth-of-type(2) {
		opacity: 0;
	}

	.sp-menu-btn.is-open span:nth-of-type(3) {
		-webkit-transform: translate(-50%, -6px) rotate(45deg);
		transform: translate(-50%, -6px) rotate(45deg);
	}

	.sp-navi-contents {
		pointer-events: none;
		visibility: hidden;
		background: #fff;
		font-family: var(--navi-font);
		padding: 50px 10% 100px;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transition: 0.5s;
		opacity: 0;
		z-index: 9999;
	}

	.sp-navi-contents.is-open {
		pointer-events: auto;
		visibility: visible;
		overflow-y: auto;
		opacity: 1;
	}

	.sp-navi-list {
		border-top: 1px solid #d6d6d6;
		font-family: var(--font-jp);
		margin: 0 0 50px;
	}

	.sp-navi-list>li {
		border-bottom: 1px solid #d6d6d6;
	}

	.sp-navi-list>li>a {
		color: #333;
		display: block;
		font-size: 1.4rem;
		line-height: 1;
		text-decoration: none;
		padding: 15px 0;
	}

	.sp-navi-list>li>span {
		color: #333;
		display: block;
		font-size: 1.4rem;
		line-height: 1;
		text-decoration: none;
		padding: 15px 0;
	}

	.sp-navi-list>li.sp-dropdown {
		position: relative;
	}

	.sp-navi-list>li.sp-dropdown::before,
	.sp-navi-list>li.sp-dropdown::after {
		content: "";
		background-color: var(--color-gold);
		position: absolute;
		transition: 0.5s;
	}

	.sp-navi-list>li.sp-dropdown::before {
		width: 1px;
		height: 11px;
		top: 17px;
		right: 20px;
	}

	.sp-navi-list>li.sp-dropdown::after {
		width: 11px;
		height: 1px;
		top: 22px;
		right: 15px;
	}

	.sp-navi-list>li.sp-dropdown.is-on::before {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	.sp-navi-list>li.sp-dropdown>a {
		padding: 15px 0;
		width: 85%;
	}

	.sp-navi-list .sub-menu {
		padding: 0 0 15px;
	}

	.sp-navi-list .sub-menu>ul>li {
		position: relative;
		padding-left: 15px;
		margin-bottom: 5px;
	}

	.sp-navi-list .sub-menu>ul>li::before {
		content: "-";
		color: var(--color-gold);
		position: absolute;
		left: 0;
		top: 0;
	}

	.sp-navi-list .sub-menu>ul>li>a {
		display: inline-block;
		font-size: 1.3rem;
		text-decoration: none;
		color: #333;
	}

	.sp-navi-logo {
		text-align: center;
		margin-bottom: 30px;
	}

	.sp-navi-address {
		text-align: center;
		font-size: 13px;
	}

	.sp-navi-tel {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 23px;
		font-weight: bold;
	}

	.sp-navi-tel img {
		margin-right: 10px;
	}
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*お知らせ*/
.list-post-news {
	margin: 0 0 40px;
}

.list-post-news li {
	border-bottom: 1px dotted #707070;
}

.list-post-news a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 10px 0;
}

@media (any-hover:hover) {
	.list-post-news a:hover .ttl {
		text-decoration: underline;
	}
}

.list-post-news time {
	color: #666;
	width: 90px;
	margin-right: 80px;
}

/*普通投稿*/
.list-post-type01 {
	margin-bottom: 80px;
}

.list-post-type01 li {
	overflow: hidden;
}

.list-post-type01 li+li {
	margin-top: 50px;
}

.list-post-type01 .list-ttl {
	font-family: var(--font-jp);
	font-size: 20px;
	position: relative;
	margin: 0 0 25px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #ccc;
}

.list-post-type01 .list-ttl a {
	transition: 0.5s;
}

@media (any-hover:hover) {
	.list-post-type01 .list-ttl a:hover {
		opacity: 0.5;
	}
}

.list-post-type01 .list-img {
	float: left;
	margin: 0 30px 0 0;
	width: 250px;
}

.list-post-type01 .list-img img {
	width: 250px;
	height: 180px;
	-o-object-fit: cover;
	object-fit: cover;
}

.list-post-type01 .list-img a {
	transition: 0.5s;
}

@media (any-hover:hover) {
	.list-post-type01 .list-img a:hover {
		opacity: 0.5;
	}
}

.list-post-type01 .list-data {
	font-size: 13px;
	margin: 0 0 5px;
}

.list-post-type01 time {
	display: inline-block;
	font-size: 14px;
	vertical-align: -1px;
	margin: 0 25px 0 0;
	font-family: "Cardo", serif;
}

.list-post-type01 .category {
	font-size: 13px;
	display: inline-block;
	background: var(--color-gold);
	border-radius: 3px;
	padding: 5px 10px 3px;
	text-align: center;
	line-height: 1.4;
}

.list-post-type01 .list-txt {
	margin: 0 0 30px;
}

.list-post-type01 .list-btn {
	text-align: right;
}

.list-post-type01 .list-btn a {
	display: inline-block;
	min-width: 250px;
	background-color: var(--color-black);
	color: #FFF;
	border: 1px solid var(--color-black);
	border-radius: 50px;
	line-height: 1.3;
	text-align: center;
	padding: 15px 45px;
	font-weight: 600;
	transition: color .3s, backgrond-color .3s;
	position: relative;
	z-index: 0;
}

.list-post-type01 .list-btn a::before {
	content: "";
	width: 5px;
	height: 5px;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	position: absolute;
	left: 20px;
	top: calc(50% - 1px);
	-webkit-transform: rotate(45deg);
	transition: border-color .3s;
	transform: rotate(45deg);
}

@media (any-hover:hover) {
	.list-post-type01 .list-btn a:hover {
		color: var(--color-black);
		background-color: #FFF;
	}
}


@media (any-hover:hover) {
	.list-post-type01 .list-btn a:hover::before {
		border-color: var(--color-gold);
	}
}

/*詳細ページ*/
.l-post-single {
	margin-bottom: 80px;
}

.l-post-single .l-ttl {
	font-family: var(--font-jp);
	font-size: 30px;
	margin: 0 0 35px;
}

.l-post-single .post-data {
	margin: 0 0 20px;
}

.l-post-single .post-data time {
	display: inline-block;
	color: #98918c;
	font-family: "Cardo", serif;
	font-size: 14px;
	vertical-align: -1px;
	margin: 0 20px 0 0;
}

.l-post-single .post-data .category {
	background: var(--color-gold);
	display: inline-block;
	font-size: 11px;
	line-height: 1;
	padding: 5px 8px;
	margin: 0 10px 0 0;
}

/*詳細ページ*/
.postdata p {
	margin-bottom: 15px;
}

.postdata a {
	text-decoration: underline;
}

@media (any-hover:hover) {
	.postdata a:hover {
		text-decoration: none;
	}
}

.postdata strong {
	font-weight: bold;
}

.postdata em {
	font-style: italic;
}

ul.wp-block-list li,
.postdata ul li {
	list-style: inside disc;
}

.wp-block-list li>ul,
.postdata ul li>ul {
	margin: 0 0 0 15px;
}

ol.wp-block-list li,
.postdata ol li {
	list-style: inside decimal;
}

.postdata ol li>ol {
	margin: 0 0 0 15px;
}

/*セレクト式カテゴリー*/
.select-area {
	display: flex;
	align-items: center;
	margin: 0 0 50px;
}

.select-area .select-item {
	display: flex;
	align-items: center;
	margin: 0 30px 0 0;
}

.select-area .select-ttl {
	display: inline-block;
	font-family: var(--font-jp);
	font-size: 16px;
	margin: 0 15px 0 0;
}

.select-area .select-category {
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	text-overflow: "";
	background: url(../images/share/icon_select_arrow.svg) no-repeat;
	background-size: 20px;
	background-position: right center;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	color: #333;
	font-size: 16px;
	vertical-align: middle;
	height: 35px;
	min-width: 150px;
	padding: 5px 20px 5px 5px;
}

.select-area .select-category::-ms-expand {
	display: none;
}

/*ページャー*/
.post-number {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.post-number span,
.post-number a {
	display: inline-block;
	color: var(--color-gold);
	border: 1px solid var(--color-gold);
	font-size: 13px;
	text-align: center;
	min-width: 30px;
	height: 30px;
	line-height: 30px;
	padding: 0 4px;
	margin: 0 4px;
}

@media (any-hover:hover) {
	.post-number a:hover {
		background: var(--color-gold);
		color: #fff;
	}
}

.post-number .current {
	background: var(--color-gold);
	color: #fff;
}

.post-number-single {
	display: flex;
	justify-content: center;
	text-align: center;
}

.post-number-single a {
	display: inline-block;
}

.post-number-single .all {
	background: var(--color-black);
	border: 1px solid var(--color-black);
	color: #fff;
	font-size: 13px;
	line-height: 28px;
	max-width: 200px;
	margin: 0 10px;
	height: 30px;
	width: 100%;
}

@media (any-hover:hover) {
	.post-number-single .all:hover {
		background: #fff;
		color: var(--color-black);
	}
}

.post-number-single .prev,
.post-number-single .next {
	border: 1px solid var(--color-black);
	width: 30px;
	height: 30px;
	position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
	position: absolute;
	content: "";
	width: 5px;
	height: 5px;
	border-bottom: 1px solid var(--color-black);
	margin: 0 auto;
	top: 12px;
}

@media (any-hover:hover) {

	.post-number-single .prev:hover,
	.post-number-single .next:hover {
		background: var(--color-black);
	}
}

@media (any-hover:hover) {

	.post-number-single .prev:hover::before,
	.post-number-single .next:hover::before {
		border-color: #fff;
	}
}

.post-number-single .prev::before {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	left: 13px;
	border-left: 1px solid var(--color-gold);
}

.post-number-single .next::before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	right: 13px;
	border-right: 1px solid var(--color-gold);
}

@media screen and (max-width: 800px) and (min-width: 0px) {

	/*お知らせ*/
	.list-post-news {
		margin: 0 0 40px;
	}

	.list-post-news a {
		font-size: 14px;
	}

	.list-post-news time {
		margin-right: 25px;
	}

	/*Post Type01*/
	.list-post-type01 {
		margin: 0 0 50px;
	}

	.list-post-type01 li+li {
		margin-top: 20px;
	}

	.list-post-type01 .list-ttl {
		font-size: 18px;
		padding: 0 0 7px;
		margin: 0 0 15px;
	}

	.list-post-type01 .list-img {
		float: left;
		margin: 0 15px 0 0;
		width: 40%;
	}

	.list-post-type01 .list-img img {
		width: 100%;
		height: 25vw;
	}

	.list-post-type01 .list-desc {
		margin: -5px 0 0;
	}

	.list-post-type01 time {
		font-size: 12px;
		margin: 0 15px 0 0;
	}

	.list-post-type01 .list-txt {
		font-size: 11px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		margin: 0 0 5px;
	}

	.list-post-type01 .list-btn {
		margin-top: 15px;
	}

	.list-post-type01 .list-btn a {
		padding: 12px 25px;
		font-size: 13px;
		min-width: 150px;
	}

	/*詳細ページ*/
	.l-post-single .l-ttl {
		font-size: 22px;
		margin: 0 0 30px;
	}

	/*セレクト式カテゴリー*/
	.select-area {
		display: block;
		margin: 0 0 30px;
	}

	.select-area .select-item {
		margin: 0;
	}

	.select-area .select-item+.select-item {
		margin-top: 10px;
	}

	.select-area .select-ttl {
		font-size: 15px;
	}
}


/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

hr {
	max-width: 1024px;
	margin: 50px auto;
}


.tel {
	display: inline-flex;
	font-size: 2.6rem;
	font-family: var(--font-jp);
	transition: opacity 0.3s;
}

.tel img {
	margin-top: 4px;
	margin-right: 7px;
}

.btn-web {
	display: inline-flex;
	font-size: 1.8rem;
	font-family: var(--font-jp);
	background: var(--color-green);
	padding: 13px 40px;
	color: #fff;
	overflow: hidden;
	transition: transfrom 0.3s;
	position: relative;
}

.btn-web img {
	margin-top: 4px;
	margin-right: 7px;
}

.btn-web::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: var(--color-gold);
	transform: scaleX(0);
	transform-origin: right top;
	transition: transform .2s ease;
}

@media (any-hover:hover) {

	.btn-web:focus-visible::before,
	.btn-web:hover::before {
		transform-origin: left top;
		transform: scaleX(1);
	}
}


.fs11 {
	font-size: 11px;
}

.bold,
strong {
	font-weight: bold;
}

.red {
	color: #F44336;
}

.marker {
	text-decoration: underline;
	/* 下線 */
	text-decoration-thickness: 0.5em;
	/* 線の太さ */
	text-decoration-color: rgba(255, 228, 0, 0.4);
	/* 線の色 */
	text-underline-offset: -0.2em;
	/* 線の位置。テキストに重なるようにやや上部にする */
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	/* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
	text-decoration-skip-ink: none;
}

.notice {
	font-size: 0.8rem;
	text-indent: -1.2rem;
	padding-left: 1.2rem;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mbXS {
	margin-bottom: 5px !important;
}

.mbS {
	margin-bottom: 15px !important;
}

.mbM {
	margin-bottom: 30px !important;
}

.mbL {
	margin-bottom: 60px !important;
}

.mbXL {
	margin-bottom: 90px !important;
}

.mt0 {
	margin-top: 0 !important;
}

.pb0 {
	padding-bottom: 0 !important;
}

.tac {
	text-align: center;
}

.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

.col2 {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: flex-start;
}

.col3 {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: flex-start;
}

.col4 {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: flex-start;
}

@media (max-width: 800px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	.sp-tac {
		text-align: center !important;
	}

	.sp-tar {
		text-align: right !important;
	}

	.sp-tal {
		text-align: left !important;
	}

	.mbL {
		margin-bottom: 30px !important;
	}

	.mbXL {
		margin-bottom: 50px !important;
	}

	.col2 {
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 20px;
	}

	.col3 {
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 20px;
	}

	.col4 {
		-ms-grid-columns: 1fr;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 20px;
	}
}

/*ボタン*/
.btn-more {
	background: #fff;
	border: #333 1px solid;
	color: initial;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-family: var(--font-jp);
	line-height: 1;
	min-height: 50px;
	min-width: 240px;
	padding: 10px 20px;
	transition: background-color .5s, border-color .5s, color .5s;
	line-height: 1.5;
	position: relative;
}

.btn-more::before {
	content: "";
	width: 20px;
	height: 5px;
	position: absolute;
	right: 15px;
	background: var(--color-gold);
	-webkit-mask: url(../images/share/ico_btn_right.svg) no-repeat center center/contain;
	top: 43%;
}

@media (any-hover:hover) {

	.btn-more:not(.bg-none):focus-visible,
	.btn-more:not(.bg-none):hover {
		border-color: #FFF;
		background-color: var(--color-gold);
		color: #FFF;
	}
}

@media (any-hover:hover) {

	.btn-more:not(.bg-none):focus-visible::before,
	.btn-more:not(.bg-none):hover::before {
		background-color: #FFF;
	}
}

.btn-more.bg-none {
	background: none;
	border: 1px solid #fff;
	color: #fff;
}

@media (any-hover:hover) {

	.btn-more.bg-none:focus-visible,
	.btn-more.bg-none:hover {
		color: var(--color-gold);
		border-color: var(--color-gold);
	}
}

.btn-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.btn-wrap.center {
	justify-content: center;
}

@media (max-width: 800px) {
	.btn-more {
		width: 80%;
	}
}

/*診療カレンダー*/
:root {
	--event01: #EF866B;
	--event02: #F7B46B;
	--event03: #A8DBA8;
	--event04: #B0D7D5;
}

.business-calendar-box-wrap {
	margin-bottom: 15px;
}

.business-calendar-box-wrap .business-calendar {
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.business-calendar-box-wrap .business-calendar caption {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	margin: 0 0 10px;
}

.business-calendar-box-wrap .business-calendar caption span {
	line-height: 1;
	font-size: 25px;
	vertical-align: -1px;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
	display: inline-block;
	cursor: pointer;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	width: 25px;
	height: 25px;
}

.business-calendar-box-wrap .business-calendar-past a::before,
.business-calendar-box-wrap .business-calendar-future a::before {
	display: inline-block;
	content: "";
	border-style: solid;
	border-width: 7px 6px 7px 0;
	border-color: transparent #333 transparent transparent;
	position: absolute;
	top: 10px;
	left: 10px;
}

.business-calendar-box-wrap .business-calendar-future a::before {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.business-calendar-box-wrap .business-calendar th {
	background: #f1f3f4;
	border: 1px solid #dfdfdf;
	text-align: center;
	font-weight: bold;
	font-size: 15px;
	padding: 5px;
	width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
	background: #FFFFFF;
	border: 1px solid #dfdfdf;
	position: relative;
	font-size: 13px;
	padding: 5px;
	z-index: 0;
}

.business-calendar-box-wrap .business-calendar td::before {
	content: "";
	background: #ccc;
	border-radius: 50px;
	width: 25px;
	height: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
	opacity: 0;
}

.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
	padding: 10px;
	font-size: 15px;
}

.business-calendar-box-wrap.col2 {
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 3% 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
	text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0,
.business-calendar-box-wrap .business-calendar .attr1,
.business-calendar-box-wrap .business-calendar .attr2,
.business-calendar-box-wrap .business-calendar .attr3 {
	color: #fff;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
	opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
	background: var(--event01);
}

.business-calendar-box-wrap .business-calendar .attr1::before {
	background: var(--event02);
}

.business-calendar-box-wrap .business-calendar .attr2::before {
	background: var(--event03);
}

.business-calendar-box-wrap .business-calendar .attr3::before {
	background: var(--event04);
}

.list-event {
	display: flex;
}

.list-event li {
	font-size: 15px;
	line-height: 1;
	margin: 0 20px 0 0;
}

.list-event i {
	margin: 0 5px 0 0;
}

.list-event .event01 {
	color: var(--event01);
}

.list-event .event02 {
	color: var(--event02);
}

.list-event .event03 {
	color: var(--event03);
}

.list-event .event04 {
	color: var(--event04);
}

@media (max-width: 800px) {
	.business-calendar-box-wrap.col2 .business-calendar-box {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		grid-gap: 30px;
	}

	.list-event {
		display: block;
	}

	.list-event li+li {
		margin-top: 5px;
	}
}

/*診療時間*/
.time-table {
	text-align: center;
	overflow: hidden;
	margin-bottom: 5px;
}

.time-table-head {
	color: #fff;
	border-bottom: 1px solid #DFDFDF;
}

.time-table-head .item {
	padding: 10px 0;
}

.time-table-body {
	color: #fff;
	border-bottom: 1px solid #DFDFDF;
}

.time-table-body .item {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 10px 0;
}

.time-table-body .item span {
	font-size: 1rem;
	line-height: 1.4;
	white-space: nowrap;
}

.time-table-body .item:first-child {
	color: #fff;
	letter-spacing: 0;
}

.time-table-head,
.time-table-body {
	display: -ms-grid;
	display: grid;
	font-family: var(--font-jp);
	grid-template-columns: 110px repeat(8, 1fr);
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
	grid-template-columns: 220px repeat(8, 1fr);
}

.time-table-txt {
	font-size: 1.4rem;
}

@media (max-width: 800px) {
	.time-table-head {
		font-size: 12px;
	}

	.time-table-head .item {
		padding: 5px 0;
	}

	.time-table-body .item {
		padding: 5px 0;
		font-size: 13px;
	}

	.time-table-body .item:first-child {
		line-height: 1.3;
		font-size: 10px;
	}

	.time-table-body .item span {
		font-size: 0.9rem;
		line-height: 1.4;
		white-space: nowrap;
		letter-spacing: 0rem;
	}

	.time-table-head,
	.time-table-body {
		grid-template-columns: 80px repeat(8, 1fr);
	}
}

iframe {
	vertical-align: bottom;
}

/*------------
splide
-------------*/
.splide__container {
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0 2px;
	pointer-events: auto;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-sizing: border-box;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	-webkit-animation: splide-loading 1s linear infinite;
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

@-webkit-keyframes splide-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes splide-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.splide__track--fade>.splide__list {
	display: block;
}

.splide__track--fade>.splide__list>.splide__slide {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
	opacity: 1;
	position: relative;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb>.splide__list {
	display: block;
}

.splide__arrow {
	align-items: center;
	background: #e9e9e9;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 64px;
	width: 64px;
	justify-content: center;
	opacity: 0.7;
	padding: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
	content: "";
	width: 1rem;
	height: 1rem;
	border: solid #000;
	border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
	margin-left: 0.4rem;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.splide__arrow--next::after {
	margin-right: 0.4rem;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.splide__arrow svg {
	fill: #000;
	height: 1.2em;
	width: 1.2em;
}

@media (any-hover:hover) {
	.splide__arrow:hover:not(:disabled) {
		opacity: 0.9;
	}
}

.splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: calc((100% - 1080px) / 2);
}

.splide__arrow--prev svg {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.splide__arrow--next {
	right: calc((100% - 1080px) / 2);
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__pagination {
	bottom: 1em;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 3px;
	opacity: 0.7;
	padding: 0;
	position: relative;
	transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	transition: transform 0.2s linear, -webkit-transform 0.2s linear;
	width: 8px;
}

.splide__pagination__page.is-active {
	background: #333;
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
	z-index: 1;
}

@media (any-hover:hover) {
	.splide__pagination__page:hover {
		cursor: pointer;
		opacity: 0.9;
	}
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__progress__bar {
	background: #ccc;
	height: 3px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}

@media screen and (-ms-high-contrast: none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf;
	}
}

@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}

@media screen and (-ms-high-contrast: none) {
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf;
	}

	.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
		border-color: #0bf;
	}
}

.splide__toggle {
	cursor: pointer;
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
	border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: flex;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}

#slider-05 {
	max-width: 1024px;
	margin: 0 auto 30px;
}

#slider-05-thumb {
	padding: 0 60px;
	max-width: 450px;
	margin: 0 auto;
}

#slider-05-thumb img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100px;
	height: 70px;
}

#slider-05-thumb .splide__arrow--prev {
	left: -20px;
	-webkit-transform: translateY(-50%) scaleX(1);
	transform: translateY(-50%) scaleX(1);
}

#slider-05-thumb .splide__arrow--next {
	right: -20px;
}

#slider-05-thumb svg {
	display: none;
}

@media (max-width: 800px) {
	.splide__arrow {
		height: 44px;
		width: 44px;
	}

	#slider-05-thumb .splide__arrow--prev {
		left: 0px;
	}

	#slider-05-thumb .splide__arrow--next {
		right: 0px;
	}

	#slider-05-thumb img {
		height: 50px;
	}
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
	transition: opacity 1.2s, -webkit-transform 1s;
	transition: opacity 1.2s, transform 1s;
	transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
	opacity: 0;
	-webkit-transform: translateY(120px);
	transform: translateY(120px);
}

.js-fadein.is-show {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
	.js-fadein {
		opacity: 1;
		transform: none;
	}
}
