@charset "UTF-8";
:root {
	/* 設計幅÷10（従来の命名を踏襲） */
	--liquid-npcDesignRatio: calc(1920 / 10);
	--liquid-spcDesignRatio: calc(1366 / 10);
	--liquid-ltbDesignRatio: calc(1024 / 10);
	--liquid-ntbDesignRatio: calc(820 / 10);
	--liquid-spDesignRatio: calc(390 / 10);
	/* 追加：viewport単位のエイリアスと既定値 */
	--liquid-viewport: 100vw; /* フォールバック */
	--liquid-htmlroot: 10px; /* ≥1920px は 1rem=10px */
	--rem-min: 9px; /* 最小の読みやすさ下限（お好みで 8.5〜10px） */
	--rem-max: 10px; /* 上限は10pxで頭打ち */

}

/* 対応環境ではスクロールUIの影響を受けない svw を使用 */
@supports (width: 1svw) {
	:root {
		--liquid-viewport: 100svw;
	}
}
/* html の基準サイズは常に変数経由で決定（可読性ガード付き） */
html {
	font-size: clamp(var(--rem-min), var(--liquid-htmlroot), var(--rem-max));
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

/* 以下、幅に応じて 1rem を線形スケール（ロジックは従来どおり） */
@media screen and (max-width: 1920px) {
	:root {
		--liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-npcDesignRatio));
	}
}
@media screen and (max-width: 1366px) {
	:root {
		--liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-spcDesignRatio));
	}
}
@media screen and (max-width: 1024px) {
	:root {
		--liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-ltbDesignRatio));
	}
}
@media screen and (max-width: 820px) {
	:root {
		--liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-ntbDesignRatio));
	}
}
@media screen and (max-width: 520px) {
	:root {
		--liquid-htmlroot: calc(var(--liquid-viewport) / var(--liquid-spDesignRatio));
	}
}
/* ----------------------------------------------------------------------
基本設定
---------------------------------------------------------------------- */
body {
	font-family:Montserrat, "Noto Sans JP", "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.05em;
	color: #333;
	font-weight: 500;
	line-height: 1.8;
	font-size: 16px;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	transition-duration: 0.3s;
	transition-timing-function: ease;
}

.inner {
	width: 85%;
	margin: 0 auto;
	max-width: 1400px;
}

.pc {
	display: none;
}

.sp {
	display: inline-block;
}

.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 38px;
	height: 0;
	overflow: hidden;
}
.ggmap iframe, .ggmap object, .ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.textindent {
	text-indent: -1em;
	padding-left: 1em;
}


@media screen and (min-width: 768px) {
	.pc {
		display: inline-block;
	}
	.sp {
		display: none;
	}
	.text-center-pc {
		text-align: center;
	}
}

/* ----------------------------------------------------------------------
共通
---------------------------------------------------------------------- */
main{padding-top: 100px;}

/* セクションタイトル：ABOUT US / WORKS などの装飾 */
.section-title .en {
	font-size: 6.4rem;
	color: #8F0000;
	letter-spacing: 0.4em;
	text-align: center;
	font-weight: 700;
	line-height: 6.4rem;
	margin-bottom:2.2rem;
}
.section-title h2 {
	font-size: 3.2rem;
	color: #8F0000;
	letter-spacing: 0.4em;
	text-align: center;
	line-height: 3.2rem;
	margin-bottom: 5.8rem;
}

@media screen and (max-width: 1366px) {
	.section-title .en {
		font-size: 5.5rem;
		line-height: 5.5rem;
	}
	.section-title h2 {
		font-size: 2.8rem;
		line-height: 2.8rem;
	}
}


@media screen and (max-width: 1024px) {
	.section-title .en {
		font-size: 4.5rem;
		line-height: 4.5rem;
		margin-bottom: 1.5rem;
	}
	.section-title h2 {
		font-size: 2.4rem;
		line-height: 2.4rem;
	}
}

@media screen and (max-width: 768px) {
	.section-title .en {
		font-size: 4rem;
		line-height: 4rem;
	}
	.section-title h2 {
		font-size: 2rem;
		line-height: 2rem;
		margin-bottom: 4rem;
	}
	.inner {
		width: 90%;
	}
}
@media screen and (max-width: 520px) {
	main{padding-top: 60px;}
	.section-title .en {
		font-size: 3.6rem;
		line-height: 3.5rem;
	}
	.section-title h2 {
		font-size: 1.8rem;
		line-height: 1.8rem;
	}
}
@media screen and (max-width: 414px) {
	.section-title .en {
		font-size: 3.6rem;
		line-height:2.8rem;
		letter-spacing:0.2em;
	}
	.section-title h2 {
		font-size: 1.6rem;
		line-height: 1.6rem;
		margin-bottom: 3rem;
	}
}

