@charset "utf-8";
/* スマホ */
@media (width < 768px) {}

@media (max-width: 767.99px) {}

/* タブレット */
@media (width >=768px) {}

@media (width >=1024px) {}

@media (width >=768px) and (width < 1024px) {}

@media (width >=768px) and (width < 1280px) {}

@media (width >=1024px) and (width < 1280px) {}

@media (min-width: 768px) {}

@media (min-width: 1024px) {}

@media (min-width: 768px) and (max-width: 1023.99px) {}

@media (min-width: 768px) and (max-width: 1279.99px) {}

@media (min-width: 1024px) and (max-width: 1279.99px) {}

/* PC */
@media (width >=1280px) {}

@media (min-width: 1280px) {}

/* *****************************************************************************
// BaseのCSS
***************************************************************************** */
/* *************************************
// 変数定義
************************************* */
:root {
	--main-color: #dd0016;
	--sub-color: #fffbc6;
	--text-color: #333;
	--link-color: #b7ff50;
	--sub2-color: #fee2ea;
	--sub3-color: #eee7db;
	--sub4-color: #e9ffca;
	--sub5-color: #cfe6ef;
	--text02-color: #7d6241;
	--white-color: #fff;

	--default-space: 2rem;
}

/* *************************************
// Base
************************************* */
body {
	/* font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif; */
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-color);
	background-color: #fff;
	scroll-behavior: smooth;
	font-family: 'Noto Sans JP', sans-serif;
}

b,
strong {
	font-weight: 600;
}

a {
	color: var(--link-color)
}

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

pre {
	white-space: pre-wrap;
}

section {
	max-width: 100vw;
}

/* フォーム用 パーツ*/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
	display: block;
	width: 100%;
	max-width: 450px;
	background-color: #eaedf2;
	padding: 0 0.75rem;
	line-height: 2.5rem;
	border-radius: 3px;
	min-height: 40px;
}

textarea {
	max-height: 120px;
}

