@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;
    line-height: 2.625;
    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;
    --blue-color: #005bab;
    --jp-font: 'Noto Sans JP', sans-serif;
    --en-font: "Inter", sans-serif;
    --ShipporiMincho-font: "Shippori Mincho", 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: 16px;
    font-weight: 400;
    color: var(--main-color);
}

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

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

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

.h3title {
    font-family: var(--en-font);
    font-size: 120px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--blue-color);
}

.btn_primary {
    width: 100%;
    max-width: 240px;
    height: 60px;
}

.btn_primary a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-radius: 30px;
    border: 1px solid var(--main-color);
    transition: all .35s ease;
    position: relative;
}

.btn_primary a span {
    width: 21px;
    height: 11px;
    margin-left: 12px;
    position: relative;
}

.btn_primary a svg {
    width: 100%;
    height: 100%;
    transition: all .2s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.btn_primary a svg .cls-1 {
    fill: var(--main-color);
    transition: all .35s ease;
}

.btn_primary a svg .cls-2 {
    fill: none;
    stroke: var(--main-color);
    stroke-miterlimit: 10;
    transition: all .35s ease;
}

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

.btn_primary a.wht svg .cls-1 {
    fill: var(--white-color);
}

.btn_primary a.wht svg .cls-2 {
    stroke: var(--white-color);
}

.effect {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.effect.is-active {
    transform: translateY(0px);
    opacity: 1;
}

.bg_texture {
    background-image: url(../images/common/days_texture.png);
    background-repeat: repeat;
}

/* ------------------------------------------------------
Header
------------------------------------------------------ */
#header {
    width: 100%;
    padding: 45px 0 0 45px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
}

#toggle-menu {
    width: 100%;
    max-width: 140px;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
    border-radius: 28px;
    background: var(--blue-color);
    padding: 5px 5px 5px 17px;
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 99999;
    cursor: pointer;
}

#toggle-menu .txt {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0 0;
    transition: all .3s ease;
}

#toggle-menu .txt .close_txt {
    display: none;
}

#toggle-menu .hamburger {
    width: 47px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--white-color);
}

#toggle-menu .hamburger i {
    display: block;
    background-image: url(../images/header/icon_ham01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 32px;
    height: 25px;
    transition: all .3s ease;
}

#overlay {
    width: 100%;
    height: 100%;
    padding: 25px 25px;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
}

#overlay.overlay-show {
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: all .3s ease;
}

#overlay .overlay_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    background: var(--white-color);
}

#overlay .overlay_wrap .overlay_image {
    width: 50%;
    border-right: 1px solid var(--main-color);
    padding: 8.42vh 8.42vh;
}

#overlay .overlay_wrap .overlay_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#overlay .overlay_wrap .overlay_menu {
    width: 50%;
    height: 100%;
    padding: 8.42vh 8.42vh;
}

#overlay .overlay_wrap .overlay_frame {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: auto;
}

#overlay .overlay_wrap .overlay_menu .menu {
    padding-top: 4.74vh;
    margin-bottom: 80px;
}

#overlay .overlay_wrap .overlay_menu .menu > li {
    width: 100%;
}

#overlay .overlay_wrap .overlay_menu .menu > li > a,
#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_title {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #999999;
    border-bottom: 1px solid var(--main-color);
    padding: 0 8px 0;
    position: relative;
}

#overlay .overlay_wrap .overlay_menu .menu > li > a::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

#overlay .overlay_wrap .overlay_menu .menu > li:first-child > a,
#overlay .overlay_wrap .overlay_menu .menu > li:nth-child(4) > a {
    border-top: 1px solid var(--main-color);
}

#overlay .overlay_wrap .overlay_menu .menu li a span.en,
#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_title span.en {
    width: 100%;
    max-width: 200px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--main-color);
}

#overlay .overlay_wrap .overlay_menu .menu li a span.txt,
#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_title span.txt {
    display: inline-block;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_menu {
    padding: 20px 14px 19px;
}

