@charset "utf-8";
/*
Theme Name: 株式会社GAパートナーズ Theme
Description: 株式会社GAパートナーズ themes
Version: 1.0
*/

@font-face {
    font-family: "RyuminPro";
	src: url("./assets/fonts/A-OTF-RyuminPro-Regular.otf") format("opentype");
}

/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
    --base-color: #595959;
    --main-color: #003A8C;/* blue */
    --sub-color1: #CB000B;/* red */
    --sub-color2: #EBEBEB;/* bg gray */

	--font-base: 'Noto Sans JP', sans-serif;
	--font-mincho: "RyuminPro";
	--font-en1: "Staatliches", sans-serif;
	--font-en2: "Oswald", sans-serif;
}


body {
	position: relative;
    font-size: 18px;
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--base-color);
	padding-top: 90px;
}

input,
select,
textarea,
radio,
checkbox,
button {
	font-family: 'Noto Sans JP', sans-serif;
}
p {
    line-height: 2;
}
img {
    vertical-align: middle;
}
.sp {
	display: none !important;
}
.inner {
    width: 100%;
    max-width: 1250px;
	padding: 0 25px;
	margin:auto;
	position: relative;
}

.link {
    color: var(--main-color);
	text-decoration: underline !important;
}


/* off */
.link-off a {
    cursor: default !important;
    color: #ccc !important;
}
.flex-not {
	display: block !important;
}

/* nav-line */
.nav-line a:not(.no-line),
.nav-line .has-sublink {
	opacity: 1 !important;
	text-decoration: none !important;
    position: relative;
}
.nav-line a:not(.no-line):after,
.nav-line .has-sublink:after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 0;
    border-top:solid 1px var(--main-color);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-line a:not(.no-line):hover:after,
a.current:after,
.nav-line .has-sublink:hover:after,
.nav-line .has-sublink.current:after {
    transform-origin: left top;
    transform: scale(1, 1);
}
.nav-line-white a:not(.no-line):after {
    border-top:solid 1px #fff;
}

/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#gb-header {
	width: 100%;
    background: #fff;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
	position: fixed;
	left:0;
	top: 0;
	z-index: 1000;
}
.header-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 90px;
    padding: 0 120px 0 20px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.site-title {
	width: 260px;
    line-height: 1;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.site-title a {
    display: block;
    height: 0;
    padding-top: 33px;
    overflow: hidden;
    background-image: url("./assets/img/cmn/site_logo.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.main-nav__list {
    display: flex;
}
.main-nav__list >li {
    font-size: 15px;
    margin-left: 40px;
}
.main-nav__list >li a {
    color: var(--base-color);
}

.main-nav__list.nav-line a:not(.no-line):after,
.main-nav__list.nav-line .has-sublink:after{
    border-top:solid 2px var(--main-color);
}
.main-nav__list >li:hover > a:after,
.main-nav__list >li.current > a:after,
.main-nav__list >li:hover > .has-sublink:after{
    transform-origin: left top;
    transform: scale(1, 1);
    z-index: 100;
}


.sub-nav {
	font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
	max-height: 0;
    padding: 40px 0 20px;
    background: #fff;
	opacity: 0;
	visibility: hidden;
	border-bottom: solid 1px #d9d9d9;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
    z-index: -1;
}
.sub-nav:before {
    content: '';
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    position: absolute;
    left: 0;
    top: 34px;
}
.sub-nav-title {
	font-weight: 500;
	padding-right: 30px;
	border-right: solid 1px var(--main-color);
}
.sub-nav__list {
    display: flex;
	align-items: center;
}
.sub-nav__list >li {
	margin-left: 30px;
}
.main-nav__list >li:hover .sub-nav {
	max-height: 1000px;
    padding: 50px 0 20px;
	visibility: visible;
	opacity: 1;
	z-index: 10;
}

#menu-btn {
    display: block;
    width: 90px;
    height: 90px;
    background: var(--main-color);
    cursor: pointer;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#menu-btn span {
    width: 56px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 17px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#menu-btn span.t {
    top: 36px;    
}
#menu-btn span.b {
    bottom: 36px;
}
#menu-btn.active span.t {
    transform: rotate(45deg);
    top: 44px;
}
#menu-btn.active span.b {
    transform: rotate(-45deg);
    bottom: 45px;
}


/* ----------------------------
   contets
-------------------------------*/
#main-contents {
	overflow: hidden;
}

.conBox {
    padding: 100px 0;
	position:relative;
}

