@charset "utf-8";
/*
Theme Name: nojimaKakusei
Author: groworks
Version: 1.0.0
*/

/*---- fonts ----*/
@font-face {
    font-family: 'Makinas Flat';
    src:
        url(assets/fonts/MakinasFlat4.woff2) format('woff2'),
        url(assets/fonts/MakinasFlat4.woff) format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0025-003A, U+FF08-FF0F, U+540D, U+6B73, U+65E5, U+6708, U+5E74, U+6642, U+9593;
}

/*---------- reset ----------*/
html {
    height: 100%;
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-text-size-adjust: 100%;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    height: 100%;
    position: relative;
    letter-spacing: 0.06em;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

header,
main,
article,
section,
nav,
footer {
    display: block;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    font-size: 100%;
}

input,
textarea,
select,
button {
    font-family: inherit;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal;
}

em {
    font-style: normal;
    font-weight: 500;
}

ol,
ul {
    list-style: none;
}

caption {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

input[type="text"],
input[type="submit"],
input[type="email"],
input[type="tel"],
select,
button {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

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

form input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

/*-------------------------------------------------------------
    Page related
-------------------------------------------------------------*/
#wrapper {
    position: relative;
}

#content_wrap {
    position: relative;
}

img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}

.inner {
    max-width: 1200px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.sp_size {
    display: none !important;
}

[href^="tel:"] {
    color: inherit;
    pointer-events: none;
    text-decoration: none !important;
}

::selection {
    background: #4285F4;
    color: #fff;
}

/*-------------------------------------------------------------
    header
-------------------------------------------------------------*/
#header_wrap {
    width: 100%;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform .5s ease;
}

#header_wrap.hide {
    transform: translate3d(0, -100%, 0);
}

#header_area {
    max-width: 100%;
    margin: auto;
    padding: 16px clamp(20px, 3vw, 48px);
}

#header_nav_wrap {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}

#menu-box {
    margin-left: auto;
}

#logo {
    flex-shrink: 0;
}

#menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

#logo a {
    display: block;
    width: clamp(90px, 22vw, 180px);
    max-width: 180px;
}

#logo img {
    display: block;
    width: 100%;
    height: auto;
}

.header_menu_pill {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 370px;
    height: 60px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px) brightness(1.21);
    -webkit-backdrop-filter: blur(10px) brightness(1.21);
    flex-shrink: 0;
}

.header_menu_pill .menu_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    gap: 0;
}

.header_menu_pill .menu_link {
    padding: 0;
    line-height: 1;
}

.menu_item {
    line-height: 1.6;
}

.menu_item_top {
    display: none;
}

.menu_link {
    display: block;
    color: #333 !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.8rem;
    padding: 10px 0;
    transition: opacity .3s ease;
}

.menu_ja {
    display: block;
    white-space: nowrap;
}

.menu_child_list {
    display: none;
}

.menu_child_link {
    color: #333 !important;
    text-decoration: none;
    font-size: 1.4rem;
    transition: opacity .3s ease;
}

.menu_child_link:hover {
    opacity: .7;
}

.header_entry_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 60px;
    padding: 0 18px 0 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, #F57E18 0%, #F5B800 100%);
    color: #fff !important;
    font-size: 1.8rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.06em;
    transition: opacity .3s ease;
}

.header_entry_btn:hover {
    opacity: .85;
}

.header_entry_sep {
    display: block;
    width: 1px;
    height: 18px;
    margin: 0 14px 0 18px;
    background: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
}

.header_entry_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    flex-shrink: 0;
    transform: rotate(-45deg);
}

.header_entry_icon img {
    width: 20px;
    height: 20px;
}

.menu_link:hover {
    opacity: .7;
}

/* home header */
.home #header_area {
    padding: 0;
}

.home #header_nav_wrap {
    padding: 16px clamp(20px, 3vw, 48px);
}

/*-------------------------------------------------------------
    footer
-------------------------------------------------------------*/
#footer_wrap {
    position: relative;
    background: #4285F4;
    color: #fff;
}

#footer_box {
    padding: 70px 0 40px;
}

.footer_main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer_address {
    width: 38%;
}

.footer_logo {
    margin-bottom: 24px;
}

.footer_logo img {
    max-width: 220px;
}

.footer_company_name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer_company_info {
    line-height: 2;
    font-size: 1.4rem;
}

.footer_address a {
    color: #fff !important;
    text-decoration: none;
}

.footer_corp_btn_wrap {
    margin-top: 24px;
}

.footer_corp_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 10px 24px;
    border: 1px solid #fff;
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.4rem;
    transition: opacity .3s ease;
}

