/*----------------------------------------*/
/*common.css*/
/*----------------------------------------*/
html {
	/* scroll-behavior: smooth; */
}

.font-family-memo-NotoSansJP {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	font-weight: 500;
	font-weight: 700;
	font-weight: 900;
}
.font-family-memo-Jost {
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	font-weight: 700;
	font-weight: 900;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 400;
}
.ff-jost {
	font-family: 'Jost', sans-serif;
}
@media (max-width:767px) {
	body {
		font-size: 14px;
		padding-bottom: 0;
	}
}

/*font-weight*/
.fw-regular {
	font-weight: 400;
}
.fw-medium {
	font-weight: 500;
}
.fw-bold {
	font-weight: 700;
}
.fw-black {
	font-weight: 900;
}
.text-green {
	color: #00a99d;
}
a,
a:hover {
	text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	line-height: 1.4;
	font-family: 'Jost', sans-serif;
	font-weight: 700;
}
h1,
.h1 {
	font-size: 23px;
}
h2,
.h2 {
	font-size: 60px;
}
h3,
.h3 {
	font-size: 25px;
}
h4,
.h4 {
	font-size: 20px;
}
h5,
.h5 {
	font-size: 18px;
}
h6,
.h6 {
	font-size: 16px;
}
.wrapper {
	padding: 65px 0 0;
}
.container {
	max-width: 1280px;
	padding: 0 40px;
}
.container-fluid {
	padding: 0 40px;
}
img.wp-post-image {
	width: 100% !important;
}
@media (max-width: 991px) {
	h2,
	.h2 {
		font-size: 45px;
	}
}
@media (max-width: 767px) {
	h1,
	.h1 {
		font-size: 16px;
	}
	h2,
	.h2 {
		font-size: 35px;
		line-height: 1.1;
	}
	h3,
	.h3 {
		font-size: 16px;
	}
	h4,
	.h4 {
		font-size: 14px;
	}
	h5,
	.h5 {
		font-size: 12px;
	}
	h6,
	.h6 {
		font-size: 10px;
	}
	.wrapper {
		padding-top: 25px;
	}
	.container {
		padding: 0 15px;
	}
	.container-fluid {
		padding: 0 15px;
	}
}


/*----------------------------------------*/
/*フォトスワイプ 動きをシンプルに変更*/
/*----------------------------------------*/

.pswp .pswp__zoom-wrap {
	opacity: 0;
	transition: 0.4s;
}
.pswp--animated-in .pswp__zoom-wrap {
	animation-name: anime-fadeIn;
	animation-duration: 0.2s;
	animation-timing-function: ease;
	animation-delay: 0.1s;
	animation-fill-mode: forwards;
	-webkit-transition: none;
	transition: none;
}
@keyframes anime-fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*----------------------------------------*/
/*header*/
/*----------------------------------------*/
#g-header {
	position: sticky;
	top: 0;
	padding: 13px 0;
	background-color: #ffffff;
	z-index: 150;
}
#g-header .container {
	max-width: 1400px;
}
#g-header .nav-wrap {
	display: flex;
	align-items: center;
}
#g-header .site-logo {
	margin: 0 40px 0 0;
	max-width: 177px;
}
#g-header .site-logo a {
	display: flex;
	align-items: flex-end;
}
#g-header .site-logo a img {
	display: block;
	width: 100%;
}
#g-header .site-logo a span {
	font-size: 16px;
	color: #000000;
	margin: 0 0 0 0.75em;
	font-weight: 500;
	white-space: nowrap;
}
#g-header .g-nav {
	margin-left: auto;
	align-items: center;
	max-width: 910px;
}
#g-header .g-nav ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}
#g-header .g-nav li {
	padding: 0;
	margin: 0;
}
#g-header .g-nav ul.main-ul {
	padding: 0 30px 0 0;
	line-height: 1;
	font-size: 22px;
	font-weight: 700;
	flex-grow: 1;
	justify-content: space-between;
}
#g-header .g-nav ul.main-ul li {
	padding: 5px;
}
#g-header .g-nav ul.main-ul li a {
	display: inline-block;
	color: #000000;
	transition: color 0.3s, border-bottom 0.3s;
	padding: 10px 0;
	border-top: solid 1px transparent;
	border-bottom: solid 1px transparent;
}
#g-header .g-nav ul.main-ul li a::after {
	display: block;
	content: "";
}
#g-header .g-nav ul.main-ul li.current a,
#g-header .g-nav ul.main-ul li a:hover,
#g-header .g-nav ul.main-ul li a:active,
#g-header .g-nav ul.main-ul li a:focus {
	color: #299543;
	border-bottom: solid 1px #299543;
}
#g-header .g-nav ul.main-ul li.wildlife {
	display: none;
}
#g-header .g-nav ul.contact-ul {
	padding-right: 40px;
}
#g-header .g-nav ul.sns-ul {
	padding: 0;
	margin: 0 -13px;
}
#g-header .g-nav ul.sns-ul li {
	padding: 0 13px;
}
#g-header .nav-wrap .g-nav-sp {
	display: none;
}
@media (min-width:1200px) {
	#g-header .site-logo {
		width: 29%;
	}
	#g-header .g-nav {
		flex-basis: 80%;
	}
}
@media (min-width:768px) {
	.pagetop-info .close-btn {
		top: 50%;
		left: 20px;
		transform: translateY(-50%);
	}
	.pagetop-info .close-btn::before,
	.pagetop-info .close-btn::after {
		width: 21px;
	}
	#g-header .g-nav ul.contact-ul a {
		display: block;
		transition: opacity 0.3s;
	}
	#g-header .g-nav ul.contact-ul a:hover {
		opacity: 0.6;
	}
	#g-header .g-nav ul.sns-ul a {
		display: block;
		transition: opacity 0.3s;
	}
	#g-header .g-nav ul.sns-ul a:hover {
		opacity: 0.6;
	}
	#g-header .site-logo a {
		transition: opacity 0.3s;
	}
	#g-header .site-logo a:hover {
		opacity: 0.6;
	}
}
@media (max-width:1299px) {
	#g-header .g-nav ul.main-ul {
		font-size: 18px;
	}
}
@media (max-width:1199px) {
	#g-header .site-logo a img {
		width: 250px;
	}
	#g-header .site-logo a span {
		font-size: 14px;
	}
	#g-header .g-nav {
		flex-basis: 600px;
		max-width: 600px;
	}
	#g-header .g-nav ul.main-ul {
		font-size: 15px;
		padding: 0 30px;
	}
	#g-header .g-nav ul.contact-ul {
		padding-right: 0;
	}
	#g-header .g-nav ul.contact-ul a img {
		width: 100px;
	}
	#g-header .g-nav ul.sns-ul {
		display: none;
	}
}
@media (max-width:991px) {
	.pagetop-info #vertical-slide a {
		font-size: 10px;
		padding: 9px;
	}
	.pagetop-info #vertical-slide a img {
		width: 15px;
	}
	#g-header {
		position: sticky;
		top: 0;
		padding: 11px 0;
		background-color: rgba(255, 255, 255, 0.9);
		transition: z-index 0.3s;
		z-index: 150;
	}
	#g-header #hamburger {
		position: relative;
		background-color: transparent;
		border: none;
		width: 24px;
		height: 24px;
		flex-shrink: 0;
		flex-grow: 0;
		flex-basis: 24px;
		padding: 0;
		margin-right: 35px;
	}
	#g-header #hamburger span {
		position: absolute;
		top: 50%;
		display: block;
		width: 100%;
		height: 1px;
		background-color: #299543;
	}
	#g-header #hamburger span:nth-child(1) {
		transform: translateY(calc(-50% - 8px));
	}
	#g-header #hamburger span:nth-child(2) {
		transform: translateY(calc(-50%));
	}
	#g-header #hamburger span:nth-child(3) {
		transform: translateY(calc(-50% + 8px));
	}
	#g-header .site-logo {
		flex-shrink: 0;
		flex-grow: 0;
		margin-right: 15px;
	}
	#g-header .g-nav {
		flex-basis: 100px;
		max-width: 100px;
	}
	#g-header .g-nav ul.main-ul,
	#g-header .g-nav ul.sns-ul {
		display: none;
	}
	#g-header .g-nav ul.main-ul {
		display: none;
	}
	#g-header .g-nav ul.contact-ul {
		justify-content: flex-end;
		margin: 0;
		padding: 0;
	}
	#g-header .g-nav ul.contact-ul img {
		width: 82px;
	}
	#g-header .nav-wrap {}
	#g-header .nav-wrap .nav-close {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #000000;
		visibility: hidden;
		opacity: 0;
		transition: visibility 0.3s, opacity 0.3s;
		z-index: 150;
	}
	#g-header .nav-wrap .nav-close::before,
	#g-header .nav-wrap .nav-close::after {
		position: absolute;
		top: 47px;
		right: 20px;
		content: "";
		width: 28px;
		height: 1px;
		background-color: #ffffff;
	}
	#g-header .nav-wrap .nav-close::before {
		transform: rotate(45deg);
	}
	#g-header .nav-wrap .nav-close::after {
		transform: rotate(-45deg);
	}
	#g-header .nav-wrap .g-nav-sp {
		display: block;
		position: fixed;
		top: 0;
		left: -100%;
		bottom: 0;
		overflow: auto;
		width: calc(100% - 65px);
		background-color: #ffffff;
		transition: left 0.3s;
		z-index: 150;
	}
	#g-header .nav-wrap .g-nav-sp .site-logo {
		margin: 0;
		padding: 30px 30px 20px;
		border-bottom: solid 1px #4d4d4d;
		max-width: 100%;
	}
	#g-header .nav-wrap .g-nav-sp .site-logo a img {
		width: 150px;
	}
	#g-header .nav-wrap .g-nav-sp .site-logo a span {
		font-size: 10px;
	}
	#g-header .nav-wrap .g-nav-sp span.nav-title {
		display: block;
		font-size: 13px;
		color: #999999;
		padding: 5px 0;
		margin-bottom: 0.33em;
	}
	#g-header .nav-wrap .g-nav-sp ul {
		margin: 0;
		padding: 15px 30px;
		list-style: none;
		line-height: 1;
		font-size: 15px;
	}
	#g-header .nav-wrap .g-nav-sp ul li a {
		display: block;
		font-weight: 700;
		color: #000000;
		padding: 10px 0;
	}
	#g-header .nav-wrap .g-nav-sp ul.main-ul {
		border-bottom: solid 1px #4d4d4d;
	}
	#g-header .nav-wrap .g-nav-sp ul.main-ul li {}
	#g-header .nav-wrap .g-nav-sp ul.main-ul li a {}
	#g-header .nav-wrap .g-nav-sp ul.main-ul li.top {
	}
	#g-header .nav-wrap .g-nav-sp ul.main-ul li.service {}
	#g-header .nav-wrap .g-nav-sp ul.child-ul {
		padding: 0;
	}
	/*
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.text-type {
		position: relative;
		padding-left: 1em;
	}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.text-type::before {
		content: "・";
		position: absolute;
		top: 10px;
		left: 0;
	}
	*/
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.text-type a {
	}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.tour {}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.tour a {
		background-image: url('../img/common/ico/ico-sp_nav_tour.png');
	}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.hotel {}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.hotel a {
		background-image: url('../img/common/ico/ico-sp_nav_hotel.png');
	}

	#g-header .nav-wrap .g-nav-sp ul.child-ul li.activity a {
		background-image: url('../img/common/ico/ico-sp_nav_activity.png');
	}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.golf {}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.golf a {
		background-image: url('../img/common/ico/ico-sp_nav_golf.png');
	}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.traffic {}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.traffic a {
		background-image: url('../img/common/ico/ico-sp_nav_traffic.png');
	}
	#g-header .nav-wrap .g-nav-sp ul.child-ul li.private a {}
	#g-header .nav-wrap .g-nav-sp ul.company-ul {
		padding-top: 30px;
		padding-bottom: 0;
	}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li {}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li a {}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li a {}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li.company {
		padding-left: 0;
	}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li.company::before {
		content: none;
	}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li.company a {
		padding-left: 35px;
		background-position: left;
		background-size: 18px;
		background-repeat: no-repeat;
		margin-bottom: 0.4em;
		background-image: url('../img/common/ico/ico-sp_nav_company.png');
	}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li.banner-type {
		margin-top: 0;
	}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li.banner-type a {}
	#g-header .nav-wrap .g-nav-sp ul.company-ul li.banner-type a img {
		filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
	}
	#g-header .nav-wrap .g-nav-sp ul.contact-ul {
		padding-top: 0;
		padding-bottom: 0;
	}
	#g-header .nav-wrap .g-nav-sp ul.contact-ul li {}
	#g-header .nav-wrap .g-nav-sp ul.contact-ul li a {}
	#g-header .nav-wrap .g-nav-sp ul.contact-ul li a img {
		filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
	}
	#g-header .nav-wrap .g-nav-sp ul.sns-ul {
		display: flex;
		margin: 0;
		padding-top: 0;
	}
	#g-header .nav-wrap .g-nav-sp ul.sns-ul li {
		padding: 0 20px 0 0;
	}
	/*nav-open*/
	.nav-open {
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
	}
	.nav-open #g-header {
		z-index: 160;
	}
	.nav-open #g-header .nav-wrap .nav-close {
		visibility: visible;
		opacity: 0.8;
	}
	.nav-open #g-header .nav-wrap .g-nav-sp {
		left: 0%;
	}
}
@media (max-width:767px) {
	#g-header .site-logo a img {
		width: 118px;
	}
	#g-header .site-logo a span {
		font-size: 10px;
	}
}


