@charset "utf-8";
/* CSS Document */

/*
* BASE
******************************************************/
* {
	word-wrap:break-word;
	background-repeat:no-repeat;
	overflow-wrap:break-word
}
html {
	scroll-behavior:smooth;
	font-family: YakuHanJP, "Noto Sans JP" , Hiragino Sans, sans-serif;
	font-weight: var(--font-normal);
	font-optical-sizing: auto;
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	line-height: 1.75;
    letter-spacing: 0.025em;
	overflow-wrap: break-word;
	word-break: normal;
	-webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
@media screen and (max-width:880px) {
    body {
        font-size: 1.4rem;
    }
}

/* LINK */
body, body a {
	color: var(--color-primary);
}
body a,
body a:hover,
body a:visited {
	text-decoration:none;
}
a {
	transition:.2s ease-in-out;
}
/* IE */
main {
	display:block;
}
/* fixed pc header */
html {
    scroll-padding-top: 180px;
}

/* IMG */
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}

/*
* FOOTER FIX
******************************************************/
.footer-fix {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 400px);
}

/*
* WEB FONT SERIF
******************************************************/
.font-serif {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: var(--font-bold);
    font-style: normal;
}

/*
* LOAD EFFECT
******************************************************/
body {
    -webkit-animation: fade 1.5s ease-in 0s forwards;
    animation: fade 1.5s ease-in 0s forwards;
}
@keyframes fade {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

/*
* GLOBAL NAV( OTHER SITE )
******************************************************/
.global-nav {
    background: var(--color-gnav);
}
.global-nav-list {
    max-width: var(--header-size);
    margin: auto;
}
.global-nav-list ul {
    display: flex;
    justify-content: center;
    border-bottom: 7px solid var(--color-gnav);
}
@media screen and (max-width:1000px) {
    .global-nav {
        display: none;
    }
}

/*
* GLOBAL PC HEADER / PC FIXED HEADER
******************************************************/
.global-header,
.fixed-header {
    width: 100%;
    height: 155px;
    display:block;
}
.fixed-header {
    position: fixed;
    top:-180px;
    transition: top .5s;
    width: 100%;
    z-index:6;
}
.global-header-content,
.fixed-header-content {
    max-width: var(--header-size);
    margin: auto;
    position: relative;
    z-index: 4;
}
#js-header.is-show {
    top: 0;
}
.global-header-inner,
.fixed-header-inner {
    display:flex;
    justify-content: flex-end;
}
.global-header-logo,
.fixed-header-logo {
    position: absolute;
    top: 0;
    left: -20px;
}
.global-header-nav {
    padding: 50px 0 30px;
}
.fixed-header-nav {
    background: var(--color-default);
    border-radius: 30px;
    padding: 22px 18px;
    margin: 22px 0;
    box-shadow: var(--box-shadow);
}
.global-header-nav ul,
.fixed-header-nav ul {
    display:flex;
}
.global-header-nav li,
.fixed-header-nav li {
    line-height: 1;
    padding: 0 1.25em;
    font-size: 1.4rem;
}
.global-header-nav li:not(:last-child),
.fixed-header-nav li:not(:last-child) {
    border-right: 2px solid #cacaca;
}
.global-header-nav li a,
.fixed-header-nav li a {
    position: relative;
}
.global-header-nav li a::after,
.fixed-header-nav li a::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background:var(--color-menu-hover);
    transition:var(--transition-base);
    transform: scale(0, 1);
    transform-origin: center top;
}
.global-header-nav li a::after {
    bottom: -10px;
}
.fixed-header-nav li a::after {
    bottom: -19px;
}
.global-header-nav li.menu-selected a::after,
.global-header-nav li a:hover::after,
.fixed-header-nav li.menu-selected a::after,
.fixed-header-nav li a:hover::after {
    transform: scale(1, 1);
}
.global-header-button,
.fixed-header-button {
    display: flex;
    justify-content: flex-end;
    z-index: 4;
    position: relative;
}
.global-header-button a,
.fixed-header-button a {
    width: 200px;
    height: 65px;
    line-height: 65px;
    border-radius: 55px;
    position: relative;
    padding: 0 0 0 25px;
}
.global-header-button a::before,
.fixed-header-button a::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 14px;
    left: 34px;
    top: 26px;
    background: url(../img/common/icon-mail.svg) no-repeat center center;
    background-size: 20px 14px;
    z-index: 1;
}
.fixed-header-button a {
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width:1000px) {
    .global-header,
    .fixed-header {
        display: none;
    }
}