.footer_corp_btn:hover {
    opacity: .7;
}

.footer_corp_btn img {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.footer_menu_wrap {
    width: 55%;
}

.footer_menu_row {
    display: flex;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 18px;
}

.footer_menu_row:last-child {
    margin-bottom: 0;
}

.footer_menu_parent {
    flex-shrink: 0;
    width: 7em;
}

.footer_menu_parent_link {
    font-weight: 600;
}

.f_child_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex: 1;
}

.f_child_item {
    display: flex;
    align-items: center;
}

.f_child_item + .f_child_item::before {
    content: "|";
    margin: 0 14px;
    opacity: 0.5;
}

.footer_menu_link,
.f_child_link,
.f_sub_link {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.6rem;
    transition: opacity .3s ease;
}

.footer_menu_link:hover,
.f_child_link:hover,
.f_sub_link:hover {
    opacity: .7;
}

.f_submenu {
    padding: 18px 0 24px;
}

.f_submenu_in {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.f_sub_list {
    display: flex;
    gap: 20px;
}

.copy_txt {
    font-size: 1.2rem;
}

#return a {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #6199F6;
    border-radius: 50%;
    font-size: 0;
    z-index: 10;
    transition: opacity 0.4s ease;
}

#return a:hover {
    opacity: 0.65;
}

#return a::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 12px;
    height: 12px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(2px) rotate(-45deg);
}

/*-------------------------------------------------------------
    common utility
-------------------------------------------------------------*/
.center {
    text-align: center;
}

/*-------------------------------------------------------------
    entry section
-------------------------------------------------------------*/
.index_entry {
    position: relative;
    padding: 90px 0 100px;
    background: #4285F4;
    overflow: hidden;
}

.index_entry_ticker {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
}

