@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Zen Kaku Gothic Antique", sans-serif;
    --font-en: "bebas neue", sans-serif;
    --color-black: #101010;
    --header-height: 110px;
    --scroll-height: 70px;
    --inner-width: min(100%, 1591px);
    --inner-padding-width: min(calc(var(--inner-width) * 0.06), calc((1591px - 1400px) / 2));
}
main {
    overflow: hidden;
}
@media (max-width: 1280px) {
    :root {
        --header-height: 90px;
        --scroll-height: 60px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --scroll-height: 50px;
        --inner-padding-width: calc(var(--inner-width) * 0.04) ;
    }
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--scroll-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 1280px) {
    html body {
        font-size: 1.5rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.inner {
    width: var(--inner-width);
    margin: 0 auto;
    padding: 0 var(--inner-padding-width);
}

.sp {
    display: none;
}
.sp_inline600 {
    display: none;
}
@media (max-width: 768px) {
    .sp {
        display: block;
    }
}

@media (max-width: 768px) {
    .pc768 {
        display: none;
    }
}
@media (max-width: 600px) {
    .pc {
        display: none;
    }
    .sp_inline600 {
        display: inline;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    display: none;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
    transform: translateY(-50%);
}
.menu-trigger span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--color-black);
    position: absolute;
    left: calc(50% - 15px);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - 8px);
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + 8px);
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@media (max-width: 1080px) {
    .menu-trigger {
        display: block;
    }
}
@media (max-width: 768px) {
    .menu-trigger {
        /*
        top: 23px;
        */
        right: 10px;
    }
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - 8px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 8px);
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: 30px;
        left: calc(50% - 15px);
    }
    66.6666% {
        width: 30px;
        left: calc(50% - 15px);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: 30px;
        left: calc(50% - 15px);
    }
    70% {
        width: 30px;
        left: calc(50% - 15px);
    }
    100% {
        width: 30px;
        left: calc(50% - 15px);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + 8px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 8px);
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition-duration: 0.3s;
    background-color: transparent;
}
@media (max-width: 1280px) {
    header {
        padding: 0 15px;
    }
}

header.active {
    background-color: #fff;
    height: var(--scroll-height);
}
header.active .load-check {
    transition: none !important;
}


.header__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 52px;
    padding-top: 3px;
    border-radius: 26px;
    border: 1px #000 solid;
    background: #000;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    gap: 9px;
    transition-duration: 0.3s;
}
.header__contact:hover {
    background-color: transparent;
    color: #000
}
@media (max-width: 1280px) {
    .header__contact {
        width: 140px;
        height: 44px;
        padding-top: 2px;
        border-radius: 22px;
        font-size: 2rem;
    }
}
.header__contact::after {
    content: "";
    display: block;
    width: 23px;
    aspect-ratio: 1;
    background: url(../img/common/contact_wh.svg) center/contain no-repeat;
    transform: translateY(-2px);
    transition-duration: 0.3s;
}
.header__contact:hover::after {
    background: url(../img/common/contact_bl.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .header__contact::after {
        width: 18px;
    }
}

.header__logo {
    font-size: 1.2rem;
    font-weight: 700;
    max-width: 360px;
}
.header__logo img {
    transition-duration: 0.2s;
}
header.active .header__logo img {
    width: 280px;
}
@media (max-width: 1280px) {
    .header__logo {
        font-size: 1rem;
        max-width: 240px;
    }
header.active .header__logo img {
    width: 100%;
}
}
@media (max-width: 768px) {
    .header__logo {
        font-size: 0.9rem;
        max-width: 215px;
    }
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 2rem;
    font-weight: 900;
}
    .header__menu a:not(.header__contact) {
        position: relative;
    }
    .header__menu a:not(.header__contact)::before {
        content: '';
        display: block;
        width: 0;
        height: 40%;
        position: absolute;
        left: -5px;
        bottom: 0;
        background: linear-gradient(to right, #E60113, #F5D200);
        transition-duration: 0.2s;
        z-index: -1;
    }
    .header__menu a:not(.header__contact):hover::before {
        width: calc(100% + 10px);
    }
@media (max-width: 1280px) {
    .header__menu {
        gap: 20px;
        font-size: 1.6rem;
    }
}
@media (max-width: 1080px) {
    .header__menu {
        display: none;
    }
}

.nav {
    display: none;
}
@media (max-width: 1080px) {
    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        color: #000;
        background: #fff;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        padding-top: 70px;
        z-index: 100;
    }
    .nav.menu_close {
        transform: translateX(100%);
    }
    .nav .wrapper {
        opacity: 0;
        transition: opacity 0.4s 0s;
    }
    .nav.active .wrapper {
        opacity: 1;
        transition: opacity 0.4s 1.2s;
    }
}

.nav__logo {
    max-width: 200px;
    margin: 0 auto;
}

.nav__menu {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: calc(100% - 40px - 20px);
    font-weight: 900;
}
.nav__menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #fff;
}

