/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

/* FLOCSS
----------------------------------------------------- */

#page_top {
	bottom: 80px;
	display: none;
	position: fixed;
	right: 5px;
	z-index: 999;
}

#page_top a {
	background: #cd0000;
	border: 1px solid white;
	border-radius: 5px;
	color: #fff;
	display: block;
	font-size: 20px;
	height: 70px;
	line-height: 70px;
	text-align: center;
	text-decoration: none;
	width: 70px;
}

/* =====================================================
# 領域アニメーション
===================================================== */

.fade-in-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-up.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-down {
	opacity: 0;
	transform: translateY(-24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-down.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in {
	opacity: 0;
	transition: opacity 1s;
}

.fade-in.is-in-view {
	opacity: 1;
}

/* =====================================================
# header
===================================================== */

.top-header__inner,
.header__inner {
	align-items: flex-end;
	background-color: transparent;
	display: flex;
	height: 100px;
	justify-content: flex-end;
	padding-right: 5.249343832vw;
}

.top-header-nav-area,
.header-nav-area {
	display: flex;
	justify-content: flex-end;
}

.top-header-nav,
.header-nav {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-top: 3px;
}

.top-header-nav__wrapper,
.header-nav__wrapper {
	display: flex;
}

.top-header-nav__item,
.header-nav__item {
	flex-grow: 1;
	text-align: center;
}

.top-header-nav__item + .top-header-nav__item,
.top-header-nav__item + .header-nav__item,
.header-nav__item + .top-header-nav__item,
.header-nav__item + .header-nav__item {
	margin-left: 60px;
}

.top-header-nav__link,
.header-nav__link {
	border-bottom: 4px solid transparent;
	display: block;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 1px;
	position: relative;
	text-decoration: none;
	transition: 0.25s;
}

.top-header-nav__link::after,
.header-nav__link::after {
	background: white;
	bottom: -5px;
	content: "";
	height: 1px;
	left: 10%;
	position: absolute;
	transform: scale(0, 1); /*X方向0、Y方向1*/
	transform-origin: center top; /*上部中央基点*/
	transition: all 0.3s;
	width: 80%;
}

.top-header-nav__link.is-top,
.header-nav__link.is-top {
	color: #666;
}

.top-header-nav__link.is-top.stay,
.header-nav__link.is-top.stay {
	color: white;
}

.top-header-nav__link.is-top.stay::after,
.header-nav__link.is-top.stay::after {
	background-color: white;
}

.top-header__tel,
.header__tel {
	align-items: center;
	background-color: #212e53;
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 80px;
	justify-content: center;
	padding: 5px 20px;
}

.top-header__tel .head,
.header__tel .head {
	font-size: 11px;
}

.top-header {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 620;
}

.top-header-nav__link {
	color: white;
}

.header {
	display: none;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 620;
}

.header.displayBlock {
	display: block;
}

.header.displayNone {
	display: none;
}

.header-nav__link::after {
	background: #777;
}

.header-nav__link.stay {
	color: #000;
}

.header-nav__link.stay::after {
	background-color: #000;
}

/*　上に上がる動き　*/

#header.UpMove {
	animation: UpAnime 0.5s forwards;
}

/*　下に下がる動き　*/

#header.DownMove {
	animation: DownAnime 0.5s forwards;
}

.drawer-icon {
	background: #fff;
	border: none;
	box-shadow: none;
	cursor: pointer;
	display: none;
	padding: 2px 9px 10px;
	position: fixed;
	right: 15px;
	text-align: center;
	top: 20px;
	transition: all 0.5s ease 0s;
	z-index: 1001;
}

.drawer-icon.is-checked {
	transform: translateX(-260px);
}

.drawer-bars {
	display: inline-block;
	height: 20px;
	position: relative;
	vertical-align: bottom;
	width: 35px;
}

.drawer-bar {
	background: #777;
	border-radius: 0;
	display: block;
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	transition: all 0.3s linear 0s;
	width: 100%;
}

.drawer-bar:nth-of-type(1) {
	top: 0;
}

.drawer-bar:nth-of-type(2) {
	top: 8px;
}

