@charset "utf-8";

/*
* {
	outline: 1px solid red !important;
}*/

/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

:root {
	/*--content-width: 760px;*/
	--main-text: #333;
	--link-text: #333;
	
	--color-red1: #d65979;
	--color-red2: #edb8c7;
	--color-blue1: #238ca1;

	--color-bg1: #fbf8f7;
	--color-bg2: #f8e8ed;

	--font-maru: "KosugiMaru", sans-serif;
}

@font-face {
	font-family: "Noto Sans JP";
	src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: "Noto Sans JP";
	src: url("../fonts/NotoSansJP-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: "Noto Sans JP";
	src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2");
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: "Noto Sans JP";
	src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "KosugiMaru";
	src: url("../fonts/KosugiMaru-Regular.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}

html {
	font-size: 62.5%;
}
body,h1,h2,h3,h4,h5,h6,
p,th,td,dt,dd,li {
	font-size: 1.6rem;
	font-family: "Helvetica Neue",
	Arial, "Noto Sans JP","Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	line-height: 1.7;
	color: var(--main-text);
}
h1,h2,h3,h4,h5,h6,
/*dt,th,*/b,strong {
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	body,h1,h2,h3,h4,h5,h6,
	p,th,td,dt,dd,li {
		font-size: 1.4rem;
	}
}

table {
	border-collapse: collapse;
}
ul,
ol {
	padding: 0;
	list-style: none;
}
a,
a:link,
a:visited {
	color: var(--link-text);
	text-decoration: none;
}
#breadcrumbs a,
#pagetop a,
a#fancybox-close,
a#fancybox-next,
a#fancybox-prev {
	border: none;
}
@media (hover: hover) {
	/* リンクの場合 */
	a:any-link:hover {
		opacity: .7;
		color: var(--color-red1);
	}
	/* ボタンの場合 */
	button:enabled:hover {
		opacity: .7;
		color: var(--color-red1);
	}
	/* 特定できない場合 
	.button:where(:any-link, :enabled, summary):hover {
	}*/
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
/* スマホなど幅767px以下ではクリック可能に戻す */
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}


body {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	overflow-x: clip;
	background: var(--color-bg1);

/*	margin: 0 auto;
	max-width: 1920px;*/
}
/*@media screen and (min-width: 1920px) {
	html {
		background: var(--color-bg1);
	}
	body {
		margin: 0 auto;
		width: 1920px;
	}
}*/
main {
	flex: 1;
}


/**
	header
**/
header {
	/*background: rgba(245,245,220,.2);*/
	transition: opacity 0.4s ease;
	opacity: 1;
}
header.fixed {
	position: sticky;
	top: 0;
	z-index: 1;
	background: var(--color-bg1);
	opacity: 1;
	animation: fadeInHeader 0.4s forwards;

	position: fixed;
	width: 100%;
}
@keyframes fadeInHeader {
	from { opacity: 0; }
	to { opacity: 1; }
}

header .inner {
	position: relative;
	/*padding: 20px 0;*/

	display: flex;
	justify-content: space-between;
	/*align-items: center;*/
	margin: 0 auto;
	padding: 0 20px 0 30px;
	width: min(1580px, 100%);
	/*width: min(1680px, 100%);*/
}
/*header.fixed .inner {
	padding: 10px 0;
}*/

/*@media screen and (min-width: 1020px) and (max-width: 1280px) {
	header {
		padding-right: .5em;
		padding-left: .5em;
	}
}*/

header .logo {
	margin-top: 12px;
	width: 250px;
	height: auto;
}

header .group .apply {
	display: flex;
	justify-content: end;
	align-items: center;
	column-gap: 30px;
	padding-right: 10px;
}
header .group .apply .catch {
	font-size: 1.3rem;
}
header .group .apply .reserve a {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0 0 20px 20px;
	width: 220px;
	height: 50px;
	color: #fff;
	background: var(--color-red1);
}

/**
	navigation
**/
/*.menu-global-container {
	width: min(1000px, 100%);
}*/
#menu-global {
	position: relative;
	display: flex;
	/*justify-content: space-between;*/
}
#menu-global a,
#menu-global a:visited,
#menu-global a:active,
#menu-global a:hover {
	border: none;
}
/*#menu-global {
	display: flex;
	justify-content: space-between;
	margin: 0;
}*/
#menu-global li {
	position: relative;
}
#menu-global > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 30px;
	height: 70px;
}
#menu-global a::after {
	content: attr(data-desc);
	display: block;
	font-family: "Times New Roman", Times, serif;
	color: var(--sub-text);
	font-size: 1.3rem;
	text-align: center;
}
#menu-global .sub-menu {
	flex-direction: column;
	justify-content: start;
	position: absolute;
	top: 99%;
	left: 50%;
	/*padding: 5px 7px;*/
	width: 100%;
	background: var(--color-red1);
	opacity: 0;
	transform: translateX(-50%);
	transition: all .3s ease;
	visibility: hidden;
}
#menu-global > .menu-item:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	z-index: 999;
}
#menu-global > .menu-item:hover .sub-menu::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 22px;
	height: 12px;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	background: var(--color-red1);
}
#menu-global > .menu-item .sub-menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 4px 0;
	min-height: 50px;
	color: #fff;
	text-align: center;
}
#menu-global > .menu-item .sub-menu li:not(:last-of-type) a {
	border-bottom: 1px solid #fff;
}

