@charset "UTF-8";
/*-----------------------------------------------------------
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.7;
}

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;
	appearance: none;
	font-size: inherit;
}

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

::selection {
	background: #d4dcd6;
}

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

body,
html {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	font-family: "ヒラギノUD角ゴ StdN W3", sans-serif, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
	color: #4A2B2B;
	font-size: 18px;
	line-height: 1.7;
	letter-spacing: 0.05em;
	background-color: #FFFAF0;
}
body.is-open {
	overflow: hidden;
}

html {
	scroll-behavior: smooth;
}

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

@media (max-width: 800px) {
	:target {
		scroll-margin-top: 0;
	}
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	line-height: 1.3;
	font-weight: 600;
}

@media (max-width: 800px) {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		line-height: 1.4;
	}
}
th, dt {
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
}

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

.container, .footer-inr, .breadcrumb ul {
	margin: 0 auto;
	max-width: 1024px;
	width: 90%;
}
.container.wide, .wide.footer-inr, .breadcrumb ul.wide {
	max-width: 1200px;
}
.container.wide-more, .wide-more.footer-inr, .breadcrumb ul.wide-more {
	max-width: 1400px;
}
.container.narrow, .narrow.footer-inr, .breadcrumb ul.narrow {
	max-width: 800px;
}

@media (max-width: 800px) {
	body {
		font-size: 15px;
		line-height: 1.8;
	}
	h1, h2, h3, h4, h5, h6 {
		line-height: 1.4;
	}
	.container, .footer-inr, .breadcrumb ul {
		margin: 0 auto;
		max-width: 90%;
		width: 90%;
	}
}
/*------------
Header
--------------*/
.header {
	position: fixed;
	width: 100%;
	transition: 0.3s;
	z-index: 9999;
}
.header-inr {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	height: 200px;
}
.header .h-logo {
	width: 30%;
	max-width: 317px;
	transition: 0.3s;
}
.header .h-logo a {
	display: block;
}
.header .h-logo img {
	width: 100%;
}
.header .h-right {
	padding-right: 50px;
	padding-top: 20px;
}
.header.is-fixed .h-logo {
	opacity: 0;
	pointer-events: none;
}
.header .humberger {
	display: none;
}

.sp-navi-child {
	display: none;
}

@media (max-width: 800px) {
	.header {
		position: relative;
	}
	.header.is-open {
		position: fixed;
	}
	.header.is-open .header-inr {
		height: 70px;
	}
	.header.is-open .h-logo {
		opacity: 0;
		pointer-events: none;
	}
	.header-inr {
		display: flex;
		height: auto;
	}
	.header .h-logo {
		width: 162px;
		max-width: none;
	}
	.header .h-right {
		display: none;
	}
	.header .humberger {
		display: block;
		width: 50px;
		height: 50px;
		border-radius: 10px;
		cursor: pointer;
		transition: 0.5s;
		position: fixed;
		background: #F5A12C;
		z-index: 9999;
		top: 16px;
		right: 16px;
	}
	.header .humberger span {
		background: #fff;
		position: absolute;
		width: 25px;
		height: 1px;
		transition: 0.4s;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.header .humberger span:nth-of-type(1) {
		top: 35%;
	}
	.header .humberger span:nth-of-type(2) {
		top: 50%;
	}
	.header .humberger span:nth-of-type(3) {
		top: 65%;
	}
	.header .humberger.is-open span:nth-of-type(1) {
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.header .humberger.is-open span:nth-of-type(2) {
		display: none;
	}
	.header .humberger.is-open span:nth-of-type(3) {
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}
}
/*------------
G-navi
--------------*/
/*drawer*/
.pc-navi-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.pc-navi-img {
	width: 131px;
	height: 131px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	border-radius: 50%;
}
@media (max-width: 1250px) {
	.pc-navi-img {
		width: 100px;
		height: 100px;
	}
}
.pc-navi .item {
	line-height: 1.4;
	z-index: 1;
}
.pc-navi .item .item-link {
	display: block;
	position: relative;
}
.pc-navi .item .item-link::before {
	position: absolute;
	bottom: 31px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 20px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	color: #4A2B2B;
	text-align: center;
	font-size: 15px;
	z-index: 2;
	transition: 0.3s;
}
@media (max-width: 1250px) {
	.pc-navi .item .item-link::before {
		font-size: 13px;
		bottom: 18px;
	}
}
.pc-navi .item .item-link.icon01::before {
	content: "HOME";
}
.pc-navi .item .item-link.icon02::before {
	content: "会社案内";
}
.pc-navi .item .item-link.icon03::before {
	content: "スタッフ紹介";
}
.pc-navi .item .item-link.icon04::before {
	content: "ご利用案内";
}
.pc-navi .item .item-link.icon05::before {
	content: "サービス案内";
}
.pc-navi .item .item-link.icon06::before {
	content: "よくある質問";
}
.pc-navi .item .item-link:hover::before {
	color: #F5A12C;
}
.pc-navi .item:not(:last-child) {
	margin-right: 15px;
}
@media (max-width: 1250px) {
	.pc-navi .item:not(:last-child) {
		margin-right: 10px;
	}
}

.pc-dropdown {
	position: relative;
}
.pc-dropdown .pc-navi-child {
	background-color: #FFEBCE;
	border-radius: 30px;
	position: absolute;
	top: calc(100% - 10px);
	left: 50%;
	text-align: left;
	padding: 40px;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	width: fit-content;
	transform: translate(-50%, -10px);
	transition: 0.4s ease-in-out;
}
.pc-dropdown .pc-navi-child li {
	font-size: 15px;
	line-height: 1.6;
	width: 100%;
	white-space: nowrap;
	position: relative;
	padding-left: 15px;
}
.pc-dropdown .pc-navi-child li::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	transform: rotate(45deg);
	width: 5px;
	height: 5px;
	border: 0px;
	border-top: 1px solid #F5A12C;
	border-right: 1px solid #F5A12C;
}
.pc-dropdown .pc-navi-child li:not(:last-child) {
	margin-bottom: 10px;
}
.pc-dropdown .pc-navi-child li:hover {
	text-decoration: underline;
}
.pc-dropdown .pc-navi-child::before {
	content: "";
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/share/navi-deco.svg);
	width: 16px;
	height: 14px;
}
.pc-dropdown:hover .pc-navi-child {
	pointer-events: auto;
	transform: translate(-50%, 0);
	opacity: 1;
}
.pc-dropdown:hover .item-link::before {
	color: #F5A12C;
}

.sp-navi {
	display: none;
}

