@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;
    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: #252120;
    --white-color: #fff;
    --jp-font: "Shippori Mincho", serif;
    --en-font: "EB Garamond", 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);
}

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

.inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* ------------------------------------------------------
Contents
------------------------------------------------------ */
.en {
    font-family: var(--en-font);
}

.a_hover {
    transition: all .3s ease;
}

.idx_block {
    display: flex;
}

.idx_component {
    width: 100%;
    max-width: 500px;
    flex: 1;
}

.main_title {
    font-size: 100px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
    margin-bottom: 15px;
}

.idx_subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.875;
    color: #999;
    margin-bottom: 29px;
}

.idx_txt {
    line-height: 2.27;
    text-align: justify;
}

.idx_title {
    font-size: 32px;
    font-weight: 500;
    line-height: 2.1875;
    -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-bottom: 0;
}

.idx_title .word {
    overflow: hidden;
}

.idx_title .char {
    opacity: 0;
    transform: translateX(-100%);
    will-change: transform, opacity;
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
    transition-delay: calc(.05s * var(--char-index));
}

.title-animated .char {
    opacity: 1;
    transform: translateX(0);
}

.btn_primary a {
    white-space: nowrap;
    color: #32634b;
}

.btn_primary i {
    display: inline-block;
    width: 100%;
    max-width: 150px;
    height: 1px;
    margin-right: 12px;
    position: relative;
    top: -10px;
    overflow: hidden;
}

.btn_primary i::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #32634b;
    top: 0;
    left: 0;
}

.btn_primary .txt {
    display: inline-block;
    overflow: hidden;
}

.btn_primary .txt span {
    font-size: 16px;
    letter-spacing: 0.1em;
    transform: translateY(0);
}