/*.drawerBtn,*/
.small_navi,
.nav_hbg {
	display: none;
}

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

@media screen and (max-width: 1280px) {
	header .inner {
		padding-right: unset;
	}
	header .group .apply {
		column-gap: 20px;
		padding-right: unset;
	}
	#menu-global > li:last-of-type > a {
		padding-right: 20px;
	}
}

@media screen and (max-width: 1240px) {
	#menu-global {
		justify-content: end;
	}
	#menu-global > li > a {
		padding: 0 20px;
	}
}

@media screen and (max-width: 1140px) {
	header .group .apply .catch {
		font-size: 1.2rem;
	}

	#menu-global > li > a {
		padding: 0 15px;
	}
}

@media screen and (max-width: 1090px) {
	header .group .apply .catch {
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 1080px) {
	header .group .apply .catch {
		font-size: 1rem;
	}

	#menu-global > li > a {
		padding: 0 10px;
	}
}

@media screen and (max-width: 1024px) {
	header .inner {
		padding: 0 0 0 20px;
		height: 120px;
	}

	header .small_navi {
		position: absolute;
		/* top: 10px;
		right: 60px; */
		top: 5px;
		right: 8px;
		z-index: 9;
		display: flex;
		column-gap: 16px;
	}
	.drawerBtn {
		/* width: 100px;
		height: 100px; */
		padding-top: 8px;
		width: 60px;
		height: 60px;
		cursor: pointer;
		background: unset;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.drawerBtn.on {
		z-index: 9;
		background: #fff;
	}
	.drawerBtn > div {
		/* width: 45px;
		height: auto; */
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 42px;
	}
	.drawerBtn span {
		display: block;
		/* width: 100%; */
		width: 34px;
		height: 2px;
		background: var(--main-text);
		transition: .3s;
		border-radius: 2px;
	}
	.drawerBtn span + span {
		/* margin-top: 16px; */
		margin-top: 10px;
	}
	.drawerBtn.on span:nth-of-type(1) {
		/* transform: rotate(135deg) translate(20px, -18px); */
		transform: rotate(135deg) translate(11px, -11px);
	}
	.drawerBtn.on span:nth-of-type(2) {
		opacity: 0;
	}
	.drawerBtn.on span:nth-of-type(3) {
		transform: rotate(-135deg) translate(6.5px, 6px);
	}
	.drawerBtn b {
		display: inline-block;
		/* margin: 10px auto 0; */
		font-size: 1.4rem;
		font-weight: 400;
		text-transform: uppercase;
	}

	header .small_navi .reserve {
		display: none;
	}

	.menu-global-container {
		position: fixed;
		display: block;
		visibility: hidden;
		width: 300px;
		height: 100%;
		top: 50px;
		right: 0;
		z-index: 10;
		background: #fff5f5;
		transition: all .3s;
		transform: translateX(300px);
	}
	.menu-global-container.on {
		visibility: visible;
		transition: all .3s;
		transform: translateX(0);
	}


	header .apply .catch,
	header .apply .reserve,
	header .menu-global-container {
		display: none;
	}
	.nav_hbg {
		display: block;
		visibility: hidden;
		position: fixed;
		/* top: 100px; */
		top: 60px;
		right: 0;
		z-index: 10;
		padding-bottom: 30vh;
		overflow-y: scroll;
		width: 330px;
		height: 100%;
		background: #fff5f5;
		transition: all .3s;
		transform: translateX(330px);
	}
	.nav_hbg.on {
		visibility: visible;
		transition: all .3s;
		transform: translateX(0);
	}

	.overlay {
		display: none;
		position: fixed;
		top: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.6);
		z-index: 9;
	}
	.overlay.on {
		display: block;
		animation: show 0.2s linear 0s;
	}

	#menu-hbg1 a {
		display: block;
		display: flex;
		align-items: center;
		padding-left: .75em;
		width: 100%;
		height: 50px;
		color: #fff;
		background: var(--color-red1);
	}
	#menu-hbg1 .sub-menu a {
		padding: 10px 30px 10px 10px;
		height: unset;
		color: var(--main-text);
		background: var(--color-red2);
	}
	#menu-hbg1 > li:not(:last-of-type) a {
		border-bottom: 1px solid #fff;
	}
	#menu-hbg1 .menu-item-has-children.on .sub-menu {
		position: relative;
		display: block;
		top: unset;
		left: unset;
		padding: 0;
		width: 100%;
		background:none;
		transform: unset;
		text-align: left;
	}
	#menu-hbg1 li {
		position: relative;
	}
	#menu-hbg1 li.menu-item-has-children::before,
	#menu-hbg1 li.menu-item-has-children::after {
		display: block;
		position: absolute;
		background: #fff;
		content: '';
		width: 15px;
		height: 1px;
		top: 23px;
		right: 12px;
	}
	#menu-hbg1 li.menu-item-has-children::after {
		transform: translateY(-50%) rotate(90deg);
		transition: all .3s;
	}
	#menu-hbg1 li.menu-item-has-children.on::after {
		transform: translateY(-50%) rotate(0deg) !important;
	}
	#menu-hbg1 li.menu-item-has-children ul {
		display: none;
		padding: 10px 0;
		width: 330px;
		transition: all .3s;
	}
	#menu-hbg1 li.menu-item-has-children.on ul {
		display: block;
		transition: all .3s;
		-webkit-transition: all .3s;
		-moz-transition: all .3s;
		-o-transition: all .3s;
	}
	#menu-hbg1 li:not(.menu-item-has-children)::after,
	#menu-hbg1 li.menu-item-has-children.on li::after {
		content: '';
		display: block;
		position: absolute;
		top: 22px;
		right: 20px;
		width: 9px;
		height: 9px;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		transform: rotate(45deg) translateY(-50%);
		pointer-events: none;
	}

	#menu-hbg2 {
		display: flex;
		flex-direction: column;
		align-items: center;
		row-gap: 20px;
		margin: 20px 0;
	}
	#menu-hbg2 li a {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		border-radius: 6px;
		width: 240px;
		height: 48px;
	}
	#menu-hbg2 li:first-of-type a {
		background: #fc3;
	}
	#menu-hbg2 li:nth-of-type(2) a {
		color: #fff;
		background: var(--color-red1);
	}


	.nav_hbg .information {
		display: flex;
		flex-direction: column;
		align-items: center;
		row-gap: 20px;
		width: 330px;
	}
	.nav_hbg .information .logo {
		width: 250px;
	}
	.nav_hbg .information .address {
		font-size: 1.4rem;
	}
	.nav_hbg .information figure {
		width: 240px;
	}
		.nav_hbg .information .catch {
			padding: 0 1em;
			font-size: 1.4rem;
			text-align: center;
		}
}

