@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: 50px;
    right: 50px;
    z-index: 99;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    mix-blend-mode: difference;
}

#toTop p {
    line-height: 0;
}

.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: #1a1a1a;
    --white-color: #fff;
    --orange-color: #f7931e;
    --jp-font: 'Noto Sans JP', sans-serif;
    --NotoSerif-font: "Noto Serif JP", serif;
    --en-font: "League Gothic", serif;
    --Inter-font: "Inter", serif;
}

.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: var(--jp-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--main-color);
    background: var(--white-color);
}

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

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

#home {
    overflow: hidden;
}

#home #main #idx_connection,
#home #main #idx_news,
#home #main #idx_recruit,
#home #footer {
    opacity: 0;
}

#home.active {
    overflow: auto;
}

#home.active #main #idx_connection,
#home.active #main #idx_news,
#home.active #main #idx_recruit,
#home.active #footer {
    opacity: 1;
}

/* ------------------------------------------------------
Contents
------------------------------------------------------ */
.h3title span {
    font-family: var(--en-font);
    font-size: 250px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

.btn_primary {
    width: 100%;
    max-width: 400px;
}

.btn_primary a {
    display: flex;
    font-family: var(--en-font);
    font-size: 22px;
    letter-spacing: 0.1em;
    line-height: 2.7;
    color: #161616;
    position: relative;
    overflow: hidden;
}

.btn_primary a::before,
.btn_primary a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform-origin: right;
    transform: scaleX(1) translateZ(0);
    transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1) .2s;
}

.btn_primary a::after {
    transform-origin: left;
    transform: scaleX(0) translateZ(0);
    transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn_primary a span {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    text-align: left;
    transform: translateZ(0);
    transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn_primary a span::before,
.btn_primary a span::after {
    content: '';
    background-image: url(../images/common/icon_arrow.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 22px;
    height: 16px;
}

.btn_primary a span::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: inline-block;
    transform: translateX(-2.5rem) translateY(-50%) translateZ(0);
    transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn_primary a span::after {
    display: block;
    margin-left: 20px;
}

.btn_primary a.white {
    color: var(--white-color);
}

.btn_primary a.white span::before,
.btn_primary a.white span::after {
    background-image: url(../images/common/icon_arrow_white.svg);
}

/* ------------------------------------------------------
Header
------------------------------------------------------ */
#header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 164px 0 40px;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

#header #top a {
    display: block;
    line-height: 0;
}

#header .header_wrap {
    width: 100%;
    max-width: 590px;
    flex: 1;
    margin-left: 35px;
}

#header .gnavi_headline {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#header .gnavi_headline li a {
    font-family: var(--Inter-font);
    font-size: 14px;
    font-weight: 500;
    transition: all .4s ease;
    position: relative;
}

#header .gnavi_headline li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--orange-color);
    transform-origin: bottom right;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1);
}

#header #toggle-menu {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    cursor: pointer;
}

#header .hamburger {
    display: block;
    width: 40px;
    height: 21px;
    transform: rotate(0deg);
    position: relative;
    top: 1px;
    transition: .5s ease-in-out;
}

.hamburger span {
    display: block;
    height: 1px;
    width: 100%;
    background: var(--white-color);
    opacity: 1;
    position: absolute;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
    transition-delay: .5s;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    width: 20px;
    top: 9px;
}

.hamburger span:nth-child(4) {
    top: 18px;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(4) {
    top: 9px;
    transition-delay: .2s;
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    width: 0%;
    transition-delay: .2s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(4) {
    transform: rotate(-45deg);
}

#header .transition_overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0;
    transition: .7s cubic-bezier(0.9, 0.1, 0.1, 0.9);
    pointer-events: none;
}

#header .transition_overlay:nth-child(1) {
    background-color: #9d9d9d;
    transition-delay: .3s;
    z-index: 9991;
}

#header .transition_overlay:nth-child(2) {
    background-color: #5d5d5d;
    transition-delay: .2s;
    z-index: 9992;
}

#header .menu_overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: var(--main-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    transform: translateY(100%);
    transition: .7s cubic-bezier(0.9, 0.1, 0.1, 0.9);
    transition-delay: .1s;
}

#header .menu_overlay .inner {
    max-width: 1000px;
    display: flex;
}

#header .menu_overlay .gnavi {
    width: 50%;
}

#header .menu_overlay .gnavi li {
    padding-left: 100px;
    margin-bottom: 3.8vh;
    overflow: hidden;
}