#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_menu ul {
    width: 100%;
    max-width: 495px;
    display: flex;
    flex-wrap: wrap;
}

#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_menu ul li {
    width: 48%;
    padding-left: 9px;
    margin-bottom: 6px;
    margin-right: 10px;
    position: relative;
}

#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_menu ul li:nth-child(even) {
    margin-right: 0;
}

#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_menu ul li::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--main-color);
    top: 12px;
    left: 0;
}

#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_menu a {
    font-size: 13px;
    letter-spacing: 0.1em;
    border-bottom: 0;
    position: relative;
}

#overlay .overlay_wrap .overlay_menu .menu li.sub .sub_menu a::before {
    position: absolute;
    content: '';
    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 .overlay_logo {
    line-height: 1;
    text-align: center;
}

#toggle-menu.is-active {
    background: #4d4d4d;
}

#toggle-menu.is-active .txt .menu_txt {
    display: none;
}

#toggle-menu.is-active .txt .close_txt {
    display: block;
}

#toggle-menu.is-active .hamburger i {
    background-image: url(../images/header/icon_ham03.png);
}

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

#idx_mainvisual::before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#idx_mainvisual h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 46px;
}

#idx_mainvisual h2 span.en {
    font-size: 130px;
    font-weight: 600;
    letter-spacing: 0.004em;
    margin-right: 24px;
}

#idx_mainvisual h2 .char {
    display: inline-block;
    opacity: 0;
    transform: scale(1.3) translateX(8px);
    will-change: transform, opacity;
    transition: all .5s cubic-bezier(.15, 0, .25, 1);
    transition-delay: .8s;
}

#idx_mainvisual .mv_title_image {
    /*    width: 59.07vw;*/
    width: 122.857vh;
    max-width: 860px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(50px);
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
}

#idx_mainvisual .mv_txt {
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(50px);
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
}

#idx_mainvisual .btn-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0;
    right: 74px;
}

#idx_mainvisual .btn-scroll .txt {
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 11px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

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

#idx_mainvisual .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% {
        top: -100%;
    }

    80% {
        top: 100%;
    }

    100% {
        top: 100%;
    }
}

#idx_mainvisual.is-active .mv_title_image,
#idx_mainvisual.is-active .mv_txt {
    opacity: 1;
    transform: translateY(0);
}

#idx_mainvisual.is-active .mv_title_image {
    transition-delay: 1.7s;
}

#idx_mainvisual.is-active .mv_txt {
    transition-delay: 2s;
}

/* ------------------------------------------------------
idx_intro
------------------------------------------------------ */
#idx_intro {
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
}

#idx_intro .idx_intro_image {
    width: 50%;
    height: 100%;
}

#idx_intro .idx_intro_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_intro .idx_intro_contents {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 6.32vh;
    padding-right: 6%;
    position: relative;
}

#idx_intro .idx_intro_contents .intro_icon {
    height: 100%;
    padding: 10px 0 10px 10px;
    position: relative;
}

#idx_intro .idx_intro_contents .intro_icon::after {
    position: absolute;
    content: '';
    background: url(../images/top/idx_intro_txt.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 41.05vh;
    max-width: 390px;
    height: 8.95vh;
    max-height: 85px;
    top: 50%;
    left: 28.32vh;
    transform: translateY(-50%);
}

#idx_intro .idx_intro_contents .intro_icon svg {
    width: 100%;
    height: 100%;
}

#idx_intro .idx_intro_contents .intro_icon svg .cls-1 {
    fill: #e6e6e6;
}

#idx_intro .idx_intro_contents .idx_intro_frame {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 9.68vh 0;
    position: relative;
    z-index: 1;
    flex: 1;
}

#idx_intro .idx_intro_contents .idx_intro_title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.9375;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

#idx_intro .idx_intro_contents .idx_intro_txt {
    font-weight: 500;
    text-align: justify;
}

#idx_intro .idx_intro_contents .idx_intro_txt p {
    line-height: 2;
}

