@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

fieldset {
  border: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	max-width: 100%;
    height: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
	display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
	font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	cursor: pointer;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

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

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}
body {
	letter-spacing: 0.06em;
	font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: normal;
    color: #333;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.font-notosans {
	font-family: YakuHanJP, "Noto Sans JP", sans-serif;
}
.font-zentokyo {
	font-family: "Zen Tokyo Zoo", system-ui;
}

@media screen and (max-width: 374px) {
	html {
		font-size: 2.6667vw;
	}
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

.no-link {
	pointer-events: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.5s;
    }

    .op {
        transition: opacity 0.5s ease-out;
    }

    .op:hover {
        opacity: .7;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events:none;
    }
}

.is-hide {
    display: none;
}

.unload {
	overflow: hidden;
	height: 100vh;
}
#loading {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1;
	padding: 30rem 0 10rem;
	width: 100%;
	height: 100vh;
}
#loading .bg {
	transition-duration: 1s;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #00A23F;
	z-index: -1;
}
#loading .head {
	margin: 0 auto;
	writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 0.2em;
	line-height: 2;
	color: #fff;
	font-size: 3rem;
	font-weight: 700;
}
#loading .head p {
	opacity: 0;
	animation: fadeindown 1s forwards;
	animation-delay: 0.5s;
}
#loading .head p:nth-of-type(2) {
	animation-delay: 0.7s;
}
#loading .head p:nth-of-type(3) {
	animation-delay: 0.9s;
}
#loading .head p:nth-of-type(4) {
	animation-delay: 1.1s;
}
#loading .bike {
	opacity: 0;
	animation: fadein 1s forwards;
	animation-delay: 2s;
	margin: 5.8rem auto 0;
	text-align: center;
}
#loading .bike img {
	max-width: 15.5rem;
}
@keyframes fadeindown {
	0% {
		opacity: 0;
		transform: translateY(-2rem);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#loading.is-loading .loading-inner {
	opacity: 0;
	transition: opacity .5s;
}

.anchor-area {
	position: relative;
}

.anchor-area .anchor {
	position: absolute;
	top: -11rem;
	z-index: -1;
	pointer-events: none;
}

/* sp */
@media screen and (max-width: 750px) {
	.anchor-area .anchor {
		top: -7rem;
	}
}

/* !wrapper
---------------------------------------------------------- */
#wrapper {
	position: relative;
	z-index: 2;
	background: url(../img/common/bg.png) center center repeat #F9F9F9;
	background-size: 100% auto;
}

.home:not(.is-loading) #wrapper {
	clip-path: rect(43rem calc(50% + 27.4rem) 93.2rem calc(50% - 27.4rem) round 2.8rem);
	opacity: 0;
	pointer-events: none;
}

.home #loading.is-loading + #wrapper {
	opacity: 1;
	clip-path: rect(0 100% 100% 0 round 0);
	pointer-events: auto;
	transition: opacity .5s .5s, clip-path .5s linear 2s;
}

#g-navi:before,
#header.active:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: url(../img/common/bg.png) center center repeat #F9F9F9;
	background-size: 100% auto;
}
/* sp */
@media screen and (max-width: 750px) {
	.home:not(.is-loading) #wrapper {
		/* padding: 7rem 0 0; */
		clip-path: rect(45rem calc(2rem + ((100% - 4rem) * .95)) 68rem calc(2.1rem + ((100% - 4rem) * .05)) round 1rem);
	}
	
	#loading {
		padding-top: 15rem;
	}
	#loading .head {
		font-size: 2rem;
	}
	
}

/* !header
---------------------------------------------------------- */
#header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	left: 0;
	top: 0;
	transition-duration: 0.5s;
	z-index: 90;
	width: 100%;
}
#header.active {
	background: rgba(249,249,249,0.9);
}

.header-logo {
	display: flex;
	align-items: center;
	padding: 0 9rem;
	height: 11rem;
}
.header-logo a {
	display: block;
	position: relative;
}
.header-logo img {
	transition-duration: 0.5s;
	width: 15rem;
}
.header-logo .on {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.btn-menu {
	cursor: pointer;
	position: relative;
	z-index: 5;
	width: 19rem;
	background: url(../img/common/icon_menu.svg)no-repeat center #00A23F;
	background-size: ;
	border-bottom-left-radius: 2rem;
}
.btn-menu.is-active {
	background-image: url(../img/common/icon_menu_close.svg);
}

#g-navi {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	width: 100%;
	height: 100vh;
	background: #F9F9F9;
}
.nav-content {
	display: flex;
	align-items: center;
	padding: 5rem 0;
	height: 100vh;
}
.nav-content .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 138rem;
}
.nav-content .left {
	width: 33%;
	max-width: 41rem;
}
.nav-content .right {
	width: 62%;
	max-width: 77rem;
}
#g-navi .logo {
	margin-bottom: 2.5rem;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #00A23F;
	font-weight: 900;
	font-size: 1.5rem;
}
#g-navi .logo img {
	display: block;
	margin: 2rem auto 0;
	width: 100%;
	max-width: 28rem;
}
#g-navi .btns a {
	margin-top: 2.5rem;
	font-size: 2.4rem;
}
#g-navi .links1 {
	margin-left: -3rem;
}
#g-navi .links1 li {
	float: left;
	padding-left: 1rem;
	margin: -2px 0 0 3rem;
	width: calc(50% - 3rem);
	border-top: 2px solid #DEDEDE;
	border-bottom: 2px solid #DEDEDE;
}
#g-navi .links1 li a {
	display: block;
	background: url(../img/common/icon_link.svg)no-repeat right 1rem center;
	background-size: 2rem;
	letter-spacing: 0.03em;
	line-height: 1;
}
#g-navi .tit a {
	padding: 3.5rem 4rem 3.5rem 0;
	font-size: 2.4rem;
	font-weight: 700;
}
#g-navi .sub-tit {
	padding: 0 0 2rem;
}
#g-navi .sub-tit a {
	margin-bottom: 0.5rem;
	font-size: 2rem;
	font-weight: 500;
}
#g-navi .sub-tit span {
	display: inline-block;
	position: relative;
	padding: 0.8rem 0;
}
#g-navi .sub-tit span:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	transition-duration: 0.5s;
	width: 0%;
	border-bottom: 1px solid;
}
#g-navi .links2 {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 6rem;
	margin-top: 4rem;
	letter-spacing: 0.03em;
	font-size: 2rem;
	font-weight: 500;
}