.drawer-bar:nth-of-type(3) {
	top: 16px;
}

.is-checked .drawer-bar:nth-of-type(1) {
	top: 10px;
	transform: rotate(-30deg);
}

.is-checked .drawer-bar:nth-of-type(2) {
	background: transparent;
}

.is-checked .drawer-bar:nth-of-type(3) {
	top: 10px;
	transform: rotate(30deg);
}

.drawer-background {
	background: #000;
	display: none;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: all 0.5s ease 0s;
	width: 100%;
	z-index: 999;
}

.drawer-background.is-checked {
	display: block;
	opacity: 0.8;
}

.drawer-content {
	background: #000;
	bottom: auto;
	color: #fff;
	height: 100%;
	left: auto;
	max-width: 90%;
	overflow: auto;
	position: fixed;
	right: 0;
	text-align: left;
	top: 0;
	transform: translateX(105%);
	transition: all 0.5s ease 0s;
	width: 260px;
	z-index: 1000;
}

.drawer-content.is-checked {
	box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
	transform: translateX(0);
}

.drawer-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.drawer-content ul li {
	border-bottom: 1px dotted #fff;
	color: #fff;
}

.drawer-content ul li a {
	display: block;
	padding: 16px 30px 14px 20px;
	position: relative;
	text-decoration: none;
}

.drawer-content ul li a::after {
	background: transparent url(../img/common/drawer-arrow-right.webp) no-repeat center center/contain;
	content: "";
	height: 11px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
}

.drawer-tel {
	border: 1px solid #fff;
	border-radius: 5px;
	display: inline-block;
	font-family: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
	margin-left: 20px;
	margin-top: 20px;
	padding: 7px 15px;
}

.drawer-tel img {
	vertical-align: -4px;
	width: 20px;
}

.mobile-active {
	background-color: #f3eee0;
	color: #fff !important;
}

#stay,
.stay {
	color: white;
}

#stay::after,
.stay::after {
	background-color: white;
	bottom: -5px;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
}

/* =====================================================
# policy
===================================================== */

.policy {
	padding-block: 100px;
}

.policy__inner {
	margin-inline: auto;
	max-width: 930px;
	padding-inline: 15px;
}

.policy__title {
	font-size: 22px;
	text-align: center;
}

.policy__content {
	margin-top: 50px;
}

.policy__content ul {
	padding-left: 17px;
}

.policy__content ul li img {
	padding: 25px 35px;
}

.policy__content ul .list {
	font-feature-settings: normal;
	padding-left: 40px;
	text-indent: -40px;
}

/* =====================================================
# footer
===================================================== */

.footer {
	background-color: #cd0000;
	color: #efefef;
	padding-block: 60px;
}

.footer__content {
	display: flex;
	justify-content: space-between;
}

.footer__name {
	font-size: 19px;
	font-weight: 600;
}

.footer__address,
.footer__tel {
	letter-spacing: 1px;
}

.footer__use a {
	background-color: #cd0000;
	border: 1px solid #fff;
	border-radius: 5px;
	display: inline-block;
	padding: 10px 25px;
	transition: opacity 0.3s, background-color 0.3s;
}

/* =====================================================
# TOPメインヴィジュアル
===================================================== */

.fv__inner {
	position: relative;
}

.fv__head {
	left: 5%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: -moz-fit-content;
	width: fit-content;
	z-index: 610;
}

.fv__head .ja-title-header,
.fv__head .ja-title-footer {
	color: #fff;
	display: block;
	letter-spacing: 2.64px;
	line-height: 1;
	opacity: 0;
	padding: 10px 20px 15px;
	visibility: hidden;
	width: -moz-fit-content;
	width: fit-content;
}

.fv__head .ja-title-header {
	font-size: min(3.6745406824vw, 70px);
	font-weight: 700;
}

.fv__head .ja-title-header::first-letter {
	color: #cd0000;
}

.fv__head .ja-title-footer {
	font-size: min(6.0367454068vw, 115px);
	font-weight: 800;
	margin-top: 20px;
}