/* ------------------------------------------------------
idx_about
------------------------------------------------------ */
#idx_about {
    color: var(--white-color);
    background-image: url(../images/top/idx_about_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding: 155px 0 300px;
    overflow: hidden;
}

#idx_about .inner {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

#idx_about .idx_about_frame {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

#idx_about .idx_about_frame::after {
    position: absolute;
    content: '印刷';
    font-family: var(--ShipporiMincho-font);
    font-size: 400px;
    line-height: 1.1;
    width: 100%;
    max-width: 400px;
    top: 40px;
    right: -121px;
    opacity: .1;
    z-index: -1;
}

#idx_about .h3title {
    color: var(--white-color);
    margin-bottom: 43px;
}

#idx_about h4 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.72;
    text-align: justify;
    margin-bottom: 38px;
}

#idx_about .idx_about_txt {
    width: 100%;
    max-width: 500px;
    text-align: justify;
    margin-bottom: 62px;
}

#idx_about .idx_about_gallery {
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

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

#idx_about .idx_about_gallery .about_img01 {
    width: 35.56vw;
    max-width: 480px;
    height: 45.93vw;
    max-height: 620px;
}

#idx_about .idx_about_gallery .about_img02 {
    width: 29.63vw;
    max-width: 400px;
    height: 19.26vw;
    max-height: 260px;
    margin: -75px 0 0 -150px;
}

/* ------------------------------------------------------
idx_printing
------------------------------------------------------ */
#idx_printing {
    position: relative;
    overflow: hidden;
}

#idx_printing .idx_printing_virtual {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 55px 0;
}

#idx_printing .idx_printing_headline {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}

#idx_printing .idx_printing_headline .idx_printing_title {
    font-size: 10vw;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.22;
    color: var(--blue-color);
    margin-bottom: 0;
    will-change: transform;
    backface-visibility: hidden;
}

#idx_printing .idx_printing_gallery {
    width: 62.61vw;
    max-width: 720px;
    height: 41.74vw;
    max-height: 480px;
    margin: 0 auto;
    position: relative;
    z-index: -1;
}

#idx_printing .printing_thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(50%);
    will-change: clip-path;
}

#idx_printing .thumb_image {
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    transform-origin: center center;
    will-change: transform;
}

#idx_printing .thumb_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------------------
idx_service
------------------------------------------------------ */
#idx_service {
    background-color: rgba(237, 243, 249, 1);
    padding: 124px 0 0;
    overflow: hidden;
}

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

#idx_service .idx_service_pin {
    padding-left: 60px;
    position: relative;
}

#idx_service .idx_service_list {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#idx_service .service_card {
    width: 86.67vw;
    max-width: 1300px;
    height: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    will-change: transform;
    overflow: hidden;
}

#idx_service .service_card .service_card_frame {
    width: 100%;
    height: 700px;
    max-height: 700px;
    display: flex;
    align-items: center;
    background: var(--white-color);
    border-radius: 30px;
    border: 2px solid var(--blue-color);
    padding: 100px 100px 80px;
    position: relative;
}

#idx_service .service_card .tag_no {
    display: flex;
    align-items: center;
    font-size: 100px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1;
    color: var(--blue-color);
    margin: 0 0;
    position: absolute;
    top: 22px;
    left: 45px;
}

#idx_service .service_card .tag_no span {
    font-size: 20px;
    letter-spacing: -0.025em;
    -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-right: 10px;
}

#idx_service .service_card .tag_name {
    width: 568px;
    max-width: 568px;
    margin: 0 0;
    position: absolute;
    bottom: -16px;
    right: 8px;
}

#idx_service .service_card .tag_name img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#idx_service .service_card .card_wrap {
    display: flex;
    justify-content: space-between;
    gap: 45px;
}

#idx_service .service_card .card_image {
    width: 100%;
    max-width: 500px;
    height: 500px;
    max-height: 500px;
    border-radius: 50%;
    overflow: hidden;
}

#idx_service .service_card .card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_service .service_card .card_component {
    width: 100%;
    height: 100%;
    max-width: 550px;
}

#idx_service .service_card .card_component .card_title {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}

