/* Allinclusive */

:root {
    --black: #231815;
    --yellow: #f8e92c;
    --green: #80b892;
    --pale_yellow: #f4f3ec;
}
.temporary {
    display: none !important;
}
body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: var(--black);
}
.webfont {
    font-family: "Chelsea Market", system-ui;
    font-weight: 400;
    font-style: normal;
}
.antique {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.adjust_comma {
    letter-spacing: -0.4em;
}
.adjust_period {
    letter-spacing: -0.3em;
}
.adjust_bracket_first {
    margin-left: -0.5em;
}
.adjust_brackets {
    letter-spacing: -0.6em;
}

p.note {
    margin-top: 1.3em;
}
ul.note {
    margin-top: 1.3em;
}
.note li {
    margin-top: 0;
    line-height: 1.2em;
}
.note li:not(:last-of-type) {
    margin-bottom: 0.6em;
}

.section .heading h3 {
    transform: translateY(10px);
    opacity: 0;
    transition: all 500ms 500ms ease-in-out;
}
.section.inview .heading h3 {
    transform: translateY(0);
    opacity: 1;
}
.section .heading h4 {
    transform: translateY(10px);
    font-size: 1.25em;
    font-weight: 700;
    opacity: 0;
    transition: all 500ms 800ms ease-in-out;
}
.section.inview .heading h4 {
    transform: translateY(0);
    opacity: 1;
}
.section .heading .summary {
    margin-top: 30px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 500ms 800ms ease-in-out;
}
.section.inview .heading .summary {
    transform: translateY(0);
    opacity: 1;
}

.in_order_element {
	transform: scale(0.86);
	opacity: 0;
    transition: all 500ms ease-in-out;
}
.in_order_element.in_order_reveal {
	transform: scale(1);
	opacity: 1;
}

h3.title {
    margin-bottom: 1.2em !important;
    font-size: 2.5em !important;
    font-weight: 500;
    font-weight: 700 !important;
    line-height: 1.2em;
    text-align: center;
}
h3.title span {
    display: block;
    margin-bottom: 0.3em;
    font-size: 0.6em;
    letter-spacing: 0.06em;
}
.summary {
    text-align: center;
}
.summary p,
p.summary {
    font-size: 1.2em !important;
    font-size: 1.1em !important;
    line-height: 2em !important;
    letter-spacing: 0.05em !important;
}

.heading {
    margin-bottom: 4em;
}

.allinclusive_button a {
	display: block;
	padding: 1em 1.2em 1.1em 1.5em;
	font-size: 1.05em;
	font-weight: 500;
	letter-spacing: 0.09em;
	border: 2px solid var(--black);
	border-radius: 50vh;
	color: var(--black) !important;
	text-align: center;
	text-decoration: none;
	transition: all 200ms ease-in-out;
}
.allinclusive_button a:hover {
    color: #fff !important;
	border: 2px solid var(--black);
	background: var(--black);
	transition: all 200ms ease-in-out;
}
.allinclusive_button a span {
    display: inline-block;
    position: relative;
    padding-right: 40px;
}
.allinclusive_button a span::before {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/allinclusive/icon_button_arrow.png) no-repeat center / 100%;
    transition: all 200ms ease-in-out;
}
.allinclusive_button a:hover span::before {
    background: url(../images/allinclusive/icon_button_arrow_white.png) no-repeat center / 100%;
}
.allinclusive_button.invert a {
    color: #fff !important;
    background: var(--black);
}
.allinclusive_button.invert a:hover {
    color: var(--black) !important;
    background: #fff;
}
.allinclusive_button.invert a span::before {
    background: url(../images/allinclusive/icon_button_arrow_white.png) no-repeat center / 100%;
}
.allinclusive_button.invert a:hover span::before {
    background: url(../images/allinclusive/icon_button_arrow.png) no-repeat center / 100%;
}

.allinclusive_more.above {
    margin-top: 2em;
}
.allinclusive_more a {
    display: inline-block;
    position: relative;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--black);
    text-decoration: none;
}
.allinclusive_more a span {
    display: inline-block;
    position: relative;
    padding-right: 40px;
}
.allinclusive_more a span::before {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/allinclusive/icon_button_arrow.png) no-repeat center / 100%;
    transition: all 200ms ease-in-out;
}
.allinclusive_more a:hover span::before {
	animation: allinclusive_more 300ms ease-in-out forwards;
}
@keyframes allinclusive_more {
	0% {
		right: 5px;
	}
	50% {
		right: 0;
	}
	100% {
		right: 5px;
	}
}

.reserve_button {
	margin: 5em auto 0 auto;
	width: 400px;
    transform: scale(0.8);
    opacity: 0;
    transition: all 500ms 500ms ease-in-out;
}
.reserve_button.reserve_button_inview {
    transform: scale(1);
    opacity: 1;
}
.reserve_form.comingsoon {
	display: block;
	padding: 1.5em 1em 1.6em 1em;
	font-size: 1.15em;
	font-weight: 500;
	letter-spacing: 0.08em;
	border: 2px solid #ccc;
	border-radius: 50vh;
	color: #fff !important;
    background: #ccc;
	text-align: center;
	text-decoration: none;
	transition: all 200ms ease-in-out;
}
.reserve_form a {
	display: block;
	padding: 1.5em 1em 1.6em 1em;
	font-size: 1.15em;
	font-weight: 500;
	letter-spacing: 0.08em;
	border: 2px solid var(--black);
	border-radius: 50vh;
	color: var(--black) !important;
	text-align: center;
	text-decoration: none;
	transition: all 200ms ease-in-out;
}
.reserve_form a:hover {
    color: #fff !important;
	border: 2px solid var(--black);
	background: var(--black);
	transition: all 200ms ease-in-out;
}
.reserve_form.comingsoon span {
    display: inline-block;
    position: relative;
}
.reserve_form a span {
    display: inline-block;
    position: relative;
    padding-right: 40px;
}
.reserve_form a span::before {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/allinclusive/icon_button_arrow.png) no-repeat center / 100%;
    transition: all 200ms ease-in-out;
}
.reserve_form a:hover span::before {
    background: url(../images/allinclusive/icon_button_arrow_white.png) no-repeat center / 100%;
}
.reserve_tel a,
.reserve_tel {
	margin-bottom: 2em;
	text-align: center;
	color: var(--black) !important;
}
.reserve_tel .label {
	position: relative;
	display: block;
	margin-bottom: 0.8em;
	position: relative;
}
.reserve_tel .label::before {
	left: 0;
	top: 0;
	content: '＼';
}
.reserve_tel .label::after {
	right: 0;
	top: 0;
	content: '／';
}
.reserve_tel a {
	font-size: 2.5em;
    font-weight: 500;
}

#allinclusive_menu_switch {
	display: none;
	position: fixed;
	right: 30px;
	right: 15px;
	top: 40px;
	top: 15px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent !important;
	z-index: 10010;
}
#allinclusive_menu_switch p {
	position: relative;
	width: 50px;
	height: 50px;
}
#allinclusive_menu_switch #switch_top {
	top: 17px;
	right: 10px;
	width: 30px;
}
#allinclusive_menu_switch #switch_bottom {
	top: 28px;
	right: 10px;
	width: 18px;
}
.expanded #allinclusive_menu_switch #switch_top {
	top: 22px;
	right: 10px;
		-o-transform: translateY(10px) rotate(45deg);
		-ms-transform: translateY(10px) rotate(45deg);
		-moz-transform: translateY(10px) rotate(45deg);
		-webkit-transform: translateY(10px) rotate(45deg);
	transform: rotate(40deg);
		-o-transition: all 120ms ease-in-out;
		-ms-transition: all 120ms ease-in-out;
		-moz-transition: all 120ms ease-in-out;
		-webkit-transition: all 120ms ease-in-out;
	transition: all 120ms ease-in-out;
}
.expanded #allinclusive_menu_switch #switch_bottom {
	top: 22px;
	right: 10px;
	width: 30px;
		-o-transform: translateY(10px) rotate(-45deg);
		-ms-transform: translateY(10px) rotate(-45deg);
		-moz-transform: translateY(10px) rotate(-45deg);
		-webkit-transform: translateY(10px) rotate(-45deg);
	transform: rotate(-40deg);
		-o-transition: all 120ms ease-in-out;
		-ms-transition: all 120ms ease-in-out;
		-moz-transition: all 120ms ease-in-out;
		-webkit-transition: all 120ms ease-in-out;
	transition: all 120ms ease-in-out;
}
#back {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100000;
}
#back p {
	width: 40px;
	height: 40px;
	cursor: pointer;
}
.inner {
	min-width: 1100px;
}

.allinclusive_fee_list {
    margin: 0 auto;
    padding: 2.5em 3em;
    width: 80%;
    background: var(--pale_yellow);
    border-radius: 20px;
    opacity: 0;
	transform: scale(0.8);
    transition: all 800ms 2600ms ease-in-out;
}
.inview .allinclusive_fee_list {
    opacity: 1;
	transform: scale(1);
}
.allinclusive_fee_list .heading {
    float: left;
    margin-top: 25px;
    margin-bottom: 0;
    width: 20%;
    text-align: left;
}
.allinclusive_fee_list .heading .title_en {
    margin-bottom: 0.5em;
    font-size: 1.9em;
    letter-spacing: 0.06em;
}
.allinclusive_fee_list .heading .title_ja {
    font-size: 1.1em;
    font-weight: 500;
}
.allinclusive_fee_list .content {
    float: right;
    width: 75%;
}
.allinclusive_fee_list .content li {
    float: left;
    padding: 1.5em 0.8em;
    width: 31.5%;
    background: #fff;
    text-align: center;
    border-radius: 10px;
}
.allinclusive_fee_list .content li:nth-of-type(3n - 1) {
    margin: 0 2.75%;
}
.allinclusive_fee_list .content li span {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.allinclusive_fee_list_icon {
    margin-bottom: 0.5em;
    margin-bottom: 0.2em;
    width: 40px;
    width: 80px;
}
.allinclusive_fee_list_title {
    font-size: 0.9em;
    letter-spacing: 0.05em;
}
.allinclusive_fee_list_value {
    font-size: 1.4em;
    font-weight: 500;
}
.allinclusive_fee_list_value .label {
    display: inline-block !important;
    font-size: 0.6em;
    font-weight: 400;
}

/* Header */

.fixed #header {
	background:none;
}
#header {
    min-width: 1000px;
    opacity: 0;
    animation: header 500ms 2800ms ease-in-out forwards;
}
@keyframes header {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#allinclusive_menu {
	position: absolute;
	top: 10px;
	top: 15px;
	right: 0;
	text-align: right;
	z-index: 90000;
}
#allinclusive_global_menu ul {
	font-size: 0.9em;
	font-size: 0.85em;
}
#allinclusive_global_menu ul li {
	margin-bottom: 5px;
	margin-bottom: 3.5px;
}
#allinclusive_global_menu ul li a {
	position: relative;
	padding-right: 32px;
	padding: 2px 32px 2px 4px;
	font-weight: 500;
	text-decoration: none;
	background: #FFF;
}
#allinclusive_global_menu ul li a::before {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	content: '';
	width: 12px;
	height: 12px;
	background: var(--black);
	border-radius: 50%;
}
#header_reserve_button {
    transform: scale(1);
	margin-top: 0;
    margin-right: 10px;
	margin-bottom: 20px;
	width: auto;
    opacity: 1;
}
#header_reserve_button a {
    display: block;
    padding: 15px;
    padding: 9px 15px;
    font-size: 1.05em;
    font-weight: 500;
    letter-spacing: 0.09em;
    background: #fff;
    border: 2px solid var(--black) !important;
    border-radius: 5px;
    border-radius: 25px;
    color: #fff !important;
    background: var(--black);
    text-align: center;
    text-decoration: none;
    transition: all 200ms ease-in-out;
}
#header_reserve_button a {
	padding: 8px 40px;
	border-right: none;
	border-radius: 50vh;
}
#header_reserve_button a:hover {
    color: var(--black) !important;
    border: 2px solid var(--black);
    background: #fff;
}


