@charset "UTF-8";

/*------------------------------------------------
html,body
------------------------------------------------*/

html,
body {
	background: #fff none;
	font-size: 14px;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
	color: #493930;
	letter-spacing: 0;
	font-family: "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
}

*::-moz-selection {
	background: rgba(0, 0, 0, 0.2);
}

*::selection {
	background: rgba(0, 0, 0, 0.2);
}

*::-moz-selection {
	background: rgba(0, 0, 0, 0.2);
}

/*------------------------------------------------
wrapper
------------------------------------------------*/

#wrapper {
	position: relative;
	overflow: hidden;
}
#wrapper-in{
	background-image: url(https://secm.ansl-okinawa.com/wp-content/uploads/2024/11/background.png);
}
@media screen and (min-width: 768px) {
	#wrapper {
		min-width: 1100px;
	}
	#wrapper .w900 {
		width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
	#wrapper .w1000 {
		width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}
	#wrapper .w1050 {
		width: 1050px;
		margin-left: auto;
		margin-right: auto;
	}
}

/*------------------------------------------------
header
------------------------------------------------*/

#header {
	position: relative;
	z-index: 10000;
}

@media screen and (min-width: 768px) {
	#header {
		min-width: 1100px;
		height: 162px;
	}
}

/*------------ header__top ------------*/