.header-links {
	margin-right: 7rem;
}
.header-links ul {
	display: flex;
	align-items: center;
	gap: 0 4rem;
	height: 100%;
	font-size: 1.8rem;
	font-weight: 700;
}
.header-links .download {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 5rem;
	height: 6rem;
	background: linear-gradient(90deg, #F98C33, #ECCA6D);
	border-radius: 5rem;
	font-size: 1.7rem;
	font-weight: 900;
	color: #fff;
}

#header .download-cv {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	left: 2rem;
	right: 2rem;
	bottom: 2rem;
	transition-duration: 0.3s;
	padding: 1.4rem 1.5rem;
	background: #fff;
	border-radius: 2rem;
}
#header .download-cv a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6.5rem;
	background: linear-gradient(90deg, #F98C33, #ECCA6D);
	border-radius: 5rem;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 600;
}
#header .download-cv.show {
	visibility: visible;
	opacity: 1;
}


@media screen and (max-width: 1200px) {
	.header-logo {
		padding: 0 5rem;
	}
	
	.header-links {
		margin-right: 5rem;
	}
	.header-links ul {
		gap: 0 2rem;
	}
	
	.header-links .download {
		padding: 1rem 2.5rem;
	}
}
@media screen and (max-width: 959px) {
	.header-logo {
		padding: 0 3rem;
	}
	.header-links {
		margin-right: 3rem;
	}
	.header-links a {
		font-size: 1.6rem;
	}
	.header-links .download {
		font-size: 1.5rem;
	}
	
	.nav-content .inner {
	    display: block;
	}
	.nav-content .left,
	.nav-content .right {
		margin: 0 auto;
		width: auto;
	}
	
	#g-navi .links1 {
	    margin: 5.5rem 0 0 0;
	}
}
/*** hover ***/
@media screen and (min-width: 960px) {
	#g-navi .links1 a:hover {
		background-position: right center;
		background-image: url(../img/common/icon_link_gre.svg);
		color: #00A23F;
	}
	#g-navi .sub-tit a:hover span:after {
		width: 100%;
	}
	#g-navi .sub-tit .color-ora:hover {
		background-image: url(../img/common/icon_link_ora.svg);
		color: #F98C33;
	}	
	#g-navi .links2 a:hover {
		color: #00A23F;
	}
	
	.header-links a:hover {
		opacity: 0.7;
	}
}
/* sp */
@media screen and (max-width: 750px) {
	.header-logo {
	    padding: 0 2rem;
	    height: 7rem;
	}
	.btn-menu {
		width: 8rem;
		background-size: 3rem;
	}
	
	#g-navi {
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.nav-content {
	    display: block;
		padding: 18rem 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	    height: 100vh;
	}
	.nav-content .inner {
	    display: block;
	}
	.nav-content .left {
		max-width: 33.3rem;
	}
	.nav-content .left,
	.nav-content .right {
	    width: auto;
	}
	#g-navi .logo {
	    margin-bottom: 4rem;
	}
	#g-navi .logo img {
		margin-top: 1.5rem;
		max-width: 21.4rem;
	}
	#g-navi .btns a {
	    margin-top: 2rem;
	    font-size: 1.8rem;
	}
	#g-navi .links1 li {
	    float: none;
	    padding-left: 1rem;
	    margin: -2px 0 0 0;
	    width: auto;
	}
	#g-navi .tit a {
	    padding: 2.5rem 4rem 2.5rem 0;
	    font-size: 2rem;
	}
	#g-navi .sub-tit {
	    padding: 0 0 1.6rem;
	}
	
	#g-navi .sub-tit a {
		font-size: 1.8rem;
	}
	
	#g-navi .links2 {
	    display: block;
	    gap: 1rem 7rem;
	    margin-top: 5rem;
	    font-size: 1.6rem;
	}
	#g-navi .links2 li {
		padding: 0 1rem 1.6rem;
	}
	
	.header-links {
		display: none;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 3;
		padding: 10rem 2rem 8rem;
		width: 100%;
		height: 100vh;
		background: #00A23F;
	}
	.header-links ul {
		display: block;
		gap: 0;
	}
	.header-links li + li {
		border-top: 2px solid #DEDEDE;
	}
	.header-links li a {
		display: block;
		padding: 2.5rem 4rem 2.5rem 1rem;
		background: url(../img/common/icon_link_wh.svg) no-repeat right 1rem center;
		background-size: 2rem;
		line-height: 1;
	}
	.header-links .download {
		margin-top: 3rem;
	}
	
	
}

/* !footer
---------------------------------------------------------- */
#footer {
	overflow: hidden;
	position: relative;
}

#footer .txt-swiper {
	position: relative;
}
#footer .txt-circle:before {
	left: -10%;
	top: -10%;
	width: 120%;
	height: 120%;
}

.page-top {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 6.6rem;
	bottom: -5.3rem;
	z-index: 2;
	width: 18.3rem;
	height: 18.3rem;
	background: rgba(210,237,220,0.3);
	border-radius: 50%;
}
#footer .bike {
	position: absolute;
	left: 22rem;
	bottom: 10rem;
	z-index: 2;
	transform: rotate(30deg);
	width: 15rem;
}

