@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;700&display=swap');

@font-face{
	font-family: 'Noto Serif JP';
	font-display: swap;
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/NotoSerifCJKjp-Regular.woff2') format('woff2'), url('../fonts/NotoSerifCJKjp-Regular.woff') format('woff');
}

//@font-face{
//	font-family: 'Noto Serif JP';
//	font-display: swap;
//	font-style: normal;
//	font-weight: 700;
//	src: url('../fonts/NotoSerifCJKjp-Bold.woff2') format('woff2'), url('../fonts/NotoSerifCJKjp-Bold.woff') format('woff');
//}



/*----------------------------------------------------
	reset
----------------------------------------------------*/

html {
	overscroll-behavior: none
}

body {
	min-width: 1200px;
	color: #707070;
	font: 16px 'Shippori Mincho B1', YuGothic, sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro';
	line-height: 1.6;
	-webkit-text-size-adjust:100%;
	word-wrap:break-word;
	letter-spacing: 0.12em;
	font-weight: 400;
}

ul, ol {
	margin:0;
	padding:0;
	list-style-type:none;
}
ol {
	counter-reset: item;
}
ol li {
	margin-bottom: 0.5em;
	padding-left: 35px;
	position: relative;
}
ol li:before {
	counter-increment: item;
	content: counter(item)'.';
	width: 1.5em;
	position: absolute;
	left: 0;
	display: inline-block;
	text-align: right;
}

textarea, input, select {
	max-width: 100%;
	margin:0;
	padding:0;
	font: 16px 'Shippori Mincho B1', YuGothic, sans-serif, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro';
	outline: 0;
	-webkit-appearance: none;
	color: #031C03;
	border: 0;
}
input::-moz-focus-inner, button::-moz-focus-inner {
	border: 0;
}

input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
	-webkit-appearance: none; 
	margin: 0; 
}
input[type="number"] { 
	-moz-appearance:textfield; 
}

h1, h2, h3, h4, h5 {
	font-size: 100%;
	font-weight: 400;
}
h1, h2 {
	/*font-weight: 700;*/
}

table {
	font-size: inherit;
	border-collapse: collapse;
	border-spacing: 0;
}
table, th, td {
	margin:0;
	padding: 5px;
	font-weight: 400;
	text-align: center;
}

a {
	text-decoration: none;
	color: inherit;
	caret-color: transparent;
}

a:hover {
	color: #C9AD52;
	transition: all 0.5s 0s ease-in-out;
}

img, svg {
	max-width: 100%;
	vertical-align: top;
}

* {
	margin:0;
	padding:0;
	-webkit-box-sizing : border-box ;
	-moz-box-sizing : border-box ;
	box-sizing : border-box ;
}



/*----------------------------------------------------
	Layout
---------------------------------------------------*/

.l-header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	z-index: 5;
	pointer-events: none;
}
.l-header__navi {
	position: absolute;
	left: 35px;
	bottom: 35px;
	pointer-events: auto;
}
.l-header__navi ul {
	display: flex;
	flex-flow: column;
	gap: 15px 0;
}
.l-header__navi ul li a {
	width: 100%;
	display: block;
	position: relative;
	color: #fff;
}
.l-header__navi ul li a:hover {
	color: #C9AD52!important;
}
.l-header.u-fixed {
	position: fixed;
}
.l-header__logo {
	display: none;
	pointer-events: auto;
}
.l-header.u-fixed .l-header__logo {
	width: 90px;
	position: fixed;
	left: 35px;
	top: 35px;
	display: block;
}