.fv__head .ja-title-footer::first-letter {
	color: #cd0000;
}

.fv-swiper { /*画像の横幅を100%にしてレスポンシブ化*/
}

.fv-swiper img {
	height: auto;
	vertical-align: bottom; /*画像の下にできる余白を削除*/
	width: 100%;
}

.fv-wrapper {
	height: 100vh;
}

.fv-slide img {
	-o-object-fit: cover;
	animation: zoomUp 28s linear 0s normal both;
	filter: brightness(0.6);
	height: 100vh;
	object-fit: cover;
}

.fv-pagination .swiper-pagination-bullet {
	background-color: white;
	margin: 9px !important;
	opacity: 1;
}

.fv-pagination .swiper-pagination-bullet-active {
	background-color: #cd0000;
}

.photographer {
	bottom: 2%;
	color: white;
	font-size: 13px;
	font-weight: 600;
	left: 2%;
	position: absolute;
	text-transform: uppercase;
	z-index: 100;
}

.scroll {
	bottom: 165px;
	color: white;
	font-family: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
	letter-spacing: 0.48px;
	position: absolute;
	right: 4.3%;
	writing-mode: vertical-rl;
	z-index: 100;
}

.scroll::after {
	animation: scroll 1.5s infinite;
	background-color: white;
	bottom: -165px;
	content: "";
	display: inline-block;
	height: 150px;
	position: absolute;
	right: 50%;
	width: 2px;
}

/* =====================================================
# top-contact
===================================================== */

.top-contact {
	text-align: center;
}

.top-contact__title {
	font-size: 65px;
	font-weight: bold;
}

.top-contact__title::first-letter {
	color: #cd0000;
}

.top-contact__text {
	font-size: 30px;
	margin-top: 50px;
}

.top-contact__text .tel {
	color: #cd0000;
	font-size: 47px;
	font-weight: bold;
	text-decoration: none;
	transition: color 0.3s;
}

.top-contact__text .tel:focus,
.top-contact__text .tel:hover {
	color: #f3eee0;
}

.top-contact__btn-wrap {
	margin-top: 50px;
}

/* =====================================================
# contact
===================================================== */

.contact__privacy {
	margin-top: 40px;
	text-align: center;
}

.Form-Item-Label {
	align-items: center;
	display: flex;
	font-weight: bold;
	gap: 10px;
	margin-top: 30px;
}

.Form-Item-Label-Required,
.Form-Item-Label-Optional {
	background-color: #cd0000;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	height: 21px;
	line-height: 21px;
	text-align: center;
	width: 40px;
}

.Form-Item-Label-Required {
	background-color: #cd0000;
}

.Form-Item-Label-Optional {
	background-color: #aaa;
}

.wpcf7-form-control-wrap {
	display: block;
}

.wpcf7-form-control-wrap [type=text],
.wpcf7-form-control-wrap [type=email],
.wpcf7-form-control-wrap [type=tel] {
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	padding: 10px;
	width: 100%;
}

.wpcf7-form-control-wrap [type=text]:focus,
.wpcf7-form-control-wrap [type=email]:focus,
.wpcf7-form-control-wrap [type=tel]:focus {
	border-color: #cd0000;
}

.wpcf7-form-control-wrap [type=radio],
.wpcf7-form-control-wrap [type=checkbox] {
	border: 1px solid #ccc;
	height: 22px;
	vertical-align: -5px;
	width: 22px;
}

.wpcf7-form-control-wrap textarea {
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	padding: 10px;
	width: 100%;
}

.wpcf7-form-control-wrap textarea:focus {
	border-color: #cd0000;
}

.wpcf7-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	background: url(../img/select-arrow.webp) no-repeat center right 14px/13.217px 10.182px;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 10px 45px 10px 15px;
	transition: border-color 0.3s;
	width: 100%;
}

.wpcf7-select:focus {
	border-color: #007aff;
	outline: none;
}