#header .menu_overlay .gnavi li:last-child {
    margin-bottom: 0;
}

#header .menu_overlay .gnavi li a {
    font-family: var(--en-font);
    font-size: 120px;
    line-height: 1;
    color: var(--white-color);
}

#header .menu_overlay .gnavi li a span {
    display: inline-block;
    transform: translateY(100%);
    transition: 1s cubic-bezier(0.9, 0.1, 0.1, 0.9);
}

#header #overlay.overlay-hide .transition_overlay {
    height: 100%;
}

#header #overlay.overlay-hide .transition_overlay:nth-child(1) {
    transition-delay: 0s;
}

#header #overlay.overlay-hide .transition_overlay:nth-child(2) {
    transition-delay: .1s;
}

#header #overlay.overlay-hide .menu_overlay {
    transform: translateY(0);
    transition-delay: .2s;
    pointer-events: auto;
}

#header #overlay.overlay-show .menu_overlay .gnavi li a span {
    transform: translateY(0);
    transition-delay: .4s;
}

#header #overlay .menu_overlay.active .gnavi li a span {
    transition: all .3s ease;
    transition-delay: 0s;
}

/* ------------------------------------------------------
idx_mainvisual
------------------------------------------------------ */
#idx_mainvisual {
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    text-align: center;
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
}

#idx_mainvisual h2 {
    width: 74.94vw;
    max-width: 607px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    left: 0;
    transform: translateY(50px);
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
    opacity: 0;
}

#idx_mainvisual.active h2 {
    transform: translateY(0);
    opacity: 1;
}

#idx_mainvisual .mv_subtitle {
    font-size: 16px;
    margin-top: 27px;
    opacity: 0;
    transform: translateY(50px);
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
}

#idx_mainvisual.active .mv_subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 5.5s;
}

#idx_mainvisual .loading_progress {
    font-family: var(--en-font);
    font-size: 180px;
    letter-spacing: 0;
    position: fixed;
    bottom: 1vh;
    right: 3%;
    transition: all .3s cubic-bezier(.15, 0, .25, 1);
    opacity: 0;
}

#idx_mainvisual .loading_progress.active {
    opacity: 1;
}

body.active #idx_mainvisual {
    height: 630px;
    padding-top: 49px;
    overflow: hidden;
}

body.active #idx_mainvisual .loading_progress {
    opacity: 0;
    transform: translateY(50px);
}

/* ------------------------------------------------------
idx_intro
------------------------------------------------------ */
#idx_intro {
    width: 100%;
    min-height: 950px;
    color: var(--white-color);
    background: #f5f5f5;
    position: relative;
}

#idx_intro .idx_intro_virtual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: var(--main-color);
    position: sticky;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

#idx_intro .idx_intro_virtual::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.65);
    top: 0;
    left: 0;
    z-index: 2;
}

#idx_intro .idx_intro_slider {
    width: 100%;
    max-width: 1666px;
    margin: 0 auto;
}

#idx_intro .idx_intro_wrap {
    width: 94%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    padding: 0 0 400px;
    margin: 0 auto;
}

#idx_intro .intro_copy {
    display: flex;
    flex-direction: column;
    gap: 400px;
    margin-right: 25px;
}

#idx_intro .intro_copy h4 {
    font-size: 38px;
    letter-spacing: 0.1em;
}

#idx_intro .intro_logo {
    width: 100%;
    max-width: 420px;
    margin-top: -45px;
    margin-bottom: -45px;
}

#idx_intro .intro_logo .intro_frame {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 7px solid var(--white-color);
    padding: 0 0 10px 15px;
    position: sticky;
    top: 40vh;
}

#idx_intro .intro_logo .intro_frame h3 {
    font-size: 74px;
    letter-spacing: 0.1em;
}

#idx_intro .virtual_start {
    height: 50vh;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

/* ------------------------------------------------------
idx_connection
------------------------------------------------------ */
#idx_connection {
    background: #f5f5f5;
    padding: 200px 0 225px;
    position: relative;
}

.transition_sec {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    z-index: 999;
    overflow: hidden;
}

.virtual_layout {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 5;
    pointer-events: none;
}

.transition_sec .shutter {
    width: 5%;
    transform-origin: left;
    transform: scaleX(0);
    height: 100%;
    background-color: var(--white-color);
}

#idx_connection .idx_box_wrap .inner {
    z-index: 1;
}

#idx_connection .idx_box_frame {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#idx_connection .idx_box_image {
    width: 49.6vw;
    max-width: 620px;
}