/*----------------------------------------*/
/*footer*/
/*----------------------------------------*/
#common-footer {}
#common-footer .nav-wrap {
	position: relative;
	display: flex;
	align-items: flex-end;
	color: #ffffff;
	min-height: 880px;
	padding: 50px 0 125px;
}
#common-footer .nav-wrap::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 900px;
	background-image: url('../img/common/bg-footer.jpg');
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: bottom;
	z-index: -1;
}
#common-footer .info-col {
	flex-basis: 500px;
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 50%;
}
#common-footer .banner-col {}
#common-footer .logo {
	margin-bottom: 1.75em;
}
#common-footer .logo a {}
#common-footer .logo a img {}
#common-footer .produce {}
#common-footer .produce p {
	font-size: 18px;
	margin-bottom: 1em;
}
#common-footer .produce p img {
	margin-left: 0.25em;
}
#common-footer .info {}
#common-footer .info p {
	font-size: 13px;
	line-height: 1.8;
	margin-bottom: 2.1em;
}
#common-footer .btn-wrap {
	margin-bottom: 1.5em;
}
#common-footer .btn-wrap a {}
#common-footer .btn-wrap a img {}
#common-footer .sns-wrap {
	display: flex;
	margin: 0 -7px;
}
#common-footer .sns-wrap>* {
	padding: 0 7px;
}
#common-footer .nav-col {
	padding-top: 40px;
	flex-basis: calc(100% - 500px);
	flex-grow: 0;
	flex-shrink: 0;
}
#common-footer .nav-col h3 {
	font-size: 16px;
	font-weight: 700;
}
#common-footer .nav-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	font-weight: 400;
}
#common-footer .nav-col ul li {
	padding: 0;
	margin: 0 0 0.35em;
}
#common-footer .nav-col ul li a {
	color: #ffffff;
}
#common-footer .bnr-col {
	padding-top: 40px;
	flex-basis: 240px;
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 50%;
}
#common-footer .payment-list {}
#common-footer .payment-list h3 {}
#common-footer .payment-list ul {
	display: flex;
	margin: 0 0 2.125em;
}
#common-footer .payment-list ul li {
	padding: 0 5px;
}
#common-footer .payment-list ul li img {}
#common-footer .nav-col>.row {}
#common-footer .nav-col>.row>.col {}
#common-footer .service-col {}
#common-footer .service-col h4 {}
#common-footer .service-col ul {}
#common-footer .service-col ul li {
	display: inline-block;
}
#common-footer .service-col ul li a {}
#common-footer .service-col ul li a {}
#common-footer .service-col ul li.tour {}
#common-footer .service-col ul li.hotel {}
/* 公開時は非表示
#common-footer .service-col ul li.hotel::after {
	content: "/";
	margin: 0 0.25em;
}
*/
#common-footer .service-col ul li.activity {}
#common-footer .service-col ul li.golf {}
/* 公開時は非表示
#common-footer .service-col ul li.golf::after {
	content: "/";
	margin: 0 0.25em;
}
*/
#common-footer .service-col ul li.traffic {}
#common-footer .other-col {}
#common-footer .other-col h4 {}
#common-footer .other-col ul {}
#common-footer .other-col ul li {}
#common-footer .other-col ul li a {}
#common-footer .other-col ul li a {}
#common-footer .copyright-wrap {
	display: block;
	background-color: #ffffff;
	color: #000000;
	text-align: center;
	padding: 25px 0 35px;
}
#common-footer .copyright-wrap .copyright-text {
	font-size: 14px;
	font-weight: 400;
	margin: 0;
}
#common-footer .copyright-wrap .copyright-text a {}
@media (min-width:768px) {
	#common-footer .nav-wrap a {
		color: #fff;
		transition: opacity 0.3s;
	}
	#common-footer .nav-wrap a:hover {
		opacity: 0.6;
	}
	#common-footer .banner-col {}
}
@media (min-width:991px) {
	#common-footer .nav-col>.row {
		padding-top: 185px;
	}
	#common-footer .bnr-col>.row {
		padding-top: 185px;
	}
}
@media (max-width:767px) {
	#common-footer .nav-wrap {
		min-height: 0;
		padding: 70px 0 30px;
		color: #000000;
	}
	#common-footer .nav-wrap::before {
		height: auto;
		min-height: 350px;
		width: 100%;
		padding-bottom: 47%;
		background-position: bottom 0 left 100%;
	}
	#common-footer .nav-col {
		display: none;
		max-width: 100%;
		flex-basis: 100%;
		padding: 40px 50px;
		background-color: #f2f2f2;
		border-bottom: none;
	}
	#common-footer .nav-col>.row {
		margin: 0 -10px;
	}
	#common-footer .nav-col>.row>.col {
		padding: 0 10px;
	}
	#common-footer .nav-col h3 {
		font-size: 12px;
		margin-bottom: 5px;
	}
	#common-footer .nav-col ul {
		font-size: 12px;
	}
	#common-footer .nav-col ul li {
		margin: 0 0 0.125em;
	}
	#common-footer .nav-col ul li a {
		color: #000000;
	}
	#common-footer .payment-list {
		flex-basis: 40%;
		max-width: 40%;
	}
	#common-footer .payment-list ul {
		margin: 0 0 10px;
		flex-wrap: wrap;
	}
	#common-footer .payment-list ul li {
		flex-basis: 25%;
		max-width: 25%;
	}
	#common-footer .service-col {
		order: 1;
		flex-basis: 40%;
	}
	#common-footer .service-col h3 a {
		color: #000;
	}
	#common-footer .other-col {
		flex-basis: 60%;
		max-width: 60%;
	}
	#common-footer .banner-col {
		display: none;
	}
	#common-footer .logo {
		margin-bottom: 1em;
	}
	#common-footer .logo a img {
		width: 126px;
	}
	#common-footer .produce p {
		font-size: 10px;
		color: #ffffff;
	}
	#common-footer .produce p img {
		margin-left: 0.5em;
		width: 82px;
	}
	#common-footer .info-col {
		flex-basis: 100%;
		max-width: 100%;
	}
	#common-footer .info-col>.row {
		align-items: flex-end;
		min-height: 350px;
	}
	#common-footer .info {
		text-align: right;
	}
	#common-footer .info p {
		line-height: 1.75;
		font-size: 11px;
		margin-bottom: 10px;
	}
	#common-footer .btn-sns-wrap {
		display: flex;
		justify-content: flex-end;
	}
	#common-footer .btn-wrap {
		margin: 0 10px 0 0;
	}
	#common-footer .copyright-wrap {
		padding: 20px 0;
	}
	#common-footer .copyright-wrap .copyright-text {
		font-size: 10px;
	}
	#common-footer .sns-wrap {
		margin: 0 -3px;
	}
	#common-footer .sns-wrap>* {
		padding: 0 3px;
	}
	#common-footer .sns-wrap img {
		width: 16px;
	}
}
@media (max-width:575px) {
	#common-footer .payment-list ul li {
		flex-basis: 50%;
		max-width: 50%;
		margin-bottom: 5px;
	}
}


