html {
	overscroll-behavior: none;
}

body {
	font-family: "Noto Sans JP", sans-serif !important;
	position: relative;
	width: 100%;
	background: #fff;
	color: #000;
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
	font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
	font-weight: bold;
}

iframe {
	width: 100%;
	aspect-ratio: 16/9;
}

.strike,
.strike:hover,
a.strike:hover {
	text-decoration: line-through !important;
	opacity: 1 !important;
	cursor: default;
}

#scv_title {
	margin-top: 20px;
}

#scv {
	margin-bottom: 30px;
}

#scv img {
	/* border-radius: 5px; */
	background-color: #fff;
}

#scvr {
	margin-left: 20px;
	vertical-align: middle;
	line-height: 1;
	color: #fff;
}

#scvr:hover {
	color: #6391b8;
	text-decoration: none;
}

.btn_lg {
	padding: 14px 20px;
	border-radius: 25px;
	background-color: #000055;
	color: #fff;
	border: none;
	transition: all 0.5s ease;
}

.btn_lg.btn-secondary,
.btn_lg.btn-secondary:hover {
	border-radius: 25px;
	background-color: #c76156;
	color: #fff;
}

.btn_lg:hover {
	opacity: 0.7;
	text-decoration: none;
	color: #fff;
	transition: all 0.5s ease;
}

.disabled:hover {
	opacity: 1;
	cursor: default;
}

.btn:not(.btn-secondary),
.btn:not(.btn-secondary):hover {
	border-radius: 5px;
	background-color: #6391b8;
	color: #fff;
}

.btn.btn-secondary,
.btn.btn-secondary:hover {
	border-radius: 5px;
	background-color: #c76156;
	color: #fff;
}

.btn {
	padding: 2px 10px;
	font-size: inherit;
	transition: all 0.3s ease;
	text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.5);
	border-color: transparent;
	transition: all 0.5s ease;
}

.btn:hover {
	opacity: 0.8;
	color: #fff;
	border-color: transparent;
	transition: all 0.5s ease;
}

.btn:focus {
	box-shadow: none;
}

a {
	color: #000055;
	text-decoration: none;
}

.page-scroll {
	color: #000;
}

/*  ***********************************
		loading
 ***********************************  */

@keyframes spin {
	0% {
		transform: rotate(0);
		background: rgb(0, 0, 51);
		background: linear-gradient(
			0deg,
			rgba(255, 255, 255, 0.1) 25%,
			rgba(0, 0, 51) 100%
		);
	}

	100% {
		transform: rotate(360deg);
		background: rgb(0, 0, 51);
		background: linear-gradient(
			0deg,
			rgba(255, 255, 255, 0.1) 25%,
			rgba(0, 0, 51) 100%
		);
	}
}

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	text-align: center;
	background-color: #fff;
	vertical-align: middle;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.5s ease;
}

.loading.show {
	z-index: 99;
	opacity: 1;
	transition: all 0.5s ease;
}

.cb {
	margin: 0 auto;
	width: 50px;
	height: 50px;
	padding: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	animation: spin 1s linear 0s infinite;
}

.cc {
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 50%;
}

/*  ***********************************
		header
 ***********************************  */
header {
	overflow-x: hidden;
}

.logo {
	padding-left: 40px;
	position: fixed;
	font-size: 20px;
	letter-spacing: 0.1em;
	top: 26px;
	left: 26px;
	z-index: 89;
	color: #000;
	line-height: 0.8;
	background: url("../img/logo.png") 0 0 no-repeat;
}

.eng {
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 10px;
	letter-spacing: 0.5em;
	font-weight: 100;
}

#menu-btn-check:checked ~ .logo,
.logo.sp {
	position: fixed;
	top: -70px;
	left: 0;
}

#header {
	display: block;
	position: fixed;
	top: 0;
	width: 200px;
	height: 85px;
	background-color: #fff;
	z-index: 89;
}

#header2 {
	display: block;
	position: fixed;
	top: 0;
	width: 100%;
	height: 85px;
	background-color: #fff;
	z-index: 89;
}

/* ***********************************
		menu
 *********************************** */