.index_entry_ticker_inner {
    display: flex;
    width: max-content;
    animation: index_entry_ticker 24s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.index_entry_ticker_text {
    display: block;
    flex-shrink: 0;
    padding-right: 0.5em;
    font-size: clamp(6rem, 14vw, 16rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.18);
    white-space: nowrap;
}

@keyframes index_entry_ticker {
    0% {
        transform: translateX(0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .index_entry_ticker_inner {
        animation: none;
    }
}

.index_entry .inner {
    max-width: 1295px;
    margin-bottom: 100px;
}

.index_entry_list {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.index_entry_card {
    position: relative;
    display: block;
    width: 810px;
    height: 330px;
    border-radius: 24px;
    text-decoration: none;
    overflow: hidden;
    transition: opacity .3s ease;
}

.index_entry_card:hover {
    opacity: .85;
}

.index_entry_card_orange {
    width: 810px;
    background: linear-gradient(90deg, #F69210 0%, #F5C918 100%);
    color: #fff !important;
}

.index_entry_card_white {
    width: 445px;
    overflow: visible;
    background: #f5f2ea;
    color: #333 !important;
}

.index_entry_card_white .index_entry_card_in {
    padding-right: 24px;
}

.index_entry_card_in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
    padding: 0 50px;
}

.index_entry_card_body {
    flex: 1;
    min-width: 0;
}

.index_entry_card_en {
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
}

.index_entry_card_orange .index_entry_card_en {
    font-size: 8.0rem;
}

.index_entry_card_ja {
    font-size: 2.0rem;
    font-weight: 600;
}

.index_entry_arrow {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    color: #F69410;
}

.index_entry_arrow::before,
.index_entry_arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 58%;
}

.index_entry_arrow::before {
    width: 25px;
    height: 2px;
    background: currentColor;
    transform: translate(calc(-50% - 7px), -50%);
}

.index_entry_arrow::after {
    width: 17px;
    height: 17px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translate(calc(-50% + -6px), -50%) rotate(45deg);
}

.index_entry_illust {
    position: absolute;
    right: 35px;
    bottom: -60px;
    width: 80px;
    z-index: 2;
    pointer-events: none;
    transform: translateY(18%);
}

.index_entry_illust img {
    width: 100%;
    height: auto;
    display: block;
}

/*-------------------------------------------------------------
    table
-------------------------------------------------------------*/
table {
    width: 100%;
    border-top: 1px solid #9b9b9b;
}

th,
td {
    padding: 30px 0;
    border-bottom: 1px solid #9b9b9b;
    text-align: left;
    vertical-align: top;
}

th {
    width: 28%;
    padding: 30px;
    font-weight: 600;
}

td {
    font-weight: 400;
}

/*-------------------------------------------------------------
    file link
-------------------------------------------------------------*/
.file_link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    text-decoration: underline;
}

.file_link::after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.file_link[href$=".pdf"]::after {
    background-image: url(img/icon_pdf.svg);
}

.file_link[href$=".xls"]::after,
.file_link[href$=".xlsx"]::after {
    background-image: url(img/icon_excel.svg);
}

.file_link[href$=".doc"]::after,
.file_link[href$=".docx"]::after {
    background-image: url(img/icon_word.svg);
}

.blank_link::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 0.35em;
    background: url(img/icon_popup.svg) no-repeat center / contain;
    flex-shrink: 0;
}

/*-------------------------------------------------------------
    responsive
-------------------------------------------------------------*/

@media screen and (max-width: 1319px) {
    .index_entry {
        padding: 70px 0 80px;
    }

    .index_entry .inner {
        margin-bottom: 70px;
    }

    .index_entry_list {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 16px;
    }

    .index_entry_card,
    .index_entry_card_orange,
    .index_entry_card_white {
        width: auto;
        max-width: none;
        height: 240px;
        min-height: 0;
        border-radius: 20px;
    }

    .index_entry_card_orange {
        flex: 810 1 0;
        min-width: 0;
    }

    .index_entry_card_white {
        flex: 445 1 0;
        min-width: 0;
    }

    .index_entry_card_in {
        padding: 0 28px;
        min-height: 0;
        height: 100%;
        gap: 16px;
    }

    .index_entry_card_en {
        font-size: 2.4rem;
        margin-bottom: 8px;
    }

    .index_entry_card_orange .index_entry_card_en {
        font-size: 5.0rem;
    }

    .index_entry_card_ja {
        font-size: 1.6rem;
    }

    .index_entry_arrow {
        width: 64px;
        height: 64px;
    }

    .index_entry_arrow::before {
        width: 18px;
    }

    .index_entry_arrow::after {
        width: 12px;
        height: 12px;
    }

    .index_entry_illust {
        right: 16px;
        bottom: -32px;
        width: 56px;
    }
}


@media screen and (min-width: 767px) and (max-width: 1366px) {
    #header_area {
        padding: 12px 20px;
    }

    .home #header_area {
        padding: 0;
    }

    .home #header_nav_wrap {
        padding: 12px 20px;
    }

    #header_nav_wrap {
        gap: 10px;
        min-width: 0;
    }

    #logo a {
        width: clamp(72px, 10vw, 115px);
        max-width: 115px;
    }

    #menu-box {
        margin-left: auto;
        min-width: 0;
        flex: 1 1 auto;
    }

    #menu {
        gap: 10px;
        min-width: 0;
        justify-content: flex-end;
    }

    .header_menu_pill {
        width: auto;
        min-width: 0;
        flex: 1 1 auto;
        max-width: 280px;
        height: 52px;
    }

    .header_menu_pill .menu_list {
        padding: 0 14px;
        gap: 4px;
        justify-content: space-between;
    }

    .menu_link {
        font-size: 1.4rem;
        padding: 6px 0;
    }

    .header_entry {
        flex-shrink: 0;
    }

    .header_entry_btn {
        min-width: 0;
        height: 52px;
        padding: 0 14px 0 18px;
        font-size: 1.4rem;
    }

    .header_entry_sep {
        height: 16px;
        margin: 0 10px 0 12px;
    }

    .header_entry_icon {
        width: 16px;
    }

    .header_entry_icon img {
        width: 16px;
        height: 16px;
    }
}