/*----------------------------------------*/
/*フローティングメニュー*/
/*----------------------------------------*/
.float-menu {
	display: none;
	position: fixed;
	right: 90px;
	bottom: 60px;
	margin: -7px;
	z-index: 100;
}
.float-menu a {
	display: block;
	width: 107px;
	margin: 7px;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
	border-radius: 107px;
}
.float-menu a.to-top {
	background-color: #fffff3;
}
@media (min-width:992px) {
	.float-menu {
		display: block;
	}
	.float-menu a {
		transition: opacity 0.3s;
	}
	.float-menu a:hover {
		opacity: 0.6;
	}
}
@media (max-width:1119px) {
	.float-menu {
		right: 20px;
		bottom: 20px;
	}
	.float-menu a {
		width: 80px;
	}
}


/*----------------------------------------*/
/*フォトスワイプ 動きをシンプルに変更*/
/*----------------------------------------*/

.pswp .pswp__zoom-wrap {
	opacity: 0;
	transition: 0.4s;
}
.pswp--animated-in .pswp__zoom-wrap {
	animation-name: anime-fadeIn;
	animation-duration: 0.2s;
	animation-timing-function: ease;
	animation-delay: 0.1s;
	animation-fill-mode: forwards;
	-webkit-transition: none;
	transition: none;
}
@keyframes anime-fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


/*----------------------------------------*/
/* 問い合わせフォーム：Customized Tour Request 2025 */
/*----------------------------------------*/