.header__top {
	width: 100%;
	max-width: 1180px;
	height: 100px;
	margin-right: auto;
	margin-left: auto;
	padding: 0 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

/*------------ header__h1 ------------*/

.header__h1 {
	font-size: 12px;
	line-height: 1;
}

/*------------ header-logo ------------*/

.header-logo {
	width: 165px;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}
.logo__link {
	display: block;
	width: 100%;
	height: 100%;
}

/*IE対応*/
.logo__link img {
	width: 100%;
	height: auto;
}

/*------------ header__c-box ------------*/

.header__c-box {
	font-weight: bold;
}
.header__c-box--pc {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}
.header__c-box-tel {
	margin-right: 25px;
}
.header__c-box-tel-num {
	font-size: 22px;
	line-height: 1;
}
.header__c-box-tel-txts {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 5px;
}
.header__c-box-tel-txt-sub {
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 55px;
	height: 20px;
	border-radius: 20px;
	background-color: #e60012;
	color: #fff;
}
.header__c-box-tel-txt {
	font-size: 11px;
}
.header__c-box-counseling {
	color: #00B900;
	font-size: 14px;
	width: 170px;
	height: 50px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	border: 2px solid #00B900;
	transition: 0.3s;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.header__c-box-counseling:hover {
		color: #fff;
		background-color: #fe4c69;
	}
}
/* /pc-only -----------*/

/*------------ header__nav ------------*/

.header__nav {
	width: 100%;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
}
.header__nav-list {
	width: 100%;
	max-width: 1180px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.header__nav-list {
		min-width: 1100px;
	}
}
/* /pc-only -----------*/
.header__nav-item {
	position: relative;
	width: calc(100% / 7);
}
.header__nav-item:not(:last-child)::after {
	content: "";
	display: block;
	width: 1px;
	height: 30px;
	background-color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
	opacity: 0.5;
}
.header__nav-link {
	display: block;
	padding: 23px 0;
	text-align: center;
	transition: 0.3s;
	font-size: 12px;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.header__nav-link:hover {
		background-color: rgba(73, 57, 48, 0.3);
	}
	.header__nav.active {
		position: fixed;
		top: 0;
	}
	.header__nav.active .header__nav-link {
		padding: 15px 0;
	}
}
/* /pc-only -----------*/

.oh-open {
	overflow: visible;
}

/*------------ pop-block ------------*/
.overlay02 {
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	top: 0;
	left: 0;
	z-index: 20000;
}
.pop-block {
	position: fixed;
	width: 760px;
	background: #fe4c69;
	border-radius: 10px;
	padding: 50px 50px 10px;
	display: none;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 20000;
}
.pop-block.pop-open {
	display: block;
}
.pop-block::after {
	position: absolute;
	content: " ";
	width: 1px;
	height: 50px;
	background-color: #fff;
	top: 0;
	left: 50%;
}
.pop-block__ttl {
	font-size: 26px;
	text-align: center;
	margin-bottom: 10px;
}
.pop-block__link {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 2px dotted #dc3954;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.pop-block__linkitem {
	position: relative;
	width: 320px;
	height: 60px;
	background-color: #ccc;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}
.pop-block__linkitem:nth-child(1) {
	margin-right: 20px;
}
.pop-block__linkitem--01::before,
.pop-block__linkitem--02::before {
	/* position: absolute; */
	content: " ";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	margin-right: 10px;
}
.pop-block__linkitem--01 {
	color: #fff;
	background-color: #493931;
	border: 1px solid #493931;
	transition: background 0.25s;
}
.pop-block__linkitem--01:hover {
	background-color: #675e5a;
}
.pop-block__linkitem--01::before {
	width: 17px;
	height: 17px;
	background-image: url(../../common/img/ico_02.png);
	left: 63px;
}
.pop-block__linkitem--02 {
	color: #dc3954;
	background-color: #fff;
	transition: background 0.25s;
}
.pop-block__linkitem--02:hover {
	background-color: #ffd5dc;
}
.pop-block__linkitem--02::before {
	width: 13px;
	height: 20px;
	background-image: url(../../common/img/ico_03.png);
	left: 32px;
}
.pop-block__bottom {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #fff;
}
.pop-block__pick {
	margin-right: 10px;
	background-image: url(../../common/img/ico_01.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 111px;
	padding: 0 40px 20px 0;
	margin-top: 10px;
}
.pop-block__banner {
	width: 194px;
	display: block;
}
.pop-block__cloce {
	text-align: center;
	cursor: pointer;
	padding: 15px 0 10px;
}
.pop-block__clocein {
	position: relative;
	display: inline-block;
}
.pop-block__clocein:after {
	position: absolute;
	content: " ";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	top: 8px;
	right: -14px;
	width: 10px;
	height: 10px;
	background-image: url(../../common/img/ico_04.png);
}

/* pc-only ------------*/
@media screen and (max-width: 768px) {
	.pop-block {
		width: 90%;
		padding: 30px 30px 10px;
	}
	.pop-block::after {
		height: 30px;
	}
	/* .pop-block__ttl {
	} */
	.pop-block__link {
		padding-bottom: 15px;
		margin-bottom: 10px;
	}
	.pop-block__linkitem {
		width: 100%;
		height: 60px;
		min-width: 260px;
	}
	.pop-block__linkitem:nth-child(1) {
		margin: 0 0 10px;
	}
	.pop-block__linkitem--01:hover {
		background-color: #493931;
	}
	.pop-block__linkitem--01::after {
		left: 47px;
	}
	.pop-block__linkitem--02:hover {
		background-color: #fff;
	}
	.pop-block__linkitem--02::before {
		left: 20px;
	}
	.pop-block__bottom {
		flex-direction: column;
		padding-bottom: 15px;
	}
	.pop-block__pick {
		margin-right: 0;
		margin-bottom: 5px;
		background-image: none;
		padding: 0;
		margin-top: 0;
	}
	.pop-block__banner {
		width: 166px;
	}
	.pop-block__cloce {
		padding: 10px 0 5px;
	}
}

/*------------ header-fix-bnr ------------*/

.header-fix-bnr {
	position: fixed;
	z-index: 1000;
	transition: 1s;
	right: -100%;
	/*right: 0;*/
	height: 350px;
	top: -10%;
	bottom: 0;
	margin: auto;
}
.header-fix-bnr.active {
	right: 0;
}
.header-fix-btn {
	width: 60px;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
}
.header-fix-btn01 {
	background-image: url(../img/side/btn_01.png);
	height: 200px;
}
.header-fix-btn02 {
	background-image: url(../img/side/btn_02.png);
	height: 130px;
	margin-top: 20px;
}
.header-fix-btn03 {
	background-image: url(../img/side/btn_03.png);
	height: 189px;
	margin-top: 20px;
}

/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.header__nav-link__list {
		display: block;
		position: absolute;
		width: 155px;
		top: auto;
		left: -100%;
		right: -100%;
		margin: auto;
		font-size: 12px;
		text-align: center;
		opacity: 0;
		visibility: hidden;
		transition: 0.2s;
		pointer-events: none;
	}
	.header__nav-link__item:not(:last-child) {
		border-bottom: 1px solid #ddd;
	}
	.header__nav-link__link {
		display: block;
		width: 100%;
		height: 100%;
		padding: 15px;
		background-color: #493930;
		transition: 0.3s;
	}
	.header__nav-link__link02 {
		padding: 10px;
		line-height: 1.5;
	}
	.header__nav-link__link:hover {
		background-color: #6b5c54;
	}

	.header__nav-item--open:hover .header__nav-link__list {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}
/* /pc-only -----------*/

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

@media screen and (min-width: 768px) {
	#main {
		/*IE対策*/
		display: block;
	}
}

/*------------------------------------------------
section
------------------------------------------------*/

.section_box {
	padding: 70px 0 55px;
}

/*------------------------------------------------
breadcrumb
------------------------------------------------*/

.breadcrumb {
	width: 1050px;
	margin: 10px auto;
}
.breadcrumb__item {
	display: inline;
}
.breadcrumb__item:not(:last-child)::after {
	content: "/";
	display: inline-block;
	text-decoration: none;
	margin: 0 5px;
}
.breadcrumb__link {
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.05em;
}
p.breadcrumb__link {
	display: inline;
}
a.breadcrumb__link {
	color: #ff7f41;
	text-decoration: underline;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	a.breadcrumb__link:hover {
		text-decoration: none;
	}
}
/* /pc-only -----------*/

/*------------------------------------------------
contact02(kids)
------------------------------------------------*/
.contact02 {
	padding: 50px 0;
}
.contact02-in {
	width: 1050px;
	margin-right: auto;
	margin-left: auto;
	padding: 0 20px 20px;
}
@media screen and (min-width: 768px) {
	.contact02.contact02--narrow .contact02-in {
		width: 705px;
	}
}
[class^="contact02-btn--"] {
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #493930;
	border-radius: 10px;
	font-weight: bold;
	font-size: 26px;
	transition: 0.5s ease;
}
@media screen and (min-width: 768px) {
	[class^="contact02-btn--"]:hover {
		opacity: 0.6;
	}
}
.contact02-btn--main {
	color: #7b6660;
	width: 480px;
	height: 130px;
}
.contact02-btn--main span img {
	display: block;
	width: 26px;
	margin-right: 15px;
}
.contact02-sub {
	width: 480px;
	height: 130px;
	align-items: stretch;
}
.contact02-btn--sub {
	width: 230px;
}
[class^="contact02-btn__ico"] {
	display: block;
	line-height: 1;
	width: 25px;
	margin-right: 10px;
}
.contact02-btn__ico02 {
	width: 32px;
}
.contact02-btm {
	width: 100%;
	justify-content: center;
	color: #fff;
	font-size: 16px;
}
.contact02-btm dt {
	display: inline-block;
	padding: 0 20px;
	background: #493930;
	height: 26px;
	line-height: 26px;
	border-radius: 13px;
	text-align: center;
	margin-right: 20px;
}

/*------------------------------------------------
footer
------------------------------------------------*/

#vgdataMainFrm1594034868643 {
	bottom: 50px;
}

#footer {
}

