@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
	--green: #96C61A;
	--bg-grd: linear-gradient(to right, #95e21a, #21a31a);
}
body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
a {
	color: #000;
}



/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
    font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}
@media screen and (min-width: 1401px) {
    html {
		font-size: 0.714vw;
    }	
}



/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6rem 5rem 4rem;
}
header h1 {
	width: 24rem;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	header {
		display: block;
		padding: 6rem 5rem;
		position: relative;
	}
	header h1 {
		margin-left: auto;
		margin-right: auto;
	}
	header::after {
		content: "";
		width: 80%;
		width: 89vw;
		height: 4px;
		background-color: #000;
		position: absolute;
		bottom: 2rem;
		left: calc(50% - (89vw / 2));
	}
}
@media screen and (max-width: 768px) {
	header {
		justify-content: center;
		height: 6rem;
		padding: 0;
	}
	header h1 {
		width: 20rem;
	}	
}



/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
ul.gnav-menu {
	display: flex;
	align-items: center;
}
@media screen and (min-width: 769px) {
	ul.gnav-menu {
		justify-content: center;
		margin-top: 3rem;
	}
}
ul.gnav-menu > li {
	font-weight: bold;
	white-space: nowrap;
}

ul.gnav-menu > li:not(:last-child) {
	margin-right: 1.5rem;
}
ul.gnav-menu > li > a {
	display: inline-block;
	position: relative;
}
ul.gnav-menu > li > a::after {
	position: absolute;
	background: #000;
	bottom: -4px;
	content: '';
	height: 0.2rem;
	left: 0;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
	width: 100%;	
}
ul.gnav-menu > li > a:hover::after {
	transform: scale(1,1);
}
ul.gnav-menu > li > a:hover {
	opacity: 1;  
	filter: alpha(opacity=100);  
}
ul.gnav-menu li.current-menu-item a::before {
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	background: url(../img/current.png) no-repeat center;
	background-size: 1.5rem auto;
	position: absolute;
	left: calc(50% - 0.75rem);
	top: -1.5rem;
}



/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
	border-top: solid 0.4rem #000;
}
footer .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4rem 5rem 8rem 5rem;
}
/* logo */
footer .logo {
	width: 24rem;
}
/* nav */
footer nav ul {
	display: flex;
	align-items: center;
	font-weight: bold;
}
footer nav ul li:not(:last-child) {
	margin-right: 4rem;
}
footer small {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	height: 4rem;
	color: #fff;
	background: var(--bg-grd);
}
@media screen and (max-width: 768px) {
	footer .wrap {
		flex-direction: column;
		padding: 4rem 0 0 0;
	}
	footer .logo {
		width: 24rem;
	}
	/* nav */
	footer nav ul {
		flex-direction: column;
		margin: 5rem 0;
	}
	footer nav ul li {
		text-align: center;
	}
	footer nav ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 1.5rem;
	}
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
	background: var(--bg-grd);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 13rem;
	overflow: hidden;
}
.page-ttl h2 {
	font-size: 3.6rem;
	color: #fff;
	line-height: 1;
}
.page-ttl img {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	width: 20rem;
	mix-blend-mode: overlay;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		height: 12rem;
	}
	.page-ttl h2 {
		font-size: 3.2rem;
	}
	.page-ttl img {
		top: 50%;
		right: -1.8rem;
		width: 17rem;
	}
}



/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
}
.heading-1 {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	font-size: 2.4rem;
	margin-bottom: 3rem;
}
.heading-1::after {
	content: "";
	width: 12rem;
	height: 0.14rem;
	background: #000;
	margin-top: 0.5rem;
}

.heading-2 {
	line-height: 1;
	margin-bottom: 4rem;
	position: relative;
}
.heading-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	font-size: 2.4rem;
	margin-bottom: 5rem;
}
.heading-2::after {
	content: "";
	width: 12rem;
	height: 0.14rem;
	background: #000;
	margin-top: 0.5rem;
	position: absolute;
	bottom: -1.2rem;
}
.heading-2 span {
	display: block;
	font-size: 1.125rem;
	position: absolute;
	bottom: -3rem;
	font-weight: normal;
}
/* more */
.more {
	text-align: center;
	line-height: 1;
	display: block;
	color: #fff;
	background: url(../img/bg-btn.jpg) no-repeat center / cover;
	width: 20rem;
	padding: 1.5rem 0 1.7rem 0;
	margin: 0 auto;
	font-weight: bold;
}