.footer-bg {
	position: relative;
	margin-top: -4rem;
	padding: 8rem 5rem 7rem;
	background: rgba(255,255,255,0.8);
	border-radius: 7rem 7rem 0 0;
	box-shadow: 0 -1rem 2.4rem rgba(0,0,0,0.05);
}
.footer-inner {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 150rem;
}
.foot-logo {
	margin-right: 5rem;
}
.foot-logo img {
	width: 23.8rem;
}
#footer .right {
	width: calc(100% - 24rem);
	max-width: 81rem;
}
#footer .btns {
	display: flex;
	justify-content: space-between;
	gap: 0 2rem;
	margin-bottom: 3.2rem;
}
#footer .btns a {
	height: 5.8rem;
    width: 100%;
	font-size: 2rem;
}
.foot-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 3rem;
}
.foot-links a {
	display: block;
	background: url(../img/common/icon_link.svg) no-repeat right 1rem center;
	background-size: 1.2rem;
}
.foot-links .li {
	padding: 2rem 0;
	margin-top: -1px;
	border-top: 1px solid #DEDEDE;
	border-bottom: 1px solid #DEDEDE;
	line-height: 1.5;
	font-weight: 500;
}
.foot-links .level1 {
	position: relative;
	padding: 0.2rem 2.4rem 0.2rem 1rem;
	letter-spacing: 0.03em;
	font-size: 2rem;
}
.foot-links .level2 {
	position: relative;
	margin-top: 1.1rem;
	padding: 0 2.4rem 0 3rem;
	font-size: 1.8rem;
}
.foot-links .level2 span {
	display: inline-block;
	position: relative;
}
.foot-links .level2 span:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.5rem;
	transition-duration: 0.3s;
	width: 0;
	border-bottom: 1px solid;
}
.function-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0 3rem;
	margin-top: 3.2rem;
	font-weight: 500;
	font-size: 1.6rem;
}
.function-links .links {
	display: flex;
	gap: 0 3rem;
	font-size: 1.8rem;
} 

@media screen and (max-width: 1200px) {
	.page-top {
		left: -5rem;
	}
	#footer .bike {
	    left: 8rem;
		bottom: 12rem;
	}
	
	.function-links .links {
	    gap: 0 3rem;
	}
}
@media screen and (max-width: 1024px) {
	.foot-logo {
	    margin-right: 2.5rem;
	}
	.foot-logo img {
	    width: 18rem;
	}
	#footer .right {
		width: auto;
	}
	.foot-links {
		gap: 0 1.6rem;
	}
	.foot-links .level2 {
	    padding-left: 2rem;
	}
}

@media screen and (max-width: 959px) {
	.function-links,
	.function-links .links {
		font-size: 1.3rem;
	}
}

/*** hover ***/
@media screen and (min-width: 960px) {
	.foot-links a:hover {
		color: #00A23F;
		background-image: url(../img/common/icon_link_gre.svg);
		background-position: right center;
	}
	.foot-links .level2:hover span:after {
		width: 100%;
	}
	.function-links .links a:hover {
		color: #00A23F;
	}
}

/* sp */
@media screen and (max-width: 750px) {
	
	.footer-bg {
	    margin-top: -5rem;
	    padding: 6rem 2rem;
	}
	.page-top,
	#footer .bike {
		display: none;
	}
	.footer-inner {
	    display: block;
	}
	#footer .right {
	    width: auto;
	}
	.foot-logo {
		margin-bottom: 4rem;
		text-align: center;
	}
	.foot-logo img {
	    width: 18.4rem;
	}
	#footer .btns {
	    display: block;
	    margin: 0 auto 4rem;
		max-width: 30.3rem;
	}
	#footer .btns a + a {
		margin-top: 1rem;
	}
	.foot-links {
	    grid-template-columns: repeat(1, 1fr);
	    margin: 0 auto;
		max-width: 30.3rem;
	}
	.foot-links .li {
	    padding: 1.5rem 0;
	    line-height: 1;
	}
	.function-links {
	    display: block;
	    margin-top: 4rem;
		text-align: center;
	}
	.foot-links .level1 {
	    font-size: 1.6rem;
	}
	.foot-links .level2 {
	    padding-left: 3rem;
	    font-size: 1.3rem;
	    margin-top: 1.8;
	}
	.function-links {
		font-size: 1.3rem;
	}
	.function-links .links {
		justify-content: center;
	    gap: 0 2rem;
		font-size: 1.3rem;
	}
	
	#copyright {
		margin-top: 3rem;
	}
	
}


/* !common
---------------------------------------------------------- */
@media screen and (min-width: 751px) {
    .is-sp {
        display: none !important;
    }
}

@media only screen and (max-width : 750px){
	.is-pc {
		display: none !important;
	}
}

.inner,
.inner-small {
	margin: 0 auto;
	padding: 0 5rem;
	width: 100%;
	max-width: 160rem;
}
.inner-small {
	max-width: 138rem;
}

@media screen and (max-width: 959px) {
	.inner,
	.inner-small {
		padding: 0 3rem;
	}
}

.color-gre {
	color: #00A23F;
}
.color-ora {
	color: #F98C33;
}

#main-visual .kv {
	position: relative;
	z-index: 2;
	padding: 15.4rem 0;
}
#main-visual .kv .bg {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}
#main-visual .kv .bg img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
#main-visual .head {
	opacity: 0;
	margin-bottom: 8rem;
	text-align: center;
}

.photo-list {
	position: relative;
	max-width: 54.8rem;
	margin: 0 auto;
}
.photo-list li {
	width: 100%;
	height: 54.8rem;
	position: relative;
	z-index: 4;
	transform-origin: center bottom;
  transition: transform 1s cubic-bezier(0.215,0.610,0.355,1.000),opacity 1s cubic-bezier(0.215,0.610,0.355,1.000);
  will-change: transform;
}

.photo-list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.8rem;
  box-shadow: 0 .3rem .6rem rgba(0,0,0,0.16);
}

:is(.photo-list li):after {
	border: .4rem solid #00A23F;
	border-radius: 2.8rem;
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.215,0.610,0.355,1.000);
    content: '';
}

:is(.photo-list li):is([data-status=active],[data-status=first],[data-status=prev]):after {
    opacity: 1;
}

:is(.photo-list li):is(:not([data-status=active],[data-status=first])) {
    left: 0;
    position: absolute;
    top: 0
}

:is(.photo-list li):is([data-status=active],[data-status=first],[data-status=prev]) {
    transform: rotate(0deg);
    z-index: 5
}

:is(.photo-list li):is([data-status=next]) {
    transform: rotate(-6deg) translate3d(1.25em, 0, 0);
}

