@charset "UTF-8";



.vertical-text {
	writing-mode: vertical-rl;
	-webkit-text-orientation: upright;
	text-orientation: upright;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
}

.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.has-max {
	height: auto;
	max-width: 100%;
}

.flex-wrapper {
	display: flex;
	flex-wrap: wrap;
}

.align-item-center {
	align-items: center;
}

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

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

.justify-end {
	justify-content: flex-end;
}

.img-wrapper {
	position: relative;
}
.img-wrapper .caption {
	position: absolute;
	bottom: 0;
	left: 8px;
	right: 8px;
	z-index: 1;
}

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

.grid-wrapper {
	display: grid;
}

.place-center {
	place-items: center;
}
/* info */
.inner.info{
	position: relative;
}
.fv-info02{
    position: absolute;
    top: 0%;
    right: 0%;
    display: flex;
    justify-content: flex-end;
    margin: 0 auto;
}

.fv-info-link02{
    font-size: 1.1rem;
    padding: 16px 24px;
    background:  #E88F00;
    color: #fff;
    transition: .6s;
    /* border-bottom: 1px solid #E88F00; */
}
.fv-info-link02:hover{
    opacity: .6;
    color: #fff;
    transition: .6s;
}
@media (max-width: 765px) {
    .fv-info02{
        top: 0%;
        right: 0%;
    }

    .fv-info-link02{
        font-size: .8rem;
        padding: 12px 16px;
        /* background: #f2d5bd; */
    }
}

/*--------------------------------
layout
--------------------------------*/
.page-loading {
	padding: 43px 3.5%;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	background: #fff;
	overflow: hidden;
}
.page-loading::before, .page-loading::after {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 21;
	content: "";
	transform: translate3d(0, 100%, 0);
}
.page-loading::before {
	background: #F6AB00;
}
.page-loading::after {
	background: #ea5504;
}
.page-loading.is-loaded {
	transform: translate3d(0, -100%, 0);
	transition: transform 0.4s ease-in 1s;
}
.page-loading.is-loaded::before {
	transform: translate3d(0, 0, 0);
	transition: transform 0.4s ease-in;
}
.page-loading.is-loaded::after {
	transform: translate3d(0, 0, 0);
	transition: transform 0.4s ease-in 0.6s;
}
@media (max-width: 991px) {
	.page-loading {
		padding: 20px 24px;
	}
	.page-loading img {
		width: 26px;
		height: auto;
	}
}

.wrapper {
	overflow: hidden;
}

.container {
	overflow: hidden;
}
.container.has-header {
	padding-top: 180px;
}
@media (max-width: 991px) {
	.container.has-header {
		padding-top: 80px;
	}
}

.inner {
	margin: 0 auto;
	width: min(100% - 48px, 93%);
	max-width: 1200px;
}

.inner-narrow {
	max-width: 878px;
}

.inner-wide {
	max-width: 1500px;
}

.inner-fit {
	width: 100%;
	max-width: none;
}

.inner-full {
	max-width: none;
}

.general-section {
	position: relative;
}
.general-section .inner {
	padding: clamp(32px, 6vw, 160px) 0;
}
.general-section .inner + .inner {
	padding-top: 0;
}
.general-section .inner.mb-0 {
	padding-bottom: 0;
}
.general-section .inner-min {
	padding: clamp(16px, 3vw, 40px) 0;
}

.general-parts {
	margin-bottom: clamp(16px, 6vw, 40px);
}

.btn-space {
	margin: clamp(16px, 3vw, 40px) 0;
	text-align: center;
}

.has-gap {
	gap: 32px;
}
@media (max-width: 991px) {
	.has-gap {
		gap: 16px;
	}
}

.col-2 {
	width: 50%;
}
.has-gap > .col-2 {
	width: calc(50% - 16px);
}

.col-3 {
	width: 33.3333333333%;
}
.has-gap > .col-3 {
	width: calc(33.3333333333% - 22px);
}

.col-4 {
	width: 25%;
}
.has-gap > .col-4 {
	width: calc(25% - 24px);
}

@media (max-width: 767px) {
	.col-2,
	.has-gap > .col-2 {
		width: 100%;
	}
	.col-3,
	.has-gap > .col-3 {
		width: 100%;
	}
	.sp-col-2 {
		width: 50%;
	}
	.has-gap > .sp-col-2 {
		width: calc(50% - 8px);
	}
}
@media (max-width: 991px) {
	.has-gap > .col-4 {
		width: calc(25% - 12px);
	}
}
/*--------------------------------
component
--------------------------------*/
.primary-heading {
	margin-bottom: 0.8em;
	font-size: 3.125rem;
	line-height: 1.3;
}
@media (max-width: 991px) {
	.primary-heading {
		font-size: 2rem;
	}
}