.l-mv {
	width: 100%;
	height: 100vh;
	background-color: #000;
	pointer-events: none;
}
.l-mv__main {
	font-size: 0;
	overflow: hidden;
}
.l-mv__main video {
	min-width: 100%;
	min-height: 100vh;
}
.l-mv__logo {
	width: 130px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
.l-mv__logo img {
	width: 100%;
}

.l-hero {
	width: 100%;
	padding: 50px 10px;
	background-color: #000;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
}
.l-hero__text {
	text-align: center;
}
.l-hero__text h1 {
	margin-bottom: 40px;
	font-size: 3.0em;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #C9AD52;
	font-weight: 700;
}
.l-hero__text h2 {
	margin-bottom: 20px;
	font-size: 1.8em;
	color: #C9AD52;
}
.l-hero__text p {
	color: #fff;
	line-height: 1.8;
	font-size: 1.1em;
}

.l-main {
	overflow-x: hidden;
	position: relative;
	color: #fff;
	background-color: #0C0C0C;
}

.l-footer {
	background-color: #fff;
}
.l-footer__head {
	margin: 0 auto;
	padding: 158px 20px;
	justify-content: space-between;
	gap: 20px 40px;
}
.l-footer__head div:first-child {
	width: 140px;
}
.l-footer__head div:nth-child(2) {
	width: calc(100% - 140px - 383px - 80px);
}
.l-footer__head div:last-child {
	width: 383px;
}
.l-footer__access {
	position: relative;
}
.l-footer__access .l-footer__access__map {
	position: relative;
	width: 100%;
	padding-top: 400px;
	overflow: hidden;
}
.l-footer__access .l-footer__access__map iframe {
	position: absolute;
	top: -175px;
	left: 0;
	width: 100%;
	height: calc(100% + 175px + 175px);
	/*pointer-events: none;*/
}
.l-footer__access .l-footer__access__map iframe map {
	filter: grayscale(50%);
}
.l-footer__access .l-footer__access__qr {
	width: 208px;
	margin: 0 0 0 auto;
	padding: 30px;
	position: relative;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.08) 0px 3px 5px;
}
.l-footer__access .l-footer__access__qr img {
	width: 100%;
	margin-bottom: 15px;
}
.l-footer__access__map + .c-inner {
	margin-top: -400px;
	height: 400px;
	display: flex;
	align-items: center;
}
.l-footer__copy {
	padding: 45px 0;
}
.l-footer__copy ul {
	padding: 15px 0 0 0;
	justify-content: flex-end;
	gap: 0 50px;
	border-top: 1px #707070 solid;
}
.l-footer__copy ul li:first-child {
	font-weight: 700;
}
.l-footer__copy ul li:last-child {
	margin-left: auto;
	gap: 0 15px;
}
.l-footer__copy ul li:last-child img {
	height: 27px;
}
.l-footer__copy .l-footer__copy__logo {
	width: 75px;
	margin-bottom: 10px;
}



/*----------------------------------------------------
	utility
---------------------------------------------------*/

.u-clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.u-note {
	font-size: 0.75em;
	text-align: left;
	line-height: 1.2;
}

.u-hover {
	caret-color: transparent;
}
.u-hover:hover {
	opacity: 0.6;
	transition: all 0.5s 0s ease-in-out;
	cursor: pointer;
}

.u-center {
	text-align: center;
}

.u-right {
	text-align: right;
}

.u-imeOn {
	ime-mode: active!important;
}
.u-imeOff {
	ime-mode: inactive!important;
}

.u-caution {
	color: #b50106;
}
.u-error {
	border: 2px solid #DC143C !important;
}

.u-indent {
	padding-left: 1.1em;
	text-indent: -1.1em;
}
.u-indent2 {
	padding-left: 2em;
	text-indent: -2em;
}
.u-indent3 {
	padding-left: 3em;
	text-indent: -3em;
}

.u-english {
	font-family: 'Noto Serif JP';
	font-weight: 400;
	color: #8F8F8F;
	line-height: 1.6!important;
	letter-spacing: 0.02em;
}

.u-pc {
	display: block;
}
.u-sp {
	display: none;
}



/*----------------------------------------------------
	component
---------------------------------------------------*/

.c-inner {
	width: 1200px;
	margin: 0 auto;
}

