@charset "UTF-8";

:root {
	--black: #272727;
	--white: #ffffff;
	--orange: #ff8f55;
	--orange-2: #fec662;
	--blue: #1f5bc5;
}

/* ------------------------------ */
/* 厨房センター */
/* 共通CSS */
/* common.css */
/* ------------------------------ */
/* ------------------------------ */
/* 基本 */
/* ------------------------------ */
body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	color: var(--black);
}

.container-fluid {
	padding: 0 40px;
}

.container {
	max-width: 1280px;
	padding: 0 40px;
}

.row {
	margin-left: -30px;
	margin-right: -30px;
}
.row > * {
	padding-left: 30px;
	padding-right: 30px;
}

.wrapper {
	padding-top: 106px;
	min-height: calc(100vh - 290px);
}

@media (max-width: 991px) {
	body {
		font-size: 12px;
	}
	.container-fluid {
		padding: 0 30px;
	}
	.container {
		padding: 0 30px;
	}
	.row {
		margin-left: -15px;
		margin-right: -15px;
	}
	.row > * {
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media (max-width: 767px) {
	body {
		font-size: 12px;
	}
	.container-fluid {
		padding: 0 15px;
	}
	.container {
		padding: 0 15px;
	}
	.wrapper {
		padding-top: 90px;
	}
	.row {
		margin-left: -7px;
		margin-right: -7px;
	}
	.row > * {
		padding-left: 7px;
		padding-right: 7px;
	}
}

/* タイトル関連 */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	color: var(--black);
	line-height: 1.5;
	letter-spacing: 0.05em;
	font-weight: 700;
	margin-bottom: 1.5em;
}

.big-title {
	position: relative;
	font-size: 32px;
	padding: 80px 0;
	margin-bottom: 0;
	max-width: 570px;
}
.big-title .text {
	position: relative;
	color: var(--white);
	margin-bottom: 0;
}
.big-title:before {
	position: absolute;
	content: "";
	top: 0;
	right: -30px;
	left: calc((100vw - 1260px) / -2 - 30px);
	bottom: 0;
	background-image: linear-gradient(to right, var(--orange), var(--orange-2));
	border-radius: 0 10px 10px 0;
}
.title-l {
	font-size: 32px;
}
.title-m {
	font-size: 20px;
}
.title-s {
	font-size: 16px;
}
.underline-orange {
	background-image: linear-gradient(90deg, var(--orange), var(--orange));
	background-position: left bottom;
	background-size: 100% 2px;
	background-repeat: no-repeat;
	transition: background-size 0.4s cubic-bezier(0.43, 0.05, 0.17, 1);
	padding-bottom: 0.6em;
}
@media (max-width: 1280px) {
	.big-title:before {
		left: -40px;
	}
}
@media (max-width: 991px) {
	.big-title {
		font-size: 24px;
		width: fit-content;
		padding-right: 30px;
		margin-bottom: 30px;
	}
	.big-title:before {
		width: auto;
		right: 0;
		left: -30px;
	}
	.title-l {
		font-size: 24px;
	}
	.underline-orange {
		padding-bottom: 0.5em;
	}
}
@media (max-width: 767px) {
	.big-title {
		font-size: 18px;
		padding: 20px 20px 20px 0;
		width: fit-content;
		min-width: 80%;
	}
	.big-title:before {
		left: -15px;
	}
	.title-l {
		font-size: 18px;
		margin-bottom: 2.125em;
	}
	.underline-orange {
		padding-bottom: 0.5em;
	}
}

/* テキスト関連 */
a {
	color: var(--black);
}
a:hover {
	text-decoration: none;
}
.wrapper p {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
	color: var(--black);
}
.wrapper .text-l {
	font-size: 18px;
	margin-bottom: 2em;
}
.wrapper .text-m {
	font-size: 16px;
	margin-bottom: 2em;
}
.wrapper .text-s {
	font-size: 14px;
	margin-bottom: 2em;
}
.wrapper .bold {
	font-weight: 700;
}
.wrapper img {
	max-width: 100%;
}
.wrapper .text-white {
	color: var(--white);
}
@media (max-width: 767px) {
	.wrapper p {
		font-size: 12px;
	}
	.wrapper .text-l {
		font-size: 14px;
		margin-bottom: 2em;
	}
	.wrapper .text-m {
		font-size: 12px;
		margin-bottom: 2.5em;
	}
	.wrapper .text-s {
		font-size: 12px;
		margin-bottom: 2.5em;
	}
}

/* テキストカラー */
.wrapper .orange {
	color: var(--orange);
}
.wrapper .bold {
	font-weight: 700;
}

/* ボタン */
.btn-has-arrow {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	color: var(--white);
	border: solid 1px var(--blue);
	background-color: var(--blue);
	border-radius: 100px;
	padding: 0.5em 1.25em 0.5em 1.75em;
	letter-spacing: 0.05em;
}
.btn-has-arrow:after {
	content: "";
	display: block;
	width: 1.75em;
	height: 1.75em;
	background-image: url("../img/common/arrow-line.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 28px;
	margin-left: 0.75em;
}

/* ------------------------------ */
/* ヘッダー */
/* ------------------------------ */
.g-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	padding: 25px 0 22px;
	background-color: var(--white);
	z-index: 100;
}
.g-header .container-fluid {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 767px) {
	.g-header {
		padding: 15px 0 30px;
	}
}

/* ロゴ */
.g-header .site-logo {
	display: block;
	line-height: 1;
	margin: 0;
}
@media (min-width: 768px) {
	.g-header .site-logo a {
		transition: opacity 0.3s;
	}
	.g-header .site-logo a:hover {
		opacity: 0.6;
	}
}
@media (max-width: 1199px) {
	.g-header .site-logo img {
		width: 250px;
	}
}
@media (max-width: 991px) {
	.g-header .site-logo img {
		width: 225px;
	}
}

/* ナビ */
.g-header .g-nav {
}
.g-header .g-nav ul {
	list-style: none;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 0;
}
.g-header .g-nav ul li a {
	color: var(--black);
}
@media (min-width: 768px) {
	.g-header .g-nav ul li a {
		background-image: linear-gradient(90deg, var(--blue), var(--blue));
		background-repeat: no-repeat;
		background-position: right bottom;
		background-size: 0% 1px;
		transition: background-size 0.3s, color 0.3s;
	}
	.g-header .g-nav ul li a:hover {
		background-position: left bottom;
		background-size: 100% 1px;
		color: var(--blue);
	}
}
@media (min-width: 992px) {
	.g-header .g-nav {
		display: flex;
		align-items: center;
	}
	.g-header .g-nav ul {
		display: flex;
		align-items: center;
		margin: 0 -1em;
		font-size: 18px;
	}
	.g-header .g-nav ul li {
		padding: 5px 1em;
	}
}
@media (max-width: 1199px) {
	.g-header .g-nav ul {
		font-size: 16px;
		margin: 0 -0.75em;
	}
	.g-header .g-nav ul li {
		padding: 5px 0.75em;
	}
}

/* 電話ボタン */
.g-header .g-nav .tell-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--white);
	height: 59px;
	width: 269px;
	background-color: var(--blue);
	border-radius: 100px;
	margin-left: 65px;
}
.g-header .g-nav .tell-btn .btn-text {
	display: inline-block;
	padding-left: 2em;
	background-image: url("../img/common/ico-tell.png");
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left;
	letter-spacing: 0.05em;
}
@media (min-width: 768px) {
	.g-header .g-nav .tell-btn {
		border: solid 1px var(--blue);
		transition: color 0.3s, background-color 0.3s;
	}
	.g-header .g-nav .tell-btn .btn-text {
		position: relative;
		padding-left: 1.5em;
		background-size: 32px;
	}
	.g-header .g-nav .tell-btn .btn-text::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: auto;
		height: 100%;
		aspect-ratio: 1;
		background-image: url(../img/common/ico-tell-blue.png);
		background-repeat: no-repeat;
		background-position: left;
		background-size: 32px;
		opacity: 0;
		transition: opacity 0.3s;
	}
	.g-header .g-nav .tell-btn:hover {
		color: var(--blue);
		background-color: var(--white);
	}
	.g-header .g-nav .tell-btn:hover .btn-text::before {
		opacity: 1;
	}
}
@media (max-width: 1200px) {
	.g-header .g-nav .tell-btn {
		margin-left: 25px;
	}
}
@media (max-width: 767px) {
	.g-header .g-nav .tell-btn {
		font-size: 20px;
		width: 220px;
		margin-left: 35px;
	}
}