.secondary-heading {
	margin-bottom: 0.8em;
	font-size: 2.625rem;
	line-height: 1.5;
}
@media (max-width: 991px) {
	.secondary-heading {
		font-size: 1.875rem;
	}
}

.tertiary-heading {
	margin-bottom: 0.8em;
	font-size: 2.375rem;
	line-height: 1.5;
}
@media (max-width: 991px) {
	.tertiary-heading {
		font-size: 1.75rem;
	}
}

.quaternary-heading {
	margin-bottom: 0.8em;
	font-size: 2rem;
	line-height: 1.5;
}
@media (max-width: 991px) {
	.quaternary-heading {
		font-size: 1.75rem;
	}
}

.page-title {
	margin-bottom: 0.8em;
	font-size: 3.5rem;
	line-height: 1.2;
}
@media (max-width: 991px) {
	.page-title {
		font-size: 2.5rem;
	}
}

.lead {
	font-size: 1.5rem;
	line-height: 1.5;
}
@media (max-width: 991px) {
	.lead {
		font-size: 1rem;
	}
}

.note {
	margin-bottom: 1em;
	font-size: 1rem;
	line-height: 2;
}
@media (max-width: 991px) {
	.note {
		font-size: 0.875rem;
	}
}

.small-note {
	margin-bottom: 1em;
	font-size: 0.875rem;
	line-height: 2;
}
@media (max-width: 991px) {
	.small-note {
		font-size: 0.75rem;
	}
}

.caption {
	margin: 0.4em 0;
	font-size: 0.75rem;
	line-height: 1.5;
}
@media (max-width: 767px) {
	.caption {
		font-size: 0.625rem;
	}
}

[type=text],
[type=search],
[type=password],
[type=tel],
[type=email],
[type=num],
[type=date],
select,
textarea {
	margin-right: 4px;
	padding: 12px 8px;
	max-width: 100%;
	background: #fff;
	font-size: 1.125rem;
	font-weight: inherit;
	color: inherit;
	line-height: 1.3;
	border: 0;
	vertical-align: middle;
}
[type=text]:last-child,
[type=search]:last-child,
[type=password]:last-child,
[type=tel]:last-child,
[type=email]:last-child,
[type=num]:last-child,
[type=date]:last-child,
select:last-child,
textarea:last-child {
	margin-right: 0;
}

select {
	padding: 6px 32px 6px 12px;
	background: url(images/select_arrow.png) no-repeat right 8px center #fff;
	background-size: 14px auto;
	text-indent: 0.01px;
	text-overflow: "";
	border: 1px solid #e2e2e2;
	border-radius: 10px;
}

textarea {
	min-height: 100px;
}

.text-150 {
	width: 150px;
}

.text-fit {
	width: 100%;
}

.arrow {
	width: 0;
	height: 0;
	display: block;
	content: "";
	border-style: solid;
	border-width: 3.5px 0 3.5px 11px;
	border-color: transparent transparent transparent #fef2ec;
	transition: all 0.3s ease;
}

.btn {
	padding: 8px 16px;
	display: inline-block;
	text-align: center;
	vertical-align: middle;
}

.general-btn {
	padding: 0 16px;
	min-width: 190px;
	height: 60px;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	position: relative;
	z-index: 1;
	background: #ea5504;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 10px;
	border: none;
}
.general-btn span {
	transition: transform 0.3s ease-out;
}
.general-btn::after {
	width: 6px;
	height: 6px;
	display: block;
	background: #F6AB00;
	content: "";
	border-radius: 50%;
	transition: transform 0.3s ease-out;
}
.general-btn:hover {
	background: #ea5504;
	color: #fff;
}
.general-btn:hover span {
	transform: translateX(4px);
}
.general-btn:hover::after {
	transform: translateX(-8px);
}
.general-btn.has-icon::after {
	display: none;
}

.cta-btn {
	padding: 0 24px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	background: #ea5504;
	color: #fff;
	font-weight: 700;
	border-radius: 10px;
}
.cta-btn:hover {
	color: #fff;
	background-color: #ed9201;
}

.submit-btn {
	justify-content: center;
}
.submit-btn:disabled {
	opacity: 0.3;
}

.btn-min {
	padding: 0 10px;
	width: 76px;
	min-width: auto;
	height: 32px;
	font-size: 0.875rem;
}

.video-wrapper {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	display: block;
	content: "";
}
.video-wrapper iframe,
.video-wrapper video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.loading {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	content: "";
}

.bg-white {
	background: #fff;
}

.bg-light {
	background: #f5f5f4;
}

.bg-dark {
	background: #384250;
	color: #fff;
}

.bg-gray {
	background: #faf9f2;
}

.bg-secondary-thin {
	background: #fff9ed;
}

.bg-primary-thin {
	background: #fef2ec;
}

.mask {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: #fef2ec;
	content: "";
	animation-fill-mode: forwards;
	visibility: visible !important;
}

