@charset "utf-8";

:root {
	--color-white: #ffffff;
	--color-txt: #333333;
	--color-accent: #CD3D6F;
	--color-pink01: #EB4670;
	--color-pink02: #FFA5C4;
	--color-pink03: #FFF4F8;
	--color-gray: #CFCFCF;
	--color-border: #eeeeee;
	--grad01: linear-gradient(90deg, #eb4670 0%, #ffb3c6 100%);
	--mask-arrow: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%2216%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M1.374%203.875a1.591%201.591%200%200%201%202.25-2.25l5.24%205.24.011.009c.31.31.465.719.465%201.126%200%20.407-.154.815-.465%201.126l-.02.018-5.231%205.231a1.591%201.591%200%200%201-2.25-2.25L5.499%208%201.374%203.875Z%22%2F%3E%3C%2Fsvg%3E') no-repeat center center / contain;
}

/*PCSP共通設定*/
html {
	scroll-behavior: smooth;
}

/*smooth scroll*/

main {
	color: var(--color-txt);
}

main * {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
	letter-spacing: .1em;
	box-sizing: border-box;
}

section img {
	width: 100%;
	height: auto;
}

#mainphoto img {
	width: 100%;
	margin: 0 auto;
	display: block;
}

#mainphoto figure {
	width: 100%;
	margin: 0;
}

#bg {
	position: relative;
}

#bg::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: url(../images/bg_main.jpg) no-repeat center bottom / cover;
	z-index: -1;
}

.bg_white {
	background-color: rgba(255, 255, 255, .8);
	margin-block-start: 40px;
}

.bg_white:first-of-type {
	margin-block-start: 20px;
}

h2 {
	position: relative;
	text-align: center;
}

h2 .main {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
}

h2 .sub {
	display: block;
	background: var(--grad01);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	font-family: "Allura", cursive;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0;
	line-height: 1.25;
}

.btn_cmn {
	position: relative;
	display: block;
	background: var(--grad01);
	text-align: center;
	max-width: 450px;
	margin-inline: auto;
	padding: 15px 43px;
}

.btn_cmn.rounded {
	border-radius: 5px;
}

.btn_cmn span {
	color: var(--color-white);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.47;
}

.btn_cmn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	transform: translateY(-50%);
	width: 10px;
	height: 15px;
	background: var(--color-white);
	-webkit-mask: var(--mask-arrow);
	mask: var(--mask-arrow);
}

/* place */
.place_name {
	position: relative;
	width: 100%;
	color: var(--color-white);
	border-radius: 10px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
}

.place_name.korea {
	background-image: url(../images/bg_korea.jpg);
}

.place_name.taiwan {
	background-image: url(../images/bg_taiwan.jpg);
}

.place_name.hawaii {
	background-image: url(../images/bg_hawaii.jpg);
}

.place_name.guam {
	background-image: url(../images/bg_guam.jpg);
}

.place_name.france {
	background-image: url(../images/bg_france.jpg);
}

.place_name.vietnam {
	background-image: url(../images/bg_vietnam.jpg);
}

.place_name.bali {
	background-image: url(../images/bg_bali.jpg);
}

.place_name.malaysia {
	background-image: url(../images/bg_malaysia.jpg);
}

.place_name.thai {
	background-image: url(../images/bg_thai.jpg);
}

.place_name::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, .1);
	border-radius: 10px;
	mix-blend-mode: multiply;
}

.place_name span {
	position: relative;
}

.place_name .main {
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
}

.place_name .sub {
	font-family: "Marcellus", serif;
	font-weight: 700;
	font-style: normal;
	text-transform: uppercase;
}

.place_lead {
	margin-block-start: 20px;
	font-size: 15px;
	line-height: 1.2;
}

.place_ttl {
	padding: 30px 10px 15px;
	text-align: center;
}

.place_ttl .main {
	display: block;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
}

.place_ttl .sub {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .02em;
	line-height: 1.19;
}

.place_info {
	border: 1px solid var(--color-accent);
	border-radius: 15px;
}

.place_info_list {
	display: grid;
	gap: 10px;
}

.place_info_item {
	padding: 20px;
	border-radius: 15px;
	background: var(--color-pink03);
}

.place_info_hdr {
	display: grid;
	grid-template: auto / 30px max-content;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--color-white);
	color: var(--color-accent);
	padding: 8px;
	margin-inline: auto;
	max-width: 200px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.place_info_hdr::before {
	font-family: 'Material Symbols Outlined';
	font-weight: normal;
	font-style: normal;
	font-size: 30px;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr
}