/* ハンバーガー */
#hamburger {
	display: none;
}

@media (max-width: 991px) {
	#hamburger {
		position: relative;
		display: block;
		width: 45px;
		height: 45px;
		border: solid 1px var(--blue);
		border-radius: 10px;
		background-color: var(--blue);
		cursor: pointer;
		transition: transform 0.4s, background-color 0.4s;
	}
	#hamburger span {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 25px;
		border-top: solid 2px var(--white);
		transition: border-top 0.4s;
	}
	#hamburger span:nth-child(1) {
		transition: transform 0.4s;
		transform: translate(-50%, calc(-50% - 6px));
	}
	#hamburger span:nth-child(2) {
		transition: transform 0.4s, opacity 0.4s;
		transform: translate(-50%, -50%);
	}
	#hamburger span:nth-child(3) {
		transition: transform 0.4s;
		transform: translate(-50%, calc(-50% + 6px));
	}
	.g-header .nav-wrap {
		transition: opacity 0.3s, visibility 0.3s;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		top: 90px;
		right: 0;
		bottom: 0;
		left: 0;
		overflow: auto;
	}
	.g-header .close-box {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #000000;
		opacity: 0.5;
	}
	.g-header .g-nav {
		position: relative;
		background-color: var(--white);
		width: 100%;
		padding: 0;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	}
	.g-header .g-nav ul {
		width: 100%;
		border-top: solid 1px #dddddd;
		margin: 0;
	}
	.g-header .g-nav ul li {
		padding: 0;
		margin: 0;
		border-bottom: solid 1px #dddddd;
	}
	.g-header .g-nav ul li a {
		position: relative;
		display: block;
		color: var(--black);
		padding: 19px 10px;
	}
	.g-header .g-nav ul li a::after {
		content: "";
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
		width: 9px;
		height: 9px;
		border-style: solid;
		border-width: 2px 2px 0 0;
		border-color: var(--blue) var(--blue) transparent transparent;
	}
	.g-header .g-nav .tell-btn {
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	/* ナビオープン */
	.nav-open {
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
	}
	.nav-open #hamburger {
		transform: rotate(90deg);
		background-color: var(--white);
	}
	.nav-open #hamburger span {
		border-top: solid 2px var(--blue);
	}
	.nav-open #hamburger span:nth-child(1) {
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.nav-open #hamburger span:nth-child(2) {
		transform: translate(-50%, -50%) rotate(90deg);
		opacity: 0;
	}
	.nav-open #hamburger span:nth-child(3) {
		transform: translate(-50%, -50%) rotate(135deg);
	}
	.nav-open .nav-wrap {
		opacity: 1;
		visibility: visible;
	}
}