/* cmn-title */
.cmn-title {
    display: flex;
    align-items: center;
	margin-bottom: 50px;
    position: relative;
	z-index: 1;
}
.cmn-title:before {
    content: '';
    width: calc(50vw - 50%);
    border-top: 27px solid var(--sub-color1);
    border-right: 27px solid transparent;
    position: absolute;
    top: 22px;
    left: calc(50% - 53vw);
    z-index: -1;
}
.cmn-title:after {
	content: '';
    width: 60vw;
    border-bottom: 135px solid var(--sub-color2);
    border-left: 135px solid transparent;
    position: absolute;
    right: calc(50% - 55vw);
    z-index: -1;
}
.cmn-title h2 {
	font-size: 68px;
    font-weight: 400;
    font-family: var(--font-en2);
	margin-right: auto;
	line-height: 1.4;
	white-space: nowrap;
}
.cmn-title h2 span {
    display: block;
    font-size: 23px;
    margin-top: -5px;
}
.cmn-title p {
    font-size: 21px;
    letter-spacing: 0.1em;
}
.cmn-title-line {
    width: calc(100% - 23em);
    height: 1px;
    background: #d9d9d9;
    margin: 0 30px;
}

.cmn-desc {
	font-size: 25px;
	font-family: var(--font-mincho);
	line-height: 2.2;
	text-align: center;
	margin-bottom: 100px;
}

i.arrow {
	display: block;
    width: 80px;
    height: 60px;
	position: relative;
}
i.arrow:before {
    content: '';
    width: calc(100% - 10px);
    height: 1px;
    background: var(--main-color);
    position: absolute;
    right: 2px;
    top: 50%;
}
i.arrow:after {
    content: '';
    width: 40px;
    height: 40px;
    border-right: solid 1px var(--main-color);
    border-top: solid 1px var(--main-color);
    transform: rotate(45deg);
    position: absolute;
    right: 9px;
    top: 10px;
}

