@charset "UTF-8";

/* ------------------------------------------------------
RESET
------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
    outline: none;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
}

details,
menu,
figcaption,
figure,
main,
article,
aside,
footer,
header,
nav,
section {
    display: block;
}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
p,
figure,
figcaption,
blockquote,
table,
tr,
th,
td {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

canvas,
audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

legend {
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

[hidden],
template {
    display: none;
}

table {
    font: inherit;
    font-size: 100%;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
}

/* ------------------------------------------------------
GENERAL
------------------------------------------------------ */
img {
    max-width: 100%;
    height: auto;
}

p {
    letter-spacing: 0.1em;
    margin: 0 0 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--main-color);
}

.section {
    padding: 0 0 50px 0;
}

.section:last-child {
    padding-bottom: 0;
}

.section .section {
    padding: 0 0 25px;
}

.image_l {
    float: left;
    margin: 0 20px 10px 0;
}

.image_r {
    float: right;
    margin: 0 0 10px 20px;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

#totop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    font-size: 0;
}

.clearfix {
    display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* ------------------------------------------------------
Variables
------------------------------------------------------ */
:root {
    --main-color: #111111;
    --white-color: #fff;
    --jp-font: 'Noto Sans JP', sans-serif;
    --en-font: "Lato", sans-serif;
    --Allura-font: "Allura", cursive;
}

.d_flex {
    --spacing: 20px;
    --column: 3;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(-1 * var(--spacing));
    margin-bottom: calc(-1 * var(--spacing));
}

.d_flex > * {
    margin-right: var(--spacing);
    margin-bottom: var(--spacing);
    width: calc((100% / var(--column)) - var(--spacing));
    text-align: center;
}

/* ------------------------------------------------------
Container
------------------------------------------------------ */
html {
    font-size: 100%;
    font-style: normal;
    background: none;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    line-height: 1;
}

body {
    font-family: "Yu Gothic", YuGothic, "游ゴシック体", sans-serif;
    font-size: 16px;
    color: var(--white-color);
}

#wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.inner {
    width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ------------------------------------------------------
Contents
------------------------------------------------------ */
.bc-disable {
    color: transparent !important;
    background: none !important;
    pointer-events: none;
}

/* ------------------------------------------------------
Header
------------------------------------------------------ */
#header {
    width: 100%;
    height: 126px;
    display: flex;
    align-items: center;
    background: rgba(4, 181, 46, 0.8);
    padding: 0 30px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}

#header h1 {
    display: none;
}

#header .h_menu {
    width: 100%;
    padding-left: 200px;
}

#header #gnavi {
    width: 100%;
    max-width: 1280px;
    display: flex;
    margin: 0 auto;
}

#header #gnavi li {
    padding-top: 42px;
    margin-right: 30px;
}

#header #gnavi li a {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white-color);
    position: relative;
}

#header #gnavi li a::before {
    position: absolute;
    content: '';
    width: 0;
    height: 7px;
    background-color: #e0e004;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s all;
}

#header .h_group_btn {
    width: 100%;
    max-width: 230px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

#header .toggle_btn {
    width: 78px;
    height: 55px;
    cursor: pointer;
}

#header .toggle_txt {
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

#header .hamburger {
    display: block;
    width: 100%;
    height: 30px;
    transform: translate(0, 0);
    transition: all .5s;
}

#header .hamburger span {
    display: block;
    position: absolute;
    right: 0;
    width: 50px;
    height: 4px;
    background-color: var(--white-color);
    transition: all .5s;
}

#header .hamburger span:nth-child(1) {
    top: 0;
    width: 100%;
    animation: equalizer01 7000ms infinite;
}

#header .hamburger span:nth-child(2) {
    top: 13px;
    width: 50px;
    animation: equalizer02 5000ms infinite;
    animation-delay: 0.33s;
}

#header .hamburger span:nth-child(3) {
    top: 26px;
    width: 100%;
    animation: equalizer01 5000ms infinite;
}

@keyframes equalizer01 {
    0% {
        width: 78%;
    }

    10% {
        width: 50%;
    }

    20% {
        width: 100%;
    }

    30% {
        width: 10%;
    }

    40% {
        width: 50%;
    }

    50% {
        width: 70%;
    }

    60% {
        width: 50%;
    }

    70% {
        width: 10%;
    }

    80% {
        width: 100%;
    }

    90% {
        width: 10%;
    }

    100% {
        width: 70%;
    }
}

@keyframes equalizer02 {
    0% {
        width: 50%;
    }

    10% {
        width: 20%;
    }

    20% {
        width: 40%;
    }

    30% {
        width: 10%;
    }

    40% {
        width: 20%;
    }

    50% {
        width: 30%;
    }

    60% {
        width: 20%;
    }

    70% {
        width: 10%;
    }

    80% {
        width: 40%;
    }

    90% {
        width: 10%;
    }

    100% {
        width: 30%;
    }
}

#header .h_contact {
    height: 55px;
    display: flex;
    align-items: flex-end;
    transition: all .3s ease;
    cursor: pointer;
}

#header .h_contact a {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    font-family: var(--en-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
}

#header .h_contact a i {
    display: block;
    background: url(../images/header/icon01.png) no-repeat;
    background-size: contain;
    width: 37px;
    height: 11px;
    margin-bottom: 12px;
}

#header .h_contact a span {
    letter-spacing: 0.1em;
    line-height: 0.8;
}

.menu_overlay {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh)* 100);
    color: var(--white-color);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