.c-section {
}

.c-flexbox {
	display: flex;
	flex-wrap: wrap;
}

.c-navi {
	width: 50px;
	height: 50px;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
	background: #000;
	font-size: 0;
	display: none;
	pointer-events: auto;
}
.c-navi span {
	display: inline-block;
	position: absolute;
	height: 2px;
	width: 45%;
	background: #fff;
	left: 14px;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
.c-navi span:nth-of-type(1) {
	top: 17px;
}
.c-navi span:nth-of-type(2) {
	top: 25px;
}
.c-navi span:nth-of-type(3){
	top: 33px;
}
.c-navi.is-open span:nth-of-type(1) {
	width: 60%;
	top: 24px;
	left: 10px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.c-navi.is-open span:nth-of-type(2) {
	width: 0;
	left: 50%;
}
.c-navi.is-open span:nth-of-type(3){
	width: 60%;
	top: 24px;
	left: 10px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

.c-tel {
	position: absolute;
	right: 35px;
	top: 35px;
	color: #fff;
	text-align: right;
}
.c-tel p:first-child span {
	margin-left: 1em;
	display: inline-block;
}
.c-tel p:nth-child(2) {
	margin-bottom: 10px;
	font-size: 1.9em;
	pointer-events: auto;
}
.c-tel p:nth-child(2) a {
	color: #fff;
}
.c-tel p:nth-child(2) a:hover {
	color: #C9AD52;
	transition: all 0.5s 0s ease-in-out;
}
.c-tel p:nth-child(3) a {
	padding: 5px 10px;
	display: inline-block;
	border: 1px #C9AD52 solid;
	color: #C9AD52;
	font-size: 0.8em;
	pointer-events: auto;
}
.c-tel p:nth-child(3) a:hover {
	background-color: #C9AD52;
	color: #fff;
	transition: all 0.5s 0s ease-in-out;
}

.c-news {
	max-width: 35%;
	position: absolute;
	right: 35px;
	bottom: 35px;
	color: #fff;
	pointer-events: auto;
}
.c-news dl {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 6px 0;
}
.c-news dl dt {
	width: 7.5em;
}
.c-news dl dd {
	width: calc(100% - 7.5em);
}
.c-news dl dd a {
	color: #F1F8F6;
}
.c-news p {
	margin-bottom: 6px;
}

.c-insta {
}
.c-insta ul {
	gap: 35px 12px;
}
.c-insta ul li {
	width: calc((100% - 24px) / 3);
	overflow:hidden;
}
.c-insta ul li img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: 1s all;
}
.c-insta ul li img:hover {
	transform:scale(1.2,1.2);
	transition:1s all;
}
.c-info {
	padding: 12px;
	border: 1px #fff solid;
}

.c-arrow__link a {
	position: relative;
	display: inline-block;
	padding-right: 24px;
	line-height: 1;
}
.c-arrow__link a::after {
	content: '';
	width: 12px;
	height: 12px;
	margin: 11px 0 0 24px;
	border: 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
	position: absolute;
}
.c-arrow__link.u-type02 a::after {
	margin: 11px 0 0 16px;
}


.c-scrolltop {
	position: fixed;
	right: 0;
	bottom: -120px;
	rotate: 90deg;
	z-index: 5;
}
.c-scrolltop a {
	width: fit-content;
	display:block;
	position: relative;
	margin: 0 0 0 auto;
	padding-left: 30px;
	position: relative;
	border-bottom: 1px solid #C9AD52;
	color: #8F8F8F;
	font-size: 10px;
}
.c-scrolltop a::before {
	content: "";
	width: 20px;
	display: block;
	height: 1px;
	background: #C9AD52;
	rotate: -40deg;
	position: absolute;
	left: -2px;
	bottom: 5px;
}
.c-scrolltop a:hover {
	opacity: 0.6;
}

.c-scroll_up {
	transition: 1.2s ease-in-out;
	opacity: 0;
}
.c-scroll_up.on {
	opacity: 1.0;
}




/*----------------------------------------------------
	project
---------------------------------------------------*/

.p-index {
}
.p-index h2 {
	margin-bottom: 90px;
	letter-spacing: 0.1em;
}
.p-index h3 {
	margin-bottom: 90px;
	letter-spacing: 0.1em;
	font-size: 2.9em;
}
.p-index h4 {
	margin-top: -55px;
	margin-bottom: 45px;
}


.p-index p {
	line-height: 2.5;
}
.p-index p:nth-child(n+2) {
	margin-top: 40px;
}
.p-index .p-index__content {
	width: 60%;
	padding: 150px 10%;
}
.p-index__link {
	margin-top: 45px;
	flex-flow: column;
	gap: 30px 0;
}
.p-index__link a {
	font-size: 1.9em;
}

.p-index__section01 .p-index__image {
	width: 40%;
	background: url(../../img/main01.png) right top no-repeat;
	background-size: cover;
}

.p-index__section02 .p-index__image {
	width: 40%;
	background: url(../../img/main02.png) right top no-repeat;
	background-size: cover;
}

.p-index__section03 .p-index__image {
	width: 40%;
}

.p-index__section04 {
	padding: 145px 20px;
	position: relative;
	/*background-image: url(../../img/bg_link02.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;*/
	/*animation: image_anime 1s ease;
	animation-fill-mode: forwards;
	animation-delay: 1s;*/
}
.p-index__section04__bg01 {
	background-image: url(../../img/bg_link01.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
.p-index__section04__bg02 {
	background-image: url(../../img/bg_link02.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
}
/*
.p-index__section04:hover {
	background-color: rgba(0, 0, 0, 0);
	transition: all 0.8s 0s ease-in-out;
}*/
/*
.p-index__section04:has(ul li:last-child:hover) {
	background: url(../../img/bg_link02.png) center top no-repeat;
	background-size: cover;
	background-color: rgba(0, 0, 0, 0);
	background-blend-mode: overlay;
	transition: all 0.8s 0s ease-in-out;
}
*/

.p-index__section04 ul {
	justify-content: center;
	gap: 30px 80px;
	position: inherit;
}
.p-index__section04 ul li a {
	width: 100%;
	padding: 25px 90px;
	display: inline-block;
	background-color: #C9AD52;
	text-align: center;
	font-size: 1.5em;
	transition: all 0.8s 0s ease-in-out;
}
.p-index__section04:hover ul li a {
	background-color: #fff;
	color: #000;
	transition: all 0.8s 0s ease-in-out;
}
.p-index__section04:hover ul li a:hover {
	background-color: #C9AD52;
	color: #fff;
	transition: all 0.5s 0s ease-in-out;
}
.p-index__section05 .p-index__image {
	width: 40%;
}
.p-index__section05 .p-index__image p:first-child {
	background: url(../../img/main05a.png) right top no-repeat;
	background-size: cover;
	margin: 0;
	height: 50%;
}
.p-index__section05 .p-index__image p:last-child {
	background: url(../../img/main05b.png) right top no-repeat;
	background-size: cover;
	margin: 0;
	height: 50%;
}
.p-index__section05 {
	background: #0C0C0C url(../../img/main05c.png) right top no-repeat;
}
.p-index__section05 ol {
	margin-top: 45px;
}
.p-index__section05 .c-info {
	margin-top: 50px;
}

/*
.p-slick {
	display: none;
}
.p-slick.slick-initialized{
	display: block;
}
*/
.p-slide {
	position: relative;
}
.p-slick {
	position: relative;
}
.p-slick .p-slick__prev {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.p-slick .p-slick__prev span::after,
.p-slick .p-slick__next span::after {
	content: '';
	width: 12px;
	height: 12px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-135deg);
}
.p-slick .p-slick__next span::after  {
	transform: translate(-50%, -50%) rotate(45deg);
}
.p-slick .p-slick__next {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.p-slick .p-slick__prev span,
.p-slick .p-slick__next span {
	width: 50px;
	height: 96px;
	display: block;
	background-color: #000;
	caret-color: transparent;
}
.p-slick .p-slick__prev span:hover,
.p-slick .p-slick__next span:hover {
	background-color: #C9AD52;
	transition: all 0.5s 0s ease-in-out;
	cursor: pointer;
	caret-color: transparent;
}

.p-slick .p-slick__dots {
	font-size: 0;
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
}
.p-slick .slick-dots li {
	display: inline-block;
	width: 16px;
	height: 16px;
	cursor: pointer;
}
.p-slick .slick-dots li button {
	position: relative;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
	height: 8px;
	cursor: pointer;
	font-size: revert;
}
.p-slick .slick-dots li button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 5px;
	text-align: center;
	background-color: #000;
	border: 1px #D9D9D9 solid;
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
}
.p-slick .slick-dots li.slick-active button::before {
	background-color: #fff;
}
.p-slick img {
	width: 100%;
	height: 1120px;
	object-fit: cover;
}


.p-danran .c-section {
	padding-top: 140px;
	padding-bottom: 140px;
	/*border-bottom: 1px #4A4A4A solid;*/
}
.p-danran h2 {
	margin-bottom: 80px;
	font-size: 2.8em;
}
.p-danran h3 {
	margin-top: -10px;
	margin-bottom: 35px;
	font-size: 2.2em;
}
.p-danran h4 {
	margin-top: 80px;
	font-size: 2.0em;
}
.p-danran .p-danran__image {
	width: 587px;
}
.p-danran .p-danran__text {
	width: calc(100% - 587px - 50px);
	margin: 0 0 0 auto;
}
.p-danran .p-danran__text p {
	line-height: 2.0;
}
.p-danran__info {
	width: 544px;
	padding: 40px 35px;
	margin: 0 0 0 auto;
	background-color: rgba(0,0,0,0.4);
}
.p-danran__info h2 {
	margin-bottom: 40px;
	font-size: 2.2em;
	letter-spacing: 0.15em;
}
.p-danran__info p {
	font-size: 1.3em;
	line-height: 1.8;
}

.p-danran__section01,
.p-danran__section03 {
	background: url(../../danran/img/bg_01.png) right top no-repeat;
}
.p-danran__section02,
.p-danran__section04 {
	background: url(../../danran/img/bg_02.png) left top no-repeat;
}
.p-danran__section05 {
	background: url(../../danran/img/bg_05.png) center top no-repeat;
	background-size: cover;
}

.p-menu .c-section {
	padding-top: 140px;
	padding-bottom: 140px;
	/*border-bottom: 1px #4A4A4A solid;*/
}
.p-menu h2 {
	margin-bottom: 80px;
	font-size: 2.8em;
}
.p-menu__image {
	width: 530px;
}
.p-menu__image ul {
	gap: 26px;
}
.p-menu__image ul li {
	width: calc(50% - 13px);
}
.p-menu__image ul li ul  {
	gap: 26px;
}
.p-menu__image ul li ul li {
	width: 100%;
}
.p-menu__image ul li.p-menu__image__one {
	width: 100%;
}

.p-menu__text {
	width: calc(100% - 530px - 135px);
	margin: 0 0 0 auto;
}
.p-menu__text ul {
	gap: 2px 0;
}
.p-menu__text ul li {
	width: 100%;
	font-size: 1.35em;
}
.p-menu__text ul li span {
	font-size: 0.6em;
}

.p-privacy__content {
	padding-top: 140px;
	padding-bottom: 140px;
	/*border-bottom: 1px #4A4A4A solid;*/
}
.p-privacy h2 {
	margin: 0 0 50px 0;
	font-size: 1.2em;
	font-weight: 400;
}
.p-privacy h3 {
	margin: 30px 0 5px 0;
	font-size: 1.2em;
	font-weight: 700;
}






/*----------------------------------------------------*/
/*----------------------------------------------------*/
@media screen and (max-width: 950px) {

body {
	min-width: auto;
}

.l-header__logo,
.l-header.u-fixed .l-header__logo {
	width: 60px;
	position: fixed;
	left: 15px;
	top: 15px;
	display: block;
	z-index: 5;
}

.l-header__navi {
	width: 100%;
	padding: 49px 0 30px 0;
	right:-120%;
	top: 0;
	left: initial;
	bottom: initial;
	background-color: #000;
	height: 100svh;
}
.l-header__navi.is-open {
	right: 0;
	transition: all 0.6s;
}
.l-header__navi ul {
	width: calc(100% - 100px);
	margin: 0 0 0 auto;
	padding: 1px 20px 0;
	display: block;
	flex-flow: column;
	gap: 0;
}
.l-header__navi ul li {
	width: 100%;
	margin-top: 0;
	color: #fff;
	border: none;
	border-top: 1px #4A4A4A solid;
	text-align: left;
	position: relative;
}
.l-header__navi ul li a {
	padding: 18px;
	height: auto;
	color: #fff;
}
.l-header__navi ul li a::after {
	display: none;
}
.l-header__navi ul li a::before {
	content: "";
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 10px;
	left: initial;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	transition: none;
	transform-origin: initial;
}
.l-header__navi ul li a:hover::before {
	transform: rotate(45deg);
}
.l-header__navi ul li:last-child a {
	width: auto;
	padding: 18px;
	border-bottom: 1px #4A4A4A solid;
	background: none;
	height: auto;
}
.l-header__navi ul li a:hover {
	border-bottom: none!important;
	background: #C9AD52!important;
	color: #fff!important;
}
.l-header__navi ul li a:hover::before {
	transform: rotate(45deg);
}
.l-header__navi ul li:last-child a::before {
	display: initial;
}
.l-header__navi.is-open ul li {
	margin-top: initial!important;
}
.l-header__navi.is-open ul li:last-child a {
	padding: 18px!important;
	color: #fff!important;
}
.l-header__navi.is-open ul li:last-child a:hover {
	color: #fff!important;
}

.l-mv {
	height: auto;
}
.l-mv__logo {
	display: none;
}
.l-mv__main video {
	width: 100%;
	min-height: 80svh;
	height: 80svh;
	object-fit: cover
}
.l-hero__text h1 {
	margin-bottom: 30px;
	font-size: 2.5em;
}
.l-hero__text h2 {
	margin-bottom: 30px;
	font-size: 1.2em;
}
.l-hero__text h2 span {
	display: block;
}
.l-hero__text p {
	font-size: 1.0em;
}
.l-hero__text p span {
	display: block;
}

.l-footer__head {
	padding: 100px 20px;
}
.l-footer__head div:first-child {
	width: 100px !important;
	margin: 0 auto 25px auto;
}
.l-footer__access__map + .c-inner {
	display: none;
}
.l-footer__copy .l-footer__copy__logo {
	display: none;
}
.l-footer__copy {
	padding: 0px 0 20px 0;
  }
.l-footer__copy ul {
	padding: 40px 0 0 0;
	gap: 30px 0;
	flex-wrap: wrap;
	border-top: none;
}
.l-footer__copy ul li {
	width: 50%!important;
}
.l-footer__copy ul li:first-child {
	width: 100%!important;
	font-weight: 700;
	text-align: center;
}
.l-footer__copy ul li:last-child {
	justify-content:flex-end;
}
.l-footer__copy ul li:last-child a {
	width: initial!important;
}


.c-inner {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

.c-section {
}

.c-navi {
	display: block;
}

.c-flexbox > * {
	width: 100%!important;
}

.c-tel {
	right: 15px;
	top: 55px;
	font-size: 0.8em;
}
.c-tel p:first-child span {
	display: block;
}

.c-news {
	max-width: 100%;
	padding: 15px 15px;
	position: relative;
	right: initial;
	bottom: initial;
	background: #222;
	font-size: 0.8em;
}

.c-insta ul {
	gap: 10px 10px;
}
.c-insta ul li {
	width: calc((100% - 20px) / 3)!important;
}

.c-scrolltop {
	display: none;
}

.p-index .p-index__content {
	width: 100%;
	padding: 60px 25px;
}
.p-index__section01 .p-index__image,
.p-index__section02 .p-index__image,
.p-index__section03 .p-index__image {
	height: 300px;
}

.p-index h2 {
	margin-bottom: 50px;
}
.p-index h3 {
	margin-bottom: 60px;
	font-size: 1.6em;
}
.p-index h4 {
	margin-top: -25px;
}

.p-index__section04 {
	padding: 60px 50px;
}
.p-index__section04 ul li a {
	padding: 15px 10px;
	font-size: 1.2em;
}

.p-slick img {
	height: 300px;
}

.p-danran .c-section {
	padding-top: 60px;
	padding-bottom: 60px;
}
.p-danran h2 {
	margin-bottom: 40px;
	font-size: 1.5em;
}
.p-danran .p-danran__image {
	margin-bottom: 25px;
}
.p-danran h3 {
	margin-top: 0;
	margin-bottom: 25px;
	font-size: 1.2em;
}
.p-danran h4 {
	margin-top: 40px;
	font-size: 1.2em;
}
.p-danran__info h2 {
	font-size: 1.2em;
}
.p-danran__info p {
	font-size: 1.0em;
	line-height: 1.8;
}
.p-danran__info {
	padding: 20px 20px;
}

.p-menu .c-section {
	padding-top: 60px;
	padding-bottom: 60px;
}
.p-menu h2 {
	margin-bottom: 40px;
	font-size: 1.5em;
}
.p-menu .p-menu__image {
	width: 30%!important;
	margin-bottom: 25px;
	display: none;
}
.p-menu .p-menu__image ul {
	gap: 10px 0;
}
.p-menu .p-menu__image ul li {
	width: 100%;
}
.p-menu .p-menu__text {
	/*width: calc(70% - 30px)!important;*/
	width: 100%;
}
.p-menu .p-menu__text ul {
	margin-top: -6px;
	gap: 10px 0;
	line-height: 1.5;
}
.p-menu__text ul li {
	font-size: 1.0em;
}

.p-menu__section01 h2,
.p-menu__section02 h2,
.p-menu__section03 h2,
.p-menu__section04 h2,
.p-menu__section05 h2,
.p-menu__section06 h2,
.p-menu__section07 h2 {
	padding: 50px 20px;
	text-align: left;
}
.p-menu__section01 h2 {
	background: #0C0C0C url(../../menu/img/bg_01.png) right  top no-repeat;
	background-size: contain;
}
.p-menu__section02 h2 {
	background: #0C0C0C url(../../menu/img/bg_02.png) right top no-repeat;
	background-size: contain;
}
.p-menu__section03 h2 {
	background: #0C0C0C url(../../menu/img/bg_03.png) right top no-repeat;
	background-size: contain;
}
.p-menu__section04 h2 {
	background: #0C0C0C url(../../menu/img/bg_04.png) right top no-repeat;
	background-size: contain;
}
.p-menu__section05 h2 {
	background: #0C0C0C url(../../menu/img/bg_05.png) right top no-repeat;
	background-size: contain;
}
.p-menu__section06 h2 {
	background: #0C0C0C url(../../menu/img/bg_06.png) right top no-repeat;
	background-size: contain;
}
.p-menu__section07 h2 {
	background: #0C0C0C;
}

.p-slick .slick-slider {
	height: 300px;
	overflow: hidden;
}




}