@media screen and (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }

    #header_wrap {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: transform .5s ease, background .3s ease, backdrop-filter .3s ease, -webkit-backdrop-filter .3s ease;
        will-change: transform;
    }

    #header_wrap.smallhead {
        background: rgba(255, 255, 255, 0);
        backdrop-filter: blur(10px) brightness(1.21);
        -webkit-backdrop-filter: blur(10px) brightness(1.21);
    }

    #header_wrap.sp_menu_on {
        background: #fff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transform: translate3d(0, 0, 0);
    }

    #header_wrap.sp_menu_on #header_area {
        background: #fff;
    }

    .home #header_area {
        padding: 0;
    }

    .home #header_nav_wrap {
        padding: 10px 20px;
    }

    #header_area {
        padding: 10px 10px 10px 20px;
    }

    #header_nav_wrap {
        gap: 0;
    }

    .menu_item_top {
        display: list-item;
    }

    #menu-box {
        display: none;
        position: fixed;
        top: 69px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 101;
        margin-left: 0;
        background: #fff;
        overflow: auto;
    }

    #menu {
        display: block;
    }

    .header_menu_pill {
        width: auto;
        height: auto;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header_menu_pill .menu_list {
        display: block;
        width: auto;
        padding: 12px 20px;
        gap: 0;
    }

    .header_menu_pill .menu_link {
        padding: 10px 0;
        line-height: 1.4;
    }

    .menu_child_list {
        display: block;
        padding: 0 0 4px 12px;
    }

    .menu_child_link {
        display: block;
        padding: 6px 0;
        line-height: 1.4;
    }

    .header_entry {
        padding: 20px;
        text-align: center;
    }

    .header_entry_btn {
        min-width: 250px;
    }

    #toggle {
        display: block !important;
        margin-left: auto;
    }

    #toggle a {
        display: block;
        width: 50px;
        height: 50px;
        position: relative;
    }

    #toggle a span,
    #toggle a::before,
    #toggle a::after {
        content: "";
        position: absolute;
        left: 10px;
        right: 10px;
        height: 2px;
        background: #333;
        transition: all .3s ease;
    }

    #toggle a::before {
        top: 15px;
    }

    #toggle a span {
        top: 24px;
        font-size: 0;
    }

    #toggle a::after {
        top: 33px;
    }

    #toggle a.open span {
        opacity: 0;
    }

    #toggle a.open::before {
        top: 24px;
        transform: rotate(45deg);
    }

    #toggle a.open::after {
        top: 24px;
        transform: rotate(-45deg);
    }

    .menu_list {
        display: block;
        padding: 12px 20px;
    }

    .menu_item {
        border-bottom: 1px solid #ddd;
        line-height: 1.4;
    }

    .menu_link {
        padding: 10px 0;
        font-size: 1.6rem;
        line-height: 1.4;
    }

    #wrapper.fixed {
        position: fixed;
        width: 100%;
    }

    #header_wrap.hide {
        transform: translate3d(0, -100%, 0);
    }

    body > #menu-box {
        z-index: 101;
    }

    #menu-box a {
        pointer-events: auto;
    }

    #logo a {
        width: clamp(85px, calc(22vw - 5px), 175px);
        max-width: 175px;
    }

    #logo img {
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
    }

    img {
        width: auto;
        height: auto !important;
        max-width: 100%;
    }

    .pc_size {
        display: none !important;
    }

    .sp_size {
        display: block !important;
    }

    [href^="tel:"] {
        pointer-events: all;
        text-decoration: underline;
    }

    .inner {
        width: calc(100% - 40px);
    }

    .footer_main,
    .f_submenu {
        display: block;
    }

    .footer_address,
    .footer_menu_wrap {
        width: 100%;
        margin-bottom: 50px;
    }

    .footer_address {
        text-align: center;
    }

    .footer_logo img {
        margin: 0 auto;
    }

    .footer_corp_btn_wrap {
        text-align: center;
    }

    .footer_menu_row {
        display: block;
        margin-bottom: 24px;
    }

    .footer_menu_parent {
        width: auto;
        margin-bottom: 10px;
    }

    .f_child_list {
        display: block;
    }

    .f_child_item {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .f_child_item + .f_child_item::before {
        content: none;
    }

    .f_child_link {
        display: block;
        padding: 12px 0;
    }

    .f_submenu_in {
        display: block;
        text-align: center;
    }

    .index_entry {
        padding: 50px 0 60px;
    }

    .index_entry .inner {
        margin-bottom: 50px;
    }

    .index_entry_list {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .index_entry_card,
    .index_entry_card_orange,
    .index_entry_card_white {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 160px;
        border-radius: 16px;
    }

    .index_entry_card_in {
        padding: 20px 20px;
        min-height: 160px;
    }

    .index_entry_card_en {
        font-size: 2.4rem;
    }

    .index_entry_card_orange .index_entry_card_en {
        font-size: 3.8rem;
    }

    .index_entry_card_ja {
        font-size: 1.6rem;
    }

    .index_entry_arrow {
        width: 45px;
        height: 45px;
    }

    .index_entry_arrow::before {
        width: 16px;
        transform: translate(calc(-50% - 5px), -50%);
    }

    .index_entry_arrow::after {
        width: 11px;
        height: 11px;
        transform: translate(calc(-50% + -4px), -50%) rotate(45deg);
    }

    .index_entry_illust {
        right: 16px;
        bottom: -30px;
        width: 52px;
        transform: translateY(10%);
    }

    .index_entry_ticker_text {
        font-size: clamp(4rem, 18vw, 8rem);
    }

    .index_entry::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -2px;
        height: 2px;
        background: #4285F4;
        z-index: 2;
    }

    #footer_wrap {
        margin-top: -1px;
    }

    th,
    td {
        padding: 18px 0;
        font-size: 1.4rem;
    }

    th {
        width: 32%;
        padding-right: 16px;
    }
}
