/*
Theme Name: GTL
*/
@charset "utf-8";

:root {
    --main-theme-color: #F6921E;
    --sub-theme-color: #303044;
}
* {
    box-sizing: border-box;
    color: var(--sub-theme-color);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    list-style: none;
    margin: 0;
    padding: 0;
}
html {
    font-size: 10px;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
a:hover,
a:hover img {
    opacity: .8;
    transition-duration: .2s;
}
select,
input,
button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: none;
    outline: none;
}
input[type="file"] {
    border: 0;
    border-radius: 0;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}
select,
button {
    cursor: pointer;
}
textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
body {
    background: #F1F1F1;
    overflow-x: hidden;
}
.visualy-hidden {
    position: absolute;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}
/* 左右のアニメーション */
.leftAnime {
    opacity: 0;
}
.slideAnimeLeftRight {
    animation-name: slide;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes slide {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* フェードインアニメーション */
.fadeAnime {
    opacity: 0;
}
.fadeAnimeStart {
    animation-name: fade;
    animation-delay: 0.6s;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* 上から下アニメーション */
.upAnime {
    opacity: 0;
}
.slideAnimeUpDown {
    animation-name: updown;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes updown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 下から上アニメーション */
.downAnime {
    opacity: 0;
}
.slideAnimeDownUp {
    animation-name:slideTextY100;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    animation-timing-function:ease-in-out;
    opacity: 0;
}
@keyframes slideTextY100 {
    from {
        transform: translateY(20%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.gr_orange {
    background: rgb(246,146,30);
    background: linear-gradient(90deg, rgba(246,146,30,1) 0%, rgba(240,90,36,1) 100%);
}
@media screen and (min-width: 977px) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
}
@media screen and (max-width: 976px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
.container {
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    max-width: 1920px;
}
/* header */
.header {
    position: absolute;
    width: 100%;
    max-width: 1920px;
    z-index: 5;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px 0 0;
    width: 95%;
}
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
}
.header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0 15px 0 0;
    width: 100%;
}
.header-nav__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.header-nav__list li {
    margin: 0 35px 0 0;
    padding: 5px 0;
    position: relative;
}
.header-nav__list li a {
    color: var(--sub-theme-color);
    font-size: 17px;
    font-weight: 500;
}
.header-nav__dropdown-list {
    background: rgb(255 255 255 / 47%);
    border-radius: 10px;
    display: none;
    padding: 10px;
    position: absolute;
    top: 35px;
    left: -15px;
    width: 300px;
    max-width: max-content;
    z-index: 10;
}
.header-nav__dropdown-list li a {
    white-space: nowrap;
}
.header-contact__btn {
    border-radius: 50px;
    color: #fff;
    display: block;
    font-size: 17px;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    max-width: 200px;
}
.hamburger-panel {
    background: #fff;
    height: 100vh;
    padding: 50px 25px;
    position: fixed;
    top: 0;
    right: -100%;
    transition-delay: .2s;
    transition-duration: .5s;
    width: 80%;
    z-index: 10;
}
@media screen and (min-width: 1280px) {
    .header-logo span {
        font-size: 18px;
    }
    .header-nav__list li a {
        font-size: 18px;
    }
}
@media screen and (max-width: 976px) {
    .header-nav {
        display: none;
    }
    .hamburger-panel {
        padding: 50px 25px;
        width: 80%;
    }
    /* hamberger */
    .hamburger-menu {
        display: inline-block;
        text-align: center;
        position: relative;
        width: 55px;
        z-index: 13;
    }
    .hamburger-menu span {
        display: block;
    }
    .hamburger-menu__btn {
        position: relative;
        width: 30px;
        height: 25px;
        cursor: pointer;
        z-index: 3;
    }
    .hamburger-menu__btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--main-theme-color);
        border-radius: 4px;
    }
    .hamburger-menu__btn, .hamburger-menu__btn span {
        display: inline-block;
        transition: all .5s;
        box-sizing: border-box;
    }
    .hamburger-menu__btn span:nth-of-type(1) {
        top: -1px;
    }
    .hamburger-menu__btn span:nth-of-type(2) {
        top: 11px;
    }
    .hamburger-menu__btn span:nth-of-type(3) {
        bottom: 0;
    }
    .hamburger-menu__btn.active span:nth-of-type(1) {
        top: -7px;
    }
    .hamburger-menu__btn.active span:nth-of-type(3) {
        bottom: -10px;
    }
    .hamburger-menu__btn span:nth-of-type(1) {
        -webkit-animation: header-menu__bar01 .75s forwards;
        animation: header-menu__bar01 .75s forwards;
    }
    @-webkit-keyframes header-menu__bar01 {
        0% {
            -webkit-transform: translateY(20px) rotate(45deg);
        }
        50% {
            -webkit-transform: translateY(20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes header-menu__bar01 {
        0% {
            transform: translateY(20px) rotate(45deg);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .hamburger-menu__btn span:nth-of-type(2) {
        transition: all .25s .25s;
        opacity: 1;
    }
    .hamburger-menu__btn span:nth-of-type(3) {
        -webkit-animation: header-menu__bar03 .75s forwards;
        animation: header-menu__bar03 .75s forwards;
    }
    @-webkit-keyframes header-menu__bar03 {
        0% {
            -webkit-transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            -webkit-transform: translateY(-20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes header-menu__bar03 {
        0% {
            transform: translateY(-20px) rotate(-45deg);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    .hamburger-menu__btn.active span:nth-of-type(1) {
        -webkit-animation: active-header-menu__bar01 .75s forwards;
        animation: active-header-menu__bar01 .75s forwards;
    }
    @-webkit-keyframes active-header-menu__bar01 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(20px) rotate(45deg);
        }
    }
    @keyframes active-header-menu__bar01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(20px) rotate(0);
        }
        100% {
            transform: translateY(20px) rotate(45deg);
        }
    }
    .hamburger-menu__btn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .hamburger-menu__btn.active span:nth-of-type(3) {
        -webkit-animation: active-header-menu__bar03 .75s forwards;
        animation: active-header-menu__bar03 .75s forwards;
    }
    @-webkit-keyframes active-header-menu__bar03 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(-20px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(-20px) rotate(-45deg);
        }
    }
    @keyframes active-header-menu__bar03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-20px) rotate(0);
        }
        100% {
            transform: translateY(-20px) rotate(-45deg);
        }
    }
    .hamburger-panel.active {
        right: 0;
    }
    .hamburger-panel__inner {
        position: relative;
    }
    .hamburger-panel__inner .hamburger-menu {
        position: fixed;
        right: -100%;
        top: 7.5%;
    }
    .hamburger-panel__inner .hamburger-menu.active {
        right: 2%;
    }
    .hamburger__bg {
        background: rgba(0, 0, 0, 0.6);
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        transition-duration: .5s;
        width: 100%;
        z-index: 9;
    }
    .hamburger__bg.active {
        right: 0;
    }
    .humburger-panel__list {
        padding: 20% 0 5%;
    }
    .humburger-panel__list > li {
        margin: 0 0 15px;
    }
    .humburger-panel__list li a {
        border-bottom: 1px solid #ccc;
        display: block;
        font-size: 16px;
        margin: 5px 0;
        padding: 5px 0 10px;
    }
    .humburger-panel__list-sub {
        padding: 0 0 0 15px;
    }
    .humburger-panel__list li a i {
        margin: 0 8px 0 0;
    }
    .humburger-panel__contact-btn {
        border-radius: 50px;
        color: #fff;
        display: block;
        font-size: 16px;
        padding: 10px 0;
        text-align: center;
        width: 100%;
    }
}

/* hero */
.hero-contents {
    background: url(assets/images/hero_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 49vw;
    position: relative;
    width: 100%;
    z-index: 2;
}
.hero-contents__inner {}
.hero-contents__text  {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 39px;
    margin: auto;
    position: absolute;
    top: -10%;
    left: 10%;
    bottom: 0;
}
.hero-contents__text h1 {
    color: #fff;
    font-size: 39px;
    line-height: 1.6em;
}
.hero-contents__text span {
    color: #fff;
    padding: 0 0 0 10px;
}
@media screen and (max-width: 976px) {
    /* hero */
    .hero-contents {
        height: 100vw;
    }
    .hero-contents__text  {
        left: 5%;
    }
    .hero-contents__text h1 {
        font-size: 5vw;
    }
}
/* newarrival */
.newarrival-contents {
    background: var(--sub-theme-color);
    margin: -50px auto 0;
    padding: 20px 40px;
    position: relative;
    width: 80%;
    z-index: 2;
}
.newarrival-contents__inner {}
.newarrival-contents__header {
    padding: 0 0 20px;
}
.newarrival-contents__header h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}
.newarrival-contents__body {
    background: #fff;
    padding: 2% 5%;
}
.newarrival-contents__list {}
.newarrival-contents__list li {
    border-bottom: 1px solid var(--sub-theme-color);
    margin: 0 0 5px;
    padding: 10px 0;
}
.newarrival-contents__list li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.newarrival-contents__date {
    font-size: 20px;
    margin: 0 10% 0 0;
}
.newarrival-contents__text {
    font-size: 20px;
}
.newarrival-contents__more a {
    background: rgb(246,146,30);
    background: linear-gradient(90deg, rgba(246,146,30,1) 0%, rgba(240,90,36,1) 100%);
    border-radius: 10px;
    color: #fff;
    display: block;
    font-size: 16px;
    margin: 25px auto 5px;
    padding: 10px 0;
    text-align: center;
    width: 95%;
    max-width: 300px;
}
@media screen and (max-width: 976px) {
    /* newarrival */
    .newarrival-contents {
        padding: 20px 15px;
        width: 90%;
    }
    .newarrival-contents__body {
        padding: 2%;
    }
    .newarrival-contents__list li a {
        display: block;
    }
    .newarrival-contents__date {
        font-size: 14px;
        margin: 0;
    }
    .newarrival-contents__text {
        font-size: 14px;
    }
}
/* about */
.about-contents {
    background: url(assets/images/about_bg1.png) no-repeat, url(assets/images/about_bg2.png) no-repeat;
    background-position: 0 49px, right 0 top 50px;
    position: relative;
}
.about-contents__header {
    padding: 100px 0 50px;
    text-align: center;
}
.about-contents__header h2 {
    padding: 0 0 35px;
}
.about-contents__description {
    color: var(--sub-theme-color);
    font-size: 39px;
}
.about-contents__description span {
    color: #F6921E;
    display: block;
    font-size: 24px;
    padding: 20px 0;
}
.about-contents__sub-description {
    font-size: 23px;
    font-weight: 500;
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
}
.about-contents__body {
    text-align: center;
}
.about-contents__body img {
    width: 100%;
    max-width: none;
}
@media screen and (max-width: 976px) {
    /* about */
    .about-contents {
        background: url(assets/images/about_bg1.png) no-repeat;
        background-position: 0 49px;
    }
    .about-contents__header {
        padding: 100px 0 50px;
    }
    .about-contents__header h2 {
        padding: 0 0 35px;
    }
    .about-contents__description {
        font-size: 5vw;
    }
    .about-contents__description span {
        font-size: 4vw;
    }
    .about-contents__sub-description {
        font-size: 3.5vw;
    }
}
/* No GTL */
.nogtl-contents {
    background: var(--sub-theme-color);
    padding: 70px 0 45px;
}
.nogtl-contents__header {
    padding: 0 0 25px;
    text-align: center;
}
.nogtl-contents__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 95%;
    max-width: 1000px;
}
.nogtl-contents__list li {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nogtl-contents__list li:nth-child(-n+2) {
    margin: 0 0 25px;
}
@media screen and (max-width: 976px) {
    .nogtl-contents__list li:nth-child(-n+2) {
        padding: 10% 0;
    }
    .nogtl-contents__list li {
        background: #fff;
        margin: 0 0 25px;
        text-align: center;
        width: 100%;
    }
}
/* business */
.business-contents {
    background: url(assets/images/business_bg.jpg) no-repeat;
    background-color: var(--main-theme-color);
    background-position: center top 0;
    background-size: contain;
    padding: 20vw 0 0;
}
.business-contents__inner {
    background: #fff;
    box-shadow: 0 2px 5px rgb(0 0 0 / 50%);
    margin: 0 auto;
    padding: 70px 50px;
    position: relative;
    width: 95%;
    max-width: 1000px;
}
.business-contents__header {
    padding: 0 0 50px;
    text-align: center;
}
.business-contents__header h2 span {
    color: var(--sub-theme-color);
    font-size: 39px;
    font-weight: 500;
    display: block;
    padding: 30px 0 0;
}
.business-contents__list li:not(:last-child) {
    margin: 0 0 50px;
}
.business-contents__list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.business-contents__list li:nth-child(even) a {
    flex-direction: row-reverse;
}
.business-list__image {
    width: calc(48% - 30px);
}
.business-contents__list li:nth-child(even) .business-list__image {
    text-align: right;
}
.business-list__textarea {
    width: 52%;
}
.business-list__title {
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 10px;
}
.business-list__catchcopy {
    color: var(--main-theme-color);
    font-size: 19px;
    margin: 0 0 15px;
}
.business-list__text {
    font-size: 18px;
    margin: 0 0 15px;
}
.business-list__btn {
    background: var(--sub-theme-color);
    border-radius: 50px;
    display: block;
    color: #fff;
    font-size: 12px;
    margin: 0 0 0 auto;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    max-width: 150px;
}
@media screen and (max-width: 976px) {
    .business-contents__inner {
        padding: 12% 5%;
    }
    .business-contents__header h2 span {
        font-size: 5vw;
    }
    .business-contents__list li a {
        display: block;
    }
    .business-contents__list li:nth-child(even) .business-list__image {
        text-align: left;
    }
    .business-list__image {
        width: 100%;
    }
    .business-list__textarea {
        width: 100%;
    }
    .business-list__title {
        font-size: 5vw;
    }
    .business-list__catchcopy {
        font-size: 3.5vw;
    }
    .business-list__text {
        font-size: 3.4vw;
    }
    .business-list__btn {
        padding: 8px 0;
    }
}
/* support */
.support-contents {
    background: url(assets/images/support_bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin: -80px 0 0;
    padding: 150px 0 80px;
}
.support-contents__header {
    padding: 0 0 45px;
    text-align: center;
}
.support-contents__header h2 {
    color: var(--sub-theme-color);
    font-size: 39px;
    font-weight: 500;
}
.support-contents__body {
    background: var(--sub-theme-color);
    border-radius: 20px;
    margin: 0 auto;
    padding: 35px;
    width: 95%;
    max-width: 900px;
}
.support-contents__text {
    text-align: center;
}
.support-contents__text p {
    color: #fff;
    font-size: 28px;
}
.support-contents__text span {
    color: var(--main-theme-color);
    font-size: 28px;
}
@media screen and (max-width: 976px) {
    .support-contents__header h2 {
        font-size: 5vw;
        margin: 0 auto;
        width: 80%;
    }
    .support-contents__text p,
    .support-contents__text span {
        font-size: 4vw;
    }
    .support-contents__text p br {
        display: none;
    }
}
/* footer */
.footer-label{
	color:#fff;
	background:#000;
	text-align:center;
		padding:20px 0;
	margin-top:50px;
}
.footer {
    background: var(--sub-theme-color);
    padding: 35px 0 0px;
}
.footer-inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 auto;
    width: 80%;
    max-width: 900px;
}
.footer-logo {
    width: 35%;
}
.footer-link {
    display: flex;
    justify-content: space-between;
    width: 35%;
}
.footer-link__column p,
.footer-link__column .head-link {
    color: #fff;
    font-size: 16px;
    margin: 0 0 10px;
}
.footer-link__list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 10px 25px;
}
.footer-link__list li::before {
    background: #fff;
    content: "";
    display: block;
    height: 2px;
    margin: 0 15px 0 0;
    width: 25px;
}
.footer-link__list li a {
    color: #fff;
    font-size: 16px;
}
.footer-contact {
    margin: 0 0 0 10%;
    text-align: center;
    width: calc(30% - 10%);
}
.footer-contact a {
    background: #484860;
    border-radius: 50px;
    color: #fff;
    display: block;
    font-size: 17px;
    margin: 0 auto;
    padding: 10px 0;
    width: 100%;
}
@media screen and (max-width: 976px) {
    .footer-inner {
        display: block;
    }
    .footer-logo {
        text-align: center;
        width: 100%;
    }
    .footer-link {
        display: block;
        padding: 25px 0;
        width: 100%;
    }
    .footer-link__column {
        margin: 0 0 25px;
    }
    .footer-contact {
        margin: 0;
        width: 100%;
    }
}
.about-contents__body{
display:none !important;
}
.nogtl-contents{
display:none;
}
.newarrival-contents{
display:none;
}
.about-contents__inner{
margin-top:-50px;
}