@keyframes catcher-line {
    0% {
        transform: translateX(0);
    }

    49% {
        transform: translateX(100%);
    }

    50% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes catcher-text {
    0% {
        transform: translateY(0);
    }

    49% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.viewport {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.scroll-wrapper {
    display: flex;
    height: 100%;
}

.panel {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

.panel_wrap {
    width: 100%;
    height: 96vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.panel_container {
    width: 100%;
}

.animate {
    opacity: 0;
    transform: translateY(1rem);
    transition: all 1.5s cubic-bezier(.275, 0, 0, 1);
}

.is-animated {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------------------------
Header
------------------------------------------------------ */
#header {
    width: 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white-color);
    border-right: 1px solid var(--white-color);
    padding: 25px 0 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    mix-blend-mode: difference;
}

#header a {
    color: var(--white-color);
}

#header #top {
    font-size: 20px;
    font-weight: 500;
}

#header #top a {
    letter-spacing: 0.1em;
}

.hamburger {
    display: block;
    width: 56px;
    height: 56px;
    position: fixed;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    transition: all .8s cubic-bezier(.86, 0, .07, 1);
    z-index: 99999;
    cursor: pointer;
    mix-blend-mode: difference;
}

.hamburger span {
    display: block;
    width: 2px;
    height: 100%;
    background: var(--white-color);
    transform-origin: center;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(0deg);
    transition: all .8s cubic-bezier(.86, 0, .07, 1);
}

.hamburger span:nth-child(1) {
    left: 21px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    opacity: 0;
}

.hamburger span:nth-child(2) {
    transform: rotate(-45deg) translate(20px, 20px);
}

.hamburger span:nth-child(3) {
    transform: rotate(45deg) translate(20px, -20px);
}

.hamburger span:nth-child(4) {
    right: 22px;
    left: auto;
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(4) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    opacity: 1;
}

.overlay {
    width: 100%;
    height: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    pointer-events: none;
}

.overlay::before {
    position: absolute;
    content: '';
    background: var(--main-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.overlay .layer_left {
    width: 33.33vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(../images/header/overlay_bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
    transform: translateX(-100%);
    transition: transform .75s cubic-bezier(0.7, 0, 0.3, 1);
}

.overlay .layer_left::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4);
    top: 0;
    left: 0;
    pointer-events: none;
}

.overlay.opened .layer_left {
    transform: translateX(0);
    transition-delay: .25s;
}

.overlay .layer_left .overlay_slogan {
    position: relative;
}

.overlay .layer_right {
    width: 66.67vw;
    display: flex;
    align-items: center;
    color: var(--white-color);
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: all .5s cubic-bezier(.86, 0, .07, 1);
}

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

.overlay .layer_right .inner {
    width: 94%;
    max-width: 900px;
    height: 84vh;
    max-height: 755px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overlay .layer_right .h_link {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.overlay .gnavi:first-child {
    margin-right: 146px;
}

.overlay .gnavi li {
    margin-bottom: 5.55vh;
}

.overlay .gnavi li:last-child {
    margin-bottom: 0;
}

.overlay .gnavi li a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
}

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

.overlay .h_address {
    text-align: center;
}

.overlay .h_sns {
    font-size: 16px;
    letter-spacing: 0;
    margin-bottom: 67px;
}

.overlay .h_sns a {
    display: inline-block;
}

.overlay .h_sns i {
    display: block;
    background: url(../images/header/icon_ig.png) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin: 0 auto 6px;
}

.overlay .h_add {
    border-top: 1px solid var(--white-color);
    padding: 75px 0 0;
}

.overlay .h_add dt {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 64px;
}

.overlay .h_add dd {
    letter-spacing: 0.1em;
    line-height: 1.87;
}

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

.overlay.opened::before {
    transform: scale(1, 1);
}

.overlay.delay::before {
    transition-delay: 0.4s;
}

.overlay.opened .layer_right {
    opacity: 1;
    transition-delay: .8s;
}

/* ------------------------------------------------------
idx_mainvisual
------------------------------------------------------ */
#idx_mainvisual {
    width: 100vw;
    text-align: center;
    color: var(--white-color);
    background: rgba(0, 0, 0, 0.35);
    position: relative;
}

#idx_mainvisual #catcher-datetime {
    font-size: 13px;
    letter-spacing: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 3.7vh;
    left: 50%;
    transform: translateX(-50%);
}

.btn-scroll {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 3.7vh;
    right: 0;
}

.btn-scroll .txt {
    font-size: 13px;
    letter-spacing: 0;
    margin-right: 14px;
}

.btn-scroll .line {
    display: block;
    width: 215px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-scroll .line::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: var(--white-color);
    animation: catcher-scrollbar 2.8s infinite linear;
    top: 0;
    left: 0;
}

@keyframes catcher-scrollbar {
    0% {
        left: -100%;
    }

    80% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes catcher-scrollbar-sp {
    0% {
        top: -100%;
    }

    80% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

/* ------------------------------------------------------
idx_about
------------------------------------------------------ */
#idx_about {
    background: var(--white-color);
    padding: 0 0 0 75px;
    position: relative;
    z-index: 1;
}

#idx_about .panel_wrap {
    max-height: 810px;
}

#idx_about .panel_container {
    height: 100%;
}

#idx_about .inner {
    height: 100%;
    display: flex;
}

#idx_about figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_about .idx_block {
    margin-right: 107px;
    flex-shrink: 0;
}

#idx_about .idx_about_image01 {
    width: 31.579vh;
    max-width: 300px;
    height: 42.105vh;
    max-height: 400px;
}

#idx_about .idx_component {
    margin-left: 68px;
    margin-top: 201px;
}

#idx_about .idx_txt {
    margin-bottom: 60px;
}

#idx_about .btn_primary {
    text-align: right;
}

#idx_about .idx_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 71px;
}

#idx_about .idx_about_gallery {
    height: 100%;
    display: flex;
    align-items: flex-end;
    margin-right: 164px;
    flex-shrink: 0;
}

#idx_about .idx_about_image02 {
    width: 32.632vh;
    max-width: 310px;
    height: 24.632vh;
    max-height: 234px;
    margin-right: 80px;
}

#idx_about .idx_about_image03 {
    width: 42.105vh;
    max-width: 400px;
    height: 42.105vh;
    max-height: 400px;
    margin-bottom: 210px;
}

/* ------------------------------------------------------
idx_works
------------------------------------------------------ */
#idx_works {
    color: var(--white-color);
    background: var(--white-color);
    padding: 0 185px 0 144px;
    position: relative;
    z-index: 1;
}

#idx_works .panel_wrap {
    max-height: 810px;
}

#idx_works .inner {
    height: 100%;
    display: flex;
}

#idx_works a {
    color: var(--white-color);
}

#idx_works .idx_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 111px;
}

#idx_works .headline {
    width: 100%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 80px;
}