#idx_connection .idx_box_wrap h4 {
    font-family: var(--NotoSerif-font);
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1.86;
    text-align: justify;
}

#idx_connection .idx_box_wrap .idx_box_txt {
    width: 100%;
    line-height: 2.27;
    text-align: justify;
    flex: 1;
}

#idx_connection .special_word {
    position: absolute;
    top: 98px;
    z-index: -1;
    opacity: 0;
    transform: translateY(80px);
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
}

/*----- idx_service -----*/
#idx_connection #idx_service {
    /*    margin-top: -300px;*/
    margin-bottom: 124px;
    /*    opacity: 0;*/
    transition: all .3s ease;
}

/*
#idx_connection #idx_service.is-active {
    opacity: 1;
}
*/

#idx_connection #idx_service .h3title {
    margin-bottom: 39px;
}

#idx_connection #idx_service .idx_box_frame {
    padding-left: 100px;
    margin-bottom: 110px;
}

#idx_connection #idx_service .idx_box_txt {
    max-width: 400px;
    margin-left: 25px;
    margin-bottom: -40px;
}

#idx_connection #idx_service h4 {
    margin-bottom: 90px;
}

#idx_connection #idx_service .btn_primary {
    margin-left: auto;
}

#idx_connection #idx_service .special_word {
    width: 31.05vw;
    max-width: 318px;
    right: 20%;
}

/*----- idx_company -----*/
#idx_connection #idx_company {
    margin-bottom: 170px;
}

#idx_connection #idx_company .h3title {
    text-align: right;
    margin-bottom: 19px;
}

#idx_connection #idx_company h4 {
    margin-bottom: 6px;
}

#idx_connection #idx_company .idx_box_image {
    padding-right: 100px;
    margin-bottom: 85px;
    margin-left: auto;
}

#idx_connection #idx_company .idx_box_txt {
    max-width: 670px;
    margin-right: 50px;
}

#idx_connection #idx_company .btn_primary {
    padding-bottom: 4px;
}

#idx_connection #idx_company .special_word {
    width: 12.5vw;
    max-width: 128px;
    left: 14.9%;
}

/*----- idx_faq -----*/
#idx_connection #idx_faq .idx_box_frame {
    align-items: center;
    margin-bottom: 40px;
}

#idx_connection #idx_faq h4 {
    width: 100%;
    max-width: 847px;
    margin-left: 25px;
    flex: 1;
}

#idx_connection #idx_faq .idx_box_image {
    padding-left: 100px;
    margin-bottom: 52px;
}

#idx_connection #idx_faq .btn_primary {
    margin: 0 auto;
    position: relative;
    left: -50px;
}

#idx_connection #idx_faq .special_word {
    width: 31.05vw;
    max-width: 318px;
    right: 0;
}

#idx_connection .idx_box_wrap.is-active .special_word {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------------------
idx_news
------------------------------------------------------ */
#idx_news {
    padding: 160px 0 169px;
    overflow: hidden;
}

#idx_news .idx_news_frame {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 71px;
}

#idx_news .h3title {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    margin: -10px -30px 0 0;
}

#idx_news .news_list {
    width: 100%;
    max-width: 900px;
    margin-right: 25px;
}

#idx_news .news_list a {
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 49px 0;
    transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#idx_news .news_list li:first-child a {
    border-top: 1px solid #ccc;
}

#idx_news .news_meta {
    margin-bottom: 15px;
}

#idx_news .news_meta .date {
    font-family: var(--Inter-font);
    letter-spacing: 0;
    color: #808080;
    margin-right: 20px;
}

#idx_news .news_meta .cate_group span {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 0;
    color: var(--white-color);
    background: var(--main-color);
    padding: 1px 8px 2px;
    margin: 0 5px 5px 0;
}

#idx_news .news_title {
    font-size: 18px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

#idx_news .btn_primary {
    margin-left: auto;
}

/* ------------------------------------------------------
idx_recruit
------------------------------------------------------ */
#idx_recruit {
    color: var(--white-color);
    padding: 0 0 130px;
    overflow: hidden;
}

#idx_recruit .idx_recruit_layout {
    width: 100%;
    height: 100%;
    position: relative;
}

#idx_recruit .idx_recruit_layout::after {
    position: absolute;
    content: '';
    width: 100vw;
    height: calc(100% - 275px);
    background: var(--main-color);
    top: 275px;
    left: 100px;
    z-index: -2;
}