@media (max-width: 800px) {
	.pc-navi {
		display: none;
	}
	:root {
		--navi-background: #fff;
		--navi-border-color: #DED8D8;
		--navi-text-color: #4A2B2B;
		--svg-stroke: #4A2B2B;
		--menu-btn: #4A2B2B;
		--navi-font: $font01,"游ゴシック Medium", "Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
		--sp-btn-color: #E67A7A;
	}
	.sp-navi {
		display: block;
		position: relative;
		/* ボタン類 */
		/* コンテンツ */
	}
	.sp-navi .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: 50px;
		z-index: 10000;
	}
	.sp-navi .sp-navi-btns > * {
		flex: 1;
		position: relative;
	}
	.sp-navi .sp-navi-btns .item {
		font-size: 10px;
		font-family: var(--navi-font);
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
		white-space: nowrap;
	}
	.sp-navi .sp-navi-btns .item:not(:last-child) {
		border-right: 1px solid var(--navi-border-color);
	}
	.sp-navi .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: 7px 0 5px;
	}
	.sp-navi .sp-navi-btns .item > div {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		color: var(--navi-text-color);
		text-decoration: none;
		height: 100%;
		padding: 7px 0 5px;
	}
	.sp-navi .sp-navi-btns .item .img {
		display: block;
		margin-bottom: 6px;
	}
	.sp-navi .sp-navi-btns .item .ttl {
		display: block;
	}
	.sp-navi .sp-menu-btn {
		background-color: transparent;
		border: none;
		cursor: pointer;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		padding-bottom: 7px;
	}
	.sp-navi .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-navi .sp-menu-btn span:not(.ttl) {
		background: var(--menu-btn);
		position: absolute;
		left: 50%;
		width: 22px;
		height: 1px;
		transform: translateX(-50%);
		transition: 0.4s;
	}
	.sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(1) {
		top: 11px;
	}
	.sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(2) {
		top: 17px;
	}
	.sp-navi .sp-menu-btn span:not(.ttl):nth-of-type(3) {
		top: 23px;
	}
	.sp-navi .sp-menu-btn.is-open span:nth-of-type(1) {
		transform: translate(-50%, 6px) rotate(-45deg);
	}
	.sp-navi .sp-menu-btn.is-open span:nth-of-type(2) {
		opacity: 0;
	}
	.sp-navi .sp-menu-btn.is-open span:nth-of-type(3) {
		transform: translate(-50%, -6px) rotate(45deg);
	}
	.sp-navi .sp-navi-contents {
		pointer-events: none;
		visibility: hidden;
		background: #fff;
		font-family: var(--navi-font);
		padding: 80px 10% 100px;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transition: 0.5s;
		opacity: 0;
		z-index: 999;
	}
	.sp-navi .sp-navi-contents.is-open {
		pointer-events: auto;
		visibility: visible;
		overflow-y: hidden;
		opacity: 1;
	}
	.sp-navi .sp-navi-list {
		border-top: 1px solid #FFD9A5;
		margin: 0 0 30px;
	}
	.sp-navi .sp-navi-list > li {
		border-bottom: 1px solid #FFD9A5;
	}
	.sp-navi .sp-navi-list > li > a, .sp-navi .sp-navi-list > li span {
		display: block;
		font-size: 14px;
		font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
		font-weight: 600;
		line-height: 1;
		text-decoration: none;
		padding: 15px 0;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown {
		position: relative;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown::before, .sp-navi .sp-navi-list > li.sp-dropdown::after {
		content: "";
		background-color: #F5A12C;
		position: absolute;
		transition: 0.5s;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown::before {
		width: 1px;
		height: 11px;
		top: 17px;
		right: 20px;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown::after {
		width: 11px;
		height: 1px;
		top: 22px;
		right: 15px;
	}
	.sp-navi .sp-navi-list > li.sp-dropdown.is-on::before {
		transform: rotate(90deg);
	}
	.sp-navi .sp-navi-list > li.sp-dropdown > a {
		padding: 15px 0;
		width: 85%;
	}
	.sp-navi .sp-navi-list .child {
		padding: 0 0 15px;
	}
	.sp-navi .sp-navi-list .child > ul > li {
		position: relative;
		padding-left: 15px;
		line-height: 2;
		font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
		font-weight: 600;
	}
	.sp-navi .sp-navi-list .child > ul > li::before {
		content: "-";
		color: #F5A12C;
		position: absolute;
		left: 0;
		top: 0;
	}
	.sp-navi .sp-navi-list .child > ul > li > a {
		display: inline-block;
		font-size: 13px;
		text-decoration: none;
	}
	.sp-navi .sp-btn {
		background: var(--sp-btn-color);
		border-radius: 5px;
		color: #fff;
		display: block;
		padding: 10px;
		text-align: center;
		transition: 0.5s;
	}
	.sp-navi-menu {
		position: fixed;
		bottom: 50px;
		width: 100%;
		padding: 45px 40px 20px;
		opacity: 0;
		background: #FFEBCE;
		border-radius: 20px 20px 0 0;
		transition: 0.3s;
		z-index: 99999;
		pointer-events: none;
	}
	.sp-navi-menu.is-open {
		opacity: 1;
		pointer-events: auto;
	}
	.sp-navi-menu .sp-navi-menu-list li {
		padding-left: 15px;
		position: relative;
		font-size: 14px;
		line-height: 2.2;
		z-index: 1;
	}
	.sp-navi-menu .sp-navi-menu-list li::before {
		content: "";
		position: absolute;
		top: 12px;
		left: 0;
		transform: rotate(45deg);
		width: 5px;
		height: 5px;
		border: 0px;
		border-top: 1px solid #F5A12C;
		border-right: 1px solid #F5A12C;
	}
	.sp-navi-menu .sp-navi-menu-list li:hover {
		text-decoration: underline;
	}
	.sp-navi-menu .sp-navi-close {
		position: absolute;
		right: 16px;
		top: 15px;
		z-index: 1;
	}
}
/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
	width: 100%;
	position: relative;
	padding: 165px 0 0;
	background: url(../images/hero_bg.png) center/cover no-repeat;
}
@media (max-width: 1350px) {
	.hero {
		padding-bottom: 120px;
	}
}
.hero .splide {
	margin-bottom: 60px;
}
.hero .splide__slide img {
	margin: 0 auto;
	width: calc(100% - 200px);
	object-fit: cover;
}
.hero .splide__pagination {
	display: none;
}
.hero-desc {
	position: absolute;
	bottom: 0;
	left: 2%;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 30px;
	padding: 30px 50px;
}
.hero-ttl {
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	font-size: 53px;
	line-height: 1.3;
	margin-bottom: 10px;
}
@media (max-width: 1100px) {
	.hero-ttl {
		font-size: 40px;
	}
}
.hero .color01 {
	font-size: 93px;
	color: #F5A12C;
}
@media (max-width: 1100px) {
	.hero .color01 {
		font-size: 60px;
	}
}
.hero .color02 {
	font-size: 93px;
	color: #9BC83A;
}
@media (max-width: 1100px) {
	.hero .color02 {
		font-size: 60px;
	}
}
.hero-sub-ttl {
	font-size: 25px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
}
@media (max-width: 1100px) {
	.hero-sub-ttl {
		font-size: 20px;
	}
}

.hero .btn-img {
	position: absolute;
	right: 2%;
	bottom: 10%;
}
.hero .hero-deco01 {
	right: 0;
	top: 15%;
}
.hero .hero-deco02 {
	left: 0;
	bottom: 25%;
}

@media (max-width: 800px) {
	.hero {
		padding-top: 0;
		padding-bottom: 130px;
		background: url(../images/bg.png) center/cover no-repeat;
	}
	.hero .splide {
		margin-bottom: 0;
	}
	.hero .splide__slide img {
		width: calc(100% - 32px);
	}
	.hero .splide__pagination {
		display: none;
	}
	.hero-desc {
		width: 95%;
		padding: 15px 15px 15px 20px;
		left: 2%;
	}
	.hero-ttl {
		font-size: clamp(20px, 5.5vw, 23px);
		display: inline-block;
	}
	.hero .color01 {
		font-size: 41px;
	}
	.hero .color02 {
		font-size: 41px;
	}
	.hero-sub-ttl {
		font-size: clamp(11px, 3.3vw, 13px);
		display: inline-block;
	}
	.hero .hero-deco01 {
		right: 0;
		top: -15%;
		width: 30%;
	}
	.hero .hero-deco02 {
		left: 0;
		bottom: 30%;
		width: 20%;
	}
	.hero .btn-img {
		position: absolute;
		right: 2%;
		bottom: 140px;
		width: 38%;
	}
	
}
/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
.t-ttl {
	text-align: center;
	margin-bottom: 50px;
}
.t-ttl .jp {
	display: block;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	font-size: 47px;
	margin-bottom: 10px;
}
.t-ttl .en {
	font-family: "futura-pt", sans-serif;
	font-size: 30px;
	font-weight: 500;
	color: #F5A12C;
	line-height: 1;
}

@media (max-width: 800px) {
	.t-ttl {
		margin-bottom: 30px;
	}
	.t-ttl .jp {
		font-size: 24px;
		margin-bottom: 5px;
	}
	.t-ttl .en {
		font-size: 20px;
	}
}
/*------------
Block
--------------*/
.sec01 {
	padding: 110px 0;
	position: relative;
}
.sec01-layout {
	display: flex;
	flex-direction: row-reverse;
}
.sec01-layout .l-img {
	width: 42.7%;
}
.sec01-layout .l-img img {
	width: 100%;
	border-radius: 50px;
}
.sec01-layout .l-desc {
	width: 50%;
	padding-right: 88px;
	position: relative;
}
.sec01-layout .l-desc::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -171px;
	background: url(../images/sec01_deco2.png) center/contain no-repeat;
	width: 349px;
	height: 314px;
	z-index: -1;
}
.sec01-layout .l-ttl {
	font-size: 20px;
	text-align: right;
	margin-top: 30px;
}
.sec01-layout .l-ttl .place {
	display: block;
	padding-right: 45px;
	margin-bottom: 7px;
}
.sec01-layout .l-ttl .job {
	margin-right: 25px;
}
.sec01-layout .l-ttl .name {
	font-size: 25px;
}
.sec01-deco01 {
	bottom: -30%;
	right: 0;
}

.sec02 {
	padding: 110px 0 218px;
	position: relative;
}
.sec02-layout {
	display: flex;
}
.sec02-layout .l-img {
	width: 50%;
}
.sec02-layout .l-img img {
	width: 100%;
	border-radius: 50px;
}
.sec02-layout .l-desc {
	width: 50%;
	padding-left: 50px;
}
.sec02-layout .l-desc .l-ttl {
	font-size: 30px;
	margin-bottom: 36px;
}
.sec02-layout .l-desc p + p {
	margin-top: 40px;
}
.sec02-layout .l-desc .marker {
	background: linear-gradient(transparent 30%, #FFD95C 30%);
}
.sec02-layout .l-btn {
	margin-top: 50px;
	display: flex;
}
.sec02-layout .l-btn a:not(:last-child) {
	margin-right: 20px;
}
.sec02::before {
	content: "";
	position: absolute;
	bottom: 14%;
	left: 0;
	background-color: #FFEBCE;
	width: 100%;
	height: 41%;
}

.sec03 {
	padding-bottom: 156px;
	position: relative;
}
.sec03-layout {
	display: flex;
	margin: 70px 0;
}
.sec03-layout .l-img {
	width: 57.8%;
	position: relative;
	z-index: -1;
}
.sec03-layout .l-img::before {
	content: "";
	position: absolute;
	top: -8%;
	left: -20%;
	background: url(../images/sec03_itemdeco1.png) center/contain no-repeat;
	width: 271px;
	height: 243px;
	z-index: -1;
}
.sec03-layout .l-img img {
	width: 100%;
	border-radius: 50px;
}
.sec03-layout .l-desc {
	flex: 1;
	position: relative;
	background-color: #FFEBCE;
	border-radius: 50px;
	padding: 44px 72px 50px;
	margin: 90px 0 0 -6.64%;
}
.sec03-layout .l-desc::before {
	content: "";
	position: absolute;
	bottom: -30%;
	right: -15%;
	background: url(../images/sec03_itemdeco2.png) center/contain no-repeat;
	width: 245px;
	height: 220px;
	z-index: -1;
}
.sec03-layout .l-desc .l-ttl {
	font-size: 30px;
	margin-bottom: 26px;
}
.sec03-layout .l-desc .btn-more {
	margin-top: 30px;
}
@media (max-width: 1400px) {
	.sec03-layout .l-desc {
		padding: 44px 49px 50px;
	}
}
.sec03-layout.reverse {
	flex-direction: row-reverse;
}
.sec03-layout.reverse .l-img::before {
	display: none;
}
.sec03-layout.reverse .l-desc {
	margin: 90px -6.64% 0 0;
}
.sec03-layout.reverse .l-desc::before {
	display: none;
}
.sec03-list .list-ttl {
	font-size: 35px;
	border-bottom: 5px dotted #F5A12C;
	padding-bottom: 8px;
	margin-bottom: 30px;
}
.sec03-list .item-list {
	background-color: #FFEBCE;
	padding: 40px;
	border-radius: 30px;
	border: 1px solid #F5A12C;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap:20px;
}

.sec03-list .item-list > li>a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	transition: .3s;
	background: #F5A12C;
	border-radius: 20px;
	color: #fff;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	line-height: 1.66;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	padding: 20px;
}
.sec03-list .item-list > li>a:hover{
	opacity: 0.5;
}
.sec03-list .item-list > li:nth-child(2)>a{
	background: #9BC83A;
}
.sec03-list .item-list > li:nth-child(3)>a{
	background: #69ACE1;
}
.sec03-list .item-list > li:nth-child(4)>a{
	background: #CB95C7;
}
.sec03 .item {
	background-color: #fff;
	overflow: hidden;
	border-radius: 40px;
	margin: 0 8.33%;
	padding-bottom: 94px;
	z-index: 0;
}
.sec03 .item-ttl {
	font-size: 37px;
	text-align: center;
	background-color: #FFEBCE;
	padding: 40px;
}
.sec03 .item + .item {
	margin-top: 91px;
}
.sec03-deco01 {
	top: 12%;
	left: 0;
	z-index: 1;
}
.sec03-deco02 {
	top: 35%;
	left: 0;
	z-index: 1;
}
.sec03-deco03 {
	top: 25%;
	right: 0;
	z-index: 1;
}
.sec03-deco04 {
	bottom: 20%;
	right: 0;
	z-index: 1;
}
.sec03-deco05 {
	bottom: 5%;
	left: 0;
	z-index: 1;
}

@media (max-width: 1630px) {
	.sec03-deco01 {
		width: 134px;
		height: 222.5px;
	}
	.sec03-deco02 {
		width: 150px;
		height: 216px;
	}
	.sec03-deco03 {
		width: 134px;
		height: 222.5px;
	}
	.sec03-deco04 {
		width: 134px;
		height: 222.5px;
	}
	.sec03-deco05 {
		width: 134px;
		height: 222.5px;
	}
}
.sec04 {
	padding: 100px 0 218px;
	position: relative;
}
.sec04::before {
	content: "";
	position: absolute;
	background-color: #FFEBCE;
	top: 0;
	left: 0;
	height: calc(100% - 118px);
	width: 100%;
}
.sec04-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 21px;
}
.sec04-list .list-item {
	display: block;
	background-color: #F5A12C;
	padding: 45px 55px 48px;
	border-radius: 30px;
	color: #fff;
	text-align: center;
	position: relative;
	transition: 0.3s;
}
.sec04-list .list-item::before {
	content: "";
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: url(../images/sec04_listdeco1.svg);
	width: 20px;
	height: 20px;
}
.sec04-list .list-item .l-ttl {
	font-size: 20px;
}
.sec04-list .list-item:hover {
	opacity: 0.5;
}
.sec04-list .l-img {
	margin-bottom: 10px;
}
.sec04-deco01 {
	bottom: -80%;
	left: -40%;
	z-index: 1;
	object-fit: cover;
}
@media (max-width: 1650px) {
	.sec04-deco01 {
		left: -25%;
	}
}
@media (max-width: 1400px) {
	.sec04-deco01 {
		bottom: 210px;
		left: -60px;
		width: 131.5px;
		height: 270.5px;
	}
}

.sec05 {
	padding: 120px 0;
}
.sec05-list {
	background-color: #FFEBCE;
	padding: 50px 88px;
	border-radius: 50px;
	position: relative;
}
.sec05-list::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -25%;
	background: url(../images/sec05_deco1.png) center/contain no-repeat;
	width: 349px;
	height: 314px;
	z-index: -1;
}
.sec05 .img-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 21px;
	margin-bottom: 40px;
}
.sec05 .img-list .l-img img {
	border-radius: 30px;
	border: 1px solid #F5A12C;
	overflow: hidden;
}
.sec05 .l-btn {
	display: flex;
	justify-content: center;
}
.sec05 .l-btn .btn-more:first-child {
	margin-right: 15px;
}

.sec06 {
	padding: 100px 0;
	background: url(../images/sec06_bg.jpg) center/cover no-repeat;
}
.sec06-wrap {
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 50px;
	padding: 100px 20px;
	text-align: center;
}
.sec06-wrap .l-desc {
	margin-bottom: 42px;
}
.sec06-wrap .l-desc .l-ttl {
	font-size: 30px;
	margin-bottom: 30px;
}
.sec06-wrap .l-desc p + p {
	margin-top: 24px;
}
.sec06-wrap .l-btn {
	display: flex;
	justify-content: center;
}
.sec06-wrap .l-btn .btn-more:not(:last-child) {
	margin-right: 15px;
}