.wpcf7-radio {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.wpcf7-acceptance > .wpcf7-list-item {
	margin-left: 0px;
}

.wpcf7-checkbox > .wpcf7-list-item:not(:first-child) {
	margin-left: 15px;
}

.wpcf7-list-item-label {
	margin-left: 5px;
}

.wpcf7-response-output {
	color: #cd0000;
	margin-top: 20px;
}

/*contact7のデフォルト送信完了メッセージを消す*/

.wpcf7 form.sent .wpcf7-response-output {
	display: none;
}

.Form .button-wrap {
	margin-top: 40px;
	text-align: center;
}

.wpcf7-spinner {
	display: none;
}

.form-checkbox {
	display: block;
	margin-top: 20px;
}

.contact__privacy > .form-checkbox {
	display: block;
	margin-top: 40px;
}

.send {
	padding-block: 100px;
	text-align: center;
}

/*確認画面と完了画面を非表示*/

.confirm_area,
.thanks_area {
	display: none;
}

/*デフォルトのサンクスメッセージを非表示*/

.wpcf7-response-output {
	display: none;
}

/*contact7のデフォルト送信完了メッセージを消す*/

.contact__column {
	margin-top: 10px;
}

.contact__inner {
	margin-inline: auto;
	max-width: 730px;
	padding-inline: 15px;
}

/* =====================================================
# thanks
===================================================== */

.send {
	padding-block: 100px;
	text-align: center;
}

.send__button-wrap {
	margin-top: 40px;
}

/* =====================================================
# top-intro
===================================================== */

.top-intro {
	padding-block: 100px;
}

.top-intro__catch {
	font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 60px;
}

.top-intro__catch::first-letter {
	color: #cd0000;
}

/* =====================================================
# top-spec
===================================================== */

.top-spec__item {
	margin-top: 50px;
}

.top-spec__media {
	display: grid;
	gap: 50px;
	grid-template-columns: 1fr 1fr;
	margin-top: 100px;
}

.top-spec__media-item img {
	border-radius: 10px;
	box-shadow: 0 0px 25px rgba(0, 0, 0, 0.16);
	width: 100%;
}

/* =====================================================
# top-price
===================================================== */

.company-table {
	margin-inline: auto;
	margin-top: 50px;
	max-width: 600px;
}

.company-table table {
	font-size: 30px;
	width: 100%;
}

.company-table th {
	border-bottom: 1px solid #cd0000;
	font-weight: 500;
	padding: 15px;
	text-align: center;
	vertical-align: middle;
	width: 50%;
}

.company-table th:last-child {
	border-right-width: 0;
}

.company-table th:first-child {
	border-top: 1px solid #cd0000;
}

.company-table td {
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
	font-weight: 500;
	padding: 15px;
	text-align: center;
	vertical-align: middle;
}

.company-table td:last-child {
	border-right-width: 0;
}

.company-table td:first-of-type {
	border-top: 1px solid #ccc;
}

.top-price__hour {
	font-size: 29px;
	letter-spacing: 1px;
	margin-top: 20px;
	text-align: center;
}

/* =====================================================
# 下層ページ メインビジュアル
===================================================== */

.mv {
	background-color: #061a40;
	position: relative;
	z-index: -2;
}

.mv-jumbotron {
	background-color: #999;
	background-position: center center;
	background-size: cover;
	height: 450px;
	position: relative;
	z-index: -1;
}

.mv-jumbotron.is-contact {
	background-position: center right;
}

.mv-jumbotron::after {
	background-color: rgba(0, 0, 0, 0.3);
	content: "";
	height: 100%;
	left: 0;
	pointer-events: none; /* フィルターの下の画像をクリック可能にする */
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.mv-jumbotron__inner {
	padding-top: 210px;
}

.mv .mv-h2 {
	text-align: center;
}

.mv .mv-h2::first-letter {
	color: #cd0000;
}

.mv .mv-h2__en {
	color: white;
	font-family: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 60px;
	font-weight: bold;
	line-height: 1.2;
}

.mv .mv-h2__ja {
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 5px;
	color: white;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.2;
	padding: 10px 25px;
}

/* =====================================================
# 404
===================================================== */

.entry-404 {
	padding-block: 200px;
	text-align: center;
}

.entry-404-head {
	color: #f0cdd0;
	font-family: "Lato", sans-serif;
	font-size: 80px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 36px;
}

.entry-404-head span::after {
	content: " ";
}

.entry-404-lead {
	color: #808080;
	font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 24px;
}

.entry-404-lead .m_sp {
	display: none;
}

.entry-404-content {
	color: #808080;
}

.entry-404-btn {
	margin-top: 58px;
}

.entry-404-btn .btn {
	background: #ebebeb;
	color: #8d8d8d;
}

.entry-404-btn .btn:hover {
	background: #ccc;
	opacity: 1;
}

/* 共通パーツ
----------------------------------------------------- */

.section {
	padding-block: 50px 100px;
}

.inner {
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 15px;
}

.top-inner {
	margin-inline: auto;
	max-width: calc(1370px + 30px);
	padding-inline: 15px;
}

.heading {
	font-family: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 80px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}

.heading::first-letter {
	color: #cd0000;
}

.section__line {
	background-color: #212e53;
	height: 1px;
	width: 100%;
}

.list {
	font-feature-settings: normal;
	display: block;
	padding-left: 17px;
	text-indent: -17px;
}

.text-right {
	text-align: right;
}

.btn {
	background-color: #cd0000;
	border: 1px solid #fff;
	border-radius: 35px;
	color: #fff;
	display: inline-block;
	font-size: 30px;
	height: 70px;
	letter-spacing: 1px;
	line-height: 66px;
	padding-inline: 24px;
	position: relative;
	text-align: center;
	transition: background-color 0.3s;
	width: 430px;
}

.btn:after {
	background: url(/wp-content/themes/hc/img/common/chevron-right_white.webp) center center/contain no-repeat;
	content: "";
	display: inline-block;
	height: 16px;
	position: absolute;
	right: 0.83em;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s;
	width: 12px;
}

#price,
#spec {
	margin-top: -100px;
	padding-top: 100px;
}

/* 左から右にカーテン
---------------------------------------------------- */

.curtainLefttoRight {
	position: relative;
}

.curtainLefttoRight.visible {
	animation-duration: 1.2s;
	animation-name: curtainLeftFadeIn;
	animation-timing-function: ease-in-out;
}

.curtainLefttoRight.visible:before {
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
	animation-name: curtainLeft;
	animation-timing-function: ease-in-out;
	background-color: #000;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleX(0);
	width: 100%;
	z-index: 999;
}

/* FLOCSS
----------------------------------------------------- */

/* FLOCSS
----------------------------------------------------- */

/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */

/* ============================================ */

*,
::before,
::after {
	border-style: solid;
	border-width: 0;
	box-sizing: border-box;
}

/* Document */

/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
	-webkit-text-size-adjust: 100%; /* 2 */
	-webkit-tap-highlight-color: transparent; /* 3*/
	line-height: 1.15; /* 1 */
}