#menu-btn-check {
	position: fixed;
	top: -100px;
	left: -100px;
}

.menu-btn {
	position: fixed;
	top: 20px;
	right: 10px;
	display: flex;
	height: 25px;
	width: 25px;
	background: transparent;
	justify-content: center;
	align-items: center;
	z-index: -90;
	opacity: 0;
	transition: all 0.3s ease-out 0s;
}

.menu-btn:hover {
	cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: "";
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 5px;
	background-color: #000055;
	position: absolute;
	transition: all 0.3s ease-out 0s;
}

.menu-btn span:before {
	bottom: 8px;
}

.menu-btn span:after {
	top: 8px;
}

#menu-btn-check:checked ~ .menu-btn {
	top: 30px;
	right: 30px;
	z-index: 90;
	opacity: 1;
	transition: all 0.3s ease-out 0s;
}

#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);
	transition: all 0.3s ease-out 0s;
}

#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	background-color: #000055;
	transform: rotate(45deg);
	transition: all 0.3s ease-out 0s;
}

#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	background-color: #000055;
	transform: rotate(-45deg);
	transition: all 0.3s ease-out 0s;
}

.navbar {
	width: 100%;
	position: fixed;
	top: 0;
	padding: 0;
	margin: 0;
	right: 0;
	z-index: 88;
	opacity: 1;
	background: #fff;
	transition: all 0.3s ease-out 0s;
	border-bottom: 1px solid #fff;
}

.navbar.scl {
	border-bottom: 1px solid #f8f8f8;
}

#menu-btn-check:checked ~ .navbar {
	top: 0px;
	right: 0px;
	z-index: 89;
	opacity: 1;
}

.menu-content {
	margin-left: auto;
	margin-right: 20px;
}

.navbar .nav-item a {
	color: #000;
}

.nav-item a.active {
	font-style: italic;
}

.nav-item .btn {
	padding: 5px 15px !important;
	color: #fff !important;
	font-size: 14px !important;
	top: 3px;
}

.nav-item .btn:hover {
	color: #fff !important;
}

.nav-item {
	line-height: 69px;
	padding: 0 10px;
}

.nav-item a {
	margin: 0;
}

.nav-item a:not(.btn):hover {
	opacity: 0.9;
}

.active_link {
	display: inline-block;
	transition: 0.3s;
	cursor: pointer;
}

.active_link:hover {
	transform: scale(1.05);
}

.none_link {
	color: #c76156 !important;
	opacity: 0.8;
}

.none_link:hover {
	cursor: default;
	color: #c76156 !important;
	opacity: 1 !important;
	text-decoration: none;
	opacity: 0.8 !important;
	animation: swingHorizontal 0.5s ease;
	animation-iteration-count: 1;
}

.section_box {
	background-color: #fdfdf7;
	padding: 5em 0;
	overflow: hidden;
	position: relative;
}

.section_box:first-of-type {
	margin-top: 85px;
}

.section_box:nth-child(odd) {
	background: #fff;
}

#section1 h2 {
	text-align: left;
}

.r50 {
	border-radius: 50px;
}

.r25 {
	border-radius: 25px;
}

.tr25 {
	border-radius: 25px 25px 0 0;
}

.br25 {
	border-radius: 0 0 25px 25px;
}

#since {
	position: relative;
	display: inline-block;
	border-radius: 15px;
	border: 1px solid #e5e7eb;
	background-color: #f0f2f5;
	padding: 4px 10px 4px 32px;
	margin-bottom: 30px;
	color: #666;
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 12px;
	letter-spacing: 0.3em;
	font-weight: 500;
}

#since::before {
	content: " ";
	position: absolute;
	top: 7px;
	left: 10px;
	display: inline;
	width: 14px;
	height: 14px;
	border-radius: 7px;
	background-color: #dba614;
}

#since::after {
	content: " ";
	position: absolute;
	display: inline;
	top: 11px;
	left: 14px;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: #000055;
}

#hero_right_flex {
	border-top: 1px solid #f8f8f8;
	margin-top: 50px;
	padding-top: 20px;
}

#hero_right_flex .big {
	font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
	font-size: 50px;
	font-weight: bold;
}