.sec07 {
	padding: 120px 0 150px;
	position: relative;
}
.sec07-wrap {
	display: flex;
	gap: 65px;
	justify-content: space-between;
}
.sec07-wrap .item {
	flex: 1;
}
.sec07-ttl {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom: 1px solid #FFD9A5;
	padding-bottom: 12px;
}
.sec07-ttl .t-ttl {
	margin-bottom: 0;
}
.sec07-ttl .jp {
	font-size: 25px;
	margin-bottom: 0;
}
.sec07 .btn-more {
	width: 170px;
}
.sec07-deco01 {
	top: 8%;
	left: 0;
	z-index: 1;
}
@media (max-width: 1550px) {
	.sec07-deco01 {
		top: 20px;
		width: 135.5px;
		height: 289.5px;
	}
}
.sec07-deco02 {
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 1;
}
@media (max-width: 1550px) {
	.sec07-deco02 {
		top: auto;
		bottom: 0;
		width: 133px;
		height: 273px;
	}
}
@media (max-width: 1200px) {
	.sec07-deco02 {
		width: 106.4px;
		height: 218.4px;
	}
}

.map-layout01 {
	display: grid;
	grid-template-columns: 388px 388px 1fr;
	background-color: #f5f5f5;
}
.map-layout01 iframe {
	vertical-align: bottom;
	height: 100%;
	width: 100%;
}
.map-layout01 .l-desc {
	padding: 10%;
	text-align: center;
	background-color: #FFEBCE;
}
.map-layout01 .t-ttl {
	margin-bottom: 25px;
}
.map-layout01 .address {
	text-align: center;
	margin-bottom: 27px;
}