select {
	background-image: linear-gradient(-45deg, transparent 0%, transparent 50%, #ccc 50%, #ccc 100%), linear-gradient(45deg, transparent 0%, transparent 50%, #ccc 50%, #ccc 100%);
	background-position: right 0.25em center, right 0.75em center;
	background-size: 0.5em 0.5em, 0.5em 0.5em;
	background-repeat: no-repeat, no-repeat;
	padding-right: 2em;
}

input[type="radio"]+span,
input[type="checkbox"]+span {
	position: relative;
	cursor: pointer;
	padding-left: 1.5em;
	line-height: 2.5rem;
}

input[type="radio"]+span:before,
input[type="radio"]+span:after {
	content: "";
	display: block;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

input[type="radio"]+span:before {
	border: 1px solid var(--text-color);
	width: 1.2em;
	left: 0;
}

input[type="radio"]+span:after {
	background-color: var(--text-color);
	opacity: 0;
	width: 0.8em;
	left: 0.2em;
}

input[type="radio"]:checked+span::after {
	opacity: 1;
}

input[type="checkbox"]+span:before,
input[type="checkbox"]+span:after {
	content: "";
	display: block;
	position: absolute;
}

input[type="checkbox"]+span:before {
	aspect-ratio: 1 / 1;
	border: 1px solid var(--text-color);
	width: 1.2em;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

input[type="checkbox"]+span:after {
	border-bottom: 2px solid var(--text-color);
	border-left: 2px solid var(--text-color);
	opacity: 0;
	width: 0.8em;
	height: 0.4em;
	top: calc(50% - 0.3em);
	left: 0.2em;
	transform: rotate(-45deg);
}

input[type="checkbox"]:checked+span::after {
	opacity: 1;
}

input[type="date"] {
	align-items: center;
}

.wpcf7-list-item {
	line-height: 2.5rem;
}

.wpcf7-not-valid-tip {
	font-size: 0.8rem;
	font-weight: bold;
	margin: 0.5em 0 0;
}

::placeholder {
	color: #999;
}

/* *************************************
// 汎用ID・Class
************************************* */
#container {
	max-width: 100%;
}

.wrap {
	width: 96%;
	max-width: 1040px;
	margin: 0 auto;
}

.cf,
.clearfix {
	display: flow-root;
}

/* 旧clearfixの手法(必要があればコメントアウトを外す) */
.cf:after,
.clearfix:after {
	/*content: "";*/
	/*clear: both;*/
	/*display: block;*/
}

/* 行間 */
#content p {
	margin-bottom: 1rem;
}

/* PC・SPの表示 / 非表示 */
@media (width < 768px) {
	.pc_only {
		display: none;
	}
}

@media (width >=768px) {
	.sp_only {
		display: none;
	}
}

/*電話番号リンク*/
a[href^="tel:"] {
	text-decoration: none;
	color: inherit;
}

@media (width >=768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/* テーブル */
@media (width < 768px) {

	table.two_column tbody th,
	table.two_column tbody td {
		display: block;
	}
}

/* 分割 */
.flex,
.two_in_one,
.three_in_one,
.four_in_one,
.five_in_one,
.six_in_one {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.flex.reverse,
.two_in_one.reverse,
.three_in_one.reverse,
.four_in_one.reverse,
.five_in_one.reverse,
.six_in_one.reverse {
	flex-direction: row-reverse;
}

.flex>div,
.two_in_one>div,
.three_in_one>div,
.four_in_one>div,
.five_in_one>div,
.six_in_one>div {
	width: 100%;
}

@media (width >=768px) {

	/* 2分割 */
	.two_in_one>div {
		width: calc(100% / 2);
	}

	.flex>div:where(:nth-child(1):nth-last-child(2)),
	.flex>div:where(:nth-child(2):nth-last-child(1)) {
		width: calc(100% / 2);
	}

	/* 3分割 */
	.three_in_one>div {
		width: calc(100% / 3);
	}

	.flex>div:where(:nth-child(1):nth-last-child(3)),
	.flex>div:where(:nth-child(2):nth-last-child(2)),
	.flex>div:where(:nth-child(3):nth-last-child(1)) {
		width: calc(100% / 3);
	}

	/* 4分割 */
	.four_in_one>div {
		width: calc(100% / 4);
	}

	.flex>div:where(:nth-child(1):nth-last-child(4)),
	.flex>div:where(:nth-child(2):nth-last-child(3)),
	.flex>div:where(:nth-child(3):nth-last-child(2)),
	.flex>div:where(:nth-child(4):nth-last-child(1)) {
		width: calc(100% / 4);
	}

	/* 5分割 */
	.five_in_one>div {
		width: calc(100% / 5);
	}

	.flex>div:where(:nth-child(1):nth-last-child(5)),
	.flex>div:where(:nth-child(2):nth-last-child(4)),
	.flex>div:where(:nth-child(3):nth-last-child(3)),
	.flex>div:where(:nth-child(4):nth-last-child(2)),
	.flex>div:where(:nth-child(5):nth-last-child(1)) {
		width: calc(100% / 5);
	}

	/* 6分割 */
	.six_in_one>div {
		width: calc(100% / 6);
	}

	.flex>div:where(:nth-child(1):nth-last-child(6)),
	.flex>div:where(:nth-child(2):nth-last-child(5)),
	.flex>div:where(:nth-child(3):nth-last-child(4)),
	.flex>div:where(:nth-child(4):nth-last-child(3)),
	.flex>div:where(:nth-child(5):nth-last-child(2)),
	.flex>div:where(:nth-child(6):nth-last-child(1)) {
		width: calc(100% / 6);
	}
}

/* youtube レスポンシブ */
.youtube_wrap {
	/*position: relative;*/
	/*width: 100%;*/
	/*padding-top: 56.25%;*/
}

.youtube_wrap iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	/*position: absolute;*/
	/*top: 0;*/
	/*left: 0;*/
	/*width: 100%;*/
	/*height: 100%;*/
}

/* アニメーション用 */
.animation {
	opacity: 0;
}

.animation.animated {
	opacity: 1;
}

/* *****************************************************************************
// 各種パーツ
***************************************************************************** */
/* *************************************
// 見出し(head line)
************************************* */
.hl001 {
	position: relative;

	color: var(--text02-color);
	font-weight: bold;
	letter-spacing: 0.05em;
	text-align: center;
	text-align: center;
	padding: 3em 0.5em 2.0em 0.5em;
	font-size: clamp(20px, 5.5vw, 40px);
	@media (width < 768px) {
		padding-top: 2em;
	}
}

.hl001>*:first-child:nth-last-child(2) {
	line-height: 1.6;
}

.hl001>*:nth-child(2):last-child {
	display: block;
	font-size: max(0.4em, 12px);
	;
	line-height: 1;
}

.hl001:before {
	content: "";
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(-45deg,
			#b7ff50,
			#b7ff50 1px,
			transparent 9px,
			transparent 4px);
	/* background-image: url('../images/top/shop005.webp');
	background-size: cover;
	background-position: center; */
}

/* *************************************
// ボタン(button)
************************************* */
.btn001 {
	margin: var(--default-space) 0;
}

.btn001 input[type="submit"],
.btn001 a {
	display: block;
	width: fit-content;
	padding: 0.5em 3em;
	margin: 0 auto;
	border-radius: 2em;
	white-space: nowrap;
	transition: all 0.5s;
	background: var(--sub2-color);
	color: var(--text02-color);
	cursor: pointer;
}

.btn001 input[type="submit"]:hover,
.btn001 a:hover {
	opacity: 0.7;
}

/* *************************************
// ローダー(loader)
************************************* */
#loader-bg.l001 {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.l001 .spinner {
	margin: 100px 0 0;
	width: 70px;
	text-align: center;
}

.l001 .spinner>div {
	width: 18px;
	height: 18px;
	background: var(--main-color);

	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.l001 .spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.l001 .spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

/* *************************************
// ヘッダー(header)
************************************* */
#container {
	padding-top: 60px;
}

.h001.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 60px;
	background: #fff;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, .5);
}

.h001.header #inner-header {
	padding: 10px 60px 10px 10px;
}

.h001.header .logo {
	position: relative;
	z-index: 100;
	height: 40px;
	display: flex;
	align-items: center;
}

.h001.header .logo a {
	color: inherit;
	font-weight: bold;
	font-size: 1rem;
	display: flex;
	align-items: center;
	width: fit-content;
	height: 100%;
	padding-right: 20px;
	white-space: nowrap;
}