/* Hero */

#allinclusive_hero {
    position: relative;
    /* margin-bottom: 15em; */
    height: 95vh;
    max-height: 900px;
    min-height: 750px;
    overflow: hidden;
}
#allinclusive_hero .inner {
    position: relative;
    max-width: 1440px;
    height: 100%;
}
#allinclusive_hero_content {
    position: absolute;
    top: 10%;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
}
#allinclusive_hero_badge {
    position: absolute;
    top: 130px;
    right: -40px;
    transform: scale(1.2) rotate(10deg);
    width: 100px;
    height: 100px;
    background: url(../images/allinclusive/circle_yellow.png) no-repeat center / 100%;
    overflow: hidden;
    opacity: 0;
    z-index: 20;
    animation: allinclusive_hero_badge 500ms 2000ms ease-in-out forwards;
}
@keyframes allinclusive_hero_badge {
	0% {
        transform: scale(1.5) rotate(10deg);
		opacity: 0;
	}
	100% {
        transform: scale(1) rotate(10deg);
		opacity: 1;
	}
}
#allinclusive_hero_badge p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.5em;
}
#allinclusive_hero_title {
    position: relative;
    margin-bottom: 3em;
    transform: scale(0.8);
    opacity: 0;
    z-index: 21;
	animation: allinclusive_hero_title 300ms 1000ms ease-in-out forwards;
}
@keyframes allinclusive_hero_title {
	0% {
        transform: scale(0.8);
		opacity: 0;
	}
	100% {
        transform: scale(1);
		opacity: 1;
	}
}
#allinclusive_hero_title h3 {
    font-size: 1.25em;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.5em;
    text-align: center;
}
#allinclusive_hero_title h2 {
    margin-right: auto;
    margin-left: auto;
}
#allinclusive_hero_title_first {
    margin-bottom: 2em;
    width: 440px;
}
#allinclusive_hero_title h1 {
    margin: 0 auto 1.8em auto;
    width: 670px;
    width: 660px;
}
#allinclusive_hero_title_last {
    width: 460px;
}

.allinclusive_hero_title_path {
    fill: var(--black);
}
#allinclusive_hero_date {
    position: absolute;
    top: 100px;
    right: -40px;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    padding: 50px 1.5em 0.8em 1.5em;
	
    background: url('../images/allinclusive/circle_yellow.png') no-repeat center / 100%;
    opacity: 0;
    animation: allinclusive_hero_date 500ms 1500ms ease-in-out forwards;
}
@keyframes allinclusive_hero_date {
	0% {
        transform: translateX(-20px) rotate(-15deg);
		opacity: 0;
	}
	100% {
        transform: translateX(0) rotate(-15deg);
		opacity: 1;
	}
}
#allinclusive_hero_date p {
    position: relative;
    margin-left: 15px;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}
#allinclusive_hero_date #allinclusive_hero_date_start {
    padding-bottom: 22px;
}
#allinclusive_hero_date #allinclusive_hero_date_start::before {
    position: absolute;
    bottom: 2px;
    left: 42%;
    transform: translateX(-50%);
    content: '▼';
    font-size: 0.5em;
    line-height: 1em;
}
#allinclusive_hero_date p span {
    display: inline-block;
    vertical-align: bottom;
}
.allinclusive_hero_date_day {
    margin-left: 0.3em;
    padding: 1px 0 0 0;
    width: 23px;
    height: 23px;
    font-size: 0.4em;
    line-height: 18px;
    border: 1px solid var(--black);
    border-radius: 50%;
}
#allinclusive_hero_date h4 {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.05em;
    font-weight: 700;
}
/* #allinclusive_hero_date {
    transform: translateX(-20px) rotate(-5deg);
    width: max-content;
    margin: 0 auto;
    padding: 0.8em 1.5em;
    background: url(../images/allinclusive/obi_yellow.png) no-repeat center / 100%;
    opacity: 0;
    animation: allinclusive_hero_date 500ms 1500ms ease-in-out forwards;
}
@keyframes allinclusive_hero_date {
	0% {
        transform: translateX(-20px) rotate(-5deg);
		opacity: 0;
	}
	100% {
        transform: translateX(0) rotate(-5deg);
		opacity: 1;
	}
}
#allinclusive_hero_date p {
    float: left;
    position: relative;
    font-weight: 700;
}
#allinclusive_hero_date_start {
    padding-right: 100px;
}
#allinclusive_hero_date_start::before {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    content: '';
    width: 70px;
    height: 8px;
    background: url(../images/allinclusive/icon_allinclusive_hero_date_arrow.png) no-repeat center / 100%;
}
#allinclusive_hero_date p span {
    display: inline-block;
    vertical-align: middle;
}
.allinclusive_hero_date_label {
    transform: rotate(90deg);
    letter-spacing: 0.05em;
}
.allinclusive_hero_date_value {
    font-size: 2.5em;
}
.allinclusive_hero_date_day {
    font-size: 0.5em;
}
#allinclusive_hero_date p:nth-of-type(even) {
    float: right;
} */
#allinclusive_hero_copy {
    position: absolute;
    left: 10px;
    bottom: 5px;
    opacity: 0;
    animation: allinclusive_hero_copy 500ms 1000ms ease-in-out forwards;
}
@keyframes allinclusive_hero_copy {
	0% {
        left: 10px;
		opacity: 0;
	}
	100% {
        left: 0;
		opacity: 1;
	}
}
#allinclusive_hero_copy .swiper {
    overflow: visible;
}
#allinclusive_hero_copy .swiper-wrapper {
    overflow: visible;
    transition-timing-function: linear;
}
#allinclusive_hero_copy .swiper-slide {
    width: auto;
    flex-shrink: 0;
}
#allinclusive_hero_copy .swiper-slide p {
    padding: 0 20px;
    font-size: 3em;
}

.allinclusive_hero_decoration {
    position: absolute;
    transform: translate(0px, 30px);
    opacity: 0;
    z-index: 1;
}

#allinclusive_hero_decoration_moon {
    top: 100px;
    left: 110px;
    width: 40px;
}
#allinclusive_hero_decoration_dot_red {
    top: 300px;
    right: 0;
    width: 60px;
}
#allinclusive_hero_decoration_child_mother {
    top: 110px;
    left: 200px;
    width: 130px;
}
#allinclusive_hero_decoration_family_bed {
    top: 90px;
    right: 130px;
    width: 190px;
}
#allinclusive_hero_decoration_drawing {
    bottom: 30px;
    left: 30px;
    width: 220px;
}
#allinclusive_hero_decoration_mountain {
    left: -280px;
    bottom: 120px;
    width: 700px;
}
#allinclusive_hero_decoration_hotel {
    left: -230px;
    bottom: 210px;
    width: 600px;
}
#allinclusive_hero_decoration_family_reception {
    bottom: 80px;
    left: 70px;
    width: 250px;
}
#allinclusive_hero_decoration_child_mokuiku {
    bottom: 10px;
    left: 310px;
    width: 220px;
}
#allinclusive_hero_decoration_child_microscope {
    bottom: 100px;
    right: 50px;
    width: 450px;
}
#allinclusive_hero_decoration_paper_red {
    bottom: 50px;
    right: 270px;
    width: 290px;
}
#allinclusive_hero_decoration_paper_blue {
    bottom: 0;
    right: 0;
    width: 345px;
}
#allinclusive_hero_decoration_paper_yellow {
    bottom: 40px;
    right: 90px;
    width: 150px;
}
#allinclusive_hero_decoration_paper_pink {
    bottom: 70px;
    left: 470px;
    width: 220px;
}
#allinclusive_hero_decoration_family_eating {
    bottom: 20px;
    right: 520px;
    width: 340px;
}
#allinclusive_hero_decoration_3lines {
    bottom: 150px;
    right: 540px;
    width: 100px;
}
.allinclusive_kidsroom_decoration {
    position: absolute;
}
#allinclusive_kidsroom_decoration_1 {
    top: 0;
    left: 50px;
    width: 120px;
}
#allinclusive_kidsroom_decoration_2 {
    top: -90px;
    right: 60px;
    width: 120px;
}
#allinclusive_kidsroom_decoration_3 {
    top: 220px;
    left: -50px;
    width: 100px;
}
#allinclusive_kidsroom_decoration_4 {
    top: 220px;
    right: 100px;
    width: 110px;
}


/* Concept */