/* Sections */

/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
	display: block;
}

/* Vertical rhythm */

/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
	margin: 0;
}

/* Headings */

/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
}

/* Lists (enumeration) */

/* ============================================ */

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Lists (definition) */

/* ============================================ */

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

/* Grouping content */

/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	border-top-width: 1px;
	box-sizing: content-box; /* 1 */
	clear: both;
	color: inherit;
	height: 0; /* 1 */
	margin: 0;
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: inherit; /* 2 */
}

address {
	font-style: inherit;
}

/* Text-level semantics */

/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content */

/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

img,
embed,
object,
iframe {
	vertical-align: bottom;
}

img {
	max-width: 100%;
}

/* Forms */

/* ============================================ */

/**
 * Reset form fields to make them styleable
 */

button,
input,
optgroup,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0;
	color: inherit;
	font: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	text-align: inherit;
	vertical-align: middle;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */

[type=checkbox] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}

[type=radio] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
	cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */

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

/**
 * Remove padding
 */

option {
	padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
	margin: 0;
	min-width: 0;
	padding: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */

[type=search] {
	outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/**
 * Clickable labels
 */

label[for] {
	cursor: pointer;
}

/* Interactive */

/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable] {
	outline: none;
}

/* Table */

/* ============================================ */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption {
	text-align: left;
}

td,
th {
	padding: 0;
	vertical-align: top;
}

th {
	font-weight: bold;
	text-align: left;
}

/* Misc */

/* ============================================ */

/**
 * Add the correct display in IE 10+.
 */

template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
	display: none;
}