.h001.header .menu {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 101;
	width: 60px;
	height: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.h001.header .logo img {
	width: auto;
	height: 40px;
	margin-right: 10px;
}

.h001.header label.buMenu {
	position: relative;
	z-index: 102;
	border: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 22px;
	width: 25px;
}

.h001.header label.buMenu .icon-bar {
	display: block;
	width: 25px;
	height: 2px;
	border-radius: 5px;
	margin-top: 0px;
	background-color: var(--main-color);
	transition: transform .3s ease-in-out, top .5s ease;
	position: absolute;
	left: 0;
}

.h001.header label.buMenu .icon-bar:nth-child(2) {
	top: calc(50% - 1px);
}

.h001.header label.buMenu .icon-bar:nth-child(3) {
	bottom: 0;
}

.h001.header .menu.open label.buMenu .icon-bar:nth-child(1) {
	top: calc(50% - 1px);
	transform: rotate(45deg);
	transform-origin: center;
}

.h001.header .menu.open label.buMenu .icon-bar:nth-child(2) {
	transform: scaleX(0);
}

.h001.header .menu.open label.buMenu .icon-bar:nth-child(3) {
	bottom: calc(50% - 1px);
	transform: rotate(135deg);
	transform-origin: center;
}

.h001.header .menu .menu_text {
	font-size: 11px;
	text-align: center;
	color: var(--main-color);
	line-height: 1.0;
	margin: 7px 0 0;
	font-weight: bold;
}

.h001.header .menu_box {
	position: absolute;
	width: 100%;
	min-height: 100vh;
	top: 0;
	left: 100%;
	background: #fff;
	margin: 0;
	padding-top: 60px;
	z-index: 99;
	overflow-y: scroll;
	transition: left 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.h001.header .menu.open+.menu_box {
	left: 0;
}

.h001.header .menu_box nav {}

.h001.header .menu_box nav ul {
	border-bottom: 1px dashed #ccc;
}

.h001.header .menu_box nav ul li {
	border-top: 1px dashed #ccc;
}

.h001.header .menu_box nav ul li a {
}

.h001.header .menu_box nav ul li a>span {
	font-size: 0.8rem;
	margin-left: 0.5em;
}

.h001.header a.tel_box {
	display: block;
	margin-top: var(--default-space);
	color: inherit;
	text-align: center;
	line-height: 1rem;
}

.h001.header a.tel_box .number {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.2;
	white-space: nowrap;
	color: var(--main-color);
}

.h001.header a.tel_box .number img {
	display: block;
	height: 0.6em;
	width: auto;
	margin-right: 0.5rem;
}

.h001.header a.tel_box .time {
	display: block;
	font-size: 14px;
	font-weight: bold;
	width: 100%;
	margin-top: 4px;
	white-space: nowrap;
}

.h001.header a.contact_box {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	margin-top: var(--default-space);
	padding: 12px 8px 10px 12px;
	color: #fff;
	background: var(--main-color);
	font-size: 12px;
	font-weight: bold;
	white-space: nowrap;
	border-radius: 0 0 0 20px;
}

.h001.header a.contact_box img {
	display: block;
	height: 1.6em;
	width: auto;
	margin-bottom: 5px;
}

.h001.header a.contact_box .text {
	letter-spacing: 0.075em;
}

.logo img {
	width: 41%;
}

.header-title {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.3rem;
	min-width: 200px;
}

.ja-title {
	font-size: 0.9rem;
	white-space: nowrap;
}

.ja-title02 {
	font-size: 1.2rem;
	white-space: nowrap;
}

/* PC */
@media (width >=1280px) {
	#container {
		padding: 0;
	}

	.h001.header {
		position: sticky;
		height: auto;
	}

	.h001.header #inner-header {
		display: flex;
		justify-content: space-between;
		padding: 0;
	}

	.h001.header .logo {
		height: auto;
		display: flex;
		padding: 10px calc(var(--default-space) / 2);
	}

	.h001.header .header_box {
		float: right;
	}

	.h001.header .menu {
		display: none;
	}

	.h001.header .menu_box {
		position: static;
		overflow: hidden;
		display: flex;
		align-items: center;
		min-height: 0;
		padding: 0;
	}

	.h001.header .menu_box nav ul {
		display: flex;
		border-bottom: none;
	}

	.h001.header .menu_box nav ul li {
		border-top: none;
	}

	.h001.header .menu_box nav ul li a {
		text-align: center;
	}

	.h001.header .menu_box nav ul li a>span {
		display: block;
		margin: 0;
	}

	.h001.header a.tel_box {
		margin-top: 14px;
		margin-left: calc(var(--default-space) / 2);
	}

	.h001.header a.contact_box {
		margin-top: 0;
		margin-left: calc(var(--default-space) / 2);
		align-self: stretch;
		margin-bottom: 10px;
	}
}
@media (max-width: 1279px) {
	.header-title {
		min-width: 150px;
	}
}
@media (max-width: 767px) {
	.h001.header #inner-header {
		padding: 5px 60px 5px 2%;
	}
	.h001.header .logo {
		height: 50px;
		width: 100%;
	}
	.h001.header .logo a {
		align-items: center;
		padding-right: 0;
	}
	.h001.header .logo img {
		margin-right: 0;
		height: 8vw;
		max-height: 40px
	}

	.header-title {
		min-width: auto;
		/* text-align: center; */
		margin-left: 1vw;
	}

	.ja-title {
		font-size: min(2.5vw,0.8rem);
	}

	.ja-title02 {
		font-size: min(4vw,1rem);;
	}
	#container {
		padding-top: 60px;
	}
}