#allinclusive_concept .inner {
    max-width: 1440px;
}
#allinclusive_concept .heading {
    margin-bottom: 12em;
    margin-bottom: 8em;
}
#allinclusive_concept h3 {
    margin-bottom: 1em;
    font-size: 3.5em;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0.06em;
    text-align: center;
    transform: translateY(10px);
    opacity: 0;
    transition: all 500ms 500ms ease-in-out;
}
#allinclusive_concept.inview h3 {
    transform: translateY(0);
    opacity: 1;
    transition: all 500ms 500ms ease-in-out;
}
#allinclusive_concept h3 span:not(.adjust_comma) {
    display: block;
    margin-bottom: 0.5em;
    font-size: 0.4em;
}
#allinclusive_concept .summary {
    transform: translateY(10px);
    opacity: 0;
    transition: all 500ms 1000ms ease-in-out;
}
#allinclusive_concept.inview .summary {
    transform: translateY(0);
    opacity: 1;
    transition: all 500ms 1000ms ease-in-out;
}
.allinclusive_concept_decoration {
    position: absolute;
    z-index: 1;
}
#allinclusive_concept_decoration_goat {
    top: -100px;
    left: -50px;
    width: 220px;
}
#allinclusive_concept_decoration_egg {
    top: 200px;
    right: 50px;
    width: 185px;
}
#allinclusive_concept_pricing {
    position: relative;
    margin: 0 auto;
    width: max-content;
    transform: scale(1.2);
    opacity: 0;
    transition: all 500ms 1200ms ease-in-out;
}
.inview #allinclusive_concept_pricing {
    transform: scale(1);
    opacity: 1;
}
#allinclusive_concept_pricing_pane {
    position: relative;
    margin: 0 auto;
    padding: 3em 4em;
    width: 800px;
    background: #fff;
    border: 20px solid var(--pale_yellow);
    border-radius: 50px;
    z-index: 10;
}
#allinclusive_concept_pricing_pane dl {
    margin-bottom: 1.5em;
}
#_allinclusive_concept_pricing_pane .note {
	font-weight: 400;
}
.allinclusive_concept_pricing_decoration {
    position: absolute;
    z-index: 1;
}
#allinclusive_concept_pricing_decoration_family {
    bottom: -40px;
    right: -130px;
    width: 260px;
    z-index: 10;
}
#allinclusive_concept_pricing_decoration_pink {
    top: -50px;
    left: -65px;
    width: 175px;
    z-index: 11;
}
#allinclusive_concept_pricing_decoration_yellow {
    top: -50px;
    left: -125px;
    width: 150px;
    z-index: 10;
}
#allinclusive_concept_pricing_decoration_blue {
    top: 20px;
    left: -115px;
    width: 125px;
    z-index: 1;
}
#allinclusive_concept_pricing_pane h4 {
    margin-bottom: 0.5em;
    font-size: 2.1em;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2em;
    text-align: center;
}
#allinclusive_concept_pricing_pane h5 {
    margin-bottom: 3.5em;
    font-size: 1.1em;
    letter-spacing: 0.03em;
    line-height: 1.2em;
    text-align: center;
}
#allinclusive_concept_pricing_pane dt {
    float: left;
    clear: both;
}
#allinclusive_concept_pricing_pane dt h6 {
    font-size: 1.3em;
}
#allinclusive_concept_pricing_pane dt h6 span:not(.adjust_brackets) {
    font-size: 0.8em;
}
#allinclusive_concept_pricing_pane dt ul {
    margin-top: 0.5em;
}
#allinclusive_concept_pricing_pane dt li {
    float: left;
    font-size: 0.8em;
}
#allinclusive_concept_pricing_pane dd {
    margin-bottom: 1.5rem;
    padding-bottom: 1.3rem;
    padding-left: 28rem;
    font-size: 2.2em;
    color: #e3562b;
    border-bottom: 1px dashed #ccc;
}
#allinclusive_concept_pricing_pane dd:last-of-type {
    margin-bottom: 0;
}
#allinclusive_concept_pricing_pane dd .label {
    margin-left: 0.2em;
    font-size: 0.5em;
    color: var(--black);
}
#allinclusive_concept_pricing_coupon {
    position: relative;
    margin: 3em auto 0 auto;
    width: max-content;
    background: var(--yellow);
}
.allinclusive_concept_pricing_coupon_left {
    float: left;
    padding: 1em 2.5em 1.5em 2.3em;
}
.allinclusive_concept_pricing_coupon_num {
    float: left;
    font-size: 5em;
    line-height: 1em;
}
.allinclusive_concept_pricing_coupon_label {
    float: left;
    margin-top: 12px;
    margin-left: 0.2em;
    font-size: 2em;
    font-weight: 700;
}
.allinclusive_concept_pricing_coupon_label span {
    display: block;
    font-size: 0.45em;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.allinclusive_concept_pricing_coupon_right {
    position: relative;
    float: right;
    padding: 1.6em 1.5em 1.55em 1.5em;
    border-left: 2px dashed #fff;
    text-align: center;
}
.allinclusive_concept_pricing_coupon_limit {
    display: block;
    padding: 0.3em 0.5em;
    font-size: 1.1em;
    color: #fff;
    background: var(--black);
    border-radius: 200px;
}
.allinclusive_concept_pricing_coupon_right::before,
.allinclusive_concept_pricing_coupon_right::after {
    position: absolute;
    display: block;
    content: "";
    border-radius: 100%;
    background: #fff;
    left: -12px;
    width: 22px;
    height: 22px;
}
.allinclusive_concept_pricing_coupon_right::before {
    top: -11px;
}
.allinclusive_concept_pricing_coupon_right::after {
    bottom: -11px;
}

.mode_design .reserve_button {
    margin-top: 3em;
}
.mode_design #allinclusive_concept_pricing_pane dt h6 {
    font-size: 1.1em;
}
#allinclusive_concept_pricing_pane dt h6 span.pricing_limit_num {
    font-size: 2em;
}
#allinclusive_concept_pricing_pane dt h6 span.pricing_limit_label {
    font-size: 1.2em;
}
.mode_design #allinclusive_concept_pricing_pane dd {
    padding-left: 25rem;
    font-size: 4em;
}
.mode_design #allinclusive_concept_pricing_pane dd .label {
    font-size: 0.3em;
}
.mode_design #allinclusive_concept_pricing_pane dd.pricing_off {
    font-size: 3em;
}
.mode_design #allinclusive_concept_pricing_pane dd.pricing_off .label {
    font-size: 0.8em;
    color: #e3562b;
}
.pricing_off_max {
    display: block;
    margin-top: 0.5em;
    margin-left: -0.5em;
    font-size: 0.3em;
}

/* About */

#allinclusive_about {
    position: relative;
    margin-bottom: 0;
    padding: 2px 0;
    padding-top: 145px;
    padding-bottom: 153px;
    overflow: hidden;
}
#allinclusive_about .wrapper {
    position: relative;
    background: var(--pale_yellow);
    z-index: 1;
}
#allinclusive_about::before {
    position: absolute;
    top: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 145px;
    background: url(../images/allinclusive/allinclusive_about_before.png) no-repeat center / cover;
}
#allinclusive_about::after {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 153px;
    background: url(../images/allinclusive/allinclusive_about_after.png) no-repeat center / cover;
}
#allinclusive_about .heading,
#allinclusive_about_panes {
    position: relative;
    z-index: 10;
}
#allinclusive_about .inner {
    position: relative;
}
.allinclusive_about_pane {
    float: left;
    width: 48%;
}
.allinclusive_about_pane:nth-of-type(even) {
    float: right;
}
.allinclusive_about_pane:nth-of-type(2n + 1) {
    clear: both;
}
.allinclusive_about_pane:nth-last-of-type(n + 3) {
    margin-bottom: 3em;
}
.allinclusive_about_pane_image {
    position: relative;
    margin-left: 30px;
}
.allinclusive_about_pane_image p {
    border-radius: 20px;
    overflow: hidden;
}
.allinclusive_about_pane_text {
    position: relative;
    margin: -30px 30px 0 auto;
    padding: 1.3em 2.4em 2em 2.5em;
    background: #fff;
    border-radius: 0 20px 20px 20px;
    z-index: 1;
}
#allinclusive_about_learn .allinclusive_about_pane_text {
    padding-bottom: calc(2em + 22px);
}
.allinclusive_about_pane_text h4 {
    position: absolute;
    top: -45px;
    left: 0;
    padding: 0.5em 1.9rem 0.5em 1.95rem;
    width: max-content;
    color: #fff;
    background: var(--black);
    /* border-bottom: 2px dashed var(--black); */
    border-radius: 20px 20px 0 0;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.5em;
}
.allinclusive_about_pane_text ul {
    margin-top: 1.2em;
    padding-top: 1.2em;
    padding-left: 0.2em;
    border-top: 2px dashed var(--black);
    list-style-type: disc;
    list-style-position: inside;
}
.allinclusive_about_pane_text li {
    font-size: 0.9em;
    line-height: 1.8em;
}
.allinclusive_about_pane_text li span {
    font-size: 0.8em;
    letter-spacing: 0.03em;
}
.allinclusive_about_pane h5 {
    position: absolute;
    right: 30px;
    bottom: 40px;
    font-size: 3.8em;
    line-height: 1em;
    /* color: var(--yellow); */
    opacity: 0.35;
    opacity: 0.1;
}
.allinclusive_about_pane_icon {
    display: none;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 90px;
    height: 90px;
    opacity: 0.3;
}
#allinclusive_about_amenities {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 160px;
}
#allinclusive_about_amenities h5 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3em 0.4em 0.35em 0.5em;
    width: max-content;
    font-size: 0.9em;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #fff;
    background: var(--black);
    border-radius: 200px;
    opacity: 1;
}
#allinclusive_about_pricing {
    margin-top: 5em;
    font-size: 1.1em;
    line-height: 2em;
    text-align: center;
}
.allinclusive_about_pricing_num {
    font-size: 2em;
    color: #e3562b;
}
.allinclusive_about_pricing_yen {
    margin-right: 0.3em;
    color: #e3562b;
}
.allinclusive_about_decoration {
    position: absolute;
    z-index: 1;
}
#allinclusive_about_decoration_1 {
    top: 200px;
    left: -120px;
    width: 305px;
}
#allinclusive_about_decoration_2 {
    bottom: 270px;
    right: -40px;
    width: 330px;
}

/* Kidsroom */