main {
	overflow: hidden; /*横スクロールの発生を防止*/
}

body {
	color: #222;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

a {
	transition: 0.25s;
}

a:hover {
	text-decoration: none;
}

img {
	height: auto;
}

/* FLOCSS
----------------------------------------------------- */

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1110px;
	padding-bottom: 50px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 50px;
}

.l-inner--has-column {
	display: grid;
	gap: 40px;
	grid-template-columns: 3fr minmax(260px, 1fr);
}

/* FLOCSS
----------------------------------------------------- */

.c-btn {
	background-color: #e25c00;
	border: 2px solid transparent;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	color: #fff;
	display: inline-block;
	font-size: 17px;
	max-width: 100%;
	padding: 20px 10px;
	text-align: center;
	text-decoration: none;
	transition: 0.25s;
	width: 300px;
}

.c-btn:focus,
.c-btn:hover {
	background-color: #fff;
	border-color: currentColor;
	color: #e25c00;
}

.c-btn--arrow-right {
	padding-left: 13.8px;
	padding-right: 20px;
	position: relative;
}

.c-btn--arrow-right::after {
	content: "\f061";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 8.3px;
	top: 50%;
	transform: translateY(-50%);
}

.c-btn--icon {
	padding-left: 13.8px;
	padding-right: 20px;
	position: relative;
}

.c-btn--icon::after {
	background: transparent url(/images/nav_07.png) no-repeat center center/contain;
	content: "";
	height: 60px;
	left: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
}

.c-btn--large {
	font-size: 20px;
	padding-bottom: 25px;
	padding-top: 25px;
	width: 340px;
}

.c-btn--warning {
	background-color: #f1de00;
	color: #222;
}

.c-btn--warning:focus,
.c-btn--warning:hover {
	border-color: #f1de00;
	color: #222;
}

.c-rounded-btn {
	background-color: #e25c00;
	border: 2px solid transparent;
	border-bottom-color: #d40152;
	border-radius: 10px;
	color: #fff;
	display: inline-block;
	font-size: 17px;
	max-width: 100%;
	padding: 15px 10px;
	text-align: center;
	text-decoration: none;
	transition: 0.25s;
	width: 236px;
}

.c-rounded-btn:focus,
.c-rounded-btn:hover {
	background-color: #fff;
	border-color: currentColor;
	color: #e25c00;
}

.c-before-icon-btn {
	border: 1px solid currentColor;
	color: #e25c00;
	display: inline-block;
	padding: 0.2em 0.3em;
	position: relative;
	text-decoration: none;
	transition: 0.25s;
}

.c-before-icon-btn:focus,
.c-before-icon-btn:hover {
	background-color: #e25c00;
	color: #fff;
}

.c-before-icon-btn::before {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 0.5em;
}

.c-before-icon-btn--download::before {
	content: "\f019";
}

.c-before-icon-btn--zoom::before {
	content: "\f00e";
	transform: translateY(-6%);
}

/* FLOCSS
----------------------------------------------------- */

.p-breadcrumb {
	display: flex;
	list-style: none;
	margin: 10px 20px;
	padding: 0;
}

.p-breadcrumb li {
	list-style: none;
}

.p-breadcrumb li:after {
	content: ">";
	padding: 0 5px;
}

.p-breadcrumb li:last-child:after {
	content: "";
}

.p-breadcrumb li a {
	text-decoration: none;
}

.p-breadcrumb li a:hover {
	text-decoration: underline;
}

.p-breadcrumb .u-current {
	color: #212e53;
}

.mb-1 {
	margin-bottom: 10px;
}

.mb-2 {
	margin-bottom: 20px;
}

.mb-3 {
	margin-bottom: 30px;
}