.place_info_hdr.timer::before {
	content: "\e425";
}

.place_info_hdr.flight::before {
	content: "\e905";
}

.place_info_hdr.calendar::before {
	content: "\ebcc";
}

.place_info_hdr.mop::before {
	content: "\e28d";
}

.place_info_hdr.volunteer::before {
	content: "\ea70";
}

.place_info_hdr.yen::before {
	content: "\eafb";
}

.place_info_hdr.season::before {
	content: "\e3aa";
}

.place_info_hdr.season {
	background: transparent;
	gap: 5px;
	grid-template-columns: 1fr;
	border-bottom: 2px solid var(--color-accent);
	padding-block: 0 5px;
	border-radius: 0;
	margin-block-end: 10px;
}

.place_info_txt {
	margin-block-start: 10px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.place_info_txt em {
	font-size: 50px;
	line-height: 1.48;
}

.place_info_txt span {
	font-size: 20px;
}

.place_info_txt small {
	font-size: 15px;
	font-weight: 400;
}

.place_info_txt.txtbox {
	margin-inline: auto;
	max-width: 200px;
	text-align: left;
}

.place_info_table {
	width: 100%;
}

.place_info_table:has(caption) {
	margin-block-start: 20px;
}

.place_info_table caption {
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

.place_info_table tr {
	display: grid;
	grid-template: auto / repeat(12, 1fr);
	gap: 1px;
}

.place_info_table th {
	padding: 10px 15px;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.place_info_table td {
	height: 26px;
	background: var(--color-white);
}

.place_info_table td[data-season="best"] {
	background: var(--color-pink02);
}

/* accordion */
.accordion {
	display: grid;
	gap: 10px;
}

.accordion_item {
	background: var(--color-white);
}

.accordion_txt_grad {
	display: block;
	background: var(--grad01);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	font-size: 20px;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	line-height: 1.2;
}

.accordion_title {
	position: relative;
	display: grid;
	grid-template: auto / max-content 1fr;
	align-items: center;
	width: 100%;
	text-align: left;
	padding: 15px 30px;
	font-size: 15px;
	font-weight: 700;
}

.accordion_title::before,
.accordion_title::after {
	content: "";
	position: absolute;
}

.accordion_title::before {
	display: block;
	top: 0;
	left: 0;
	width: 7px;
	height: 100%;
	background: var(--color-pink01);
}

.accordion_title::after {
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	display: block;
	width: 10px;
	height: 15px;
	right: 20px;
	-webkit-mask: var(--mask-arrow);
	mask: var(--mask-arrow);
	background: var(--grad01);
	transition: transform .3s ease-in-out;
}

.accordion_content {
	position: relative;
	max-height: 0;
	overflow: hidden;
	transition: margin .3s ease-in-out, max-height .3s ease-in-out;
	width: calc(100% - 60px);
	margin: 0 auto;
}

.accordion_txt {
	display: grid;
	/*grid-template: auto / max-content 1fr;
	align-items: center;
	line-height: 1.2;*/
	grid-template-columns: max-content 1fr;
	align-items: start;
	gap: 0.4em;
	font-size: 15px;
	letter-spacing: .04em;
	line-height: 1.6;
}

.accordion_item.is-open .accordion_content {
	transition: max-height .3s ease-in-out, margin .3s ease-in-out;
	max-height: var(--max-height);
	margin: 15px auto;
}

.accordion_item.is-open .accordion_title::after {
	transform: translateY(-50%) rotate(270deg);
}

/* scrollbox */
.sliderBox a {
	color: var(--color-txt);
}

/*.scrollbox_wraper {
	position: relative;
}

.scrollbox_wraper .scroll_left_btn,
.scrollbox_wraper .scroll_right_btn {
	width: 32px;
	height: 32px;
	position: absolute;
	top: calc(50% - 32px);
	display: block;
	z-index: 1;
	background: var(--grad01);
	border-radius: 50%;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .2);
}

.scrollbox_wraper .scroll_left_btn:after,
.scrollbox_wraper .scroll_right_btn:after,
.scrollbox_wraper .scroll_left_btn:before,
.scrollbox_wraper .scroll_right_btn:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 2px solid var(--color-white);
	border-top: 10px solid var(--color-white);
}

.scrollbox_wraper .scroll_left_btn:before {
	position: absolute;
	top: 7px;
	left: 11px;
	transform: rotate(45deg);
	transform-origin: bottom;
}

.scrollbox_wraper .scroll_right_btn:before {
	position: absolute;
	top: 7px;
	right: 11px;
	transform: rotate(-45deg);
	transform-origin: bottom;
}

.scrollbox_wraper .scroll_left_btn:after {
	position: absolute;
	top: 16px;
	left: 11px;
	transform: rotate(-45deg);
	transform-origin: top;
}

.scrollbox_wraper .scroll_right_btn:after {
	position: absolute;
	top: 16px;
	right: 11px;
	transform: rotate(45deg);
	transform-origin: top;
}*/

.scrollbox_list>.sliderBox {
	background-color: var(--color-white);
	border: solid 1px var(--color-border);
	border-radius: 10px;
}

.read_rowbox {
	text-align: left;
	letter-spacing: .04em;
	line-height: 1.47;
	padding: 10px 0;
	font-weight: bold;
	font-size: 15px;
}

/*.scrollbox_wraper .scroll_left_btn.non_scloll,
.scrollbox_wraper .scroll_right_btn.non_scloll {
	transition: 0.1s;
	display: none !important;
}

.scrollbox_wraper .scrollbox {
	overflow-x: scroll !important;
}
*/

.scrollbox_wraper .scrollbox_list>.sliderBox {
	margin: 0 5px !important;
	padding: 15px;
}

.scrollbox_wraper .scrollbox_list>.sliderBox .txt {
	font-size: 14px;
}

/*
.scrollbox_wraper .scrollbox::-webkit-scrollbar {
	height: 7px !important;
}

.scrollbox_wraper .scrollbox::-webkit-scrollbar-track {
	margin: 0 5px !important;
	background: var(--color-border) !important;
	border-radius: 5px !important;
}

.scrollbox_wraper .scrollbox::-webkit-scrollbar-thumb {
	border-radius: 5px !important;
	background: var(--color-gray) !important;
}*/

.img_rowbox img {
	border-radius: 10px;
}

.link_rowbox a {
	position: relative;
	display: grid;
	grid-template: auto / 1fr 10px;
	gap: 10px;
	margin: 0 auto;
}

.link_rowbox a::after {
	content: '';
	position: relative;
	width: 10px;
	height: auto;
	-webkit-mask: var(--mask-arrow);
	mask: var(--mask-arrow);
	background: var(--grad01);
}

.link_rowbox a span {
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	text-align: right;
}

/* feature */
.feature_list {
	display: grid;
	grid-template-rows: auto;
}

.feature_list_item {
	padding: 15px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 10px;
}

.feature_list_img {
	border-radius: 10px;
}

.feature_list_item a {
	color: var(--color-txt);
}

.feature_list_ttl {
	margin: 10px 0 5px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.feature_list_txt {
	font-size: 15px;
	letter-spacing: .04em;
	line-height: 1.2;
}

/* coupon */
.coupon_list {
	display: flex;
	gap: 20px;
}

.coupon_list li {
	box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
}

/* contact */
.contact_balloon {
	max-width: 386px;
	margin-inline: auto;
}

.contact_balloon::after {
	content: "";
	display: block;
	width: 14px;
	height: 15px;
	background: var(--grad01);
	margin: -1px auto 0;
	transform: rotate(180deg);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.contact_balloon p {
	border-radius: 10px;
	background: var(--grad01);
	padding: 20px;
	color: var(--color-white);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.5;
	text-align: center;
}

.contact_list {
	display: grid;
}

.contact_link {
	display: grid;
	grid-template: auto / 58px 1fr;
	gap: 10px;
	align-items: center;
	width: 100%;
	height: 100%;
	background: var(--color-white);
	padding: 16px;
	border: 1px solid var(--color-pink01);
	border-radius: 10px;
}

.contact_txt {
	color: var(--color-txt);
	font-size: 16px;
	font-weight: 700;
}

.contact_txt span {
	display: block;
	margin-block-start: .5em;
	font-size: 14px;
	font-weight: 500;
}

/*759px以下*/
@media screen and (max-width: 759.9px) {
	#wrapper {
		line-height: 1.4;
	}

	.spnone {
		display: none;
	}

	/* CSS */
	#dirPathBlock {
		overflow-x: scroll;
		overflow-y: hidden;
	}

	#dirPathBlock,
	#anchorLinkBlock {
		margin: 0 1%;
	}

	#dirPathBlock p,
	#anchorLinkBlock a {
		font-size: 12px;
	}

	#dirPathBlock p {
		width: max-content;
	}

	h1 {
		font-size: 12px;
		margin: 0 1% 1%;
	}

	h2 .main {
		font-size: 18px;
	}

	h2 .sub {
		font-size: 96px;
	}

	.inner {
		width: 96%;
		margin: 0 2%;
		padding: 24px 0;
	}

	.bg_white {
		padding: 20px;
	}

	/* place */
	.place_name {
		padding: 48px 0;
	}

	.place_name .sub {
		font-size: 56px;
	}

	.place_info {
		padding: 10px;
	}
	.place_info_txt {
		font-size: 15px;
	}
	.place_info_txt span {
		font-size: 17px;
	}
	.place_info_txt em {
		font-size: 29px;
		letter-spacing: -0.005em;
	}
	.place_info_list {
		display: flex;
		gap: 10px;
		flex-wrap: wrap;
	}
	.place_info_item {
		width: 48%;
		padding: 10px;
	}
	.place_info_item.season {
		width: 100%;
	}
	.place_info_hdr::before {
		width: 100%;
	}
	.place_info_hdr {
		display: flex;
		flex-wrap: wrap;
		gap:0;
	}
	.place_info_table {
		display: block;
		/*overflow-x: scroll;*/
		width: 100%;
		/*max-width: 228px;*/
		margin-inline: auto;
	}

	.place_info_table tbody {
		display: block;
		width: 100%;
	}
	.place_info_table tr {
		grid-template: auto / repeat(6, 1fr);
	}
	.place_info_table th {
		padding: 10px 5px;
	}

	.place_info_table caption {
		/*position: sticky;*/
		display: block;
		top: 0;
		left: 0;
	}

	/* accordion */
	.accordion_txt_grad {
		padding-inline-end: 15px;
	}

	/* scrollbox */
	/*.scrollbox_wraper .scroll_left_btn {
		left: 0;
	}

	.scrollbox_wraper .scroll_right_btn {
		right: 0;
	}
*/
	.scrollbox_wraper .scrollbox_list {
		width: fit-content !important;
		display: flex !important;
		margin: 0 auto 15px !important;
		padding: 0 calc(calc(100% - calc(862px / 3)) / 2);
	}

	.scrollbox_wraper .scrollbox_list>.sliderBox {
		width: calc(840px / 3) !important;
	}

	/* feature */
	.feature_list {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	/* coupon */
	.coupon_list {
		flex-wrap: wrap;
		gap: unset;
	}
	.coupon_list li {
		width:48%;
		margin:1%;
	}

	/* contact */
	.contact_balloon {
		width: 80%;
		margin-block-end: 10px;
	}

	.contact_list {
		gap: 10px;
	}
}

/*760px以上*/
@media screen and (min-width: 760px),
print {
	#wrapper {
		line-height: 1.231;
	}

	.pcnone {
		display: none;
	}

	/* CSS */
	#dirPathBlock,
	.iframe_end-content_gadget,
	#anchorLinkBlock {
		width: 100%;
		max-width: 1080px;
		min-width: 760px;
		margin: auto;
	}

	#dirPathBlock,
	#anchorLinkBlock {
		width: 100%;
		margin: 0 auto;
		display: block;
		font-size: 12px;
	}

	#dirPathBlock p,
	#anchorLinkBlock a {
		font-size: 12px;
	}

	#mainphoto {
		position: relative;
		width: 100%;
		height: 500px;
		margin: 0;
		padding: 0;
		background: url("../images/bg_mv.jpg") no-repeat top center;
	}
	#mainphoto img {
		width: 250px;
		height: 250px;
		margin: auto;
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}

	#mainphoto figure {
	}

	h1 {
		font-size: 12px;
		width: 100%;
		max-width: 1080px;
		min-width: 760px;
		margin: 0 auto 5px;
	}

	h2 .main {
		font-size: 20px;
	}

	h2 .sub {
		font-size: 118px;
	}

	.inner {
		width: 100%;
		max-width: 1080px;
		min-width: 760px;
		margin: 0 auto;
		padding: 50px 0;
		display: block;
	}

	.bg_white {
		padding: 40px;
	}

	.bg_white.pc_pxnone {
		padding: 40px 0;
	}


	/* place */
	.place_name {
		padding: 154px 0;
	}

	.place_name .sub {
		font-size: 64px;
	}

	.place_info {
		padding: 25px;
	}


	.place_info_list {
		grid-template: auto / repeat(3, 1fr);
	}

	.place_info_item.season {
		grid-column: 1 / 4;
		padding-inline: 24px;
	}

	.place_info_table table {
		width: 100%;
	}

	/* accordion */
	.accordion_txt_grad {
		padding-inline-end: 30px;
	}

	/* scrollbox */
	/*.scrollbox_wraper .scroll_left_btn {
		left: -40px;
	}

	.scrollbox_wraper .scroll_right_btn {
		right: -40px;
	}
*/
	.scrollbox_wraper .scrollbox_list {
		width: fit-content !important;
		display: flex !important;
		margin: 0 auto 20px !important;
	}

	.scrollbox_wraper .scrollbox_list>.sliderBox {
		width: calc(970px / 3) !important;
	}
