@charset "utf-8";

/************************************
 * Reset
************************************/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

body {
	min-height: 100vh;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
	line-height: 1.1;
}

a:not([class]) {
	color: currentColor;
}

img,
picture {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

textarea:not([rows]) {
	min-height: 10em;
}

:target {
	scroll-margin-block: 5ex;
}

em {
	font-style: normal;
}

/************************************
 * Base
 ************************************/
:root {
	--base-width: 375;
	/* 基準幅 */
	--max-width: 510;
	/* 最大幅 */
	--base-font-size: 10;
	/* 基準フォントサイズ (10px) */
	/* 最大横幅サイズ時の最大フォントサイズ */
	--max-font-size: calc((var(--base-font-size) / var(--base-width)) * var(--max-width) * 1px);
}

html {
	/** 以下指定で、横幅が --base-width 時に 1rem が 10pxとなる */
	font-size: min(calc((var(--base-font-size) / var(--base-width)) * 100vw), var(--max-font-size));
	scroll-behavior: smooth;
}

body {
	font-family: 'Hiragino Kaku Gothic ProN', sans-serif;
	font-style: normal;
	font-size: 1.4rem;
	letter-spacing: 0.05rem;
	-webkit-tap-highlight-color: transparent;
	height: 100dvh;
	overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 1.4rem;
}

img,
video {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	transition: opacity 0.2s;
}

@media (hover: hover) {
	a:hover {
		cursor: pointer;
		opacity: 0.8;
		transition: opacity 0.2s;
	}

	button:hover {
		cursor: pointer;
		opacity: 0.8;
		transition: opacity 0.2s;
	}

	label:hover {
		cursor: pointer;
	}
}

input,
textarea,
select,
button {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font-family: inherit;
	font-size: inherit;
	font-size: 1.4rem;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
	outline: auto;
}

button {
	border: none;
	border-radius: 0.7rem;
	cursor: pointer;
}

/************************************
 * Utility
************************************/
.u-fs--1 {
	font-size: 1rem;
}

.u-mb--1 {
	margin-bottom: 1rem;
}

.u-mb--2 {
	margin-bottom: 2rem;
}

.u-mb--3 {
	margin-bottom: 3rem;
}

.u-mb--4 {
	margin-bottom: 4rem;
}

.u-mb--5 {
	margin-bottom: 5rem;
}

/************************************
 * Page
************************************/
.page-wrap {
	width: 100%;
	max-width: calc(var(--max-width) * 1px);
	margin: 0 auto;
}

.page-footer {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	display: none;
}

.page-footer__inner {
	padding-bottom: 0.4rem;
	max-width: calc(var(--max-width) * 1px);
	margin: 0 auto;
	transition: opacity 0.2s;
	text-align: center;
	font-size: 1rem;
}

.page-footer__inner img {
	width: 95%;
	margin: 0 auto;
}

@media (580px <=width) {
	.page-footer__inner {
		width: 56dvh;
	}
}

@media (hover: hover) {
	.page-footer__inner:hover {
		cursor: pointer;
		opacity: 0.8;
		transition: opacity 0.2s;
	}
}

.page-footer__text {
	padding: .7rem 0 .3rem 0;
}

.page-footer__link-box {
	padding-top: .5rem;
	text-align: center;
	font-size: 1rem;
}

.page-footer__link-box a {
	margin: 0 .5rem;
}

.sub-text {
	width: 100%;
	margin-top: -1rem;
	padding: 0 1.8rem 1.8rem 1.8rem;
	font-size: 0.9rem;
	text-align: right;
}

/************************************
 * JS
************************************/
/******** Enquete ********/
.js-enquete {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100dvh;
	position: relative;
}

.js-enquete_inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.js-enquete .js-enq__full-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.js-enq__title {
	background-color: #000;
	text-align: center;
	padding: 1.5rem 1rem;
	border-radius: 1.2rem 1.2rem 0 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
}

.js-enq__head {
	width: 80%;
	margin-bottom: 1rem;
}

.js-enq__list-wrap {
	width: 80%;
	background-color: #fff;
	font-size: 1.4rem;
	border-radius: 1.2rem;
}

.js-enq__list {
	padding: 1.8rem;
	background-color: #fff;
	border-radius: 0 0 1.2rem 1.2rem;
}

.js-enq__list li:not(:last-child) {
	margin-bottom: 0.8rem;
}

.js-enq__input-wrap {
	display: block;
	width: 100%;
	height: 3.7rem;
	margin: 0 auto;
	background-color: #ebebeb;
	border: 2px solid transparent;
	border-radius: 0.8rem;
	position: relative;
	overflow: hidden;
}

.js-enq__input-text-wrap {
	display: block;
	width: 100%;
	height: calc(3.7rem - 4px);
	position: relative;
	overflow: hidden;
}

.js-enq__input-text-wrap.js-clone {
	width: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #000;
	transition: width 0.3s ease-in-out;
}

.js-enq__input-text-wrap.js-clone .js-enq__input-text {
	color: #fff;
}

.js-enq__input-text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	-moz-column-gap: 0.7rem;
	column-gap: 0.7rem;
	width: calc(100% - 4px);
	height: 100%;
	padding: 0 0.5rem 0 1rem;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	font-size: 1.6rem;
	font-weight: bold;
	color: #000;
}