.mb-4 {
	margin-bottom: 40px;
}

.mb-5 {
	margin-bottom: 50px;
}

.mb-6 {
	margin-bottom: 60px;
}

.mb-7 {
	margin-bottom: 70px;
}

.mb-8 {
	margin-bottom: 80px;
}

.mb-9 {
	margin-bottom: 90px;
}

.mb-10 {
	margin-bottom: 100px;
}

.mt-1 {
	margin-top: 10px;
}

.mt-2 {
	margin-top: 20px;
}

.mt-3 {
	margin-top: 30px;
}

.mt-4 {
	margin-top: 40px;
}

.mt-5 {
	margin-top: 50px;
}

.mt-6 {
	margin-top: 60px;
}

.mt-7 {
	margin-top: 70px;
}

.mt-8 {
	margin-top: 80px;
}

.mt-9 {
	margin-top: 90px;
}

.mt-10 {
	margin-top: 100px;
}

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

#page_top a:focus,
#page_top a:hover {
	opacity: 0.6;
}

.top-header-nav__link:hover {
	color: white;
}

.top-header-nav__link:hover::after {
	transform: scale(1, 1);
}

.header-nav__link:hover {
	color: #000;
}

.header-nav__link:hover::after {
	transform: scale(1, 1);
}

#stay:hover::after,
.stay:hover::after {
	left: 50%;
	transform: scale(1, 1);
	transform: translateX(-50%);
}

.footer__use a:focus,
.footer__use a:hover {
	background-color: #000;
}

.btn:hover {
	background-color: #f28989;
}

.btn:hover::after {
	transform: translateX(5px) translateY(-50%);
}

.hidden-pc {
	display: none;
}

}

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

.hidden-tab {
	display: none;
}

}

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

.top-contact__title {
	font-size: 55px;
}

.top-intro__catch {
	font-size: 50px;
}

.mv {
	background-color: #fff;
}

.mv-jumbotron__inner {
	padding-top: 190px;
}

.heading {
	font-size: 65px;
}

}

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

.top-contact__title {
	font-size: 45px;
}

.top-intro__catch {
	font-size: 40px;
}

.heading {
	font-size: 55px;
}

}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {

.top-contact__title {
	font-size: 35px;
}

.top-intro__catch {
	font-size: 24px;
}

.heading {
	font-size: 45px;
}

}

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

.mv-jumbotron__inner {
	padding-top: 120px;
}

}

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

.top-contact__text {
	font-size: 25px;
}

}

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

.top-contact__text {
	font-size: 20px;
	margin-top: 30px;
}

}

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

/* #page_top {
	bottom: 60px;
} */

#page_top a {
	height: 55px;
	line-height: 55px;
	width: 55px;
}

.top-header__inner,
.header__inner {
	align-items: center;
	height: 80px;
	padding-inline: 15px;
}

.top-header-nav-area,
.header-nav-area {
	display: none;
}

.top-header-nav,
.header-nav {
	flex-direction: column;
	padding-top: 10px;
}

.top-header-nav__item,
.header-nav__item {
	margin-bottom: 10px;
}

.top-header-nav__item + .top-header-nav__item,
.top-header-nav__item + .header-nav__item,
.header-nav__item + .top-header-nav__item,
.header-nav__item + .header-nav__item {
	margin-left: 0px;
}

.top-header__inner {
	height: 80px;
}

.header {
	background-color: transparent;
}

.header__inner {
	height: 80px;
}

.drawer-icon {
	display: block;
}

.drawer-content ul li .no-border {
	border-bottom-width: 0 !important;
}

.drawer-content ul li .border-top {
	border-top: 1px dotted #fff;
}

#stay::after,
.stay::after {
	display: none;
}

.policy {
	padding-block: 50px;
}

.policy__title {
	font-size: 19px;
}

.policy__content ul {
	padding-left: 0px;
}

.footer {
	padding-block: 25px;
}

.footer__content {
	flex-direction: column;
}

.footer__use {
	margin-top: 20px;
}

.fv__head .ja-title-header,
.fv__head .ja-title-footer {
	font-size: 22px;
	padding: 5px 10px 8px;
}