/*
	スクロールなし
	.scrollbox_wraper.pc_no_slider {
		margin-block-end: 15px;
		position: relative;
	}

	.scrollbox_wraper.pc_no_slider .scroll_left_btn,
	.scrollbox_wraper.pc_no_slider .scroll_right_btn,
	.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar,
	.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar-track,
	.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar-thumb {
		display: none !important;
	}
*/
	.scrollbox_wraper.pc_no_slider .scrollbox_list {
		flex-wrap: wrap;
	}

	.scrollbox_wraper.pc_no_slider .scrollbox_list .sliderBox {
		margin-block-end: 10px !important;
	}

	/* feature */
	.feature_list {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px 10px;
	}

	/* coupon */
	.coupon_list {

	}

	/* contact */
	.contact_balloon {
		margin-block-end: 20px;
	}

	.contact_list {
		grid-template-columns: repeat(3, 1fr);
		gap: 19px;
	}
}

/* gadget */

.search_kaigaiBar .serchBox.kaigaiS > ul {
	border: none;
}
.search_kaigaiBar .serchBox.kaigaiS > ul li{
    background: #f5f5f5;
	color: #333;
}
.search_kaigaiBar .serchBox.kaigaiS > ul li.select{
    background: #c22a39;
    font-weight: bold;
}
.search_kaigaiBar .serchBox.kaigaiS .serchBox {
	border: 2px solid #C22A38;
}
.search_kaigaiBar .content_wrap {
	border-radius: 5px;
}
.btnSeach01 {
	padding: 0.5rem;
	font-size: 1rem;
	max-width: 280px;
	margin: 1rem auto 0;
	-webkit-border-radius: 0.25rem;
    -moz-border-radius: 0.25rem;
    border-radius: 0.25rem;
    -webkit-box-shadow: 0 -1px 0 #c22a39 inset;
    -moz-box-shadow: 0 -1px 0 #c22a39 inset;
    box-shadow: 0 -1px 0 #c22a39 inset;
    border: 1px solid #c22a39;
    background-color: #c22a39;
    color: #fff !important;
    position: relative;
    width: 90%;
    background: url(https://www.nta.co.jp/shared2015/common/images/ic_search_01.png) no-repeat #c22a39 97% 50%;
    background-size: 12px auto;
    border-bottom: 3px solid rgba(0, 0, 0, 0.2);
}

.search_kaigaiBar button.btnSeach, .search_kaigaiBar p.btnSeach a, #tab_kaigai_hotel .base_gadget a.forcia_search_hotel {
    padding: 8px 0;
    background: url(https://www.nta.co.jp/shared2015/common/images/ic_search_01.png) no-repeat #c22a39 97% 50%;
    background-size: 12px auto;
    color: #fff;
    border: none;
    font-size: 1rem;
    text-align: center;
    width: 80%;
    max-width: 280px;
    margin: 1rem auto 0;
    display: block;
    -webkit-border-radius: 0.25rem;
    border-radius: 0.25rem;
    border-bottom: 3px solid rgba(0, 0, 0, 0.2);
    clear: both;
}
.base_btn.type_next {
    background-color: #c22a39 !important;
    border-bottom: 3px solid rgba(0, 0, 0, 0.2) !important;
}

/*------------------------------
scroll item
------------------------------*/
@media screen and (max-width: 759.9px) {
.scrollbox_wraper {
	margin-bottom: 25px;
	position: relative;
}
.scrollbox_wraper .scroll_left_btn,
.scrollbox_wraper .scroll_right_btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: calc(50% - 32px);
    display: block;
    z-index: 1;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0px 0px 6px #888;
}
.scrollbox_wraper .scroll_left_btn {left: 0;}
.scrollbox_wraper .scroll_right_btn {right: 0;}
.scrollbox_wraper .scroll_left_btn:after,
.scrollbox_wraper .scroll_right_btn:after,
.scrollbox_wraper .scroll_left_btn:before,
.scrollbox_wraper .scroll_right_btn:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
}
.scrollbox_wraper .scroll_left_btn:after {
	position: absolute;
	top: 16px;
	left: 11px;
    border-left: 2px solid;
    border-top: 10px solid;
	transform: rotate(-45deg);
	-webkit-transform-origin-y: top;
	transform-origin: top;
}
.scrollbox_wraper .scroll_right_btn:after {
	position: absolute;
	top: 16px;
	right: 11px;
	border-left: 2px solid;
	border-top: 10px solid;
	transform: rotate(45deg);
	-webkit-transform-origin-y: top;
	transform-origin: top;
}
.scrollbox_wraper .scroll_left_btn:before {
	position: absolute;
	top: 7px;
	left: 11px;
    border-left: 2px solid;
    border-top: 10px solid;
	transform: rotate(45deg);
	-webkit-transform-origin-y: bottom;
	transform-origin: bottom;
}
.scrollbox_wraper .scroll_right_btn:before {
	position: absolute;
	top: 7px;
	right: 11px;
	border-left: 2px solid;
	border-top: 10px solid;
	transform: rotate(-45deg);
	-webkit-transform-origin-y: bottom;
	transform-origin: bottom;
}
.scrollbox_wraper .scroll_left_btn.non_scloll,
.scrollbox_wraper .scroll_right_btn.non_scloll {
	transition: 0.1s;
	display:none!important;
}
.scrollbox_wraper .scrollbox {overflow-x: scroll!important;}
.scrollbox_wraper .scrollbox > ul {
    width: fit-content !important;
    display: flex !important;
    margin: 0 auto 15px !important;
	/*padding: 0 calc(calc(100% - calc(1040px / 4)) / 2);*/
}
.scrollbox_wraper .scrollbox::-webkit-scrollbar {height: 8px!important;}
.scrollbox_wraper .scrollbox::-webkit-scrollbar-track {
	margin: 0 5px !important;
	background: var(--color-border) !important;
	border-radius: 5px !important;
}
.scrollbox_wraper .scrollbox::-webkit-scrollbar-thumb {
	border-radius: 5px !important;
	background: var(--color-gray) !important;
}
}