#idx_works .headline .idx_subtitle {
    margin-bottom: 0;
    margin-right: 122px;
}

#idx_works .headline .btn_primary {
    flex-shrink: 0;
}

#idx_works .btn_primary i::before {
    background: var(--white-color);
}

#idx_works .idx_works_list {
    display: flex;
}

#idx_works .idx_works_list .works_item {
    width: 43.158vh;
    max-width: 410px;
    margin-right: 80px;
}

#idx_works .idx_works_list .works_item a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#idx_works .idx_works_list .works_item:last-child {
    margin-right: 0;
}

#idx_works .idx_works_list .works_item .works_image {
    width: 100%;
    height: 43.158vh;
    max-height: 410px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

#idx_works .idx_works_list .works_item .works_image::before,
#idx_works .idx_works_list .works_item .works_image::after {
    position: absolute;
    content: '';
    background: var(--main-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

#idx_works .idx_works_list .works_item .works_image::before {
    width: 10px;
    height: 100%;
}

#idx_works .idx_works_list .works_item .works_image::after {
    height: 10px;
    width: 100%;
}

#idx_works .idx_works_list .works_item .works_image figure {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    transform-origin: center;
    transition: all .4s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#idx_works .idx_works_list .works_item .works_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_works .idx_works_list .works_item .works_image .bglayer {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#idx_works .idx_works_list .works_item a:hover .works_image figure {
    width: 110%;
    height: 110%;
}

#idx_works .idx_works_list .works_item a:hover .works_image .bglayer {
    opacity: 1;
}

#idx_works .idx_works_list .works_item .works_cate {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

#idx_works .idx_works_list .works_item .works_cate li {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #999;
    border: 1px solid #999;
    padding: 2px 8px;
    margin: 0 5px 5px 0;
}

#idx_works .idx_works_list .works_item .works_title {
    font-size: 20px;
    font-weight: 600;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

/* ------------------------------------------------------
idx_cover
------------------------------------------------------ */
#idx_cover {
    min-width: 1000px;
}

/* ------------------------------------------------------
idx_info
------------------------------------------------------ */
#idx_other {
    background: var(--white-color);
    padding: 0 185px 0 175px;
}

#idx_other .panel_wrap {
    max-height: 735px;
}

#idx_other .panel_container {
    height: 100%;
}

#idx_other .idx_other_container {
    height: 100%;
    display: flex;
}

#idx_other .idx_other_block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 auto;
}

#idx_other figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_other .idx_other_component {
    width: 100%;
    max-width: 500px;
}

#idx_other .main_title {
    margin-bottom: 21px;
}

#idx_other .idx_txt {
    margin-bottom: 59px;
}

#idx_other .btn_primary {
    text-align: right;
}

#idx_other #idx_flow {
    margin-right: 115px;
}

#idx_other #idx_flow .idx_other_component {
    margin-left: 97px;
}

#idx_other #idx_flow figure {
    width: 31.579vh;
    max-width: 300px;
    height: 31.579vh;
    max-height: 300px;
}

#idx_other #idx_qa {
    justify-content: flex-start;
    margin-right: 205px;
}

#idx_other #idx_qa figure {
    width: 52.632vh;
    max-width: 500px;
    height: 39.474vh;
    max-height: 375px;
    margin-left: 338px;
    margin-bottom: 4px;
}

#idx_other #idx_profile {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-right: 423px;
}

#idx_other #idx_profile .main_title {
    margin-bottom: 15px;
}

#idx_other #idx_profile .idx_subtitle {
    margin-bottom: 29px;
}

#idx_other #idx_profile .idx_other_component {
    padding-top: 85px;
    margin-right: 107px;
}

#idx_other .idx_other_info {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

#idx_other .idx_other_info .idx_title {
    margin-right: 423px;
}

#idx_other .idx_other_info .other_info_wrap {
    position: absolute;
    top: 0;
    right: 0;
}

#idx_other .idx_other_info .idx_other_gallery {
    width: 300px;
    overflow: hidden;
}

#idx_other .idx_other_info .idx_other_gallery .item {
    width: 100%;
    height: 225px;
    margin: 0 0 32px;
}

#idx_other .idx_other_info .idx_other_gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_other .idx_other_info .idx_other_gallery:first-child {
    animation: catcher-slide01 180s -90s linear infinite;
}