/*------------ footer__shop ------------*/

.footer__shop {
	padding: 70px 0 80px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.footer__shop-bg {
	background: url(../img/footer/shop/bg_01.jpg) no-repeat center / cover;
	height: 660px;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	left: 0;
	right: 0;
	z-index: 1;
}
.footer__shop-in {
	width: 1050px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	z-index: 2;
}
.footer__shop-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 30px;
	border-bottom: 2px solid #ddcbac;
}
.footer__shop-head-ttl-wrap {
	width: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.footer__shop-head-ttl {
	font-size: 24px;
	font-weight: bold;
	margin-right: 35px;
	letter-spacing: 0.05em;
	line-height: 1;
}
.footer__shop-head-ttl-img {
	width: 78px;
}
.footer__shop-head-btn {
	width: 70px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	border-radius: 15px;
	background-color: #fff;
	color: #7b6660;
	font-weight: bold;
	font-size: 13px;
	transition: 0.3s;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.footer__shop-head-btn:hover {
		background-color: #f3601a;
		color: #fff;
	}
}
/* /pc-only -----------*/
.footer__shop-list-wrap {
	padding: 40px 0 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}
.footer__shop-list-l,
.footer__shop-list-r {
	width: 50%;
}
.footer__shop-list-block {
}
.footer__shop-list-block:not(:last-child) {
	margin-bottom: 30px;
}
.footer__shop-list-block-ttl {
	font-size: 20px;
	font-weight: bold;
	width: 100%;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.footer__shop-list-block-ttl a {
		text-decoration: underline;
	}
	.footer__shop-list-block-ttl a:hover {
		text-decoration: none;
	}
}
.footer__shop-list-block-list {
	/*margin-top: 7px;*/
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.footer__shop-list-block-item {
	font-size: 16px;
}
.footer__shop-list-block-item:not(:last-child)::after {
	content: "／";
}
.footer__shop-list-block-link {
	text-decoration: underline;
}
.footer__shop-list-r {
}

/*------------ footer__contact ------------*/

.footer__contact {
	position: relative;
	padding: 50px 0;
}
.footer__contact.scrollin::before {

}
.footer__contact::before {
	content: "";
	position: absolute;
	top: -47px;
	right: calc(50% - 650px + 291px);
	z-index: 2;
	width: 202px;
	height: 217px;
	background: url(../img/footer/contact/img_01.png?240918) no-repeat top center / cover;
}
.footer__contact-in {
	width: 1050px;
	margin-right: auto;
	margin-left: auto;
	padding: 0 20px;
}
.footer__contact-ttl {
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	position: relative;
}
.footer__contact-ttl::before {
	content: "";
	display: block;
	width: 32.5px;
	height: 52px;
	position: absolute;
	left: -380px;
	right: 0;
	top: 0;
	margin: auto;
	background: url(../img/footer/contact/img_02.png) no-repeat center / cover;
}
.footer__contact-btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 10px;
}
.footer__contact-btn {
	width: 480px;
	height: 130px;
	background-color: #fff;
	border-radius: 10px;
}
.footer__contact-btn__block {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	font-weight: bold;
}
.footer__contact-btn-ico {
	margin-right: 15px;
}
.footer__contact-btn-tel {
	font-size: 36px;
	line-height: 1;
}
.footer__contact-btn__block-txt-sub {
	width: 100px;
	height: 30px;
	border-radius: 15px;
	color: #fff;
	background-color: #e60012;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 14px;
	margin-right: 20px;
}
.footer__contact-btn__block-txt {
	font-size: 16px;
}
/*footer__contact-btn--tel*/
.footer__contact-btn--tel {
	margin-right: 40px;
	padding-top: 35px;
}
.footer__contact-btn--tel .footer__contact-btn-ico {
	width: 18px;
}
/*footer__contact-btn--web*/
.footer__contact-btn--web {
	font-size: 26px;
	font-weight: bold;
	color: #7b6660;
	position: relative;
	z-index: 2;
}
.footer__contact-btn--web::before {
	content: "";
	display: block;
	width: 191px;
	height: 252px;
	background: url(../img/footer/contact/img_01.png?240918) no-repeat top center / cover;
	position: absolute;
	top: -165px;
	right: 160px;
}
/* /pc-only -----------*/
.footer__contact-btn--web .footer__contact-btn-ico {
	width: 26px;
}

/* footer__contact-btn02 ------------*/

.footer__contact-btn02 {
	background-color: #493930;
	width: 340px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	border-radius: 10px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	transition: 0.3s;
}
.footer__contact-btn--faq {
	margin-right: 45px;
}

.footer__contact-btn--faq .footer__contact-btn-ico {
	width: 30px;
}

.footer__sep{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	position: relative;
	z-index: 4;
	width: 884px;
	margin: 0 auto;
}
.footer-block01{
	width: 505px;
}
.footer-block01__link{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	position: relative;
	background-color: #fff;
	padding-top: 10px;
	border-radius: 10px;
	transition: 0.3s;
}
@media screen and (min-width: 768px) {
	.footer-block01__link:hover {
		background-color: #ffd5c9;
	}
}
.footer-block01__lead{
	width: fit-content;
	margin: 0 auto;
	padding: 1px 30px;
	border-radius: 100vw;
	background-color: #F3601A;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: 0.06em;
}
.footer-block01__sep{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-top: 5px;
	color: #7b6660;
	font-size: 26px;
	line-height: 1.7;
	font-weight: bold;
	letter-spacing: 0.06em;
}
.footer-block01__icon{
	display: block;
	width: 27px;
	height: 34px;
}
.footer-block02{
	width: 359px;
}
.footer-block02 .footer__contact-btn02{
	width: 100%;
	margin: 0 ;
}
.footer-block02 .footer__contact-btn02:not(:first-of-type) {
	margin-top: 10px;
} /* :not(:first-of-type) ------------ */

/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.footer__contact-btn02:hover {
		background-color: #826f65;
	}
}
/* /pc-only -----------*/