#allinclusive_kidsroom {
    padding-top: 10em;
}
#allinclusive_kidsroom .heading {
    position: relative;
}
#allinclusive_kidsroom .heading h5 {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.15em;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--black);
    opacity: 0;
    transition: all 500ms 1500ms ease-in-out;
}
#allinclusive_kidsroom.inview .heading h5 {
    top: -30px;
    opacity: 1;
}
/* #allinclusive_kidsroom_panes {
    margin-bottom: 5em;
}
.allinclusive_kidsroom_pane {
    float: left;
    position: relative;
    width: 22.9375%;
}
.allinclusive_kidsroom_pane:not(:nth-of-type(4n)) {
    margin-right: 2.75%;
}
.allinclusive_kidsroom_pane_image {
    border-radius: 10px;
    overflow: hidden;
}
.allinclusive_kidsroom_pane h4 {
    position: absolute;
    top: 13px;
    left: 13px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 0.8em 0.5em;
    width: max-content;
    font-size: 1.1em;
    font-weight: 500;
    line-height: 1.5em;
    letter-spacing: 0.15em;
    color: #fff;
    background: var(--black);
    border-radius: 12px;
}
.allinclusive_kidsroom_pane h5 {
    position: absolute;
    top: -20px;
    right: -20px;
    transform: rotate(20deg);
    width: 80px;
    height: 80px;
    font-size: 1em;
    font-weight: 500;
    line-height: 80px;
    text-align: center;
    background: var(--yellow);
    border-radius: 50%;
    overflow: hidden;
} */
#allinclusive_kidsroom_cards {
    margin-bottom: 2em;
}
.allinclusive_kidsroom_card {
	position: relative;
	float: left;
	width: 22.9375%;
	cursor: pointer;
	transform: scale(0.92);
	transition: all 250ms ease-in-out;
	opacity: 0;
}
.inview .allinclusive_kidsroom_card {
	transform: scale(1);
	transition: all 500ms ease-in-out;
	opacity: 1;
}
.allinclusive_kidsroom_card:not(:nth-of-type(4n)) {
	margin-right: 2.75%;
}
.allinclusive_kidsroom_card .front,
.allinclusive_kidsroom_card .back {
	position: relative;
	border-radius: 30px;
    border: 2px solid var(--black);
	overflow: hidden;
}
.allinclusive_kidsroom_card .front::before,
.allinclusive_kidsroom_card .back::before {
	position: absolute;
	top: 15px;
	right: 23px;
	width: 55px;
	height: 55px;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
	z-index: 10;
}
.allinclusive_kidsroom_card .front::before {
    content: 'くわしく';
    color: #fff;
	background: var(--black);
}
.allinclusive_kidsroom_card .back::before {
    top: 17px;
    width: 50px;
    height: 50px;
    content: '';
    color: var(--black);
	background: #fff url(../images/allinclusive/icon_close.png) no-repeat center / 30%;
}
.allinclusive_kidsroom_card .front .card_text {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 2.5em);
}
.allinclusive_kidsroom_card .front .card_text h5 {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    right: 5px;
    padding: 12px 0 25px 0;
    font-size: 0.9em;
    line-height: 1.3em;
    text-align: center;
    width: 85px;
    height: 85px;
    background: url(../images/allinclusive/circle_yellow.png) no-repeat center / 100%;
    z-index: 1;
}
.allinclusive_kidsroom_card .front .card_text h5 span {
	display: block;
    font-size: 0.8em;
}
.allinclusive_kidsroom_card .front .card_text h4 {
    position: relative;
	padding: 0.3em 0 0.4em;
	width: 100%;
    color: #fff;
	background: var(--black);
    font-weight: 500;
	letter-spacing: 0.02em;
	text-align: center;
	border-radius: 50vh;
    border-radius: 200px;
	overflow: hidden;
    z-index: 10;
}
.allinclusive_kidsroom_card .back .card_image {
	filter: brightness(0.3);
}
.allinclusive_kidsroom_card .back .card_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 4em);
    color: #fff;
    font-size: 0.9em;
    line-height: 1.8em;
    letter-spacing: 0.02em;
}
.allinclusive_kidsroom_card .back .card_text h5 {
    position: relative;
    margin-bottom: 1em;
    font-size: 1.05em;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.allinclusive_kidsroom_card .back .card_text h5 .label {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4em 1.5em 0.5em 1.5em;
    font-size: 0.8em;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--black);
    background: #fff;
    border-radius: 200px;
}
.allinclusive_kidsroom_card .back .card_text h6 {
    margin-bottom: 0.5em;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Programs */

#allinclusive_programs .heading {
    position: relative;
    padding: 8em 0 10em 0;
    color: #fff;
}
#allinclusive_programs .inner {
    min-width: 0;
}
#allinclusive_programs .heading::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 100vw;
    height: 100%;
    background: url(../images/allinclusive/allinclusive_programs_bg.jpg) no-repeat center / cover;
    filter: brightness(0.7);
    z-index: -1;
}
#allinclusive_programs .heading,
#allinclusive_programs h3.title,
#allinclusive_programs .summary {
    text-align: left;
}
#allinclusive_programs .heading h3 {
    margin-bottom: 1em !important;
}
#allinclusive_programs .heading h5 {
    position: relative;
    transform: rotate(-10deg);
    margin-left: -10px;
    padding: 0.8em 0 0.8em 1.5em;
    margin-bottom: 0.3em;
    width: max-content;
    font-size: 1.2em;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.1em;
    opacity: 0;
    transition: all 500ms 1200ms ease-in-out;
}
#allinclusive_programs.inview .heading h5 {
    margin-left: 0;
    opacity: 1;
}
#allinclusive_programs .heading h5::before {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    content: '';
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #fff;
}
#allinclusive_programs .heading h5::after {
    position: absolute;
    bottom: 0;
    left: 0;
    transform: rotate(8deg);
    content: '';
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #fff;
}
#allinclusive_programs .heading h5 span {
    margin-left: -5px;
    font-size: 0.7em;
    letter-spacing: 0.05em;
}
#allinclusive_programs .heading h5 span.note {
    margin-left: 0;
    font-size: 0.75em;
}
#allinclusive_programs .heading h4 {
    position: relative;
    padding: 0.5em 1em 0.55em 1.1em;
    width: fit-content;
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--black);
    background: url(../images/allinclusive/obi_pale_yellow.png) no-repeat center / 100%;
}
/* #allinclusive_programs .heading h4::before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Chelsea Market", system-ui;
    content: '"';
    font-size: 1.3em;
    line-height: 1em;
}
#allinclusive_programs .heading h4::after {
    position: absolute;
    bottom: 0;
    right: 0;
    font-family: "Chelsea Market", system-ui;
    content: '"';
    font-size: 1.3em;
    line-height: 1em;
} */
#allinclusive_programs .heading h4 span {
    display: block;
}
#allinclusive_programs .heading h4 span:last-of-type {
    margin-left: -1em;
}
.allinclusive_programs_link {
    float: left;
}
.allinclusive_programs_link:not(:last-of-type) {
    margin-right: 1.5em;
}
#allinclusive_programs_link_calendar a span::before {
    background: url(../images/allinclusive/icon_calendar_white.png) no-repeat center / 80% !important;
}
#allinclusive_programs_link_calendar a:hover span::before {
    background: url(../images/allinclusive/icon_calendar.png) no-repeat center / 80% !important;
}
#allinclusive_programs .summary {
    margin-top: 25px;
}
#allinclusive_programs_details {
    min-width: 1000px;
    opacity: 0;
    transition: all 800ms ease-in-out;
}
#allinclusive_programs_details.inview {
    opacity: 1;
}
#allinclusive_programs_details {
    position: relative;
    margin-top: -9em;
    padding: 128px 0;
}
#allinclusive_programs_details_wrapper {
    position: relative;
    padding: 0 90px;
    background: var(--pale_yellow);
    z-index: 10;
}
#allinclusive_programs_details::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 140px;
    background: url(../images/allinclusive/allinclusive_programs_details_bg_top.png) no-repeat bottom center / 100%;
}
#allinclusive_programs_details::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 140px;
    background: url(../images/allinclusive/allinclusive_programs_details_bg_bottom.png) no-repeat top center / 100%;
}
#_allinclusive_programs_details_bg_left {
    top: 0;
    left: 0;
    width: 90px;
    height: 100%;
    background: url(../images/allinclusive/allinclusive_programs_details_bg_left.png) no-repeat top left / cover;
}
#allinclusive_programs_details h4 {
    margin: 0 auto 2em auto;
    padding: 1.5em 10em;
    width: max-content;
    font-size: 1.5em;
    font-weight: 700;
    background: url(../images/allinclusive/allinclusive_programs_details_title_bg.png) no-repeat center / 100%;
}
#allinclusive_programs_details_decoration {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 250px;
    z-index: 11;
}
.allinclusive_programs_block:not(:last-of-type) {
    margin-bottom: 4em;
}
#allinclusive_programs .content h5 {
    position: relative;
    margin-bottom: 1.5em;
    padding-left: 28px;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.2em;
}
#allinclusive_programs .content h5::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '';
    width: 20px;
    height: 20px;
    background: var(--black);
    border-radius: 5px;
}
.allinclusive_programs_feature_pane {
    float: left;
    padding: 1.5em 1em;
    width: 31.5%;
    background: #fff;
    border-radius: 10px;
}
.allinclusive_programs_feature_pane:nth-of-type(3n - 1) {
    margin: 0 2.75%;
}
.allinclusive_programs_feature_num {
    margin: 0 auto 0.8em auto;
    width: 50px;
    height: 50px;
    font-size: 1.6em;
    font-weight: 500;
    line-height: 47px;
    letter-spacing: 0;
    color: #fff;
    background: var(--green);
    text-align: center;
    border-radius: 50%;
}
.allinclusive_programs_feature_title {
    margin-bottom: 1em;
    font-size: 1.05em;
    font-weight: 500;
    line-height: 1em;
    color: var(--black);
    text-align: center;
}
.allinclusive_programs_feature_pane p {
    font-size: 0.9em;
    letter-spacing: 0.05em;
    line-height: 1.8em;
}
.allinclusive_programs_thema_pane {
	position: relative;
	float: left;
	width: 22%;
}
.allinclusive_programs_thema_pane:not(:nth-of-type(4n)) {
	margin-right: 4%;
}
.allinclusive_programs_thema_pane_icon {
    margin: 0 auto 0.8em auto;
    width: 75%;
}
.allinclusive_programs_thema_pane h6 {
    margin-bottom: 0.5em;
    font-size: 1.08em;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
}
.allinclusive_programs_thema_pane p {
    font-size: 0.9em;
    line-height: 1.8em;
    letter-spacing: 0.05em;
}
#allinclusive_programs_guide dl {
    padding: 1.5em 2em;
    background: #fff;
    border-radius: 20px;
}
#allinclusive_programs_guide dt {
    float: left;
    width: 7em;
}
#allinclusive_programs_guide dd {
    padding-left: 8em;
}
#allinclusive_programs_guide dd:not(:last-of-type) {
    margin-bottom: 0.8em;
    padding-bottom: 0.8em;
    border-bottom: 1px solid #ccc;
}
#allinclusive_programs_guide dd span {
    font-size: 0.85em;
	letter-spacing: 0.05em;
}
.allinclusive_programs_reserve_pane {
    float: left;
}
.allinclusive_programs_reserve_pane:not(:last-of-type) {
    margin-right: 2em;
}
.allinclusive_programs_reserve_pane h6 {
    display: inline-block;
    vertical-align: middle;
    padding: 0.3em 0.8em 0.35em 0.8em;
    margin-right: 0.8em;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.2em;
    color: #fff;
    background: var(--green);
    border-radius: 100px;
}
.allinclusive_programs_reserve_date {
    display: inline-block;
    vertical-align: middle;
    font-size: 2em;
    font-weight: 500;
    line-height: 1.2em;
}
.allinclusive_programs_reserve_date span {
    margin-left: 0.2em;
    font-size: 0.6em;
}
.allinclusive_programs_reserve_date span:first-of-type {
    margin-right: 0.2em;
}
#allinclusive_programs_reserve .note {
    margin-top: 0.8em;
}
#allinclusive_programs_reserve .note li {
    color: #a1a1a1 !important;
}