.mask-wrap {
	position: relative;
	overflow: hidden;
}

.breadcrumbs {
	position: absolute;
	top: 16px;
	left: 32px;
	z-index: 2;
	display: flex;
	gap: 4px;
	font-size: 0.875rem;
}
.breadcrumbs a {
	text-decoration: underline;
}
@media (min-width: 992px) {
	.breadcrumbs {
		left: auto;
		right: 32px;
		gap: 16px;
		transform-origin: left top;
		transform: translate(100%, 0) rotate(90deg);
	}
}
.breadcrumbs .no-link {
	color: #656565;
}


/*--------------------------------
top
--------------------------------*/
.hero {
	margin: 0 auto;
	width: 93%;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}
@media (max-width: 767px) {
	.hero {
		width: 100%;
		border-radius: 0;
	}
}

.hero-copy {
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 3%;
	right: 3%;
	z-index: 1;
	color: #fff;
	transform: translate(0, -50%);
	text-align: center;
}

.hero-main-copy {
	margin-bottom: 0.2em;
	font-size: clamp(3rem, 3.8vw, 4.375rem);
	font-weight: 600;
}
.loaded .hero-main-copy {
	animation: fadeInUp 0.6s ease-out 0.4s both;
	visibility: visible;
}

.hero-sub-copy {
	margin-bottom: 1.2em;
	font-size: clamp(1.1875rem, 2vw, 2.375rem);
	font-weight: 500;
}
.loaded .hero-sub-copy {
	animation: fadeInUp 0.6s ease-out 0.6s both;
	visibility: visible;
}

.hero-lead {
	font-size: 0.875rem;
	font-weight: 700;
}
.loaded .hero-lead {
	animation: fadeInUp 0.6s ease-out 0.8s both;
	visibility: visible;
}

.local-box {
	padding: 10%;
}

.heading-upper {
	margin-bottom: 0.4em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
}

.general-card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e2e2e2;
}

.card-content {
	padding: 10% 7%;
}
.card-content.has-btn-card {
	padding-bottom: calc(10% + 93px);
}
.card-content.has-btn-card .btn-space {
	position: absolute;
	left: 7%;
	bottom: 5%;
}

.card-title {
	margin-bottom: 0.8em;
	font-size: 2.125rem;
	font-weight: 500;
}
.card-title .is-key {
	margin-right: 0.6em;
	font-size: 1.125rem;
}
@media (max-width: 991px) {
	.card-title {
		font-size: 1.875rem;
	}
	.card-title .is-key {
		margin-bottom: 0.4em;
		display: block;
	}
}

.carousel-outer {
	margin-right: -250px;
}

.carousel-container .slick-item {
	padding: 0 16px;
	transition: padding 0.6s ease-out;
}
@media (max-width: 767px) {
	.carousel-container .slick-item {
		padding: 0 4px;
	}
}

@media (max-width: 767px) {
	.sp-place-left {
		place-items: unset;
	}
	.sp-place-left .btn-space {
		text-align: left;
	}
}

.link-banner {
	position: relative;
}
.link-banner a .fit-img {
	transition: transform 0.3s ease-out;
}
.link-banner a:hover .fit-img {
	transform: scale(1.2);
}
.link-banner .tertiary-heading {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 1;
	color: #fff;
	transform: translate(0, -50%);
}
@media (max-width: 767px) {
	.link-banner .fit-img {
		min-height: 300px;
		object-fit: cover;
	}
}

.banner-content {
	position: absolute;
	top: 47%;
	left: 0;
	right: 0;
	z-index: 1;
	color: #fff;
	transform: translate(0, -50%);
}
.banner-content .banner-heading {
	margin-bottom: 0.4em;
	font-size: 2.5rem;
	line-height: 1.3;
}

.banner-btn-space {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 15%;
	z-index: 2;
}
.banner-content + .banner-btn-space {
	bottom: 20%;
}

/*--------------------------------
member
--------------------------------*/
.loaded .page-title {
	animation: fadeInUp 0.6s ease-out 0.4s both;
	visibility: visible;
}

.loaded .page-title-sub {
	animation: fadeInUp 0.6s ease-out 0.3s both;
	visibility: visible;
}

.head-inline {
	margin-bottom: 32px;
	align-items: flex-start;
}
.head-inline .heading-upper {
	width: 25%;
}
@media (max-width: 991px) {
	.head-inline {
		gap: 8px;
	}
	.head-inline .heading-upper {
		margin-bottom: 0;
		width: 100%;
	}
}

.simple-carousel .slick-item {
	padding: 0 16px;
}
@media (max-width: 767px) {
	.simple-carousel .slick-item {
		padding: 0 4px;
	}
}
.simple-carousel a .fit-img {
	transition: transform 0.3s ease-out;
}
.simple-carousel a:hover .fit-img {
	transform: scale(1.2);
}
.simple-carousel .slick-prev {
	left: -26px;
}
.simple-carousel .slick-next {
	right: 216px;
}