/* ----------------------------------------------------------------------
ヘッダー
---------------------------------------------------------------------- */

header{
	border-top: solid 4px #851D1D;
	width: 100%;
	height: 100px;
	position: absolute;
	top: 0;
	left: 0;
	background:#fff;
	z-index:10;
}
header.fixed{
	position: fixed;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
 	animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards; 
}
@keyframes slideIn {
  0% {
    transform: translateY(-180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

header .logo_wrapper img{
	background-color: #fff;
	padding: 32px 26px;
	border-radius: 0 0 20px 0;
}

header.fixed .logo_wrapper img{
	background-color:transparent;
	width:12rem;
	height:auto;
	padding:3rem;
}
@media screen and (max-width: 520px) {
	header.fixed{
		height:60px;
	}
	header.fixed .logo_wrapper img{
		padding:1.0rem;
		width:7rem;
	}
}

/* メニュー */

header nav .nav-wrapper #main-nav {
	position: absolute;
	right: 26px;
	top:25px;
	display: flex;
	align-items: center;
}

header nav .nav-wrapper .nav_btn {
	display: none;
}

header nav .nav-wrapper #main-nav .navbar-nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	font-weight: bold;
	margin-right: clamp(5px, calc(4.578313253vw + -42px), 24px);
	position:relative;
}

header nav .nav-wrapper #main-nav ul {
	display: flex;
	gap: 10px;
	list-style: none;
}

header nav .nav-wrapper #main-nav ul#menu li a {
	position: relative;
	display: inline-block;
	color: #8F0000;
	padding:4px 10px;
	line-height: 16px; /* 100% */
	letter-spacing: 1.6px;
}

header nav .nav-wrapper .nav_btn {
	display: none;
}
header nav .nav-wrapper .nav_toggle {
	display: none;
}

header nav .nav-wrapper #main-nav .menu_contact_btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 50px;
	background-color:#8F0000;
	line-height: 50px;
	border-radius: 25px;
	color: #FFF;
	font-size: 16px;
	transition:0.3s;
	border:1px solid #8F0000;
}
header nav .nav-wrapper #main-nav .menu_contact_btn a:hover{
	background-color: #fff;
	color:#8F0000;
}

/* メニューの黄色背景（PCの時のみ）*/	
@media screen and (min-width: 1025px) {
	/* 黄色背景（初期は非表示） */
	header nav .nav-wrapper #main-nav ul#menu li a::before{
		content:"";
		position:absolute;
		inset:0;
		background:#EFB13C;
		transform: scaleX(0);
		transform-origin:left;
		transition: transform .25s ease;
		z-index:-1; /* 文字の後ろ */
	}
	/* hoverで表示 */
	header nav .nav-wrapper #main-nav ul#menu li a:hover::before,
	header nav .nav-wrapper #main-nav ul#menu li a:focus-visible::before{
		transform: scaleX(1);
	}
	/* クリック後に残す */
	header nav .nav-wrapper #main-nav ul#menu li a.current::before{
		transform: scaleX(1);
	}
}

@media screen and (max-width: 1366px) {
	header .logo_wrapper img {
		width:180px;
		height:auto;
		padding: 25px;
		border-radius: 0 0 20px 0;
	}
}