/* -------------------------------------
// ヘッダー(header002)
---------------------------------------- */
.h002.header {
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: #fff;
	box-shadow: 0px 1px 3px rgba(0, 0, 0, .5);
	position: sticky;
	z-index: 999;
	animation: none !important;
}

.h002.header #inner-header {
	padding: 10px 60px 10px 20px;
}

.h002.header .logo {
	position: relative;
	z-index: 100;
	height: 40px;
}

.h002.header .logo a {
	color: inherit;
	font-weight: bold;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	width: fit-content;
	height: 100%;
}

.h002.header .logo img {
	height: 40px;
}

.h002.header .menu {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 101;
	width: 60px;
	height: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.h002.header label.buMenu {
	position: relative;
	z-index: 102;
	border: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 22px;
	width: 25px;
}

.h002.header label.buMenu .icon-bar {
	display: block;
	width: 25px;
	height: 2px;
	border-radius: 5px;
	margin-top: 0px;
	background-color: var(--main-color);
	transition: transform .3s ease-in-out, top .5s ease;
	position: absolute;
	left: 0;
}

.h002.header label.buMenu .icon-bar:nth-child(2) {
	top: calc(50% - 1px);
}

.h002.header label.buMenu .icon-bar:nth-child(3) {
	bottom: 0;
}

.h002.header .menu.open label.buMenu .icon-bar:nth-child(1) {
	top: calc(50% - 1px);
	transform: rotate(45deg);
	transform-origin: center;
}

.h002.header .menu.open label.buMenu .icon-bar:nth-child(2) {
	transform: scaleX(0);
}

.h002.header .menu.open label.buMenu .icon-bar:nth-child(3) {
	bottom: calc(50% - 1px);
	transform: rotate(135deg);
	transform-origin: center;
}

.h002.header .menu .menu_text {
	font-size: 11px;
	text-align: center;
	color: var(--main-color);
	line-height: 1.0;
	margin: 7px 0 0;
	font-weight: bold;
	letter-spacing: 0;
}

.h002.header .menu_box {
	position: absolute;
	width: 100%;
	min-height: 100vh;
	top: 0;
	left: 0;
	background: #fff;
	margin: 0;
	padding-top: 60px;
	padding-left: 30px;
	padding-right: 30px;
	z-index: 99;
	overflow-y: auto;
	transition: opacity 0.5s;
	opacity: 0;
	pointer-events: none;
}

.h002.header .menu.open+.menu_box {
	opacity: 1;
	pointer-events: all;
}

.h002.header .menu_box nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.h002.header .menu_box nav ul {
	border-bottom: 1px dashed #ccc;
}

.h002.header .menu_box nav ul li {
	border-top: 1px dashed #ccc;
}

.h002.header .menu_box nav ul li a {
	display: block;
	color: inherit;
	padding: 0.5rem 0.75rem;
	line-height: 1.5;
	min-width: 130px;
	font-size: 12px;
	letter-spacing: 1px;
}

.h002.header .menu_box nav ul li a>span {
	font-size: 18px;
}

.h002.header .menu_box nav a.insta_icon {
	margin: 0 50px;
}

.h002.header .menu_box nav a.insta_icon img {
	width: 30px;
	height: 30px;
	min-width: 30px;
	object-fit: contain;
	vertical-align: bottom;
}

@media (width <=1400px) {
	.h002.header.HeightMin .menu_box nav ul li a {
		min-width: 140px;
	}
}

@media (width >=1280px) {
	.h002.header {
		padding-top: 0;
		position: relative;
		height: auto;
	}

	.h002.header #inner-header {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0;
	}

	.h002.header .logo {
		height: auto;
		display: flex;
		padding: 0 calc(var(--default-space) / 2);
		padding-bottom: 15px;
		padding-top: 15px;
	}

	.h002.header .logo img {
		height: 55px;
	}

	.h002.header .header_box {
		width: 100%;
	}

	.h002.header .menu {
		display: none;
	}

	.h002.header .menu_box {
		position: static;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 0;
		padding: 0;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}

	.h002.header .menu_box nav {
		justify-content: center;
		align-items: center;
		flex-direction: row;
	}

	.h002.header .menu_box nav ul {
		display: flex;
		justify-content: center;
		border-bottom: none;
	}

	.h002.header .menu_box nav ul li {
		border-top: none;
		position: relative;
		padding: 5px;
	}

	.h002.header .menu_box nav ul li:after {
		content: "";
		display: block;
		width: 1px;
		height: 40%;
		background: #333;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}

	.h002.header .menu_box nav ul li:last-child:after {
		display: none;
	}

	.h002.header .menu_box nav ul li a {
		text-align: center;
		min-width: 180px;
		transition: background 0.3s;
	}

	.h002.header .menu_box nav ul li a:hover {
		background: #eff8f8;
	}

	.h002.header .menu_box nav ul li a>span {
		display: block;
		margin: 0;
	}

	.h002.header.HeightMin {
		position: fixed;
		z-index: 999;
		/*最前面へ*/
		animation: DownAnime 0.5s forwards !important;
	}

	.h002.header.HeightMin>#inner-header {
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	.h002.header.HeightMin .header_box {
		width: auto;
	}

	.h002.header.HeightMin .logo img {
		height: 40px;
	}
}

@media (width < 1280px) {
	.h002.header .menu_box nav {
		margin-top: 50px;
		align-items: flex-start;
	}

	.h002.header .menu_box nav ul {
		border: none;
	}

	.h002.header .menu_box nav ul li {
		border: none;
	}

	.h002.header .menu_box nav ul li a {
		font-size: 20px;
	}

	.h002.header .menu_box nav ul li a>span {
		font-size: 80%;
		margin-left: 1em;
		color: var(--main-color);
	}

	.h002.header .menu_box nav a.insta_icon {
		margin: 50px .75rem 0 .75rem;
	}
}

@media (max-width: 767px) {
	.h002.header .menu_box {
		padding-left: 10px;
		padding-right: 10px;
	}

	.h002.header .menu_box nav {
		margin-top: 20px;
	}

	.h002.header .menu_box nav ul li a {
		font-size: 16px;
	}

	.h002.header .menu_box nav ul li a>span {
		font-size: 24px;
		margin-right: 0.5em;
	}
}

@keyframes DownAnime {
	from {
		opacity: 0;
		transform: translateY(-170px);
	}

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

/* *************************************
// メインビジュアル(main visual)
************************************* */
.mv001 {
	width: 100vw;
	height: 55vw;

	overflow: hidden;
	position: relative;
	padding: 0;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	background: #ccc;
}

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

.mv001_slider img {
	width: 100%;
	display: block;
}
.mv001_text {
	position: absolute;
	bottom: 0.5%;
	left: 0;
	background: #fff;
	z-index: 11;
	font-size: 3.4vw;
	font-weight: bold;
	font-style: italic;
	padding: 0.2em 1em 0.2em 1.5em;
	border-radius: 0 1em 1em 0;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
	@media screen and (max-width: 767px) {
		font-size: 4.8vw;
		bottom: -15vw;
	}
}
.mv001_text > span {
	display: block;
}
.mv001_text .red {
	background: linear-gradient(to bottom, transparent 80%, #f47a4d 80%);
}

.vertical-title {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	position: absolute;
	right: 10%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1em;
}

.vertical-title-line {
	position: relative;
	display: inline-block;
	background: transparent;
	padding: 15px 5px;
	font-size: min(2vw, 24px);
	font-weight: bold;
	z-index: 1;
	border: 2px solid var(--text02-color);
}

.vertical-title-line02 {
	margin-top: 50px;
}

.vertical-title-line::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, 0.7);
	z-index: 0;
}

.vertical-title-line::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--link-color);
	z-index: 1;
}

