body {
    font-family: "Noto Sans JP", sans-serif;
}

:root {
    --font-w-light: 300;
    --font-w-regular: 400;
    --font-w-medium: 500;
    --font-w-semibold: 600;
    --font-w-bold: bold;
}


main:not(.top-main) {
    margin-top: 100px;
}

/* 色 */
:root {
    --co-l-green: #00BE9D;
    --co-l-orange: #F39A00;
}

.js-fade {
    opacity: 0;
    transition: opacity 1s;
    transition-delay: 0.5s;
}

.js-fadeup {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
    transition-delay: 0.3s;
}

.inview {
    opacity: 1;
    transform: translateY(0px);
}


.n-fade {
    opacity: 0;
    transition: opacity 1s;
    transition-delay: 0.8s;
}

.n-fade2 {
    opacity: 0;
    transition: opacity 1s;
    transition-delay: 1s;
}

.n-inview {
    opacity: 1;
    animation-duration: 8s;
    animation-fill-mode: forwards;
}

.top-common__title h2 {
    font-size: .21rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
}

.top-common__title p {
    font-weight: bold;
    font-size: .60rem;
    font-family: "Roboto", sans-serif;
    color: #E1E0DF;
    line-height: 1;
    text-align: center;
}

.common-h3 {
    font-size: .32rem;
    margin-bottom: 18px;
    line-height: 1.6;
    font-weight: var(--font-w-semibold);
}


p {
    font-size: .16rem;
    font-weight: var(--font-w-regular);
}

.page-title {
    background-image: url();
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 200px 20px 192px;
}

.page-title p {
    font-size: .24rem;
    font-weight: var(--font-w-medium);
    line-height: 1.5;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
}

.page-title p span {
    font-size: .40rem;
    font-weight: var(--font-w-bold);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.page-title__orange {
    padding: 50px 20px;
    background: #c5c1bb;
}

.page-title__orange p span{
	text-shadow: unset;
    color: #FFF;
}

/* パンクズリスト */
.breadcrumb {
    margin: 30px 0;
    width: 1320px;
    max-width: 100%;
    margin: 30px auto;
    padding: 0 60px;
}

.breadcrumb li {
    display: inline-block;
    font-size: .15rem;
    font-weight: var(--font-w-medium);
}

.breadcrumb li a {
    color: #000;
}

.breadcrumb li::after {
    content: ">";
    display: inline-block;
    margin: 0 5px;
}

.breadcrumb li:last-child::after {
    content: none;
}

.common-btn {
    font-size: .16rem;
    color: #000;
    font-weight: var(--font-w-semibold);
    text-align: center;
    text-decoration: none;
    width: fit-content;
    display: block;
    text-align: center;
    margin: 0 auto;
    position: relative;
    padding: 9px 60px 9px 40px;
    border: solid 2px #000;
    border-right: none;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
	transition: .3s ease-in-out;
  	transition-property: color,opacity;
	z-index: 1;
}

.common-btn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 49px;
    height: 2px;
    background-color: #F39A00;
    z-index: 2;
}

.common-btn__prepare::after{
	display: none;
}

.common-btn-soon {
    pointer-events: none;
    padding: 9px 42px;
}
.common-btn-soon::after{
    display: none;
}

.common-btn img {
    width: 15px;
    margin-left: 8px;
    vertical-align: baseline;
}


.common-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 0%;
  height: 100%;
  background-color:#000;
  -webkit-transition: .5s;
  transition: .5s;
  transition-property: width;
  z-index: -1;
}


.common-btn:hover::before {
  width: 100%;
}
.common-btn:hover{
  color:#fff;
  opacity: 1;
}


.contact-banner {
    background-image: url(../images/common/contact-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 28px 20px;
    width: 1035px;
    max-width: 100%;
    margin: 130px auto;
}

.contact-banner__text {
    color: #fff;
}

.contact-banner__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
}

.contact-banner__text p:nth-of-type(1) {
    font-weight: var(--font-w-bold);
	font-size: .4rem;
    margin-bottom: 10px;
    letter-spacing: 0.05rem;
    line-height: 1.5;
}

.contact-banner__text p:nth-of-type(2) {
    font-size: .18rem;
    font-weight: var(--font-w-bold);
}

.contact-banner__container .common-btn {
    margin: 0;
    color: #fff;
        border: solid 2px #fff;
    border-right: none;
}

.contact-banner__container .common-btn img {
    vertical-align: sub;
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(7482%) hue-rotate(281deg) brightness(111%) contrast(103%);
}


.sp_only {
    display: none;
}


@media screen and (max-width:1120px) {
	main:not(.top-main) {
		margin-top: 70px;
	}
}
	
@media screen and (max-width:800px) {
    .sp_only {
        display: block;
    }

    .pc_only {
        display: none;
    }


    .breadcrumb {
        margin: 30px auto;
        padding: 0 29px;
    }

    .page-title {
        background-image: url();
        padding: 163px 31px 165px;
    }

    .page-title p {
        line-height: 1.3;
    }

    .page-title p span {
        font-size: 0.36rem;
    }
	
	.top-common__title p {
        font-size: .48rem;
        margin-bottom: 4px;
    }
	
	.top-common__title h2 {
        font-size: .18rem;
    }
	
	.common-btn {
		font-size: .15rem;
		width: 217px;
        padding: 7px 0px 7px 0px;
	}
	
	
	/*お問い合わせ*/
	.contact-banner {
    	width: 84%;
    	margin: 88px auto;
    	padding: 28px 26px 32px;
		background-image: url(../images/common/sp-contact-banner.jpg);
	}
	
	.contact-banner__container {
    	flex-direction: column;
	}
	
	.contact-banner__text p:nth-of-type(1) {
    	font-size: .36rem;
	}
	
	.contact-banner__text p:nth-of-type(2) {
    	font-size: .16rem;
    	font-weight: var(--font-w-bold);
	}
	
	.contact-banner__text {
    	margin-bottom: 46px;
		width: 100%;
	}
	
	.contact-banner__container .common-btn {
    	width: 100%;
    	padding: 7px 35px 7px 0px;
	}
	
	    .common-h3 {
    font-size: .27rem;
}
	
}



.effect-rise-wrap{
    overflow: hidden;
}

.effect-rise-wrap .effect-rise-text{
    transform: translateY(150%) translateZ(0);
    transition: transform 1s cubic-bezier(0.2, 0.5, 0.4, 1);
}

.rise-none.effect-rise-wrap .effect-rise-text{
    transform: none;
}