/* タブレット */	
@media screen and (max-width: 1024px) {
	header nav .nav-wrapper .nav_btn {
		position: absolute;
		right: 3rem;
		top: 50%;
		transform: translateY(-50%);
		width: 40px;
		height: 41px;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 99;
	}
	header nav .nav-wrapper .nav_btn .nav_toggle {
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
	}
	header nav .nav-wrapper .nav_btn .nav_toggle .nav_toggle_menu {
		position: absolute;
		bottom: 0;
		text-align: center;
		left: 50%;
		transform: translateX(-50%);
		color: #8F0000;
		font-size: 10px;
		line-height: 1;
		font-family: "Montserrat", sans-serif;
	}
	header nav .nav-wrapper .nav_btn .nav_toggle i {
		transition: all 0.5s;
		display: block;
		width: 40px;
		height: 2px;
		border-radius: 2px;
		left: 0;
		position: absolute;
		background-color: #8F0000;
	}
	header nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(1) {
		top: 0px;
	}
	header nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(2) {
		top: 11px;
	}
	header nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(3) {
		top: 22px;
	}
	header nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(1) {
		transform: translateY(11px) translateX(0) rotate(30deg);
		top: 0px;
	}
	header nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(2) {
		display: none;
	}
	header nav .nav-wrapper .nav_btn.show .nav_toggle i:nth-child(3) {
		transform: translateY(-11px) translateX(0) rotate(-30deg);
		top: 21px;
	}
	header nav .nav-wrapper #main-nav {
		top: 0;
		right: -120%;
		transition: all 0.5s;
		position: fixed;
		width: 100%;
		height: 100vh;
		max-width: 420px;
		z-index: 98;
		padding: 100px 40px 40px;
		line-height: 1.5;
		background-color: #fff;
		flex-direction: column;
	}
	header nav .nav-wrapper #main-nav ul#menu {
		flex-wrap: wrap;
		gap: 0;
		border-top: solid 1px #b3b3b3;
	}
	header nav .nav-wrapper #main-nav ul#menu li {
		width: 100%;
		border-bottom: solid 1px #b3b3b3;
	}
	header nav .nav-wrapper #main-nav ul#menu li a {
		display: block;
		padding: 30px 20px;
		position: relative;
	}
	header nav .nav-wrapper #main-nav ul#menu li a::after {
		content: "";
		width: 3px;
		height: 6px;
		background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.47%22%20height%3D%2210.84%22%20viewBox%3D%220%200%206.47%2010.84%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.a%20%7B%20fill%3A%20none%3B%20stroke%3A%20%230B1A32%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%202px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cpolyline%20class%3D%22a%22%20points%3D%221%201%205.47%205.47%201.09%209.84%22%2F%3E%3C%2Fsvg%3E);
		position: absolute;
		top: 0;
		bottom: 0;
		right: 13px;
		margin: auto;
		z-index: 999;
		background-repeat: no-repeat;
		background-size: cover;
	} 
	header nav .nav-wrapper #main-nav.show {
		right: 0;
		top: 0;
	} 
	header nav .header_contact {
		right: 60px;
	}
	header nav .nav-wrapper #main-nav .menu_contact_btn a{
		margin-top:2rem;
	}

}
/* スマホ */
@media screen and (max-width: 520px) {
	header{
		height:60px;
	}
	header .logo_wrapper img{
		width:110px;
		height:95px;
	}
	header nav .nav-wrapper .nav_btn{
		height:30px;
		right:20px;
	}
	header nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(2){
		top:7px;
	}
	header nav .nav-wrapper .nav_btn .nav_toggle i:nth-child(3){
		top:14px;
	}
}


/* ----------------------------------------------------------------------
フッター
---------------------------------------------------------------------- */
.site-footer {
	background: linear-gradient(178deg, rgba(206, 45, 45, 1) 0%, rgba(128, 23, 23, 1) 100%); /* 元の数値をそのまま適用 */
	color: #fff;
	padding-top: 16rem;
}

.home .grecaptcha-badge {
	visibility: hidden;
}

footer .contact_box {
	display: flex;
	gap: 13rem;
	margin-bottom: 6rem;
}

footer .contact_text,footer .contact_methods{
	width:50%;
}
footer .contact_text .text{
	line-height:2;
	letter-spacing:0.1em;
	font-weight: 400;
}

footer .section-title .en {
	color: #EEB03C;
	text-align: left;
}
footer .section-title h2 {
	color: #EEB03C;
	text-align: left;
	margin-bottom: 3.8rem;
	margin-bottom:2.0rem;
}