/* Between */

#allinclusive_between {
    overflow: hidden;
}
#allinclusive_between_images {
    margin-left: -50px;
    width: calc(100% + 100px);
}
#allinclusive_between_images_left {
    float: left;
    width: 50%;
}
#allinclusive_between_images_right {
    float: right;
    width: 50%;
}
#allinclusive_between_images_left .allinclusive_between_image {
    float: left;
}
#allinclusive_between_image_1 {
    margin-left: 15%;
    width: 45%;
}
#allinclusive_between_image_2 {
    margin-top: 15%;
    margin-left: 5%;
    width: 30%;
}
#allinclusive_between_image_3 {
    margin-left: -25%;
    margin-top: -15%;
    width: 70%;
}
#allinclusive_between_image_4 {
    margin-top: 0;
    width: 50%;
}
#allinclusive_between_image_5 {
    margin-top: 7%;
    margin-right: -3%;
    width: 740px;
}

/* Rooms */

.allinclusive_rooms_pane {
    float: left;
    width: 48%;
    width: 31%;
}
.allinclusive_rooms_pane:nth-of-type(3n - 1) {
    margin: 0 3.5%;
}
.allinclusive_rooms_pane:nth-of-type(3n + 1) {
    clear: both;
}
.allinclusive_rooms_pane:nth-last-of-type(n + 4) {
    margin-bottom: 2.3em;
}
.allinclusive_rooms_pane_image {
    position: relative;
    margin-bottom: 1em;
    border-radius: 10px;
    overflow: hidden;
}
.allinclusive_rooms_pane_image h6 {
    position: absolute;
    top: 13px;
    left: 10px;
    padding: 0.5em 1.5em 0.55em 2.5em;
    padding: 0.5em 1.5em 0.55em 1.3em;
    font-size: 0.8em;
    letter-spacing: 0.05em;
    color: #fff;
    background: var(--black);
    border-radius: 200px;
}
._allinclusive_rooms_pane_image h6::before {
    position: absolute;
    top: 50%;
    left: 0.8em;
    font-size: 1.3em;
    line-height: 1em;
    transform: translateY(-50%);
    content: '✓';
}
.allinclusive_rooms_pane_text h4 {
    margin-bottom: 0.2em;
    font-size: 1.3em;
    font-weight: 500;
    text-align: center;
}
.allinclusive_rooms_pane_text h5 {
    margin-bottom: 2.5em;
    padding-bottom: 1.8em;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    border-bottom: 2px dashed #ccc;
}
.allinclusive_rooms_pane_text h5 {
    margin-bottom: 1em;
    padding-bottom: 1em;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    border-bottom: 2px dashed #ccc;
}
.allinclusive_rooms_pane_text p {
    font-size: 0.9em;
    letter-spacing: 0.06em;
}
.allinclusive_rooms_decoration {
    position: absolute;
}
#allinclusive_rooms_decoration_1 {
    top: 50px;
    right: 50px;
    width: 130px;
}
#allinclusive_rooms_decoration_2 {
    bottom: -20px;
    left: -120px;
    width: 300px;
}


/* Stying */

#allinclusive_staying {
    position: relative;
    margin-bottom: 0;
    padding-top: 145px;
    padding-bottom: 153px;
    overflow: hidden;
}
#allinclusive_staying .wrapper {
    padding-bottom: 100px;
    background: var(--pale_yellow);
}
#allinclusive_staying::before {
    position: absolute;
    top: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 145px;
    background: url(../images/allinclusive/allinclusive_staying_before.png) no-repeat center / cover;
}
#allinclusive_staying::after {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 153px;
    background: url(../images/allinclusive/allinclusive_staying_after.png) no-repeat center / cover;
}
#allinclusive_staying_slides {
    position: relative;
    width: 70%;
    margin: 0 auto;
    overflow: visible;
    opacity: 0;
    transition: all 500ms 1300ms ease-in-out;
}
.inview #allinclusive_staying_slides {
    opacity: 1;
}
#allinclusive_staying_slides .swiper-wrapper {
    align-items: center;
}
.allinclusive_staying_slide {
    max-width: 1000px;
    transform: scale(0.8);
    transition: filter 600ms ease-in-out;
    filter: brightness(0.5);
}
.allinclusive_staying_slide.swiper-slide-active {
    transform: scale(1);
    filter: brightness(1);
}
.allinclusive_staying_slide_image {
    position: relative;
}
.allinclusive_staying_slide_photo {
    aspect-ratio: 24 / 13;
    background: #ccc;
    /* border: 2px solid var(--black); */
    border-radius: 20px;
    overflow: hidden;
}
.allinclusive_staying_slide_title,
.allinclusive_staying_decoration,
.allinclusive_staying_slide_text {
    opacity: 0;
}
.allinclusive_staying_slide.swiper-slide-active .allinclusive_staying_slide_title,
.allinclusive_staying_slide.swiper-slide-active .allinclusive_staying_decoration,
.allinclusive_staying_slide.swiper-slide-active .allinclusive_staying_slide_text {
    opacity: 1;
}
.allinclusive_staying_slide_title {
    position: absolute;
    top: -30px;
    left: -30px;
    transition: opacity 600ms ease-in-out;
}
.allinclusive_staying_slide_title_number {
    margin-bottom: 0.2em;
    font-size: 6em;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 0.03em;
    z-index: 10;
}
.allinclusive_staying_slide_title h4 {
    margin-bottom: 0.5em;
    padding: 0.3em 1rem 0.35em 1.2rem;
    width: max-content;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.2em;
    letter-spacing: 0.03em;
    background: #fff;
}
.allinclusive_staying_slide_title h5 {
    padding: 0.3em 1rem 0.35em 1.2rem;
    width: max-content;
    font-size: 1.05em;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: var(--black);
}
.allinclusive_staying_decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    z-index: 10;
    transition: opacity 600ms ease-in-out;
}
.allinclusive_staying_slide_text {
    margin-top: 40px;
    padding: 0 20px;
    transition: opacity 600ms ease-in-out;
}
.allinclusive_staying_slide_text h4 {
    margin: 0 auto 1em auto;
    padding: 0.3em 0.8em 0.45em 0.8em;
    width: max-content;
    font-size: 1.6em;
    font-weight: 700;
    background: var(--black);
    color: #fff;
    border-radius: 10px;
}
.allinclusive_staying_slide_text h5 {
    margin-bottom: 1em;
    font-size: 1.25em;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}
.allinclusive_staying_slide_text p {
    font-size: 1.05em;
    line-height: 1.8em;
}
.allinclusive_staying_controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 0 auto;
}
.allinclusive_staying_controls .swiper-button-prev,
.allinclusive_staying_controls .swiper-button-next {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    margin-top: 0;
    background: #fff;
    border: 2px solid var(--black);
    border-radius: 50%;
    z-index: 20;
    cursor: pointer;
    transition: all 0.3s ease;
}
.allinclusive_staying_controls .swiper-button-prev:hover,
.allinclusive_staying_controls .swiper-button-next:hover {
    background: var(--yellow);
}
.allinclusive_staying_controls .swiper-button-prev::after,
.allinclusive_staying_controls .swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}
.allinclusive_staying_controls .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 2.5em;
}
.allinclusive_staying_controls .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #ccc;
    opacity: 1;
    margin: 0 8px;
    transition: all 0.3s ease;
}
.allinclusive_staying_controls .swiper-pagination-bullet-active {
    background: var(--black);
    width: 40px;
    border-radius: 7px;
}

/* Spots */

#allinclusive_spots {
    position: relative;
    padding: 2px 0;
    margin-top: -145px;
    padding-top: 145px;
    padding-bottom: 153px;
}
#allinclusive_spots_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1000px;
    z-index: 1;
}
#allinclusive_spots .wrapper {
    position: relative;
    background: #f9ed90;
}
#allinclusive_spots .inner {
    position: relative;
    z-index: 10;
}
#allinclusive_spots::before {
    position: absolute;
    top: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 145px;
    background: url(../images/allinclusive/allinclusive_spots_before.png) no-repeat center / cover;
}
#allinclusive_spots::after {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 153px;
    background: url(../images/allinclusive/allinclusive_spots_after.png) no-repeat center / cover;
}
.allinclusive_spots_pane {
    float: left;
    position: relative;
    width: 48%;
}
.allinclusive_spots_pane:nth-of-type(even) {
    float: right;
    margin-top: 4em;
}
.allinclusive_spots_pane:nth-of-type(2n + 1) {
    clear: both;
}
.allinclusive_spots_pane_text {
    position: relative;
    padding: 59px 0;
    margin-top: -100px;
    width: 80%;
}
.allinclusive_spots_pane_text_wrapper {
    padding: 0 2.5em;
    background: #fff;
}
.allinclusive_spots_pane_text::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 60px;
    background: url(../images/allinclusive/allinclusive_spots_pane_text_bg_top.png) no-repeat bottom center / 100%;
}
.allinclusive_spots_pane_text::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 60px;
    background: url(../images/allinclusive/allinclusive_spots_pane_text_bg_bottom.png) no-repeat top center / 100%;
}
.allinclusive_spots_pane_image {
    width: 100%;
	mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url('../images/allinclusive/allinclusive_spots_pane_image.svg');
    -webkit-mask-image: url('../images/allinclusive/allinclusive_spots_pane_image.svg');
    z-index: -1;
}
.allinclusive_spots_pane_text h4 {
    margin-bottom: 1em;
    line-height: 1.3em;
}
.allinclusive_spots_pane_text h4 span {
    display: block;
}
.allinclusive_spots_pane_text h4 .title_ja {
    margin-bottom: 0.5em;
    font-size: 1.3em;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.allinclusive_spots_pane_text h4 .title_en {
    font-size: 0.75em;
    letter-spacing: 0.05em;
}
.allinclusive_spots_pane_text ul {
    margin-bottom: 1em;
    padding-bottom: 0.6em;
    border-bottom: 1px solid #ccc;
}
.allinclusive_spots_pane_text li {
    margin-bottom: 0.8em;
    font-size: 0.85em;
    line-height: 1.2em;
}
.allinclusive_spots_pane_text p {
    font-size: 0.9em;
    letter-spacing: 0.05em;
    line-height: 1.8em;
}
.allinclusive_spots_car {
    position: relative;
    margin-right: 1em;
    padding-left: 30px;
}
.allinclusive_spots_car::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '';
    width: 22px;
    height: 22px;
    background: url(../images/allinclusive/icon_car.png) no-repeat center / 100%;
}
.allinclusive_spots_map a {
    position: relative;
    padding-left: 30px;
}
.allinclusive_spots_map a::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/allinclusive/icon_pin.png) no-repeat center / 80%;
}