@media screen and (max-width: 767px) {
	header .inner {
		padding: 0 0 0 15px;
		height: 70px;
	}
	header .logo {
		margin-top: 10px;
		width: 130px;
	}
	/* header .small_navi {
		top: 5px;
		right: 8px;
		column-gap: 16px;
	}
	.drawerBtn {
		padding-top: 8px;
		width: 60px;
		height: 60px;
	}
	.drawerBtn > div {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 42px;
	}
	.drawerBtn span {
		width: 34px;
	}
	.drawerBtn span + span {
		margin-top: 10px;
	}
	.drawerBtn.on span:nth-of-type(1) {
		transform: rotate(135deg) translate(11px, -11px);
	}
	.drawerBtn b {
		margin: unset;
		font-size: 1.4rem;
	}
	header .small_navi .reserve a {
		width: 120px;
		height: 60px;
		font-size: 1.4rem;
	}
	.nav_hbg {
		top: 60px;
	} */
}


/**
pagetop
**/
.pagetop {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 5%;
	bottom: 10%;
	border: 1px solid #ccc;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #fff;
	transition: .15s ease-in-out;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.pagetop {
		right: .5em;
		bottom: 2em;
	}
}

/**
	footer
**/
footer {
	background: #fff;
}
footer .inner {
	display: flex;
	justify-content: space-between;
	gap: 20px 10px;
	margin: 0 auto;
	padding: 100px 0 25px;
	/*width: min(1520px, calc(100% - 100px));*/
	width: min(1280px, calc(100% - 100px));
}