#idx_other .idx_other_info .idx_other_gallery:last-child {
    animation: catcher-slide02 180s linear infinite;
}

@keyframes catcher-slide01 {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes catcher-slide02 {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200%);
    }
}

/* ------------------------------------------------------
idx_journal
------------------------------------------------------ */
#idx_journal {
    width: 100vw;
    color: var(--white-color);
    background: rgba(0, 0, 0, 0.6);
}

#idx_journal a {
    color: var(--white-color);
}

#idx_journal .inner {
    width: 94%;
    max-width: 1060px;
}

#idx_journal .main_title {
    margin-bottom: 44px;
}

#idx_journal .idx_journal_list {
    margin-bottom: 78px;
}

#idx_journal .idx_journal_list li {
    border-bottom: 1px solid var(--white-color);
}

#idx_journal .idx_journal_list li:first-child {
    border-top: 1px solid var(--white-color);
}

#idx_journal .idx_journal_list li a {
    display: block;
    padding: 47px 28px 50px;
    transition: all .3s ease;
}

#idx_journal .idx_journal_list .idx_journal_meta {
    display: inline-block;
}

#idx_journal .idx_journal_list .idx_journal_meta .cate_group {
    margin-left: -5px;
}

#idx_journal .idx_journal_list .idx_journal_meta .cate_group span {
    margin: 0 5px 5px 0;
}

#idx_journal .idx_journal_list .idx_journal_meta .date {
    margin-left: 8px;
}

#idx_journal .idx_journal_list .idx_journal_title {
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

#idx_journal .btn_primary {
    text-align: right;
}

#idx_journal .btn_primary i::before {
    background: var(--white-color);
}

/* ------------------------------------------------------
box_contact
------------------------------------------------------ */
.box_contact {
    width: 100vw;
    background: var(--white-color);
    padding: 0 100px;
}

.box_contact .panel_wrap {
    align-items: center;
}

.box_contact .panel_wrap,
.box_contact .panel_container {
    width: 100%;
    min-width: inherit;
}

.box_contact .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
}

.box_contact figure {
    width: 59.158vh;
    height: 78.947vh;
    margin-right: 85px;
}

.box_contact figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box_contact .box_contact_txt {
    line-height: 2.27;
    margin-bottom: 74px;
}

.box_contact .btn_primary {
    text-align: right;
}

/* ------------------------------------------------------
footer
------------------------------------------------------ */
.footer {
    width: 100vw;
    background: var(--main-color);
    color: var(--white-color);
}

.footer .panel_wrap {
    max-height: 810px;
}

.footer .panel_wrap,
.footer .panel_container {
    width: 100%;
    min-width: inherit;
}

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

.footer .footer_connect .inner {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
}

.footer .footer_connect .footer_wrap {
    width: 100%;
    flex: 1;
}

.footer .footer_connect .special_title {
    font-size: 100px;
    letter-spacing: 0;
    margin-bottom: 90px;
}

.footer .footer_connect .f_link {
    display: flex;
    flex-wrap: wrap;
}

.footer .footer_connect .f_link li {
    width: 50%;
    margin-bottom: 53px;
}

.footer .footer_connect .f_link li a {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
}

.footer .footer_connect .f_link li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1)
}

.footer .footer_connect .f_ig {
    font-size: 20px;
    letter-spacing: 0;
    margin-top: 38px;
}

.footer .footer_connect .f_ig i {
    display: inline-block;
    background: url(../images/footer/icon_ig.png) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    position: relative;
    top: 3px;
}

.footer .footer_connect .f_slogan {
    width: 17.13vw;
    max-width: 257px;
    height: 28vw;
    max-height: 420px;
    margin-top: 83px;
}

.footer .footer_connect .f_slogan img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer .footer_address {
    padding: 55px 0 0;
}

.footer .footer_address .inner {
    width: 80%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--white-color);
    padding-top: 64px;
}

.footer .footer_address dl {
    display: flex;
    align-items: center;
    margin-right: 35px;
}

.footer .footer_address dl dt {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-right: 50px;
}

.footer .footer_address dl dd {
    letter-spacing: 0.1em;
    line-height: 1.67;
}

.footer address {
    font-size: 13px;
    font-style: normal;
    text-align: center;
}

.mv_cover {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

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

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    z-index: 99999;
    opacity: 1;
    pointer-events: none;
}

#loading .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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