#request-form-wrap {
	font-size: 18px;
	max-width: 700px;
	margin: 60px auto 0;
	padding: 50px 20px 40px;
	border-radius: 20px;
	background-color: #FFFFFF;
	color: #212529;
}
#request-form-wrap .policy-wrap {
	margin: 30px 0;
	height: 121px;
	overflow: auto;
	border: solid 1px #808080;
}
#request-form-wrap .policy-text {
	font-size: 14px;
	padding: 15px;
}
#request-form-wrap .policy-text h3,
#request-form-wrap .policy-text h4 {
	font-size: 16px;
	line-height: 1.4;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	font-size: 19px;
}
#request-form-wrap .policy-text>*:first-child {
	margin-top: 0;
}
#request-form-wrap .policy-text p {
	font-size: 14px;
	line-height: 1.4;
	font-weight: 400;
	color: #212529;
	margin: 0 0 2em;
	margin-bottom: 5px;
}
#request-form-wrap .policy-text p.small {
	font-size: 16px;
}
#request-form-wrap .wpcf7 {
	max-width: 572px;
}
#request-form-wrap .text-red {
	color: #00A99D;
	padding-left: 5px;
}
#request-form-wrap a.text-link {
	color: #00A99D;
	text-decoration: underline;
}
#request-form-wrap .text-small {
	font-size: 14px;
}
#request-form-wrap dl.d-flex {
	display: flex;
	justify-content: space-between;
}
#request-form-wrap dl.d-flex.wide-cell {
	flex-direction: column;
}
#request-form-wrap dl dt {
	font-size: 18px;
	font-weight: 500;
	padding-top: 10px;
	padding-right: 10px;
}
#request-form-wrap dl dt p {
	font-weight: 500;
	margin-bottom: 5px;
}
#request-form-wrap dl.wide-cell dt {
	width: 100% !important;
}
#request-form-wrap dl dd {}
#request-form-wrap dl.wide-cell dd {
	align-self: flex-end;
	margin-bottom: 0;
}
#request-form-wrap .wpcf7 p>label {
	display: inline;
}
#request-form-wrap .wpcf7 dl.wide-cell dt {
	margin-bottom: 10px;
}
#request-form-wrap .wpcf7 dl.wide-cell dt p {
	display: block !important;
	margin-bottom: 0;
}
#request-form-wrap .wpcf7 .wpcf7-form label {}
#request-form-wrap .form-control,
#request-form-wrap .wpcf7 .wpcf7-validation-errors,
#request-form-wrap .wpcf7 input[type=color],
#request-form-wrap .wpcf7 input[type=date],
#request-form-wrap .wpcf7 input[type=datetime-local],
#request-form-wrap .wpcf7 input[type=datetime],
#request-form-wrap .wpcf7 input[type=email],
#request-form-wrap .wpcf7 input[type=file],
#request-form-wrap .wpcf7 input[type=month],
#request-form-wrap .wpcf7 input[type=number],
#request-form-wrap .wpcf7 input[type=range],
#request-form-wrap .wpcf7 input[type=search],
#request-form-wrap .wpcf7 input[type=tel],
#request-form-wrap .wpcf7 input[type=text],
#request-form-wrap .wpcf7 input[type=time],
#request-form-wrap .wpcf7 input[type=url],
#request-form-wrap .wpcf7 input[type=week],
#request-form-wrap .wpcf7 select,
#request-form-wrap .wpcf7 textarea {
	height: auto;
	padding: .875rem 1rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	min-height: 63px;
	color: #000;
	background-color: #FFFFFF;
	background-clip: padding-box;
	border: 1px solid #00a99d;
	border-radius: 5px;
	transition: 0.3s all;
	margin-bottom: 7px;
}
#request-form-wrap .wpcf7-not-valid-tip {
	font-size: 0.75em;
}
#request-form-wrap .wpcf7 input[type=reset] {
	display: inline;
	color: #00a99d;
	font-size: 16px;
	background: none;
	padding: 0;
	border: none;
}
#request-form-wrap .wpcf7 .btn-wrap {
	margin-top: 25px;
}
#request-form-wrap .wpcf7 .btn-wrap p {
	margin: 0
}
#request-form-wrap .wpcf7 input[type=submit] {
	display: block;
	width: 200px;
	height: 50px;
	background: linear-gradient(to right, #00A99D, #299543);
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	color: #FFF;
	text-align: center;
	padding: 10px 25px;
	border: none;
	border-radius: 40px;
	margin: 0 auto;
	transition: 0.3s all;
	font-family: 'Jost', sans-serif;
}
#request-form-wrap .wpcf7 input[type="reset"] {
	color: #212529;
}
#request-form-wrap .wpcf7 .wpcf7-radio,
#request-form-wrap .wpcf7 .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	font-size: 16px;
	padding-top: 10px;
	margin: 0 -1em;
}
#request-form-wrap .wpcf7 .wpcf7-radio .wpcf7-list-item,
#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item {
	width: 50%;
	margin: 0;
	padding: 0 1em;
	appearance: none;
}
#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
	display: none;
}
#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
	position: relative;
	transition: border 0.4s;
	display: inline-flex;
	padding-left: 1.75em;
	padding-bottom: 0.25em;
}
#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before,
#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 9px;
	transform: translate(-50%, -50%);
}
#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
	width: 20px;
	height: 20px;
	border: 1px solid #00A99D;
	background-color: #FFFFFF;
	transition: background-color 0.3s;
}
#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
	transform: translate(-6px, -5px) rotate(-45deg);
	width: 11px;
	height: 7px;
	border-style: solid;
	border-width: 0 0 2px 2px;
	border-color: transparent transparent #FFFFFF #FFFFFF;
}
#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
	background-color: #00A99D;
}
#request-form-wrap .wpcf7 hr {
	border-top: solid 1px #00A99D;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
#request-form-wrap .form-control::placeholder,
#request-form-wrap .wpcf7 .wpcf7-validation-errors::placeholder,
#request-form-wrap .wpcf7 input::placeholder,
#request-form-wrap .wpcf7 select::placeholder,
#request-form-wrap .wpcf7 textarea::placeholder {
	color: #D3D3D4;
}
#request-form-wrap .wpcf7 .agree-wrap {}
#request-form-wrap .wpcf7 .agree-wrap p {
	font-size: 16px;
}
#request-form-wrap .wpcf7 .agree-wrap .wpcf7-list-item {
	width: 100%;
}
#request-form-wrap .wpcf7 select,
#request-form-wrap .wpcf7 input[type=date] {
	appearance: none;
	padding-right: 40px;
	background-position: top 50% right 15px;
	background-repeat: no-repeat;
	background-size: 24px;
}
#request-form-wrap .wpcf7 select {
	background-image: url(../img/common/ico/ico-select-arrow.svg);
}
#request-form-wrap .wpcf7 input[type=date] {
	position: relative;
	background-image: url(../img/common/ico/ico-calendar.svg);
}
#request-form-wrap .wpcf7 input[type=date]::-webkit-calendar-picker-indicator {
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 767px) {
	#request-form-wrap {
		font-size: 14px;
		margin-top: 0;
		padding: 40px 20px 35px;
	}
	#request-form-wrap p {
		font-size: 15px;
		margin-bottom: 0;
	}

	#request-form-wrap .policy-text {
		padding: 20px;
		font-size: 12px;
	}
	#request-form-wrap .policy-text {
		padding: 20px;
		font-size: 12px;
	}
	#request-form-wrap .policy-text h3 {
		font-size: 13px;
	}
	#request-form-wrap dl.d-flex {
		flex-direction: column;
	}
	#request-form-wrap dl dt {
		width: 100%;
		font-size: 15px;
		padding-right: 0;
	}
	#request-form-wrap dl dt p {
		font-size: 15px;
		margin-bottom: 0.25rem !important;
	}
	
	#request-form-wrap dl dd {
		width: 100%;
		margin-bottom: 0 !important;
	}
	#request-form-wrap dl dd .row {
		margin-left: -5px;
		margin-right: -5px;
	}
	#request-form-wrap dl dd .row > * {
		padding-left: 5px;
		padding-right: 5px;
	}
	#request-form-wrap dl dd p.small {
		font-size: 13px;
	}
	#request-form-wrap .form-control,
	#request-form-wrap .wpcf7 .wpcf7-validation-errors,
	#request-form-wrap .wpcf7 input[type=color],
	#request-form-wrap .wpcf7 input[type=date],
	#request-form-wrap .wpcf7 input[type=datetime-local],
	#request-form-wrap .wpcf7 input[type=datetime],
	#request-form-wrap .wpcf7 input[type=email],
	#request-form-wrap .wpcf7 input[type=file],
	#request-form-wrap .wpcf7 input[type=month],
	#request-form-wrap .wpcf7 input[type=number],
	#request-form-wrap .wpcf7 input[type=range],
	#request-form-wrap .wpcf7 input[type=search],
	#request-form-wrap .wpcf7 input[type=tel],
	#request-form-wrap .wpcf7 input[type=text],
	#request-form-wrap .wpcf7 input[type=time],
	#request-form-wrap .wpcf7 input[type=url],
	#request-form-wrap .wpcf7 input[type=week],
	#request-form-wrap .wpcf7 select,
	#request-form-wrap .wpcf7 textarea {
		min-height: 48px;
		font-size: 14px;
		padding: .5rem .5rem;
		border-radius: 6px;
	}
	#request-form-wrap .wpcf7 input[type=reset] {
		font-size: 12px;
		margin-bottom: 20px;
	}
	#request-form-wrap .wpcf7 input[type=submit] {
		margin: 0 auto;
	}
	#request-form-wrap .wpcf7 hr {
		margin-top: 1rem;
		margin-bottom: 1.5rem;
	}
	#request-form-wrap .wpcf7 .agree-wrap p {
		font-size: 14px;
	}
	#request-form-wrap .wpcf7 input[type=reset] {
		font-size: 16px;
	}
	#request-form-wrap .wpcf7 .wpcf7-radio,
	#request-form-wrap .wpcf7 .wpcf7-checkbox {
		font-size: 14px;
		margin: 0 -0.5em;
	}
	#request-form-wrap .wpcf7 .wpcf7-radio .wpcf7-list-item,
	#request-form-wrap .wpcf7 .wpcf7-checkbox .wpcf7-list-item {
		padding: 0 0.5em;
	}
	#request-form-wrap .wpcf7 select,
	#request-form-wrap .wpcf7 input[type=date] {
		padding-right: 30px;
		background-position: top 50% right 10px;
		background-size: 20px;
	}
	#request-form-wrap .wpcf7 .wpcf7-checkbox label {
		margin: 0.75em 0;
	}
}
@media (min-width: 768px) {
	#request-form-wrap .wpcf7 input[type=submit]:hover {
		opacity: 0.6;
	}
}


/*----------------------------------------*/
/*フローティングメニュー*/
/*----------------------------------------*/