/* Hotel */

#allinclusive_hotel {
    position: relative;
    padding: 8em 0;
    color: #fff;
}
#allinclusive_hotel::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/allinclusive/allinclusive_hotel_bg.jpg) no-repeat center / cover;
    filter: brightness(0.4);
    z-index: -1;
}
#allinclusive_hotel .heading {
    text-align: left;
}
#allinclusive_hotel .heading .summary {
    text-align: left;
}
#allinclusive_hotel h3 {
    font-size: 1.85em;
    font-weight: 500;
    line-height: 1.5em;
}
#_allinclusive_hotel_links {
    margin: 0 auto;
    width: max-content;
}
.allinclusive_hotel_link {
    float: left;
}
.allinclusive_hotel_link:not(:last-of-type) {
    margin-right: 1.5em;
}
#allinclusive_hotel_map {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    width: 340px;
    opacity: 0;
    transition: all 500ms 1500ms ease-in-out;
}
.inview #allinclusive_hotel_map {
    opacity: 1;
}
.allinclusive_hotel_link {
    transition: all 500ms 1000ms ease-in-out;
}

/* Faq */

#allinclusive_faq .heading {
    float: left;
    position: relative;
    width: 30%;
}
#allinclusive_faq_decoration {
    margin-left: -350px;
    width: 750px;
    opacity: 0;
    transition: all 500ms 800ms ease-in-out;
}
.inview #allinclusive_faq_decoration {
    opacity: 1;
}
#allinclusive_faq .content {
    float: right;
    width: 65%;
}
.allinclusive_faq_pane {
	position: relative;
	padding: 1em 3em;
	border-radius: 10px;
	background: var(--pale_yellow);
	overflow: hidden;
	transform: scale(0.86);
	opacity: 0;
    transition: all 500ms ease-in-out;
}
.allinclusive_faq_pane.reveal {
	transform: scale(1);
	opacity: 1;
}
.allinclusive_faq_pane:not(:last-of-type) {
	margin-bottom: 1.5em;
}
.allinclusive_faq_pane h4 {
	position: relative;
	margin-bottom: 0;
	font-size: 1.15em;
	font-weight: 500;
	line-height: 1.47em;
	z-index: 10;
}
.allinclusive_faq_pane_q {
	position: relative;
	padding: 2rem 0;
	padding: 1.8rem 0 1.5rem 0;
	padding-left: 45px;
	width: calc(100% - 90px);
	cursor: pointer;
}
.allinclusive_faq_pane_q::before {
	position: absolute;
	left: 0;
	top: 26px;
	content: 'Q.';
	font-weight: 500;
	font-size: 1.6em;
	font-family: 'Inter', sans-serif;
}
.allinclusive_faq_pane_a {
	display: none;
	position: relative;
	margin-top: 1em;
	padding: 2em 0 1em 0;
	padding-left: 55px;
	border-top: solid 1px #ccc;
	font-size: 1.15em;
	z-index: 10;
}
.allinclusive_faq_pane_a::before {
	position: absolute;
	left: 0;
	top: 32px;
	content: 'A.';
	font-weight: 500;
	font-size: 1.6em;
	font-family: 'Inter', sans-serif;
}
.allinclusive_faq_pane_a .note {
	line-height: 1.6em;
}
.allinclusive_faq_pane_a p,
.allinclusive_faq_pane_a ul {
	margin-bottom: 1em;
}
.allinclusive_faq_pane_a ul {
	padding-left: 1.5em;
	font-size: 0.85em;
}
.allinclusive_faq_pane_a li {
	list-style-type: disc;
}
.allinclusive_faq_pane_switch {
    position: absolute;
    right: 45px;
    top: 36px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.allinclusive_faq_pane_switch_bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 3px;
    background: var(--black);
    transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}
.allinclusive_faq_pane_switch_bar:first-child {
    transform: translate(-50%, -50%) rotate(90deg);
}
.allinclusive_faq_pane_switch_bar:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
}
.allinclusive_faq_pane.active .allinclusive_faq_pane_switch_bar:first-child {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0) scale(0.8);
}
.allinclusive_faq_pane_a {
    display: none;
}
.allinclusive_faq_pane.active .allinclusive_faq_pane_a {
    display: block !important;
    animation: a_show 300ms ease-in-out 1 forwards;
}
@keyframes a_show {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reserve */

#allinclusive_reserve {
    padding: 10em 0;
    margin-bottom: 0;
}
#allinclusive_reserve h3 {
    position: relative;
    font-size: 1.85em;
    font-weight: 500;
    line-height: 1.5em;
    text-align: center;
    z-index: 10;
    opacity: 0;
    transition: all 500ms ease-in-out;
}
#allinclusive_reserve.inview h3 {
    opacity: 1;
}
#allinclusive_reserve .reserve_button {
    position: relative;
    z-index: 10;
}
#allinclusive_reserve_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 900px;
    z-index: 1;
}
.allinclusive_reserve_decoration {
    position: absolute;
    z-index: 10;
}
#allinclusive_reserve_decoration_1 {
    top: -260px;
    left: -40px;
    width: 260px;
}
#allinclusive_reserve_decoration_2 {
    top: -70px;
    left: 160px;
    width: 100px;
}
#allinclusive_reserve_decoration_3 {
    top: -200px;
    right: 100px;
    width: 290px;
}
#allinclusive_reserve_decoration_4 {
    top: 80px;
    right: 0px;
    width: 140px;
}
#allinclusive_reserve_decoration_5 {
    bottom: -100px;
    left: -40px;
    width: 350px;
}
#allinclusive_reserve_decoration_6 {
    bottom: -140px;
    left: 320px;
    width: 120px;
}
#allinclusive_reserve_decoration_7 {
    bottom: -60px;
    right: 70px;
    width: 150px;
}
#allinclusive_reserve_decoration_8 {
    bottom: -150px;
    right: 130px;
    width: 210px;
}