.carousel-thumb {
	margin-bottom: 16px;
}
.carousel-thumb + .note {
	padding: 0 16px;
	line-height: 1.6;
	color: #292828;
}

.carousel-overlayer {
	padding: 160px 16px 16px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
	color: #fff;
}
.carousel-overlayer .staff-state {
	margin-bottom: 0.8em;
	font-size: 0.8125rem;
	line-height: 1.5;
}
.carousel-overlayer .staff-name {
	font-size: 1.375rem;
	font-weight: 500;
	line-height: 1.5;
}
.carousel-overlayer .btn {
	position: absolute;
	right: 16px;
	bottom: 16px;
}

@media (max-width: 767px) {
	.member .local-box {
		padding: 10% 0 0;
		width: 100%;
	}
}

/*--------------------------------
company
--------------------------------*/
.officer-title {
	margin-bottom: 8px;
}

.officer-name {
	font-size: 1.5rem;
	line-height: 1.5;
}

.ceo-msg-wrap {
	gap: 32px 10%;
}

.ceo-thumb {
	width: 40%;
	max-width: 510px;
}
@media (max-width: 991px) {
	.ceo-thumb {
		width: 100%;
	}
}

.ceo-msg {
	flex: 1;
}
@media (max-width: 991px) {
	.ceo-msg {
		flex: auto;
	}
}

.general-dl {
	grid-template-columns: 64px 1fr;
	gap: 32px;
}
.general-dl dt {
	color: #656565;
}
.general-dl dd .head{
	display: inline-block;
	width: 8em;
	margin-right: 2em;
}
.general-dl dd .body{
	display: inline-block;
	a{
		color: #000;
		text-decoration: underline;
	}
}
.icon-pdf {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    background: url(../images/common/icon-pdf2.svg) no-repeat center;
    background-size: contain;
    margin: 0 5px 4px;
		width: 19px;
		height: 23px;
}
/*--------------------------------
mansion
--------------------------------*/
.mansion-hero {
	position: relative;
	overflow: hidden;
}
.loaded .mansion-hero .hero-image {
	animation: fadeZoomIn 4s ease-in-out both 1.8s;
	visibility: visible;
}
.mansion-hero .hero-image-wrap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.mansion-hero .hero-copy-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	left: 50%;
	top: 6vw;
	transform: translateX(-50%);
}
.mansion-hero .brand-name {
	width: 42vw;
}
.loaded .mansion-hero .brand-name {
	animation: fadeInUp 2s ease-out both 0.4s;
	visibility: visible;
}
@media (max-width: 991px) {
	.mansion-hero .brand-name {
		width: 85vw;
	}
}
.mansion-hero .mansion-hero-copy {
	margin-top: 32px;
	width: 5.4vw;
}
.loaded .mansion-hero .mansion-hero-copy {
	animation: fadeInUp 2s ease-out both 1.6s;
	visibility: visible;
}
@media (max-width: 991px) {
	.mansion-hero .mansion-hero-copy {
		margin-top: 16px;
		width: 15vw;
	}
}

@keyframes fadeZoomIn {
	0% {
		transform: scale(1.2);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}
.is-anckor {
	margin-top: -120px;
	padding-top: 120px;
}
.is-anckor#sec-01, .is-anckor#sec-03 {
	position: relative;
	z-index: -1;
}

.index-wrapper {
	flex-wrap: nowrap;
	align-items: center;
	text-align: center;
}
@media (max-width: 991px) {
	.index-wrapper {
		padding: 0 16px;
	}
}
@media (max-width: 767px) {
	.index-wrapper {
		flex-wrap: wrap;
	}
}

.index-heading {
	margin-top: -150px;
	width: 16%;
	font-size: 2.5rem;
	font-weight: 400;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	letter-spacing: 0.5em;
	transform: translateX(-50%);
}
@media (max-width: 991px) {
	.index-heading {
		display: none;
	}
}

.index-item {
	flex: 1;
}
.index-item .img-wrapper {
	overflow: hidden;
}
.index-item .fit-img {
	transition: all 0.3s ease-out;
}
.index-item :hover .fit-img {
	transform: scale(1.2);
	filter: brightness(0.6);
}
@media (max-width: 767px) {
	.index-item {
		margin-bottom: 16px;
		width: calc(50% - 8px);
		flex: none;
	}
}

.index-title {
	margin: 1em 0;
	font-size: clamp(0.9375rem, 1.5vw, 2.375rem);
	font-weight: 400;
	color: #292828;
}