.fv__head .ja-title-header {
	font-size: 22px;
}

.fv__head .ja-title-footer {
	font-size: 26px;
}

.fv-wrapper {
	height: 60vh;
}

.fv-slide img {
	-o-object-position: 58% 0%;
	height: 60vh;
	object-position: 58% 0%;
}

.photographer {
	bottom: 4%;
	font-size: 12px;
}

.scroll {
	bottom: 65px;
}

.scroll::after {
	bottom: -65px;
	height: 50px;
}

.top-contact__text .tel {
	font-size: 35px;
}

.contact__privacy {
	margin-top: 30px;
}

.send {
	padding-block: 50px;
}

.top-intro {
	padding-block: 50px;
}

.top-spec__item {
	margin-top: 30px;
}

.top-spec__media {
	grid-template-columns: 1fr;
	margin-top: 50px;
}

.company-table {
	margin-top: 30px;
}

.company-table table {
	font-size: 20px;
}

.company-table th {
	background-color: #efefef;
	border-right: 0;
	padding: 10px;
	width: 100%;
}

.company-table th:first-child {
	border-top-width: 0;
}

.company-table td {
	border-bottom-width: 0;
}

.company-table td:first-of-type {
	border-top-width: 0;
}

.company-table td {
	width: 100%;
}

.company-table tr {
	display: flex;
	flex-direction: column;
}

.top-price__hour {
	font-size: 16px;
}

.mv-jumbotron {
	height: 260px;
}

.mv .mv-h2 {
	width: 100%;
}

.mv .mv-h2__en {
	font-size: 35px;
}

.mv .mv-h2__ja {
	font-size: 30px;
}

.section {
	padding-block: 30px 50px;
}

.btn {
	font-size: 20px;
	height: 55px;
	line-height: 53px;
	width: 100%;
}

.l-inner--has-column {
	grid-template-columns: 1fr;
}

.p-breadcrumb {
	font-size: 14px;
}

.hidden-sp {
	display: none;
}

.mb-2 {
	margin-bottom: 10px;
}

.mb-3 {
	margin-bottom: 15px;
}

.mb-4 {
	margin-bottom: 20px;
}

.mb-5 {
	margin-bottom: 25px;
}

.mb-6 {
	margin-bottom: 30px;
}

.mb-7 {
	margin-bottom: 35px;
}

.mb-8 {
	margin-bottom: 40px;
}

.mb-9 {
	margin-bottom: 45px;
}

.mb-10 {
	margin-bottom: 50px;
}

.mt-2 {
	margin-top: 10px;
}

.mt-3 {
	margin-top: 15px;
}

.mt-4 {
	margin-top: 20px;
}

.mt-5 {
	margin-top: 25px;
}

.mt-6 {
	margin-top: 30px;
}

.mt-7 {
	margin-top: 35px;
}

.mt-8 {
	margin-top: 40px;
}

.mt-9 {
	margin-top: 45px;
}

.mt-10 {
	margin-top: 50px;
}

}

@keyframes UpAnime {

from {
	opacity: 1;
	transform: translateY(0);
}

to {
	opacity: 0;
	transform: translateY(-100px);
}

}

@keyframes DownAnime {

from {
	opacity: 0;
	transform: translateY(-100px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes zoomUp {

0% {
	transform: scale(1);
}

100% {
	transform: scale(1.15);
}

}

@keyframes scroll {

0% {
	transform: scale(1, 0);
	transform-origin: 0 0;
}

50% {
	transform: scale(1, 1);
	transform-origin: 0 0;
}

50.1% {
	transform: scale(1, 1);
	transform-origin: 0 100%;
}

100% {
	transform: scale(1, 0);
	transform-origin: 0 100%;
}

}

@keyframes curtainLeftFadeIn {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes curtainLeft {

0% {
	transform: scaleX(0);
	transform-origin: left;
}

50% {
	transform: scaleX(1);
	transform-origin: left;
}

50.001% {
	transform-origin: right;
}

100% {
	transform: scaleX(0);
	transform-origin: right;
}

}