footer .clinic_sign {
	display: flex;
	column-gap: 60px;
}

footer .information {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 330px;
}
footer .information .logo {
	margin-bottom: 20px;
	width: 250px;
}
footer .information .address {
	font-size: 1.4rem;
}
footer .information figure {
	margin-bottom: 20px;
	width: 240px;
}
footer .information ul {
	display: flex;
}
footer .information ul li {
	position: relative;
}
footer .information ul li:not(:last-of-type) {
	margin-right: 1em;
}
footer .information ul li:not(:last-of-type)::after {
	content: "｜";
	position: absolute;
	top: 0;
	right: -1em;
	width: 1em;
	height: 1em;
	color: var(--color-red1);
}
footer .information ul li a {
	color: var(--color-red1);
}

footer figure.appearance {
	margin-top: 56px;
	width: 316px;
}

.clinic_hours {
	width: 460px;
}
.clinic_hours table {
	margin-bottom: 14px;
	border-bottom: 1px solid #a2a2a2;
	width: 100%;
}
/*.clinic_hours table thead tr th:first-of-type {
	text-align: left;
}
.clinic_hours table thead tr th:first-of-type span {
	position: relative;
}
.clinic_hours table thead tr th:first-of-type span::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 28px;
	background: url('../images/common/')
}*/
.clinic_hours table th,
.clinic_hours table td {
	padding: .5em 0;
	text-align: center;
	font-family: var(--font-maru);
	line-height: 1.3;
}
.clinic_hours table thead th:first-of-type {
	width: 120px;
	width: 28%;
}
.clinic_hours table thead th:not(:first-of-type) {
	width: calc(calc(100% - 120px) / 6);
	width: 12%;
}
.clinic_hours table thead th:first-of-type img {
	width: 116px;
}
.clinic_hours table th {
	font-weight: 400;
}
.clinic_hours table tbody th {
	letter-spacing: 0.01em;
}
.clinic_hours table tbody th,
.clinic_hours table tbody td {
	border-top: 1px solid #a2a2a2;
}
.clinic_hours table tbody th span {
	display: block;
	font-size: 1.3rem;
	letter-spacing: unset;
}
.clinic_hours table tbody th span span {
	display: inline-block;
}
.clinic_hours table tbody th span span:first-of-type {
	margin-right: .25em;
}
.clinic_hours table tbody td {
	color: var(--color-red2);
}
.clinic_hours table tbody td:nth-of-type(3n) {
	color: var(--color-red1);
}
.clinic_hours table tbody tr:first-of-type td {
	vertical-align: top;
}
.clinic_hours table tbody td img {
	display: inline-block;
	width: 13px;
}
/*.clinic_hours table tbody td img.none {
	height: 2px;
}*/
.clinic_hours table tbody td > span {
	display: block;
	font-size: 1.2rem;
}
.clinic_hours table tbody td span span {
	display: inline-block;
}