.float-menu {
	display: none;
	position: fixed;
	right: 90px;
	bottom: 60px;
	margin: -7px;
	z-index: 100;
}
.float-menu a {
	display: block;
	width: 107px;
	margin: 7px;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
	border-radius: 107px;
}
.float-menu a.to-top {
	background-color: #fffff3;
}
.float-menu a.to-serch {
	background-color: #299543;
}
.scrolled .page_top_btn {
	display: none;
}
@media (min-width:992px) {
	.float-menu {
		display: block;
	}
	.float-menu a {
		transition: opacity 0.3s;
	}
	.float-menu a:hover {
		opacity: 0.6;
	}
}
@media (max-width:1119px) {
	.float-menu {
		right: 20px;
		bottom: 20px;
	}
	.float-menu a {
		width: 80px;
	}
}


/*----------------------------------------*/
/*slick 共通*/
/*----------------------------------------*/

.slick-slider {}
.slick-track {
	display: flex;
}
.slick-slide {
	height: auto !important;
}
p.slick-slide {
	text-align: center;
	margin: 100px 0;
}
.slick-slide img {
	width: 100%;
}
.slick-slider .slick-arrow {
	font-size: 30px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	border-style: solid;
	border-width: 1em 0;
	border-color: transparent;
	background-color: transparent;
	color: transparent;
	width: 1em;
	height: 2em;
	z-index: 100;
}
.slick-slider .slick-arrow::before {
	position: absolute;
	content: "";
	display: block;
}
.slick-slider .slick-prev {
	left: 20px;
	transform: translate(50%, -50%) rotate(45deg);
	width: 20px;
	height: 20px;
	border-style: solid;
	border-width: 0 0 2px 2px;
	border-color: #FFFFFF;

}
.slick-slider .slick-prev::before {}
.slick-slider .slick-next {
	right: 20px;
	transform: translate(-50%, -50%) rotate(45deg);
	width: 20px;
	height: 20px;
	border-style: solid;
	border-width: 2px 2px 0 0;
	border-color: #FFFFFF;

}
.slick-slider .slick-next::before {}
@media (max-width:767px) {
	.slick-slider .slick-arrow {
		font-size: 12px;
		width: 12px;
		height: 12px;
	}
	.slick-slider .slick-prev {
		left: 10px;
	}
	.slick-slider .slick-next {
		right: 10px;
	}
}

/*slick-dots*/
.slick-dots {
	position: absolute;
	left: 50%;
	bottom: 9px;
	transform: translateX(-50%);
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	list-style: none;
}
.slick-dots li {
	position: relative;
	padding: 5px 5px;
	opacity: 0.6;
}
.slick-dots li::before {
	content: "";
	display: block;
	margin: 0 auto;
	width: 8px;
	height: 8px;
	border-radius: 8px;
	background-color: #FFFFFF;
}
.slick-dots li button {
	display: none;
	border: none;
	background-color: transparent;
	font-size: 0;
	color: #ffffff;
}
.slick-dots li.slick-active {
	opacity: 1;
}
.slick-dots li.slick-active {}
.slick-dots li.slick-active button {}
@media (max-width:767px) {
	.slick-dots {
		margin-top: 10px;
	}
	.slick-dots li {
		padding: 3px 4px;
	}
	.slick-dots li::before {
		width: 6px;
		height: 6px;
	}
}


/*----------------------------------------*/
/*categorylist-sec*/
/*----------------------------------------*/

.categorylist-sec {
	padding: 50px 0 25px;
	border-bottom: solid 1px #808080;
}
.categorylist-sec-foot {
	border-bottom: none;
}
.categorylist-sec .container {}
.categorylist-sec .categorylist-slick {}
.categorylist-sec .categorylist-slick::before,
.categorylist-sec .categorylist-slick::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	aspect-ratio: 1.5/1;
	z-index: 1;
	pointer-events: none;
}
.categorylist-sec .categorylist-slick::before {
	left: 0;
	background: linear-gradient(to right, #ffffff, transparent);
}
.categorylist-sec .categorylist-slick::after {
	right: 0;
	background: linear-gradient(to left, #ffffff, transparent);
}
.categorylist-sec .categorylist-slick .slick-arrow {
	transform: translateY(-50%);
	border: 0;
	width: 53px;
	height: 53px;
	background-color: #ffffff;
	border-radius: 30px;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
@media (min-width:768px) {
	.categorylist-sec .categorylist-slick .slick-arrow {
		transition: opacity 0.3s;
	}
	.categorylist-sec .categorylist-slick .slick-arrow:hover {
		opacity: 0.6;
	}
}
.categorylist-sec .categorylist-slick .slick-arrow::before {
	position: absolute;
	content: "";
	width: 13px;
	height: 13px;
	border-style: solid;
	border-color: #000000;
	top: 50%;
	left: 50%;
}
.categorylist-sec .categorylist-slick .slick-prev {
	left: 5px;
}
.categorylist-sec .categorylist-slick .slick-prev::before {
	border-width: 0 0 2px 2px;
	transform: translate(-35%, -50%) rotate(45deg);
}
.categorylist-sec .categorylist-slick .slick-next {
	right: 5px;
}
.categorylist-sec .categorylist-slick .slick-next::before {
	border-width: 2px 2px 0 0;
	transform: translate(-65%, -50%) rotate(45deg);
}
.categorylist-sec .categorylist-slick .category-wrap {
	padding: 13px;
}
.categorylist-sec .categorylist-slick .category-wrap a {
	display: block;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
@media (min-width:768px) {
	.categorylist-sec {
		padding: 60px 0;
	}
	.categorylist-sec-foot {
		padding: 50px 0 20px;
	}
	.categorylist-sec h3 {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.categorylist-sec .categorylist-slick .category-wrap a {
		transition: opacity 0.3s;
	}
	.categorylist-sec .categorylist-slick .category-wrap a:hover {
		opacity: 0.6;
	}
}
@media (max-width:767px) {
	.categorylist-sec {
		padding-bottom: 60px;
	}
	.categorylist-sec-head {
		display: none;
	}
	.categorylist-sec .container {
		padding: 0;
	}
	.categorylist-sec .categorylist-slick::before,
	.categorylist-sec .categorylist-slick::after {
		display: none;
	}
	.categorylist-sec .categorylist-slick .slick-dots {
		bottom: -30px;
	}
	.categorylist-sec .categorylist-slick .slick-dots li {
		padding: 3px 6px;
	}
	.categorylist-sec .categorylist-slick .slick-dots li::before {
		width: 8px;
		height: 8px;
		background-color: #E6E6E6;
	}
	.categorylist-sec .categorylist-slick .slick-dots li.slick-active::before {
		background-color: #299543;
	}
}

/* .カートボタン */
.cart-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: flex-end;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-modal.active {
	opacity: 1;
	visibility: visible;
}
.cart-modal-content {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	background-color: white;
	transition: transform 0.2s ease-in-out;
	font-size: 0.875rem;
	color: black;
	overflow-y: auto;
	padding-bottom: 1rem;
	z-index: 20;
	font-family: 'Arial', sans-serif;
	max-width: 480px;
	width: calc(100vw - 60px);
	transform: translateX(100%);
}
.cart-modal.active .cart-modal-content {
	transform: translateX(0);
}
.cart-close-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	font-size: 24px;
	border: none;
	background: none;
	cursor: pointer;
}
.cart-items iframe#cart-iframe {
	min-height: calc(100vh - 25px);
}
@media (min-width: 768px) {
	.page-template-front-page #common-footer .bottom-banner-area {
		display: none;
	}
}

#common-footer .nav-col {
	padding-top: 40px;
	flex-basis: 500px;
	flex-grow: 0;
	flex-shrink: 0;
	max-width: 50%;
}
#common-footer .nav-col.btn-col {
	flex-basis: 180px;
}
#common-footer .nav-col>.row>.col {
	width: fit-content;
	flex-basis: fit-content;
}
#common-footer .banner-col {
	margin-top: 1.1em;
}
#common-footer .nav-col .banner-col img {
	max-width: 260px;
}
#common-footer .nav-wrap {
	padding: 50px 0;
}
#common-footer .nav-col.btn-col ul li a {
	color: #000000;
	background-color: #ffffff;
	padding: 10px 20px;
	border-radius: 30px;
	font-family: 'Jost', sans-serif;
	align-items: center;
	display: flex;
	width: fit-content;
	min-width: 150px;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}