/*------------ footer__nav ------------*/

.footer__nav {
	padding: 30px 0;
	max-height: 100%;
	overflow: hidden;
}
.footer__nav-list {
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}
.footer__nav-item {
	margin: 0 10px;
	width: 240px;
}
/* pc-only ------------*/
/*@media screen and (min-width: 768px) {
	.footer__nav-item:nth-of-type(2) {
		width: 230px;
		flex-shrink: 0;
	}
}*/
/* /pc-only -----------*/
.footer__nav-link {
	width: 100%;
	display: block;
}
.footer-nav__prev,
.footer-nav__next {
	width: 38px;
	height: 38px;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -19px;
	margin: auto;
	cursor: pointer;
	background: url(../img/footer/nav/arrow.png) no-repeat center / cover;
}
.footer-nav__next {
	left: auto;
	right: -19px;
	transform: rotate(180deg);
}

/*------------ footer__page-top ------------*/

.footer__page-top {
	width: 100%;
	height: 50px;
	background-color: #493931;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	color: #fff;
	font-size: 30px;
	opacity: 0.9;
}

/*------------ footer__under ------------*/

.footer__under {
	background-color: #493931;
	padding: 40px 0 35px;
	color: #fff;
}
.footer__under-in {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.footer__under-l {
	width: 200px;
}
.footer__under-logo {
	width: 190px;
	display: block;
	margin-right: auto;
	margin-left: auto;
}
.footer__under-sns {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 25px;
}
.footer__under-sns-item {
	width: 45px;
	height: 45px;
}
.footer__under-sns-item:not(:last-child) {
	margin-right: 25px;
}
.footer__under-sns-link {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background-color: #fff;
	color: #3b5998;
	border-radius: 50%;
	transition: 0.3s;
	font-size: 23px;
}
.footer__under-sns-icon {
	width: 21px;
	height: 21px;
}
.footer__under-sns-link-twitter {
	color: #1da1f3;
}
.footer__under-sns-link-insta {
	color: #e1306c;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.footer__under-sns-link:hover {
		opacity: 0.6;
	}
}
/* /pc-only -----------*/
.footer__under-c {
	width: 780px;
}
.footer__under-list {
	font-size: 11px;
	letter-spacing: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 0 10px 0 30px;
}
.footer__under-list__block {
	/* width: calc(100% / 3); */
}
.footer__under-item {
}
.footer__under-item:not(:last-child) {
	margin-right: 15px;
}
.footer__under-link {
	transition: 0.3s;
	font-weight: bold;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.footer__under-link:hover {
		color: #f45d25;
	}
}
/* /pc-only -----------*/
.footer__under-link--sub {
	font-weight: normal;
	/* padding-left: 10px; */
}
.footer__under-link--sub::before {
	content: ">";
}
/* .footer__under-r {
	width: 100%;
	display: flex;
}
.footer__under-r a {
	width: 100%;
	height: 100%;
	display: block;
} */
.footer__under-cp {
	text-align: center;
	font-size: 11px;
	background-color: #3a2e27;
	padding: 15px;
	color: #847f7c;
}
.footer_bnr__in{
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.footer_bnr__in li{
	width: 200px;
}
.mr20{
	margin-right: 20px;
}
/*------------------------------------------------
not-found 404
------------------------------------------------*/

.not-found__top {
}
.not-found__top-in {
	padding: 45px 0 50px;
	text-align: center;
	position: relative;
}
.not-found__top-in::after {
	content: "";
	display: block;
	width: 230px;
	height: 423px;
	background: url(../img/404/img_01.png?240918) no-repeat center / cover;
	position: absolute;
	right: 0;
	bottom: 0;
}
.not-found__top-img {
	width: 540px;
	margin-right: auto;
	margin-left: auto;
}
.not-found__top-ttl {
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 20px;
}
.not-found__top-ttl::after {
	content: "";
	display: block;
	width: 48px;
	height: 6px;
	background: url(../img/parts/block-ttl/dots.png) no-repeat center / cover;
	margin: 15px auto;
}
.not-found__top-txt {
	font-size: 16px;
}

.not-found__nav-in {
	padding: 50px 0;
}
.not-found__nav-ttl {
	font-size: 18px;
	font-weight: bold;
	width: 405px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background-color: #493931;
	color: #fff;
	border-radius: 25px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.not-found__nav-ttl::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 15.5px 0 15.5px;
	border-color: #493931 transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -20px;
	margin: auto;
}
.not-found__nav-list {
	margin-top: 40px;
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}
.not-found__nav-item {
	width: 300px;
	height: 50px;
}
/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.not-found__nav-item:not(:nth-last-child(-n + 3)) {
		border-bottom: 1px solid #ffba99;
	}
	.not-found__nav-item:not(:nth-child(3n)) {
		border-right: 1px solid #ffba99;
	}
}
/* /pc-only -----------*/
.not-found__nav-link {
	width: 100%;
	height: 100%;
	background-color: #ff7f41;
	color: #fff;
	padding-left: 50px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	position: relative;
	transition: 0.3s;
}
.not-found__nav-link::after {
	content: "\f105";
	font-family: fontawesome;
	position: absolute;
	height: 1em;
	line-height: 1;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
}