@media screen and (min-width: 760px),print {
.scrollbox_wraper {
	margin-bottom: 50px;
	position: relative;
}
.scrollbox_wraper .scroll_left_btn,
.scrollbox_wraper .scroll_right_btn {
    width: 32px;
    height: 32px;
    position: absolute;
    top: calc(50% - 32px);
    display: block;
    z-index: 1;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0px 0px 6px #888;
}
.scrollbox_wraper .scroll_left_btn {left: -40px;}
.scrollbox_wraper .scroll_right_btn {right: -40px;}
@media (min-width: 760px) and (max-width: 1170px){
    .scrollbox_wraper .scroll_left_btn {left: 0;}
    .scrollbox_wraper .scroll_right_btn {right: 0;}
}
.scrollbox_wraper .scroll_left_btn:after,
.scrollbox_wraper .scroll_right_btn:after,
.scrollbox_wraper .scroll_left_btn:before,
.scrollbox_wraper .scroll_right_btn:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
}
.scrollbox_wraper .scroll_left_btn:after {
	position: absolute;
	top: 16px;
	left: 11px;
    border-left: 2px solid;
    border-top: 10px solid;
	transform: rotate(-45deg);
	-webkit-transform-origin-y: top;
	transform-origin: top;
}
.scrollbox_wraper .scroll_right_btn:after {
	position: absolute;
	top: 16px;
	right: 11px;
	border-left: 2px solid;
	border-top: 10px solid;
	transform: rotate(45deg);
	-webkit-transform-origin-y: top;
	transform-origin: top;
}
.scrollbox_wraper .scroll_left_btn:before {
	position: absolute;
	top: 7px;
	left: 11px;
    border-left: 2px solid;
    border-top: 10px solid;
	transform: rotate(45deg);
	-webkit-transform-origin-y: bottom;
	transform-origin: bottom;
}
.scrollbox_wraper .scroll_right_btn:before {
	position: absolute;
	top: 7px;
	right: 11px;
	border-left: 2px solid;
	border-top: 10px solid;
	transform: rotate(-45deg);
	-webkit-transform-origin-y: bottom;
	transform-origin: bottom;
}
.scrollbox_wraper .scroll_left_btn.non_scloll,
.scrollbox_wraper .scroll_right_btn.non_scloll {
	transition: 0.1s;
	display:none!important;
}
.scrollbox_wraper .scrollbox {overflow-x: scroll!important;}
.scrollbox_wraper .scrollbox > ul {
    /*width: fit-content !important;*/
    display: flex !important;
    margin: 0 auto 15px !important;
}
.scrollbox_wraper .scrollbox::-webkit-scrollbar {height: 10px!important;}
.scrollbox_wraper .scrollbox::-webkit-scrollbar-track {
	margin: 0 5px !important;
	background: var(--color-border) !important;
	border-radius: 5px !important;
}
.scrollbox_wraper .scrollbox::-webkit-scrollbar-thumb {
	border-radius: 5px !important;
	background: var(--color-gray) !important;
}
@media (min-width: 760px) and (max-width: 900px){
	/*------------------------------
	for Tablet
	------------------------------*/
	.scrollbox_wraper .scrollbox {
		overflow-x: scroll!important;
		padding: 0;
	}
	.scrollbox_wraper .scrollbox::-webkit-scrollbar {height: 5px!important;}
	.scrollbox_wraper .scrollbox::-webkit-scrollbar-track {
		margin: 0 5px!important;
		background: var(--color-border)!important;
		border-radius: 5px!important;
	}
	.scrollbox_wraper .scrollbox::-webkit-scrollbar-thumb {
		border-radius: 5px!important;
		background: var(--color-gray)!important;
	}
}
.scrollbox_wraper.pc_no_slider {
	margin-bottom: 15px;
	position: relative;
}
.scrollbox_wraper.pc_no_slider .scroll_left_btn,
.scrollbox_wraper.pc_no_slider .scroll_right_btn,
.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar,
.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar-track,
.scrollbox_wraper.pc_no_slider .scrollbox::-webkit-scrollbar-thumb {display:none!important;}
/*.scrollbox_wraper.pc_no_slider .scrollbox > ul{flex-wrap: wrap;}*/
.scrollbox_wraper.pc_no_slider .scrollbox > ul li{margin-bottom: 10px !important;}
}