#common-footer .nav-col.btn-col ul li.cart a:before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(https://go-hokkaido.com/wp2024/wp-content/themes/understrap-child/img/common/ico/ico-cart.png);
	background-size: contain;
	vertical-align: middle;
	margin-right: 10px;
}
#common-footer .nav-col.btn-col ul li.mypage a:before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url(https://go-hokkaido.com/wp2024/wp-content/themes/understrap-child/img/common/ico/ico-mypage.png);
	background-size: contain;
	vertical-align: middle;
	margin-right: 10px;
}
@media (max-width: 1199px) {
	#common-footer .nav-col {
		flex-basis: 50%;
		max-width: 420px;
	}
	#common-footer .nav-col>.row {
		padding-top: 125px;
	}
}
@media (max-width: 991px) {
	#common-footer .nav-col.btn-col {
		flex-basis: 420px;
	}
	#common-footer .nav-col.btn-col ul {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	}
}
@media (max-width: 767px) {
	#common-footer .nav-col {
		max-width: 100%;
		flex-basis: 100%;
		padding: 40px 50px;
		background-color: #f2f2f2;
		display: block;
	}
	#common-footer .nav-col>.row {
		padding-top: 0;
	}
	#common-footer .nav-col.btn-col {
		flex-basis: 100%;
	}
	#common-footer .nav-col>.row {
		margin: 0 -10px;
	}
	#common-footer .nav-col.btn-col ul {
		margin-right: -40px;
	}
}

.btn {
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	padding: 15px 20px;
	border-radius: 40px;
	transition: 0.3s all;
	font-family: 'Jost', sans-serif;
}
.btn.has-ico {
	position: relative;
	padding-right: 60px;
}
.btn.has-ico::after {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-size: contain;
}
.btn-white,
.btn-white:hover {
	background-color: #FFFFFF;
	color: #000000;
}
.btn-white.has-ico {}
.btn-white.has-ico::after {
	background-image: url(../img/common/ico/ico-kirari-green.svg);
}
.btn-green,
.btn-green:hover {
	background: #00a99d;
	color: #FFF;
}
.btn-green.has-ico {}
.btn-green.has-ico::after {
	background-image: url(../img/common/ico/ico-kirari-white.svg);
}
@media (min-width: 768px) {
	.btn:hover {
		opacity: 0.6;
	}
}


/*----------------------------------------*/
/* .breadcrumbs */
/*----------------------------------------*/

.breadcrumbs {
	line-height: 1.4;
	font-size: 16px;
	color: #212529;
	margin-bottom: 30px;
}
.breadcrumbs .container {
	max-width: 1400px;
}
.breadcrumbs a {
	color: #212529;
}
.breadcrumbs .aioseo-breadcrumb-separator {
	position: relative;
	display: inline-block;
	height: 1em;
	width: 1em;
}
.breadcrumbs .aioseo-breadcrumb-separator::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	display: block;
	width: 7px;
	height: 7px;
	border-style: solid;
	border-width: 1px 1px 0 0;
	border-color: #BCBEBF;
}
.breadcrumbs .aioseo-breadcrumb {
	display: inline-block;
}
@media (max-width: 767px) {
	.breadcrumbs {
		font-size: 14px;
		margin-bottom: 25px;
	}
}

/*----------------------------------------*/
/* .post-tag */
/*----------------------------------------*/

.post-tag {
	font-size: 18px;
	margin-bottom: 25px;
}
.post-tag > ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: -4px;
}
.post-tag > ul > li {
	padding: 4px;
	margin: 0;
}
.post-tag a {
	display: inline-block;
	font-weight: 400;
	border-radius: 5px;
	padding: 5px 10px 5px calc(1em + 15px);
	height: 32px;
	background-color: #00A99D;
	color: #FFFFFF;
	background-image: url(../img/common/ico/ico-tag.svg);
	background-position: 9px 50%;
	background-repeat: no-repeat;
	background-size: 1em;
}
@media (min-width: 768px) {
	.post-tag a {
		transition: opacity 0.3s;
	}
	.post-tag a:hover {
		opacity: 0.6;
	}
}
@media (max-width: 767px) {
	.post-tag {
		font-size: 14px;
		margin-bottom: 15px;
	}
	.post-tag > ul {
		margin: -3px;
	}
	.post-tag > ul > li {
		padding: 3px;
	}
	.post-tag a {
		height: 26px;
		padding: 2px 5px 2px calc(1em + 10px);
		background-position: 7px 50%;
		background-size: 11px;
	}
}


/*----------------------------------------*/
/* .sample-tour-archive-wrapper  */
/*----------------------------------------*/

/* .page-header */
.sample-tour-archive-wrapper .page-header {
	padding: 90px 0 65px;
}
.sample-tour-archive-wrapper .page-header .container {
	max-width: 1400px;
}
.sample-tour-archive-wrapper .page-header .page-title {
	font-size: 48px;
	line-height: 1;
	font-weight: 500;
	text-align: center;
	margin-bottom: 35px;
}
.sample-tour-archive-wrapper .page-header p {
	line-height: 1.7;
	font-weight: 400;
	text-align: center;
}
.sample-tour-archive-wrapper .page-header .btn-wrap {
	margin-top: 35px;
}
.sample-tour-archive-wrapper .page-header .btn-wrap .btn {}
.sample-tour-archive-wrapper .page-header .search-tag-wrap {
	margin-top: 80px;
	background-color: #F4F7FA;
	padding: 30px;
}
.sample-tour-archive-wrapper .page-header .search-tag-wrap .search-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 690px;
	margin: 0 auto;
}
.sample-tour-archive-wrapper .page-header .search-tag-wrap .tag-title {
	font-weight: 600;
	font-size: 24px;
	margin-right: 40px;
}
.sample-tour-archive-wrapper .page-header .search-tag-wrap #tag-select {
	flex-grow: 1;
	height: 50px;
	font-size: 20px;
	font-weight: 600;
	font-family: 'Jost', sans-serif;
	border: none;
	border-radius: 0;
	background-color: #FFFFFF;
	padding: 10px 70px 10px 20px;
	color: #212529;
	appearance: none;
	background-image: url(../img/sample-itinerary/select-tag-arrow.svg);
	background-repeat: no-repeat;
	background-position: right;
	background-size: contain;
}
@media (max-width: 767px) {
	.sample-tour-archive-wrapper .page-header {
		padding: 15px 0 30px;
	}
	.sample-tour-archive-wrapper .page-header .page-title {
		font-size: 35px;
		margin-bottom: 30px;
	}
	.sample-tour-archive-wrapper .page-header .search-tag-wrap {
		margin-top: 30px;
		padding: 25px 20px 40px;
	}
	.sample-tour-archive-wrapper .page-header .search-tag-wrap .search-wrap {
		display: block;
	}
	.sample-tour-archive-wrapper .page-header .search-tag-wrap .tag-title {
		display: block;
		font-size: 20px;
		margin: 0 auto 10px;
		text-align: center;
	}
	.sample-tour-archive-wrapper .page-header .search-tag-wrap #tag-select {
		font-size: 16px;
		width: 100%;
	}
}
@media (min-width: 768px) {
	.sample-tour-archive-wrapper .page-header {
		background-image: url(../img/sample-itinerary/ast-title-bg.png);
		background-position: 50% 40px;
		background-repeat: no-repeat;
		background-size: min(1072px,90%);
	}
}

/* .page-body */
.sample-tour-archive-wrapper .page-body {
	padding: 120px 0;
	background-color: #F4F7FA;
}
@media (max-width: 767px) {
	.sample-tour-archive-wrapper .page-body {
		padding: 60px 0 80px;
	}
}

/* .postlist-sec */
.sample-tour-archive-wrapper .postlist-sec {}
.sample-tour-archive-wrapper .postlist-sec .search-title {
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	text-align: center;
	margin-bottom: 60px;
}
.sample-tour-archive-wrapper .postlist-sec .tour-list {}
@media (max-width: 767px) {
	.sample-tour-archive-wrapper .postlist-sec .search-title {
		margin-bottom: 35px;
	}
}