i.arrow-anime {
    width: 27px;
    height: 30px;
    position: absolute;
    right: 0;
    font-style: normal;
    overflow: hidden;
}
i.arrow-anime:before,
i.arrow-anime:after {
    content: '→';
    position: absolute;
    transition: 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
i.arrow-anime:before {
	right: 5px;
}
i.arrow-anime:after {
	right: 50px;
}
.has-arrow-anime:hover i:before {
	right:-50px;
}
.has-arrow-anime:hover:hover i:after {
	right: 5px;
}

i.arrow-circle-anime {
    font-style: normal;
	color: #fff;
	display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
	background: var(--main-color);
	border-radius:  1000px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
	overflow: hidden;
}
i.arrow-circle-anime:before,
i.arrow-circle-anime:after {
    content: '→';
    position: absolute;
    transition: 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
i.arrow-circle-anime:before {
	right: 5px;
}
i.arrow-circle-anime:after {
	right: 100px;
}
.has-arrow-circle-anime:hover i.arrow-circle-anime:before {
	right:-100px;
}
.has-arrow-circle-anime:hover i.arrow-circle-anime:after {
	right: 5px;
}


/* news */
.news__list >li {
    margin-bottom: 20px;
	padding-bottom: 20px;
    border-bottom: solid 1px #ccc;
}
.news__list >li a {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-right: 50px;
    color: var(--base-color);
    position: relative;
}
.news-date {
    display: inline-block;
    font-size: 24px;
    font-family: var(--font-en2);
    width: 120px;
}
.news-category {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    width: 130px;
    line-height: 1;
    text-align: center;
    color: #fff;
    background: var(--main-color);
    padding: 10px 0;
}
.news__list .news-title {
    display: inline-block;
    width: calc(100% - 330px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news__list .news-date {
}
.news__list .news-category {
}
.news__list .news-title {
    display: inline-block;
    width: calc(100% - 330px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news__list i.arrow-circle-anime {
	position: absolute;
	right: 14px;
	top: calc(50% - 17px);
}
.news__list i.arrow-circle-anime:before {
    right: 7px;
}
.news__list .has-arrow-circle-anime:hover i.arrow-circle-anime:after {
    right: 7px;
}
.news-category.property {
	background: var(--main-color);
}
.news-category.topics {
	background: #FB8F29;
}
.news-category.information {
	background: #13751A;
}
.news-category.cbusiness {
	background: #CB000B;

}

/* more */
.cmn-btn {
    text-align: center;
    margin-top: 50px;
}
.cmn-btn.right {
    text-align: right;
}
.cmn-btn a {
    color: var(--base-color);
    display: inline-block;
    font-size: 20px;
	letter-spacing: 0.1em;
    min-width: 280px;
    padding: 18px;
    text-align: center;
    border-radius: 1000px;
	position: relative;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
.cmn-btn.bg-white a {
	background: #fff;
}
.cmn-btn a i.arrow-circle-anime {
	position: absolute;
	right: 14px;
	top: calc(50% - 17px);
}
.cmn-btn a:hover {
	border-color: transparent;
}
.cmn-btn-hover {
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
}
.cmn-btn-hover rect {
    width: calc(100% - 2px);
    height: 56px;
    transition: 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
    display: block;
    stroke: #2e5dbc;
}
.cmn-btn a:before {
    content: "";
    border: 1px solid #595959;
    border-radius: 1000px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    display: block;
    transition: .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cmn-btn.no-border a:before {
	border-color: transparent;
}
.cmn-btn a:hover:before {
	border-color: transparent;
}
.cmn-btn a:hover rect {
	stroke-dashoffset: 0;
}


/**/
.to-home {
    text-align: center;
    margin-top: 70px;
}
.to-home a {
    color: var(--main-color);
    display: inline-block;
    font-size: 21px;
    max-width: 550px;
    width: 100%;
	text-align: center;
    border: solid 1px;
    position: relative;
    padding: 20px;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.to-home a i.arrow-anime {
	position: absolute;
	right: 20px;
}
.to-home .link-off {
    color: #666;
    display: inline-block;
    font-size: 21px;
    max-width: 550px;
    width: 100%;
	text-align: center;
    border: solid 1px;
    padding: 20px;
}
.to-home-flex {
    display: flex;
    justify-content: space-between;
}
.to-home-flex .to-home-flex-btn {
    width: 48%;
}
.to-home a.active,
.to-home a:hover {
    color: #fff;
    background: var(--main-color);
}


/* download pdf */
.dwl-pdf {
    text-align: center;
    margin: 100px auto 0;
}
.dwl-pdf a {
    display: inline-block;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    background: var(--main-color);
    padding: 20px;
    max-width: 540px;
    width: 100%;
    position: relative;
}
.dwl-pdf a i {
	display: inline-block;
	width: 16px;
	height: 20px;
	background: url("./assets/img/cmn/icon_dwl.webp") no-repeat center;
	background-size: contain;
	position: absolute;
	right: 20px;
    top: calc(50% - 10px);
}

/* ----------------------------
   footer & sp nav style
-------------------------------*/

#gb-footer {

}

.sp-main {
    padding: 60px 0 120px;
	background: var(--sub-color2);
}
.sp-logo {
    margin-bottom: 50px;
}
.sp-nav {
	display: flex;
}
.sp-nav-box {
	margin-right: 70px;
}
.sp-nav-main {
	font-weight: 500;
	padding-bottom:10px;
	margin-bottom: 10px;
	border-bottom: solid 1px;
}
.sp-nav-main a {
    display: block;
	color: var(--base-color);
	position: relative;
}
.sp-nav-main a i.arrow-anime {
	position: absolute;
	right: 0;
}
.sp-nav__list {

}
.sp-nav__list li {
	margin-bottom: 20px;
}
.sp-nav__list >li a {
	color: var(--base-color);
}
.sp-subnav__list {
	margin-top: 20px;
	padding-left: 20px;
	border-left: solid 1px;
}
.sp-subnav2__list >li {
	font-weight: 500;
	margin-bottom: 20px;
}
.sp-subnav2__list >li a{
	color: var(--base-color);
}

.cmn-btn.ft-to-contact {
	margin: 0;
	position: absolute;
	right: 20px;
	top: 0;
}
.sp-sns {
    position: absolute;
    right: 20px;
    bottom: -70px;
}
.sp-sns__list {
    display: flex;
    align-items: center;
}
.sp-sns__list >li {
	margin-left: 20px;
}
.sp-main .to-mynavi {
	margin-top: 0;
    display: inline-block;
    margin-left: 20px;
}
.sp-main .to-mynavi a {
    width: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 0;
	background: #fff;
	color: var(--main-color) !important;
}
.sp-main .to-mynavi a:after {
	display: none !important;
}
.sp-main .to-mynavi a i.arrow-anime {
	display:none
}
.sp-main .to-mynavi a img {
	width: 84px !important;
}
.sp-main .to-mynavi a:hover {
	color: var(--main-color);
}

.sp-sub {
    color: #fff;
    font-size: 15px;
    background: var(--main-color);
}
.sp-sub .inner {
    display: flex;
	flex-direction: row-reverse;
    padding: 40px 20px;
}
.sp-sub-nav {
    margin-right: auto;
}
.sp-sub-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sp-sub-nav__list >li {
	margin-left: 20px;
    margin-bottom: 10px;
}
.sp-sub-nav__list >li a {
	color: #fff;
}
#gb-footer .nav-line.sp-nav__list >li a:not(.no-line):after {
    border-top:solid 1px var(--base-color);
}
#gb-footer .sp-sns__list.footer-sp {
    display: none;
}

#sp-nav {
	color: #fff;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 70px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -10;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#sp-nav.active {
    opacity: 1;
    visibility: visible;
    background: var(--main-color);
    z-index: 9999;
}
#sp-nav .sp-nav {
	padding-right: 250px;
}
#sp-nav .sp-main {
	background: none;
}
#sp-nav .sp-nav-main a,
#sp-nav .sp-nav__list >li a,
#sp-nav .sp-subnav2__list >li a {
	color: #fff;
}
#sp-nav .sp-sub-nav {
    margin-left: 0;
}
#sp-nav .nav-line a:not(.no-line):after {
    border-top:solid 1px #fff;
}
#sp-nav .sp-logo,
#sp-nav .copyright {
	display: none;
}
#sp-nav .cmn-btn a {
	background: #fff;
}
#sp-nav .ft-to-contact a:before {
	border-color: transparent !important;
}
#sp-nav .ft-to-contact.footer-pc {
    display:none;
}
#sp-nav .sp-sns {
    bottom: 20px;
}
#sp-nav .sp-sub {
	display: none;
}