.ItemBoxContent {
	width: 100%;
    display: flex;
    gap: 1%;
}
.ItemBoxContent .ItemSetWrap {
width: 98%;
  position: relative;
  background-color: #FFF;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ItemBoxContent .ItemSetWrap:hover {
  opacity: 1!important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.25);
}
.ItemBoxContent .ItemSetWrap a {
  color: var(--color-txt);
}
.ItemBoxContent .ItemSetWrap a:hover {
  opacity: 1!important;
  transition: all 0.3s ease-in-out;
}
.ItemBoxContent .ItemSetWrap a .ItemTitleWrap {
  position: relative;
  background-color: #eee;
  overflow: visible;
  z-index: 2;
  min-height: 88px;
}
.ItemBoxContent .ItemSetWrap a .ItemTitle {
  font-size: 1rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  background-color: #eee;
  border-radius: 0.5rem 0.5rem 0 0;
}
.ItemBoxContent .ItemSetWrap a .ItemTitleSubLine {
  font-size: 0.875rem;
  font-weight: normal;
  padding: 0.25rem 1rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ItemBoxContent .ItemSetWrap a .ItemTitleSubLine .ItemTitleSubLineIcon {
  background-color: var(--color-pink02);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 250%;
  padding: 0.125rem;
}
.ItemBoxContent .ItemSetWrap a .ItemTitleSubLine .ItemTitleSubLineIcon svg {
  width: 14px;
  height: 14px;
  color: #FFF;
}
.ItemBoxContent .ItemSetWrap a .ItemSubTitle {
	display: inline-block;
	background-color: var(--color-accent);
	padding: 0.125rem 0.375rem;
	border-radius: 0.25rem;
	color: #FFF;
	position: absolute;
	font-size: 0.75rem;
	top: 1.95rem;
	right: 1rem;
	font-weight: 700;
}
.ItemBoxContent .ItemSetWrap.is-tentsuki a .ItemSubTitle {
  display: inline-block;
  background-color: var(--color-accent);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  color: #FFF;
  font-size: 0.875rem;
  position: absolute;
  top: auto;
    bottom:-0.5rem;
    right: 1rem;
  font-weight: 700;
}
.ItemBoxContent .ItemSetWrap a .ItemSet {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 0.75rem;
  border-bottom: 1px solid #ddd;
}
.ItemBoxContent .ItemSetWrap a .ItemSet:last-child {
  border-bottom: none;
}
.ItemBoxContent .ItemSetWrap.is-tentsuki a .ItemSet{
  padding: 0;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner {
  display: flex;
  width: 100%;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetIcon {
  width: 48px;
  padding: 0.75rem 0;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetIcon svg {
  width: 32px;
  height: 32px;
  background-color: var(--color-pink02);
  padding: 0.375rem;
  border-radius: 250%;
  color: #FFF;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody {
  width: 100%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.125rem;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardName {
  font-size: 1rem;
  font-weight: bold;
  display: block;
  width: 100%;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardSubTitlte {
  font-size: 0.75rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  width: 100%;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardRating {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  width: 100%;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardRating .starIcon {
  background-image: url("https://www.nta.co.jp/kaigai/assets/svg/star.svg");
  background-size: cover;
  display: inline-block;
  width: 1em;
  height: 1em;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardRating .starIcon--active {
  background-image: url("https://www.nta.co.jp/kaigai/assets/svg/star-active.svg");
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemSetInner .ItemSetBody .ItemSetCardRating .starIcon--half {
  background-image: url("https://www.nta.co.jp/kaigai/assets/images/star_half.png");
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage {
  width: 100%;
  max-height: 196px;
  overflow: hidden;
  border-radius: 0.25rem;
  margin-bottom: 0.25rem;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage_noslick {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 196px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage div.slick-slide{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  text-align: center;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage_noslick div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eee;
  width: 100%;
}

.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage img {
  display: block;
  max-height: 198px;
  border-radius: 0.25rem;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardImage_noslick img {
  display: block;
  max-height: 198px;
  border-radius: 0.25rem;
	width: 100%;
    height: auto;
	margin: 0;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardText {
  text-align: center;
  margin-bottom: 0.5rem;
}

.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardText .ItemCardTitle {
  font-size: 1rem;
  font-weight: bold;
  padding: 0.25rem;
}
.ItemBoxContent .ItemSetWrap a .ItemSet .ItemCard .ItemCardText .ItemCardSubText {
  font-size: 0.875rem;
  text-align: left;
  min-height: 4rem;
}

.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetTerm .ItemTermText {
  width: 100%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  color: var(--color-txt);
}

.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice {
  padding: 0.5rem;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop {
  width: 100%;
  margin: 0.25rem auto 0.125rem;
  padding: 0.125rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  gap: 0.25rem;
  border-radius: 0.25rem;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop .PricePopIcon {
  padding: 0.125rem;
  background-color: #FFF;
  border-radius: 5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop .PricePopIcon svg {
  width: 16px;
  height: 16px;
  fill: var(--theme-main-pale);
  color: var(--theme-main-color);
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop .PricePopText {
  font-size: 0.875rem;
  font-weight: 700;
  overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .PricePop .PricePopNumber {
  font-size: 0.75rem;
  width: 3.6rem;
  margin-left: auto;
  text-align: left;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .ItemPrice {
  width: 100%;
  padding: 0.25rem 0.25rem 0;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #C22A39;
  letter-spacing: -0.005rem;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .ItemPrice .ItemPriceCurrency {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .ItemPriceSubText {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  color: var(--color-txt);
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetPrice .ItemPriceText {
  width: 100%;
  padding: 0 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 400;
  text-align: center;
  color: var(--color-txt);
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetUpgrade  {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeText {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-txt);
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeIcon li.is-disabled {
  position: relative;
  opacity: 0.5;
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeIcon li.is-disabled::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #333;
  transform: rotate(45deg);
}
.ItemBoxContent .ItemSetWrap a .ItemSet.ItemSetUpgrade .ItemUpgradeIcon li svg {
  width: 24px;
  height: 24px;
}

.ItemBoxContent .ItemSetWrap a .ItemBook {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  background-color: var(--vivid-color);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 3rem;
  height: 3rem;
  padding: 0.5rem 0 0.75rem;
  border-radius: 5rem;
  text-align: center;
  display: none;
}
.ItemBoxContent .ItemSetWrap a .ItemBook .ItemBookLabel {
  width: 100%;
  font-size: 0.625rem;
  line-height: 1;
}
.ItemBoxContent .ItemSetWrap a .ItemBook .ItemBookIcon {
  width: 100%;
}
.ItemBoxContent .ItemSetWrap a .ItemBook .ItemBookIcon svg {
  width: 1.5rem;
  height: 1.5rem;
}