:is(.photo-list li):is([data-status=prev]) {
    opacity: 0;
    transform: rotate(10deg) translate3d(-1em, 0, 0);
    z-index: 6
}

:is(.photo-list li):is([data-status=prev-prev]) {
    opacity: 0;
    transform: rotate(-10deg)
}

:is(.photo-list li):is([data-status=standby]) {
		opacity: .2;
    transform: rotate(6deg) translate3d(-1em, 0, 0);
}

:is(.photo-list li):is([data-status=first]):after {
    content: none
}

:is(.photo-list li):is([data-status=first]) img {
    transform: scale(1.3)
}

:is(.photo-list li):is([data-status=third]) {
    opacity: 0;
    transform: rotate(10deg);
    transition: none
}

:is(.photo-list li):is([data-status=undefined]) {
    opacity: 0
}

#main-visual .btns {
	display: flex;
	gap: 2rem;
	position: relative;
	z-index: 3;
	padding: 1.4rem 2rem;
	margin: -5.4rem auto 0;
	max-width: 90rem;
	background: #fff;
	border-radius: 8rem;
	box-shadow: 0 0.4rem 2.4rem rgba(0,0,0,0.05);
}
#main-visual .btns a {
	width: 100%;
}

.btn-link .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 8rem;
	border-radius: 8rem;
	letter-spacing: 0.12em;
	color: #fff;
	font-weight: 600;
	font-size: 2.2rem;
}
.btn-link .green-st {
	background: linear-gradient(90deg, #35B264, #AEDA7B);
}
.btn-link .orange-st {
	background: linear-gradient(90deg, #F98C33, #ECCA6D);
}

.btn-link2 {
	margin-top: 5rem;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.12em;
}
.btn-link2 .tit {
	margin-bottom: 3rem;
	font-weight: 900;
	font-size: 3.2rem;
}

@media screen and (max-width: 959px) {
	.btn-link2 .tit {
		font-size: 3rem;
	}
}

.btn-link2 .btn {
	display: inline-flex;
	align-items: center;
	position: relative;
	padding: 0 8rem;
	width: 100%;
	max-width: 60rem;
	height: 10rem;
	border-radius: 8rem;
	color: #fff;
	font-weight: 700;
	font-size: 2.2rem;
}
.btn-link2 .btn:before {
	content: "";
	position: absolute;
	right: 8rem;
	top: 0;
	transition-duration: 0.3s;
	height: 100%;
	width: 2rem;
	background: url(../img/common/icon_link_wh.svg)no-repeat center;
	background-size: 100%;
}
.btn-link2 .orange-st {
	background: linear-gradient(90deg, #F98C33 0%, #ECCA6D 100%);
}
.btn-link2 .green-st {
	background: linear-gradient(90deg, #35B264 0%, #AEDA7B 100%);
}

.head-large {
	margin-bottom: 6rem;
	text-align: center;
	line-height: 1;
	color: #6C624F;
}
.head-large p + p {
	margin-top: 2.5rem;
}
.head-large .eng {
	letter-spacing: 0.05em;
	font-size: 4.8rem;
	font-weight: 900;
}
.head-large .jap {
	font-size: 2rem;
	font-weight: 700;
}

.head-small {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.6;
}

.js-image-scroll {
	overflow: hidden;
	display: flex;
}
.js-image-scroll ul {
	display: flex;
	align-items: flex-start;
}
.js-image-scroll ul:nth-child(odd) {
	animation-name: image-loop-left1;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.js-image-scroll ul:nth-child(even) {
    animation-name: image-loop-left2;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes image-loop-left1 {
	0% {
	    transform: translateX(100%);
	}
	100% {
	    transform: translateX(-100%);
	}
}
@keyframes image-loop-left2 {
	0% {
	    transform: translateX(0);
	}
	100% {
	    transform: translateX(-200%);
	}
}
.txt-swiper li {
	overflow: hidden;
	padding-right: 9rem;
	width: auto;
	text-align: center;
}
.txt-swiper h3 {
	white-space: nowrap;
	word-wrap: break-word;
	word-break:break-all;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
	color: #53BE7C;
	font-size: 10.6rem;
	font-weight: 400;
}


@media screen and (max-width: 900px) {
	#main-visual .btns {
		margin: -5.4rem 5rem 0;
	}
}
/*** hover ***/
@media screen and (min-width: 960px) {
	.btn-link .green-st:hover {
		background: #fff;
		border: 3px solid #00A23F;
		color: #00A23F;
	}
	.btn-link .orange-st:hover {
		background: #fff;
		border: 3px solid #F98C33;
		color: #F98C33;
	}
	.btn-link2 .btn:hover:before {
		right: 7rem;
	}
	.btn-link2 .green-st:hover {
		background: #fff;
		border: 3px solid #00A23F;
		color: #00A23F;
	}
	.btn-link2 .green-st:hover:before {
		background-image: url(../img/common/icon_link_green.svg);
	}
	.btn-link2 .orange-st:hover {
		background: #fff;
		border: 3px solid #F98C33;
		color: #F98C33;
	}
	.btn-link2 .orange-st:hover:before {
		background-image: url(../img/common/icon_link_orange.svg);
	}
}

/* sp */
@media screen and (max-width: 750px) {
	.inner,
	.inner-small {
		padding: 0 2rem;
	}
	
	#main-visual .kv {
	    padding: 12rem 0 10rem;
	}	
	#main-visual .head {
		text-align: center;
	}
	.photo-list {
	    max-width: 90%;
	}
	.photo-list li {
	    width: 100%;
	    height: 74.667vw;
	}
	.photo-list li img {
		border-radius: 1rem;
	}
	.photo-list li.current2 img {
		border-width: 2px;
	}
	:is(.photo-list li):after {
		border-radius: 1rem;
	}
	#main-visual .btns {
	    display: block;
		transform: translateY(0);
	    padding: 2rem 1.5rem;
	    margin: 3rem 2rem 0;
	    border-radius: 2rem;
	    box-shadow: 0 0.4rem 2.4rem rgba(0, 0, 0, 0.05);
	}
	#main-visual .btns a {
		height: 4.5rem;
	}
	#main-visual .btns a + a {
		margin-top: 0.8rem;
	}
	
	.btn-link .btn {
		height: 6.5rem;
		font-size: 1.8rem;
	}
	.btn-link2 {
	    margin-top: 5.5rem;
	}
	.btn-link2 .tit {
		line-height: 1.6;
	    font-size: 3rem;
	}
	.btn-link2 .btn {
	    padding: 0 2.5rem;
	    height: 7rem;
	    font-size: 1.8rem;
	}
	.btn-link2 .btn:before {
	    right: 2.5rem;
	}
		
	.head-large {
	    margin-bottom: 4rem;
	}
	.head-large p + p {
	    margin-top: 2rem;
	}
	.head-large .eng {
	    font-size: 4rem;
	}
	
	.head-small {
		font-size: 1.7rem;
	}
}