.vertical-title-text {
	position: relative;
	z-index: 2;
	color: var(--text02-color);
}

.global-menu {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	/* 帯の外側は透明 */
	padding: 2em 0 0 0;
	/* 上に余白（下は必要に応じて） */
	position: relative;
	z-index: 10;
}

.global-menu-inner {
	background: #fff;
	border-radius: 100px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 0.7em 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 300px;
	max-width: 900px;
	/* 帯の最大幅 */
	width: 80vw;
	/* 画面幅の80% */
	margin: 0 auto;
}

.global-menu .nav {
	display: flex;
	gap: 2em;
	list-style: none;
	margin: 0;
	padding: 0;
}

.global-menu .nav li {
	display: flex;
	align-items: center;
}

.global-menu .nav li a {
	color: #333;
	text-decoration: none;
	font-weight: bold;
	font-size: 0.9em;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.5em 1em 0;
	/* アイコン分の余白 */
}
.global-menu .nav li a:hover {
	background: #f0f0f0;
	color: var(--link-color, #007bff);
}
.global-menu .nav li a:before {
	content: "";
	display: block;
	width: 35px;
	height: 35px;
	position: absolute;
	top: 0.2em;
	left: 50%;
	transform: translateX(-50%);
}
.global-menu .nav li:nth-child(1) a::before {
	background: url('../images/common/t-car-img.svg') no-repeat center/contain;
}
.global-menu .nav li:nth-child(2) a::before {
	background: url('../images/common/t-car-img02.svg') no-repeat center/contain;
}
.global-menu .nav li:nth-child(3) a::before {
	width: 32px;
	height: 32px;
	background: url('../images/common/t-car-img03.svg') no-repeat center/contain;
}
.global-menu .nav li:nth-child(4) a::before {
	width: 32px;
	height: 32px;
	background: url('../images/common/t-car-img04.svg') no-repeat center/contain;
}
.global-menu .nav li:nth-child(5) a::before {
	width: 38px;
	height: 38px;
	background: url('../images/common/t-car-img05.svg') no-repeat center/contain;
}
.global-menu .nav li:nth-child(6) a::before {
	width: 32px;
	height: 32px;
	background: url('../images/common/t-car-img06.svg') no-repeat center/contain;
}
@media (max-width: 1279px) {
	.mv001_nav {
		position: relative;
	}
	.global-menu {
		padding: 0;
	}
	.global-menu-inner {
		display: block;
		width: 100%;
		padding: 0;
		box-shadow: none;
	}
	.h001.header .menu_box nav ul {
		flex-wrap: wrap;
		gap: 0;
		border-top: 1px dashed #ccc;
	}
	.h001.header .menu_box nav ul li {
		border: none;
		width: 30%;
		margin: 0 auto;
		justify-content: center;
	    padding: 5vw 0;
	}
	.h001.header a.tel_box {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
	}
	.h001.header a.contact_box {
		width: fit-content;
		margin-left: auto;
		margin-right: auto;
		border-radius: 0;
    	min-width: 50vw;
	}
}


/*==============================
  ペンかる
  =============================*/
.pencal01,
.pencal02,
.pencal03,
.pencal04,
.pencal05,
.pencal06 {
	position: relative;
	width: fit-content;
	display: flex;
	align-items: center;
}

.pencal02::after,
.pencal03::after,
.pencal04::after,
.pencal05::after,
.pencal06::after,
.pencal07::after,
.pencal08::after,
.pencal09::after {
	content: '';
	display: block;
	width: clamp(9.375rem, 7.09rem + 4.754vw, 11.25rem);
	height: clamp(9.375rem, 7.09rem + 4.754vw, 11.25rem);
	position: absolute;
	z-index: 10;
	animation: bound-anim 1.1s linear infinite;
	width: 80px;
	height: 80px;
}

.pencal01::after {
	top: 8%;
	right: -60px;
	transform: translateY(-50%);
	background: url(../../library/images/common/pencal01.svg) center center / contain no-repeat;
	content: "";
	display: block;
	width: 80px;
	height: 80px;
	position: absolute;
	z-index: 1;
	animation: 1.1s linear 0s infinite normal none running bound-anim;
	pointer-events: none;
}

.pencal02::after {
	background: url(../../library/images/common/pencal02.svg) no-repeat center / contain;
	top: -10%;
	right: 16%;
	animation-delay: 0.5s;
	z-index: 20;
}

.pencal03::after {
	background: url(../../library/images/common/pencal03.svg) no-repeat center / contain;
	top: -77%;
	right: -24%;
	animation-delay: 1s;
}

.pencal04::after {
	background: url(../../library/images/common/pencal05.svg) no-repeat center / contain;
	bottom: -15%;
	right: -10%;
	animation-delay: 1.5s;
}

.pencal05::after {
	background: url(../../library/images/common/pencal04.svg) no-repeat center / contain;
	bottom: -10%;
	left: 114px;
	animation-delay: 2s;
}

.pencal06::after {
	background: url(../../library/images/common/pencal06.svg) no-repeat center / contain;
	bottom: -87px;
	left: -60px;
	animation-delay: 2.5s;
}
.pencal07::after {
	background: url(../../library/images/common/pencal07.svg) no-repeat center / contain;
	bottom: 0px;
	left: 32%;
	animation-delay: 2.5s;
}
.pencal08::after {
	background: url(../../library/images/common/pencal08.svg) no-repeat center / contain;
	bottom: 0px;
	right: 0;
	animation-delay: 2.5s;
}
.pencal09::after {
	background: url(../../library/images/common/pencal09.svg) no-repeat center / contain;
	bottom: 0px;
	left: 0;
	animation-delay: 2.5s;
}

@keyframes bound-anim {
	0%,
	100% {
	  transform: translateY(0) scale(1);
	}
	30% {
	  transform: translateY(-20px) scale(0.98, 1.02);
	}
	60% {
	  transform: translateY(-10px) scale(1);
	}
	90% {
	  transform: translateY(0) scale(1.1, 0.9);
	}
  }

@media (max-width: 1279px) {
	.pencal01::after {
		width: 60px;
		height: 60px;
		right: -45px;
	}
}

@media (max-width: 767px) {
	.pencal01::after {
		width: 12vw;
		height: 12vw;
		right: 0;
	}

}

.mv001 .mv001_slider,
.mv001 .mv001_slider .slick-list,
.mv001 .mv001_slider .slick-track {
	width: 100%;
	height: 100%;
}

.mv001 .mv001_slider::after {
	/* content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0.1;
	background: #; */
}

.mv001 .mv001_slider .slick-slide {
	width: 100%;
	height: 100%;
	/* background-size: cover;
	background-position: center;
	background-repeat: no-repeat; */
	object-fit: cover;
	object-position: center;
}

.mv001 .mv001_slider>.image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.mv001 .mv001_slider .slick-prev,
.mv001 .mv001_slider .slick-next {
	background: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	z-index: 1;
	display: flex;
	align-items: center;
}

.mv001 .mv001_slider .slick-prev {
	left: 20px;
	justify-content: flex-end;
}

.mv001 .mv001_slider .slick-next {
	right: 20px;
	justify-content: flex-start;
}

.mv001 .mv001_slider .slick-prev:before,
.mv001 .mv001_slider .slick-next:before {
	content: "";
	width: 10px;
	height: 10px;
	background: transparent;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	display: block;
	margin: 0;
	opacity: 1;
}

.mv001 .mv001_slider .slick-prev:before {
	transform: rotate(225deg);
	margin-right: 7px;
}

.mv001 .mv001_slider .slick-next:before {
	transform: rotate(45deg);
	margin-left: 7px;
}
@media (max-width: 767px) {
	.vertical-title {
		top: 40%;
	}
	.vertical-title-line {
		font-size: 4vw;
	}
	.mv001 .mv001_slider > .image {
		
	}
}

/* *************************************
// フッター(footer)
************************************* */
.f001 {
	background-color: #fff;
	color: var(--text02-color);
}

.f001 #inner-footer {
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 5%;
	padding-right: 5%;
}

