body {
	font-family: "Noto Serif JP", serif;
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	background-color: #DCDCDC;
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	color: #023A62;
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

body.is-active {
	overflow: hidden;
	position: fixed;
	width: 100vw;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
}

.l-all-wrap {
	margin-left: auto;
	margin-right: auto;
	max-width: 390px;
	max-width: calc(var(--scrollbar-width) + 390px);
	padding-right: 0;
	padding-right: var(--scrollbar-width, 0);
	width: 100%;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.p-faq-item + .p-faq-item {
	margin-top: 22px;
}

.p-faq-item__question {
	background-color: #023A62;
	padding: 15px 0 16px;
	position: relative;
}

.p-faq-item__question::before {
	color: #9B7951;
	content: "Q.";
	font-family: "Volkhov", serif;
	font-size: 24px;
	font-weight: 700;
	left: 16px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-faq-item__question::after {
	aspect-ratio: 24/14;
	background-image: url(../images/faq-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	max-width: 24px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%) rotate(180deg);
	transition: transform 0.5s;
	width: 100%;
}

.p-faq-item__question.is-active.p-faq-item__question::after {
	transform: translateY(-50%) rotate(0deg);
}

.p-faq-item__question p {
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	margin-left: 50px;
	margin-right: 64px;
}

.p-faq-item__answer {
	display: none;
	padding: 16px 16px 0 48px;
	position: relative;
}

.p-faq-item__answer::before {
	color: #9B7951;
	content: "A.";
	font-family: "Volkhov", serif;
	font-size: 24px;
	font-weight: 700;
	position: absolute;
	transform: translateX(calc(-100% - 8px));
}

.p-faq-item__answer p {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: calc(20 / 14);
}

.p-faq-item__answer span {
	color: #FF0000;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: calc(20 / 14);
}

.p-faq {
	background-color: #fff;
	padding-bottom: 104px;
	padding-top: 56px;
	position: relative;
	z-index: 0;
}

.p-faq::before {
	aspect-ratio: 221/980;
	background-image: url(../images/faq-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 100%;
	max-width: 221px;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1;
}

.p-faq__inner {
	content: "";
	padding: 0 16px;
	position: relative;
	z-index: 2;
}

.p-faq__items {
	margin-top: 23px;
}

.p-footer {
	background-color: #023A62;
	padding-bottom: 107px;
	padding-top: 41px;
	text-align: center;
}

.p-footer__logo {
	margin-left: auto;
	margin-right: auto;
	max-width: 56px;
	width: 100%;
}

.p-footer__logo img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 56/45;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-footer__company {
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: calc(24 / 14);
	margin-top: 25px;
}

.p-join-item + .p-join-item {
	margin-top: 17px;
}

.p-join-item__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 216px;
	width: 100%;
}

.p-join-item__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 216/232;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-join-item__text {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: calc(18 / 14);
	padding-top: 16px;
}

.p-join-item__text span {
	color: #333;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: calc(18 / 12);
}

.p-join-item__text--center {
	text-align: center;
}

.p-join-items {
	margin-left: auto;
	margin-right: auto;
	max-width: 240px;
	width: 100%;
}

.p-join {
	background-color: #023A62;
	padding-bottom: 32px;
	padding-top: 72px;
	position: relative;
}

.p-join::before {
	aspect-ratio: 96/96;
	background-image: url(../images/join-decoration1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	left: 72px;
	max-width: 96px;
	position: absolute;
	top: 0;
	transform: translateY(-50%);
	width: 100%;
}

.p-join::after {
	aspect-ratio: 96/96;
	background-image: url(../images/join-decoration4.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0px;
	content: "";
	max-width: 90px;
	position: absolute;
	right: 0;
	transform: translateY(50%);
	width: 100%;
	z-index: 10;
}

.p-join__inner {
	padding: 0 24px;
}

.p-join__box {
	background-image: url(../images/join-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 48px 0 104px;
	position: relative;
}

.p-join__box::before {
	aspect-ratio: 95/95;
	background-image: url(../images/join-decoration2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	left: -24px;
	max-width: 95px;
	position: absolute;
	top: 0;
	transform: translateY(-35%);
	width: 100%;
}

.p-join__box::after {
	aspect-ratio: 101/100;
	background-image: url(../images/join-decoration3.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	max-width: 101px;
	position: absolute;
	right: 77px;
	transform: translateY(25%);
	width: 100%;
}

.p-join__text {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: calc(24 / 16);
	margin-top: 24px;
}

.p-join-items__item {
	margin-top: 24px;
}

.p-modal {
	background-color: rgba(0, 0, 0, 0.5);
	height: 100dvh;
	left: 50%;
	opacity: 0;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100vw;
	z-index: 100;
}

.js-modal1.is-active,
.js-modal2.is-active {
	left: calc(50% - var(--scrollbar-width) / 2);
	opacity: 1;
	visibility: visible;
}

.p-modal__content {
	background-color: #fff;
	border-radius: 20px;
	left: 50%;
	max-height: 100%;
	max-width: 390px;
	overflow: auto;
	padding: 40px 32px;
	position: absolute;
	scrollbar-gutter: stable;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-modal__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 280px;
	width: 100%;
}

.p-modal__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 280/312;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-modal__body {
	margin-top: 32px;
}

.p-modal__title {
	color: #9B7951;
	font-family: "Noto Serif JP", serif;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.p-modal__text {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.p-modal__button {
	-webkit-text-decoration: underline;
	color: #023A62;
	cursor: pointer;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	padding-top: 32px;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.p-get-modal {
	left: 50%;
	opacity: 0;
	visibility: hidden;
}

.js-get-modal1.is-active,
.js-get-modal2.is-active {
	left: calc(50% - var(--scrollbar-width) / 2);
	opacity: 1;
	visibility: visible;
}

.p-modal-get__title {
	color: #023A62;
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	font-weight: 700;
	line-height: calc(46 / 32);
	text-align: center;
}

.p-modal-get__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 280px;
	width: 100%;
}

.p-modal-get__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 280/280;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-get-modal.js-get-modal2 .p-modal-get__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 190px;
	width: 100%;
}

.p-get-modal.js-get-modal2 .p-modal-get__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 190/138;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-modal-get__text {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: calc(24 / 16);
	text-align: center;
}

.p-modal-get__button {
	background-color: #9B7951;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-top: 32px;
	padding: 13.5px 5px;
	text-align: center;
}

.p-my-stamp {
	background-color: #fff;
	padding-top: 72px;
}

.p-my-stamp__contents {
	background-image: url(../images/my-stamp-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 32px;
	padding-bottom: 31px;
	padding-top: 24px;
}

.p-my-stamp__inner {
	padding: 0 16px;
}

.p-my-stamp__items {
	align-items: flex-start;
	display: flex;
	gap: 0 6px;
}

.p-pickup {
	background-color: #fff;
	padding-bottom: 90px;
	padding-top: 39px;
}

.p-pickup__image {
	margin-left: auto;
	margin-right: auto;
	margin-top: 24px;
	max-width: 264px;
	width: 100%;
}

.p-pickup__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 264/216;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-pickup__text {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 24px;
	max-width: 264px;
	width: 100%;
}

.p-pickup__note {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 500;
	margin-left: auto;
	margin-right: auto;
	max-width: 250px;
	width: 100%;
}

.p-point-item {
	background-color: #DCDCDC;
	border-radius: 16px;
	padding: 16px;
}

.p-point-item + .p-point-item {
	margin-top: 16px;
}

.p-point-item__title {
	align-items: center;
	color: #023A62;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
	gap: 0 8px;
	justify-content: center;
	line-height: calc(20 / 14);
}

.p-point-item__title span {
	max-width: 24px;
	width: 100%;
}

.p-point-item__title span img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 24/24;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-point-item__address {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: calc(20 / 12);
	margin-top: 8px;
}

.p-point-item__image {
	margin-left: auto;
	margin-right: auto;
	margin-top: 8px;
	max-width: 144px;
	width: 100%;
}

.p-point-item__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 144/144;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-point-item__bottom {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: calc(20 / 12);
	margin-top: 8px;
	text-align: center;
}

.p-point {
	background-color: #023A62;
	padding-bottom: 104px;
}

.p-point__inner {
	padding: 0 24px;
}

.p-point__box {
	background-color: #fff;
	padding: 48px 45px 80px;
	position: relative;
}

.p-point__box::before {
	aspect-ratio: 103/103;
	background-image: url(../images/point-decoration.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	left: 15px;
	max-width: 103px;
	position: absolute;
	transform: translate(-50%, 50%);
	width: 100%;
}

.p-point__map {
	margin-top: 23px;
}

.p-point-items__item {
	margin-top: 24px;
}

.p-special-list + .p-special-list {
	margin-top: 16px;
}

.p-special-list__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 280px;
	width: 100%;
}

.p-special-list__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 280/312;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-special-list__body {
	margin-top: 8px;
}

.p-special-list__text {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: calc(24 / 16);
	text-align: center;
}

.p-special-list__num {
	color: #9B7951;
	font-size: 24px;
	padding: 0 0.05em;
}

.p-special-list__text span {
	color: #9B7951;
}

.p-special-list__subtext {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 500;
	margin-left: auto;
	margin-right: auto;
	margin-top: 9px;
	max-width: 280px;
}

.p-special-list__note {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 500;
	margin-left: auto;
	margin-right: auto;
	max-width: 280px;
}

.p-special-list__bottom {
	-moz-text-align-last: right;
	-webkit-text-decoration: underline;
	color: #023A62;
	cursor: pointer;
	font-family: 1080px;
	font-size: 16px;
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
	margin-top: 12px;
	max-width: 280px;
	text-align-last: right;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.p-special-list__button {
	align-items: center;
	background-color: #F1F1F1;
	color: #ABABAB;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	line-height: calc(26 / 18);
	margin-left: auto;
	margin-right: auto;
	margin-top: 16px;
	max-width: 280px;
	padding: 15px 32px;
}

.p-special-list__button--get {
	align-items: center;
	background-color: #9B7951;
	border-radius: 8px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	line-height: calc(19 / 18);
	margin-left: auto;
	margin-right: auto;
	margin-top: 16px;
	max-width: 280px;
	padding: 9.5px 31.5px;
	text-align: center;
}

.p-special-lists {
	margin-left: auto;
	margin-right: auto;
	max-width: 336px;
	width: 100%;
}

.p-special {
	background-color: #fff;
	padding-top: 48px;
}

.p-special__text {
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin-top: 22px;
}

.p-special__lists {
	margin-top: 24px;
}

.p-stamp-item {
	background-color: #fff;
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
	max-width: 176px;
	padding: 27px 8px 16px;
	width: 100%;
}

.p-my-stamp-item__image {
	margin-left: auto;
	margin-right: auto;
	max-width: 144px;
	width: 100%;
}

.p-my-stamp-item__image img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 144/144;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-my-stamp__pop {
	background-color: #023A62;
	color: #fff;
	font-family: "Noto Serif JP", serif;
	font-size: 12px;
	font-weight: 700;
	line-height: calc(14 / 12);
}

.p-my-stamp-item__get {
	background-color: #9B7951;
	border-radius: 8px;
	color: #fff;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: calc(23 / 16);
	margin-top: 16px;
	padding: 8.5px;
	text-align: center;
}

.p-my-stamp-item__point {
	-webkit-text-decoration: underline;
	color: #023A62;
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: calc(17 / 12);
	margin-top: 8px;
	text-align: center;
	text-decoration: underline;
}

.p-stamp-item01 {
	position: relative;
	z-index: 5;
}

.p-stamp-item01::before {
	aspect-ratio: 106/68;
	background-image: url(../images/my-stamp-line01.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	max-width: 106px;
	position: absolute;
	right: 0;
	top: 34px;
	transform: translateX(100%);
	width: 100%;
	z-index: 0;
}

.p-stamp-item01::after {
	aspect-ratio: 107/75;
	background-image: url(../images/飛行機.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	max-width: 107px;
	position: absolute;
	right: -68px;
	top: -24px;
	transform: translateX(100%);
	width: 100%;
}

.p-stamp-item01 .p-my-stamp-item__image {
	position: relative;
}

.p-stamp-item01 .p-my-stamp-item__pop {
	aspect-ratio: 79/79;
	background-image: url(../images/point-pop01.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	left: -7.5px;
	max-width: 79px;
	position: absolute;
	top: -12.5px;
	width: 100%;
}

.p-stamp-item02 {
	margin-top: 102px;
	position: relative;
	z-index: 5;
}

.p-stamp-item02::before {
	aspect-ratio: 79/44;
	background-image: url(../images/my-stamp-line02.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	left: -5px;
	max-width: 79px;
	position: absolute;
	transform: translateY(100%);
	width: 100%;
	z-index: 0;
}

.p-stamp-item02 .p-my-stamp-item__image {
	position: relative;
}

.p-stamp-item02 .p-my-stamp-item__pop {
	aspect-ratio: 79/79;
	background-image: url(../images/point-pop02.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	left: -7.5px;
	max-width: 79px;
	position: absolute;
	top: -12.5px;
	width: 100%;
}

.p-stamp-item03 {
	margin-top: -72px;
	position: relative;
	z-index: 5;
}

.p-stamp-item03::before {
	aspect-ratio: 85/41;
	background-image: url(../images/my-stamp-line03.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	max-width: 85px;
	position: absolute;
	right: -6px;
	transform: translateY(100%);
	width: 100%;
}

.p-stamp-item03::after {
	aspect-ratio: 120/122;
	background-image: url(../images/couple.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: -35px;
	content: "";
	left: 13px;
	max-width: 120px;
	position: absolute;
	transform: translateY(100%);
	width: 100%;
}

.p-stamp-item03 .p-my-stamp-item__image {
	position: relative;
}

.p-stamp-item03 .p-my-stamp-item__pop {
	aspect-ratio: 79/79;
	background-image: url(../images/point-pop03.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	left: -7.5px;
	max-width: 79px;
	position: absolute;
	top: -12.5px;
	width: 100%;
}

.p-stamp-item04 {
	margin-top: 97px;
	position: relative;
	z-index: 5;
}

.p-stamp-item04::before {
	aspect-ratio: 78/78;
	background-image: url(../images/my-stamp-line04.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	max-width: 78px;
	position: absolute;
	right: 49px;
	transform: translateY(100%);
	width: 100%;
}

.p-stamp-item04 .p-my-stamp-item__image {
	position: relative;
}

.p-stamp-item04 .p-my-stamp-item__pop {
	aspect-ratio: 79/79;
	background-image: url(../images/point-pop04.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	left: -7.5px;
	max-width: 79px;
	position: absolute;
	top: -12.5px;
	width: 100%;
}

.p-stamp-item05 {
	left: 50%;
	margin-top: 11px;
	position: relative;
	top: 0;
	transform: translateX(-71%);
	z-index: 5;
}

.p-stamp-item05 .p-my-stamp-item__image {
	position: relative;
}

.p-stamp-item05 .p-my-stamp-item__pop {
	aspect-ratio: 79/79;
	background-image: url(../images/point-pop05.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	left: -7.5px;
	max-width: 79px;
	position: absolute;
	top: -12.5px;
	width: 100%;
}

.p-stamp-item-get01 {
	padding-bottom: 32px;
	position: relative;
	z-index: 5;
}

.p-stamp-item-get01::before {
	aspect-ratio: 106/68;
	background-image: url(../images/my-stamp-get-line01.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	max-width: 106px;
	position: absolute;
	right: 0;
	top: 34px;
	transform: translateX(100%);
	width: 100%;
	z-index: 0;
}

.p-stamp-item-get01::after {
	aspect-ratio: 107/75;
	background-image: url(../images/飛行機.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	max-width: 107px;
	position: absolute;
	right: -68px;
	top: -24px;
	transform: translateX(100%);
	width: 100%;
}

.p-stamp-item-get02 {
	margin-top: 102px;
	padding-bottom: 32px;
	position: relative;
	z-index: 5;
}

.p-stamp-item-get02::before {
	aspect-ratio: 81/111;
	background-image: url(../images/my-stamp-get-line02.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	left: -5px;
	max-width: 81px;
	position: absolute;
	transform: translateY(100%);
	width: 100%;
	z-index: 0;
}

.p-stamp-item-get03 {
	margin-top: -8px;
	padding-bottom: 32px;
	position: relative;
	z-index: 5;
}

.p-stamp-item-get03::before {
	aspect-ratio: 85/106;
	background-image: url(../images/my-stamp-get-line03.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	max-width: 85px;
	position: absolute;
	right: -6px;
	transform: translateY(100%);
	width: 100%;
}

.p-stamp-item-get03::after {
	aspect-ratio: 120/122;
	background-image: url(../images/couple.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: -101px;
	content: "";
	left: 13px;
	max-width: 120px;
	position: absolute;
	transform: translateY(100%);
	width: 100%;
}

.p-stamp-item-get04 {
	margin-top: 160px;
	padding-bottom: 32px;
	position: relative;
	z-index: 5;
}

.p-stamp-item-get04::before {
	aspect-ratio: 78/143;
	background-image: url(../images/my-stamp-get-line04.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	max-width: 78px;
	position: absolute;
	right: 49px;
	transform: translateY(100%);
	width: 100%;
}

.p-stamp-item-get05 {
	left: 50%;
	margin-top: 76px;
	padding-bottom: 32px;
	position: relative;
	top: 0;
	transform: translateX(-70%);
	z-index: 5;
}

.p-stamp-link {
	background-color: #9B7951;
	border-radius: 8px;
	bottom: 25px;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 700;
	left: 50%;
	margin-top: 85px;
	max-width: 320px;
	opacity: 0;
	position: fixed;
	transform: translateX(-50%);
	transition: opacity 0.5s, visibility 0.5s;
	visibility: hidden;
	width: 100%;
	z-index: 100;
}

.p-stamp-link a {
	display: block;
	height: inherit;
	padding: 16px 66px;
	width: inherit;
}

.p-stamp-link.fixed {
	opacity: 1;
	visibility: visible;
}

.p-stamp-rally {
	background-color: #fff;
	overflow: hidden;
	padding-bottom: 16px;
	padding-top: 72px;
}

.p-stamp-rally__contents {
	aspect-ratio: 390/372;
	background-image: url(../images/stamp-rally.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 48px;
	position: relative;
	z-index: 0;
}

.p-stamp-rally__contents::before {
	aspect-ratio: 200/94;
	background-image: url(../images/stamp-rally-point1.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	left: -15px;
	max-width: 200px;
	position: absolute;
	top: -15px;
	width: 100%;
	z-index: 10;
}

.p-stamp-rally__contents::after {
	aspect-ratio: 200/94;
	background-image: url(../images/stamp-rally-point2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -15px;
	content: "";
	max-width: 200px;
	position: absolute;
	right: -15px;
	width: 100%;
	z-index: 10;
}

.p-stamp-rally__box {
	content: "";
	left: 50%;
	max-width: 326px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-stamp-rally__content {
	background-color: #fff;
	color: #333;
	display: inline-block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	padding: 48px 59px;
	text-align: center;
}

.p-stamp-rally__content-space {
	padding-top: 24px;
}

.p-top {
	aspect-ratio: 390/640;
	background-image: url(../images/top.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.p-top__title {
	margin-left: auto;
	margin-right: auto;
	max-width: 367px;
	padding-top: 4.5625rem;
	width: 100%;
}

.p-top__title img {
	-o-object-fit: cover;
	-o-object-position: center;
	aspect-ratio: 367/367;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.p-top__stamp-link {
	background-color: #9B7951;
	border-radius: 8px;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-left: auto;
	margin-right: auto;
	margin-top: 110px;
	max-width: 320px;
	opacity: 1;
	visibility: visible;
	width: 100%;
}

.p-top__stamp-link a {
	display: block;
	height: inherit;
	padding: 1rem 64px;
	width: inherit;
}

.p-top__stamp-link.is-active {
	opacity: 0;
	visibility: hidden;
}

.c-title {
	text-align: center;
}

.c-title__en {
	color: #023A62;
	display: block;
	font-family: "Volkhov", serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding-bottom: 5px;
	position: relative;
}

.c-title__en::before {
	background-color: #023A62;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 56px;
}

.c-title__jp {
	color: #9B7951;
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: calc(34 / 24);
	padding-top: 9px;
}

.u-svg-def {
	display: none;
}

@media screen and (min-width: 768px) {

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.4814814815vw;
}

.l-inner {
	max-width: 1130px;
	padding-left: 25px;
	padding-right: 25px;
}

}

@media (min-width: 1080px) {

html {
	font-size: 16px;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@media screen and (max-width: 360px) {

.p-stamp-item01::after {
	right: calc(50% - min(50vw, 125px));
}

.p-stamp-item-get01::after {
	right: calc(50% - min(50vw, 125px));
}

}

@media screen and (max-width: 340px) {

.p-stamp-item05 {
	transform: translateX(-75%);
}

.p-stamp-item-get05 {
	transform: translateX(-75%);
}

}


/*# sourceMappingURL=style.css.map */
