/*
 Theme Name:   arkhe-child
 Template:     arkhe
*/

/* @import url('./style-archive-blog.css'); */

/***************
*     フォント    *
****************/
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;900');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@1,800');
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;700');

/* @import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@1,800&family=Onest:wght@700&family=Zen+Kaku+Gothic+New:wght@500,900&display=swap'); */
/*  */
:root {
    --ark-padding--container: 0px;
    --page-padding: 50px;
    --bg-gray: #F0F0F0;
    --border-gray: #CBCBCB;
    --text-black: #111111;

    --black: #111;
    --white: #fff;
    --green: #4A8724;
    --hovergreen: #30690E;
    --bggray: #f0f0f0;
    --linegray: #cbcbcb;
}

@media screen and (min-width: 1240px) {
    :root {
        --page-padding: calc((100vw - 1140px) / 2)
    }
}

/* 変数上書きはbodyに対して行う */
body {
    --ark-font_family: 'Zen Kaku Gothic New';
    font-family: var(--ark-font_family);
    font-weight: 900;
    word-wrap: break-word
}

/***************
*     全ページ共通要素    *
****************/

.curtain {
    content: '';
    width: calc(100% + 60px);
    height: calc(100% + 20px);
    position: absolute;
    top: -10px;
    left: -30px;
    background: linear-gradient(120deg, #53942a, #4a8724 50%);
    border-radius: 2px;
    z-index: 20;
    transform-origin: right;
}

.curtain-hero {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 10;
    background: var(--white);
    transform-origin: right;
    animation: curtainSlide 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.6s;
}

.curtain.text2 {
    animation: curtainSlide 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.6s;
}

.curtain.text1 {
    animation: curtainSlide 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.8s;
}

.curtain.hero-logo {
    animation: curtainSlide 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 2.1s;
}

.curtain.displayed {
    animation: curtainSlide 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.45s;
}

.curtain-parent {
    opacity: 0;
}

.curtain-parent.hero_text2 {
    animation: titleSlide 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.9s;
}

.curtain-parent.hero_text1 {
    animation: titleSlide 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1s;
}

.curtain-parent.hero_logo_wrapper {
    animation: titleSlide 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.2s;
}

.curtain-parent.displayed {
    animation: titleSlide 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes curtainSlide {
    0% {
        transform: scaleX(100%);
    }

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

@keyframes titleSlide {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

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

.fadeup {
    transform: translateY(30px);
    opacity: 0;
}

.fadeup.is-animated {
    animation: fadeup 1.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

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


.inline-text {
    display: inline-block;
}

.sp-only {
    display: none;
}

@media screen and (max-width: 991px) {
    .sp-only {
        display: inline-block;
    }
}

.header a,
.footer a {
    text-decoration: none;
}

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

.green-text {
    color: var(--green);
}

.bread-wrap {
    padding: 30px var(--page-padding);
}

.p-breadcrumb__text {
    font-weight: 500;
    font-size: 15px;
}

.p-breadcrumb__text.green-text {
    font-weight: 900;
    font-size: 15px;
}

.static-page-padding {
    padding: 100px var(--page-padding) 80px;
}

/*
* ヘッダー
*/
#header.header {
    background: transparent;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
    position: fixed;
    z-index: 100;
}

.header * {
    transition: .1s;
}

.header_logo.--black {
    display: none;
}

.header--black .header_logo,
html[data-drawer="opened"] .header_logo {
    display: none;
}

.header--black .header_logo.--black,
html[data-drawer="opened"] .header_logo.--black {
    display: block;
    z-index: 100;
}

.header_nav {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.header_nav_list {
    grid-column-gap: 24px;
    grid-row-gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.header_nav_button {
    color: var(--white);
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    display: flex;
}

.header--black .header_nav_button {
    color: var(--black);
}

.header_menu {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex: none;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.header_singup {
    border-style: solid;
    border-width: 1px;
    border-color: var(--white) #fff #fff;
    color: var(--white);
    border-radius: 4px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
    font-size: 15px;
    display: flex;
}

.header--black .header_singup {
    border-color: var(--green);
    background-color: var(--green);
    color: var(--white);
}

.header_logo {
    width: 140px;
}

.header_login {
    color: var(--white);
    font-size: 15px;
}

.header--black .header_login {
    color: var(--black);
}

.arkhe-svg-close.__close {
    fill: var(--black)
}

.p-drawer {
    background: white;
    opacity: 1;
    z-index: -1;
}

.p-drawer__body {
    padding-top: 40px;
    display: flex;
    width: 550px;
    max-width: 100%;
    height: fit-content;
    flex-direction: column;
    gap: 40px;
}

.p-drawer__body>.header_menu {
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 8px;
}

.p-drawer__body>.header_menu>.button {
    width: 280px;
    padding: 17px 0;
    border-radius: 4px;
    border: 1px solid var(--black);
    background-color: var(--white);
    color: var(--black);
    text-decoration: none;
    display: flex;
    justify-content: center;
}

.p-drawer__body>.header_menu>.button.--green {
    color: var(--white);
    border-color: var(--green);
    background-color: var(--green);
}

/* content */
.l-content__body {
    margin: 0 auto;
}

.site-name {
    font-family: 'Kanit';
}

/**
ヒーロ-
**/
.hero {
    width: 100vw;
}

.hero.hero--small {
    width: 100vw;
    height: 280px;
    min-height: unset;
    background-position: center;
    background-size: cover;
}

.hero.blog {
    background-image: url('./images/img_blog.jpg');
}

.hero.news {
    background-position: 50% 85%;
    background-image: url('./images/img_news.jpeg');
}

.hero.static {
    background-image: url('./images/image_hero_static.jpg');
}

.hero.contact {
    background-position: 50% 100%;
    background-image: url('./images/img_contact.jpeg');
}

.hero.hero--with-title {
    color: white;
    padding: 40px var(--page-padding);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: baseline;
}

.page-title-wrap,
.archive-title-wrap {
    width: 100%;
    padding: 100px var(--page-padding) 0;
}

.archive-title {
    width: 496px;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 16px;
    position: relative;
}

.page-title {
    width: fit-content;
    padding-right: 160px;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 16px;
}

.page-title {
    margin-bottom: 60px;
}

.page-title.contact {
    margin-top: 120px;
}

.archive-title__main,
.page-title__main,
.hero-title__main {
    font-size: 56px;
    line-height: 130%;
}

.hero-title__main {
    color: white;
}

.page-title__sub,
.archive-title__sub,
.hero-title__sub {
    font-family: Onest, sans-serif;
    font-weight: 900;
    color: var(--green);
    font-size: 20px;
}

.hero-title__sub {
    color: white;
}

.hero {
    width: 100%;
    height: 740px;
    min-height: 100vh;
    background-image: url('./images/img_hero.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.hero_text2 {
    color: var(--white);
    font-size: 24px;
    line-height: 130%;
    position: relative;
}

.hero_text1 {
    color: var(--white);
    font-size: 64px;
    line-height: 130%;
    position: relative;
}

.hero_wrap {
    width: 80%;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: flex-start;
    line-height: 140px;
    display: flex;
}

.hero_logo_wrapper {
    width: fit-content;
    height: fit-content;
    position: relative;
    padding: 0;
}

.hero_logo {
    width: 360px;
    margin-top: 4px;
    display: block;
}

/**
ボディ
**/
.container-body {
    width: 100vw;
}

/**
フッター
**/
.footer {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-direction: column;
    align-items: center;
    padding: 60px var(--page-padding) 40px;
    display: flex;
}

.footer_nav {
    width: 100%;
    /* max-width: 1140px; */
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
    column-gap: 32px;
}

.footer_nav_list {
    max-width: 784px;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_nav_button {
    width: 240px;
    border-bottom: 1px solid var(--linegray);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 16px;
    display: flex;
}

.footer_nav_text {
    color: var(--black);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 140%;
}

.footer_nav_text_en {
    color: var(--green);
    font-family: Onest, sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 140%;
}

.footer_company_wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_logo {
    width: 240px;
    object-fit: cover;
}

.footer_company_profile {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_company_name {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_company_profile_text {
    color: var(--black);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.footer_company_name_text {
    color: var(--black);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 140%;
}

.footer_option {
    width: 100%;
    /* max-width: 1140px; */
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.footer_option_list {
    width: 100%;
    border-top: 1px solid var(--linegray);
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
}

.footer_option_nav {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
    display: flex;
}

.footer_option_nav_button {
    font-size: 14px;
    line-height: 140%;
}

.footer_option_sns {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_option_sns_img {
    width: 32px;
}

.footer_copyrights {
    color: var(--black);
    font-family: Onest, sans-serif;
    font-size: 12px;
    font-weight: 400;
}

/**
ページネーション
**/
nav.pagination>.page-numbers {
    border-radius: 4px;
    border: 1px solid var(--border-gray);
}

nav.pagination>.page-numbers.current {
    background-color: var(--green);
    border-color: var(--green);
}


/**
ニュースリスト
**/
.news-list-wrap {
    width: 100%;
    padding-bottom: 20px;
}

.news-list__item {
    display: flex;
    border-bottom: 1px solid var(--border-gray);
    list-style: none;
    height: 86px;
    align-items: stretch;
}

.news-row {
    display: flex;
    width: 100%;
    gap: 40px;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
}

.news-row>.news-row__meta {
    font-family: Onest, sans-serif;
    font-weight: 900;
    color: var(--green);
    font-size: 20px;
}

.news-row>.news-row__title {
    color: var(--text-black);
    font-size: 18px;
}


/**
ホーム
**/
.home-hero {
    height: 100vh;
    background: center / cover url('./images/img_hero.jpg');
    color: white;
}

.hero-content {
    width: 100%;
    height: 100%;
    padding: 0 120px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: inline-flex
}

.hero-content>.explain-sub {
    font-size: 24px;
    letter-spacing: 0.48px;
    word-wrap: break-word
}

.hero-content>.expain-main {
    margin-top: 32px;
    font-size: 64px;
    line-height: 83.20px;
    letter-spacing: 1.28px;
    word-wrap: break-word
}

.hero-content>.site-name {
    font-size: 80px;
    margin-top: 48px;
}

.home_blog_wrap,
.home_news_wrap {
    width: 100%;
}

.post-list-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    gap: 32px 0px;
}

.post-list-child {
    width: 32%;
}

.post-card {
    display: grid;
    grid-template-areas:
        "thumb"
        "meta"
        "title";
    gap: 12px;
    /* 各グリッドアイテム間の隙間 */
}

.post-card__thumb {
    aspect-ratio: 360 / 270;
    overflow: hidden;
    grid-area: thumb;
    position: relative;
    border-radius: 4px;
    /* thumb エリアに配置 */
}

.post-card__meta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-area: meta;
    font-family: Onest;
    /* meta エリアに配置 */
}

.post-card__title {
    font-size: 18px;
    grid-area: title;
    /* title エリアに配置 */
}

.post-card__title>a {
    color: black;
    text-decoration: none;
}


.c-postThumb__figure {
    /* figure要素をコンテナのサイズに合わせる */
    width: 100%;
    height: 100%;
    margin: 0;
    /* 余白をリセットする */

    /* 画像がfigure要素のサイズを超えた場合に対応する */
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-postThumb__img {
    /* 画像がfigure要素を完全に埋めるようにする */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像のアスペクト比を維持しつつ、要素を完全に埋める */
}

.post-tag-button {
    background-color: var(--green);
    padding: 4px;
    text-decoration: none;
    color: white;
    font-weight: semi-bold;
    font-size: 12px;
    border-radius: 2px;
}

.post-tags {
    background-color: var(--green);
    padding: 4px 12px;
    border-radius: 2px;
}

.post-tags>a {
    text-decoration: none;
    color: white;
    font-weight: semi-bold;
    font-size: 12px;
}

.with-underline {
    padding-bottom: 8px;
    border-bottom: 1px solid var(--green);
}



.top_subtitle {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
}

.h1_top {
    color: var(--black);
    text-align: center;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 140%;
    position: relative;
}

.about_content {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.about_text {
    text-align: center;
    font-size: 24px;
    line-height: 160%;
}

.br_sp {
    display: none;
}

.color_green {
    color: var(--green);
}

.top_subtitle_logo {
    width: 340px;
}

.about_img {
    width: 320px;
}

.h2_top {
    text-align: center;
    font-size: 36px;
    line-height: 140%;
    position: relative;
}

.h2_top.color_white {
    color: var(--white);
}

.problem_content {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.problem_card {
    width: 700px;
    grid-column-gap: 40px;
    background-color: #fff;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    padding: 24px 40px;
    display: flex;
}

.problem_icon {
    height: 48px;
    justify-content: center;
    align-items: center;
}

.p_top {
    color: var(--black);
    text-align: center;
    flex: 1;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 23px;
    font-weight: 900;
    line-height: 140%;
}

.p_top span {
    display: inline-block;
}

.top_section {
    width: 100%;
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-direction: column;
    align-items: center;
    padding: 140px var(--page-padding) 160px;
    display: flex;
}

.top_section.about {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-image: url('./images/img_about_bg.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 120px;
}

.top_section.problem {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    background-image: linear-gradient(rgba(37, 39, 38, .94), rgba(37, 39, 38, .94)), url('./images/img_problem.jpg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    padding-top: 80px;
    padding-bottom: 100px;
}

.top_section.value {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
}

.top_section.cta {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    padding-top: 0;
    padding-bottom: 140px;
}

.top_section.blog {
    padding-bottom: 60px;
}

.top_section.contact {
    background-color: var(--bggray);
    padding-top: 80px;
    padding-bottom: 80px;
}

.value_content {
    width: 100%;
    max-width: 1140px;
    grid-row-gap: 32px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.value_card {
    width: 32%;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.value_img {
    width: 100%;
    border-radius: 4px;
}

.cta_results {
    width: 100%;
    max-width: 1140px;
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    border-top: 1px solid var(--linegray);
    flex-direction: column;
    align-items: center;
    padding-top: 140px;
    display: flex;
}

.no-border {
    border-top: none;
}

.cta_results_list {
    width: 100%;
    grid-column-gap: 56px;
    grid-row-gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
}

.cta_button {
    width: 100%;
    height: 280px;
    max-width: 1140px;
    background-image: linear-gradient(165deg, #4a8724, #2f650a 80%);
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    padding: 4px;
    display: flex;
    text-decoration: none;
    transition: 0.2s;
}

.cta_button_wrap {
    /* width: 100%; */
    flex-grow: 1;
    height: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    padding-left: 16px;
    display: flex;
}

.cta_button_text2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--white);
    color: var(--green);
    text-align: center;
    border-radius: 40px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 8px 32px;
    font-size: 18px;
    line-height: 140%;
}

.cta_button_text2 span {
    display: inline-block;
}

.cta_button_text1 {
    color: var(--white);
    text-align: center;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 140%;
}


.cta_button__image-wrap {
    max-width: 400px;
    height: 100%;
    overflow: hidden;
}

.cta_button_img {
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: .25s;
}

.img_lake {
    width: 100%;
    object-fit: cover;
}

.blog_list {
    width: 100%;
    max-width: 1140px;
    grid-row-gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.blog_card {
    width: 32%;
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.blog_img {
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.blog_detail {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.blog_category {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 2px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 140%;
    display: flex;
}

.post-time {
    color: var(--black);
    font-family: Onest, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.blog_title {
    color: var(--black);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 140%;
}

.top_button {
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 4px;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    padding: 24px 60px;
    font-size: 18px;
    display: flex;
}

.news_list {
    width: 100%;
    max-width: 1140px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.news_card {
    width: 100%;
    max-width: 1140px;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    border-bottom: 1px solid var(--linegray);
    justify-content: flex-start;
    align-items: center;
    padding-top: 28px;
    padding-bottom: 28px;
    display: flex;
}

.news_date {
    color: var(--green);
    font-family: Onest, sans-serif;
    font-size: 20px;
    font-weight: 800;
}

.news_title {
    color: var(--black);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.contact_wrap {
    width: 100%;
    max-width: 780px;
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    background-color: var(--white);
    border-radius: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 60px 50px;
    display: flex;
}

.contact_list {
    width: 100%;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
}

.contact_each_wrap {
    width: 100%;
    max-width: 680px;
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.text-4 {
    color: #111;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 16px;
    font-weight: 900;
}

.contact_each_asterisk {
    color: var(--green);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 14px;
    font-weight: 900;
    line-height: 16px;
}

.contact_each_formbox {
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: #cbcbcb #cbcbcb var(--linegray);
    color: #b2b2b2;
    background-color: #fff;
    border-radius: 4px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
}

.contact_each_formbox.content {
    height: 160px;
}

.text-6 {
    color: #b2b2b2;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.contact_button {
    background-color: var(--green);
    color: var(--white);
    border-radius: 4px;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    padding: 20px 60px;
    font-size: 18px;
    display: flex;
}

.contact_each_question {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    display: flex;
}

.footer {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-direction: column;
    align-items: center;
    /* padding: 60px 50px 40px; */
    padding: 60px var(--page-padding) 40px;
    display: flex;
}

.footer_nav {
    width: 100%;
    /* max-width: 1140px; */
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
}

.footer_nav_list {
    /* max-width: 784px; */
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_nav_button {
    width: 240px;
    border-bottom: 1px solid var(--linegray);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 16px;
    display: flex;
}

.footer_nav_text {
    color: var(--black);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 140%;
}

.footer_nav_text_en {
    color: var(--green);
    font-family: Onest, sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 140%;
}

.footer_company_wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_logo {
    width: 240px;
    object-fit: cover;
}

.footer_company_profile {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_company_name {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_company_profile_text {
    color: var(--black);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.footer_company_name_text {
    color: var(--black);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 140%;
}

.footer_option {
    width: 100%;
    /* max-width: 1140px; */
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
}

.footer_option_list {
    width: 100%;
    border-top: 1px solid var(--linegray);
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    display: flex;
}

.footer_option_nav {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
    display: flex;
}

.footer_option_nav_button {
    font-size: 14px;
    line-height: 140%;
}

.footer_option_sns {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.footer_option_sns_img {
    width: 32px;
}

.footer_copyrights {
    color: var(--black);
    font-family: Onest, sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.image-2 {
    display: none;
}

.articlepage_title {
    height: 280px;
    background-image: url('./images/img_blog.jpg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
    display: flex;
}

.articlepage {
    width: 100%;
    max-width: 1140px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
}

.text {
    color: #fff;
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 130%;
}

.text-7 {
    color: #fff;
    font-family: Onest, sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 130%;
}

/**
お問い合わせフォーム
**/
.contact-form-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

.contact-form {
    width: 680px;
}

.form-label {
    display: block;
    width: 100%;
}

.form-label:not(:first-child) {
    margin-top: 32px;
}

.form-label__title {
    display: block;
    font-weight: 900;
}

.form-label__title.required:after {
    content: "*";
    color: var(--green);
}

.form-label input,
.form-label textarea,
.form-label select {
    margin-top: 4px;
    width: 100%;
    padding: 12px 20px;
    font-weight: 400;
    border-radius: 4px;
    border-color: var(--border-gray);
}

.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.form-submit__spacer {
    width: 72px;
    display: inline-block;
}

.form-submit__button {
    background-color: var(--green);
    padding: 20px 60px;
    text-decoration: none;
    color: white;
    font-weight: semi-bold;
    font-size: 18px;
    font-weight: 900;
    border-radius: 4px;
}

.scrollbar-hide {
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.c-pageTitle__main {
    font-size: 36px;
}

@media (hover: hover) and (pointer: fine) {
    .scrollbar-hide:not(:hover)::-webkit-scrollbar {
        width: unset;
    }

    .page-numbers:not(.dots).current,
    .page-numbers:not(.dots):hover,
    .post-page-numbers:not(.dots).current,
    .post-page-numbers:not(.dots):hover {
        background-color: var(--green);
        color: #fff;
    }

    .post-card:hover .post-card__thumb img {
        transform: scale(1.10);
    }

    .post-card:hover .post-time,
    .post-card:hover .post-card__title>a {
        color: var(--green);
        transition: 0.05s;
    }

    .post-card:hover .post-tags,
    .post-card:hover .post-tag-button {
        background-color: var(--green);
    }

    .header_nav_button:hover {
        color: var(--green);
        transition: 0.05s;
    }

    .header_login:hover {
        color: var(--green);
        transition: 0.05s;
    }

    .header_singup:hover {
        background-color: var(--hovergreen);
        border-color: var(--hovergreen);
        transition: 0.1s;
    }

    .news-list__item:hover {
        border-bottom: 1px solid var(--green);
        transition: 0.1s;
    }

    .news-list__item {
        &:hover .news-row .news-row__title {
            color: var(--green);
            transition: 0.1s;
        }
    }

    .top_button:hover {
        color: var(--white);
        background-color: var(--green);
        border-color: var(--green);
        transition: 0.1s;
    }

    .cta_button:hover {
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.25);
    }

    .cta_button:hover .cta_button_img {
        transform: scale(1.10);
    }

    .footer_nav_button:hover {
        border-bottom: 1px solid var(--green);
        margin-bottom: -1px;
        transition: 0.1s;
    }

    .footer_nav_button:hover .footer_nav_text {
        color: var(--green);
        transition: 0.1s;
    }

    .footer_option_nav_button:hover {
        color: var(--green);
        transition: 0.05s;
    }

    .footer_option_sns_img:hover {
        filter: invert(41%) sepia(86%) saturate(408%) hue-rotate(53deg) brightness(91%) contrast(85%);
        transition: 0.05s;
    }

    .tag-list .post-tag-button:hover {
        background-color: var(--hovergreen);
        transition: 0.05s;
    }

    .form-submit__button:hover {
        background-color: var(--hovergreen);
        transition: .1s;
    }
}

@media screen and (max-width: 1208px) {
    .top_subtitle_logo {
        width: 280px;
    }

    .top_subtitle>.h1_top {
        font-size: 28px;
    }
}

@media screen and (max-width: 991px) {
    :root {
        --page-padding: 4vw;
    }

    #header.header {
        padding-left: var(--page-padding);
        padding-right: var(--page-padding);
    }

    .arkhe-svg-menu {
        fill: var(--white) !important;
    }

    .header--black .arkhe-svg-menu {
        fill: var(--black) !important;
    }

    .header_nav_list,
    .header_login,
    .header_singup {
        display: none;
    }

    .hero {
        height: 600px;
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .hero_text2 {
        font-size: 20px;
    }

    .hero_text1 {
        font-size: 56px;
    }

    .hero_wrap {
        width: 100%;
    }

    .hero_logo {
        width: 320px;
    }

    .h1_top {
        font-size: 32px;
    }

    .about_text {
        font-size: 20px;
    }

    .top_subtitle_logo {
        width: 240px;
    }

    .static-page-padding {
        padding: 24px var(--page-padding);
    }

    .page-title-wrap,
    .archive-title-wrap {
        width: 100%;
        padding: 40px var(--page-padding) 0;
    }

    .page-title,
    .archive-title {
        width: 100%;
        padding-bottom: 8px;
        padding-right: 0px;
        margin-bottom: 40px;
    }

    .page-title.contact {
        margin-top: 80px;
    }

    .page-title__main,
    .archive-title__main {
        font-size: 32px;
    }

    .bread-wrap {
        padding: 16px var(--page-padding);
    }

    .about_img {
        width: 280px;
    }

    .h2_top {
        font-size: 28px;
    }

    .problem_card {
        width: 520px;
        grid-column-gap: 24px;
        padding: 20px 24px;
    }

    .problem_icon {
        height: 36px;
    }

    .p_top {
        font-size: 20px;
    }

    .top_section {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        padding: 120px var(--page-padding);
    }

    .top_section.about {
        padding-top: 110px;
        padding-bottom: 80px;
    }

    .top_section.value {
        grid-column-gap: 60px;
        grid-row-gap: 60px;
    }

    .top_section.cta {
        padding-bottom: 100px;
    }

    .cta_results {
        padding-top: 100px;
    }

    .cta_results_list>img {
        height: 24px;
        width: auto;
    }

    .cta_results_list>img.rect-small {
        height: 52px;
    }

    .cta_button {
        height: 240px;
    }

    .cta_button_text2 {
        padding-left: 24px;
        padding-right: 24px;
        font-size: 15px;
    }

    .cta_button_text1 {
        font-size: 32px;
    }

    .img_lake {
        height: 20vh;
    }

    .blog_category {
        font-size: 11px;
    }

    .post-time {
        font-size: 13px;
    }

    .blog_title,
    .post-card__title,
    .top_button,
    .news_date,
    .news_title {
        font-size: 16px;
    }

    .footer {
        padding-left: 4vw;
        padding-right: 4vw;
    }

    .footer_nav_list {
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }

    .footer_nav_button {
        width: 200px;
        padding-bottom: 12px;
    }

    .footer_nav_text {
        font-size: 20px;
    }

    .footer_nav_text_en {
        font-size: 14px;
    }

    .footer_logo {
        width: 220px;
    }

    .footer_company_profile_text {
        font-size: 13px;
    }

    .footer_company_name_text {
        font-size: 18px;
    }

    .footer_option_nav {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }

    .footer_copyrights {
        font-size: 11px;
    }

    .text-block-2 {
        font-size: 13px;
    }

    .text-block-3 {
        font-size: 16px;
    }

    .image-2 {
        width: 32px;
        display: block;
    }

    .contact_wrap>div {
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .form-label:not(:first-child) {
        margin-top: 8px;
    }

    .news-list__item {
        height: 100%;
        padding: 28px 0;
    }

    .news-row {
        flex-direction: column;
        align-items: baseline;
        gap: 8px;
    }

    .news-row__meta {
        font-size: 15px;
    }

    .news-row>.news-row__title {
        font-size: 16px;
    }

    .hero.hero--small {
        height: 160px;
    }

    .hero.hero--with-title {
        padding: 20px 4vw;
    }

    .hero-title__main {
        font-size: 32px;
    }

    .archive-title-wrap {
        margin-bottom: 20px;
    }

    .page-title__sub,
    .archive-title__sub,
    .hero-title__sub {
        font-size: 16px;
    }

    .news-row>.news-row__meta {
        font-size: 16px;
    }

    .curtain {
        width: calc(100% + 2vw);
        height: calc(100% + 20px);
        left: -1vw;
        top: -10px;
    }
}

@media screen and (max-width: 767px) {
    .header {
        padding-top: 20px;
    }

    .header_singup {
        display: none;
    }

    .hero {
        height: 740px;
        background-image: url('./images/img_hero_sp.jpg');
    }

    .hero_text2 {
        font-size: 16px;
    }

    .hero_text1 {
        font-size: 28px;
    }

    .hero_logo {
        width: 220px;
    }

    .header_login {
        display: none;
    }

    .top_subtitle {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        flex-direction: column;
    }

    .about_text {
        font-size: 16px;
    }

    .br_sp {
        display: block;
    }

    .problem_content,
    .problem_card {
        width: 100%;
    }

    .problem_icon {
        height: 36px;
    }

    .p_top {
        font-size: 16px;
    }

    .top_section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .value_content {
        grid-row-gap: 24px;
    }

    .value_card {
        width: 49%;
    }

    .cta_results {
        padding-top: 100px;
    }

    .cta_button {
        height: 180px;
    }

    .cta_button_text2 {
        width: 250px;
    }

    .cta_button_text1 {
        font-size: 28px;
    }

    .cta_button_img {
        display: none;
    }

    .home_blog_wrap>.post-list-wrap {
        flex-flow: column;
        gap: 30px;
    }

    .home_blog_wrap>.post-list-wrap>.post-list-child {
        width: 100%;
        max-width: 480px;
        margin: auto;
    }

    .blog_list {
        flex-direction: column;
    }

    .blog_card {
        width: 100%;
    }

    .news_card {
        grid-column-gap: 8px;
        grid-row-gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_wrap {
        grid-column-gap: 32px;
        grid-row-gap: 32px;
        padding-top: 48px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer {
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        padding-bottom: 20px;
    }

    .footer_nav {
        grid-column-gap: 80px;
        grid-row-gap: 80px;
        flex-direction: column;
    }

    .footer_nav_list {
        width: 100%;
        flex-direction: column;
    }

    .footer_nav_button {
        width: 100%;
    }

    .footer_option_list {
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}


/**
静的ページ：会社概要,プライバシーポリシー、利用規約
**/

/**
プライバシーポリシー、利用規約
**/
.static-page h2 {
    margin: 60px 0 12px;
}

.static-page p,
.static-page li,
.static-page ol {
    font-weight: 500;
    line-height: 1.5;
}

.static-page li,
.static-page ol {
    padding-inline-start: 0;
    list-style-position: outside;
    margin-left: 16px;

}

.static-page li li {
    list-style: lower-latin;
    margin-left: 40px;
}

/**
会社概要
**/
.company-table table,
.company-table td,
.company-table th {
    border: none;
}

.company-table table {
    border-collapse: separate;
    border-spacing: 0 16px;
}

.company-table tr {
    height: 40px;
    padding: 8px 0 !important;
}

.company-table td {
    margin: auto;
    padding: 0 !important;
}

.company-table td:first-child {
    width: 180px;
}

.company-table td:first-child>span {
    width: 140px;
    height: 30px;
    line-height: 26px;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-gray);
    margin-right: 40px;
}

.company-table td:nth-child(2) {
    font-weight: 500;
}

/**
よくある質問
**/
.ark-block-section {
    padding: 0;
    margin-top: 40px !important;
}

.static-page .ark-block-accordion__title {
    background: transparent;
}

.static-page .ark-block-section__body {
    padding: 0 var(--page-padding);
    margin: 0;
    max-width: unset;
    width: 100%;
}

.static-page .ark-block-section__body .ark-block-section__bodyInner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}

.ark-block-section__bodyInner .wp-block-heading {
    font-size: 28px;
    width: 300px;
}

.ark-block-accordion {
    max-width: 780px;
    flex: 1 1;
    margin: 0;
}

.ark-block-accordion>details {
    /* min-height: 82px;
    height: fit; */
    padding: 28px 0;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.ark-block-accordion>details:first-child {
    padding-top: 0;
}

.ark-block-accordion__item+.ark-block-accordion__item {
    margin: 0;
}

.ark-block-accordion__title,
.ark-block-accordion__body {
    padding-left: 0;
}

.static-page .ark-block-accordion__icon::before {
    content: '＋';
    display: flex;
    /* フレックスコンテナとして設定 */
    justify-content: center;
    /* 水平方向の中央揃え */
    align-items: center;
    /* 垂直方向の中央揃え */
    font-size: 12px;
    width: 18px;
    height: 18px;
    background: var(--white);
    color: var(--black);
    border-radius: 50%;
    border: 1px solid var(--black);
}

.static-page .ark-block-accordion__icon::after {
    display: none;
}

.static-page details[open] .ark-block-accordion__icon {
    transform: none;
}

.static-page details[open] .ark-block-accordion__icon::before {
    content: 'ー';
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

@media screen and (max-width: 991px) {
    .company-table td:first-child {
        width: 120px;
    }

    .company-table td:first-child>span {
        width: 100px;
    }
}

@media screen and (max-width: 991px) {
    .static-page .ark-block-section__body .ark-block-section__bodyInner {
        flex-direction: column;
    }

    .ark-block-accordion {
        width: 100%;
    }
}