.clinic_hours p.closed {
	margin-bottom: 14px;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color-red1);
	text-align: center;
}
.clinic_hours ul li {
	position: relative;
	padding-left: 1em;
	font-size: 1.1rem;
	line-height: calc(18 / 11);
}
.clinic_hours ul li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
}

footer .copyright {
	/*margin-top: 25px;*/
	padding: 30px 0;
	border-top: 2px solid var(--color-red1);
	font-size: 1.4rem;
	font-style: normal;
	text-align: center;
}

@media screen and (max-width: 1360px) {
	footer .clinic_sign {
		column-gap: 40px;
	}
}

@media screen and (max-width: 1280px) {
	footer .inner {
		padding: 60px 0 65px 48px;
		width: min(1000px, 100%);
	}
	footer .clinic_sign {
		flex-direction: column;
		align-items: center;
		row-gap: 46px;
	}
	footer figure.appearance {
		margin: unset;
	}
	footer .clinic_hours {
		margin-top: 48px;
	}
}

@media screen and (max-width: 1240px) {
	/*footer .inner {
		flex-wrap: wrap;
		justify-content: center;
		width: calc(100% - 20px);
	}footer figure.appearance {
		width: 300px;
	}footer .clinic_hours {
		width: 430px;
	}
	footer .clinic_hours table tbody td > span {
		font-size: 1.1rem;
	}*/
}