.img_title {
	position: absolute;
	left: 4%;
	bottom: 10%;
	font-size: 16px;
}

.img_tips {
	position: absolute;
	left: 4%;
	bottom: 5%;
	font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
	font-size: 30px;
}

.img_loc {
	position: absolute;
	right: 3%;
	bottom: 3%;
	background-color: #fff;
	padding: 14px 30px 14px 70px;
	border-radius: 25px;
	font-size: 12px;
}

.img_loc .gray {
	font-style: normal;
}

.img_loc_icon {
	position: absolute;
	right: 12%;
	bottom: 4.5%;
	font-size: 40px;
}

.right_tips {
	position: relative;
	display: inline-block;
	border-radius: 15px;
	border: 1px solid #e5e7eb;
	background-color: #f0f2f5;
	padding: 4px 10px;
	color: #666;
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 12px;
	letter-spacing: 0.3em;
	font-weight: 500;
}

.center_tips {
	position: relative;
	display: inline-block;
	border-radius: 15px;
	border: 1px solid #e5e7eb;
	background-color: #f0f2f5;
	padding: 4px 10px;
	margin-bottom: 30px;
	color: #666;
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 12px;
	letter-spacing: 0.3em;
	font-weight: 500;
}

.item_box {
	margin-top: 30px;
	position: relative;
}

.item_box .br25 {
	position: relative;
	background-color: #f0f2f5;
	padding: 25px;
}

.item_loc {
	color: #666;
	font-size: 12px;
}

.item_name {
	margin-top: 10px;
	font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
	font-size: 25px;
	font-weight: bold;
}

.item_des {
	margin-top: 10px;
	font-size: 14px;
	min-height: 135px;
}

.item_size {
	margin-top: 10px;
	font-size: 14px;
}

.item_price {
	margin-top: 10px;
	font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
}

.item_box .btn_lg {
	position: absolute;
	right: 25px;
	bottom: 25px;
}

.item_loc.sp {
	color: #d6a51d;
	font-size: 12px;
}

.item_box.sp .br25 {
	background-color: #000;
}

.item_box.sp .item_loc {
	color: #d6a51d;
}

.item_box.sp .item_name,
.item_box.sp .item_des,
.item_box.sp .item_size,
.item_box.sp .item_price {
	color: #fff;
}

.item_box.sp .btn_lg {
	background-color: #eebd35;
	color: #fff;
}

.labelp {
	position: absolute;
	top: 20px;
	left: 30px;
	display: inline-block;
	border-radius: 15px;
	border: 1px solid #e5e7eb;
	background-color: #f0f2f5;
	padding: 4px 10px;
	color: #666;
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 12px;
	letter-spacing: 0.3em;
	font-weight: 500;
}

.labell {
	position: absolute;
	top: 55px;
	left: 30px;
	display: inline-block;
	border-radius: 15px;
	border: 1px solid #000055;
	background-color: #000000;
	padding: 4px 10px;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 12px;
	letter-spacing: 0.3em;
	font-weight: 500;
}

.labeln {
	position: absolute;
	top: 20px;
	right: 30px;
	display: inline-block;
	border-radius: 15px;
	border: 1px solid #dba614;
	background-color: #eebd35;
	padding: 4px 10px;
	color: #000;
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 12px;
	letter-spacing: 0.3em;
	font-weight: 500;
}

.twf {
	width: 100%;
}

.twf td {
	padding: 10px 5px;
}

.google-map iframe {
	/* -webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%); */
	border-radius: 25px;
}

.cs_box {
	margin-top: 30px;
}

.cs_inner {
	padding: 25px;
	border-radius: 25px;
	background-color: #fff;
}

.cs_no {
	font-size: 30px;
	color: #29d88f;
}

.cs_no .fa-regular,
.cs_no .fa-solid {
	font-size: 20px;
}

.cs_title {
	margin-top: 10px;
	font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
	font-size: 25px;
	font-weight: bold;
}

.cs_des {
	margin-top: 10px;
}

#st_box {
	position: relative;
}

#st_inner {
	padding: 25px;
	border-radius: 25px;
	background-color: #fff;
}

.icon_wrap {
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 15px;
	background-color: #000055;
	color: #fff;
	margin-right: 10px;
}