/* .article */
.sample-tour-archive-wrapper .postlist-sec .article {
	margin-bottom: 54px;
}
.sample-tour-archive-wrapper .postlist-sec .article .article-row {
	margin: 0 -20px;
}
.sample-tour-archive-wrapper .postlist-sec .article .article-row .col-md {
	padding: 0 20px;
}
.sample-tour-archive-wrapper .postlist-sec .article .article-row .img-col {}
.sample-tour-archive-wrapper .postlist-sec .article .slick-slide img {
	aspect-ratio: 1.5;
	width: 100%;
	height: auto;
	border-radius: 15px;
	object-fit: cover;
}
.sample-tour-archive-wrapper .postlist-sec .article .slick-prev {
}
.sample-tour-archive-wrapper .postlist-sec .article .slick-next {
}
.sample-tour-archive-wrapper .postlist-sec .article .article-row .text-col {
	display: flex;
	align-items: center;
}
.sample-tour-archive-wrapper .postlist-sec .article .article-row .text-col .inner {
	width: 100%;
}
.sample-tour-archive-wrapper .postlist-sec .article .img-text {}
.sample-tour-archive-wrapper .postlist-sec .article .img-text .inner {}
@media (max-width: 991px) {
	.sample-tour-archive-wrapper .postlist-sec .article .article-row {
		margin: 0 -15px;
	}
	.sample-tour-archive-wrapper .postlist-sec .article .article-row .col-md {
		padding: 0 15px;
	}
}

.sample-tour-archive-wrapper .postlist-sec .article .title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 10px;
}
.sample-tour-archive-wrapper .postlist-sec .article .title a {
	color: #212529;
}
.sample-tour-archive-wrapper .postlist-sec .article .post-content {
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}
.sample-tour-archive-wrapper .postlist-sec .article .more-wrap {
	margin-top: 20px;
}
.sample-tour-archive-wrapper .postlist-sec .article .more-wrap .more {
	font-size: 24px;
	font-weight: 600;
	color: #00A99D;
}
.sample-tour-archive-wrapper .postlist-sec .article .more-wrap .more::after {
	content: "";
	display: inline-block;
	transform: translateY(-0.1em) rotate(45deg);
	margin-left: 0.5em;
	width: 0.375em;
	height: 0.375em;
	border-style: solid;
	border-width: 2px 2px 0 0;
	border-color: #00A99D;
}
.sample-tour-archive-wrapper .postlist-sec .show-more {
	display: block;
	width: 250px;
	max-width: 100%;
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
	margin: 60px auto 0;
}
@media (max-width: 767px) {
	.sample-tour-archive-wrapper .postlist-sec .article {
		margin-bottom: 40px;
	}
	.sample-tour-archive-wrapper .postlist-sec .article .article-row .img-col {
		margin-bottom: 15px;
	}
	.sample-tour-archive-wrapper .postlist-sec .article .article-row .text-col .inner {
		padding: 0 15px;
	}
	.sample-tour-archive-wrapper .postlist-sec .article .title {
		font-size: 18px;
		margin-bottom: 5px;
	}
	.sample-tour-archive-wrapper .postlist-sec .article .more-wrap {
		margin-top: 5px;
	}
	.sample-tour-archive-wrapper .postlist-sec .show-more {
		margin-top: 40px;
	}
}
@media (min-width: 768px) {
	.sample-tour-archive-wrapper .postlist-sec .article .article-row .img-col {
		max-width: 40%;
	}
}

/* .contact-sec */
.sample-tour-archive-wrapper .contact-sec {
	position: relative;
	padding: 105px 0 120px;
	background-image: url(../img/common/contact-bg-small-image.png);
	background-size: 100%;
	color: #FFFFFF;
	overflow: hidden;
}
.sample-tour-archive-wrapper .contact-sec::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: #F4F7FA;
	opacity: 0.1;
}
.sample-tour-archive-wrapper .contact-sec .container {
	position: relative;
}
.sample-tour-archive-wrapper .contact-sec .container > .row {}
.sample-tour-archive-wrapper .contact-sec .container > .row > * {}
.sample-tour-archive-wrapper .contact-sec .container > .row > .text-col {}
.sample-tour-archive-wrapper .contact-sec .container > .row > .img-col {}
.sample-tour-archive-wrapper .contact-sec .title {
	font-size: 40px;
	font-weight: 600;
	margin-bottom: 20px;
}
.sample-tour-archive-wrapper .contact-sec .p {
	font-size: 17px;
	font-weight: 600;
}
.sample-tour-archive-wrapper .contact-sec .btn-wrap {
	margin-top: 40px;
}
.sample-tour-archive-wrapper .contact-sec .img-wrap {}
.sample-tour-archive-wrapper .contact-sec .img-row {
	margin: -6px
}
.sample-tour-archive-wrapper .contact-sec .img-row > * {
	padding: 6px;
}
.sample-tour-archive-wrapper .contact-sec .img-wrap {
	max-width: 804px;
	margin-left: auto;
}
.sample-tour-archive-wrapper .contact-sec .img-wrap img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
@media (max-width: 991px) {
	.sample-tour-archive-wrapper .contact-sec {
		padding: 65px 0 75px;
	}
	.sample-tour-archive-wrapper .contact-sec .title {
		text-align: center;
	}
	.sample-tour-archive-wrapper .contact-sec .p {
		text-align: center;
	}
	.sample-tour-archive-wrapper .contact-sec .btn-wrap {
		text-align: center;
	}
	.sample-tour-archive-wrapper .contact-sec .container > .row > .text-col {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.sample-tour-archive-wrapper .contact-sec {
		padding-bottom: 80px;
	}
	.sample-tour-archive-wrapper .contact-sec::before {
		right: 0;
		bottom: 100px;
		border-radius: 0 0 1000px 1000px;
	}
	.sample-tour-archive-wrapper .contact-sec .container > .row > .text-col {
		margin-bottom: 0;
	}
	.sample-tour-archive-wrapper .contact-sec .title {
		font-size: 28px;
		line-height: 1.3;
		margin-bottom: 15px;
	}
	.sample-tour-archive-wrapper .contact-sec .p {
		font-size: 15px;
		padding: 0 20px;
	}
	.sample-tour-archive-wrapper .contact-sec .btn-wrap {
		margin-top: 35px;
	}
}
@media (min-width: 768px) {
	.sample-tour-archive-wrapper .contact-sec::before {
		bottom: 0;
		width: calc(50vw - 192px);
		min-width: 350px;
		border-radius: 0 1000px 1000px 0;
	}
}
@media (min-width: 992px) {
}
@media (min-width: 1199px) {
	.sample-tour-archive-wrapper .contact-sec .container > .row {
		align-items: center;
		flex-wrap: nowrap;
	}
	.sample-tour-archive-wrapper .contact-sec .container > .row > .text-col {
		flex-basis: 41.66666667%;
		max-width: 41.66666667%;
	}
	.sample-tour-archive-wrapper .contact-sec .container > .row > .img-col {
		flex-basis: calc(50vw + 8.33333333%);
		max-width: calc(50vw + 8.33333333%);;
	}
}
@media (min-width: 1299px) {
	.sample-tour-archive-wrapper .contact-sec .container > .row > .text-col {
		flex-basis: 50%;
		max-width: 50%;
	}

	.sample-tour-archive-wrapper .contact-sec .container > .row > .img-col {
		flex-basis: 71%;
		max-width: 50vw;
	}
}



/*----------------------------------------*/
/* .sample-tour-archive-wrapper  */
/*----------------------------------------*/

.sample-tour-single-wrapper {
	padding-bottom: 100px;
	background-color: #F4F7FA;
}
.sample-tour-single-wrapper .container {
	max-width: 1400px;
}
.sample-tour-single-wrapper .left-col {}
.sample-tour-single-wrapper .site-main {
	padding: 40px 40px 50px;
	border-radius: 20px;
	background-color: #FFFFFF;
	margin-bottom: 60px;
}
.sample-tour-single-wrapper .site-main .post-tag {
	margin-bottom: 25px;
}
.sample-tour-single-wrapper .site-main .title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 22px;
}
.sample-tour-single-wrapper .site-main .title a {
	color: #212529;
}
.sample-tour-single-wrapper .site-main .meta-data {
	display: flex;
	justify-content: flex-end;
	gap: 25px;
	font-size: 14px;
	color: #212529;
	padding-top: 22px;
	border-top: solid 1px #E9E9EA;
	margin-bottom: 30px;
}
.sample-tour-single-wrapper .site-main .meta-data .text {
	color: #909294
}
.sample-tour-single-wrapper .site-main .meta-data .ico {
	margin-right: 5px;
}
@media (max-width: 767px) {
	.sample-tour-single-wrapper .site-main {
		padding: 25px 15px 35px;
		margin-bottom: 40px;
	}
	.sample-tour-single-wrapper .site-main .post-tag {
		margin-bottom: 15px;
	}
	.sample-tour-single-wrapper .site-main .title {
		font-size: 18px;
		margin-bottom: 15px;
	}
	.sample-tour-single-wrapper .site-main .meta-data {
		gap: 12px;
		font-size: 12px;
		padding-top: 15px;
		max-width: calc(100% - 10px);
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 25px;
	}
	.sample-tour-single-wrapper .site-main .meta-data .ico img {
		width: 12px
	}
}
@media (min-width: 1200px) {
	.sample-tour-single-wrapper .container-inner {
		width: calc(50% + 50vw - 40px);
		max-width: 1555px;
	}
	.sample-tour-single-wrapper .site-main {
		max-width: 992px;
	}
}