.js-enq__input-percentage {
	font-size: 1.4rem;
}

.js-enq__input-percentage span {
	font-size: 1rem;
}

.js-enq__input-wrap input[type='checkbox'],
.js-enq__input-wrap input[type='radio'] {
	display: none;
}

.js-enq__input-wrap:has(input[type='checkbox']:checked),
.js-enq__input-wrap:has(input[type='radio']:checked) {
	border-color: #000;
	background-color: #000;
}

.js-enq__input-wrap:has(input[type='checkbox']:checked) .js-enq__input-text,
.js-enq__input-wrap:has(input[type='radio']:checked) .js-enq__input-text {
	color: #fff;
}

[class*='js-enq__answer-']:not([class*='js-enq__answer-default']) {
	display: none;
}

/******** / Enquete ********/
.js-iss__page-wrap {
	overflow: hidden;
}

@media (580px <=width) {
	.js-iss__page-wrap {
		width: 56vh;
	}
}

.js-iss {
	height: 100dvh;
	position: relative;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.js-iss .js-iss__swiper {
	width: 100%;
	height: 100dvh;
}

.js-iss .js-iss__slide-item {
	position: relative;
}

.js-iss__slide-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.js-iss .js-iss__slide-item .js-iss__full-media {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.js-iss__slide-lazy-media {
	display: none;
}

/******** prev & next button ********/
.js-iss__pointerup-area {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100dvh;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	cursor: pointer;
}

/* .js-iss .js-swiper-button-next,
.js-iss .js-swiper-button-prev {
  height: 100%;
  width: 50%;
  margin-top: 0;
  position: absolute;
  top: 0;
  z-index: 2;
}
.js-iss .js-swiper-button-next {
  right: 0;
}
.js-iss .js-swiper-button-prev {
  left: 0;
} */
/******** / prev & next button ********/

/******** progress bar ********/
.js-iss__progress {
	width: calc(100% - 2rem);
	display: flex;
	-moz-column-gap: 0.5rem;
	column-gap: 0.5rem;
	position: absolute;
	top: 1rem;
	left: 50%;
	z-index: 100;
	transform: translateX(-50%);
}

.js-iss__progress>span {
	flex: 1;
	height: 4px;
	background-color: #fff;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.js-iss__progress>span>span {
	display: block;
	width: 0;
	height: 4px;
	background-color: #4a89e5;
}

/******** / progress bar ********/
/******** Fixed Button ********/
.js-footer__text {
	display: none;
}

/******** / Fixed Button ********/
/******** Modal ********/
.js-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.js-modal__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100dvh;
	background-color: rgb(0, 0, 0, .8);
	padding: 2rem 2.5rem;
}

.js-modal__content {
	width: 100%;
	max-width: calc(var(--max-width) * 1px);
	position: relative;
	-webkit-animation: zoomIn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
	animation: zoomIn 1s cubic-bezier(0.79, 0, 0.31, 1) forwards;
}

.js-modal__body {
	border-radius: 1rem;
	overflow: hidden;
	background-color: #ffe9ca;
}

.js-modal__close-btn {
	cursor: pointer;
}

.js-modal__close-btn-top {
	width: 3rem;
	height: 3rem;
	border-radius: 3rem;
	background-color: #333;
	border: 1px solid #fff;
	position: absolute;
	top: -1rem;
	right: -1rem;
	color: #fff;
	font-size: 1.8rem;
	cursor: pointer;
}

.js-modal__footer {
	padding: 1rem 3rem 2rem;
}

/******** / Modal ********/

/************************************
 * Animation
************************************/
@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}