.icon_wrap .fa-regular,
.icon_wrap .fa-solid {
	font-size: 20px;
}

.cv_box {
	position: relative;
}

.cv_inner {
	padding: 25px;
	border-radius: 25px;
	background-color: #fdfdf7;
}

.cv_img {
	width: 40px;
	height: 40px;
	border-radius: 20px;
	margin-right: 20px;
}

.q_icon {
	color: #dba614;
	font-size: 20px;
	margin: 20px 0;
}

.cv_box2 {
	height: 100%;
}

.cv_box2 .cv_inner {
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%),
		url("../img/cv3.png") left 20% no-repeat;
	height: 100%;
	color: #fff;
}

.cv_inner .big {
	font-family: "Shippori Mincho", "Noto Serif JP", serif !important;
	font-size: 25px;
}

.cv_box2 .eng {
	margin-top: 30px;
	color: #f0c757;
}

.cv_box3 .cv_inner {
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%),
		url("../img/cv4.png") left 20% no-repeat;
	height: 100%;
	color: #fff;
}

.center .center {
	text-align: center !important;
}

#pos_c {
	background-position: 50% 50%;
}

#order_btn {
	margin: 30px auto;
}

.count_of input[type="number"] {
	max-width: 2em;
}

#ks_of h3 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-family: inherit !important;
}

#bf p {
	margin-top: 10px;
}

#sign_name {
	width: 150px;
}

/*
	サブページ
*/

#tokusyouhou tr {
	border-bottom: 10px solid transparent;
}

#tokusyouhou th,
#tokusyouhou td {
	padding: 20px;
}

#tokusyouhou th {
	font-weight: 300;
	text-align: right;
	border-right: 3px solid #f8f8f8;
}

#privacy_policy h3 {
	margin-top: 30px;
	margin-bottom: 20px;
}

#contact,
#company {
	min-height: calc(100vh - 193px);
}

footer {
	margin: 0 !important;
	padding: 10px;
	background-color: #000055;
	color: #fff;
	font-size: 0.75rem;
}

#cf_form h3 {
	margin-bottom: 10px;
}

#cf_form p input[type="text"]:first-of-type,
#cf_form p input[type="email"]:first-of-type,
#cf_form p select:first-of-type {
	margin-right: 20px;
	margin-bottom: 20px;
}

#cf_form p input[type="text"],
#cf_form p input[type="email"] {
	max-width: 80%;
}

#cf_form textarea {
	width: 100%;
	min-height: 300px;
}

.cf_ng {
	border: 1px solid #c86157;
	background-color: #ffd4d0;
}

#confirmation_inner {
	overflow-y: auto;
	color: #000;
	font-weight: 400;
	background-color: #fff;
	max-width: 90%;
	max-height: 90vh;
	padding: 30px;
	margin: 5vh auto;
	position: relative;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
	z-index: 9999;
}

#confirmation_inner_box {
	overflow: hidden;
	border-radius: 25px;
}

.cf_title {
	color: #000055;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
	overflow-y: auto;
}

.cpc {
	padding: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ededed;
}

.cpc.odd {
	background-color: #fff;
}

.cpc p {
	margin-top: 10px;
}

#confirmation_inner .cal {
	padding: 20px;
	border-radius: 25px;
	background-color: #ededed;
}

#confirmation_inner table {
	width: 100%;
}

#confirmation_inner .pl-5 {
	width: 80px;
}

.count_of select {
	padding: 5px 0;
	width: 2rem;
	text-align: center;
}

.confirmation_text {
	padding-top: 20px;
	text-align: center;
}

#footer_menu,
address {
	padding: 20px 0;
}

#footer_menu a.footer_link {
	margin: 0 10px;
	color: #fff;
}

#top_img {
	width: 30%;
	display: block;
	margin: 0 auto;
}

#drop {
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
}

#drop span {
	background-color: rgba(0, 0, 0, 0.8);
	margin: 0 auto;
	padding: 20px;
	border-radius: 10px 10px 0 0;
}

#drop i.bi {
	margin-right: 10px;
}

footer {
	margin: 0;
}