/* !page
---------------------------------------------------------- */

.btn-golist {
	margin-top: 1.5rem;
	text-align: center;
}
.btn-golist a {
	display: inline-flex;
	align-items: center;
	padding: 0 7rem;
	height: 5rem;
	width: 100%;
	max-width: 33rem;
	background: no-repeat right 7rem center #fff;
	border-radius: 5rem;
	border: 2px solid;
	font-weight: 700;
	font-size: 1.4rem;
}

.orange-st .btn-golist a {
	background-image: url(../img/common/icon_link_ora.svg);
	border-color: #F98C33;
	color: #F98C33;
}

.top-howto {
	position: relative;
	z-index: 2;
	padding: 0 0 6.5rem;
	margin-top: 28rem;
	background: #00A23F;
	color:  #fff;
}
.top-howto:before {
	content: "";
	pointer-events: none;
	position: absolute;
	left: 0;
	bottom: 100%;
	z-index: -1;
	height: 28rem;
	width: 100%;
	background: url(../img/top/bg_howto_cloud.png)no-repeat center top;
	background-size: auto 100%;
}

@media screen and (min-width: 1920px) {
	.top-howto:before {
		background-size: 100% 100%;
	}
}

.top-howto .inner {
	max-width: 138rem;
}

.top-howto .head-large {
	color:  #fff;
}
.top-howto .txt-swiper {
	position: absolute;
	left: 0;
	top: 32rem;
	z-index: 0;
	width: 100%;
}
.howto-flow {
	position: relative;
	padding-top: 3rem;
}
.howto-flow ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	position: relative;
	z-index: 2;
}
.howto-flow li {
	position: relative;
	padding: 0 1rem 3.4rem;
	background: #fff;
	border-radius: 3rem;
	border: 3px solid #F98C33;
	box-shadow: 0 0.4rem 3rem #10883C;
	text-align: center;
	aspect-ratio: 1/1;
}
.howto-flow li + li:before {
	content: "";
	position: absolute;
	left: -4.3rem;
	top: 50%;
	transform: translateY(-50%);
	border-style: solid;
	border-color: transparent transparent transparent #F98C33;
	border-width: 1.5rem 0 1.5rem 3rem;
}
.howto-flow li .step {
	position: relative;
	z-index: 2;
	margin: -2.5rem 0 2rem;
	letter-spacing: 0.1em;
	line-height: 1;
	color: #F98C33;
	font-size: 6rem;
	font-weight: 900;
}
.howto-flow li .step:before {
	content: attr(data-tit);
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
	transform: translate(-50%, -50%);
	-webkit-text-stroke: 1rem #fff; 
} 
.howto-flow li .tit {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
	line-height: 1.2;
	color: #00A23F;
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: .05em;
}


.top-servicearea {
	padding: 13rem 0 0;
}