@media screen and (min-width:600px) and (max-width:1250px) {
    
    #allinclusive_hero_decoration_moon {
        left: 60px;
    }
    #allinclusive_hero_decoration_child_mother {
        top: 110px;
        left: 140px;
    }
    #allinclusive_hero_decoration_family_bed {
        right: 80px;
    }
    #allinclusive_hero_decoration_child_mokuiku {
        bottom: 10px;
        left: 290px;
        width: 220px;
    }
    #allinclusive_hero_decoration_child_microscope {
        bottom: 100px;
        right: -40px;
        width: 450px;
    }
    #allinclusive_hero_decoration_paper_red {
        bottom: 50px;
        right: 130px;
        width: 290px;
    }
    #allinclusive_hero_decoration_paper_blue {
        bottom: 0;
        right: -80px;
        width: 345px;
    }
    #allinclusive_hero_decoration_paper_yellow {
        bottom: 40px;
        right: 90px;
        width: 150px;
    }
    #allinclusive_hero_decoration_paper_pink {
        bottom: 70px;
        left: 440px;
        width: 220px;
    }
    #allinclusive_hero_decoration_family_eating {
        bottom: 20px;
        right: 280px;
        width: 310px;
    }
    
}
@media screen and (min-width:480px) and (max-width:599px) {
    
    .page_allinclusive #neck {
        margin-bottom: 0;
    }
    .page_allinclusive .section {
        margin: 0 auto 5em auto;
    }
    h3.title {
        font-size: 1.8em !important;
        letter-spacing: 0.08em;
    }
    ._summary {
        text-align: left;
    }
    .page_allinclusive .summary p,
    .page_allinclusive p.summary {
        font-size: 1.05em !important;
        letter-spacing: 0.05em !important;
        line-height: 1.75em !important;
    }
    ._summary p br,
    p._summary br {
        display: none;
    }
    .heading {
        margin-bottom: 3em;
    }
    p.note,
    .note li {
        font-size: 0.85em !important;
        line-height: 1.5em;
    }
    .reserve_button {
        margin: 3em auto 0 auto;
    }
    .allinclusive_more a {
        padding-bottom: 0.5em;
    }
    .allinclusive_more.above {
        margin-top: 1em;
    }
    
    /* Menu */
	
	#allinclusive_menu_switch {
		display: block;
	}
	#allinclusive_menu {
		display: none;
        position: fixed;
        top: 0;
        left: 0;
        padding: 150px 100px;
        padding: 80px 100px;
        width: 100%;
        height: 100dvh;
        background: #fff;
	}
    #allinclusive_menu {
        text-align: center;
    }
    #allinclusive_menu ul {
        font-size: 0.9em;
        margin-bottom: 4em;
    }
	#allinclusive_menu ul li {
		margin-bottom: 25px;
		font-size: 1.2em;
	}
	#allinclusive_menu ul li a {
		padding-right: 0;;
	}
	#allinclusive_menu ul li a::before {
		display: none;
	}
	#allinclusive_menu_switch ul {
		font-size: 0.9em;
		margin-bottom: 4em;
	}
	#allinclusive_menu_switch {
		text-align: center;
	}
	#allinclusive_menu_switch ul li {
		margin-bottom: 25px;
		font-size: 1.2em;
	}
	#allinclusive_menu_switch ul li a {
		padding-right: 0;;
	}
	#allinclusive_menu_switch ul li a::before {
		display: none;
	}
	#_header_reserve_button a {
		border-right: 2px solid #000;
		border-radius: 5px;
	}
	#header_reserve_button {
		margin-right: 0;
	}
	#header_reserve_button_mobile a {
		position: absolute;
		top: 10px;
		font-size: 0.8em;
		right: 80px;
		padding: 8px 20px;
	}
    #allinclusive_menu_title {
        position: relative;
        margin-bottom: 3em;
    }
    #allinclusive_menu_title_badge {
        position: absolute;
        top: -5px;
        right: -45px;
        width: 110px;
        height: 110px;
        transform: rotate(10deg);
        width: 90px;
        height: 90px;
        background: url(../images/allinclusive/circle_yellow.png) no-repeat center / 100%;
        z-index: -1;
        overflow: hidden;
    }
    #allinclusive_menu_title_badge p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: max-content;
        font-size: 1em;
        font-weight: 700;
        line-height: 1.5em;
    }
    
    /* Hero */
    
    #allinclusive_hero {
        margin-bottom: 8em;
        max-height: 1010px;
        min-height: 0;
    }
    #allinclusive_hero_content {
        top: 150px;
    }
    #allinclusive_hero_title {
        margin-bottom: 2em;
    }
    #allinclusive_hero_title_first {
        margin-bottom: 0.8em;
    }
    #allinclusive_hero_title h2 {
        margin: 0 auto 1em auto;
        width: 400px;
    }
    #allinclusive_hero_title h1 {
        width: 530px;
    }
    #allinclusive_hero_badge {
        top: 120px;
        right: -35px;
        width: 110px;
        height: 110px;
    }
    #allinclusive_hero_badge p {
        font-size: 1.1em;
    }
    #allinclusive_hero_badge span {
        font-size: 1.05em;
        line-height: 1.4em;
    }
    #_allinclusive_hero_date {
        padding: 0.5em 1em;
    }
    #allinclusive_hero_date {
        top: 110px;
        right: -45px;
        padding-top: 45px;
        font-size: 15px !important;
    }
    /* #allinclusive_hero_date_start {
        padding-right: 60px;
    }
    #allinclusive_hero_date_start::before {
        right: 15px;
        width: 40px;
        height: 10px;
    }
    .allinclusive_hero_date_label {
        font-size: 1em;
    }
    .allinclusive_hero_date_value {
        font-size: 2.2em;
    } */
     #allinclusive_hero_date h4 {
        top: 10px;
     }
    #allinclusive_hero_date p {
        line-height: 1em;
    }
    #allinclusive_hero_copy .swiper-slide p {
        font-size: 2.8em;
    }
    #allinclusive_hero_decoration_moon {
        top: 180px;
        left: 10px;
        width: 40px;
    }
    #allinclusive_hero_decoration_dot_red {
        top: 390px;
        right: 0;
        width: 50px;
    }
    #allinclusive_hero_decoration_child_mother {
        top: 110px;
        left: auto;
        right: 0;
        width: 110px;
    }
    #allinclusive_hero_decoration_family_bed {
        top: 15px;
        right: 180px;
        width: 170px;
    }
    #allinclusive_hero_decoration_drawing {
        bottom: 30px;
        left: -30px;
        width: 170px;
    }
    #allinclusive_hero_decoration_mountain {
        left: -360px;
        bottom: 40px;
        width: 650px;
    }
    #allinclusive_hero_decoration_hotel {
        left: -290px;
        bottom: 130px;
        width: 510px;
    }
    #allinclusive_hero_decoration_family_reception {
        bottom: 80px;
        left: -20px;
        width: 170px;
    }
    #allinclusive_hero_decoration_child_mokuiku {
        bottom: 30px;
        left: 160px;
        width: 170px;
    }
    #allinclusive_hero_decoration_child_microscope {
        bottom: 20px;
        right: -80px;
        width: 350px;
    }
    #allinclusive_hero_decoration_paper_red {
        bottom: 60px;
        right: 100px;
        width: 190px;
    }
    #allinclusive_hero_decoration_paper_blue {
        bottom: -10px;
        right: -60px;
        width: 220px;
    }
    #allinclusive_hero_decoration_paper_yellow {
        bottom: 20px;
        right: 0px;
        width: 110px;
    }
    #allinclusive_hero_decoration_paper_pink {
        bottom: 400px;
        left: -60px;
        width: 160px;
        z-index: -1;
    }
    #allinclusive_hero_decoration_family_eating {
        bottom: 240px;
        right: 120px;
        width: 210px;
        z-index: -1;
    }
    #allinclusive_hero_decoration_3lines {
        bottom: 300px;
        right: 80px;
        width: 70px;
    }
    
    /* Concept */
    
    #allinclusive_concept .heading {
        margin-bottom: 7em;
    }
    #allinclusive_concept h3 {
        font-size: 2em;
    }
    #allinclusive_concept h3 span {
        font-size: 0.5em;
    }
    #allinclusive_concept_decoration_goat {
        top: -110px;
        left: -40px;
        width: 170px;
    }
    #allinclusive_concept_decoration_egg {
        top: 250px;
        right: -30px;
        width: 160px;
    }
    #allinclusive_concept_pricing {
        width: 100%;
    }
    #allinclusive_concept_pricing_pane {
        padding: 4em 2em;
        padding: 3em 2em 4em 2em;
        width: 100%;
    }
    #allinclusive_concept_pricing_pane h5 {
        margin-bottom: 2.5em;
		line-height: 1.6em;
    }
    #allinclusive_concept_pricing_decoration_pink {
        top: -45px;
        left: 15px;
        width: 130px;
    }
    #allinclusive_concept_pricing_decoration_yellow {
        top: -50px;
        left: -45px;
        width: 120px;
    }
    #allinclusive_concept_pricing_decoration_blue {
        top: 0px;
        left: -75px;
        width: 90px;
    }
    #allinclusive_concept_pricing_decoration_family {
        bottom: -70px;
        right: -50px;
        width: 230px;
    }
    #allinclusive_concept_pricing_pane dt {
        float: none;
        clear: none;
        margin-bottom: 1em;
    }
    .mode_design #allinclusive_concept_pricing_pane dt {
        margin-bottom: 1.5em;
    }
    #allinclusive_concept_pricing_pane dt h6 {
        letter-spacing: 0.05em;
        text-align: center;
    }
    #allinclusive_concept_pricing_pane dt h6 br {
        display: none;
    }
    .mode_design #allinclusive_concept_pricing_pane dd,
    #allinclusive_concept_pricing_pane dd {
        padding-left: 0;
        text-align: center;
    }
    .allinclusive_concept_pricing_coupon_left {
        float: none;
    }
    .allinclusive_concept_pricing_coupon_label {
        font-size: 2.4em;
    }
    .allinclusive_concept_pricing_coupon_right::before,
    .allinclusive_concept_pricing_coupon_right::after {
        right: -11px;
        width: 22px;
        height: 22px;
    }
    .allinclusive_concept_pricing_coupon_right::after {
        top: -11px;
        left: -11px;
    }
    .allinclusive_concept_pricing_coupon_right {
        float: none;
        padding: 1.2em 1.5em 1.2em 1.5em;
        border-left: none;
        border-top: 2px dashed #fff;
    }
    .allinclusive_concept_pricing_coupon_limit {
        margin-bottom: 0.3em;
    }
    #allinclusive_concept_pricing_pane dd.pricing_off {
        font-size: 3.5em;
    }
    .pricing_off_max {
        margin-left: -0.2em;
        font-size: 0.35em;
    }
    
    /* About */
    
    /* #allinclusive_about {
        padding-top: 6em;
        padding-bottom: 5em;
    } */
    #allinclusive_about .heading h3 {
        font-size: 1.71em !important;
        letter-spacing: 0;
    }
    .allinclusive_about_pane {
        float: none;
        width: 100%;
    }
    .allinclusive_about_pane:nth-of-type(3n - 1) {
        margin: 0;
    }
    .allinclusive_about_pane:nth-of-type(3n + 1) {
        clear: none;
    }
    .allinclusive_about_pane:nth-last-of-type(n + 4) {
        margin-bottom: 0;
    }
    .allinclusive_about_pane:not(:last-of-type) {
        margin-bottom: 2em;
    }
    .allinclusive_about_pane_text {
        padding: 2.2em 1.5em 1.6em 1.5em;
    }
    #allinclusive_about_learn .allinclusive_about_pane_text {
        padding-bottom: 1.6em;
    }
    .allinclusive_about_pane_text p {
        line-height: 1.7em;
    }
    #allinclusive_about_decoration_1 {
        top: 300px;
        left: -50px;
        width: 200px;
    }
    #allinclusive_about_decoration_2 {
        bottom: 580px;
        right: -30px;
        width: 220px;
    }
    
    /* Kidsroom */
    
    #allinclusive_kidsroom_panes {
        margin-bottom: 3em;
    }
    .allinclusive_kidsroom_pane {
        width: 48%;
    }
    .allinclusive_kidsroom_pane:not(:nth-of-type(4n)) {
        margin-right: 0;
    }
    .allinclusive_kidsroom_pane:nth-of-type(even) {
        float: right;
    }
    .allinclusive_kidsroom_pane:nth-last-of-type(n + 3) {
        margin-bottom: 1.5em;
    }
    .allinclusive_kidsroom_pane h4 {
        top: 15px;
        left: 15px;
        font-size: 1em;
        letter-spacing: 0.12em;
    }
    .allinclusive_kidsroom_pane h5 {
        top: -15px;
        right: -10px;
        padding: 12px;
        font-size: 1em;
        line-height: 1.3em;
    }
    #allinclusive_kidsroom.inview .heading h5 {
        top: -40px;
    }
    .allinclusive_fee_list {
        margin-left: -40px;
        padding: 2em 40px;
        width: calc(100% + 80px);
        border-radius: 0;
        transform: translateX(-10px);
        transition: all 800ms 2600ms ease-in-out;
    }
    .inview .allinclusive_fee_list {
        opacity: 1;
        transform: translateX(0);
    }
    .allinclusive_fee_list .heading {
        float: none;
        margin-bottom: 1.5em;
        width: 100%;
        text-align: center;
    }
    .allinclusive_fee_list .heading .title_en {
        margin-bottom: 0.3em;
    }
    .allinclusive_fee_list .content {
        float: none;
        width: 100%;
    }
    .allinclusive_fee_list .content li {
        padding: 1em 0.8em;
    }
    .allinclusive_fee_list_icon {
        margin-bottom: 0.35em;
        width: 55px;
    }
    .allinclusive_fee_list_title {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 0.85em;
        letter-spacing: 0.05em;
        line-height: 1.4em;
    }
    .allinclusive_fee_list_2nd .allinclusive_fee_list_title {
        padding: 0;
    }
    .allinclusive_fee_list_value {
        font-size: 1.2em;
    }
    .allinclusive_kidsroom_decoration {
        z-index: -1;
    }
    #allinclusive_kidsroom_decoration_1 {
        top: -100px;
        left: 10px;
        width: 120px;
    }
    #allinclusive_kidsroom_decoration_2 {
        top: -90px;
        right: 0px;
        width: 120px;
    }
    #allinclusive_kidsroom_decoration_3 {
        top: 370px;
        left: -10px;
        width: 100px;
    }
    #allinclusive_kidsroom_decoration_4 {
        top: 300px;
        right: -20px;
        width: 110px;
    }
    .allinclusive_kidsroom_card {
        width: 48%;
    }
    .allinclusive_kidsroom_card:not(:nth-of-type(4n)) {
        margin-right: 0;
    }
    .allinclusive_kidsroom_card:nth-of-type(even) {
        float: right;
    }
    .allinclusive_kidsroom_card:nth-of-type(2n + 1) {
        clear: both;
    }
    .allinclusive_kidsroom_card:nth-last-of-type(n + 3) {
        margin-bottom: 1.2em;
    }
    .allinclusive_kidsroom_card .front .card_text {
        width: auto;
    }
    .allinclusive_kidsroom_card .front .card_text h4 {
        padding: 0.3em 0.8em 0.4em 0.8em;
        width: max-content;
        font-size: 0.85em;
        letter-spacing: 0;
    }
    .allinclusive_kidsroom_card .front .card_text h5 {
        top: -66px;
        width: 100px;
        height: 100px;
    }
    .allinclusive_kidsroom_card .front::before,
    .allinclusive_kidsroom_card .back::before {
		top: 12px;
		right: 15px;
        width: 68px;
        height: 68px;
        line-height: 68px;
		letter-spacing: 0;
    }
    .allinclusive_kidsroom_card .back .card_text {
        width: calc(100% - 2em);
    }
    
    /* Programs */
    
    #allinclusive_programs .heading::before {
        width: 105vw;
        filter: brightness(0.6);
    }
    #allinclusive_programs .heading h4 {
        font-size: 1.3em;
    }
    #allinclusive_programs_details {
        min-width: 0;
    }
    #allinclusive_programs .heading {
        padding: 4em 0 6em 0;
    }
    #allinclusive_programs_details {
        margin-top: -7em;
        padding: 57px 0;
    }
    #allinclusive_programs_details::before,
    #allinclusive_programs_details::after {
        height: 60px;
    }
    #allinclusive_programs_details_wrapper {
        padding: 0 2em 6em 2em;
    }
    #allinclusive_programs_details h4 {
        padding: 1em;
        width: 100%;
        text-align: center;
    }
    .allinclusive_programs_thema_pane {
        width: 45%;
    }
    .allinclusive_programs_thema_pane:not(:nth-of-type(4n)) {
        margin-right: 0;
    }
    .allinclusive_programs_thema_pane:nth-of-type(even) {
        float: right;
    }
    .allinclusive_programs_thema_pane:nth-of-type(2n + 1) {
        clear: both;
    }
    .allinclusive_programs_thema_pane:nth-last-of-type(n + 3) {
        margin-bottom: 1.8em;
    }
    .allinclusive_programs_thema_pane h6 {
        margin-bottom: 0.3em;
    }
    .allinclusive_programs_thema_pane p {
        line-height: 1.75em;
        letter-spacing: 0.03em;
    }
    #allinclusive_programs_guide dl {
        padding: 1.5em;
    }
    #allinclusive_programs_guide dt {
        float: none;
        width: 100%;
        font-weight: 700;
    }
    #allinclusive_programs_guide dd {
        padding-left: 0;
    }
    
    /* Between */
    
    #allinclusive_between_images_left {
        float: none;
        margin-bottom: 1em;
        width: 100%;
    }
    #allinclusive_between_image_1 {
        margin-left: 10%;
        width: 45%;
    }
    #allinclusive_between_image_3 {
        margin-left: -15%;
        margin-top: -10%;
        width: 65%;
    }
    #allinclusive_between_image_4 {
        margin-top: 0;
        width: 45%;
    }
    #allinclusive_between_images_right {
        float: none;
        width: 100%;
    }
    #allinclusive_between_image_5 {
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
        width: 80%;
    }
    
    /* Rooms */
    
    #allinclusive_rooms .heading h3.title {
        line-height: 1.3em;
    }
    .allinclusive_rooms_pane {
        float: none;
        margin-bottom: 3em !important;
        width: 100%;
    }
    .allinclusive_rooms_pane:nth-of-type(3n - 1) {
        margin: 0;
    }
    .allinclusive_rooms_pane:nth-of-type(3n + 1) {
        clear: none;
    }
    .allinclusive_rooms_pane_image {
        margin-bottom: 1.5em;
        margin-bottom: 1em;
    }
    .allinclusive_rooms_pane h4 {
        margin-bottom: 0.3em;
    }
    .allinclusive_rooms_pane_text h5 {
        margin-bottom: 1.2em;
        padding-bottom: 1.2em;
    }
    .allinclusive_rooms_pane_text p {
        line-height: 1.75em;
    }
    #allinclusive_rooms_decoration_1 {
        top: -50px;
        right: 10px;
        width: 110px;
    }
    #allinclusive_rooms_decoration_2 {
        bottom: 140px;
        left: -20px;
        width: 200px;
    }
    
    /* Staying */
    
    #allinclusive_staying_slides {
        width: 100%;
    }
    .allinclusive_staying_slide_title {
        top: auto;
        bottom: -30px;
        left: -20px;
    }
    .allinclusive_staying_slide_title_number {
        font-size: 4em;
    }
    .allinclusive_staying_slide_title h4 {
        margin-bottom: 0.5em;
        padding: 0.3em 0.8rem 0.45em 0.8rem;
        font-size: 1.2em;
        letter-spacing: 0.02em;
    }
    .allinclusive_staying_slide_title h5 {
        margin-bottom: 0.8rem;
        font-size: 1.05em;
        letter-spacing: 0.02em;
    }
    .allinclusive_staying_decoration {
        bottom: auto;
        top: -50px;
        right: -60px;
        width: 140px;
    }
    .allinclusive_staying_slide_text {
        margin-top: 60px;
        padding: 0;
        transition: opacity 600ms ease-in-out;
    }
    .allinclusive_staying_slide_text p {
        font-size: 0.95em;
        line-height: 1.8em;
    }
    #allinclusive_staying_slides .swiper-button-prev,
    #allinclusive_staying_slides .swiper-button-next {
        top: 21%;
        width: 40px;
        height: 40px;
    }
    #allinclusive_staying_slides .swiper-button-prev {
        left: -20px;
    }
    #allinclusive_staying_slides .swiper-button-next {
        right: -20px;
    }
    #allinclusive_staying_slides .swiper-button-prev::after,
    #allinclusive_staying_slides .swiper-button-next::after {
        font-size: 20px;
    }
    #allinclusive_staying_slides .swiper-pagination {
        margin-top: 35px;
    }
    
    /* Spots */
    
    #allinclusive_spots {
        padding-bottom: 132px;
    }
    #allinclusive_spots_bg {
        top: -80px;
        transform: translateX(-50%);
        width: 70%;
    }
    .allinclusive_spots_pane {
        float: none;
        width: 100%;
    }
    .allinclusive_spots_pane:nth-of-type(even) {
        float: none;
        margin-top: 0;
    }
    .allinclusive_spots_pane:nth-of-type(2n + 1) {
        clear: none;
    }
    .allinclusive_spots_pane:nth-last-of-type(n + 3) {
        margin-bottom: 0;
    }
    ._allinclusive_spots_pane:not(:last-of-type) {
        margin-bottom: 2em;
    }
    .allinclusive_spots_pane_text {
        margin: -150px auto 1em auto;
        padding: 58px 0;
        width: 90%;
    }
    .allinclusive_spots_pane_text_wrapper {
        padding: 1em 2em;
    }
    .allinclusive_spots_pane_image {
        width: 100%;
    }
    .allinclusive_spots_pane:nth-of-type(even) .allinclusive_spots_pane_image {
        margin-left: 0;
    }
    .allinclusive_spots_pane_text h4 .title_ja {
        margin-bottom: 0.2em;
        font-size: 1.19em;
        letter-spacing: 0;
    }
    .allinclusive_spots_pane_text h4 .title_en {
        font-size: 0.7em;
        letter-spacing: 0.02em;
    }
    .allinclusive_spots_pane_text ul {
        margin-bottom: 0.8em;
        padding-bottom: 0.5em;
    }
    .allinclusive_spots_pane_text li {
        margin-bottom: 0.5em;
        font-size: 0.8em;
        letter-spacing: 0.03em;
    }
    .allinclusive_spots_pane_text p {
        font-size: 0.95em;
    }
    .allinclusive_spots_car {
        padding-left: 33px;
    }
    .allinclusive_spots_car::before {
        width: 25px;
        height: 25px;
    }
    .allinclusive_spots_map a {
        padding-left: 33px;
    }
    .allinclusive_spots_map a::before {
        width: 25px;
        height: 25px;
    }
    
    /* Faq */
    
    #allinclusive_faq .heading {
        float: none;
        margin-bottom: 0;
        width: 100%;
    }
    #allinclusive_faq_decoration {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    #allinclusive_faq .content {
        float: none;
        margin-top: -2em;
        width: 100%;
    }
    .allinclusive_faq_pane {
        padding: 1em 1.5em;
    }
    .allinclusive_faq_pane:not(:last-of-type) {
        margin-bottom: 1.2em;
    }
    .allinclusive_faq_pane h4 {
        font-size: 1.08em;
    }
    .allinclusive_faq_pane_q {
        padding: 1rem 0 1.05rem 0;
        padding-left: 45px;
        width: calc(100% - 45px);
    }
    .allinclusive_faq_pane_q::before {
        top: 17px;
        font-size: 1.4em;
    }
    .allinclusive_faq_pane_a {
        margin-top: 1em;
        padding: 1em 0 1.05em 0;
        padding-left: 45px;
        font-size: 1em;
    }
    .allinclusive_faq_pane_a::before {
        top: 17px;
        font-size: 1.4em;
    }
    .allinclusive_faq_pane_switch {
        right: 30px;
        top: 37px;
        width: 35px;
        height: 35px;
    }
    
    /* Hotel */
    
    #allinclusive_hotel h3 {
        font-size: 1.6em;
    }
    #allinclusive_hotel_links {
        width: 100%;
    }
    .allinclusive_hotel_link {
        display: inline-block;
        float: none;
        margin-right: 0 !important;
    }
    .allinclusive_hotel_link:not(:last-of-type) {
        margin-bottom: 1em;
    }
    #allinclusive_hotel_map {
        top: auto;
        right: -80px;
        bottom: -120px;
        transform: none;
        width: 370px;
        z-index: -1;
    }
    .inview #allinclusive_hotel_map {
        opacity: 0.6;
    }
    
    /* Reserve */
    
    #allinclusive_reserve {
        padding: 5em 0 8em 0;
    }
    #allinclusive_reserve h3 {
        font-size: 1.6em;
    }
    #allinclusive_reserve_decoration_1 {
        top: -190px;
        left: -30px;
        width: 180px;
    }
    #allinclusive_reserve_decoration_2 {
        top: -100px;
        left: 100px;
        width: 80px;
    }
    #allinclusive_reserve_decoration_3 {
        top: -170px;
        right: -30px;
        width: 200px;
    }
    #allinclusive_reserve_decoration_4 {
        top: 110px;
        right: -35px;
        width: 100px;
    }
    #allinclusive_reserve_decoration_5 {
        bottom: 20px;
        left: -100px;
        width: 260px;
    }
    #allinclusive_reserve_decoration_6 {
        bottom: -120px;
        left: 40px;
        width: 100px;
    }
    #allinclusive_reserve_decoration_7 {
        bottom: -80px;
        right: -5px;
        width: 90px;
    }
    #allinclusive_reserve_decoration_8 {
        bottom: -160px;
        right: 20px;
        width: 140px;
    }
    #footer {
        margin-top: 60px;
    }
    
}