.f001 .logo {
	padding: 0;
	margin-bottom: 30px;
}

.f001 .logo a {
	color: #fff;
	font-size: 1.2rem;
	white-space: nowrap;
	font-weight: bold;
}

.f001 a.tel_box {
	background: #fff;
	display: inline-block;
	padding: 10px 30px;
	border-radius: 10px;
}

.f001 .address>span {
	margin-right: 0.5em;
}

.f001 nav {
	margin: var(--default-space) 0;
}

.f001 ul.nav {
	border-bottom: 1px dashed #ccc;
}

.f001 ul.nav>li {
	border-top: 1px dashed #ccc;
}

.f001 .nav li a {
	display: block;
	color: inherit;
	padding: 0.75rem;
	line-height: 1.5;
}

.f001 .nav li ul.sub-menu,
.f001 .nav li ul.children {
	position: static;
	visibility: visible;
	border: none;
}

.f001 .nav li ul.sub-menu li,
.f001 .nav li ul.children li {
	padding: 0.25rem 0.5rem;
	line-height: 1.5;
}

.f001 .nav li ul.sub-menu a:before,
.f001 .nav li ul.children a:before {
	content: "-";
	margin-right: 0.5em;
	display: inline;
}

.f001 .img_box {
	margin-left: auto;
}