@media (max-width: 800px) {
	.sec01 {
		padding: 30px 0 50px;
	}
	.sec01-layout {
		display: block;
	}
	.sec01-layout .l-img {
		width: 100%;
		margin-bottom: 20px;
	}
	.sec01-layout .l-desc {
		width: 100%;
		padding-right: 0;
		position: relative;
	}
	.sec01-layout .l-desc::before {
		bottom: 0;
		left: -20%;
		width: 200px;
		z-index: -1;
	}
	.sec01-layout .l-ttl {
		font-size: 16px;
	}
	.sec01-layout .l-ttl .name {
		font-size: 20px;
	}
	.sec01-deco01 {
		bottom: 55%;
		right: 0;
		z-index: 1;
		width: 126.3333333333px;
		height: 104.6666666667px;
	}
	.sec02 {
		padding: 30px 0 80px;
	}
	.sec02-layout {
		display: block;
	}
	.sec02-layout .l-img {
		width: 100%;
		margin-bottom: 20px;
	}
	.sec02-layout .l-desc {
		width: 100%;
		padding-left: 0;
	}
	.sec02-layout .l-desc .l-ttl {
		font-size: 23px;
		margin-bottom: 20px;
	}
	.sec02-layout .l-desc p + p {
		margin-top: 20px;
	}
	.sec02-layout .l-btn {
		margin-top: 30px;
		display: block;
	}
	.sec02-layout .l-btn a:not(:last-child) {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.sec02::before {
		bottom: 3%;
		height: 37%;
	}
	.sec03 {
		padding-bottom: 50px;
	}
	.sec03-layout {
		display: block;
		margin: 30px 0;
	}
	.sec03-layout .l-img {
		width: 100%;
	}
	.sec03-layout .l-img::before {
		top: -50%;
		width: 100px;
	}
	.sec03-layout .l-img img {
		border-radius: 30px 30px 0 0;
	}
	.sec03-layout .l-desc {
		padding: 20px;
		margin: 0;
		border-radius: 0 0 30px 30px;
	}
	.sec03-layout .l-desc::before {
		bottom: -20%;
		width: 100px;
	}
	.sec03-layout .l-desc .l-ttl {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.sec03-layout .l-desc .btn-more {
		margin-top: 30px;
	}
	.sec03-layout.reverse .l-desc {
		margin: 0;
	}
	.sec03-list .list-ttl {
		font-size: 18px;
		padding-bottom: 8px;
		margin-bottom: 20px;
	}
	.sec03-list .item-list {
		padding: 20px;
		grid-template-columns: 1fr;
	}

	.sec03 .item {
		padding-bottom: 30px;
		margin: 0 5%;
	}
	.sec03 .item-ttl {
		font-size: 20px;
		padding: 20px;
	}
	.sec03 .item + .item {
		margin-top: 30px;
	}
	.sec03-deco01 {
		width: 89.3333333333px;
		height: 148.3333333333px;
	}
	.sec03-deco02 {
		top: 37%;
		width: 75px;
		height: 108px;
	}
	.sec03-deco03 {
		top: 17%;
		width: 89.3333333333px;
		height: 148.3333333333px;
	}
	.sec03-deco04 {
		bottom: 10%;
		width: 89.3333333333px;
		height: 148.3333333333px;
	}
	.sec03-deco05 {
		bottom: -2%;
		width: 67px;
		height: 111.25px;
	}
	.sec04 {
		padding: 50px 0;
	}
	.sec04::before {
		height: 100%;
	}
	.sec04-list {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
	}
	.sec04-list .list-item {
		padding: 20px;
	}
	.sec04-list .list-item::before {
		width: 15px;
		height: 15px;
	}
	.sec04-list .list-item .l-ttl {
		font-size: 18px;
	}
	.sec04-deco01 {
		width: 87.6666666667px;
		height: 180.3333333333px;
		bottom: auto;
		left: -10px;
		top: -120px;
	}
	.sec05 {
		padding: 50px 0;
	}
	.sec05-list {
		padding: 20px;
	}
	.sec05-list::before {
		bottom: -28%;
		left: -10%;
		width: 100px;
		height: 314px;
	}
	.sec05 .img-list {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
		margin-bottom: 30px;
	}
	.sec05 .img-list .l-img img {
		border-radius: 30px;
	}
	.sec05 .l-btn {
		display: block;
	}
	.sec05 .l-btn .btn-more:first-child {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.sec06 {
		padding: 50px 0;
	}
	.sec06-wrap {
		padding: 20px;
	}
	.sec06-wrap .l-desc {
		margin-bottom: 30px;
		text-align: left;
	}
	.sec06-wrap .l-desc .l-ttl {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.sec06-wrap .l-desc p + p {
		margin-top: 20px;
	}
	.sec06-wrap .l-btn {
		display: block;
	}
	.sec06-wrap .l-btn .btn-more:not(:last-child) {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.sec07 {
		padding: 50px 0;
	}
	.sec07-wrap {
		display: block;
	}
	.sec07-wrap .item:first-child {
		margin-bottom: 40px;
	}
	.sec07 .btn-more {
		width: 100%;
	}
	.sec07-deco01 {
		top: 10px;
		width: 67.75px;
		height: 144.75px;
	}
	.sec07-deco02 {
		bottom: 420px;
		width: 59.1111111111px;
		height: 121.3333333333px;
	}
	.sec07 .list-top-news02,
	.sec07 .list-top-blog01 {
		margin-bottom: 30px;
	}
	.map-layout01 {
		grid-template-columns: 1fr;
	}
	.map-layout01 iframe {
		height: 300px;
	}
	.map-layout01 .l-desc {
		padding: 10% 5%;
	}
	.map-layout01 .t-ttl {
		margin-bottom: 20px;
	}
	.map-layout01 .address {
		margin-bottom: 20px;
	}
	.map-layout01 .map-img img {
		object-fit: cover;
		height: 300px;
	}
}
/*------------
Post
--------------*/
/*お知らせ*/
.list-top-news02 .list-item {
	display: flex;
	align-items: baseline;
	padding: 20px 0;
	border-bottom: 1px solid #FFD9A5;
}
.list-top-news02 time {
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	color: #F5A12C;
	margin-right: 26px;
	font-size: 15px;
}
.list-top-news02 .list-txt {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
}
.list-top-news02 a:hover {
	text-decoration: underline;
}

/*ブログ*/
.list-top-blog01 .list-item {
	margin-top: 10px;
	display: flex;
}
.list-top-blog01 a {
	display: block;
}
.list-top-blog01 a:hover .list-img img {
	transform: scale(1.1);
}
.list-top-blog01 .list-img {
	width: 130px;
	margin-right: 20px;
}
.list-top-blog01 .list-img img {
	width: 100%;
	height: 89px;
	object-fit: cover;
	transition: 0.5s;
	border-radius: 15px;
}
.list-top-blog01 .list-ttl {
	margin-bottom: 10px;
}
.list-top-blog01 .list-desc {
	flex: 1;
	margin-top: 8px;
}
.list-top-blog01 time {
	display: block;
	color: #F5A12C;
	font-size: 14px;
	font-family: "futura-pt", sans-serif;
	line-height: 1;
	margin-bottom: 5px;
}
.list-top-blog01 .list-txt {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
}

@media (max-width: 800px) {
	/*お知らせ*/
	.list-top-news02 .list-item {
		display: block;
		padding: 10px 0;
	}
	.list-top-news02 time {
		margin-right: 0;
	}
	.list-top-news02 a:hover {
		text-decoration: underline;
	}
	/*ブログ*/
	.list-top-blog01 .list-img img {
		width: 150px;
		height: 100px;
	}
}
/*------------
下層ページタイトル
--------------*/
.page-ttl {
	margin: 186px 5.56% 0;
	background: #FFEBCE;
	border-radius: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px 10%;
	height: 450px;
	min-height: 450px;
	position: relative;
}
.page-ttl::before {
	content: "";
	position: absolute;
	background: url(../images/share/u-top_bg.png) center/contain no-repeat;
	bottom: -129px;
	left: -5.56%;
	height: 314px;
	width: 349px;
}

.page-ttl-sub {
	display: block;
	font-family: "futura-pt", sans-serif;
	color: #F5A12C;
	font-weight: 500;
	font-size: 30px;
	text-transform: capitalize;
}

.page-ttl-main {
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	font-size: 45px;
	line-height: 1.2;
}

.page-ttl-deco {
	bottom: -67px;
	right: 38px;
}

@media (max-width: 800px) {
	.page-ttl {
		margin-top: 0;
		padding: 30px 10% 30px 5%;
		height: 180px;
		min-height: 180px;
		border-radius: 30px;
	}
	.page-ttl::before {
		bottom: -50px;
		height: 104.6666666667px;
		width: 116.3333333333px;
	}
	.page-ttl-main {
		font-size: 25px;
	}
	.page-ttl-sub {
		font-size: 20px;
	}
	.page-ttl-deco {
		width: 20%;
		bottom: -40px;
		right: 0px;
	}
}
/*------------
下層ページ見出し
--------------*/
.u-h2, .post-category-ttl, .postdata h1 {
	font-size: 40px;
	position: relative;
	line-height: 1.5;
	padding-bottom: 50px;
	margin-bottom: 50px;
	text-align: center;
}
.u-h2::before, .post-category-ttl::before, .postdata h1::before {
	content: "";
	background: url(../images/under/u-ttl-deco.svg) center/contain no-repeat;
	width: 6px;
	height: 38px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.u-h3, .post-ttl, .postdata h2 {
	font-size: 26px;
	padding-bottom: 15px;
	margin-bottom: 30px;
	background-image: radial-gradient(circle, #F5A12C 2.5px, transparent 2.5px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 12px 5px;
}

.u-h302 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 30px;
	color: #9BC83A;
}

.u-h4, .postdata h3 {
	font-size: 20px;
	margin-bottom: 15px;
	color: #F5A12C;
}

@media (max-width: 800px) {
	.u-h2, .post-category-ttl, .postdata h1 {
		font-size: 25px;
		padding-bottom: 30px;
		margin-bottom: 20px;
	}
	.u-h2::before, .post-category-ttl::before, .postdata h1::before {
		height: 29px;
		width: 4px;
	}
	.u-h3, .post-ttl, .postdata h2 {
		font-size: 20px;
		padding-bottom: 10px;
		margin-bottom: 20px;
		background-image: none;
		border-bottom: 5px dotted #F5A12C;
	}
	.u-h302 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.u-h4, .postdata h3 {
		font-size: 18px;
	}
}
/*------------
パンクズリスト
--------------*/
.breadcrumb {
	position: relative;
	z-index: 1;
	padding: 10px 0;
}
.breadcrumb ul {
	font-size: 14px;
}
.breadcrumb ul li {
	display: inline;
	word-break: break-all;
}
.breadcrumb ul li + li:before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	transform: rotate(45deg);
	margin: 0 12px 0 3px;
	vertical-align: 1px;
}

/*------------
pタグ同士の余白
--------------*/
.u-contents p + p {
	margin-top: 2em;
}

@media (max-width: 800px) {
	.u-contents p + p {
		margin-top: 1em;
	}
}
/*------------
下層ページレイアウト
--------------*/
.tall {
	padding: 70px 0;
}
.tall.bg01 {
	background: #9BC83A;
}

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

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

.hidden {
	overflow: hidden;
}

@media (max-width: 800px) {
	.tall {
		padding: 40px 0;
	}
	.tall:last-child {
		padding: 40px 0 80px;
	}
	.short + .short {
		margin-top: 30px;
	}
	.x-short + .short {
		margin-top: 30px;
	}
}
.u-boxlayout {
	width: 721px;
	max-width: 721px;
	max-height: 691px;
	height: 691px;
	margin: 0 auto;
	position: relative;
}
.u-boxlayout .l-deco01 {
	position: absolute;
	top: -50px;
	right: -350px;
	z-index: 1;
}
.u-boxlayout .l-deco02 {
	position: absolute;
	bottom: -80px;
	left: -350px;
	z-index: 1;
}
.u-boxlayout .box-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 574px;
	height: 574px;
	background: #fff;
	border: 4px solid #F5A12C;
	border-radius: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.u-boxlayout .box-logo {
	margin-bottom: 25px;
}
.u-boxlayout .l-ttl {
	font-size: 21px;
	letter-spacing: 0;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	line-height: 1.8;
	text-align: center;
}
.u-boxlayout .box-list li {
	background: url(../images/under/ellipse.png) center/contain no-repeat;
	width: 223px;
	height: 159px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 21px;
	letter-spacing: 0.05em;
	line-height: 1.6;
	color: #fff;
	text-align: center;
	position: absolute;
}
.u-boxlayout .box-list .list-01 {
	top: 20px;
	left: -20px;
}
.u-boxlayout .box-list .list-02 {
	top: 0px;
	left: 50%;
	transform: translate(-50%, -50%);
}
.u-boxlayout .box-list .list-03 {
	top: 20px;
	right: -20px;
	transform: translateX(0);
}
.u-boxlayout .box-list .list-04 {
	top: 50%;
	right: -93px;
	transform: translateY(-50%);
}
.u-boxlayout .box-list .list-05 {
	top: 50%;
	left: -93px;
	transform: translateY(-50%);
}
.u-boxlayout .box-list .list-06 {
	bottom: 20px;
	left: -20px;
	transform: translateX(0);
}
.u-boxlayout .box-list .list-07 {
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
}
.u-boxlayout .box-list .list-08 {
	bottom: 20px;
	right: -20px;
	transform: translateX(0);
}

@media (max-width: 800px) {
	.u-boxlayout {
		width: 100%;
		height: auto;
		max-width: none;
		max-height: none;
		margin: 0 auto;
		position: relative;
	}
	.u-boxlayout .l-deco01 {
		top: -30px;
		right: -15px;
		width: 20%;
	}
	.u-boxlayout .l-deco02 {
		bottom: -50px;
		left: -22px;
		width: 10%;
		min-width: 60px;
	}
	.u-boxlayout .box-wrap {
		display: block;
		width: 100%;
		height: auto;
		padding: 25px 20px;
		border-radius: 30px;
		border: 2px solid #F5A12C;
		position: static;
		transform: translate(0);
	}
	.u-boxlayout .box-logo {
		text-align: center;
		margin-bottom: 20px;
	}
	.u-boxlayout .l-ttl {
		font-size: 18px;
		margin-bottom: 20px;
	}
	.u-boxlayout .box-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 10px;
	}
	.u-boxlayout .box-list li {
		position: static;
		background-image: linear-gradient(135deg, #F5A12C, #FFD395);
		border-radius: 20px;
		width: 100%;
		height: 70px;
		font-size: 16px;
	}
	.u-boxlayout .box-list .list-02 {
		transform: translate(0);
	}
	.u-boxlayout .box-list .list-03 {
		top: 20px;
		right: -20px;
		transform: translateX(0);
	}
	.u-boxlayout .box-list .list-04 {
		transform: translateY(0);
	}
	.u-boxlayout .box-list .list-05 {
		transform: translateY(0);
	}
	.u-boxlayout .box-list .list-06 {
		transform: translateX(0);
	}
	.u-boxlayout .box-list .list-07 {
		transform: translate(0);
	}
	.u-boxlayout .box-list .list-08 {
		transform: translateX(0);
	}
}
.tall.deco01 {
	padding-bottom: 150px;
	position: relative;
}
.tall.deco01::before {
	content: "";
	position: absolute;
	background: url(../images/under/u-layout01_deco.png) center/contain no-repeat;
	bottom: 0;
	right: 11.39%;
	height: 314px;
	width: 349px;
}
.tall.deco01::after {
	content: "";
	position: absolute;
	background: #FFEBCE;
	height: 355px;
	width: 100%;
	bottom: 30px;
	z-index: -1;
}

@media (max-width: 800px) {
	.tall.deco01 {
		padding-bottom: 50px;
	}
	.tall.deco01::before {
		right: 0;
		height: 157px;
		width: 174.5px;
	}
	.tall.deco01::after {
		height: 50%;
	}
}
.u-layout01 {
	display: flex;
	position: relative;
	padding-bottom: 70px;
}
.u-layout01 .l-img {
	width: 50%;
}
.u-layout01 .l-img img {
	height: 470px;
	border-radius: 50px;
	object-fit: cover;
}
.u-layout01 .l-desc {
	margin-left: 42px;
	flex: 1;
}
.u-layout01 .l-ttl {
	font-size: 30px;
	margin-bottom: 30px;
}

@media (max-width: 800px) {
	.u-layout01 {
		display: block;
		padding-bottom: 0;
	}
	.u-layout01::before {
		height: 60%;
	}
	.u-layout01::after {
		height: 60%;
	}
	.u-layout01 .l-img {
		width: 100%;
		margin-bottom: 30px;
	}
	.u-layout01 .l-img img {
		height: auto;
		border-radius: 30px;
	}
	.u-layout01 .l-desc {
		margin-left: 0;
	}
	.u-layout01 .l-ttl {
		font-size: 22px;
		margin-bottom: 20px;
	}
}
.u-layout02 {
	display: flex;
	flex-direction: row-reverse;
	position: relative;
}
.u-layout02::before {
	content: "";
	position: absolute;
	background: url(../images/under/u-layout02_deco01.png) center/contain no-repeat;
	bottom: -40px;
	left: -18.16%;
	height: 314px;
	width: 349px;
	z-index: -1;
}
.u-layout02.reverse {
	flex-direction: row;
}
.u-layout02.reverse::before {
	background: url(../images/under/u-layout02_deco02.png) center/contain no-repeat;
	left: auto;
	right: -18.16%;
}
.u-layout02.reverse .l-desc {
	margin-left: 50px;
	margin-right: 0;
}
.u-layout02 .l-desc {
	margin-top: 30px;
	margin-right: 50px;
	flex: 1;
}
.u-layout02 .l-ttl {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
}
.u-layout02 .l-ttl .en {
	width: 66px;
	margin-right: 22px;
	font-size: 60px;
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	color: #FFFAF0;
	line-height: 1;
	-webkit-text-stroke: 1px #F5A12C;
	text-stroke: 1px #F5A12C;
}
.u-layout02 .l-ttl .jp {
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.u-layout02 .l-img {
	width: 50%;
}
.u-layout02 .l-img img {
	border-radius: 50px;
}

@media (max-width: 800px) {
	.u-layout02 {
		display: block;
	}
	.u-layout02::before {
		bottom: 120px;
		right: 0;
		left: auto;
		width: 174.5px;
		height: 157px;
	}
	.u-layout02.reverse::before {
		bottom: 120px;
		right: 0;
	}
	.u-layout02.reverse .l-desc {
		margin-top: 30px;
		margin-left: 0;
	}
	.u-layout02 .l-desc {
		margin-top: 30px;
		margin-right: 0;
	}
	.u-layout02 .l-ttl {
		margin-bottom: 20px;
		display: block;
	}
	.u-layout02 .l-ttl .en {
		display: block;
		margin-right: 0;
		font-size: 35px;
	}
	.u-layout02 .l-ttl .jp {
		font-size: 24px;
	}
	.u-layout02 .l-img {
		width: 100%;
	}
	.u-layout02 .l-img img {
		border-radius: 30px;
	}
}
@media (max-width: 800px) {
	.img-scroll {
		overflow-x: scroll;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
	}
	.img-scroll::before {
		content: "※横にスクロールできます。";
	}
	.img-scroll::-webkit-scrollbar {
		height: 5px;
	}
	.img-scroll::-webkit-scrollbar-track {
		border-radius: 5px;
		background: #f5f6f8;
	}
	.img-scroll::-webkit-scrollbar-thumb {
		border-radius: 5px;
		background: #F5A12C;
	}
	.img-scroll img {
		margin-bottom: 10px;
		width: 200%;
		max-width: 200%;
	}
}
.u-layout03 {
	display: flex;
}
.u-layout03 .l-img {
	width: 371px;
	margin-right: 50px;
}
.u-layout03 .l-img img {
	border-radius: 50px;
}
.u-layout03 .l-desc {
	flex: 1;
	margin-left: 42px;
}
.u-layout03 .l-name {
	margin-top: 30px;
	text-align: right;
}
.u-layout03 .l-name .job {
	font-size: 20px;
	display: block;
	margin-bottom: 12px;
}
.u-layout03 .l-name .jp {
	font-size: 25px;
	margin-right: 20px;
}
.u-layout03 .l-name .en {
	font-size: 16px;
}

@media (max-width: 800px) {
	.u-layout03 {
		display: block;
	}
	.u-layout03 .l-img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}
	.u-layout03 .l-img img {
		border-radius: 30px;
	}
	.u-layout03 .l-desc {
		margin-left: 0;
	}
	.u-layout03 .l-name {
		margin-top: 20px;
	}
	.u-layout03 .l-name .job {
		font-size: 16px;
		margin-bottom: 12px;
	}
	.u-layout03 .l-name .jp {
		font-size: 20px;
		margin-right: 20px;
	}
	.u-layout03 .l-name .en {
		font-size: 16px;
	}
}
.u-box01 {
	position: relative;
	padding-top: 90px;
}
.u-box01 .box-img {
	position: absolute;
	top: 0;
	right: 85px;
}
.u-box01 .box-img img {
	width: 190px;
	height: 190px;
	border-radius: 50%;
	object-fit: cover;
}
.u-box01 .box-desc {
	background-color: #FFEBCE;
	padding: 70px 60px 60px;
	border-radius: 50px;
}
.u-box01 .box-name {
	margin-bottom: 20px;
}
.u-box01 .box-name .name {
	font-size: 25px;
}
.u-box01 .box-name .history {
	font-size: 16px;
}
.u-box01 .question {
	font-size: 30px;
	color: #F5A12C;
	margin-bottom: 20px;
}
.u-box01 .question-txt {
	margin-bottom: 40px;
}

@media (max-width: 800px) {
	.u-box01 {
		padding-top: 110px;
	}
	.u-box01 .box-img {
		width: 90%;
		position: absolute;
		top: 0;
		right: 50%;
		transform: translateX(50%);
		text-align: center;
	}
	.u-box01 .box-desc {
		background-color: #FFEBCE;
		padding: 100px 25px 30px;
		border-radius: 30px;
	}
	.u-box01 .box-name .name {
		font-size: 20px;
	}
	.u-box01 .question {
		font-size: 22px;
	}
	.u-box01 .question-txt {
		margin-bottom: 30px;
	}
}
.box-style03 {
	background: #FFEBCE;
	border: 1px solid #F5A12C;
	padding: 60px;
	border-radius: 30px;
}
.box-style03 .box-ttl {
	display: flex;
	gap: 12px;
	font-size: 26px;
	margin-bottom: 15px;
}
.box-style03 .l-txt {
	margin-bottom: 25px;
}
.box-style03 .l-img img {
	border-radius: 30px;
}

@media (max-width: 800px) {
	.box-style03 {
		padding: 30px;
	}
	.box-style03 .box-ttl {
		font-size: 20px;
	}
}
.l-imgR,
.l-imgL {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5%;
}
.l-imgR .l-img,
.l-imgL .l-img {
	width: 40%;
}
.l-imgR .l-img.w30,
.l-imgL .l-img.w30 {
	width: 30%;
}
.l-imgR .l-img img,
.l-imgL .l-img img {
	border-radius: 50px;
}
.l-imgR .l-desc,
.l-imgL .l-desc {
	flex: 1;
}

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

@media (max-width: 800px) {
	.l-imgR,
	.l-imgL {
		flex-direction: column;
		gap: 15px;
	}
	.l-imgR .l-img,
	.l-imgL .l-img {
		text-align: center;
		width: 100%;
	}
	.l-imgR .l-img.w30,
	.l-imgL .l-img.w30 {
		width: 100%;
	}
}
.table-style01 {
	border: 1px solid #FFD9A5;
}
.table-style01 tr:not(:last-child) {
	border-bottom: 1px solid #FFD9A5;
}
.table-style01 th {
	background-color: #F5A12C;
	color: #fff;
	padding: 15px;
	width: 30%;
}
.table-style01 td {
	padding: 10px 30px;
	background: #fff;
}

@media (max-width: 800px) {
	.table-style01 th {
		width: 100%;
		display: block;
		padding: 10px 15px;
		text-align: left;
	}
	.table-style01 td {
		width: 100%;
		display: block;
		padding: 10px 15px;
	}
}
.table-style02 {
	background-color: #fff;
	border: 1px solid #FFD9A5;
}
.table-style02 th, .table-style02 td {
	border: 1px solid #FFD9A5;
	line-height: 1.7;
	padding: 15px;
}
.table-style02 th {
	background-color: #F5A12C;
	color: #fff;
	vertical-align: middle;
}
.table-style02 th.bg01 {
	background-color: #FFEBCE;
	color: #4A2B2B;
}
.table-style02 .table-img {
	text-align: center;
}
.table-style02 .col-25 {
	width: 25%;
}
.table-style02 .col-20 {
	width: 20%;
}
.table-style02 .col-15 {
	width: 15%;
}
.table-style02 .col-10 {
	width: 10%;
}
.table-style02 .col-5 {
	width: 5%;
}

@media (max-width: 800px) {
	.table-scroll {
		overflow-x: scroll;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
	}
	.table-scroll::before {
		content: "※横にスクロールできます。";
	}
	.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: #F5A12C;
	}
	.table-scroll table {
		margin-bottom: 10px;
		width: 280%;
	}
}
.card-style01 > li {
	background-color: #FFEBCE;
	padding: 25px;
	border-radius: 50px;
}
.card-style01 .card-img {
	margin-bottom: 25px;
}
.card-style01 .card-img img {
	border-radius: 30px;
}
.card-style01 .card-img.icon {
	max-width: 250px;
	width: 60%;
	margin: 0 auto 25px;
}
.card-style01 .card-ttl {
	font-size: 22px;
	margin-bottom: 15px;
}

.card-style02 > li {
	border: 1px solid #FFD9A5;
	padding: 25px;
	border-radius: 30px;
}
.card-style02 .card-img img {
	border-radius: 30px;
}
.card-style02 .card-ttl {
	font-size: 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid #FFD9A5;
	text-align: center;
	margin-bottom: 20px;
}

.card-style01,
.card-style02 {
	display: grid;
}
.card-style01.col2,
.card-style02.col2 {
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.card-style01.col2 > li,
.card-style02.col2 > li {
	padding: 30px;
}
.card-style01.col3,
.card-style02.col3 {
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.card-style01.col4,
.card-style02.col4 {
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.card-style01.col4 > li,
.card-style02.col4 > li {
	padding: 20px;
	border-radius: 30px;
}

@media (max-width: 800px) {
	.card-style01 > li,
	.card-style02 > li {
		border-radius: 30px;
	}
	.card-style01 .card-ttl,
	.card-style02 .card-ttl {
		font-size: 18px;
	}
	.card-style01.col2,
	.card-style02.col2 {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.card-style01.col2 > li,
	.card-style02.col2 > li {
		padding: 25px;
	}
	.card-style01.col3,
	.card-style02.col3 {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.card-style01.col4,
	.card-style02.col4 {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.card-style01.col4 > li,
	.card-style02.col4 > li {
		padding: 25px;
	}
}
.tel-box {
	background: #FFEBCE;
	max-width: 800px;
	border-radius: 50px;
	padding: 40px;
	margin: 0 auto;
}
.tel-box .l-ttl {
	border-bottom: 1px solid #F5A12C;
	margin-bottom: 30px;
	font-size: 18px;
	text-align: center;
	padding-bottom: 10px;
	margin: 0 auto 25px;
	width: fit-content;
}
.tel-box .tel {
	margin-bottom: 20px;
}

@media (max-width: 800px) {
	.tel-box {
		border-radius: 30px;
		padding: 25px 20px;
	}
	.tel-box .l-ttl {
		text-align: left;
		font-size: 16px;
	}
}
.staff-layout {
	display: flex;
	align-items: flex-end;
	flex-direction: row-reverse;
}
.staff-layout .l-img {
	position: relative;
}
.staff-layout .l-img img {
	width: 500px;
	height: 500px;
	object-fit: cover;
}
.staff-layout .l-img::before {
	content: "";
	position: absolute;
	background: url(../images/under/staff-layout_deco.png) center/contain no-repeat;
	bottom: -72px;
	right: -90px;
	height: 295px;
	width: 327px;
	z-index: -1;
}
@media (max-width: 1200px) {
	.staff-layout .l-img::before {
		right: -20px;
	}
}
.staff-layout .l-img img {
	border-radius: 50%;
}
.staff-layout .l-desc {
	flex: 1.5;
	margin-right: 50px;
	margin-bottom: 30px;
}
.staff-layout .job {
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}
.staff-layout .name {
	margin-bottom: 50px;
}
.staff-layout .jp {
	font-size: 25px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	margin-right: 20px;
}
.staff-layout .en {
	font-size: 16px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
}
.staff-layout .box-style01 {
	border: none;
	border-radius: 30px;
}
.staff-layout .list-disc li {
	font-size: 15px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	line-height: 2.2;
}
.staff-layout .list-disc li::before {
	top: 15px;
}

.staff-career {
	font-size: 14px;
}
.staff-career li {
	border-bottom: 1px dotted #F5A12C;
	padding: 10px 0;
	display: flex;
}
.staff-career .data {
	width: 15%;
}
.staff-career .txt {
	width: 85%;
}

@media (max-width: 800px) {
	.staff-layout {
		display: block;
	}
	.staff-layout .l-img {
		width: 100%;
		height: auto;
		margin-bottom: 30px;
	}
	.staff-layout .l-img img {
		width: 100%;
		height: 100%;
		aspect-ratio: 1/1;
	}
	.staff-layout .l-img::before {
		bottom: -20px;
		right: -15px;
		height: 147.5px;
		width: 163.5px;
	}
	.staff-layout .l-desc {
		margin-right: 0;
		margin-bottom: 0;
	}
	.staff-layout .job {
		font-size: 16px;
		margin-bottom: 0;
	}
	.staff-layout .name {
		margin-bottom: 20px;
	}
	.staff-layout .jp {
		font-size: 22px;
		margin-right: 20px;
	}
	.staff-layout .en {
		font-size: 16px;
	}
	.staff-career li {
		display: block;
	}
	.staff-career .data {
		width: auto;
		display: block;
		font-weight: 600;
	}
	.staff-career .txt {
		width: 100%;
	}
}
.staff-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 17px;
	row-gap: 20px;
}
.staff-list .list-img {
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 180px;
	height: 180px;
}
.staff-list .list-img img {
	width: 180px;
	height: 180px;
	object-fit: cover;
	aspect-ratio: 1/1;
	border-radius: 50%;
}
.staff-list .list-item {
	margin-top: 120px;
	position: relative;
	padding: 75px 30px 25px;
	border-radius: 30px;
	background: #FFEBCE;
	font-size: 15px;
}
.staff-list .job {
	font-size: 16px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	margin-bottom: 5px;
}
.staff-list .name {
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px dashed #CCCCCC;
}
.staff-list .jp {
	font-size: 20px;
	margin-right: 10px;
}
.staff-list .en {
	font-size: 15px;
}
.staff-list .list-disc li {
	font-size: 15px;
	line-height: 1.6;
}
.staff-list .list-disc li:not(:last-child) {
	margin-bottom: 5px;
}
.staff-list .list-disc li::before {
	top: 9px;
}

@media (max-width: 800px) {
	.staff-list {
		grid-template-columns: repeat(1, 1fr);
		row-gap: 20px;
	}
	.staff-list .list-img {
		top: -130px;
	}
	.staff-list .list-item {
		margin-top: 130px;
		padding: 50px 20px 25px;
	}
}
.box-style01 {
	border: 2px solid #FFD9A5;
	background: #FFEBCE;
	border-radius: 50px;
	padding: 5%;
}
.box-style01 .box-ttl {
	font-size: 22px;
	text-align: center;
	margin-bottom: 25px;
}
.box-style01 .box-ttl02 {
	font-size: 20px;
	color: #F5A12C;
	border-bottom: 1px dashed #CCCCCC;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

@media (max-width: 800px) {
	.box-style01 {
		border-radius: 30px;
		padding: 20px;
	}
	.box-style01 .box-ttl {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.box-style01 .box-ttl02 {
		font-size: 18px;
		margin-bottom: 15px;
	}
}
.list-col2 {
	display: flex;
	flex-wrap: wrap;
}
.list-col2 > .list-item {
	width: 48%;
}
.list-col2 > .list-item:nth-child(odd) {
	margin-right: 4%;
}
.list-col2 > .list-item:nth-child(n+3) {
	margin-top: 40px;
}
.list-col2 > .list-item:last-child {
	margin-right: 0;
}
.list-col2 .list-img {
	margin-bottom: 20px;
}
.list-col2 .list-ttl {
	font-size: 22px;
	margin-bottom: 10px;
}
.list-col2 .l-desc {
	flex: 1;
	margin-right: 20px;
}
.list-col2 .job {
	font-size: 16px;
}
.list-col2 .name .jp {
	font-size: 22px;
	margin-right: 19px;
}
.list-col2 .name .en {
	font-size: 16px;
}

@media (max-width: 800px) {
	.list-col2 {
		display: block;
	}
	.list-col2 > .list-item {
		width: 100%;
	}
	.list-col2 > .list-item:nth-child(odd) {
		margin-right: 0;
	}
	.list-col2 > .list-item:nth-child(n+2) {
		margin-top: 30px;
	}
	.list-col2 .list-img {
		margin-bottom: 15px;
	}
}
.list-disc li {
	position: relative;
	padding-left: 15px;
}
.list-disc li:before {
	content: "";
	background: #F5A12C;
	border-radius: 50%;
	display: block;
	position: absolute;
	left: 0;
	top: 15px;
	width: 5px;
	height: 5px;
}

.flow-style05 > li {
	display: grid;
	grid-template-columns: 100px 1fr;
	grid-gap: 50px;
	align-items: flex-start;
	position: relative;
	padding-bottom: 50px;
}
.flow-style05 > li::before {
	content: "";
	border-left: 2px solid #F5A12C;
	position: absolute;
	top: 20px;
	bottom: -5px;
	left: 9px;
}
.flow-style05 > li:last-child {
	padding-bottom: 5px;
}
.flow-style05 .flow-num {
	font-family: "futura-pt", sans-serif;
	font-weight: 600;
	font-size: 16px;
	width: 100px;
	position: relative;
	padding-left: 25px;
}
.flow-style05 .flow-num::before {
	content: "";
	position: absolute;
	top: 3px;
	left: 0;
	border-radius: 100px;
	height: 20px;
	width: 20px;
	background-color: #F5A12C;
}
.flow-style05 .flow-ttl {
	font-size: 20px;
	margin-bottom: 15px;
}
.flow-style05 .flow-wrap {
	display: flex;
	flex-direction: row-reverse;
}
.flow-style05 .flow-wrap .flow-img {
	width: 40%;
	margin-left: 20px;
}
.flow-style05 .flow-wrap .flow-img img {
	border-radius: 20px;
}
.flow-style05 .flow-wrap .flow-desc {
	flex: 1;
}

@media (max-width: 800px) {
	.flow-style05 > li {
		grid-gap: 15px;
		padding-bottom: 30px;
	}
	.flow-style05 .flow-ttl {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.flow-style05 .flow-wrap {
		display: block;
	}
	.flow-style05 .flow-wrap .flow-img {
		width: 100%;
		margin-left: 0;
		margin-bottom: 15px;
	}
}
@media (max-width: 800px) {
	.list-disc li:before {
		top: 11px;
	}
}
.list-disc.col2, .list-check.col2, .list-num.col2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}
.list-disc.col3, .list-check.col3, .list-num.col3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
}
.list-disc.col4, .list-check.col4, .list-num.col4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
}

@media (max-width: 800px) {
	.list-disc.col2, .list-disc.col3, .list-disc.col4, .list-check.col2, .list-check.col3, .list-check.col4, .list-num.col2, .list-num.col3, .list-num.col4 {
		grid-template-columns: 1fr;
		grid-gap: 5px;
	}
}
.list-anchor-link01 {
	display: flex;
	flex-wrap: wrap;
}
.list-anchor-link01 li {
	position: relative;
}
.list-anchor-link01 li::after {
	content: "";
	display: inline-block;
	background: #FFD9A5;
	width: 2px;
	height: 15px;
	margin: 0 20px;
	vertical-align: -1px;
}
.list-anchor-link01 a {
	display: inline-block;
	position: relative;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	padding-right: 25px;
}
.list-anchor-link01 a::before {
	content: "";
	background: url(../images/share/icon_anchor_link.svg) no-repeat 0 0/contain;
	width: 22px;
	height: 22px;
	position: absolute;
	right: -3px;
	top: 3px;
}
.list-anchor-link01 a:hover {
	text-decoration: underline;
}

.flow-style03 {
	display: grid;
	gap: 40px;
}
.flow-style03 > li {
	display: grid;
	grid-template-columns: 70px 1fr;
	grid-gap: 50px;
	position: relative;
	min-height: 150px;
}
.flow-style03 > li:not(:last-child)::before {
	content: "";
	background-color: #F5A12C;
	width: 1px;
	position: absolute;
	top: 70px;
	bottom: 0;
	left: 33px;
}
.flow-style03 > li:not(:last-child)::after {
	content: "";
	border-style: solid;
	border-width: 10px 5px 0 5px;
	border-color: #F5A12C transparent transparent transparent;
	position: absolute;
	bottom: -1px;
	left: 28px;
}
.flow-style03 .flow-num {
	font-size: 30px;
	text-align: center;
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	color: #F5A12C;
	line-height: 1;
	letter-spacing: 0;
}
.flow-style03 .flow-num::before {
	content: attr(data-en);
	display: block;
	font-size: 13px;
	letter-spacing: 0;
	margin-bottom: 5px;
}
.flow-style03 .wrap {
	display: flex;
	flex-direction: row-reverse;
	gap: 50px;
}
.flow-style03 .flow-img {
	width: 35%;
}
.flow-style03 .flow-desc {
	flex: 1;
	padding-top: 10px;
}
.flow-style03 .flow-ttl {
	font-size: 18px;
	margin-bottom: 15px;
}

@media (max-width: 800px) {
	.flow-style03 {
		gap: 20px;
	}
	.flow-style03 > li {
		grid-template-columns: 50px 1fr;
		grid-gap: 15px;
	}
	.flow-style03 > li:not(:last-child)::before {
		top: 55px;
		left: 24px;
	}
	.flow-style03 > li:not(:last-child)::after {
		left: 20px;
	}
	.flow-style03 .flow-num {
		font-size: 25px;
	}
	.flow-style03 .flow-num::before {
		font-size: 12px;
		margin-bottom: 5px;
	}
	.flow-style03 .wrap {
		flex-direction: column;
		gap: 15px;
	}
	.flow-style03 .flow-img {
		width: 100%;
	}
	.flow-style03 .flow-ttl {
		margin-bottom: 10px;
	}
	.flow-style03 .flow-desc {
		padding-top: 0;
	}
}
.flow-type03 {
	display: grid;
}
.flow-type03 > li {
	background-color: #9BC83A;
	padding: 25px;
	position: relative;
}
.flow-type03 > li::after {
	content: "";
	border-style: solid;
	border-width: 12px 0 12px 12px;
	border-color: transparent transparent transparent #F5A12C;
	position: absolute;
	right: -28px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.flow-type03 > li:last-child::after {
	display: none;
}
.flow-type03 .list-ttl {
	display: block;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
	line-height: 1.5;
}
.flow-type03 .num {
	color: #fff;
	background-color: #F5A12C;
	display: table;
	font-size: 13px;
	line-height: 25px;
	padding: 0 20px;
	margin: 0 auto 10px;
	border-radius: 20px;
}
.flow-type03 .list-img {
	text-align: center;
	margin-bottom: 15px;
}
.flow-type03 .list-desc {
	margin-bottom: 15px;
}
.flow-type03 .list-btn {
	margin-top: 20px;
}
.flow-type03 .btn-more {
	width: 100%;
	max-width: 100%;
}
.flow-type03.col2 {
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
.flow-type03.col2 .list-item {
	padding: 30px;
}
.flow-type03.col3 {
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}
.flow-type03.col3 > li::after {
	right: -22px;
}
.flow-type03.col4 {
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}
.flow-type03.col4 > li {
	padding: 20px;
}
.flow-type03.col4 > li::after {
	right: -17px;
}

.flow-type03 {
	display: grid;
}
.flow-type03 > li {
	background-color: #FFEBCE;
	padding: 25px;
	border-radius: 30px;
	position: relative;
}
.flow-type03 > li::after {
	content: "";
	border-style: solid;
	border-width: 12px 0 12px 12px;
	border-color: transparent transparent transparent #9BC83A;
	position: absolute;
	right: -28px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.flow-type03 > li:last-child::after {
	display: none;
}
.flow-type03 .list-ttl {
	display: block;
	font-size: 18px;
	text-align: center;
	margin-bottom: 15px;
	line-height: 1.5;
}
.flow-type03 .num {
	color: #fff;
	background-color: #F5A12C;
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	display: table;
	font-size: 13px;
	line-height: 25px;
	padding: 0 20px;
	margin: 0 auto 10px;
	border-radius: 20px;
}
.flow-type03 .list-img {
	text-align: center;
	margin-bottom: 15px;
}
.flow-type03 .list-img img {
	border-radius: 30px;
}
.flow-type03 .list-desc {
	margin-bottom: 15px;
}
.flow-type03 .list-btn {
	margin-top: 20px;
}
.flow-type03 .btn-more {
	width: 100%;
	max-width: 100%;
}
.flow-type03.col2 {
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
}
.flow-type03.col2 .list-item {
	padding: 30px;
}
.flow-type03.col3 {
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;
}
.flow-type03.col3 > li::after {
	right: -22px;
}
.flow-type03.col4 {
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}
.flow-type03.col4 > li {
	padding: 20px;
}
.flow-type03.col4 > li::after {
	right: -17px;
}

@media (max-width: 800px) {
	.flow-type03 > li {
		padding: 25px 20px;
		position: relative;
	}
	.flow-type03 > li::after {
		right: 50%;
		top: inherit;
		bottom: -32px;
		transform: translateX(50%) rotate(90deg);
	}
	.flow-type03 .list-img.sp-small img {
		width: 65%;
	}
	.flow-type03.col2, .flow-type03.col3, .flow-type03.col4 {
		grid-template-columns: 1fr;
		grid-column-gap: 0;
		grid-row-gap: 40px;
	}
	.flow-type03.col2 .list-item, .flow-type03.col3 .list-item, .flow-type03.col4 .list-item {
		padding: 25px 20px;
	}
	.flow-type03.col3 > li {
		padding: 25px 20px;
	}
	.flow-type03.col3 > li::after {
		right: 50%;
	}
	.flow-type03.col4 > li {
		padding: 25px 20px;
	}
	.flow-type03.col4 > li::after {
		right: 50%;
	}
}
.faq-type01 > dt {
	cursor: pointer;
	display: flex;
	align-items: baseline;
	border-bottom: 1px solid #FFD9A5;
	padding: 0 30px 10px 0;
	margin: 0 0 15px;
	position: relative;
}
.faq-type01 > dt .ttl {
	flex: 1;
}
.faq-type01 > dt .txt {
	font-size: 20px;
	line-height: 1.7;
}
.faq-type01 > dt .icon {
	background-color: #F5A12C;
}
.faq-type01 > dt::before, .faq-type01 > dt::after {
	content: "";
	background: #F5A12C;
	position: absolute;
	width: 10px;
	height: 1px;
	right: 15px;
	top: 40%;
}
.faq-type01 > dt::before {
	transform: translateY(-50%) rotate(90deg);
	transition: 0.5s;
}
.faq-type01 > dt:not(.is-open):hover {
	opacity: 0.5;
}
.faq-type01 > dt.is-open::before {
	transform: translateY(-50%) rotate(0);
}
.faq-type01 dd {
	display: none;
	margin-bottom: 30px;
}
.faq-type01 dd .wrapper {
	display: flex;
}
.faq-type01 dd + dt {
	margin-top: 10px;
}
.faq-type01 dd .icon {
	background: #9BC83A;
}
.faq-type01 .icon {
	border-radius: 100px;
	color: #fff;
	font-size: 20px;
	font-family: "futura-pt", sans-serif;
	text-align: center;
	width: 35px;
	height: 35px;
	padding-left: 2px;
	line-height: 35px;
	margin: 0 15px 0 0;
}
.faq-type01 .txt {
	flex: 1;
}

.box-style02 {
	border: 2px solid #FFD9A5;
	background: #fff;
	padding: 5%;
	border-radius: 50px;
}
.box-style02 .box-ttl {
	font-size: 22px;
	text-align: center;
	margin-bottom: 25px;
}

@media (max-width: 800px) {
	.box-style02 {
		border-radius: 30px;
		padding: 20px;
	}
	.box-style02 .box-ttl {
		font-size: 18px;
		margin-bottom: 15px;
	}
}
/*------------
プライバシーポリシー
--------------*/
.dl-privacy dt {
	border-bottom: 1px solid #F5A12C;
	font-size: 18px;
	padding: 0 0 5px;
	margin: 0 0 15px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
}
.dl-privacy dd + dt {
	margin-top: 30px;
}

.list-privacy li {
	position: relative;
	padding: 0 0 0 15px;
}
.list-privacy li::before {
	background: #F5A12C;
	border-radius: 50%;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 10px;
	width: 5px;
	height: 5px;
}
.list-privacy li + li {
	margin-top: 3px;
}

/*------------
Footer
--------------*/
.footer {
	position: relative;
}
.footer-inr {
	display: flex;
	padding: 70px 0;
	justify-content: space-between;
}
.footer .f-logo-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}
.footer .f-logo {
	display: block;
	max-width: 206px;
	margin-right: 14px;
}
.footer .f-sns {
	transition: 0.3s;
}
.footer .f-sns:hover {
	opacity: 0.5;
}
.footer .f-access {
	margin-bottom: 15px;
}
.footer .f-navi {
	display: flex;
	gap: 85px;
	font-size: 15px;
}
.footer .f-navi .item:first-child .f-navi-item:nth-child(1),
.footer .f-navi .item:first-child .f-navi-item:nth-child(2),
.footer .f-navi .item:first-child .f-navi-item:nth-child(3) {
	margin-bottom: 35px;
}
.footer .f-navi .item:nth-child(2) .f-navi-item:nth-child(1),
.footer .f-navi .item:nth-child(2) .f-navi-item:nth-child(2) {
	margin-bottom: 35px;
}
.footer .f-navi-ttl {
	margin-bottom: 5px;
}
.footer .f-navi-ttl a:hover {
	text-decoration: underline;
}
.footer .f-navi-list li {
	position: relative;
	padding-left: 15px;
	line-height: 2.1;
}
.footer .f-navi-list li::before {
	content: "";
	position: absolute;
	top: 14px;
	left: 0;
	transform: rotate(45deg);
	width: 5px;
	height: 5px;
	border: 0px;
	border-top: 1px solid #F5A12C;
	border-right: 1px solid #F5A12C;
}
.footer .f-navi-list li a:hover {
	text-decoration: underline;
}
.footer .copyright {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	text-align: center;
	padding: 10px;
	background: #F5A12C;
	font-size: 14px;
}
.footer .pagetop {
	display: block;
	background-color: #F5A12C;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: absolute;
	bottom: 70px;
	right: 21px;
	z-index: 2;
	transition: 0.3s;
}
.footer .pagetop:hover {
	transform: translateY(-10px);
}
.footer .pagetop:after {
	content: "";
	width: 8px;
	height: 8px;
	border: 0px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 56%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.fixed-menu02 {
	border-radius: 4px 0 0 4px;
	background: #F5A12C;
	color: #fff;
	display: flex;
	position: fixed;
	top: 50%;
	right: 0;
	transition: transform 0.5s;
	transform: translate(440px, -50%);
	z-index: 10;
}
.fixed-menu02:hover {
	transform: translate(0, -50%);
}
.fixed-menu02 .ttl {
	display: flex;
	align-items: center;
	writing-mode: vertical-rl;
	line-height: 1;
	white-space: nowrap;
	font-feature-settings: normal;
	padding: 35px 0;
	width: 58px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.1em;
}
.fixed-menu02 .ttl i {
	margin-bottom: 12px;
}
.fixed-menu02 .inner {
	display: grid;
	place-items: center;
	padding: 15px;
	padding-left: 0;
	width: 440px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
}
.fixed-menu02 .txt {
	font-size: 15px;
	text-align: center;
}
.fixed-menu02 .txt.type01 {
	display: flex;
	align-items: center;
	justify-content: center;
}
.fixed-menu02 .wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	margin-top: 17px;
}
.fixed-menu02 .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid #fff;
	color: #fff;
	font-size: 15px;
	line-height: 1.2;
	text-align: center;
	padding: 10px;
	min-width: 170px;
	min-height: 50px;
	width: 100%;
	transition: 0.3s;
}
.fixed-menu02 .btn.telbtn {
	font-family: "futura-pt", sans-serif;
	font-size: 16px;
	letter-spacing: 0.1em;
}
.fixed-menu02 .btn:hover {
	opacity: 0.5;
}
.fixed-menu02 .btn img {
	margin-right: 10px;
}

@media (max-width: 800px) {
	.footer-inr {
		display: block;
		padding: 50px 0;
	}
	.footer .f-logo-wrap {
		margin-bottom: 20px;
	}
	.footer .f-access {
		margin-bottom: 15px;
	}
	.footer .f-left {
		margin-bottom: 30px;
	}
	.footer .f-navi {
		display: block;
	}
	.footer .f-navi .item:not(:last-child) {
		margin-bottom: 15px;
	}
	.footer .f-navi .item:first-child .f-navi-item:nth-child(1),
	.footer .f-navi .item:first-child .f-navi-item:nth-child(2),
	.footer .f-navi .item:first-child .f-navi-item:nth-child(3) {
		margin-bottom: 15px;
	}
	.footer .f-navi .item:nth-child(2) .f-navi-item:nth-child(1),
	.footer .f-navi .item:nth-child(2) .f-navi-item:nth-child(2) {
		margin-bottom: 15px;
	}
	.footer .f-navi-ttl {
		margin-bottom: 5px;
	}
	.footer .f-navi-list li {
		position: relative;
		padding-left: 15px;
		line-height: 2.1;
	}
	.footer .f-navi-list li::before {
		content: "";
		position: absolute;
		top: 14px;
		left: 0;
		transform: rotate(45deg);
		width: 5px;
		height: 5px;
		border: 0px;
		border-top: 1px solid #F5A12C;
		border-right: 1px solid #F5A12C;
	}
	.footer .f-navi-list li a:hover {
		text-decoration: underline;
	}
	.footer .copyright {
		font-size: 12px;
		line-height: 1;
		color: #fff;
		text-align: center;
		padding: 20px 0 65px;
		background: #F5A12C;
	}
	.footer .pagetop {
		display: none;
	}
	.fixed-menu02 {
		display: none;
	}
}
/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*普通投稿*/
.list-post-type01 .list-item:not(:last-child) {
	margin-bottom: 80px;
}

.list-post-type02 .list-item {
	padding: 50px;
	border: 1px solid #F5A12C;
}
.list-post-type02 .list-item:not(:last-child) {
	margin-bottom: 50px;
}
.list-post-type02 .list-cont + .list-cont {
	margin-top: 35px;
}
.list-post-type02 .btn-more {
	display: block;
	margin: 45px auto 0;
}
.list-post-type02.single .list-item {
	padding: 0;
	border: none;
}

.list-post-type03 {
	display: flex;
	flex-wrap: wrap;
}
.list-post-type03 .list-item {
	width: 31.25%;
	transition: 0.4s ease-in-out;
}
.list-post-type03 .list-item a:hover .list-img img {
	transform: scale(1.1);
}
.list-post-type03 .list-item:not(:nth-child(3n)) {
	margin-right: 3.125%;
}
.list-post-type03 .list-item:nth-child(n+4) {
	margin-top: 50px;
}
.list-post-type03 .list-img {
	overflow: hidden;
	margin-bottom: 20px;
}
.list-post-type03 .list-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: 0.5s;
}
.list-post-type03 .list-ttl {
	font-size: 18px;
	width: 100%;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	word-break: break-word;
}

.post-layout {
	display: flex;
}
.post-layout .post-img {
	flex: 1;
	margin-right: 50px;
}
.post-layout .post-img img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 20px;
}
.post-layout .post-desc {
	flex: 2;
}

/*詳細ページ*/
.post-single-img {
	text-align: center;
	margin-bottom: 40px;
}

/*投稿本文用CSS*/
.postdata {
	overflow-wrap: break-word;
}
.postdata h4 {
	font-size: 18px;
	color: #FFEBCE;
}
.postdata h5 {
	font-size: 17px;
	padding-left: 10px;
	position: relative;
}
.postdata h5:after {
	content: "-";
	color: #FFEBCE;
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}
.postdata h6 {
	font-size: 16px;
	color: #FFEBCE;
}
.postdata .screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.postdata .screen-reader-text:focus {
	background-color: #eee;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
.postdata iframe {
	max-width: 100%;
}
.postdata p, .postdata ul, .postdata ol {
	margin-bottom: 15px;
}
.postdata a:not(.wp-block-button__link) {
	text-decoration: underline;
}
.postdata a:focus-visible {
	text-decoration: none;
}
.postdata strong {
	font-weight: 600;
}
.postdata em {
	font-style: italic;
}
.postdata ul li {
	list-style: inside disc;
}
.postdata ul li > ul {
	margin: 0 0 0 15px;
}
.postdata ol li {
	list-style: inside decimal;
}
.postdata ol li > ol {
	margin: 0 0 0 15px;
}
.postdata sub {
	font-size: 11px;
	position: relative;
	bottom: -0.1em;
}
.postdata sup {
	font-size: 11px;
	position: relative;
	top: -0.1em;
}
.postdata .screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.postdata .screen-reader-text:focus {
	background-color: #eee;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
.postdata iframe {
	max-width: 100%;
}
.postdata .wp-block-button__link {
	background-color: #F5A12C;
	border: 1px solid #F5A12C;
	border-radius: 2px;
	color: #fff;
	font-size: 15px;
	padding: 5px 35px;
	min-width: 200px;
	position: relative;
	text-decoration: none;
	transition: background-color 0.3s;
}
.postdata .wp-block-button__link::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
	transition: border-color 0.3s;
}
.postdata .wp-block-button__link:hover {
	opacity: 1;
	background-color: #fff;
	color: #F5A12C;
}

.post-data {
	line-height: 1;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}
.post-data time {
	font-size: 14px;
	color: #F5A12C;
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	line-height: 1;
}
.post-data .post-category01, .post-data .post-category02 {
	margin-left: 15px;
}

.post-ttl {
	word-break: break-all;
}

.post-category01 {
	border: 1px solid #F5A12C;
	color: #F5A12C;
	line-height: 1;
	padding: 5px 10px;
	display: inline-block;
}
.post-category01 span {
	font-size: 12px;
}
.post-category01 span:not(:first-child):before {
	content: " / ";
}

.post-category02 {
	line-height: 1;
	margin-left: -2px;
}
.post-category02 span {
	display: inline-block;
	font-size: 12px;
	border: 1px solid #F5A12C;
	color: #F5A12C;
	border-radius: 5px;
	padding: 5px 10px;
	margin: 2px;
}

/*セレクト式カテゴリー*/
.select-area {
	margin-bottom: 50px;
}
.select-area .select-box {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
}
.select-area .select-box:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 0;
	height: 0;
	border-top: 8px solid #F5A12C;
	border-right: 8px solid transparent;
	border-left: 8px solid transparent;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.select-area .select-category {
	-webkit-appearance: none;
	outline: none;
	text-indent: 0.01px;
	text-overflow: "";
	border-radius: 0;
	background: #fff;
	font-size: 16px;
	color: #F5A12C;
	vertical-align: middle;
	height: 50px;
	padding: 5px 15px;
	border: none;
	width: 100%;
	cursor: pointer;
}
.select-area .select-category::-ms-expand {
	display: none;
}

/*一覧用ページャー*/
.post-number {
	margin-top: 100px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	border-bottom: 1px solid #d3d3d3;
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
}
.post-number a {
	color: #a5a5a5;
	display: inline-block;
	padding: 0 10px 15px;
}
.post-number a:hover {
	color: #F5A12C;
}
.post-number .current {
	color: #F5A12C;
	display: inline-block;
	padding: 0 10px 15px;
	position: relative;
}
.post-number .current::after {
	content: "";
	border-bottom: 2px solid #F5A12C;
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
}

/*詳細用ページャー*/
.post-number-single {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border-bottom: 1px solid #d3d3d3;
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
}
.post-number-single a {
	display: inline-block;
	color: #F5A12C;
}
.post-number-single a.next {
	margin-top: 0;
}
.post-number-single a.next::before {
	content: "";
	background: url(../images/share/icon_arrow_post_left.svg) no-repeat center/contain;
	display: inline-block;
	margin-right: 15px;
	width: 30px;
	height: 30px;
}
.post-number-single a.prev {
	margin-top: 0;
}
.post-number-single a.prev::after {
	content: "";
	background: url(../images/share/icon_arrow_post_right.svg) no-repeat center/contain;
	display: inline-block;
	margin-left: 15px;
	width: 30px;
	height: 30px;
}
.post-number-single a:hover {
	opacity: 0.5;
}

.l-post-single .l-ttl {
	font-size: 30px;
	margin-bottom: 20px;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
	/*普通投稿*/
	.list-post-type01 .list-item:not(:last-child) {
		margin-bottom: 60px;
	}
	.list-post-type02 .list-item {
		padding: 25px 20px;
	}
	.list-post-type02 .list-item:not(:last-child) {
		margin-bottom: 20px;
	}
	.list-post-type02 .list-cont + .list-cont {
		margin-top: 20px;
	}
	.list-post-type02 .btn-more {
		display: block;
		margin: 30px auto 0;
	}
	.list-post-type03 {
		display: block;
	}
	.list-post-type03 .list-item {
		width: 100%;
	}
	.list-post-type03 .list-item:not(:nth-child(3n)) {
		margin-right: 0;
	}
	.list-post-type03 .list-item:nth-child(n+2) {
		margin-top: 30px;
	}
	.list-post-type03 .list-img {
		margin-bottom: 15px;
	}
	.list-post-type03 .list-img img {
		height: 60vw;
	}
	.list-post-type03 .list-ttl {
		font-size: 16px;
	}
	.post-layout {
		display: block;
	}
	.post-layout .post-img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.post-layout .post-desc {
		width: 100%;
	}
	/*詳細ページ*/
	.post-single-img {
		margin-bottom: 30px;
	}
	.l-post-single .l-ttl {
		font-size: 25px;
		margin-bottom: 15px;
	}
	.postdata h4 {
		font-size: 17px;
	}
	.postdata h5 {
		font-size: 16px;
	}
	.postdata h6 {
		font-size: 15px;
	}
	.post-data {
		align-items: flex-start;
		margin-bottom: 10px;
	}
	.post-data time {
		line-height: 2;
	}
	.post-data .post-category01 {
		margin-left: 15px;
	}
	.post-data .post-category02 {
		margin-left: 15px;
	}
	/*詳細ページ*/
	/*セレクト式カテゴリー*/
	/*一覧用ページャー*/
	.post-number {
		margin-top: 60px;
	}
}
/*------------
sidebar-layout
--------------*/
.sidebar-layout {
	display: flex;
	justify-content: space-between;
	padding: 100px 0;
	margin: 0 auto;
	max-width: 1400px;
}

.main-contents {
	padding: 0 70px;
	width: calc(100% - 220px);
	max-width: 1200px;
	margin: 0 auto;
}

.side-contents {
	padding: 0 40px;
	width: 220px;
}

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

.side-contents-ttl {
	border-bottom: 1px solid #e8ecf0;
	font-size: 15px;
	padding-bottom: 15px;
	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 {
	padding-left: 20px;
	position: relative;
	font-size: 14px;
}
.side-area-links li::before {
	content: "";
	border-style: solid;
	border-width: 4px 0 4px 5px;
	border-color: transparent transparent transparent #333;
	position: absolute;
	top: 7px;
	left: 0;
}
.side-area-links li + li {
	margin-top: 5px;
}
.side-area-links a {
	display: inline-block;
}
.side-area-links a:hover {
	text-decoration: underline;
}

.side-area-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	text-overflow: "";
	background: #fff url(../images/share/icon_select_arrow.svg) no-repeat right 10px center/20px auto;
	border-radius: 0;
	border: none;
	border: 1px solid #e8ecf0;
	color: #333;
	vertical-align: middle;
	padding: 10px 20px 10px 15px;
	margin: 0;
	width: 100%;
	height: 50px;
}

@media (max-width: 800px) {
	.sidebar-layout {
		flex-direction: column-reverse;
		padding: 50px 5vw;
		width: 100%;
	}
	.sidebar-layout .tall + .tall {
		margin-top: 50px;
	}
	.sidebar-layout.sp-reverse {
		flex-direction: column;
	}
	.sidebar-layout.sp-reverse .side-contents {
		margin: 0 0 50px;
	}
	.main-contents {
		width: 100%;
		padding: 0;
	}
	.side-contents {
		width: 100%;
		padding: 0;
		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;
	}
}
/*-----------------------------------------------------------
ボタン
-----------------------------------------------------------*/
.btn-more {
	display: block;
	width: 100%;
	max-width: 210px;
	padding: 14px 15px 14px 25px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.5;
	text-align: center;
	color: #fff;
	background-color: #F5A12C;
	border-radius: 50px;
	transition: 0.3s;
	position: relative;
}
.btn-more:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border: 0px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.btn-more:hover {
	opacity: 0.5;
}
.btn-more.center {
	margin-left: auto;
	margin-right: auto;
}
.btn-more.right {
	margin-left: auto;
}
.btn-more.wide {
	max-width: 299px;
}

.btn-icon {
	background: #F5A12C;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 50px;
	color: #fff;
}
.btn-icon img {
	width: 20px;
	margin-right: 10px;
}

.btn-line {
	background: #4CC764;
	color: #fff;
	padding: 10px 25px;
}
.btn-line img {
	line-height: 1;
	margin: 0 10px 0 -20px;
}

.btn-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-left: -8px;
}
.btn-wrap a {
	margin: 8px;
}
.btn-wrap.center {
	justify-content: center;
	margin-left: 0;
}

@media (max-width: 800px) {
	.btn-more {
		width: 100%;
		min-width: auto;
		max-width: none;
	}
	.btn-more.wide {
		max-width: none;
	}
	.btn-icon,
	.btn-line {
		width: 100%;
	}
	.btn-wrap {
		flex-direction: column;
		align-items: center;
		margin-left: 0;
		text-align: center;
	}
	.btn-wrap a {
		margin: 0;
	}
	.btn-wrap a:not(:last-child) {
		margin-bottom: 15px;
	}
	.btn-wrap .tel + .btn-more {
		margin-top: 20px;
	}
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.clearfix:after {
	clear: both;
	content: "";
	display: block;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

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

.ab {
	position: absolute;
}

.fade {
	transition: opacity 0.5s;
}
.fade:hover {
	opacity: 0.5;
}

.fs11 {
	font-size: 11px;
}

.txt-large {
	font-size: 20px;
}

.bold,
strong {
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
}

.underline {
	text-decoration: underline;
}

.marker span {
	background: linear-gradient(transparent 60%, #9BC83A 60%);
	padding-bottom: 3px;
}
.marker .large {
	font-size: 30px;
}
.marker .small {
	font-size: 20px;
}

.link {
	text-decoration: underline;
	word-break: break-all;
	position: relative;
}
.link[target=_blank]::after {
	content: "";
	display: inline-block;
	background: url(../images/share/icon_out.svg) no-repeat center/contain;
	width: 12px;
	height: 10px;
	margin-left: 5px;
}
.link:is(:hover, :focus) {
	text-decoration: none;
}

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

.indent {
	padding-left: 1em;
	text-indent: -1em;
}

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

.tac {
	text-align: center;
}

.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

.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;
}

@media (max-width: 800px) {
	.txt-large {
		font-size: 18px;
	}
	.marker .large {
		font-size: 24px;
	}
	.marker .small {
		font-size: 18px;
	}
	.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;
	}
}
/*診療カレンダー*/
: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%;
	border: 0 !important;
}
.business-calendar-box-wrap .business-calendar caption {
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	border: 0;
	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 {
	transform: rotate(180deg);
}
.business-calendar-box-wrap .business-calendar th {
	background: #f1f3f4;
	border: 0;
	text-align: center;
	font-weight: 600;
	font-size: 15px;
	padding: 5px;
	width: 14%;
}
.business-calendar-box-wrap .business-calendar td {
	background: #FFFFFF;
	border: 0;
	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%;
	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 {
	grid-template-columns: 1fr;
}
.business-calendar-box-wrap.col2 .business-calendar-box {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 3%;
}
.business-calendar-box-wrap .business-calendar .today {
	text-decoration: underline;
	background: #FFF;
	opacity: 1;
}
.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 {
		grid-template-columns: 1fr;
		grid-gap: 30px;
	}
	.list-event {
		display: block;
	}
	.list-event li + li {
		margin-top: 5px;
	}
}
/*診療時間*/
.time-table {
	border: 1px solid #DFDFDF;
	background: #fff;
	text-align: center;
	overflow: hidden;
}
.time-table-head {
	background-color: #F5A12C;
	color: #fff;
}
.time-table-head .item {
	padding: 10px 0;
}
.time-table-body {
	border-top: 1px solid #DFDFDF;
}
.time-table-body .item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
}
.time-table-body .item:first-child {
	background-color: #F5A12C;
	color: #fff;
	letter-spacing: 0;
}
.time-table-head, .time-table-body {
	display: grid;
	grid-template-columns: 120px repeat(6, 1fr) 60px;
}
.time-table.large .time-table-head, .time-table.large .time-table-body {
	grid-template-columns: 220px repeat(6, 1fr) 100px;
}

.time-table-txt {
	line-height: 1.5;
	margin-top: 10px;
}

@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-head, .time-table-body {
		grid-template-columns: 70px repeat(6, 1fr) 50px !important;
	}
	.time-table-txt {
		font-size: 13px;
	}
}
.map {
	position: relative;
	width: 100%;
	height: 500px;
}
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.tel {
	display: inline-block;
	font-size: 32px;
	font-family: "futura-pt", sans-serif;
	color: #F5A12C;
	font-weight: 500;
	line-height: 1;
	padding-left: 25px;
	position: relative;
}
.tel:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../images/share/icon_tel.svg) no-repeat;
	background-size: contain;
	width: 20px;
	height: 25px;
}
.tel.under::before {
	background: url(../images/share/icon_tel_b.svg) center/contain no-repeat;
}

@media (max-width: 800px) {
	.map {
		height: 300px;
	}
	.tel {
		font-size: 24px;
		padding-left: 25px;
	}
	.tel:before {
		width: 20px;
		height: 25px;
	}
}
/*------------
splide-core.min.css　※※※編集禁止※※※
-------------*/
@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		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 > .splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0;
}

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

.splide--rtl {
	direction: rtl;
}

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

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

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

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

.splide__pagination {
	-ms-flex-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

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

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

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

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

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

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	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;
}

/*-----------------------------------------------------------
splide
-----------------------------------------------------------*/
/* 各種色設定 */
:root {
	--splide-arrow-color: #2cc194; /* 矢印 */
	--splide-focus-color: #2cc194; /* タブ移動によるフォーカス時のアウトライン */
	--splide-pagination-color: #2cc194; /* アクティブ時のページネーション */
	--splide-progress-color: #2cc194; /* プログレスバー */
	--splide-toggle-color: #2cc194; /* 再生ボタン */
	--splide-track-color: #2cc194; /* サムネイルの枠 */
}

.splide {
	position: relative;
	visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
	visibility: visible;
}
.splide.is-focus-in .splide__arrow:focus,
.splide.is-focus-in .splide__pagination__page:focus,
.splide.is-focus-in .splide__slide:focus,
.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

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

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

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

.splide__pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}
.splide__pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress {
	background: #ddd;
	margin-top: 10px;
}
.splide__progress__bar {
	width: 0;
	background: var(--splide-progress-color);
	height: 3px;
}

.splide__slide {
	box-sizing: border-box;
	flex-shrink: 0;
	list-style: none !important;
	margin: 0;
	position: relative;
	backface-visibility: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.splide__slide:focus {
	outline: 0;
}

.splide__arrow {
	background: none;
	border: none;
	cursor: pointer;
	width: 35px;
	height: 35px;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	transition: 0.2s;
}
.splide__arrow svg {
	width: 100%;
	height: 100%;
	fill: var(--splide-arrow-color);
}
.splide__arrow:hover:not(:disabled), .splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow--prev {
	left: 20px;
	transform: translateY(-50%) scaleX(-1);
}

.splide__arrow--next {
	right: 20px;
}

.splide__pagination__page {
	background: #ddd;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 5px;
	opacity: 1;
	width: 8px;
	transition: transform 0.2s linear;
}
.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}
.splide__pagination__page.is-active {
	background: var(--splide-pagination-color);
	transform: scale(1.4);
	z-index: 1;
}

@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(1turn);
	}
}
@media (max-width: 800px) {
	.splide__arrow {
		width: 25px;
		height: 25px;
	}
	.splide__arrow--prev {
		left: 10px;
	}
	.splide__arrow--next {
		right: 10px;
	}
}
/*------------
アニメーション
--------------*/
.js-fadein {
	transition: opacity 1.2s, transform 1s;
	opacity: 0;
	transform: translateY(120px);
}
.js-fadein.is-show {
	opacity: 1;
	transform: translateY(0);
}

.fuwafuwa {
	-webkit-animation: fuwafuwa 3s infinite linear alternate;
	animation: fuwafuwa 3s infinite linear alternate;
}

@-webkit-keyframes fuwafuwa {
	0% {
		-webkit-transform: translate(0, 0);
	}
	50% {
		-webkit-transform: translate(0, -10px);
	}
	100% {
		-webkit-transform: translate(0, 0);
	}
}
@keyframes fuwafuwa {
	0% {
		transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -10px);
	}
	100% {
		transform: translate(0, 0);
	}
}
/*------------
Loading
-------------*/
#loading {
	width: 100vw;
	height: 100vh;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
}