/* ttl */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 2.4rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
}
.ttl:after {
	content: " ";
	display: block;
	position: absolute;
	width: 30%;
	height: 0.5rem;
	background: var(--bg-grd);
	left: 0;
	bottom: -0.5rem;
}
.ttl span {
	display: block;
	font-size: 1.2rem;
	color: var(--green);
	margin-bottom: 1rem;
	font-weight: 500;
	text-transform: uppercase;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}

/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
	border-bottom: solid 0.14rem var(--green);
}
dl.detail dt {
	padding: 2rem;
	width: 25%;
	white-space: nowrap;
	border-top: solid 0.14rem var(--green);
	background: #fafafa;
	display: flex;
	align-items: center;
	justify-content: center;
}
dl.detail dd {
	padding: 2rem;
	width: 75%;
	border-top: 1px solid rgba(0,0,0,0.2);
}
dl.detail dt:last-of-type,
dl.detail dd:last-of-type {
	border-bottom: none;
}
dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
dl.wt dt,
dl.wt dd {
	border-bottom: 1px solid rgba(255,255,255,0.4);
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}
	dl.detail dt {
		width: 100%;
		justify-content: flex-start;
		padding: 1.5rem 2rem;
	}
	dl.detail dd {
		width: 100%;
		padding: 1.5rem 2rem;
		border-top: none;
	}
	dl.bk dt {
		border-bottom: none;
	}
	dl.wt dt {
		border-bottom: none;
	}
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: #fff;	
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.5rem 0;
	white-space: nowrap;
}
/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--bg-grd);
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span {
	background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.base-width {
	width: 88rem;
	margin: 8rem auto;
}

@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
		margin: 6rem 3rem 8rem 3rem;
	}
}



/*  ----------------------------------------------------------

form

----------------------------------------------------------  */
.form-wrap {
	background: #fafafa;
	padding: 6rem;
}
form > div {
	display: flex;
}
form > div:not(:last-of-type) {
/* 	margin-bottom: 3rem;
	padding-bottom: 3rem; */
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: solid 0.14rem #ddd;
}
form > div > div:nth-of-type(1) {
	width: 30%;
	display: flex;
	align-items: center;
}
form > div > div:nth-of-type(2) {
	width: 70%;
}
form > div > div:nth-of-type(1) label {
	font-weight: bold;
}
form > div > div:nth-of-type(1) span {
	color: rgba(220,0,0,1);
	font-size: 1rem;
	margin-left: 0.6rem;
	font-weight: 500;
	vertical-align: 0.1rem;
}
form .hiss {
	background: rgba(220,0,0,1);
	color: #fff!important;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	margin-top: 1rem;
	margin-left: 15px!important;
	font-size: 1.2rem!important;
	padding: 2px 10px;
}
form .hiss::before {
	display: none;
}
form > div > div:nth-of-type(1) span::before {
	content: "※";
}
form .radio {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
form .radio > div:not(:last-of-type) {
	margin-right: 1.5rem;
}
input[type=radio] {
	display: none;
}
form .radio label {
	padding: 0 1.5rem 0.15rem 1.5rem;
	border: 0.14rem solid #333;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4rem;
}
input[type="radio"]:checked + label {
	background: var(--green);
	border: 0.14rem solid var(--green-);
	color: #fff;
}
input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	padding: 2rem;
	border-radius: 0;
	border: 0.14rem #ddd solid;
}
textarea {
	height: 20rem;
}
form .check {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
form .check span {
	margin-left: 1rem;
	margin-bottom: 0.15rem;
	color: transparent;
}
form .check span.visible {
	margin-left: 2rem;
	color: #000;
	position: absolute;
	top: -1.5em;
}
form .check span a {
	text-decoration: underline;
	color: var(--green);
}
form .check .error {
	position: absolute;
	bottom: 0.5em;
}
.mw_wp_form_preview form .check span.visible {
	display: none;
}
input[type="submit"] {
    background: var(--bg-grd);
    border: none;
    color: #fff;
    display: block;
    font-weight: bold;
    font-size: 1.6rem;
    width: 100%;
    padding: 2rem 0;
    margin: 0 auto;
    transition: all .3s;
}
input[type="submit"]:hover {
	opacity: 0.4;
	cursor: pointer;
}
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-appearance: button;
    appearance: button;
    border: none;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
::placeholder {
	color: #ddd;
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.form-wrap {
		padding: 3rem;
	}
	form > div {
		flex-direction: column;
	}
	form > div > div:nth-of-type(1) {
		width: 100%;
/* 		margin-bottom: 1.5rem; */
		margin-bottom: 1rem;
	}
	form > div > div:nth-of-type(2) {
		width: 100%;
	}
	form .radio {
		display: block;
	}
	form .radio > div:not(:last-of-type) {
		margin-right: 0;
		margin-bottom: 3%;
	}
	form .radio label {
		width: 100%;
		height: 4rem;
	}
	form .check {
		flex-direction: column;
	}
	form .check span {
		margin-top: 0.4rem;
		margin-left: 0;
		margin-bottom: 0;
	}
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: var(--bg-grd);
	color: #fff;	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 1.4rem;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 65px;
/* 		bottom: 110px; */
	}
}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
} 
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* txt */
.txt-vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}

