/* web font
font-family: "Lato", sans-serif;
font-family: "Roboto", sans-serif;
*/

:root {
    --main-theme-color: #111B23;
    --accent-color: #FD6932;
    --accent-color2: #FFB205;
}

* {
    box-sizing: border-box;
    color: #3C4A60;
    font-family: "Noto Sans JP", sans-serif;
    list-style: none;
    margin: 0;
    padding: 0;
}
::placeholder {
  color: #CBCBCB;
}
body {
    background: #F6F7F9;
}
body.open {
    overflow: hidden;
}
a {
    text-decoration: none;
}
img {
    height: auto;
    max-width: 100%;
}
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
.pc-in {
    display: inline-block !important;
}
.sp-in {
    display: none !important;
}
.pc2 {
    display: block;
}
.sp2 {
    display: none;
}
.sp3 {
    display: none;
}
@media screen and (max-width: 1168px) {
    .sp3 {
        display: block;
    }
}
@media screen and (max-width: 968px) {
    .pc {
        display: none !important;
    }
    .sp {
        display: block !important;
    }
    .pc-in {
        display: none !important;
    }
    .sp-in {
        display: inline-block !important;
    }
}
@media screen and (max-width: 768px) {
    .pc2 {
        display: none;
    }
    .sp2 {
        display: block;
    }
}
.container {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x: clip;
    width: 100%;
}
/* header */
.header {
    margin: 0 auto;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    transition-duration: .3s;
    width: 100%;
    z-index: 999;
}
.header.fixed {
    background: #fff;
    filter: drop-shadow(0 24px 40px rgb(137 63 0 / 10%));
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 92%;
}
.header-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 99;
}
.header-left .logo .off {
    position: absolute;
    left: 0;
}
.header-left .logo .on {
    opacity: 0;
}
.header.fixed .header-left .logo .off {
    opacity: 0;
}
.header.fixed .header-left .logo .on {
    opacity: 1;
}
.header-left p {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-left: 30px;
}
.header.fixed .header-left p {
    color: #676767;
}
.header-nav__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-nav__list li:not(:last-child) {
    margin-right: 20px;
}
.header-nav__list li a {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
}
.header.fixed .header-nav__list li a {
    color: inherit;
}
.header-nav__list li.contact {
    background: var(--main-theme-color);
    border-radius: 50px;
    margin: 0 auto 0 30px;
    text-align: center;
    width: 200px;
}
.header .header-nav__list li.contact a {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 15px 0;
}
.header-nav__list li.contact a span {
    color: var(--accent-color2);
}
.banner,
.header-menu {
    display: none;
}
@media screen and (max-width: 1068px) {
    .header-left .logo {
        width: 100px;
    }
    .header-left .logo img {
        width: 100px;
    }
    .header.fixed.active .header-left .logo .off {
        opacity: 1;
    }
    .header.fixed.active .header-left .logo .on {
        opacity: 0;
    }
    .header-left p {
        font-size: 10px;
    }
    .header.active .header-left p {
        opacity: 0;
    }
    .header-nav {
        background: url(../images/bg.jpg) no-repeat;
        background-position: center;
        background-size: cover;
        min-height: 100%;
        height: 100vh;
        padding: 120px 25px 80px;
        position: fixed;
        right: -100%;
        top: 0;
        transition-duration: .3s;
        width: 100%;
        max-width: 768px;
    }
    .header-nav.open {
        right: 0;
    }
    .header-nav__list {
        display: block;
        text-align: left;
    }
    .header-nav__list li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .header .header-nav__list li a,
    .header.fixed .header-nav__list li a {
        color: #fff;
        display: block;
        font-size: 16px;
        font-weight: bold;
        padding: 10px 0 10px 25px;
        position: relative;
        width: 100%;
    }
    .header-nav__list li a::after {
        background: url(../images/icon-arrow-r-w.svg) no-repeat;
        background-size: contain;
        background-position: center;
        content: "";
        height: 7px;
        margin: auto;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 25px;
        width: 21px;
    }
    .header-nav__list li.contact {
        margin: 35px auto 0;
        width: 100%;
        max-width: 300px;
    }
    .header .header-nav__list li.contact a {
        font-size: 16px;
    }
    .banner {
        display: block;
        padding: 0 25px;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        width: 100%;
    }
    /* hamberger */
    .header-menu {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }
    .header-menu .open {
        position: absolute;
        right: 0;
        top: 0;
        width: 48px;
    }
    .header-menu.active .open {
        opacity: 0;
    }
    .header-menu .close {
        opacity: 0;
        width: 88px;
    }
    .header-menu.active .close {
        opacity: 1;
    }
}
@media screen and (max-width: 768px) {}

