@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: #c7324b;
	--sub-color: #eae8df;
	--text-color: #333;
	--link-color: #00a;
	--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;
	overflow-x: hidden;
	scroll-behavior: smooth;
	font-weight: normal;
}
b,strong {
	font-weight: 600;
}
a {
	color: var(--link-color)
}
img, video {
	max-width: 100%;
	height: auto;
}
pre {
	white-space: pre-wrap;
}
/* フォーム用 パーツ*/
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;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-align: center;
	text-align: center;
	padding: 1.5em 0.5em;
	font-size: clamp(20px, 5.5vw, 50px);
}
.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-image: url('../images/common/hl001_bg.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(--main-color);
	color: #fff;
	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;
}
.h001.header .logo a {
	color: inherit;
	font-weight: bold;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	width: fit-content;
	height: 100%;
}
.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 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 {
	display: block;
	color: inherit;
	padding: 0.75rem;
	line-height: 1.5;
}
.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;
}
.h001.header a.tel_box .number {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	white-space: nowrap;
}
.h001.header a.tel_box .number img {
	display: block;
	height: 1.2em;
	width: auto;
	margin-right: 0.5rem;
}
.h001.header a.tel_box .time {
	display: block;
	font-size: 12px;
	font-weight: normal;
	width: 100%;
	margin-top: 4px;
	white-space: nowrap;
}
.h001.header a.contact_box {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: var(--default-space);
	padding: 1rem;
	color: #fff;
	background: var(--main-color);
	font-size: 14px;
	font-weight: bold;
	white-space: nowrap;
}
.h001.header a.contact_box img {
	display: block;
	height: 1.2em;
	width: auto;
	margin-right: 0.5rem;
}
.h001.header a.contact_box .text {
	letter-spacing: 0.075em;
}
/* 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: 0 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: 0;
		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;
	}
}


/* -------------------------------------
// ヘッダー(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;
	padding: 10px 60px 10px 10px;
}
.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 {
	height: 600px;
	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 .mv001_contents {
	position: absolute;
	color: #fff;
	top: 0;
	left: 0%;
	z-index: 1;
	display: grid;
	place-content: center;
	width: 100%;
	height: 100%;
}
.mv001 .mv001_contents .mv001_text {
	font-size: min(7vw, 36px);
	text-align: center;
}
.mv001 .mv001_contents .mv001_text2 {
	font-size: min(3vw, 18px);
	text-align: center;
}

.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: 0;
	opacity: 0.3;
	background: #000;
}
.mv001 .mv001_slider .slick-slide {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.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;
}
/* *************************************
// フッター(footer)
************************************* */
.f001 {
	background-color: var(--main-color);
	color: #fff;
}
.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);
}
.pl001 .post_item a {
	color: inherit;
}
.pl001 .post_item .date {
	width: 100px;
	color: var(--main-color);
}
@media (width >= 768px) {
	.pl001 .post_item a {
		display: flex;
	}
	.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));
}
/* *************************************
// 固定ページ(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;
}



/* *************************************
// ロゴ
************************************* */
.logo {
	display: inline-block;
}

.logo > a {
	display: flex;
}

.logo > a > img.imglogo {
	width: 50px;
	height: 40px;
	object-fit: contain;
	margin-right: 10px;
}

.logo > a > .text .jp {
	display: block;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}
.logo > a > .text .en {
	display: block;
	font-size: 12px;
    line-height: 1;
    margin-top: 5px;
    font-weight: 400;
}

@media (max-width: 767px) {
	.logo > a > .text .jp {
		font-size: 18px;
	}
	.logo > a > .text .en {
		font-size: 11px;
	}
}


/* *************************************
// ヘッダー
************************************* */
@media (width >= 1280px) {

	.h002.header #inner-header {
		justify-content: space-between;
	}
	
	.h002.header .logo {
		padding: 0 20px;
	}

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