#idx_service .service_card .card_component .card_features {
    width: 100%;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 10px;
    padding: 15px 20px 15px 34px;
    margin-bottom: 14px;
}

#idx_service .service_card .card_component .card_features ul {
    display: flex;
    flex-wrap: wrap;
}

#idx_service .service_card .card_component .card_features ul li {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2;
    padding-left: 14px;
    margin-right: 30px;
    position: relative;
}

#idx_service .service_card .card_component .card_features ul li::before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    top: 18px;
    left: 0;
}

#idx_service .service_card .card_component .card_txt {
    text-align: justify;
    margin-bottom: 32px;
}

#idx_service .service_card .card_component .card_txt p {
    line-height: 2.2;
}

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

#idx_service .service_card.card01 {
    z-index: 1;
}

#idx_service .service_card.card02 {
    z-index: 2;
}

#idx_service .service_card.card03 {
    z-index: 3;
}

#idx_service .service_card.card04 {
    z-index: 4;
}

/* ------------------------------------------------------
idx_equipment. idx_company, idx_efforts
------------------------------------------------------ */
.catcher_layout {
    overflow: hidden;
}

.catcher_cover {
    width: 100%;
    height: 36vw;
}

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

.catcher_layout .catcher_layer {
    min-height: 460px;
    background-repeat: repeat;
    padding: 59px 0;
}

.catcher_layout .h3title {
    margin-bottom: 28px;
}

.catcher_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.catcher_txt {
    width: 100%;
    max-width: 850px;
    text-align: justify;
    margin-right: 30px;
}

.catcher_layout .btn_primary {
    margin-bottom: 14px;
}

#idx_equipment .catcher_layer {
    background: url(../images/top/idx_equipment_paper.jpg);
}

#idx_company .catcher_layer {
    background: url(../images/top/idx_company_paper.jpg);
}

#idx_efforts .catcher_layer {
    background: url(../images/top/idx_efforts_paper.jpg);
}

/* ------------------------------------------------------
idx_recruit
------------------------------------------------------ */
#idx_recruit {
    color: var(--white-color);
    background: var(--blue-color);
    padding: 0 0 139px;
    position: relative;
}

#idx_recruit::after {
    position: absolute;
    content: '';
    background-image: url(../images/top/idx_recruit_slogan.png);
    background-repeat: repeat-x;
    background-size: 2430px 100%;
    width: 100%;
    height: 148px;
    bottom: 85px;
    left: 0;
    transition: all 1s linear;
    animation: idx_recruit_slogan 40s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes idx_recruit_slogan {
    0% {
        background-position: 2430px 0;
    }

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

@keyframes idx_recruit_slogan02 {
    0% {
        background-position: 821px 0;
    }

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

#idx_recruit .idx_recruit_headline {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 2;
}

#idx_recruit .idx_recruit_headline .inner {
    max-width: 1000px;
}

#idx_recruit .idx_recruit_headline .inner::after {
    position: absolute;
    content: '挑戦';
    font-family: var(--ShipporiMincho-font);
    font-size: 400px;
    line-height: 1.1;
    width: 100%;
    max-width: 400px;
    top: -116px;
    right: 0;
    opacity: .1;
    z-index: -1;
}

#idx_recruit .h3title {
    color: var(--white-color);
    text-align: center;
    margin-bottom: 42px;
}

#idx_recruit .idx_recruit_txt {
    width: 100%;
    max-width: 800px;
    font-size: 24px;
    font-weight: 700;
    line-height: 2.42;
    text-align: justify;
    margin: 0 auto 78px;
}

#idx_recruit .btn_primary {
    margin: 0 auto;
}

#idx_recruit .idx_recruit_gallery {
    width: 100%;
    max-width: 1650px;
    padding-bottom: 50vh;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

#idx_recruit .idx_recruit_gallery li:nth-child(odd) {
    margin-left: auto;
}