/* backtotop */
#backtotop {
    color: var(--base-color);
	width: 64px;
    height: 64px;
    background: #fff;
    cursor:pointer;
	visibility: hidden;
	opacity: 0;
    border-radius: 100px;
    border: solid 1px;
	position:fixed;
	right: 10px;
	bottom: 30px;
	z-index: 10;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#backtotop.show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}
#backtotop:hover {
    color: var(--base-color);
    background: var(--main-color);
}
#backtotop:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-45deg);
    position: absolute;
    top: 26px;
    left: calc(50% - 7px);
}


/* -----------------------------------

media query

------------------------------------- */
@media (max-width: 1200px) {
	.main-nav {
		display: none;
	}
}

@media (max-width: 815px) {

	body {
        font-size: 15px;
		min-width: 375px;
        overflow-x: hidden;
		padding-top: 60px;
	}
	body.menu-fix {
		overflow: hidden;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	.inner {
		 width: 100%;
	}
    .inner-in {
        padding: 0;
    }

	#gb-header {
		background: #fff !important;
	}
	.header-in {
		height: 60px;
	}
	.sp-nav-logo {
		position: absolute;
		top: 20px;
	}
	#menu-btn {
		width: 60px;
		height: 60px;
	}
	#menu-btn span {
		width: 34px;
		left: 12px;
	}
	#menu-btn.active span.t {
		top: 30px;
	}
	#menu-btn.active span.b {
		bottom: 29px;
	}
	.sp-nav {
		display: block;
	}
	.sp-main {
		padding: 40px 0;
	}
	.sp-nav-box {
		margin:0;
	}
	.sp-nav-main {
		position: relative;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}
	.sp-nav-main a {
		display: inline-block;
	}
	.sp-nav-btn {
		width: 15px;
		height: 15px;
		position: absolute;
		right: 5px;
		top: 2px;
	}
	.sp-nav-btn:before,
	.sp-nav-btn:after {
		content: '';
		background: var(--base-color);
		position: absolute;
		transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
	}
	.sp-nav-btn:before {
		width: 100%;
		height: 1px;
		right: 0;
		top: 7px;
	}
	.sp-nav-btn:after {
		width: 1px;
		height: 100%;
		left: 7px;
		top: 0;
	}
	.sp-nav-hidden {
		max-height: 0;
		padding: 0;
		margin: 0;
		border: none;
		transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
		overflow: hidden;
		opacity: 0;
	}
	.sp-nav-hidden.active  {
		max-height: 1000px;
		padding: 15px 0;
        opacity: 1;
	}
	.sp-nav-hidden-2 {/*上下の余白消す*/
		padding: 0;
	}
    .sp-open-btn {
        font-weight: 500;
        display: block;
        position: relative;
        padding-bottom: 15px;
        border-bottom: solid 1px;
    }
	.sp-open-btn.active .sp-nav-btn:after {
		height: 0;
	}
	.sp-nav__list li {
		margin-bottom: 15px;
	}

	.sp-sub .inner {
		display: block;
		padding: 0;
	}
	.sp-sub-nav__list {
		flex-wrap: wrap;
		justify-content: center;
	}
	.sp-sub-nav__list >li {
		margin: 0 10px 5px;
		font-size: 11px;
	}
	.sp-nav__list >li a {
		display: inline-block;
	}
	.sp-sns {
		position: relative;
		right: auto;
		bottom: 0;
		margin: 40px auto 0;
	}
	.sp-sns__list {
		justify-content: center;
	}
	.sp-sns__list >li {
		display: inline-block;
		margin: 0 10px;
	}
	
	#sp-nav .sp-nav {
		padding-right: 0;
	}
	#sp-nav .ft-to-contact.footer-sp,
	#sp-nav .sp-sns__list.footer-pc {
		display:none;
	}
	#sp-nav .ft-to-contact.footer-pc {
		display:block;
	}
	#sp-nav .sp-sns__list.footer-sp {
		display:flex;
	}
	#sp-nav .sp-nav-btn:before,
	#sp-nav .sp-nav-btn:after {
		background: #fff;
	}

	.conBox {
		padding: 50px 0;
	}
	.cmn-title:before {
		border-top: 20px solid var(--sub-color1);
		border-right: 20px solid transparent;
		left: calc(50% - 55vw);
		top: 13px;
	}
	.cmn-title:after {
		width: 35vw;
		border-bottom: 70px solid var(--sub-color2);
		border-left: 70px solid transparent;
	}
	.cmn-title h2 {
		font-size: 40px;
	}
	.cmn-title h2 span {
		font-size: 14px;
	}
	.cmn-title p {
		font-size: 15px;
		letter-spacing: 0;
	}
	.cmn-title-line {
		width: calc(100% - 16em);
		margin: 0 10px;
	}
	.cmn-desc {
		font-size: 16px;
		margin-bottom: 60px;
	}
	
	.sp-text-left {
		text-align: left !important;
	}

	i.arrow-circle-anime {
		width: 28px;
		height: 28px;
		line-height: 28px;
	}
	.cmn-btn a i.arrow-circle-anime {
		top: calc(50% - 13px);
	}
	.cmn-btn a {
		font-size: 15px;
		min-width: 240px;
		padding: 15px;
	}
	.cmn-btn.right {
		text-align: center;
	}
	.cmn-btn.ft-to-contact {
        margin-top: 50px;
		position: relative;
		right: auto;
		top: auto;
	}
	
	.to-home a,
	.to-home .link-off {
		font-size: 18px;
	}
	.to-home-flex {
		display: block;
	}
	.to-home-flex .to-home-flex-btn {
		width: 100%;
        margin: 10px auto;
	}

	.dwl-pdf a {
		font-size: 16px;
	}

	.news__list >li a {
		display: block;
	}
	.news__list >li a i.arrow-circle-anime {
		right: 0;
		bottom: 0;
		top: auto;
	}
	.news__list .news-date {
		display: block;
		font-size: 12px;
		width: auto;
		margin-bottom: 5px;
	}
	.news__list .news-category {
		font-size: 13px;
		width: 70px;
		padding: 5px 0;
		margin-right: 10px;
		vertical-align: middle;
	}
	.news__list .news-title {
		width: calc(100% - 100px);
		font-size: 12px;
		vertical-align: middle;
	}

	.sp-totop a {
		color: #fff;
		font-size: 15px;
		font-family: var(--font-en2);
		display: block;
		text-align: center;
		background: var(--main-color);
		padding: 15px 15px 12px;
	}
	.sp-totop a:before {
		content: '';
		display: block;
		width: 6px;
		height: 6px;
		margin: auto;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		transform: rotate(-45deg);
	}

	#gb-footer .sp-logo {
		margin-bottom: 50px;
        text-align: center;
	}
	#gb-footer .sp-logo img {
		width: 300px;
	}
	#gb-footer .sp-sns__list.footer-sp,
	#gb-footer .ft-to-contact.footer-pc{
		display:none;
	}
	#gb-footer .ft-to-contact.footer-sp {
		display: block;
		text-align: center;
		margin-bottom: 50px;
	}
	#gb-footer .sp-sns__list.footer-pc {
		display: flex;
	}
	.sp-sub {
		padding: 20px 0;
	}
	.sp-sub .inner {
        display: block;
        padding: 0;
    }

	.copyright {
		font-size: 10px;
		text-align: center;
	}

	#backtotop.show {
		bottom: 100px;
	}

}