.top-servicearea .head {
	margin-bottom: 2rem;
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.6;
}
.top-servicearea .head2 {
	margin-bottom: 6rem;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.6;
}
.area-introd ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2.5rem 3.2rem;
}
.area-introd li a {
	display: block;
	overflow: hidden;
	position: relative;
	padding-top: 100%;
	height: 0;
	border-radius: 1rem;
}
.area-introd li .img {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.area-introd li .img img {
	object-fit: cover;
	transition-duration: 0.5s;
	width: 100%;
	height: 100%;
}
.area-introd li .info {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	transition-duration: 0.5s;
	width: 100%;
	height: 100%;
	color: #fff;
	background: rgba(0,0,0,0.2);
}
.area-introd li .area {
	line-height: 1.4;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
}
.area-introd li .place {
	display: block;
	margin-top: .8rem;
	font-size: 4rem;
	line-height: 1;
}
.area-introd li .eng {
	display: block;
	margin-top: .8rem;
	font-size: 2rem;
}
.area-introd li.note .eng:after {
	content: "※";
	display: block;
	margin-top: 1rem;
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1;
}
.top-servicearea .notes {
	margin-top: 2.5rem;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.6;
	font-weight: 500;
	font-size: 2rem;
}


@media screen and (max-width: 1320px) {
	.top-howto {
		margin-top: 14.5833vw;
	}
	.top-howto:before {
		height: 14.5833vw;
		background-size: auto 18.75vw;
	}
	.howto-flow li {
		padding: 0 1vw 1.77vw;
		aspect-ratio: auto;
	}
	.howto-flow li .step {
		font-size: 4.8rem;
	}
	.howto-flow li .icon img {
		max-width: 14.9vw;
	}
	.howto-flow li .tit {
		margin-top: 1.041667vw;
		font-size: 1.8vw;
	}
	
}
@media screen and (max-width: 1200px) {
	
	.btn-golist a {
		padding: 0 5rem;
		max-width: 28rem;
	}
	
	.area-introd ul {
		grid-template-columns: repeat(4, 1fr);
	}
	
}
@media screen and (max-width: 1024px) {
	.area-introd ul {
		grid-template-columns: repeat(3, 1fr);
	}
}
/*** hover ***/
@media screen and (min-width: 960px) {
	
	.btn-golist a:hover {
		background-position: right 6rem center;
		box-shadow: 0 0.4rem 2.4rem rgba(55,55,55,0.15);
	}
	.orange-st .btn-golist a:hover {
		background-color: #FFFAEF;
	}
	
	.area-introd li a:hover img {
		transform: scale(1.1,1.1);
	}
	.area-introd li a:hover .info {
		background: rgba(0,0,0,0.5);
	}
}

/* sp */
@media screen and (max-width: 750px) {
	.btn-golist {
		margin-top: 1.2rem;
	}
	.btn-golist a {
		max-width: 33rem;
	    background-position: right 5rem center;
		background-size: 2.5rem;
	}
	
	.top-howto {
	    padding: 0 0 8.4rem;
	    margin-top: 13.333vw;
	}
	.top-howto:before {
	    height: 13.333vw;
	    background-size: auto 20.6667vw;
	}
	.top-howto .txt-swiper {
		display: none;
	}
	.top-howto .head-large .jap {
	    font-size: 1.8rem;	
	}
	.howto-flow ul {
	    grid-template-columns: repeat(1, 1fr);
	    gap: 5rem;
	}
	.howto-flow li {
	    padding: 0 1rem 3rem;
	}
	.howto-flow li + li:before {
	    content: "";
	    position: absolute;
	    left: 50%;
	    top: -5.3rem;
	    transform: translateX(-50%);
		border-color: #F98C33 transparent transparent;
	    border-width: 2rem 1.2rem 0;
	}
	.howto-flow li .step {
		font-size: 6rem;
	}
	.howto-flow li .icon img {
		max-width: 25rem;
	}
	.howto-flow li .tit {
	    margin-top: 1.5rem;
	    font-size: 2.3rem;
	}

	.top-servicearea {
	    padding: 8.4rem 0 0;
	}
	.top-servicearea .head {
		line-height: 1.6;
	    text-align: left;
	    font-size: 2.4rem;
	}
	.top-servicearea .head2 {
	    margin-bottom: 4rem;
		line-height: 1.6;
	    text-align: left;
	    font-size: 1.6rem;
	}
	.area-introd ul {
	    gap: 2.5rem 1.1rem;
	    grid-template-columns: repeat(2, 1fr);
	}
	.area-introd li .info {
		background: rgba(0,0,0,0.2);
	}
	.area-introd li .area {
	    font-size: 1.4rem;
	}
	.area-introd li .place {
	    margin-top: 0.25rem;
	    font-size: 2.4rem;
	}
	.area-introd li .eng {
	    margin-top: 0.25rem;
	    font-size: 1.4rem;
	}
	.area-introd li.note .eng:after {
	    margin-top: 0.4rem;
		font-size: 1.4rem;
	}
	.top-servicearea .notes {
	    margin-top: 3rem;
	    padding-left: 0;
	    text-indent: 0;
		letter-spacing: 0.04em;
	    line-height: 1.5;
	    font-size: 1.3rem;
	}
	
	
}



.news-list li {
	border-bottom: 1px solid #D9D9D9;
}

.news-list li a {
	display: block;
	padding: 1.65rem 0 2.5rem;
}

.news-list li a .title {
	overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 1.8rem;
	line-height: 1.7;
	margin-bottom: 1.15rem;
	font-weight: 500;
}

.news-list li a .box-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
}

.news-list li a .date {
	font-size: 1.6rem;
	line-height: 1.375;
}

.news-list li a .tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.2rem;
}

.news-list li a .tags .tags-item {
	font-size: 1.5rem;
	line-height: 1.46;
	color: #fff;
	padding: 0 1.6rem;
	display: inline-block;
	border-radius: 6.5rem;
}

.green-st .tags .tags-item {
	background: #00A23F;
}

.orange-st .tags .tags-item {
	background: #F98C33;
}


/* sp */
@media screen and (max-width: 750px) {
	.news-list li a .title {
		-webkit-line-clamp: 2;
		margin-bottom: 1.67rem;
		font-size: 1.7rem;
	}

	.news-list li a .date {
		font-size: 1.3rem;
		line-height: 1.6923;
	}

}



/* interstreet
-----------------------------------------------------------------*/
#interstreet #loading .bg {
	background: #fff;
}
#interstreet #loading .head {
	color: #00A23F;
}

#interstreet :is(.photo-list li):after {
	border-color: #fff;
}

#interstreet #header {
	color: #fff;
}
#interstreet #header.active {
	color: #333;
}
#interstreet #header.active .header-logo .on {
	opacity: 1;
}

#interstreet #main-visual {
	padding-bottom: 26rem;
	background: #00A23F;
	color: #fff;
}
#main-visual .end-about {
	text-align: center;
}
#main-visual .end-about .sub {
	line-height: 1.8;
	font-size: 2.2rem;
	font-weight: 700;
}
#main-visual .head2 {
	margin-bottom: 5rem;
	line-height: 1.3;
	font-weight: 700;
	font-size: 3.2rem;
}
#main-visual .head2 .tit {
	display: inline-block;
	margin-bottom: 5rem;
	border-bottom: 1px solid #fff;
	font-size: 3.6rem;
}
#main-visual .head2 .foucs {
	display: block;
	font-weight: 900;
	font-size: 5rem;
}

.interstreet-news {
	position: relative;
	margin-top: -18rem;
	padding: 12rem 0 6rem;
	background: #FFFAEF;
	border-radius: 10rem 10rem 0 0;
}

.interstreet-news .inner {
	max-width: 138rem;
}

.interstreet-news .news-list li a {
    padding: 3rem 0;
}
.interstreet-news .news-list li a .title {
	margin: 1.15rem 0 0;
}
.interstreet-news .news-list li:last-child {
	border-bottom: 0;
}