/* list */
ul.list-group li {
	margin-left: 2rem;
	list-style: decimal;
	line-height: 1.5;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
	ul.list-group {
		margin-top:0.6rem;
	}
	ul.list-group li:not(:last-child) {
		margin-bottom: 1.5rem;
	}
}

.prepare {
	padding: 8rem 0;
	font-size: 2rem;
	text-align: center;
}

/* margin */
.mb-10 { 
	margin-bottom: 1rem !important;
}
.mb-15 {
	margin-bottom: 1.5rem !important;
}
.mb-20 {
	margin-bottom: 2.0rem !important;
}
.mb-25 {
	margin-bottom: 2.5rem !important;
}
.mb-30 {
	margin-bottom: 3.0rem !important;
}
.mb-35 {
	margin-bottom: 3.5rem !important;
}
.mb-40 {
	margin-bottom: 4.0rem !important;
}
.mb-45 {
	margin-bottom: 4.5rem !important;
}
.mb-50 {
	margin-bottom: 5.0rem !important;
}
.mb-55 {
	margin-bottom: 5.5rem !important;
}
.mb-60 {
	margin-bottom: 6.0rem !important;
}
.mb-65 {
	margin-bottom: 6.5rem !important;
}
.mb-70 {
	margin-bottom: 7.0rem !important;
}
.mb-75 {
	margin-bottom: 7.5rem !important;
}
.mb-80 {
	margin-bottom: 8.0rem !important;
}
.mb-85 {
	margin-bottom: 8.5rem !important;
}
.mb-90 {
	margin-bottom: 9.0rem !important;
}
.mb-95 {
	margin-bottom: 9.5rem !important;
}
.mb-100	{
	margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@keyframes fadeUp {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeDown {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeUp {
    animation: fadeUp 0.5s ease;
    animation-fill-mode: both
}
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade-down {
	opacity: 0;
    animation: fadeDown 0.5s ease;	
	transform: translateY(-2rem);
    animation-fill-mode: both	
}

.delay-1 {
	animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
}
.delay-2 {
	animation-delay: 0.35s;
	-moz-animation-delay: 0.35s;
	-webkit-animation-delay: 0.35s;
	-o-animation-delay: 0.35s;
}
.delay-3 {
	animation-delay: 0.5s;
	-moz-animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	-o-animation-delay: 0.5s;
}
.delay-4 {
	animation-delay: 0.65s;
	-moz-animation-delay: 0.65s;
	-webkit-animation-delay: 0.65s;
	-o-animation-delay: 0.65s;
}
.delay-5 {
	animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
}



/*  ----------------------------------------------------------

more

----------------------------------------------------------  */
.works-list {
	display: flex;
	flex-wrap: wrap;
}
.works-list + div .more {
	margin: 6rem auto 0 auto;
	border: none;
	cursor: pointer;
}
.works-list li {
	width: calc((100% - 4.5rem) / 4);
/* 	height: 16rem; */
	height: 20rem;
	margin-right: 1.5rem;
	overflow: hidden;
	position: relative;
	box-shadow: 0px 3px 15px -10px #666;
}
.works-list li.comingsoon a {
	pointer-events: none;
}
.works-list li.comingsoon .works_cat {
	display: none;
}
.works-list li:nth-child(4n) {
    margin-right: 0;
}
.works-list li:nth-child(n + 5) {
    margin-top: 1.5rem;
}
.works-list li a {
	position: relative;
}
.works-list li a:hover {
	opacity: 1;
}
/* mask */
.works-list li a > div {
	opacity: 0;
	background: rgba(0,0,0,0.6);
	width: 100%;
	height: 100%;
	padding: 0 2rem;
	font-size: 1.2rem;
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all .3s;
	overflow: hidden;
	z-index: 1;
}
.works-list li a > div > span {
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 0.6rem;
}
.works-list li a > div > div {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.works-list li a:hover > div {
	opacity: 1;
}
/* img */
.works-list li figure {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
/* 	height: 16rem; */
	height: 20rem;
	z-index: -1;
}
.works-list li figure img {
/* 	height: 16rem; */
	height: 20rem;
	object-fit: cover;
	transition: all .3s;
	object-fit: cover;
}
.works-list li:hover img {
	transform: scale(1.1);
}
.works-list li.comingsoon:hover img {
	transform: scale(1.0);
}

.works_cat {
	display: flex;
}
.works-list .works_cat {
	position: absolute;
	right: 0.6rem;
	top: 0.6rem;
	z-index: 2;
}
.works_cat > span {
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
	line-height: 1;
	padding: 0.5rem 1rem 0.55rem 1rem;
}
.works_cat > span.green {
	background: var(--bg-grd);
}
.works_cat > span.blue {
	background: linear-gradient(to right, rgba(78, 162, 200, 1), rgba(0, 85, 167, 1));
}
.works_cat > span.orange {
	background: linear-gradient(to right, rgba(251, 197, 0, 1), rgba(215, 90, 19, 1));
}
.works_cat > span.pink {
	background: linear-gradient(to right, rgba(245, 177, 158, 1), rgba(214, 33, 114, 1));
}
.works_cat > span.purple {
	background: linear-gradient(to right, rgba(180, 166, 208, 1), rgba(101, 65, 150, 1));
}
.works_cat > span:not(:last-of-type) {
	margin-right: 0.4rem
}

@media screen and (max-width: 768px) {
	.works-list {
		justify-content: space-between;
	}
	.works-list + div .more {
		margin: 3rem auto 0 auto;
	}	
	.works-list li {
		width: 49%;
		height: 16rem;
		margin-right: 0;
	}
	.works-list li:nth-child(n + 5) {
		margin-top: 0;
	}
	.works-list li:nth-child(n + 3) {
		margin-top: 2%;
	}
	/* mask */
	.works-list li a > div {
		opacity: 1;
		background: rgba(0,0,0,0.5);
	}
}


.site-btn-wrap {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.site-btn {
  margin-bottom: 20px;
}

.site-btn:last-child {
  margin-bottom: 0;
}

.site-btn a {
  writing-mode: vertical-lr;
  display: inline-block;
  width: 100%;
  padding: 10px 5px;
  background: linear-gradient(to right, #95e21a, #21a31a);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

ul.gnav-menu > li:nth-of-type(7) {
	margin-right: 1rem;
}

ul.gnav-menu > li:nth-of-type(8) {
	margin-right: 1rem;
}

ul.gnav-menu > li:nth-of-type(8) a,
ul.gnav-menu > li:nth-of-type(9) a{
	padding: 1rem;
	color: #fff;
	border-radius: 5px;
}

ul.gnav-menu > li:nth-of-type(8) a:hover::after,
ul.gnav-menu > li:nth-of-type(9) a:hover::after {
	display: none;
}

ul.gnav-menu > li:nth-of-type(8) a {
	background: linear-gradient(to right, #95e21a, #21a31a);
}

ul.gnav-menu > li:nth-of-type(9) a {
	background: linear-gradient(to right, #95e21a, #21a31a);
}

@media screen and (min-width: 769px) {
	ul.gnav-menu > li:nth-of-type(8),
	ul.gnav-menu > li:nth-of-type(9) {
		position: absolute;
		top: -6.5rem;
	}
	ul.gnav-menu > li:nth-of-type(8) {
		right: 15rem;
	}
	ul.gnav-menu > li:nth-of-type(9) {
		right: 4rem;
	}
}

.gnav-sp-menu > li:nth-of-type(8) a,
.gnav-sp-menu > li:nth-of-type(9) a {
	padding: 1rem;
	color: #fff;
	border-radius: 5px;
}

.gnav-sp-menu > li:nth-of-type(8) a {
	background: linear-gradient(to right, #95e21a, #21a31a);
	margin-bottom: 2rem;
}

.gnav-sp-menu > li:nth-of-type(9) a {
	background: linear-gradient(to right, #95e21a, #21a31a);
}

footer nav ul li:nth-of-type(8),
footer nav ul li:nth-of-type(9) {
	display: none;
}


/*  ----------------------------------------------------------

SHARE

----------------------------------------------------------  */
.common-sns-pc {
	display: block;
}
.common-sns-sp {
	display: none;
}
.common-sns {
	position: fixed;
	top: 0;
	right: 2rem;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
	display: flex;
	height: 100%;
}
@media screen and (min-width: 769px){
	.common-sns {
		opacity: 0;
		transition: 0.5s ease;
	}
	.common-sns.visible {
		opacity: 1;
		transform: translateY(0);
	}
}
.common-sns-inner {
	margin-top: auto;
	margin-bottom: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.common-sns span {
	width: calc(52.26px / 4);
	margin-bottom: calc(121.6px / 4);
}
.common-sns span img {
	width: calc(52.26px / 4);
}
.common-sns ul {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.common-sns ul li:not(:last-child) {
	margin-bottom: calc(88.5px / 4);
}
.common-sns ul li,
.common-sns ul li img {
	width: calc(133.03px / 4);
}
.common-sns ul li.instagram,
.common-sns ul li.instagram img {
	width: calc(133.03px / 4);
}
.common-sns ul li.tiktok,
.common-sns ul li.tiktok img {
	width: calc(160.33px / 4);
}
@media screen and (max-width: 768px) {
	.common-sns-pc {
		display: none;
	}
	.common-sns-sp {
		display: block;
	}
	
	
/* 	.common-sns {
		margin-top: 3rem;
		position: fixed;
		top: auto;
		bottom: 0;
		right: 0;
		left: 0;
		transform: none;
		-webkit-transform: none;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		background: #fafafa;
		padding: 0;
		height: 68px;
	}
	.common-sns-inner,
	.common-sns ul {
		flex-direction: row;
	} */
	
	
	/*
	.common-sns ul li:not(:last-child) {
		margin-bottom: 0;
		margin-right: 2rem;
		margin-top: 0.3rem;
	}
	
	.common-sns ul li:first-child,
	.common-sns ul li:first-child img {
		width: calc(244.55px / 2.5);
	}
	.common-sns ul li:nth-child(2),
	.common-sns ul li:nth-child(2) img {
		width: calc(199.62px / 2.5);
	}
	.common-sns ul li:nth-child(2) {
		position: relative;
		padding-left: 2rem;
	}
	*/
	.common-sns ul li {
		margin: 0 1rem;
	}
	.common-sns ul li:not(:first-child) {
		position: relative;
	}
/* 	.common-sns ul li:not(:first-child)::before {
		content: "";
		width: 1px;
		height: 30px;
		background-color: #474747;
		position: absolute;
		top: 0;
		bottom: 0;
		left: calc(-1rem - 1px);
		margin: auto 0;
	} */

	.common-sns ul li:not(:last-child) {
		margin-bottom: 0;
	}
	.common-sns span {
		width: calc(146.15px / 2.5);
		margin: 10px 3rem 0 0;
	}
	.common-sns span img {
		width: calc(146.15px / 2.5);
	}
}

@media screen and (min-width: 768px) {
    #op_btn {
        display: none;
	}
}
@media screen and (max-width: 768px) {
    #op_btn {
		display: flex;
		position: fixed;
		left: 50%;
		bottom: 0px;
		width: 100%;
		writing-mode: unset;
		line-height: 1;
		z-index: 100000;
		font-size: 15px;
		text-align: center;
		transform: translateX(-50%);
		background: #fafafa;
		padding: 5px 3px;
    }

    #op_btn a {
		display: block;
		color: #fff;
		background: var(--bg-grd);
		padding: 15px 0px;
		text-decoration: none;
		border-radius: 5px;
    }
		#op_btn li {
			width: 50%;
			list-style: none;
	}
	#op_btn li {
		margin: 0 0.5rem;
	}
	
	.common-sns {
    position: fixed;
    top: 44rem;
    right: 2rem;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    z-index: 999;
    display: flex;
    height: 100%;
	}
	.common-sns ul li, .common-sns ul li img {
    width: calc(133.03px / 4);
    margin: 1rem;
	}
	.common-sns span img {
    width: calc(30px / 2.5);
	}
	.common-sns span {
    margin: 10px -8rem 0 0;
	}
	footer {
    margin-bottom: 6rem;
	}
	
	#page-top a {
    background: var(--bg-grd);
    color: #fff;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: 1;
    font-size: 1.4rem;
    padding-left: 0.1rem;
	}
}