.index-num {
	padding: 0.4em 32px 0;
	display: inline-block;
	font-size: 2.5rem;
	font-weight: 400;
	color: #292828;
	border-top: 1px solid #9a9a9a;
}
@media (max-width: 767px) {
	.index-num {
		font-size: 1.25rem;
	}
}

.content-wrap {
	align-items: center;
}
@media (min-width: 992px) {
	.content-wrap {
		min-height: 100vh;
	}
	.content-wrap.is-fixed {
		padding-left: 38vw;
	}
}

@media (min-width: 992px) {
	.is-hidden {
		opacity: 0;
	}
	.is-fixed .thumb-item {
		position: fixed;
		z-index: 2;
		opacity: 1;
	}
	.over-scroll .thumb-item {
		opacity: 1;
	}
}
.thumb-item {
	width: 38vw;
	height: 100vh;
	top: 0;
	left: 0;
	transition: opacity 0.4s ease-out;
}
.thumb-item .fit-img {
	height: 100%;
	object-fit: cover;
}
@media (max-width: 991px) {
	.thumb-item {
		margin: 16px auto;
		width: calc(100% - 32px);
		max-width: 400px;
		height: auto;
	}
}

.content-item {
	padding: 0 5vw;
	flex: 1;
}
@media (max-width: 991px) {
	.content-item {
		padding: 16px;
		width: 100%;
		flex: none;
	}
}

.content-item .secondary-heading {
	margin-bottom: 4vw;
}

.section-header {
	margin-top: 7vw;
	position: relative;
}

.section-heading {
	padding: 16px 32px;
	display: inline-block;
	position: absolute;
	top: -0.5em;
	left: 5vw;
	z-index: 1;
	font-weight: 400;
	background: #fff;
}
@media (max-width: 767px) {
	.section-heading {
		padding: 8px 16px;
		top: -1em;
	}
}

.heading-num {
	margin-right: 32px;
	display: inline-block;
}
@media (max-width: 767px) {
	.heading-num {
		display: block;
	}
}

.has-side-padding {
	padding-left: 1em;
	padding-right: 1em;
}

.mansion .col-2 .note:first-child {
	margin-top: 0;
}
.mansion .slick-item {
	margin: 0 8px;
	text-align: center;
	transform: translateX(20%);
}
.mansion .bg-light {
	background-color: #fffef7;
}

.senior-section {
	padding-top: 6.7vw;
	padding-bottom: 12vw;
	background-image: url(../images/mansion/duoscene-wh.png), url(../images/mansion/section-foot.png);
	background-repeat: no-repeat;
	background-position: right top, center bottom;
	background-size: 60% auto, 100% auto;
}
@media (max-width: 767px) {
	.senior-section {
		background-size: 100% auto, 100% auto;
	}
}