/* footer */
.footer {
    background: var(--main-theme-color);
    padding: 50px 0 85px;
}
.footer-inner {
    margin: 0 auto;
    width: 95%;
    max-width: 1200px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-left {
    width: 192px;
}
.footer-right {
    width: calc(100% - 300px);
}
.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.footer-links li:not(:last-child) {
    margin-right: 20px;
}
.footer-links li a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}
.footer-links li.application {
    background: none;
    padding: 0;
}
.footer-links li.contact,
.footer-links li.application {
    width: 200px;
}
.footer-links li.contact a,
.footer-links li.application a {
    border-radius: 50px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
    width: 100%;
}
.footer-links li.contact a {
    background: rgb(255,147,0);
    background: linear-gradient(101deg, rgba(255,147,0,1) 0%, rgba(255,123,75,1) 100%);
}
.footer-links li.application a {
    background: rgb(238,102,0);
    background: linear-gradient(101deg, rgba(238,102,0,1) 0%, rgba(239,49,0,1) 100%);
}
.footer .copyright {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin: 15px 0 0;
    text-align: right;
}
@media screen and (max-width: 1168px) {
    .footer-right {
        width: calc(100% - 230px);
    }
    .footer-links li:not(:last-child) {
        margin-right: 15px;
    }
    .footer-links li.contact,
    .footer-links li.application {
        width: 160px;
    }
}
@media screen and (max-width: 968px) {
    .footer-left {
        margin: 0 0 25px;
        text-align: center;
    }
    .footer-left,
    .footer-right {
        width: 100%;
    }
    .footer-links {
        flex-direction: column;
    }
    .footer-links li {
        text-align: center;
        width: 100%;
    }
    .footer-links li:not(:last-child) {
        margin: 0 0 15px;
    }
    .footer-links li.contact {
        order: 1;
    }
    .footer-links li.application {
        order: 2;
        margin: 0 0 15px;
    }
    .footer-links li:nth-child(1) {
        order: 3;
    }
    .footer-links li:nth-child(2) {
        order: 4;
    }
    .footer-links li:nth-child(3) {
        order: 5;
    }
    .footer-links li:nth-child(4) {
        order: 6;
    }
    .footer-links li:nth-child(5) {
        order: 7;
    }
    .footer-links li.contact,
    .footer-links li.application {
        width: 100%;
        max-width: 300px;
    }
    .footer .copyright {
        text-align: center;
    }
}

/* ==========================
  フローティングバナー（追従バナー）
========================== */
.floating {
  position: fixed;
  bottom: 0;
  right: 10px;
  width: 150px;
  max-width: 100%;
}
.floating.js_close {
  display: none;
}
.floating_img {
  display: block;
  transition: 0.3s;
}
.floating_img:hover {
  opacity: 0.6;
}
.floating_close {
    width: 20px;
    height: 20px;
    position: absolute;
    left: -25px;
    top: calc(50% - 10px);
    cursor: pointer;
    background: #ffffff;
    border-radius: 35px;
}
.floating_close span:nth-of-type(1) {
	position: absolute;
	top: 6px;
    right: 4.5px;
    width: 10px;
    height: 2px;
    background-color: #000;
    transform: rotate(45deg);
}
.floating_close span:nth-of-type(2) {
    position: absolute;
    top: 8px;
    right: 9px;
    width: 2px;
    height: 10px;
    background-color: #000;
    transform: rotate(45deg);
}