.f001 .sns_box {
	display: flex;
}

.f001 .sns_box a {
	display: block;
	margin: 0 5px;
}

.f001 .sns_box a img {
	display: block;
	width: 40px;
}

.f001 .copyright {
	margin: 0;
	padding: 0.4rem;
	text-align: center;
	font-size: 0.8rem;
	background: #fff;
	color: var(--text-color);
}

@media (width >=768px) {
	.f001 #inner-footer {
		display: flex;
		justify-content: flex-start;
	}

	.f001 #inner-footer>* {
		margin-right: 15px;
	}

	.f001 nav {
		margin: 0;
	}

	.f001 ul.nav {
		width: 200px;
		border-bottom: none;
	}

	.f001 ul.nav>li {
		border-top: none;
	}

	.f001 .nav li a {
		padding: 0.5rem;
	}
}

/* *************************************
// 記事リスト(post list)
************************************* */
.pl001 {
	padding: calc(var(--default-space) * 2) 0;
}

.pl001 .post_item {
	border-bottom: 1px dashed #ccc;
	display: block;
	padding: calc(var(--default-space) / 4) calc(var(--default-space) / 2);
	margin-bottom: calc(var(--default-space) / 2);
	text-align: left;
}

.pl001 .post_item a {
	color: inherit;
}

.pl001 .post_item .date {
	width: 100px;
	color: var(--text02-color);
	display: inline-block;
}

.pl001 .post_item .category {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 5px 10px;
	margin-right: 20px;
}

.pl001 .post_item .category>span {
	background: var(--sub2-color);
	color: var(--text02-color);
	padding: 0 15px;
	width: 120px;
	text-align: center;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: bold;
}

@media (width >=768px) {
	.pl001 .post_item a {
		display: flex;
		align-items: center;
	}

	.pl001 .post_item .date {
		flex-shrink: 0;
	}
}

/* *************************************
// 記事個別(post single)
************************************* */
.post_single {
	padding: calc(var(--default-space) * 2) 0;
}

.post_single .date {
	color: var(--main-color);
	opacity: 0.7;
}

.post_single .title {
	font-size: clamp(18px, 4.5vw, 36px);
	font-weight: bold;
	margin-bottom: calc(var(--default-space));
}