#idx_recruit .idx_recruit_cover {
    width: 100%;
    height: 53.711vw;
    max-height: 550px;
    padding-right: 150px;
    overflow: hidden;
}

#idx_recruit .idx_recruit_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

#idx_recruit .inner {
    padding: 0 0 106px 55px;
    margin-top: -78px;
}

#idx_recruit .h3title {
    margin-bottom: 27px;
}

#idx_recruit .h3title span {
    color: var(--white-color);
}

#idx_recruit .idx_recruit_txt {
    width: 100%;
    max-width: 800px;
    line-height: 2.26;
    margin-left: auto;
    margin-bottom: 29px;
}

#idx_recruit .btn_primary {
    margin-left: auto;
}

/* ------------------------------------------------------
Footer
------------------------------------------------------ */
#footer {
    overflow: hidden;
}

#footer .box_contact {
    color: var(--white-color);
    text-align: center;
    background: url(../images/footer/box_contact_bg.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}

#footer .box_contact .box_contact_frame {
    width: 94%;
    max-width: 1200px;
    background: rgba(26, 26, 26, 0.7);
    padding: 100px 3%;
    margin: 0 auto;
}

#footer .box_contact .box_contact_title {
    width: 41.333vw;
    max-width: 620px;
    margin: 0 auto 35px;
}

#footer .box_contact .box_contact_txt {
    font-size: 16px;
    font-weight: 500;
    line-height: 2.625;
    margin-bottom: 42px;
}

#footer .box_contact .btn_primary {
    margin: 0 auto;
}

#footer .box_connect {
    position: relative;
}

#footer .box_connect::before {
    position: absolute;
    content: '';
    background: url(../images/footer/f_slogan.png) repeat-x;
    background-size: 2232px 100%;
    width: calc(100vw + 2232px);
    height: 358px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: all 1s linear;
    animation: sloganright 40s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes sloganright {
    0% {
        background-position: 2232px 0;
    }

    100% {
        background-position: 0 0;
    }
}

@keyframes sloganright-sp {
    0% {
        background-position: 686px 0;
    }

    100% {
        background-position: 0 0;
    }
}

#footer .footer_connect {
    display: flex;
}

#footer .footer_connect li {
    width: calc(100% / 3);
    font-family: var(--Inter-font);
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #ccc;
    border-top: 0;
    border-left: 0;
    padding: 40px 0 37px;
}

#footer .footer_connect li:last-child {
    border-right: 0;
}

#footer .footer_connect li .connect_subtitle {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: rgba(26, 26, 26, 0.35);
    margin-bottom: 12px;
}

#footer .box_connect .footer_contents {
    padding: 59px 0 114px;
}

#footer .box_connect .footer_contents .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

#footer .box_connect .footer_location {
    margin-right: 25px;
}

#footer .footer_location .f_logo {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 26px;
}

#footer .footer_location .f_logo span {
    font-family: var(--Inter-font);
    font-size: 300%;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin: 0 8px 0 12px;
}

#footer .footer_location .f_notes {
    font-size: 16px;
    font-weight: 500;
}

#footer .box_connect .footer_link {
    width: 100%;
    max-width: 565px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -25px;
}

#footer .box_connect .footer_link li {
    width: calc(100% / 3);
    margin-bottom: 25px;
}

#footer .box_connect .footer_link li a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 18px;
    position: relative;
    transition: all .4s ease;
}

#footer .box_connect .footer_link li a::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b3b3b3;
    top: 9px;
    left: 0;
    transition: all .4s ease;
}

#footer .box_connect .footer_link li a span {
    position: relative;
}

#footer .box_connect .footer_link li a span::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--orange-color);
    transform-origin: bottom right;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1);
}

#footer address {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--white-color);
    font-style: normal;
    text-align: center;
    background: var(--main-color);
}

#header #top,
#header .gnavi_headline,
#header #toggle-menu,
#idx_intro {
    opacity: 0;
    transform: translateY(50px);
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
}

#header #top,
#header .gnavi_headline,
#header #toggle-menu {
    transform: translateY(-100%);
}

body.active #header #top,
body.active #header .gnavi_headline,
body.active #header #toggle-menu,
body.active #idx_intro {
    opacity: 1;
    transform: translateY(0);
}

body.active #header #top,
body.active #header .gnavi_headline,
body.active #header #toggle-menu {
    transition-delay: 1.3s;
}

body.active #idx_intro {
    transition-delay: 1.9s;
}

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

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

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