#idx_recruit .idx_recruit_gallery li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#idx_recruit .idx_recruit_gallery li.idx_recruit_img01 {
    width: 20vw;
    max-width: 300px;
    height: 13.33vw;
    max-height: 200px;
    margin-right: 130px;
}

#idx_recruit .idx_recruit_gallery li.idx_recruit_img02 {
    width: 26.67vw;
    max-width: 400px;
    height: 17.33vw;
    max-height: 260px;
    margin-left: 180px;
    margin-top: -135px;
}

#idx_recruit .idx_recruit_gallery li.idx_recruit_img03 {
    width: 21.33vw;
    max-width: 320px;
    height: 28.8vw;
    max-height: 432px;
    margin-right: 230px;
    margin-top: -3px;
}

#idx_recruit .idx_recruit_gallery li.idx_recruit_img04 {
    width: 32vw;
    max-width: 480px;
    height: 20.8vw;
    max-height: 312px;
    margin-top: -222px;
}

#idx_recruit .idx_recruit_gallery li.idx_recruit_img05 {
    width: 26.67vw;
    max-width: 400px;
    height: 17.33vw;
    max-height: 260px;
    margin-top: 55px;
}

#idx_recruit .idx_recruit_gallery li.idx_recruit_img06 {
    width: 13.87vw;
    max-width: 208px;
    height: 18.4vw;
    max-height: 276px;
    margin: -374px auto 0;
    position: relative;
    left: -99px;
}

/* ------------------------------------------------------
idx_news
------------------------------------------------------ */
#idx_news {
    padding: 112px 0 160px;
}

#idx_news .h3title {
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 21px;
    margin-bottom: 51px;
}

#idx_news .idx_news_wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

#idx_news .idx_news_headline {
    width: 100%;
    max-width: 240px;
}

#idx_news .idx_news_headline h4 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.65;
    margin-bottom: 76px;
}

#idx_news .idx_news_headline h4 span {
    color: var(--blue-color);
}

#idx_news .idx_news_list {
    width: 100%;
    max-width: 900px;
    margin-top: 5px;
    flex: 1;
}

#idx_news .idx_news_list dl {
    display: flex;
    justify-content: space-between;
    background: #edf3f9;
    border-radius: 10px;
    padding: 36px 27px 35px;
    margin-bottom: 20px;
    cursor: pointer;
}

#idx_news .idx_news_list dl:last-child {
    margin-bottom: 0;
}

#idx_news .idx_news_list dl dt {
    width: 100%;
    max-width: 230px;
}

#idx_news .idx_news_list dl dt .date {
    width: 90px;
    display: inline-block;
    font-size: 14px;
    color: #808080;
    flex-shrink: 0;
}

#idx_news .idx_news_list dl dt .cate_group {
    font-size: 12px;
    font-weight: 500;
    color: var(--blue-color);
}

#idx_news .idx_news_list dl dt .cate_group span {
    min-width: 124px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--blue-color);
    border-radius: 13px;
    padding: 0 5px;
}

#idx_news .idx_news_list dl dd {
    width: 100%;
    max-width: 600px;
}

#idx_news .idx_news_list dl dd a {
    transition: all .3s ease;
}

#idx_news .idx_news_list dl dd a > span {
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
}

#idx_news .idx_news_list dl dd a > span span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

#idx_news .idx_news_list dl dd a > span::before {
    content: '';
    position: absolute;
    width: 101%;
    transform: scaleX(0);
    height: 1px;
    bottom: -1px;
    left: 0;
    background-color: var(--blue-color);
    transform-origin: bottom right;
    transition: transform .4s cubic-bezier(.86, 0, .07, 1)
}

#idx_news .idx_news_list dl:hover dd a {
    color: var(--blue-color);
}

#idx_news .idx_news_list dl:hover dd a span::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

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

.box_contact {
    color: var(--white-color);
    text-align: center;
    padding: 123px 0 91px;
    position: relative;
}

.box_contact::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
}

.box_contact .h3title {
    color: var(--white-color);
    margin-bottom: 13px;
}

.box_contact .box_contact_txt {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 46px;
}