/* *************************************
// 記事リスト2(post list)
************************************* */
.pl002 {
	margin: calc(var(--default-space) * 2) 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.pl002>a {
	width: 100%;
	display: grid;
	gap: 0;
	grid-template-rows: subgrid;
	grid-row: span 4;
	color: var(--text-color);
	background: #fff;
	padding-bottom: 15px;
}

.pl002>a .image {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.pl002>a .image>img {
	width: 100%;
	transition: scale 0.3s;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.pl002>a:hover .image>img {
	scale: 1.15;
}

.pl002>a .date {
	color: var(--main-color);
}

.pl002>a .category {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 10px;
	align-items: center;
	margin-top: 5px;
}

.pl002>a .category>span {
	background: var(--main-color);
	color: #fff;
	font-size: 12px;
	line-height: 1;
	padding: 5px 10px;
}

.pl002>a .title {
	padding: 0;
	background-size: 12px;
	background-position: center right 15px;
	background-repeat: no-repeat;
	line-height: 1.5;
	font-size: 20px;
	font-weight: bold;
}

@media (max-width: 767px) {

	.pl002 {
		width: 90%;
		max-width: 350px;
		grid-template-columns: 100%;
		row-gap: 20px;
		margin: auto;
	}
}

/* *************************************
// カテゴリー一覧リンク
************************************* */

.cat_list001 {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px 20px;
	margin: calc(var(--default-space) * 2) 0;
}

.cat_list001>a {
	border: 1px solid var(--main-color);
	color: var(--main-color);
	padding: 5px 20px;
	line-height: 1.5;
	text-align: center;
	min-width: 150px;
}

.cat_list001>a.current {
	background: var(--main-color);
	color: #fff;
}

@media (max-width: 767px) {

	.cat_list001>a {
		width: calc(50% - 10px);
	}
}



/* *************************************
// 固定ページ(page single)
************************************* */
.page_single {
	padding: calc(var(--default-space) * 2) 0;
}

/* *************************************
// メールフォーム
************************************* */
table.mail_form {
	margin: auto;
	min-width: 80%;
	table-layout: fixed;
}

table.mail_form tr:first-child {
	border-top: 1px solid #ccc;
}

table.mail_form tr {
	border-bottom: 1px solid #ccc;
}

table.mail_form th,
table.mail_form td {
	margin: calc(var(--default-space) / 2);
	vertical-align: middle;
}

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

table.mail_form tr th.required:after {
	content: "\5fc5\9808";
	display: inline-block;
	margin-left: 0.5rem;
	padding: 0 0.4rem;
	border-radius: 0.2rem;
	font-size: 0.75rem;
	white-space: nowrap;
	color: white;
	background: var(--main-color);
}

@media (width >=768px) {

	table.mail_form th,
	table.mail_form td {
		margin: 0;
		padding: calc(var(--default-space) / 2);
	}
}

/* *************************************
// ページネーション
************************************* */
.pagination ul {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.pagination li {
	margin: 0 5px;
	border: none;
}

.pagination li>a,
.pagination li>span {
	padding: 5px 8px;
}

.pagination li>a {
	border: 1px solid #cbcbcb;
	color: #000;
	background: #fff;

}

.pagination li>.page-numbers.current {
	border: 1px solid #cbcbcb;
	color: #fff;
	background: var(--main-color);
}

.pagination li>a:hover,
.pagination li>a:focus {
	background: var(--sub-color);
	color: #fff;
}



/* *************************************
// 会社案内パーツ
************************************* */

.p002 .title {
	margin-bottom: 40px;
}

.p002 .jp {
	font-size: 35px;
	font-weight: bold;
}

.p002 .en {
	font-size: 20px;
	font-weight: bold;
}

.p002 .two_in_one .image {
	height: 100%;
	padding: 0 3% 0 0;
}

.p002 .two_in_one .image>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 30px;
	display: block;
}

.p002 .two_in_one>div.right {
	width: 50%;
	position: relative;
}

.p002 .two_in_one>div.left {
	width: 50%;
	display: flex;
	justify-content: center;
}

.p002 .two_in_one>div.left>.inner {
	max-width: 94%;
	width: auto;
}

.p002 .text p {
	line-height: 2;
}

@media (max-width: 1029px) {

	.p002 .two_in_one>div.right,
	.p002 .two_in_one>div.left {
		width: 100%;
	}

	.p002 .two_in_one .image {
		/* width: 90%; */
		/* margin-left: auto; */
		padding: 0 5%;
	}

	.p002 .two_in_one .image>img {
		aspect-ratio: 3 / 2;
		object-fit: cover;
	}
}

@media (max-width: 767px) {
	.p002 .jp {
		font-size: 28px;
	}

}

.p003 .title {
	text-align: center;
	margin-bottom: 40px;
}

.p003 .jp {
	font-size: 35px;
	font-weight: bold;
}

.p003 .en {
	font-size: 20px;
	font-weight: bold;
}

.p003 .subtitle {
	text-align: center;
	font-weight: bold;
	margin-bottom: 40px;
}

.p003 .text_center {
	text-align: center;
}

@media (max-width: 767px) {
	.p003 .jp {
		font-size: 28px;
	}

	.p003 .text_center {
		text-align: left;
	}

}


.p004 .title {
	text-align: center;
	margin-bottom: 40px;
}

.p004 .jp {
	font-size: 35px;
	font-weight: bold;
}

.p004 .en {
	font-size: 20px;
	font-weight: bold;
}

.p004 table {
	margin-left: auto;
	margin-right: auto;
	min-width: 80%;
	position: relative;
	z-index: 10;
}

.p004 table tr th {
	border-bottom: 1px solid #ccc;
	padding: 10px;
}

.p004 table tr td {
	border-bottom: 1px solid #ccc;
	padding: 10px;
}

@media (max-width: 767px) {
	.p004 .jp {
		font-size: 28px;
	}
}

/* セクション */
#company_message {
	padding-bottom: 50px;
}

#company_philosophy {
	padding-top: 50px;
	padding-bottom: 50px;
}

#company_profile {
	padding-top: 50px;
	padding-bottom: 50px;
}

#company_history {
	padding-top: 50px;
	padding-bottom: 50px;
}

/* 背景黒 */
.bg_black {
	position: relative;
	z-index: 0;
	color: #fff;
}

.bg_black:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.4;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}