/*
* SP HEADER
******************************************************/
.sp-header {
    display: none;
}
@media screen and (max-width:1000px) {
    .sp-header {
        display:block;
        width:100%;
        height:153px;
        background:transparent;
    }
    .sp-header-logo {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }
    .sp-header-button {
        position: fixed;
        top: 10px;
        right: 20px;
        color: var(--color-default);
        background: var(--color-theme-primary);
        border: 2px solid var(--color-default);
        border-radius: 50%;
        width: 60px;
        height: 60px;
        z-index:10
    }
    .menu-trigger,
    .menu-trigger span {
        display:inline-block;
        transition:all .4s;
        box-sizing:border-box;
        cursor:pointer
    }
    .menu-trigger {
        position:relative;
        width:60px;
        height:50px;
        color:var(--color-default);
        border-radius:4px;
        z-index:11
    }
    .menu-trigger span {
        position:absolute;
        background:var(--color-default);
        width:30px;
        height:2px;
        left:0;
        right:0;
        margin:auto
    }
    .menu-trigger span:nth-of-type(1) {
        top:19px
    }
    .menu-trigger span:nth-of-type(2) {
        top:9px;
        bottom:0
    }
    .menu-trigger span:nth-of-type(3) {
        bottom:10px
    }
    .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform:translateY(9px) rotate(-45deg);
        transform:translateY(9px) rotate(-45deg)
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity:0
    }
    .menu-trigger.active span:nth-of-type(3) {
        -webkit-transform:translateY(-9px) rotate(45deg);
        transform:translateY(-9px) rotate(45deg)
    }
    .sp-header-nav {
        display:none;
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        z-index:8;
        background-color:var(--color-theme-primary);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        overflow:auto;
        -webkit-overflow-scrolling:touch
    }
    .sp-header-nav ul {
        max-width: 320px;
        margin: auto;
        text-align: center;
        padding: 120px 0;
    }
    .sp-header-nav li {
        margin: 0 0 1.55em 0;
        overflow: hidden;
    }
    .sp-header-nav li a {
        color:var(--color-default);
        font-size: 1.8rem;
		position: relative;
        animation: popupText 1s ease-out;
    }
	@keyframes popupText {
        0% {
            bottom: -40px;
			opacity:0;
        }
		50% {
			opacity:.3;
        }
        100% {
            bottom: 0px;
			opacity:1;
        }
    }
}

/*
* COMMON CONTENT
******************************************************/
.global-main-content {
    margin-top: -155px;
}
.ge-content {
    max-width: var(--content-size);
    margin: auto;
}
.ge-page-content {
    max-width: var(--content-size-page);
    margin: auto;
}
.ge-page {
    background: var(--color-theme-secondary);
    padding: 103px 0 0 0;
}
.ge-page-content-inner {
    padding: 60px 0 0 0;
}
@media screen and (min-width:880px) and (max-width:1000px) {
    .ge-content {
        max-width: inherit;
        padding: 0 40px;
    }
    .ge-page-content {
        max-width: inherit;
        padding: 0 40px;
    }
}
@media screen and (max-width:880px) {
    .ge-content {
        max-width: inherit;
        padding: 0 20px;
    }
    .ge-page-content {
        max-width: inherit;
        padding: 0 20px;
    }
}
/* PAGE DESCRIPTION */
.ge-desc {
    width: 520px;
    margin: auto;
    padding: 50px 0 30px 0;
}
.ge-desc > * {
    font-size: 1.3rem;
    line-height: 2.5;
}
@media screen and (max-width:880px) {
    .ge-desc {
        width: auto;
    }
    .ge-desc > * {
        line-height: 2;
    }
}