.interstreet-howto {
	padding: 9rem 0 0;
}
.interstreet-howto .flow-display li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.interstreet-howto .flow-display li + li {
	margin-top: 4rem;
}
.interstreet-howto .flow-display .icon {
	position: relative;
	padding-top: 25%;
	width: 25%;
	background: #fff;
	border-radius: 3rem;
	border: 3px solid #F98C33;
	text-align: center;
}
.interstreet-howto .flow-display .icon img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
}
.interstreet-howto .flow-display .info {
	width: calc(75% - 11rem);
}
.interstreet-howto .flow-display .head {
	position: relative;
	padding: 1rem 2rem 1rem 10rem;
	margin-bottom: 4.2rem;
	background: #6EBE8B;
	border-radius: 5rem;
	line-height: 1.4;
	color: #fff;
	font-size: 3.2rem;
	font-weight: 700;
}
.interstreet-howto .flow-display .step {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: -3rem;
	top: 50%;
	transform: translateY(-50%);
	width: 9rem;
	height: 9rem;
	background: #fff;
	border: 1px solid;
	border-radius: 50%;
	color: #6EBE8B;
	font-size: 4rem;
}
.interstreet-howto .flow-display li:nth-child(2) .head {
	background: #3DAD66;
}
.interstreet-howto .flow-display li:nth-child(2) .step {
	color: #3DAD66;
}
.interstreet-howto .flow-display li:nth-child(3) .head {
	background: #10883C;
}
.interstreet-howto .flow-display li:nth-child(3) .step {
	color: #10883C;
}
.interstreet-howto .flow-display .sub {
	line-height: 1.6;
	font-size: 2.2rem;
	font-weight: 700;
}
.interstreet-howto .flow-display .note {
	margin-top: 2rem;
	line-height: 1.7;
	font-size: 2rem;
}
.interstreet-howto .applinks {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 2rem;
}
.interstreet-howto .applinks .bike {
	width: 10rem;
}
.interstreet-howto .applinks .btns img {
	height: 6rem;
}
.interstreet-howto .applinks .tit {
	margin-bottom: 1rem;
	line-height: 1.2;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
}
.interstreet-howto .applinks .btns {
	display: flex;
	gap: 0 1rem;
}

#interstreet .top-servicearea {
    padding: 10rem 0 0;
}

.interstreet-pricelist {
	padding: 10rem 0;
}
.interstreet-pricelist .head-small {
	margin-bottom: 4rem;
}
.interstreet-pricelist .price-select {
	margin-bottom: 4rem;
}
.price-select ul {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.3rem 2rem;
	margin: 0 auto;
	max-width: 128rem;
}
.price-select li {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	transition-duration: 0.3s;
	height: 5.5rem;
	background: #fff;
	border: 1px solid;
	border-radius: 5rem;
	font-size: 2rem;
}
.price-select li.active {
	background: #00A23F;
	color: #fff;
}

.fee-prefecture {
	overflow: hidden;
	border-radius: 1rem;
	border: 1px solid #00A23F;
}
.fee-prefecture .prefecture {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 3rem;
	padding: 1.6rem;
	background: #00A23F;
	text-align: center;
	color: #fff;
	font-weight: 700;
	font-size: 2.2rem;
}
.fee-prefecture .prefecture .big {
	font-size: 3.2rem;
}
.fee-prefecture .td {
	padding: 5rem 11rem;
	background: #ECF7F0;
}
.fee-prefecture .mt60 {
	margin-top: 6rem;
}
.fee-prefecture .head {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 1rem;
	margin-bottom: 2rem;
	text-align: center;
	font-size: 3rem;
	font-weight: 700;
}
.fee-prefecture .head img {
	height: 2.8rem;
}
.fee-prefecture .col2 {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 4rem;
}
.fee-prefecture .col2 li {
	width: calc(50% - 2rem);
}
.fee-prefecture .col2 li.full {
	width: 100%;
}
.fee-prefecture .price-item {
	padding: 1.8rem 3rem;
	background: #fff;
	border: 1px solid #B3B3B3;
	border-radius: 0.5rem;
}
.fee-prefecture .price-item .row:after {
	content: "";
	display: block;
	clear: both;
}
.fee-prefecture .price-item .th {
	float: left;
	color: #00A23F;
	font-size: 2.4rem;
	font-weight: 700;
}
.fee-prefecture .price-item .data {
	float: right;
	line-height: 1;
	font-size: 2.4rem;
	font-weight: 700;
}
.fee-prefecture .price-item .data .num {
	color: #00A23F;
	font-size: 4.8rem;
}
.fee-prefecture .price-item .cate span {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border: 1px solid;
	border-radius: 3rem;
	line-height: 1;
	font-size: 1.8rem;
	font-weight: 700;
}
.fee-prefecture .price-item .total {
	margin-top: 2rem;
	text-align: right;
	font-size: 2rem;
}
.fee-prefecture .note {
	margin-top: 1.6rem;
	font-size: 1.8rem;
}

.fee-prefecture .col2 li.full .row {
	align-items: center;
}
.fee-prefecture .row .total {
	margin-top: 0;
	max-width: calc(100% - 24rem);
	text-align: left;
}

.price-settlement {
	padding: 4rem 11rem;
	margin-top: 4rem;
	background: #fff;
	border-radius: 1rem;
}
.price-settlement .head {
	margin-bottom: 3rem;
	letter-spacing: 0.08em;
	font-size: 3.2rem;
	font-weight: 700;
}
.price-settlement .head:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin-right: 1rem;
	height: 2px;
	width: 1.2rem;
	background: #00A23F;
	border-radius: 2px;
}
.settlement-methods .logos img {
	width: 100%;
}
.settlement-methods .note {
	margin-top: 1.6rem;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 500;
}
.price-settlement .points {
	margin-top: 3.5rem;
}
.price-settlement .points li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.7;
	font-size: 2rem;
}
.price-settlement .points li + li {
	margin-top: 1.6rem;
}
.price-settlement .points li:before {
	content: "•";
	margin: 0 0.6rem;
}