.nav__menu a.nav__contact {
    padding: 0;
    padding-top: 3px;
    margin-top: 10px;
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: url(../img/common/footer_bg.png) center/cover no-repeat;
    color: #fff;
}

.footer__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 180px;
    height: 60px;
    padding-top: 3px;
    border-radius: 30px;
    border: 1px #fff solid;
    background: #fff;
    color: #000;
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    transition-duration: 0.3s;
}
.footer__contact:hover {
    color: #fff;
    background-color: transparent;
}
@media (max-width: 1280px) {
    .footer__contact {
        gap: 8px;
        width: 140px;
        height: 50px;
        border-radius: 25px;
        font-size: 2rem;
    }
}
.footer__contact::after {
    content: "";
    display: block;
    width: 23px;
    aspect-ratio: 1;
    background: #000;
    background: url(../img/common/contact_bl.svg) center/contain no-repeat;
    transform: translateY(-3px);
    transition-duration: 0.3s;
}
.footer__contact:hover::after {
    background: url(../img/common/contact_wh.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .footer__contact::after {
        width: 18px;
    }
}

.footer__trade__name {
    font-size: 2.5rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .footer__trade__name {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .footer__trade__name {
        font-size: 1.8rem;
    }
}

.footer__container {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 600px) {
    .footer__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 80px;
    }
}

.footer__logo {
    display: block;
    max-width: 280px;
}
@media (max-width: 1280px) {
    .footer__logo {
        max-width: 220px;
    }
}
@media (max-width: 768px) {
    .footer__logo {
        max-width: 180px;
    }
}

.footer__right {
    display: flex;
    align-items: flex-end;
}
@media (max-width: 1280px) {
    .footer__right {
        flex-direction: column;
        row-gap: 30px;
        align-items: flex-start;
    }
}

.footer__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 130px;
         column-gap: 130px;
    row-gap: 70px;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}
    .footer__menu a:not(.footer__contact) {
        position: relative;
    }
    .footer__menu a:not(.footer__contact)::before {
        content: '';
        display: block;
        width: 0;
        height: 40%;
        position: absolute;
        left: -5px;
        bottom: 0;
        background: linear-gradient(to right, #F8DE00, #1FAB39);
        transition-duration: 0.2s;
        z-index: -1;
    }
    .footer__menu a:not(.footer__contact):hover::before {
        width: calc(100% + 10px);
    }
@media (max-width: 1280px) {
    .footer__menu {
        -moz-column-gap: 30px;
             column-gap: 30px;
        row-gap: 50px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .footer__menu {
        font-size: 1.5rem;
        row-gap: 20px;
    }
}

.copyright {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}
@media (max-width: 1280px) {
    .copyright {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .copyright {
        font-size: 1.2rem;
        text-align: left;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.top__mv {
    position: relative;
}
@media (max-width: 768px) {
    .top__mv {
        height: 100vh;
        max-height: 1000px;
    }
}

.top__mv__abs {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    padding: 0 5%;
    color: #fff;
    font-size: 5.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: right;
}
@media (max-width: 1280px) {
    .top__mv__abs {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .top__mv__abs {
        font-size: 2.6rem;
        flex-direction: column;
        gap: 25px;
    }
}
.top__mv__abs picture {
    width: 57%;
}
@media (max-width: 1280px) {
    .top__mv__abs picture {
        width: 40%;
    }
}
@media (max-width: 768px) {
    .top__mv__abs picture {
        width: 100%;
    }
}

.mv__bg {
    display: block;
    height: 100%;
    animation-name: mv__bg__change;
    animation-delay: 0.5s;
    animation-duration: 2.0s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    opacity: 0;
    filter: grayscale(100%);
}

@keyframes mv__bg__change {
    0% {
        opacity: 0;
        filter: grayscale(100%);
    }
    50% {
        opacity: 1;
        filter: grayscale(100%);
    }
    85% {
        opacity: 1;
        filter: grayscale(100%);
    }
    100% {
        opacity: 1;
        filter: grayscale(0);
    }
}
.mv__bg img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.top__about {
    margin-top: 280px;
    padding-bottom: 300px;
    position: relative;
    z-index: 0;
}
@media (max-width: 1280px) {
    .top__about {
        margin-top: 180px;
        padding-bottom: 200px;
    }
}
@media (max-width: 768px) {
    .top__about {
        margin-top: 100px;
        padding-bottom: 120px;
    }
}
.top__about::before {
    content: "";
    display: block;
    width: 48.75%;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../img/top/about_bg.webp) top 80px left/cover no-repeat;
}
@media (max-width: 768px) {
    .top__about::before {
        background: url(../img/top/about_bg.webp) top 300px left/cover no-repeat;
        left: 70%;
    }
}

.top__about__txt {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 2.1;
}
@media (max-width: 1280px) {
    .top__about__txt {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__about__txt {
        font-size: 1.7rem;
    }
}

.top__about__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-left: auto;
    width: 430px;
    height: 90px;
    padding: 30px;
    position: relative;
    transition-duration: 0.2s;
    overflow: hidden;
}
.top__about__btn::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #E60113, #F5D200);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.top__about__btn:hover {
    background-color: transparent;
}
@media (max-width: 1280px) {
    .top__about__btn {
        font-size: 1.8rem;
        width: 320px;
        height: 80px;
        padding: 20px;
    }
}
@media (max-width: 768px) {
    .top__about__btn {
        font-size: 1.6rem;
        width: 260px;
        height: 60px;
        padding: 15px;
        display: none;
    }
}
.top__about__btn::after {
    content: "";
    display: block;
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    transition-duration: 0.2s;
}
.top__about__btn:hover::after {
    transform: translateX(60px);
}
@media (max-width: 1280px) {
    .top__about__btn::after {
        width: 8px;
    }
}
@media (max-width: 768px) {
    .top__about__btn::after {
        width: 6px;
    }
}

.top__about__h2 {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
}
@media (max-width: 1280px) {
    .top__about__h2 {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .top__about__h2 {
        font-size: 2.4rem;
    }
}

.top__about__h2__en {
    font-family: var(--font-en);
    font-size: 15rem;
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .top__about__h2__en {
        font-size: 9rem;
    }
}
@media (max-width: 768px) {
    .top__about__h2__en {
        font-size: 7.5rem;
    }
}

.top__service {
    margin: -30px 60px 0;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 2.3;
    position: relative;
    z-index: 1;
    padding-bottom: 270px;
}
@media (max-width: 1280px) {
    .top__service {
        margin: -30px 30px 0;
        font-size: 1.6rem;
        padding-bottom: 180px;
    }
}
@media (max-width: 768px) {
    .top__service {
        margin: -30px 25px 0 0;
        font-size: 1.5rem;
        padding-bottom: 80px;
        width: calc(100% - 25px);
    }
}

.top__service__img__container {
    display: flex;
    gap: 50px;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .top__service__img__container {
        font-size: 1.8rem;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .top__service__img__container {
        flex-direction: column;
    }
}
.top__service__img__container .img {
    position: relative;
}
.top__service__img__container .img img {
    position: relative;
    z-index: 0;
    max-width: 500px;
}
@media (max-width: 768px) {
    .top__service__img__container .img:nth-child(1), .top__service__img__container .img:nth-child(3) img {
        left: calc(var(--inner-padding-width) + 27px);
    }
}
@media (max-width: 768px) {
    .top__service__img__container .img:nth-child(2) img {
        left: calc(-1 * var(--inner-padding-width));
    }
}
.top__service__img__container .img:nth-child(1)::before {
    content: "";
    position: absolute;
    bottom: 8%;
    left: -15%;
    width: 74%;
    aspect-ratio: 636/511;
    background: url(../img/top/service_1_2.webp) center/contain no-repeat;
    z-index: 1;
}
.top__service__img__container .img:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -22%;
    left: -15%;
    width: 96%;
    aspect-ratio: 824/591;
    background: url(../img/top/service_2_2.webp) center/contain no-repeat;
    z-index: 1;
}
@media (max-width: 768px) {
    .top__service__img__container .img:nth-child(2)::before {
        left: 24%;
        top: -13%;
        width: 82%;
    }
}
.top__service__img__container .img:nth-child(3)::before {
    content: "";
    position: absolute;
    bottom: -2%;
    left: -15%;
    width: 118%;
    aspect-ratio: 1016/595;
    background: url(../img/top/service_3_2.webp) center/contain no-repeat;
    z-index: 1;
}
@media (max-width: 768px) {
    .top__service__img__container .img:nth-child(3)::before {
        left: -6%;
        width: 114%;
    }
}

.top__service__inner {
    position: relative;
}

.top__service__inner p {
    max-width: 1300px;
}

.top__service__inner__h2 {
    position: absolute;
    top: 0;
    left: var(--inner-padding-width);
    transform: translateY(-80%);
    font-size: 15rem;
    color: #000;
    line-height: 1;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .top__service__inner__h2 {
        font-size: 9rem;
    }
}
@media (max-width: 768px) {
    .top__service__inner__h2 {
        font-size: 7.5rem;
    }
}

.top__works {
    background: url(../img/top/works__bg.webp) center/cover no-repeat;
}

.top__works__inner {
    position: relative;
    z-index: 2;
}

.top__works__h2 {
    position: absolute;
    top: 0;
    right: var(--inner-padding-width);
    transform: translateY(-80%);
    font-size: 15rem;
    color: #FC0127;
    line-height: 1;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .top__works__h2 {
        font-size: 9rem;
    }
}
@media (max-width: 768px) {
    .top__works__h2 {
        font-size: 7.5rem;
    }
}

.top__access {
    margin: 140px 60px 250px;
    background: url(../img/top/map_bg.webp) center/cover no-repeat;
    color: #fff;
}
@media (max-width: 1280px) {
    .top__access {
        margin: 90px 30px 180px;
    }
}
@media (max-width: 768px) {
    .top__access {
        margin: 80px 25px 90px;
    }
}

.top__access__h2 {
    font-size: 10rem;
    font-family: var(--font-en);
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .top__access__h2 {
        font-size: 7.5rem;
    }
}

.top__access__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1280px) {
    .top__access__inner {
        flex-direction: column;
        align-items: unset;
    }
}

.top__access__inner__txt {
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .top__access__inner__txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__access__inner__txt {
        font-size: 1.7rem;
    }
}

.top__access__inner__txt__trade__name {
    font-size: 2.8rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .top__access__inner__txt__trade__name {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .top__access__inner__txt__trade__name {
        font-size: 1.8rem;
    }
}
.top__access__inner__txt__trade__name .en {
    font-size: 4rem;
    font-family: var(--font-en);
    font-weight: 400;
}
@media (max-width: 1280px) {
    .top__access__inner__txt__trade__name .en {
        font-size: 3.4rem;
    }
}
@media (max-width: 768px) {
    .top__access__inner__txt__trade__name .en {
        font-size: 3rem;
    }
}

.top__access__inner__map {
    min-width: 58%;
}
.top__access__inner__map iframe {
    width: 100%;
    aspect-ratio: 850/480;
}

/* ------------------------------------- /
/  会社概要ページ
/* ------------------------------------- */
.company__mv {
    background: url(../img/company/bg.webp) center/cover no-repeat;
}

.company__mv__txt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #fff;
}
@media (max-width: 768px) {
    .company__mv__txt {
        flex-direction: column;
        padding-bottom: 30px;
    }
}

.company__mv__txt__right {
    width: 53.57%;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 2.3;
}
@media (max-width: 1280px) {
    .company__mv__txt__right {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .company__mv__txt__right {
        width: 100%;
        font-size: 1.8rem;
        line-height: 1.75;
    }
}
@media (max-width: 600px) {
    .company__mv__txt__right {
        font-size: 1.6rem;
    }
}

.company__mv__txt__left {
    width: 42.6428%;
}
@media (max-width: 768px) {
    .company__mv__txt__left {
        width: 100%;
    }
}
.company__mv__txt__left img {
    position: relative;
    left: -18.42%;
}
@media (max-width: 768px) {
    .company__mv__txt__left img {
        width: min(60%, 300px);
        margin: 0 auto;
        left: 0;
    }
}

.company__mv__header__h2 {
    font-size: 10rem;
    font-family: var(--font-en);
    color: #fff;
    position: relative;
    z-index: 1;
    display: inline-block;
    line-height: 1.2;
    margin-bottom: -50%;
}
@media (max-width: 1280px) {
    .company__mv__header__h2 {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .company__mv__header__h2 {
        display: block;
        width: min(100%, 170px);
        margin: 0 auto -15px;
        font-size: 6rem;
    }
}
.company__mv__header__h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 520px;
    height: 70px;
    background: linear-gradient(270deg, rgba(203, 232, 82, 0.78) 0%, #fb0 19.65%, #f00 66.12%, #ff3636 100%);
    opacity: 0.75;
    z-index: -1;
}
@media (max-width: 1280px) {
    .company__mv__header__h2::before {
        width: 400px;
        height: 50px;
    }
}

.company__mv__header {
    background: url(../img/company/company_header.webp) center/cover no-repeat;
    margin: 0 60px;
}
@media (max-width: 768px) {
    .company__mv__header {
        margin: 0 20px;
    }
}

.company__mv__header__h1 {
    color: #fff;
    font-size: 15rem;
    font-family: var(--font-en);
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .company__mv__header__h1 {
        font-size: 10rem;
    }
}
@media (max-width: 768px) {
    .company__mv__header__h1 {
        font-size: 6rem;
    }
}

.company__profile {
    overflow: hidden;
}

.company__profile__table {
    width: 90%;
}
@media (max-width: 768px) {
    .company__profile__table {
        width: 100%;
    }
}
.company__profile__table tr {
    border-top: 1px solid #000000;
}
.company__profile__table tr:last-child {
    border-bottom: 1px solid #000000;
}
@media (max-width: 768px) {
    .company__profile__table tr {
        display: flex;
        flex-direction: column;
    }
}
.company__profile__table tr th, .company__profile__table tr td {
    font-size: 2rem;
    font-weight: 700;
    padding: 40px 0;
}
@media (max-width: 1280px) {
    .company__profile__table tr th, .company__profile__table tr td {
        padding: 30px 0;
    }
}
@media (max-width: 768px) {
    .company__profile__table tr th, .company__profile__table tr td {
        padding: 15px 0;
        font-size: 1.7rem;
    }
    .company__profile__table tr td {
        font-size: 1.6rem;
    }
}

.company__profile__table tr th {
    min-width: 160px;
}
@media (max-width: 768px) {
    .company__profile__table tr td {
        padding: 0 0 20px;
    }
}
@media (max-width: 600px) {
    .company__profile__table tr th {
        padding: 10px 0;
    }
     .company__profile__table tr td {
        padding: 0 0 10px;
    }
    .company__profile__table tr td .iB {
        display: block;
        line-height: 1.4;
    }
}

.company__profile__h2 {
    position: relative;
    margin-left: auto;
    font-family: var(--font-en);
    font-size: 10rem;
    line-height: 1.2;
    display: block;
    text-align: right;
    z-index: 1;
    margin-left: auto;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: -30px;
    padding-left: 10px;
    right: -50px;
}
@media (max-width: 1280px) {
    .company__profile__h2 {
        font-size: 8rem;
        right: 0;
    }
}
@media (max-width: 768px) {
    .company__profile__h2 {
        font-size: 7rem;
    }
}
.company__profile__h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    z-index: -1;
    height: 70px;
    background: linear-gradient(270deg, rgba(203, 232, 82, 0.78) 0%, #fb0 19.65%, #f00 66.12%, #ff3636 100%);
}
@media (max-width: 1280px) {
    .company__profile__h2::before {
        width: 500px;
        height: 50px;
    }
}

.company__profile__gb {
    background: #C5FF7A;
    position: relative;
    z-index: 0;
    margin-right: 10%;
    padding-bottom: 280px;
}
@media (max-width: 1280px) {
    .company__profile__gb {
        padding-bottom: 180px;
    }
}
@media (max-width: 768px) {
    .company__profile__gb {
        margin-right: 0;
        padding-bottom: 100px;
    }
}
.company__profile__gb::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 50vw;
    height: 100%;
    transform: translateX(-100%);
    background: #C5FF7A;
    z-index: -1;
}
@media (max-width: 768px) {
    .company__profile__gb::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: #C5FF7A;
        z-index: -1;
        transform: translateX(50%);
    }
}

/* ------------------------------------- /
/  お問い合わせページ
/* ------------------------------------- */
.page__contact {
    background: url(../img/contact/contact_bg.webp) center/cover no-repeat;
}

.contact__header {
    background: url(../img/contact/contact_header.webp) center/cover no-repeat;
    margin: 0 60px;
}
@media (max-width: 768px) {
    .contact__header {
        margin: 0 20px;
    }
}

.contact__header__h1 {
    color: #fff;
    font-size: 15rem;
    font-family: var(--font-en);
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .contact__header__h1 {
        font-size: 10rem;
    }
}
@media (max-width: 768px) {
    .contact__header__h1 {
        font-size: 6rem;
    }
}

.contact__form {
    margin-bottom: 280px;
}

.contact__form__txt {
    font-size: 2.5rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .contact__form__txt {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .contact__form__txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 600px) {
    .contact__form__txt {
        font-size: 1.6rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 768px) {
    .contact-form {
        gap: 20px;
    }
}

.contact-form__column {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
@media (max-width: 1280px) {
    .contact-form__column {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .contact-form__column {
        flex-direction: column;
        gap: 10px;
    }
}
.contact-form__column dt {
    width: 330px;
    display: flex;
    justify-content: space-between;
    font-size: 2rem;
    font-weight: 700;
    min-height: 60px;
    align-items: center;
}
@media (max-width: 1280px) {
    .contact-form__column dt {
        width: 270px;
        font-size: 1.8rem;
        min-height: 50px;
    }
}
@media (max-width: 768px) {
    .contact-form__column dt {
        width: 100%;
        font-size: 1.6rem;
        min-height: 0;
    }
}
.contact-form__column dt .required {
    background: #000;
    color: #fff;
    height: 24px;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-form__column dd {
    width: calc(100% - 60px - 330px);
}
@media (max-width: 1280px) {
    .contact-form__column dd {
        width: calc(100% - 40px - 270px);
    }
}
@media (max-width: 768px) {
    .contact-form__column dd {
        width: 100%;
    }
}
.contact-form__column input[type=text],
.contact-form__column input[type=tel],
.contact-form__column input[type=email],
.contact-form__column textarea {
    width: 100%;
    border: none;
    min-height: 60px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1.8rem;
    padding: 10px;
    line-height: 2;
}
@media (max-width: 768px) {
    .contact-form__column input[type=text],
    .contact-form__column input[type=tel],
    .contact-form__column input[type=email],
    .contact-form__column textarea {
        min-height: 50px;
        font-size: 1.6rem;
        padding: 6px;
    }
}
.contact-form__column input[type=text].input_error,
.contact-form__column input[type=tel].input_error,
.contact-form__column input[type=email].input_error,
.contact-form__column textarea.input_error {
    border: 2px solid red;
}

.error {
    color: red;
}
.error.false {
    display: none;
}

input[type=radio] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    position: relative;
    width: 31px;
    height: unset;
    aspect-ratio: 1;
}
@media (max-width: 768px) {
    input[type=radio] {
        width: 25px;
    }
}
input[type=radio]::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #707070;
    top: 0;
    left: 0;
    background: #fff;
}
input[type=radio]:checked::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background: #000;
    border-radius: 50%;
}

input[type=radio][readonly],
input[type=checkbox][readonly] {
    pointer-events: none;
}

.radio__column {
    display: flex;
    gap: 20px;
    align-items: center;
}

.form-button__box {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .form-button__box {
        gap: 30px;
    }
}

.form-submit__button,
.form-return__button {
    display: block;
    width: min(430px, 100%);
    height: 90px;
    background: #000;
    border: 1px #000 solid;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    cursor: pointer;
    transition-duration: 0.3s;
}
.form-submit__button:hover,
.form-return__button:hover {
    background-color: transparent;
    color: #000;
}
@media (max-width: 1280px) {
    .form-submit__button,
    .form-return__button {
        height: 70px;
        font-size: 2rem;
        width: min(340px, 100%);
    }
}
@media (max-width: 768px) {
    .form-submit__button,
    .form-return__button {
        height: 60px;
        font-size: 1.8rem;
        width: min(260px, 100%);
    }
}

.radio__wrapper {
    display: flex;
    gap: 30px;
    min-height: 60px;
}

.policy__wrapper {
    background: #fff;
    padding: 60px 40px;
}
@media (max-width: 1280px) {
    .policy__wrapper {
        padding: 40px 30px;
    }
}

.policy {
    overflow-y: auto;
    max-height: 320px;
}
.policy::-webkit-scrollbar {
    width: 2px;
    background: #000;
}
.policy::-webkit-scrollbar-thumb {
    background: linear-gradient(#ff8e2b 0%, #e90000 44.04%, #ff2d66 100%);
}

.policy__inner {
    width: 70%;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2.2;
}
@media (max-width: 1280px) {
    .policy__inner {
        width: 80%;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .policy__inner {
        width: 90%;
        font-size: 1.6rem;
    }
}
.policy__inner h3 {
    font-size: 2.2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .policy__inner h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .policy__inner h3 {
        font-size: 1.8rem;
    }
}/*# sourceMappingURL=style.css.map */


.swiper-wrapper {
    transition-timing-function: linear;
}