.light-section {
	padding-bottom: 12vw;
	background-image: url(../images/mansion/section-foot-2.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}

.gray-section {
	padding-bottom: 12vw;
	background-image: url(../images/mansion/section-foot.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}

.section-border,
.general-section .inner + .section-border {
	padding-top: 48px;
	border-top: 1px solid #D1D1D1;
}

.illust-wrap {
	justify-content: center;
	gap: 64px 20px;
	text-align: center;
}
.illust-wrap.max-3 {
	gap: 64px 40px;
}
.illust-wrap > .flex-item {
	width: calc(25% - 15px);
}
.illust-wrap .lead {
	padding-top: 16px;
	border-top: 1px dotted #535353;
}
@media (max-width: 767px) {
	.illust-wrap {
		gap: 24px;
		justify-content: flex-start;
	}
	.illust-wrap.max-3 {
		gap: 24px;
	}
	.illust-wrap > .flex-item {
		width: calc(50% - 12px);
	}
}

@media (max-width: 767px) {
	.over-scroll {
		overflow-x: auto;
	}
	.over-scroll > img {
		min-width: 600px;
	}
}
.slide-loop {
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
}

.slide-loop-wrap {
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
}

.slide-loop-item,
.slide-loop-img {
	width: auto;
	height: 300px;
}

.slide-loop-item {
	display: flex;
}

@media (max-width: 991px) {
	.slide-loop,
	.slide-loop-item,
	.slide-loop-img {
		height: 200px;
	}
}
.area-wrapper {
	gap: 8px;
	text-align: center;
	justify-content: center;
}
@media (max-width: 767px) {
	.area-wrapper {
		width: 2072px;
		flex-wrap: nowrap;
	}
}

.general-section .inner-area {
	max-width: 1568px;
}

.area-item {
	margin-bottom: 32px;
	width: calc(25% - 6px);
}

.count {
	margin-top: -0.8em;
	font-size: 1.125rem;
	font-weight: 400;
}
@media (max-width: 767px) {
	.count {
		font-size: 0.875rem;
	}
}

.area-item {
	counter-increment: count;
}
.area-item .note {
	line-height: 1.6;
}
.area-item .img-wrapper::before {
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #456254;
	content: counter(count);
	color: #fff;
	line-height: 30px;
}
@media (max-width: 991px) {
	.area-item {
		width: calc(25% - 6px);
	}
}
@media (max-width: 767px) {
	.area-item {
		margin-bottom: 16px;
		width: 200px;
	}
}

.banner-space {
	margin: 0 auto;
	max-width: 600px;
}

/*--------------------------------
care
--------------------------------*/
.care .mv {
	position: relative;
}
.care .secondary-heading.flex-wrapper {
	flex-wrap: nowrap;
}
.care .secondary-heading:last-child,
.care .note:last-child {
	margin-bottom: 0;
}
.care .header-inline .lead {
	margin-bottom: 0.8em;
}

.care-logo {
	margin: 0 auto;
	position: absolute;
	left: 24px;
	right: 24px;
	top: 18%;
}
@media (min-width: 768px) {
	.care-logo {
		width: 50%;
	}
}
.loaded .care-logo {
	animation: fadeInUp 0.6s ease-out 0.6s both;
	visibility: visible;
}

@media (max-width: 767px) {
	.index-outer {
		margin: 0 -24px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
	}
}

@media (max-width: 767px) {
	.care-index-wrapper {
		padding: 0 24px;
		width: 1200px;
	}
}

.index-card {
	scroll-snap-align: center;
}

.index-section::after {
	width: 100%;
	height: 400px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	background-color: #fef2ec;
	content: "";
}
@media (max-width: 767px) {
	.index-section::after {
		height: 300px;
	}
}

.index-card:nth-child(even) {
	padding-top: 40px;
}
.index-card a .fit-img {
	transition: transform 0.3s ease-out;
}
.index-card a:hover .fit-img {
	transform: scale(1.2);
}
.index-card .note {
	margin: 16px 0 0;
	line-height: 1.5;
	flex-wrap: nowrap;
}

.numbering {
	margin-right: 0.5em;
	font-weight: 400;
	color: #292828;
}
.index-card .numbering {
	font-size: 0.9375rem;
}
.secondary-heading .numbering {
	font-size: 1.375rem;
	line-height: 63px;
}
@media (max-width: 991px) {
	.secondary-heading .numbering {
		line-height: 44px;
	}
}

.slick-loop .slick-item {
	padding: 0 16px;
}

.illust-thumb {
	margin-bottom: 16px;
	border-radius: 26px;
	border: 1px solid #EFD8CB;
	overflow: hidden;
}

.illust-title {
	display: flex;
	align-items: center;
	gap: 4px;
}
.illust-title::before {
	width: 20px;
	height: 2px;
	display: block;
	background: #ea5504;
	content: "";
}

.local-card {
	padding: 32px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #EFD8CB;
	overflow: hidden;
}
.local-card .note {
	margin-top: 16px;
}
@media (max-width: 991px) {
	.local-card {
		padding: 16px;
	}
}

.card-inner {
	margin: 0 auto;
	max-width: 1200px;
}

.meta-head {
	margin-bottom: 40px;
	gap: 60px;
}
@media (max-width: 991px) {
	.meta-head {
		gap: 16px;
	}
}

.meta-upper {
	margin-bottom: 0.4em;
	font-size: 1rem;
	line-height: 1.5;
}

.thumb-icon {
	max-width: 177px;
}
@media (max-width: 991px) {
	.thumb-icon {
		width: 100%;
		max-width: none;
	}
}

.data-detail {
	gap: 16px;
}
@media (max-width: 991px) {
	.data-detail {
		display: none;
	}
}

.data-table {
	flex: 1;
	font-size: 1rem;
	line-height: 1.5;
	border-top: 1px solid #e2e2e2;
}
.data-table th {
	width: 35%;
	text-align: left;
	color: #292828;
}
.data-table th,
.data-table td {
	padding: 16px;
	border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 767px) {
	.data-table th,
	.data-table td {
		display: block;
		width: 100%;
	}
}
@media (max-width: 767px) {
	.data-table th {
		padding-bottom: 0;
		border-bottom: none;
	}
}

.pdf-btn {
	display: inline-block;
	background: #FAFAFA;
	padding: 4px 16px 4px 36px;
	margin: 4px 0 4px 8px;
	font-size: 13px;
	position: relative;
	color: #525151;
	border-bottom: 1px solid #aaa;
	border-right: 1px solid #aaa;
	border-left: 1px solid #f4f4f4;
	border-top: 1px solid #f4f4f4;
}
.pdf-btn::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: block;
	content: "";
	aspect-ratio: 1/1;
	background: url(../images/common/icon-pdf.svg) no-repeat center center #e03737;
	background-size: 16px;
	transition: 0.3s ease-out;
}
.pdf-btn::after {
	position: absolute;
	width: 5px;
	height: 5px;
	top: 4px;
	right: 4px;
	content: "";
	background: url(../images/common/icon-right-up.svg) no-repeat center;
	background-size: contain;
	transition: 0.1s ease-in;
}
.pdf-btn:hover {
	color: #333;
	background: #f3f3f3;
	border-bottom: 1px solid #f3f3f3;
	border-right: 1px solid #f3f3f3;
	border-left: 1px solid #eee;
	border-top: 1px solid #eee;
	transform: translateY(1px);
}
.pdf-btn:hover::before {
	background-color: #ca3434;
}
.pdf-btn:hover::after {
	top: 3px;
	right: 3px;
}
@media (max-width: 767px) {
	.pdf-btn {
		margin: 0 0 16px;
	}
}

.map-wrapper {
	padding: 8px;
	width: 453px;
	max-width: 453px;
	aspect-ratio: 1/1;
	border: 1px solid #e2e2e2;
}
@media (max-width: 991px) {
	.map-wrapper {
		width: 100%;
		max-width: none;
	}
}
.map-wrapper > div {
	height: 100%;
	position: relative;
	content: "";
}
.map-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.icon {
	margin-right: 4px;
}

@media (max-width: 767px) {
	.care .local-box {
		padding: 10% 0;
		width: 100%;
	}
}

.toggle-btn {
	margin-top: 16px;
	padding-top: 16px;
	display: block;
	border-top: 1px solid #e2e2e2;
}
@media (min-width: 992px) {
	.toggle-btn {
		display: none;
	}
}

.mark-btn {
	margin: 0 auto;
	width: 46px;
	height: 46px;
	display: block;
	position: relative;
	border: 1px solid #e2e2e2;
	border-radius: 50%;
}
.mark-btn::before, .mark-btn::after {
	display: block;
	position: absolute;
	content: "";
	background: #9a9a9a;
}
.mark-btn::before {
	width: 24px;
	height: 2px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.mark-btn::after {
	width: 2px;
	height: 24px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.is-ac-open .mark-btn::after {
	opacity: 0;
}

.flex-nowrap {
	flex-wrap: nowrap;
	align-items: flex-start;
}
.flex-nowrap .icon {
	margin-top: 0.2em;
}

/*--------------------------------
debate
--------------------------------*/
.back-btn {
	margin-bottom: 40px;
	padding: 0 16px;
	height: 47px;
	display: inline-flex;
	gap: 16px;
	align-items: center;
	background: #f5f5f4;
	color: #292828;
	font-weight: 500;
	border-radius: 10px;
}
.back-btn path {
	transition: fill 0.3s ease-out;
}
.back-btn:hover {
	background-color: #F6AB00;
	color: #fff;
}
.back-btn:hover path {
	fill: #fff;
}

.debate-card {
	width: 30%;
	max-width: 497px;
	background: #f5f5f4;
	border-radius: 10px;
	overflow: hidden;
}
.debate-card .card-title {
	font-size: 1.25rem;
}
@media (max-width: 767px) {
	.debate-card {
		width: 100%;
	}
}

.chat-inner {
	padding: 5%;
}

.chat-title {
	padding-left: 16px;
	border-left: 3px solid #ea5504;
}

.chat-body {
	position: relative;
}

.eyecatch {
	transition: opacity 1s ease-out;
}
@media (max-width: 767px) {
	.eyecatch {
		margin-bottom: 16px;
	}
}
@media (min-width: 768px) {
	.eyecatch {
		width: calc(50% - 16px);
		position: absolute;
		left: 0;
		top: 0;
	}
	.eyecatch:not(:nth-of-type(1)), .local-box .eyecatch {
		opacity: 0;
	}
	.is-fixed-eye .eyecatch {
		width: calc(46.5% - 16px);
		position: fixed;
		left: 3.5%;
		top: 150px;
	}
	.is-end-eye .eyecatch {
		width: calc(50% - 16px);
		position: absolute;
		left: 0;
		top: auto;
		bottom: 0;
	}
	.eyecatch.is-visible {
		opacity: 1;
	}
}

.send-wrap,
.resv-wrap {
	margin-top: 16px;
	display: flex;
	gap: 32px;
	align-items: flex-start;
}

.send-wrap {
	justify-content: flex-end;
}
.send-wrap .thumb-group {
	order: 2;
}

.resv-wrap {
	justify-content: flex-start;
}

.thumb-group {
	width: 80px;
	text-align: center;
}

.thumb-name {
	margin-top: 16px;
	font-size: 1.125rem;
	font-weight: 700;
}

.thumb-circle {
	width: 80px;
	height: 80px;
	overflow: hidden;
	border-radius: 50%;
}

.chat-text {
	padding: 16px;
	max-width: 340px;
	position: relative;
	background: #fff;
	border-radius: 20px;
	line-height: 1.5;
	font-weight: 500;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
}
.chat-text::after {
	width: 0;
	height: 0;
	position: absolute;
	top: 12px;
	content: "";
	border-style: solid;
}
.send-wrap .chat-text::after {
	right: -14px;
	border-width: 14px 0 14px 15px;
	border-color: transparent transparent transparent #fff;
}
.resv-wrap .chat-text::after {
	left: -14px;
	border-width: 14px 15px 14px 0;
	border-color: transparent #fff transparent transparent;
}

.bold-border {
	border: 4px solid #eaeaea;
}

/*--------------------------------
voice
--------------------------------*/
.voice-inner {
	padding: 5%;
}
.voice-inner > .is-radius {
	margin: 32px auto;
	max-width: 680px;
}

.voice-heading {
	margin: 0 -8px 16px;
	padding: 12px 32px 12px 32px;
	position: relative;
	background: #fff;
	border-radius: 10px;
	font-size: 1.375rem;
	line-height: 1.5;
}
.voice-heading::before {
	width: 3px;
	height: auto;
	display: block;
	position: absolute;
	left: 16px;
	top: 12px;
	bottom: 12px;
	content: "";
	background: #ea5504;
}

.local-parts {
	margin-bottom: 16px;
}

.schedule-box {
	padding: 16px;
	border: 1px solid #fdfdfa;
}

.schedule-heading {
	margin-top: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.375rem;
}

.schedule-body {
	position: relative;
}
.schedule-body > figure {
	margin: 32px 10% 32px 25%;
}
@media (max-width: 767px) {
	.schedule-body > figure {
		margin: 16px 0;
		position: relative;
		z-index: 1;
	}
}
.schedule-body::after {
	width: 1px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 110px;
	background: #c3c3c3;
	content: "";
}
@media (max-width: 767px) {
	.schedule-body::after {
		left: 60px;
	}
}

.schedule-list {
	margin-top: 16px;
	min-height: 90px;
	display: flex;
	align-items: center;
	background: #f2eaea;
	border-radius: 10px;
	line-height: 1.5;
}
@media (max-width: 767px) {
	.schedule-list {
		min-height: 80px;
	}
}
.schedule-list .time-stamp {
	width: 110px;
	text-align: center;
	font-weight: 700;
	font-size: 1rem;
}
@media (max-width: 767px) {
	.schedule-list .time-stamp {
		width: 60px;
		font-size: 0.875rem;
	}
}
.schedule-list .schedule-text {
	padding: 16px 32px;
	flex: 1;
	font-weight: 500;
	font-size: 1.125rem;
}
@media (max-width: 767px) {
	.schedule-list .schedule-text {
		padding: 8px;
		font-size: 0.9375rem;
	}
}

.pager {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*--------------------------------
state
--------------------------------*/
.is-none {
	display: none;
}

.disabled {
	opacity: 0.1;
	cursor: default;
	pointer-events: none;
}

.unscrollable {
	height: 100%;
	overflow: hidden;
}

.coming-soon {
	opacity: 0.8;
	pointer-events: none;
}

.none {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.is-fv {
	opacity: 0;
	animation-fill-mode: both;
	visibility: hidden;
}

.is-light {
	color: #fff;
}

.is-dark {
	color: #292828;
}

.gray-text {
	color: #656565;
}

.is-key {
	color: #ea5504;
}

.is-accent {
	color: #F6AB00;
}

.is-shadow {
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}

.is-radius {
	border-radius: 10px;
	overflow: hidden;
}

.is-alert {
	color: #ff1c1c;
}

.is-semibold {
	font-weight: 500;
}

.is-bold {
	font-weight: 700;
}

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

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.text-link {
	color: #656565;
	text-decoration: underline;
}
.text-link:hover {
	color: #F6AB00;
}

.small-text {
	font-size: 70%;
}

.large-text {
	font-size: 150%;
}

.line-wide {
	line-height: 2.4;
}

.en-font {
	font-family: "Poppins", sans-serif;
}

.has-line {
	padding-bottom: 0.2em;
	display: inline-block;
	position: relative;
	border-bottom: 1px solid #e2e2e2;
}

.has-border-top {
	border-top: 1px solid #e2e2e2;
}

.has-border-bottom {
	padding-bottom: 0.4em;
	border-bottom: 1px solid #656565;
}

@media (min-width: 992px) {
	.pc-order-2 {
		order: 2;
	}
}
@media (max-width: 767px) {
	.sp-text-left {
		text-align: left;
	}
}
@media (min-width: 992px) {
	.pc-none {
		display: none;
	}
}
@media (max-width: 991px) {
	.sp-none {
		display: none;
	}
}
@media (max-width: 767px) {
	.mobile-none {
		display: none;
	}
}
@media (min-width: 768px) {
	.tab-none {
		display: none;
	}
}
/* Hides from IE-mac \*/
.clearfix {
	display: block;
}