.box_contact .btn_primary {
    margin: 0 auto 13px;
}

.box_contact .box_contact_tel {
    font-weight: 500;
}

.box_contact .box_contact_tel span.en {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0;
    margin-right: 7px;
}

.box_contact .box_contact_tel a {
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--white-color);
}

.footer_contents {
    padding: 73px 0 54px;
}

.footer_contents .footer_info {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 53px;
}

.footer_contents .footer_headline {
    flex: 1;
}

.footer_contents .footer_headline .f_logo {
    padding-top: 5px;
    margin-bottom: 0;
}

.footer_contents .footer_headline .f_slogan {
    font-size: 22px;
    font-weight: 700;
    color: var(--blue-color);
}

.footer_contents .footer_link {
    display: flex;
}

.footer_contents .footer_link .f_nav:last-child {
    margin-left: 85px;
}

.footer_contents .footer_link .f_nav li {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 19px;
}

.footer_contents .footer_link .f_nav li:last-child {
    margin-bottom: 0;
}

.footer_contents .footer_link .f_nav li a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
}

.footer_contents .footer_link .f_nav li a::before {
    position: absolute;
    content: '';
    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_contents .footer_link .f_nav li a:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer_contents .footer_link .f_nav li.sub .sub_menu {
    padding-top: 19px;
    padding-left: 22px;
}

.footer_contents .footer_link .f_nav li.sub .sub_menu li {
    padding-left: 11px;
    position: relative;
}

.footer_contents .footer_link .f_nav li.sub .sub_menu li::before {
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--main-color);
    top: 9px;
    left: 0;
}

.footer_contents .footer_branch .f_branch_title {
    text-align: center;
    margin-bottom: 50px;
}

.footer_contents .footer_branch ul {
    display: flex;
}

.footer_contents .footer_branch ul li {
    width: calc(100% / 3);
    border-right: 1px solid var(--blue-color);
    padding: 0 20px;
}

.footer_contents .footer_branch ul li:first-child {
    border-left: 1px solid var(--blue-color);
}

.footer_contents .footer_branch .branch_frame {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.footer_contents .footer_branch .branch_frame figure {
    margin-bottom: 5px;
}

.footer_contents .footer_branch .branch_frame figure img {
    width: 100%;
}

.footer_contents .footer_branch .f_branch_txt {
    font-size: 15px;
    line-height: 1.67;
    letter-spacing: 0.05em;
}

.footer_contents .footer_branch .f_branch_txt span {
    font-weight: 700;
    color: var(--blue-color);
}

.footer_contents .footer_sns {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    padding: 54px 0 0;
    margin: 0 auto;
}

.footer_contents .footer_sns ul {
    display: flex;
    gap: 44px;
}

.footer_contents .footer_sns ul li a {
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
    transition: all .3s ease;
}

.footer_contents .footer_sns ul li i {
    display: inline-block;
    background: url(../images/footer/icon_ig.png) no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin-right: 14px;
}

.footer_contents .footer_sns .sns_btn {
    width: 100%;
    max-width: 260px;
    height: 52px;
}

.footer_contents .footer_sns .sns_btn a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: var(--white-color);
    text-align: center;
    background: #ff0000;
    border-radius: 26px;
    padding: 0 10px 2px;
    transition: all .3s ease;
}

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

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

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

/* ------------------------------------------------------
loading
------------------------------------------------------ */
#loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

#loading .loading_logo {
    width: 100%;
    max-width: 300px;
    height: 36px;
    position: relative;
}

#loading .loading_logo svg {
    position: absolute;
    top: 0;
    left: 0;
}

#loading .loading_logo .svg01 {
    z-index: 1;
}

#loading .loading_logo .svg01 .cls-1 {
    opacity: .3;
}

#loading .loading_logo .svg01 .cls-2 {
    fill: #fff;
}

#loading .loading_logo .svg02 {
    z-index: 2;
}

#loading .loading_logo .svg02 .svg_effect {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
}

#loading .loading_logo .svg02 .cls-1 {
    fill: #fff;
}

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

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

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