@media screen and (max-width: 1400px) {
	.price-select ul {
	    gap: 1rem;
	}
	.price-select li {
		font-size: 1.6rem;
	}
	
	.fee-prefecture .td {
	    padding: 5rem;
	}
	.fee-prefecture .col2 {
	    gap: 2rem;
	}
	.fee-prefecture .col2 li {
		width: calc(50% - 1rem);
	}
	.fee-prefecture .price-item {
	    padding: 1.6rem;
	}
	.fee-prefecture .price-item .cate span {
	    padding: 0.8rem 1.5rem;
	    font-size: 1.6rem;
	}
	.fee-prefecture .price-item .data {
	    font-size: 2rem;
	}
	.fee-prefecture .price-item .data .num {
	    font-size: 3.6rem;
	}
	.fee-prefecture .price-item .total {
	    font-size: 1.6rem;
	}
	
}
/*hover*/
@media screen and (min-width: 960px){
	.price-select li:hover {
		background: #00A23F;
		color: #fff;
	}
}
@media screen and (max-width: 959px) {
	.price-select ul {
	    grid-template-columns: repeat(4, 1fr);
	}
	.fee-prefecture .td {
	    padding: 3rem;
	}
	.fee-prefecture .price-item .cate span {
	    padding: 0.5rem 1rem;
	    font-size: 1.4rem;
	}
	.fee-prefecture .price-item .data {
		font-size: 1.8rem;
	}
	.fee-prefecture .price-item .data .num {
		font-size: 3rem;
	}
	.fee-prefecture .price-item .total {
		margin-top: 1.6rem;
		font-size: 1.4rem;
	}
}
/* sp */
@media screen and (max-width: 750px) {
	#interstreet #header.active {
		color: #fff;
	}
	#interstreet #header:not(.active) .btn-menu {
		background-color: #fff;
		background-image: url(../img/common/icon_menu_gre.svg);
	}
	#interstreet #header:not(.active) .btn-menu.is-active {
		background-image: url(../img/common/icon_menu_close_gre.svg);
	}
	
	#interstreet #wrapper {
		padding-bottom: 11rem;
	}	
	
	#interstreet #main-visual {
	    padding-bottom: 30.6rem;
	}
	#main-visual .head2 {
		margin-bottom: 4rem;
		letter-spacing: -0.06em;
		font-size: 2.8rem;
	}
	#main-visual .head2 .tit {
		margin-bottom: 4rem;
	}
	#main-visual .head2 .foucs {
		margin-top: 1rem;
		font-size: 4.6rem;
	}
	#main-visual .end-about .sub {
		font-size: 2rem;
	}
	
	.interstreet-news {
	    padding: 7rem 0 4rem;
	    border-radius: 7rem 7rem 0 0;
	}
	
	.interstreet-howto {
	    padding: 8rem 0 0;
	}
	.interstreet-howto .flow-display li {
	    display: block;
	}
	.interstreet-howto .flow-display .icon {
		padding-top: 21rem;
		margin: 0 auto 2.5rem;
		width: 21rem;
	}
	.interstreet-howto .flow-display .info {
		width: auto;
	}
	.interstreet-howto .flow-display .head {
		padding: 1rem 2rem 1rem 8rem;
		margin-bottom: 2.5rem;
		border-radius: 5rem;
		letter-spacing: -0.08em;
		font-size: 2.8rem;
	}
	.interstreet-howto .flow-display .step {
		left: 0;
		width: 7rem;
		height: 7rem;
		font-size: 3.6rem;
	}
	.interstreet-howto .flow-display .sub {
	    line-height: 1.2;
		letter-spacing: 0.08em;
	    font-size: 2rem;
	}
	
	.interstreet-howto .applinks .btns img {
	    height: 4rem;
	}
	.interstreet-howto .flow-display .note {
		letter-spacing: 0.03em;
	    font-size: 1.6rem;
	}
	#interstreet .top-servicearea {
	    padding: 8rem 0 0;
	}
	
	.interstreet-pricelist {
	    padding: 8rem 0 6rem;
	}
	
	.interstreet-pricelist .price-select {
		padding: 1rem;
		background: #fff;
		border-radius: 1rem;
		box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.05);
	}
	.price-select .select {
		overflow: hidden;
        position:relative;
		border-radius: 5rem;
		border: 1px solid #fff;
	}
	.price-select .select:after {
		content: "+";
        position: absolute;
		right: 2.5rem;
		top: 1.8rem;
		color: #fff;
		font-weight: 700;
	}
    .price-select.open .select {
		border-radius: 2rem;
		border-color: #B3B3B3;
	}
    .price-select.open .select:after {
		content: "-";
	}
	.price-select .tit {
		padding: 1.8rem 4rem 1.8rem 2.5rem;
		background: #00A23F;
		color: #fff;
		font-size: 2rem;
	}
	.price-select ul {
		display: block;
		overflow-y:auto;
		transition: max-height .3s ease-out;
		width: 100%;
		max-height: 0;
		background: #fff;
		border-radius: 0 0 2rem 2rem;
	}
	.price-select.open ul {
	    transform-origin: 50% 0;
	    -webkit-animation: slide-down .5s ease-in;
	    transition: max-height .2s ease-out;
		padding: 1rem 0;
	    max-height: inherit;
	}
	@-weblit-keyframes slide-down {
	    %0{transform: scale(1,0);}
	    %25{transform: scale(1,1.2);}
	    %50{transform: scale(1,0.85);}
	    %75{transform: scale(1,1.05);}
	    %100{transform: scale(1,1);}
	}
	.price-select li {
		display: block;
		padding: 0.65rem 2rem;
		height: auto;
		background: #fff;
		border: 0;
		border-radius: 0;
		font-size: 2rem;
	}
	
	.fee-prefecture {
		margin: 0 -2rem;
		border: 0;
	}
	.fee-prefecture .prefecture {
		flex-direction: column;
	    gap: 0;
	    padding: 1rem;
	    font-size: 2rem;
	}
	.fee-prefecture .td {
		padding: 5rem 2rem;
	}
	.fee-prefecture .col2 {
		gap: 1.5rem;
	}
	.fee-prefecture .col2 li {
		width: 100%;
	}
	.fee-prefecture .head {
		font-size: 2.6rem;
	}
	.fee-prefecture .price-item .cate {
		margin-bottom: 1rem;
	}
	.fee-prefecture .price-item .cate span {
		display: block;
		padding: 0.5rem;
		text-align: center;
		letter-spacing: -0.01em;
		font-weight: 500;
	}
	
	.price-settlement {
	    padding: 4rem 2rem;
	    margin: 5rem -2rem 0;
	}
	.price-settlement .head {
	    font-size: 2.4rem;
	}
	.settlement-methods .note {
	    margin-top: 2rem;
	    font-size: 1.6rem;
	}
	.price-settlement .points li {
	    line-height: 1.3;
	    font-size: 1.7rem;
	}

}