/* COMMON BG */
.bg-logo {
    background: url(../img/common/bg-logo.webp) no-repeat center center / contain, var(--color-mintgreen);
    background-size: 100%;
    padding: 0;
}

/*
* COMMON HEADING
******************************************************/
.ge-heading {
    font-size: 3rem;
    line-height: 1.6;
    position: relative;
}
.ge-heading-c {
    text-align: center;
}
.ge-heading-l {
    text-align: left;
}
.ge-heading-c::after,
.ge-heading-l::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 2px;
    background:var(--color-menu-hover);
    z-index:1;
}
.ge-heading-c::after {
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.ge-heading-l::after {
    bottom: -26px;
    left: 0;
}
@media screen and (max-width:880px) {
    .ge-heading {
        font-size: 1.8rem;
    }
    .ge-heading-c {
        text-align: left;
    }
    .ge-heading-c::after {
        left: 0;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
    }
    .ge-heading-c::after,
    .ge-heading-l::after {
        width: 90px;
        bottom: -20px;
    }
}
/* PAGE HEADER */
.ge-page-heading {
    background: var(--color-bluegreen);
    padding: 50px 30px 70px;
    border-radius: 16px;
    color: var(--color-default);
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.6;
    position: relative;
}
.ge-page-heading::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 2px;
    background:var(--color-default);
    z-index:1;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
@media screen and (max-width:880px) {
    .ge-page-heading {
        padding: 30px 10px 40px;
        font-size: 2rem;
    }
    .ge-page-heading::after {
        width: 90px;
        bottom: 30px;
    }
}
/* BG HEADER */
.ge-heading-bg {
    position: relative;
    height: min(218px);
}
.ge-heading-bg-layer {
    position: absolute;
    width: 650px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}
.ge-heading-bg-text {
    color: var(--color-default);
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.6;
    position: absolute;
    top: 36%;
    left: 48%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 2;
}
@media screen and (max-width:650px) {
    .ge-heading-bg {
        position: relative;
        height: min(160px);
    }
    .ge-heading-bg-layer {
        width: min(540px, 100%);
        top: 26%;
    }
    .ge-heading-bg-text {
        font-size: 2rem;
        top: 16%;
    }
}

/* product-parts COMPONENT HEADER */
.product-parts-heading {
    color: var(--color-theme-primary);
    font-size: 2.8rem;
}
@media screen and (max-width:880px) {
    .product-parts-heading {
        font-size: 1.8rem;
    }
}

/*
* CONPONENTS ( BUTTON )
******************************************************/
/* BUTTON BASE */
.ge-content-button {
    margin: auto;
    width: 440px;
    z-index: 1;
    position: relative;
}
@media screen and (max-width:640px) {
    .ge-content-button {
        width: 240px;
    }
}
.ge-button a {
    display: block;
    background: var(--color-theme-primary);
    color: var(--color-default);
    transition: var(--transition-base);
    font-size: 1.4rem;
    text-align: center;
}
.ge-button-large a {
    width: 440px;
    height: 56px;
    line-height: 56px;
    border-radius: 55px;
}
@media screen and (max-width:1000px) {
    .ge-button-large a {
        width: 240px;
    }
}
/* BUTTON ARROW */
.button-arrow a,
.combination-button-link {
    position: relative;
}
.button-arrow a::after,
.combination-button-link::after,
.product-parts-list-link a::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 13px;
    padding: 0 0 0 1.55em;
    background: url(../img/common/arrow-button.svg) no-repeat center center;
    background-size: 7px 13px;
    z-index: 1;
}
.button-arrow a::after {
    top: 23px;
}
.combination-button-link::after {
    top:34px;
}
.product-parts-list-link a::after {
    top: 8px;
}
@media screen and (max-width:714px) {
    .product-parts-list-link a::after {
        top: 5px;
    }
    .combination-button-link::after {
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }
}
/* PAGE CONTENT BUTTON FIX */
.ge-page-button {
    padding: 60px 0;
}
/* COMBINATION BUTTON ( LISENCE / CONTACT LINK ) */
.combination-button {
    width: 655px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.combination-button a {
    position: relative;
}
.combination-button-desc {
    background: var(--color-default);
    line-height: 1.5;
    height: calc(80px - 16px);
    border-radius: 40px;
    padding: 16px 0 0 40px;
    width: 615px;
}
.combination-button-desc span {
    display: block;
}
.combination-button-link {
    background: var(--color-theme-primary);
    color:  var(--color-default);
    width:240px;
    height: 80px;
    line-height: 80px;
    border-radius: 40px 40px 40px 0;
    position: absolute;
    top:0;
    right:0;
    z-index:2;
    text-align: center;
}
.combination-button-border {
    border: 1px solid var(--color-theme-primary);
}
@media screen and (max-width:660px) {
    .combination-button {
        width: auto;
    }
    .combination-button-desc {
        border-radius: 80px;
        padding: 16px 175px 4px 20px;
        height: 60px;
        font-size: 1rem;
        width: auto;
    }
    .combination-button-desc span {
        display:inline;
    }
    .combination-button-link {
        width: 170px;
        height: 80px;
        line-height: 80px;
        border-radius: 80px 80px 80px 0;
        font-size: 1.3rem;
    }
}

/*
* CONPONENTS ( LIST LAYOUT )
******************************************************/
.ge-list,
.ge-post-content ul {
    border-top: var(--list-border);
}
.ge-list li,
.ge-post-content ul li {
    border-bottom: var(--list-border);
    display: grid;
    grid-template-columns: 120px 1fr;
}
.ge-list-heading {
    background: var(--color-list-heading);
}
.ge-list-heading >*,
.ge-list-desc >* {
    font-size: 1.3rem;
    font-weight: var(--font-normal);
    text-align: left;
    padding: 24px 20px;
}

/*
* CONPONENTS ( OREDERD LIST LAYOUT )
******************************************************/
.ge-orderd-list {
    border-top: var(--list-border);
    border-bottom: var(--list-border);
}
.ge-orderd-list {
    counter-reset: listnum;
	list-style: none;
}
.ge-orderd-list li {
    margin:24px 0 0 0;
}
.ge-orderd-list li:last-child {
    margin:24px 0;
}
.ge-orderd-list h2 {
    font-size: 1.7rem;
    font-weight: var(--font-normal);
    text-align: left;
}
.ge-orderd-list h2::before{
	counter-increment: listnum;
	content: counter(listnum) ".";
	padding-right: 5px;
}
.ge-orderd-list-heading {
    color:var(--color-bluegreen);
}
.ge-orderd-list-desc >* {
    font-size: 1.4rem;
    font-weight: var(--font-normal);
    text-align: left;
}

/*
* CONPONENTS ( TABLE LAYOUT )
******************************************************/
.ge-post-content>table {
    width:100%;
    border-collapse:collapse;
    border-spacing:0;
    text-align:left;
    font-size:1.4rem;
    border-top:var(--form-border);
}
.ge-post-content tr th {
    border-bottom:var(--form-border);
    font-weight:400;
    width:40%;
    padding:15px 25px
}
.ge-post-content tr td {
    border-bottom:var(--form-border);
    width:60%;
    padding:15px 15px;
    font-size:1.4rem
}
.ge-post-content table.as_3col tr th {
    width:33%
}
.ge-post-content table.as_3col tr td {
    width:33%
}
.ge-post-content>table.type-list {
    border-top:var(--form-border);
}
.ge-post-content table.type-list tr th {
    background: var(--color-list-heading);
    border-bottom:var(--form-border);
    border-left:var(--form-border);
}
.ge-post-content table.type-list tr td {
    border-bottom:var(--form-border);
    border-left:var(--form-border);
    border-right:var(--form-border);
}
@media screen and (max-width:880px) {
    .ge-post-content tr th,
    .ge-post-content tr td {
      padding:10px 5px
    }
}

/*
* PRODUCT PARTS LAYOUT
******************************************************/
.footer-product-content {
    background: var(--color-mintgreen);
    padding: 0 0 200px;
}
.product-parts {
    padding: 100px 0;
}
.product-parts-content {
    display: grid;
    grid-template-columns: 180px 3fr;
    grid-gap: 40px;
    margin: 60px 0;
}
.product-parts-content-desc {
    line-height: 2.5;
    text-align: justify;
}
.product-parts-content-list ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.product-parts-content-list li:not(:last-child) {
    margin: 0 20px 0 0;
}
.product-parts-list {
    box-shadow: var(--box-shadow);
    border-radius: 24px;
    width: max(210px);
}
.product-parts-list-thumb img {
    width: 100%;
}
.product-parts-list-desc {
    background: var(--color-default);
    padding: 16px 30px 30px;
}
.product-parts-list-desc h3 {
    font-size:2.3rem;
    font-weight: var(--font-normal);
    text-align: center;
    margin: 0 0 .1em 0
}
.product-parts-list-desc p {
    font-size:1.4rem;
    line-height:2;
}
.product-parts-list-link {
    background: var(--color-theme-primary);
    border-radius: 0 0 24px 24px;
    text-align:center;
    padding: 0 12px 12px;
}
.product-parts-list-link a {
    color: var(--color-default);
    position: relative;
    margin: 0 0 0 -1em;
}
.button-cap::before {
    content: "";
    height: 17px;
    width: 206px;
    position: absolute;
    left: -53px;
    top: -17px;
    background: url(../img/common/button-cap.svg) no-repeat;
}
@media screen and (min-width:714px) and (max-width:1000px) {
    .product-parts-content {
        display: block;
        margin: 60px 0;
    }
    .product-parts-content-desc {
        margin: 0 0 40px 0;
    }
    .product-parts-content-list ul {
        justify-content: center;
    }
}
@media screen and (max-width:714px) {
    .product-parts {
        padding: 40px 0;
    }
    .product-parts-content {
        display: block;
        margin: 40px 0;
    }
    .product-parts-content-desc {
        margin: 0 0 40px 0;
        line-height: 2;
    }
    .product-parts-list {
        width: max(320px);
        border-radius: 36px
    }
    .product-parts-content-list ul {
        display: block;
    }
    .product-parts-content-list li {
       width: 320px;
       margin: auto;
    }
    .product-parts-content-list li:not(:last-child) {
        padding: 0 0 40px 0;
        margin: auto;
    }
    .product-parts-list-desc {
        padding: 16px 30px 50px;
    }
    .product-parts-list-desc h3 {
        font-size: 2rem;
    }
    .product-parts-list-desc p {
        font-size: inherit;
    }
    .product-parts-list-link {
        padding: 0 12px 24px;
    }
    .button-cap::before {
        height: 100px;
        width: 320px;
        left: -118px;
        top: -25px;
        background-size: 320px;
    }
}

/*
* NEWS
******************************************************/
.index-news {
    background: var(--color-theme-secondary);
    padding: 100px 0 0 0; 
}
.news {
    background: var(--color-theme-secondary);
    padding: 100px 0;
}
.news-content {
    max-width: var(--content-size-page);
    margin: 0 auto 45px auto;
}
.news-list {
    margin: 60px 0;
}
.news-list li {
    border-bottom: var(--list-border);
    display: grid;
    grid-template-columns: 120px 1fr;
    padding: 24px 0
}
.news-list-heading,
.news-list-date {
    font-size: 1.3rem;
    font-weight: var(--font-normal);
}
.news-list-heading a {
    color:var(--color-theme-primary);
    transform: var(--transition-base);
}
.news-list-heading a:hover {
    color:var(--color-menu-hover);
}
@media screen and (max-width:880px) {
    .news {
        padding: 40px 0;
    }
    .news-content {
        max-width: auto;
        padding: 0 20px;
    }
    .news-list {
        margin: 40px 0;
    }
}

/*
* CONTACT LAYOUT
******************************************************/
.contact-module {
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    margin: 0 0 30px 0;
}
.contact-heading,
.contact-field {
    font-size: 1.3rem;
}
.contact-heading {
    font-weight: var(--font-bold);
    display: flex;
    justify-content: space-between;
}
.contact-heading-text {
    width: max(160px);
}
.as-required {
    color: var(--color-default);
    background: var(--color-caution);
    font-size: 1.1rem;
    padding: 1px 3px;
    border-radius: 3px;
    margin: 0 16px 0 0;
}
@media screen and (max-width:640px) {
    .contact-module {
        display: block;
        margin: 0 0 30px 0;
    }
    .contact-heading {
        justify-content: flex-start;
        margin: 0 0 12px 0;
    }
    .contact-heading-text {
        width: auto;
    }
    .as-required {
        margin: 0 0 0 16px;
    }
}
/* SEND BUTTON */
.submit-button,
.back-button {
    width: 140px;
    margin: auto;
}
.submit-button button,
.back-button a {
    width: 140px;
    height: 40px;
    margin: 0 auto;
    text-align: center;
    border-radius: 10px;
    font-size: 1.4rem;
}
.submit-button button {
    background: var(--color-theme-primary);
    color: var(--color-default);
}
.back-button a {
	display:block;
    line-height: 40px;
    background: var(--color-menu-hover);
    color: var(--color-default);
    margin: 0 0 10px 0;;
}

/*
* FOOTER
******************************************************/
.footer-bg {
    background: url(../img/common/bg-footer.svg)no-repeat center top / cover;
    position: relative;
    z-index: 1;
    margin-top: -200px;
}
.global-footer {
    max-width: var(--content-size);
    margin:auto;
    padding: 180px 0 30px 0;
}
.global-footer-content {
    display:grid;
    grid-template-columns: 320px 1fr;
}
.global-footer-author {
    margin: 20px 0 0 0;
}
.global-footer-author,
.global-footer-copy {
    color: var(--color-default);
}
.global-footer-company {
    font-size: 2rem;
    font-weight: var(--font-bold);
}
.global-footer-address,
.global-footer-phone {
    font-size: 1.5rem;
}
.global-footer-phone {
    display: flex;
}
.global-footer-phone span {
    align-items: flex-start;
    pointer-events: none;
}
.global-footer-address span:last-child {
    margin: 0 0 0 1em;
}
.global-footer-phone span:last-child {
    margin: 0 0 0 1.5em;
}
/* SP CLICK FIX */
.global-footer-phone span a {
    pointer-events: none;
    color: var(--color-default);
}
.global-footer-list {
    display:flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.global-footer-list ul:first-child {
    margin: 0 40px 0 0;
}
.global-footer-list li {
    color:var(--color-primary);
    font-size: 1.4rem;;
}
.global-footer-list li:before {
    content:"●";
    width: 17px;
    height: 17px;
    margin: 0 1em 0 0;
}
.global-footer-copy {
    margin: 40px 0 0 0;
    font-size: 1rem;
}
.footer-scroll-top {
    position: fixed;
    bottom: 20px;
    right: 60px;
}
.scroll-path {
    fill:var(--color-theme-primary);
}
@media screen and (max-width:740px) {
    .footer-bg {
        background: url(../img/common/bg-footer-sp.svg)no-repeat center top / cover;
        margin-top: -200px;
    }
    .global-footer {
        padding: 100px 0 30px 0;
    }
    .global-footer-content {
        display: flex;
        flex-direction: column-reverse;
    }
    .global-footer-list {
        justify-content: center;
        margin: 0 0 40px 0;
    }
    .global-footer-list li {
        font-size: 1.3rem;;
    }
    .global-footer-logo {
        margin: 20px 40px 0 20px;
    }
    .global-footer-author {
        margin: 20px;
    }
    .global-footer-copy {
        margin: 40px 20px 0 20px;
    }
    .footer-scroll-top {
        position:static;
        width: 50px;
        margin: auto;
        padding: 20px 0 0 0
    }
    .scroll-path {
        fill:var(--color-default);
    }
}