footer .footer_contact .tel a{
	display:block;
	font-size: 4rem;
	font-weight: 600;
	border-radius: 8px;
	border: 2px solid #EFB13C;
	color: #F2B33D;
	text-align: center;
	line-height: 0.7em;
	padding-top: 4.5rem;
	padding-bottom: 3.0rem;
	background-image: url(../images/tel.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 3rem 3rem;
	background-position: 23% 42%;
	margin-top: 1rem;
	margin-bottom: 3.7rem;
}


footer .footer_contact .tel a:hover{
	border: 2px solid #F2B33D;
	background:#F2B33D;
	color: #AA3737;
	background-image: url(../images/tel_red.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 3rem 3rem;
	background-position: 23% 42%;
}
footer .footer_contact .tel a img {
	filter: #AA3737;
}
footer .footer_contact .tel span{
	font-size: 1.6rem;
	letter-spacing: 0.1em;
}

footer .footer_contact .mail_btn a{
	display: block;
	font-size: 1.8rem;
	border-radius: 8px;
	border: 2px solid #EFB13C;
	background-color: #EFB13C;
	color: #AA3737;
	text-align: center;
	padding-top: 3.0rem;
	padding-bottom: 2.5rem;
	margin-top:1rem;
}
footer .footer_contact .mail_btn a:hover{
	border: 2px solid #cd8200;
	background-color:#cd8200;
	color:#fff;
}

footer .privacy{
	text-align:center;
	margin-top:1rem;
}
footer .privacy .button {
	margin-left: 0.5rem;
}
footer .privacy a {
	color: #F2B33D;
	text-decoration: underline;
}
footer .privacy a:hover {
	text-decoration: none;
}
footer .info_flex{
	display: flex;
	line-height: 2.3em;
	gap:16rem;
	padding-bottom: 16.5rem;
	font-weight:400;
}
footer .info_flex .footer-nav {
	display: flex;
	gap:7rem;
}
footer .info_flex .footer-nav a:hover{
	color:#EFB13C;
}
footer .inner{
	position:relative;
	z-index:5;
}

footer .logo_light_white{
	width:43rem;
	position:absolute;
	bottom:28rem;
	left:7rem;
	z-index:-1;
}
footer .logo_white{
	width:10.3rem;
	position:absolute;
	bottom:11rem;
	z-index:1;
}
footer .copyright{
	padding-bottom:10rem;
	text-align: right;
}
@media screen and (max-width: 1366px) {
	footer .contact_box {
		gap: 8rem;
	}
	footer .footer_contact .tel a {
		background-position: 15% 42%;
	}
	footer .footer_contact .tel a:hover {
		background-position: 15% 42%;
	}
}
@media screen and (max-width: 1024px) {
	footer .footer_contact .tel a {
		background-position: 5% 42%;
	}
	footer .footer_contact .tel a:hover {
		background-position: 5% 42%;
	}
}
@media screen and (max-width: 960px) {
	footer .contact_box {
		gap: 4rem;
	}
	footer .info_flex {
		flex-direction: column;
		gap: 6rem;
	}
	footer .info_flex .footer-nav {
		order: 1;
		gap: 4rem;
	}
	footer .info_flex .footer-nav ul{
		width:50%;
	}
	footer .info_flex .footer_info {
		order: 2;
	}
}

@media screen and (max-width: 820px) {
	footer .info_flex .footer-nav {
		gap: 0rem;
	}
	footer .contact_box {
		flex-direction: column;
	}
	footer .contact_text, footer .contact_methods {
		width: 100%;
	}
	footer .footer_contact .tel a {
		background-position: 25% 42%;
	}
	footer .footer_contact .tel a:hover {
		background-position: 25% 42%;
	}
}
@media screen and (max-width: 520px) {
	.site-footer {
		padding-top: 8rem;
		overflow: hidden;
	}
	footer .footer_contact .tel a {
		font-size: 3.5rem;
		background-position: 15% 42%;
	}
	footer .footer_contact .tel a:hover  {
		background-position: 15% 42%;
	}
	footer .logo_white{
		position:static;
		margin:0 auto;
	}
	footer .copyright{
		padding-top:3.0rem;
		padding-bottom:6.0rem;
	}
	footer .copyright div{
		text-align:center;
		font-size:14px;
	}
	footer .info_flex{
		padding-bottom:4.0rem;
		gap:4.0rem;
	}
	footer .info_flex .footer_info{
		text-align:center;
		font-size: 14px;
		line-height:1.8;
	}
}
@media screen and (max-width: 414px) {
	footer .footer_contact .tel a {
		background-position:7% 42%;
	}
	footer .footer_contact .tel a:hover  {
		background-position:7% 42%;
	}
	footer .contact_text .text{
		font-size:14px;
	}
}
@media screen and (max-width: 390px) {
	footer .footer_contact .tel a {
		background-position:5% 42%;
	}
	footer .footer_contact .tel a:hover  {
		background-position:5% 42%;
	}
}

/* ----------------------------------------------------------------------
ログイン画面
---------------------------------------------------------------------- */
#login h1 {
	height: 120px;
}

.login #login h1 a {
	width: 155px;
	height: 115px;
}

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