/* .btn-wrap */
.sample-tour-single-wrapper .left-col .btn-wrap {}
.sample-tour-single-wrapper .left-col .btn-wrap .btn {
	width: 250px;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.2);
}


/* .photo-gallery-slider */
.sample-tour-single-wrapper .photo-gallery-slider {
	margin-bottom: 25px;
}
.sample-tour-single-wrapper .photo-gallery-slider .slick-slide img {
	aspect-ratio: 1.5;
	width: 100%;
	height: auto;
	border-radius: 15px;
	object-fit: contain;
}
.sample-tour-single-wrapper .photo-gallery-slider .slick-slider .slick-prev {
	left: 30px;
}
.sample-tour-single-wrapper .photo-gallery-slider .slick-slider .slick-next {
	right: 30px;
}
.sample-tour-single-wrapper .photo-gallery-slider .slick-dots {
	bottom: 20px;
}
@media (max-width: 767px) {
	.sample-tour-single-wrapper .photo-gallery-slider {
		padding-left: 5px;
		padding-right: 5px;
		margin-bottom: 15px;
	}
}

/* #the-content */
.sample-tour-single-wrapper .the-content {
	padding: 60px 40px 70px;
	margin-bottom: 90px;
	border-radius: 20px;
	background-color: #F6F6F6;
}
.sample-tour-single-wrapper .the-content h2 {
	font-family: 'Jost', sans-serif;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.4;
	margin-top: 55px;
	margin-bottom: 31px;
}
.sample-tour-single-wrapper .the-content p {
	line-height: 1.7;
	margin-bottom:  1em;
}
.sample-tour-single-wrapper .the-content :is(.has-green-color, .has-green-color:visited) {
	color: #00A99D;
}
.sample-tour-single-wrapper .the-content figure {}
.sample-tour-single-wrapper .the-content a {
	color: #00A99D;
}
.sample-tour-single-wrapper .the-content > *:first-child {
	margin-top: 0;
}
.sample-tour-single-wrapper .the-content > *:last-child {
	margin-bottom: 0;
}
@media (max-width: 767px) {
	.sample-tour-single-wrapper .the-content {
		padding: 40px 20px;
		margin-bottom: 65px;
	}
	.sample-tour-single-wrapper .the-content h2 {
		font-size: 18px;
		margin-top: 36px;
		margin-bottom: 18px;
	}
	.sample-tour-single-wrapper .the-content .has-small-font-size {
		font-size: 11px !important;
	}
}
@media (min-width: 768px) {
	.sample-tour-single-wrapper .the-content a:hover {
		text-decoration: underline;
	}
}
/* .itinerary */
.sample-tour-single-wrapper .itinerary {}
.sample-tour-single-wrapper .itinerary h2 {
	font-family: 'Jost', sans-serif;
	font-weight: 600;
	font-size: 22px;
	line-height: 1.4;
	margin-top: 2.5em;
	margin-bottom: 1.4em;
	color: #00A99D;
}
.sample-tour-single-wrapper .itinerary .aco {
	overflow: hidden;
	border-radius: 20px;
	background-color: #F6F6F6;
	margin-bottom: 15px;
}
.sample-tour-single-wrapper .itinerary .aco .aco-head {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 64px;
	padding: 10px 50px;
	color: #FFFFFF;
	background: linear-gradient(to right, #00A99D, #299543);
	cursor: pointer;
}
.sample-tour-single-wrapper .itinerary .aco .aco-head::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-70%) rotate(45deg);
	display: block;
	width: 13px;
	height: 13px;
	border-style: solid;
	border-width: 0 2px 2px 0;
	border-color: #FFFFFF;
	border-radius: 1px;
}
.sample-tour-single-wrapper .itinerary .aco .aco-head.active::after {
	transform: translateY(-30%) rotate(45deg);
	border-width: 2px 0 0 2px;
}
.sample-tour-single-wrapper .itinerary .aco .aco-head .day {
	font-weight: 600;
	font-size: 22px;
	margin-right: 50px;
}
.sample-tour-single-wrapper .itinerary .aco .aco-head .aco-title {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.02em;
}
.sample-tour-single-wrapper .itinerary .aco .aco-body {
	padding: 20px 25px 25px;
}
.sample-tour-single-wrapper .itinerary .aco .aco-body p {
	line-height: 1.7;
}
.sample-tour-single-wrapper .itinerary .aco .aco-body a {
	color: #00A99D;
}
@media (max-width: 767px) {
	.sample-tour-single-wrapper .itinerary h2 {
		font-size: 18px;
	}
	.sample-tour-single-wrapper .itinerary .aco {
		border-radius: 15px;
		margin-bottom: 10px;
	}
	.sample-tour-single-wrapper .itinerary .aco .aco-head {
		min-height: 56px;
		padding: 10px 40px 10px 20px;
	}
	.sample-tour-single-wrapper .itinerary .aco .aco-head::after {
		width: 10px;
		height: 10px;
		right: 17px;
	}
	.sample-tour-single-wrapper .itinerary .aco .aco-head .day {
		font-size: 16px;
		margin-right: 20px;
	}
	.sample-tour-single-wrapper .itinerary .aco .aco-head .aco-title {
		font-size: 14px;
		line-height: 1.2;
	}
	.sample-tour-single-wrapper .itinerary .aco .aco-body {
		padding: 13px 20px 15px;
	}
}
@media (min-width: 768px) {
	.sample-tour-single-wrapper .itinerary .aco .aco-body a:hover {
		text-decoration: underline;
	}
}

/* #request-form-wrap */
.sample-tour-single-wrapper .side-request {
	overflow: hidden;
	border-radius: 20px;
	background-color: #FFFFFF;
	margin-bottom: 15px;
}
.sample-tour-single-wrapper .side-request .side-content-title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100px;
	padding: 10px 20px;
	margin: 0;
	color: #FFFFFF;
	background: linear-gradient(to right, #00A99D, #299543);
	font-weight: 500;
	font-size: 24px;
	letter-spacing: 0.02em;
}
.sample-tour-single-wrapper .side-request .side-content-body {
	padding: 25px 20px 45px;
}
.sample-tour-single-wrapper #request-form-wrap {
	padding: 0;
}
@media (max-width: 1299px) and (min-width: 1200px) {
	.sample-tour-single-wrapper #request-form-wrap .row > * {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (max-width: 1199px) {
	.sample-tour-single-wrapper .side-request {
		max-width: 700px;
		margin: 100px auto 0;
	}
}
@media (max-width: 767px) {
	.sample-tour-single-wrapper {
		padding-bottom: 80px;
	}
	.sample-tour-single-wrapper .side-request {
		margin-top: 65px;
	}
	.sample-tour-single-wrapper .side-request .side-content-title {
		font-size: 21px;
		padding: 10px 20px;
		min-height: 80px;
	}
	.sample-tour-single-wrapper .side-request .side-content-body {
		padding: 20px 20px 35px;
	}
}
@media (min-width: 768px) {
	.sample-tour-single-wrapper .side-request {
		position: sticky;
		top: 100px;
	}
	.sample-tour-single-wrapper #request-form-wrap .row {
		margin-left: -10px;
		margin-right: -10px;
	}
	.sample-tour-single-wrapper #request-form-wrap .row > * {
		padding-left: 10px;
		padding-right: 10px;
	}
}
@media (min-width: 1200px) {
	.sample-tour-single-wrapper .side-request {
		max-width: 500px;
	}
	.sample-tour-single-wrapper .side-request .side-content-body {
		overflow: auto;
		max-height: calc(100svh - 230px);
	}
	.sample-tour-single-wrapper #request-form-wrap {
		margin: 0 auto;
		max-width: 420px;
	}
}