/* pc-only ------------*/
@media screen and (min-width: 768px) {
	.not-found__nav-link:hover {
		background-color: #493931;
	}
}
/* /pc-only -----------*/

/* ---------------------------------------------------------------- fadein系 ---- */

.footer__contact::before {
	opacity: 0;
	transform: translate(50px, 0);
	transition: all 0.6s cubic-bezier(0, 0, 0.1, 1);
}

.footer__contact.scrollin::before {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.pmain01__img {
	opacity: 0;
	transform: translate(50px, 0);
	transition: all 1s cubic-bezier(0, 0, 0.1, 1);
}

.pmain01__img.scrollin {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.fadein-right {
	opacity: 0;
	transform: translate(150px, 0);
	transition: all 0.6s cubic-bezier(0, 0, 0.1, 1);
}

.fadein-right.scrollin {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.fadein-left {
	opacity: 0;
	transform: translate(-150px, 0);
	transition: all 0.6s cubic-bezier(0, 0, 0.1, 1);
}

.fadein-left.scrollin {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.fadein-top {
	opacity: 0;
	transform: translate(0, -150px);
	transition: all 0.6s cubic-bezier(0, 0, 0.1, 1);
}

.fadein-top.scrollin {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

.fadein-bottom {
	opacity: 0;
	transform: translate(0, 300px);
	transition: all 0.6s cubic-bezier(0, 0, 0.1, 1);
}

.fadein-bottom.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

.fadein-scale {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.3s cubic-bezier(0, 0, 0.1, 1);
}

.fadein-scale.scrollin {
	opacity: 1;
	transform: scale(1);
}

/* ---------------------------------------------------------------- SP ---- */
@media screen and (max-width: 767px) {
	html,
	body {
		font-size: 14px;
	}
	.contact02.contact02--narrow .contact02__btn-sub {
		width: 295px;
	}

	/*------------------------------------------------
	wrapper
	------------------------------------------------*/

	/*------------------------------------------------
	header
	------------------------------------------------*/

	#header {
		width: 100%;
		background-color: #fff;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
	}

	/*------------ header__h1 ------------*/

	.header__h1 {
		width: 100%;
		max-width: 100%;
		font-size: 11px;
		font-weight: bold;
		padding: 8px 10px;
		color: #fff;
		text-align: center;
		margin-top: 70px;
		background-image: -moz-linear-gradient(160deg, rgb(243, 96, 26) 0%, rgb(255, 76, 106) 48%, rgb(255, 127, 65) 100%);
		background-image: -webkit-linear-gradient(160deg, rgb(243, 96, 26) 0%, rgb(255, 76, 106) 48%, rgb(255, 127, 65) 100%);
		background-image: -ms-linear-gradient(160deg, rgb(243, 96, 26) 0%, rgb(255, 76, 106) 48%, rgb(255, 127, 65) 100%);
		background-color: rgb(243, 96, 26);
	}

	/*------------ header__top ------------*/

	.header__top {
		max-width: 100%;
		height: 100%;
		padding: 0;
	}

	.header__fixed {
		position: fixed;
		width: 100%;
		height: 70px;
		top: 0;
		left: 0;
		background-color: #fff;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 0 0px 0 12px;
		box-shadow: 0 1.5px 0.25rem rgba(0, 0, 0, 0.15);
	}

	/*------------ header-logo ------------*/

	.header-logo {
		max-width: 115px;
		width: 30vw;
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
	}

	/*------------ sp-header__menu-wrap ------------*/

	.sp-header__menu-wrap {
		display: block;
	}
	.sp-header__menu {
		width: 75px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	/* close default ------------*/

	.sp-header__btn {
		width: 20px;
		height: 14px;
		position: relative;
	}

	.sp-header__btn-line {
		display: block;
		height: 2px;
		background-color: #493930;
		position: absolute;
		right: 0;
		margin: auto;
		transition: all 0.3s ease;
		opacity: 1;
	}

	.sp-header__btn-line:nth-of-type(1) {
		top: 0;
		width: 15px;
	}

	.sp-header__btn-line:nth-of-type(2) {
		top: 6px;
		width: 20px;
	}

	.sp-header__btn-line:nth-of-type(3) {
		top: 6px;
		opacity: 0;
		width: 20px;
	}

	.sp-header__btn-line:nth-of-type(4) {
		top: 12px;
		width: 12px;
	}

	.sp-header__btn-txt {
		font-size: 16px;
		line-height: 1;
		color: #493930;
	}

	/* open ------------*/

	.btn-open .sp-header__btn-line:nth-of-type(1) {
		opacity: 0;
		transform-origin: center center;
		transform: scale(0);
	}

	.btn-open .sp-header__btn-line:nth-of-type(2) {
		transform: rotate(137deg);
		width: 23px;
	}

	.btn-open .sp-header__btn-line:nth-of-type(3) {
		opacity: 1;
		transform: rotate(-137deg);
		width: 23px;
	}

	.btn-open .sp-header__btn-line:nth-of-type(4) {
		opacity: 0;
		transform-origin: center center;
		transform: scale(0);
	}

	/*------------ header__c-box ------------*/

	.header__c-box {
		font-weight: bold;
	}
	.header__c-box--sp {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		flex-wrap: wrap;
		color: #493930;
		font-size: 11px;
		line-height: 1;
		height: 50px;
	}
	.header__c-box--sp-tel,
	.header__c-box--sp-web {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		width: 60px;
		height: 100%;
		text-align: center;
		color:#00B900;
	}
	.header__c-box--sp-tel {
		border-right: 1px solid #493930;
	}
	.header__c-box--sp-ico {
		width: 35px;
	}
	.header__c-box--sp-txt {
		margin-top: 0;
	}
	/*------------ header__nav ------------*/

	.header__nav {
		width: 100%;
		height: 100%;
		display: none;
		position: fixed;
		font-size: 14px;
		top: 64px;
		left: 0;
		background-image: #ff7f41 !important;
		color: #fff;
		width: 100%;
		border-top: 1px solid #fff;
	}
	.header__nav-in {
		height: 100%;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	.header__nav.is-active {
		display: block;
		background-color: #fff;
	}
	.header__nav-list {
		width: 100%;
		max-width: 100%;
		display: block;
	}
	.header__nav-item {
		position: relative;
		width: 100%;
	}
	.header__nav-item:not(:last-child) {
		border-bottom: 1px solid #fff;
	}
	.header__nav-item:not(:last-child)::after {
		content: none;
	}
	.header__nav-link {
		display: block;
		padding: 15px 20px;
/* 		background: #ff7f41 !important; */
		position: relative;
		font-size: 14px;
	 	border-bottom: #333 1px solid;
        width: 80%;
        margin: 10px auto;
	}
/* 	.header__nav-link::after {
		font-family: var(--fa-font-solid);
		content: "\f054";
		height: 1em;
		line-height: 1;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 20px;
		margin: auto;
	} */
	.line-icon{
		font-size: 32px;
	}
	.header__nav-link--plus::before,
	.header__nav-link--plus::after {
		content: "";
		display: block;
		width: 13px;
		height: 2px;
		background-color: #fff;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		transition: 0.3s;
		right: 20px;
	}
	.header__nav-link--plus::after {
		transform: rotate(-90deg);
	}
	.header__nav-link--plus.active::after {
		transform: rotate(0deg);
	}
	.header__nav-link__list {
		width: 100%;
		max-width: 100%;
	}
	.header__nav-link__item {
		position: relative;
	}
	.header__nav-link__item {
		border-top: 1px solid #fff;
	}
	.header__nav-link__link {
		display: block;
		padding: 15px 20px;
		font-size: 13px;
		background: #493931 !important;
	}
	.header__nav-link__link::after {
		content: "\f105";
		font-family: fontawesome;
		height: 1em;
		line-height: 1;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 20px;
		margin: auto;
	}
	.header__nav-btn-wrap {
		padding: 20px 20px 200px;
		background-color: #fff;
	}
	.header__nav-btn {
		width: 100%;
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
	.header__nav-btn01 {
		max-width: 335px;
	}

	.header-nav-btn01 {
		width: 100%;
		height: auto;
		background-color: #fff;
		border-radius: 5px;
		border: 1px solid #493930;
		margin-right: 0;
		padding: 12px 0 7px;
		line-height: 2;
    color: #493930;
    letter-spacing: 0;
	}
	.header-nav-btn01__block {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		font-weight: 600;
	}
	.header-nav-btn01__ico {
		width: 15px;
		margin-right: 13px;
	}
	.header-nav-btn01__tel {
		font-size: 28px;
		line-height: 1;
	}
	.header-nav-btn01__sub {
		width: 80px;
		height: 22px;
		border-radius: 100vw;
		color: #fff;
		background-color: #e60012;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: wrap;
		font-size: 12px;
		margin-right: 10px;
	}
	.header-nav-btn01__time {
		font-size: 14px;
	}



	.header__nav-btn02 {
		max-width: 335px;
		margin-top: 10px;
	}
	.oh-open {
		overflow: hidden;
	}
	/*overlay*/
	.overlay {
		display: none;
		width: 100%;
		height: 130%;
		position: fixed;
		left: 0;
		top: 0;
		z-index: 9999;
		background-color: #000;
		opacity: 0.5;
	} */
	/* ナビゲーションメニュー全体のスタイル */
nav.smanone.clearfix {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  font-size: 14px;
  top: 64px;
  left: 0;
  background-color: #ff7f41 !important;
  color: #fff;
  border-top: 1px solid #fff;
}

nav.smanone.clearfix.is-active {
  display: block;
  background-color: #fff;
}

/* メニューリストのスタイル */
ul.menu {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* メニュー項目のスタイル */
li.menu-item {
  position: relative;
  width: 100%;
}

li.menu-item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

li.menu-item:not(:last-child)::after {
  content: none;
}

/* メニューリンクのスタイル */
li.menu-item > a {
  display: block;
  padding: 15px 20px;
  background: #ff7f41 !important;
  position: relative;
  font-size: 14px;
  color: #fff; /* リンクの文字色 */
  text-decoration: none; /* リンクの下線を消す */
}

li.menu-item > a::after {
  content: "\f105";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  height: 1em;
  line-height: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  color: #fff; /* アイコンの色 */
}

li.menu-item > a:hover {
  background-color: #6b5c54; /* ホバー時の背景色 */
}

/* サブメニューがある場合（今回は省略） */
/* 必要に応じて追加してください */

/* その他のスタイル */
/* 必要に応じて、#st-menubox や #st-menuwide などのスタイルを追加できます */


	/*------------------------------------------------
	section
	------------------------------------------------*/

	.section_box {
		padding: 60px 20px 40px;
	}

	/*------------------------------------------------
	breadcrumb
	------------------------------------------------*/

	.breadcrumb {
		width: 100%;
		padding: 0 20px;
	}
	.breadcrumb__item {
		display: inline;
	}
	.breadcrumb__item:not(:last-child)::after {
		content: "/";
		display: inline-block;
		text-decoration: none;
		margin: 0 5px;
	}
	.breadcrumb__link {
		font-size: 11px;
		line-height: 1;
		letter-spacing: 0.05em;
	}
}