#loading_barWrap {
	width: 30vw;
	height: calc(1rem + 5px);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}

#loading_bar {
	width: 0;
	height: 5px;
	background: #fff;
	transition-duration: 1s;
}

.text {
	text-align: center;
	color: #fff;
}

.loadingNone {
	animation: loadingAnime 1s forwards;
}

@keyframes loadingAnime {
	0% {
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		display: none;
	}
}



.hero .h-btn {
	position: absolute;
	right: 51px;
	bottom: 0;
	transition: 0.3s ease-out;
}
.recruit-btn {
		display: grid;
		place-content: center;
	background: linear-gradient(90deg, rgb(245, 161, 44), rgb(255, 211, 149));
	border-radius: 20px;
	color: #fff;
	font-size: 20px;
	font-family: "ヒラギノUD角ゴ StdN W6", sans-serif;
	font-weight: 600;
	padding: 41px 48px;
	max-width: 225px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	transition: 0.3s;
		position: fixed;
	right: 15px;
	bottom: 30px;
	z-index: 9999;
}
.recruit-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg) translateY(-50%);
	width: 8px;
	height: 8px;
}
.recruit-btn:hover {
	opacity: 0.5;
}
.recruit-btn.is-fixed {
	bottom: 30px;
}

@media (max-width: 800px) {
	.recruit-btn {
		font-size: 10px;
		padding: 0 20px;
		min-width: 109px;
		height: 100%;
		border-radius: 10px;
		right: 80px;
		top: 16px;
		height: 50px;
		
	}
	.recruit-btn::after {
		width: 4px;
		height: 4px;
		left: 10px;
	}
	.hero .h-btn.is-fixed {

	}
}