@media screen and (max-width: 1024px) {
	footer .inner {
		padding: 108px 0 65px;
		width: min(768px, 100%);
	}
	footer .clinic_sign {
		row-gap: 38px;
	}
	footer .information {
		width: 260px;
	}
	footer .information .logo {
		width: 208px;
	}
	footer .information .address {
		font-size: 1.1rem;
	}
	footer .information figure {
		width: 198px;
	}
	footer .information ul li {
		font-size: 1.3rem;
	}
	footer figure.appearance {
		width: 260px;
	}
	footer .clinic_hours {
		margin: unset;
	}
	footer .clinic_hours table thead th:first-of-type {
		width: 24%;
	}
	footer .clinic_hours table thead th:not(:first-of-type) {
		width: calc(76% / 6);
	}
	footer .clinic_hours table thead th:first-of-type img {
		width: 100px;
	}
	footer .copyright {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 767px) {
	footer .inner {
		flex-direction: column-reverse;
		align-items: center;
		row-gap: 14px;
		padding: 36px 15px 55px;
	}
	footer .clinic_sign {
		row-gap: 32px;
	}

	.clinic_hours {
		width: min(380px, 100%);
	}
	.clinic_hours table {
		width: 100%;
	}
	.clinic_hours table thead th:first-of-type {
		width: 21%;
	}
	.clinic_hours table thead th:not(:first-of-type) {
		width: calc(79% / 6);
	}
	.clinic_hours table th,
	.clinic_hours table td {
		font-size: 1.3rem;
	}
	.clinic_hours table tbody th span,
	.clinic_hours table tbody td > span {
		font-size: 1.1rem;
	}
	.clinic_hours p.closed {
		font-size: 1.5rem;
	}
	.clinic_hours ul li:not(:last-of-type) {
		margin-bottom: 1em;
	}
	.clinic_hours ul li br {
		display: none;
	}
}

@media screen and (max-width: 539px) {
	.clinic_hours {
		width: unset;
	}
	.clinic_hours table thead th:first-of-type {
		/*width: 100px;
		width: 28%;*/
		width: 23%;
	}
	.clinic_hours table thead th:not(:first-of-type) {
		/*width: calc(calc(100% - 100px) / 6);
		width: 12%;*/
		width: calc(calc(100% - 23%) / 6);
	}
	.clinic_hours table thead th:first-of-type img {
		width: 90px;
	}

	.clinic_hours table th,
	.clinic_hours table td {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 440px) {
	footer .copyright {
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 390px) {
	.clinic_hours table tbody th span span:first-of-type {
		margin: unset;
	}
}


/**
	General Settings
**/
#breadcrumbs {
	margin: 32px auto;
	width: min(1280px, 98%);
	font-size: 1.4rem;
}

main {
	margin: auto;
	/*padding: 0 1em;*/
	width: 100%;
}
/*main,
header {
	background: var(--color-bg1);
}*/
/*main div, main table, main p, main dl, main ul, main ol, main figure, main video, main iframe {
	width: 100% !important;
}*/
/*main [class^="sec_"] .inner {
	margin: 0 auto;
	width: min(1280px, 100%);
}*/
/*main h2 {
	font-size: 2.6rem;
}
main h3 {
	font-size: 2rem;
}*/

/**
	Shared Style
**/

main {
  height: auto;
}
main section h2 {
	font-size: 2.7rem;
	font-family: var(--font-maru);
	letter-spacing: 0.01em;
}
main section h2 span {
	color: var(--color-red1);
}


.inner900{
	width:auto;
	max-width:900px;
	margin:0 auto;	
}


@media screen and (max-width: 1024px) {
	.inner900 {
			width: 90%;
	}
}


/**
 * 箇条書き
**/
ul.disc li,
ul.kome li {
	position: relative;
	padding-left: 1em;
}
ul.disc li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
}
ul.kome li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
}

ul.link_blue li::before {
	color: var(--color-blue1);
}
ul.link_blue li a {
	color: var(--color-blue1);
	text-decoration: underline;
}

/**
 * 番号付きフロー
**/
ul.flow_num {
	counter-reset: number;
}
ul.flow_num li {
	position: relative;
	margin-left: 20px;
	padding: 8px 0 40px 40px;
	border-left: 2px dotted var(--color-red1);
}
ul.flow_num li::before {
	counter-increment: number 1;
	content: counter(number);
	background: var(--color-red1);
	width: 40px;
	height: 40px;
	text-align: center;
	font-size: 1.8rem;
	font-family: 'Roboto Condensed', Arial, Helvetica, "sans-serif";
	line-height: 40px;
	border-radius: 50%;
	color: #fff;
	position: absolute;
	top: 0;
	left: -20px;
}
@media screen and (max-width: 767px) {
	ul.flow_num li {
		margin-left: 15px;
		padding: 4px 0 40px 30px;
	}
	ul.flow_num li::before {
		width: 30px;
		height: 30px;
		font-size: 1.6rem;
		line-height: 30px;
		left: -15px;
	}
}