.menu_overlay::before {
    position: absolute;
    content: '';
    width: 280vw;
    height: 280vw;
    background: #04b52e;
    border-radius: 50%;
    bottom: 50%;
    right: 50%;
    transition: transform 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(0) translate(50%, 50%);
}

.menu_overlay.opened {
    pointer-events: auto;
}

.menu_overlay.opened::before {
    transform: scale(1) translate(50%, 50%);
    transition: transform 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #04b52e;
}

#header .close_btn {
    width: 78px;
    position: absolute;
    top: 3.95vh;
    right: 72px;
    z-index: 99;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#header .menu_overlay.opened .close_btn {
    opacity: 1;
    visibility: visible;
    transition-delay: 1s;
}

#header .close_btn .close_txt {
    font-family: var(--en-font);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

#header .close_btn .close_hamburger {
    display: block;
    width: 100%;
    height: 43px;
}

#header .close_btn .close_hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--white-color);
    position: absolute;
    top: 0;
    right: 0;
}

#header .close_btn .close_hamburger span:nth-child(1) {
    transform: translate(0, 46px) rotate(-30deg);
}

#header .close_btn .close_hamburger span:nth-child(2) {
    transform: translate(0, 46px) rotate(30deg);
}

.menu_overlay .inner {
    width: 82%;
    max-width: 1280px;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.menu_overlay.opened .inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .8s;
}

.menu_overlay .nav_container {
    height: 100%;
    display: flex;
    align-items: center;
}

.menu_overlay .nav_container .nav_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.menu_overlay .nav_container .nav_wrap dl {
    width: 48%;
    max-width: 475px;
}

.menu_overlay .nav_container .nav_wrap dl dt {
    font-family: var(--en-font);
    font-size: 20px;
    margin-bottom: 6.6vh;
    overflow: hidden;
}

.menu_overlay .nav_container dl dt span {
    letter-spacing: 0.05em;
    padding-right: 44px;
    position: relative;
}

.menu_overlay .nav_container dl dt span::after {
    position: absolute;
    content: '';
    width: 100vw;
    height: 2px;
    background: var(--white-color);
    top: 12px;
    left: 100%;
}

.menu_overlay .nav_container dl dd .nav li {
    margin-bottom: 3.8vh;
}

.menu_overlay .nav_container dl dd .nav li:last-child {
    margin-bottom: 0;
}

.menu_overlay .nav_container dl dd .nav li a,
.menu_overlay .nav_container dl dd .nav li .sub_title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white-color);
    position: relative;
}

.menu_overlay .nav_container dl dd .nav li a::after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--white-color);
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s all;
}

.menu_overlay .nav_container dl dd .nav li .sub_title {
    display: inline-block;
    margin-bottom: 3.5vh;
}

.menu_overlay .nav_container dl dd .nav li .sub_menu {
    padding-left: 70px;
}

.menu_overlay .h_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 24px;
    font-weight: 700;
    border-top: 2px solid var(--white-color);
    padding-top: 3.5vh;
}

.menu_overlay .h_bottom .h_add {
    line-height: 1.77;
    letter-spacing: 0.05em;
    margin-bottom: 13px;
}

.menu_overlay .h_bottom .h_phone span {
    letter-spacing: 0.05em;
    margin-left: 20px;
}

.menu_overlay .h_bottom .h_companyname {
    font-size: 20px;
    letter-spacing: 0.05em;
}

/* ------------------------------------------------------
idx_mainvisual
------------------------------------------------------ */
#idx_mainvisual {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh)* 100);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#idx_mainvisual .inner {
    padding-bottom: 50px;
    z-index: 1;
}

#idx_mainvisual h2 {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.48;
    color: var(--white-color);
    text-align: center;
}

#idx_mainvisual h2 .mvchar br {
    display: none;
}

#idx_mainvisual h2 .word {
    display: block;
    letter-spacing: 0.05em;
    overflow: hidden;
}

#idx_mainvisual h2 .char {
    opacity: 0;
    transform: translate3d(0, 80%, 0);
    will-change: transform, opacity;
    transition: transform 1000ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

#idx_mainvisual.active h2 .char {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

#idx_mainvisual .mv_logo {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 1));
    position: absolute;
    top: 34px;
    left: 55px;
    z-index: 1;
}

#idx_mainvisual .mv_cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#idx_mainvisual .mv_cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_mainvisual .mv_tag {
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 20px solid var(--white-color);
    padding-bottom: 8px;
    position: absolute;
    bottom: 173px;
    left: 44px;
}

#idx_mainvisual .mv_tag a {
    color: var(--white-color);
}

#idx_mainvisual .mv_tag .mv_tag_title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
}

#idx_mainvisual .mv_tag .mv_tag_title span {
    display: block;
    font-family: var(--en-font);
    font-size: 23px;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

#idx_mainvisual .mv_tag .mv_tag_effect {
    width: 168px;
    height: 171px;
    position: absolute;
    top: -35px;
    left: -35px;
    animation: 10s toRotate infinite linear;
}

@keyframes toRotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* ------------------------------------------------------
loading
------------------------------------------------------ */
#loading {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh)* 100);
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#loading figure {
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

#loading figure img {
    opacity: 0;
    transform: translate3d(0, 80%, 0);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#loading figure.active img {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

#loading.active figure {
    opacity: 0;
}

#loading.active {
    opacity: 0;
    transition-delay: 1s;
    pointer-events: none;
}


/* MOZZILLA CSS */
@-moz-document url-prefix() {}

/* IE CSS */
@media screen\0 {}

/* EDGE 12+ CSS */
@supports (-ms-ime-align:auto) {}
