@charset "UTF-8";

h2 {
	position: relative;
	width: fit-content;
	margin: 0 auto 24px;
	padding-top: 16px;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 800px) {
	h2 {
		font-size: 19px;
	}
}

h2::before,
h2::after {
	position: absolute;
	top: 34px;
	width: 48px;
	height: 3px;
	background: #333;
	transform: translate(-50%, -50%);
	content: '';
}

@media screen and (max-width: 800px) {
	h2::before,
	h2::after {
		top: 31px;
		width: 38px;
		height: 2px;
	}
}

h2::before {
	left: calc(50% - 120px);
}

@media screen and (max-width: 800px) {
	h2::before {
		left: calc(50% - 100px);
	}
}

h2::after {
	right: calc(50% - 170px);
}

@media screen and (max-width: 800px) {
	h2::after {
		right: calc(50% - 140px);
	}
}

h3 {
	margin-bottom: 16px;
	padding-left: 8px;
	border-left: solid 5px #ee1c25;
	color: #494949;
	font-size: 20px;
	font-weight: 700;
}

@media screen and (max-width: 800px) {
	h3 {
		font-size: 18px;
	}
}

.detail-text.is-guide {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 800px) {
	.detail-text.is-guide {
		display: block;
	}
}

.detail-text a {
	transition: all .3s;
	color: #005f6e;
}
.detail-text a:hover {
	text-decoration: underline;
}
.detail-text .items {
	margin-bottom: 16px;
}
.detail-text .items li {
	padding-left: 1em;
	text-indent: -1em;
}
.detail-text .items.is-dot li,
.detail-text .items.is-asterisk li {
	position: relative;
}
.detail-text .items.is-dot li::before {
	content: '・';
}
.detail-text .items.is-asterisk li::before {
	content: '※';
}
.detail-text .note {
	font-size: 14px;
}
.detail-text .detail-img-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}

@media screen and (max-width: 800px) {
	.detail-text .detail-img-wrap {
		display: block;
		margin-bottom: 0;
	}
}

@media screen and (max-width: 800px) {
	.detail-text .detail-img-wrap .detail-img-item {
		margin-bottom: 16px;
	}
}

.detail-text .detail-img-wrap .detail-img-item:first-of-type {
	padding-right: 5px;
}

@media screen and (max-width: 800px) {
	.detail-text .detail-img-wrap .detail-img-item:first-of-type {
		padding-right: 0;
	}
}

.detail-text .detail-img-wrap .detail-img-item:last-of-type {
	padding-left: 5px;
}

@media screen and (max-width: 800px) {
	.detail-text .detail-img-wrap .detail-img-item:last-of-type {
		padding-left: 0;
	}
}

.detail-text .detail-img-wrap .detail-img-item img {
	height: 296px;
}

@media screen and (max-width: 800px) {
	.detail-text .detail-img-wrap .detail-img-item img {
		height: auto;
	}
}

.detail-text .guide-text {
	width: 600px;
}

@media screen and (max-width: 800px) {
	.detail-text .guide-text {
		width: 100%;
		margin-bottom: 16px;
	}
}

.detail-text .guide-img-wrap {
	width: 170px;
}

@media screen and (max-width: 800px) {
	.detail-text .guide-img-wrap {
		width: 100%;
	}
}

.detail-text .guide-img-wrap img {
	width: 170px;
	height: 227px;
}

@media screen and (max-width: 800px) {
	.detail-text .guide-img-wrap img {
		width: 100%;
		height: auto;
	}
}

.detail-text .detail-img-note {
	font-size: 14px;
}

@media screen and (max-width: 800px) {
	.detail-text .note {
		font-size: 12px;
	}
}

.detail-text .detail-img-wrap.is-normal .detail-img-note {
	width: 340px;
	margin: 0 auto;
}

@media screen and (max-width: 800px) {
	.detail-text .detail-img-wrap.is-normal .detail-img-note {
		width: 100%;
		max-width: 340px;
	}
}

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

/** .link-btn-wrap */
.link-btn-wrap {
	margin-bottom: 24px;
}
.link-btn-wrap .link-btn-text {
	margin-bottom: 4px;
	color: #ee1c25;
	font-size: 18px;
	text-align: center;
}

@media screen and (max-width: 800px) {
	.link-btn-wrap .link-btn-text {
		font-size: 16px;
	}
}

.link-btn-wrap.is-line .link-btn-text {
	color: #06c755;
}
.link-btn-wrap .link-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 320px;
	height: 60px;
	margin: 0 auto;
	border-radius: 4px;
	background-color: #ee1c25;
	transition: opacity .3s;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

@media screen and (max-width: 800px) {
	.link-btn-wrap .link-btn {
		width: 280px;
		font-size: 20px;
	}
}

.link-btn-wrap.is-line .link-btn {
	background-color: #06c755;
}
.link-btn-wrap.is-line .link-btn::after {
	position: absolute;
	top: 50%;
	right: calc(50% - 120px);
	width: 16px;
	height: 18px;
	background-image: url(/campaign/jtbjikoku100th/img/top/icon_window.png);
	background-repeat: no-repeat;
	background-size: cover;
	transform: translate(-50%, -50%);
	content: '';
}
.link-btn-wrap .link-btn:hover {
	opacity: .6;
}

/** .sns-btn-wrap */
.sns-btn-wrap .sns-btn-lead {
	margin-bottom: 4px;
	font-size: 18px;
	text-align: center;
}

@media screen and (max-width: 800px) {
	.sns-btn-wrap .sns-btn-lead {
		font-size: 16px;
	}
}

.sns-btn-wrap .sns-btn-list {
	display: flex;
	justify-content: center;
}
.sns-btn-wrap .sns-btn-list .sns-btn-item {
	display: block;
	margin: 0 8px;
	text-align: center;
}
.sns-btn-wrap .sns-btn-list .sns-btn-item img {
	width: 64px;
	height: 64px;
	margin-bottom: 4px;
}

/** .section.inquiry */
.section.sub.inquiry {
	margin-bottom: 0;
	padding-bottom: 80px;
	font-size: 14px;
}

@media screen and (max-width: 800px) {
	.section.sub.inquiry {
		padding-bottom: 40px;
	}
}

.section.sub.inquiry .section-inner {
	width: 800px;
}

@media screen and (max-width: 800px) {
	.section.sub.inquiry .section-inner {
		width: 100%;
		padding: 0 10px;
	}
}

.section.sub.inquiry .inquiry-text {
	margin-bottom: 20px;
}
.section.sub.inquiry ul li {
	position: relative;
	padding-left: 1.3em;
	text-align: left;
}
.section.sub.inquiry ul li::before {
	position: absolute;
	left: 0;
	content: '※';
}