/**
 * FAQアコーディオン
**/
dl.acrd {
	margin: 1em auto 3em;
}
dl.acrd dt,
dl.acrd dd {
	position: relative;
	padding-left: 1.25em;
}
/*dl.acrd.faq dt,
dl.acrd.faq dd {
	padding-left: 1.25em;
}*/
dl.acrd dt {
	margin: 1em 0 .25em;
	padding-bottom: .25em;
	padding-right: 1.25em;
	border-bottom: 1px solid rgba(0,0,0,.2);
	cursor: pointer;
}
dl.acrd.faq dt::before {
	position: absolute;
	content: "Q";
	width: 1em;
	height: 1em;
	top: 0;
	left: 0;
	color: var(--sub-text);
}
dl.acrd dt::after {
	position: absolute;
	content: "▼";
	width: 1em;
	height: 1em;
	right: 0;
	top: 0;
	color: var(--sub-text);
}
dl.acrd dt.on::after {
	content: "▲";
}
dl.acrd dd {
	display: none;
}
dl.acrd.faq dt.on + dd::before {
	position: absolute;
	content: "A";
	width: 1em;
	height: 1em;
	top: 0;
	left: 0;
	color: var(--sub-text);
}

/**
	テーブルのスタイルを上書き
**/
.wp-block-table th,
.wp-block-table td {
	border: none;
}
.wp-block-table table {
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
.wp-block-table th,
.wp-block-table td {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}


/*
	outline
*/
body:not(.home) main {
	margin: 0 auto;
	width: min(1280px, 100%);
}

.sec_head .inner {
	margin-bottom: 100px;
	padding: 80px 0 0;
}
.sec_head h1 {
	margin-bottom: 10px;
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: .2em;
}
.sec_head p {
	margin-bottom: 80px;
	font-weight: 500;
}
.sec_head img {
	border-radius: 30px;
}

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

.bg_white1 {
	margin: 0 auto;
	padding: 50px 60px;
	border-radius: 30px;
	/*width: min(900px, 100%);*/
	background: #fff;
}
.border_red {
	padding: 40px 80px;
	border: 1px solid var(--color-red1);
}

@media screen and (max-width: 1380px) {
	body:not(.home) main {
		padding: 0 15px;
	}
}

@media screen and (max-width: 1024px) {
.sec_head .inner {
    margin-bottom: 80px;
    padding: 50px 0 0;
}
.sec_head h1 {
    margin-bottom: 0px;
}
	.sec_head p {
		margin-bottom: 30px;
	}
	.bg_white1 {
		padding: 8%;
	}
	.border_red {
		padding: 4%;
	}
}
@media screen and (max-width: 600px) {
.sec_head .inner {
    margin-bottom: 60px;
    padding: 40px 0 0;
}
.sec_head h1 {
	font-size: 2.2rem;
}
	.sec_head p {
		margin-bottom: 20px;
	}
}

/*
	リニューアル前サイトのスタイル
	`page.css`から抜粋
*/
.center {
	text-align: center;
}
.right {
	text-align: right;
}

.blk {
	color: #D65979;
}
a.link_border {
	border-bottom: #333333 1px solid;
	line-height: 1;
}


.br1000, .br600, .br415, .br375{
	display: none;
}
.pnk{
	color: #D65979;
}
.red{
	color: #ff0000;
}
.grn{
	color: #0bb700;
}
@media screen and (max-width: 1000px) {
	.br1000 {
		display: block;
	}
}
@media screen and (max-width: 600px) {
	.br600 {
		display: block;
	}
}
@media screen and (max-width: 415px) {
	.br415 {
		display: block;
	}
}
@media screen and (max-width: 375px) {
	.br375 {
		display: block;
	}
}

/*set table
──────────────────*/
.table1 {
	width: 100%;
	margin: 30px auto;
	background-color: #fff;
}
.table1 th,
.table1 td {
	border: 1px solid #ccc;
	padding: 20px;
	line-height: 1.5;
}
.table1 th {
	background-color: #efefef;
}
.table1 tr td:nth-of-type(1) {
	text-align: center;
}