/* ------------------------------ */
/* フッター */
/* ------------------------------ */
.g-footer {
	background-color: rgb(242, 242, 242);
	padding: 80px 0;
	font-weight: 700;
}
@media (max-width: 767px) {
	.g-footer {
		padding: 40px 0 20px;
	}
}

/* サイト情報など */
.g-footer .info-wrap > *:last-child {
	margin-bottom: 0;
}
.g-footer .info-wrap .footer-logo {
	display: inline-block;
	margin-bottom: 35px;
}
.g-footer .info-wrap .site-name {
	letter-spacing: 0.05em;
}
.g-footer .info-wrap .addr {
	letter-spacing: 0.05em;
}
@media (min-width: 768px) {
	.g-footer .info-wrap .footer-logo {
		transition: opacity 0.3s;
	}
	.g-footer .info-wrap .footer-logo:hover {
		opacity: 0.6;
	}
}
@media (max-width: 767px) {
	.g-footer .info-wrap {
		text-align: center;
		font-size: 12px;
		margin-bottom: 30px;
	}
	.g-footer .info-wrap .footer-logo {
		margin-bottom: 20px;
	}
	.g-footer .info-wrap .footer-logo img {
		width: 161px;
	}
}

/* お問い合わせ */
.g-footer .tell-wrap > *:last-child {
	margin-bottom: 0;
}
.g-footer .tell-wrap .btn-wrap {
	margin-bottom: 12px;
}
.g-footer .tell-wrap .btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 269px;
	background-color: var(--blue);
	color: var(--white);
	font-size: 24px;
	font-weight: 700;
	min-height: 59px;
	border-radius: 100px;
	margin: 30px auto 0;
	padding: 0.25em 0.75em 0.25em 0.5em;
	letter-spacing: 0.05em;
}
.g-footer .tell-wrap .btn .popup-text {
	position: absolute;
	top: -10px;
	left: 50%;
	font-size: 14px;
	letter-spacing: 0;
	font-weight: 700;
	width: fit-content;
	text-wrap: nowrap;
	white-space: nowrap;
	padding: 0 10px;
	color: var(--blue);
	transform: translate(-50%, -100%);
}
.g-footer .tell-wrap .btn .popup-text::before,
.g-footer .tell-wrap .btn .popup-text::after {
	position: absolute;
	bottom: 2px;
	content: "";
	height: 15px;
	width: 1px;
	border-radius: 2px;
	background-color: var(--blue);
}
.g-footer .tell-wrap .btn .popup-text::before {
	left: 0;
	transform: rotate(-15deg);
}
.g-footer .tell-wrap .btn .popup-text::after {
	right: 0;
	transform: rotate(15deg);
}
.g-footer .tell-wrap .btn .btn-text {
	display: inline-block;
	padding-left: 1.9em;
	background-image: url("../img/common/ico-tell.png");
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: left;
	letter-spacing: 0.05em;
}
.g-footer .tell-wrap .hours {
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--blue);
}
@media (min-width: 768px) {
	.g-footer .tell-wrap .btn {
		border: solid 1px var(--blue);
		transition: color 0.3s, background-color 0.3s;
	}
	.g-footer .tell-wrap .btn .btn-text {
		position: relative;
		padding-left: 1.75em;
	}
	.g-footer .tell-wrap .btn .btn-text::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: auto;
		height: 100%;
		aspect-ratio: 1;
		background-image: url(../img/common/ico-tell-blue.png);
		background-repeat: no-repeat;
		background-position: left;
		background-size: 32px;
		opacity: 0;
		transition: opacity 0.3s;
	}
	.g-footer .tell-wrap .btn:hover {
		color: var(--blue);
		background-color: var(--white);
	}
	.g-footer .tell-wrap .btn:hover .btn-text::before {
		opacity: 1;
	}
}
@media (max-width: 767px) {
	.g-footer .tell-wrap {
		margin-bottom: 35px;
	}
}

/* プライバシーポリシー */
.g-footer .policy-wrap {
	display: flex;
	align-items: flex-end;
	height: 100%;
	width: fit-content;
	max-width: 100%;
	margin-left: auto;
	font-size: 10px;
}
.g-footer .policy-wrap .policy-inner > *:last-child {
	margin-bottom: 0;
}
.g-footer .policy-wrap .jp {
	letter-spacing: 0.05em;
}
.g-footer .policy-wrap .en {
	letter-spacing: 0.05em;
}
@media (max-width: 767px) {
	.g-footer .policy-wrap {
		display: block;
		text-align: center;
		width: 100%;
	}
}

table.simple-table {
	width: 100%;
	line-height: 2;
}
table.simple-table thead {
}
table.simple-table tbody {
}
table.simple-table tr {
	border-top: 1px solid var(--blue);
}
table.simple-table tr th,
table.simple-table tr td {
	font-weight: 400;
	padding: 25px 0;
	vertical-align: text-bottom;
}
table.simple-table tr th {
}
table.simple-table tr td {
}