/* mobile */
@media (max-width: 991px) {
	#header,
	#header2 {
		width: 100%;
		height: 50px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	}

	#hero {
		margin-top: 50px;
		padding-bottom: 100px;
	}

	.menu-content {
		margin-left: unset;
		margin-right: unset;
	}

	.nav {
		width: 100%;
		display: block;
	}

	.navbar {
		border-radius: 0 0 0 3px;
		top: 0;
		right: -100%;
		opacity: 0;
		min-height: 100vh;
		align-items: start;
		z-index: 90;
	}

	.logo,
	.logo.sp {
		position: fixed;
		top: 10px;
		left: 10px;
	}

	.nav-item {
		line-height: inherit !important;
		margin-top: 20px;
	}

	.menu-btn {
		top: 3px;
		right: 3px;
		height: 45px;
		width: 45px;
		z-index: 90;
		opacity: 1;
		transition: all 0.3s ease-out 0s;
	}

	#menu-btn-check:checked ~ .menu-btn {
		top: 3px;
		right: 3px;
		background: rgba(0, 0, 0, 0);
		border-radius: 5px;
		transition: all 0.3s ease-out 0s;
	}

	#menu-btn-check:checked ~ .navbar {
		top: 0;
		right: 0;
		opacity: 1;
		transition: all 0.3s ease-out 0s;
	}

	.section_box {
		padding: 90px 0;
	}

	.section_box:first-of-type {
		margin-top: 50px;
		padding: 50px 0;
	}

	#st_inner div {
		margin: 15px 0;
	}

	.right_tips {
		position: absolute;
		top: 0;
		left: 10px;
	}

	.img_title,
	.img_tips,
	.img_loc,
	.img_loc_icon {
		display: none;
	}

	#confirmation_inner {
		padding: 20px 10px;
	}

	#tokusyouhou table,
	#tokusyouhou tbody,
	#tokusyouhou tr,
	#tokusyouhou th,
	#tokusyouhou td {
		display: block;
	}

	#tokusyouhou tr {
		border-bottom: 0;
	}

	#tokusyouhou th,
	#tokusyouhou td {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	#tokusyouhou th {
		color: #6391b8;
		text-align: left;
		border-right: 0;
		padding-bottom: 0;
	}

	#cf_form input[type="checkbox"] {
		width: 13px !important;
		height: 13px !important;
	}
}

.relative {
	position: relative;
	overflow: hidden;
}

.ribbon {
	display: inline-block;
	position: absolute;
	padding: 5px 0;
	right: -43px;
	top: 25px;
	width: 160px;
	text-align: center;
	font-size: 18px;
	font-weight: 900;
	line-height: 16px;
	color: #fff;
	letter-spacing: 0.05em;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-top: dashed 1px rgba(255, 255, 255, 0.65);
	border-bottom: dashed 1px rgba(255, 255, 255, 0.65);
}

.ribbon {
	box-shadow: 0 0 0 2px #c76156;
	background: #c76156;
}

.ribbon_close {
	box-shadow: 0 0 0 2px #444444;
	background: #444444;
}

.tag_box {
	margin-bottom: 20px;
}

.tag_box .tag,
.tag_box .tag_red,
.tag_box .tag_green {
	margin-bottom: 10px;
}

.tag {
	position: relative;
	display: inline-block;
	padding: 5px 10px;
	margin-right: 10px;
	border-radius: 5px;
	background-color: #6391b8;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	font-weight: 500;
	font-size: 12px;
}

.tag_red {
	position: relative;
	display: inline-block;
	padding: 5px 10px;
	margin-right: 10px;
	border-radius: 5px;
	background-color: #c76156;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	font-weight: 500;
	font-size: 12px;
}

.tag_green {
	position: relative;
	display: inline-block;
	padding: 5px 10px;
	margin-right: 10px;
	border-radius: 5px;
	background-color: #22c483;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
	font-weight: 500;
	font-size: 12px;
}

.tag::before {
	content: "✓";
	margin-right: 5px;
}

.tag_red::before {
	content: "×";
	margin-right: 5px;
}

#titan_ta {
	margin-top: 5px;
	width: 100%;
	min-height: 80vh;
}
