/*
Theme Name: 言論NPO
Theme URI: http://www.www.www/
Description: This is my original theme.
*/


/*-----------------
-------------------
幅    background-image: url(../img/landing-page/sp-speed-suso.png);
-------------------
-----------------*/
body {
    margin: 0 auto;
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    color: #222222;
}

.wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.w100 {
    width: 100%;
}

.mw100 {
    width: 100%;
    max-width: none;
}


/*-----------------
-------------------
画像・リンク・表示非表示
-------------------
-----------------*/
img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:link, a:visited, a:hover, a:active {
    color: #222222;
}

.contact-btn {
    opacity: 0.5;
}

a:hover {
    opacity: 0.5;
}

.pc-dn {
    display: none;
}

.sp-dn {
    display: block;
}

/*-----------------
-------------------
マージン・パディング
-------------------
-----------------*/
.mt0 {
    margin-top: 0;
}

.mt1 {
    margin-top: 1em;
}

.mt2 {
    margin-top: 2em;
}

.mt3 {
    margin-top: 3em;
}

.mt4 {
    margin-top: 4em;
}

.mt5 {
    margin-top: 5em;
}

.mt6 {
    margin-top: 6em;
}

.mt7 {
    margin-top: 7em;
}

.mt8 {
    margin-top: 8em;
}

.mt9 {
    margin-top: 9em;
}

.mt10 {
    margin-top: 10em;
}

.mb0 {
    margin-bottom: 0;
}

.mb1 {
    margin-bottom: 1em;
}

.mb2 {
    margin-bottom: 2em;
}

.mb3 {
    margin-bottom: 3em;
}

.mb4 {
    margin-bottom: 4em;
}

.mb5 {
    margin-bottom: 5em;
}

.mb6 {
    margin-bottom: 6em;
}

.mb7 {
    margin-bottom: 7em;
}

.mb8 {
    margin-bottom: 8em;
}

.mb9 {
    margin-bottom: 9em;
}

.mb10 {
    margin-bottom: 10em;
}

.pt0 {
    padding-top: 0;
}

.pt1 {
    padding-top: 1em;
}

.pt2 {
    padding-top: 2em;
}

.pt3 {
    padding-top: 3em;
}

.pt4 {
    padding-top: 4em;
}

.pt5 {
    padding-top: 5em;
}

.pt6 {
    padding-top: 6em;
}

.pt7 {
    padding-top: 7em;
}

.pt8 {
    padding-top: 8em;
}

.pt9 {
    padding-top: 9em;
}

.pt10 {
    padding-top: 10em;
}

.pb0 {
    padding-bottom: 0;
}

.pb1 {
    padding-bottom: 1em;
}

.pb2 {
    padding-bottom: 2em;
}

.pb3 {
    padding-bottom: 3em;
}

.pb4 {
    padding-bottom: 4em;
}

.pb5 {
    padding-bottom: 5em;
}

.pb6 {
    padding-bottom: 6em;
}

.pb7 {
    padding-bottom: 7em;
}

.pb8 {
    padding-bottom: 8em;
}

.pb9 {
    padding-bottom: 9em;
}

.pb10 {
    padding-bottom: 10em;
}

.p1 {
    padding: 1em;
}

.p2 {
    padding: 2em;
}

.p3 {
    padding: 3em;
}

.p4 {
    padding: 4em;
}

.p5 {
    padding: 5em;
}

.w40 {
    width: 40%;
}

.w50 {
    width: 50%;
}

.fs25 {
    font-size: 25px;
}

.slide-in {
    overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
    display: inline-block;

}

/*左右のアニメーション*/
.leftAnime {
    opacity: 0;
    /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
    from {
        transform: translateX(-100%);
        /*要素を左の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}

.slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
    from {
        transform: translateX(100%);
        /*要素を右の枠外に移動*/
        opacity: 0;
    }

    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}

/*-----------------
-------------------
文字寄せ
-------------------
-------------------*/
.tac {
    text-align: center;
}

.tal {
    text-align: left;
}

.tar {
    text-align: right;
}

.dib {
    display: inline-block;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

.small {
    font-size: 80%;
}


/*-----------------
-------------------
コンタクトフォーム
-------------------
-------------------*/
.form * {
    box-sizing: border-box;
    margin: 0.3em 0.5em;
    align-items: center;
}

.form h3 {
    font-size: 1.5rem !important;
    font-weight: bold;
    border-bottom: solid 1px #000;
    margin: 2rem 0;
    letter-spacing: 1.5px;
}

input[type="button"i] {
    background: #0095a1;
    border: none;
    padding: 1em 2em;
    color: #fff;
    border-radius: 5px;
    margin: 1em 0;
}

form {
    display: inline-block;
    width: 100%;
    font-size: 18px;
}

.form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 32px;
    padding: 1em 0px;
    border-bottom: 1px solid #000;
}

.bt {
    border-top: 1px solid #000;
}

.form__term {
    width: 30%;
}

.form__term:not(.is-required) {
    margin-top: 4px;
}

.form__desc {
    width: 70%;
    text-align: left;
}

.form__desc input:not([type=date]), .form__desc textarea {
    width: 100%;
}

input[type="radio"i] {
    display: inline-block;
    width: auto !important;
}

.form__term.is-required {
    text-align: left;
    display: -ms-flexbox;
    align-items: center;
    -ms-flex-align: center;
    border-radius: 5px;
    font-weight: bold;
}

.screen-reader-response {
    display: none;
}

.wpcf7-not-valid-tip {
    color: red;
}

/*.form__term.is-required::before {
  content: "必須";
  color: #fff;
  background-color: #ed5f58;
  font-size: 1rem;
  font-weight: 400;
  width: 30px;
  height: 18px;
  line-height: 1.6;
  margin-right: 8px;
  text-align: center;
  padding: 2px 3px
}
*/
.form__desc input[type=email], .form__desc input[type=tel], .form__desc input[type=text], .form__desc select, .form__desc textarea {
    padding: 15px 8px;
    background: #ecececec;
    border: none;
    border-radius: 3px;
}

.form__desc input[type=date] {
    padding: 4px 8px;
}

.form__btn-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.form__btn {
    padding: 0.5rem 5rem;
    border-radius: 28px;
    background-color: #4c3b31;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: .2rem;
    cursor: pointer;
    transition: .3s ease;
    -webkit-appearance: none;
    border: none;
}

.wrap-contact {
    padding: 2em 5em;
    background: #fff;
}

/*-----------------
-------------------
ヘッダー
-------------------
-------------------*/

.form__btn:hover {
    opacity: .7;
}

.header-bk {
    position: fixed;
    z-index: 999;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 0 30px rgba(0, 138, 63, 0.2);
}

header::after {

    display: none;
}


nav {
    display: flex;

}

.Toggle {
    display: none;
}

.menu {
    width: 100%;
    background-color: transparent;
    margin-top: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.menu ul {
    height: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.menu ul li a {
    padding: 0 1em;
    border-bottom: none;

}

.menu ul li a:hover {
    background-color: transparent;
}

.bk {
    display: none;
}

.menu ul {
    background: none;
}

.header-tel img {
    width: 170px;
    margin-right: 1em;
    margin-left: 1.5em;
}

#logo {
    padding: 20px 0;
}

#logo img {
    width: 200px;
}

.drawer {
    /* width: 10%; */
    /* padding-right: 0.5em; */
}

h2.fv {
    font-size: 40px;
    font-weight: normal;
    color: #222;
    margin: 2em 0;
}

h1.fv {
    margin: 0;
    margin-bottom: -9px;
}

.slider {
    margin: 0 auto;
    max-width: 100%;
    width: 80%;
}

.slick-list {
    height: 43vw;
}

.slider-img img {
    height: auto;
    width: 100%;
}

/*-----------------
-------------------
よくある質問
-------------------
-------------------*/
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 30px;
    cursor: pointer;
    /* border-bottom: 1px solid #0095a1; */
    background: #fff;
    text-align: left;
    color: #0095a1;
    margin-bottom: 2em;
    margin-top: 2em;
}

.qa-list dl:last-child {
    border-bottom: none;
}

.qa-list dl::before {
    position: absolute;
    top: 28px;
    right: 35px;
    display: block;
    width: 25px;
    height: 25px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 1px solid #0095A1;
    border-right: 1px solid #0095A1;
}

.qa-list .open::before {
    transform: rotate(-45deg);
}

.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 20px;
}

.qa-list dl dt::before {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 0;
    display: block;
    content: 'Q.';
    color: #0095a1;
}

.qa-list dl dd::before {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    position: absolute;
    top: 5px;
    left: 3px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #0095a1;
}

.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
    border-top: 1px solid;
    padding-top: 15px;
}

.qa-list dl dd p {
    margin: 30px 0 0;
    color: #222;
}

.qa-list dl dd p:first-child {
    margin-top: 0;
}

/*-----------------
-------------------
よくある質問-スマホ
-------------------
-------------------*/
@media screen and (max-width: 767px) {
    .qa-list dl {
        position: relative;
        padding: 15px 40px 15px 10px;
    }

    .qa-list dl::before {
        top: 20px;
        right: 20px;
        width: 7px;
        height: 7px;
    }

    .qa-list dl dt {
        padding: 0 0 0 30px;
        font-size: 14px;
    }

    .qa-list dl dt::before {
        font-size: 14px;
        top: 3px;
        left: 5px;
        content: 'Q.';
    }

    .qa-list dl dd::before {
        font-size: 14px;
        top: 5px;
        left: 5px;
        content: 'A.';
    }

    .qa-list dl dd {
        margin: 10px 0 0;
        padding: 0 0 0 30px;
        font-size: 14px;
    }

    .qa-list dl dd p {
        margin: 30px 0 0;
    }

    .qa-list dl dd p:first-child {
        margin-top: 0;
    }
}



/*-----------------
-------------------
よくある質問
-------------------
-------------------*/
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

.container dl {
    width: 100%;
    padding: 10px;
}

.container dl small {
    font-size: 16px;
}

.container dt {
    width: 405px;
    display: inline-block;
    padding: 0.7em 3em;
    border-radius: 50px;
    background: white;
    border: 2px solid #0095A1;
    position: relative;
    font-weight: bold;
}

.container dd {
    padding: 20px;
    margin-top: 4em;
    background: #fff;
    border: solid 1px #222;
    text-align: left;
}

.container dd h2 {
    text-align: center;
    font-size: 36px;
}

.container dd h3 {
    font-size: 24px;
    letter-spacing: 0;
    border-bottom: 1px solid #222;
    padding-bottom: 0.5em;
}

/* .container span::before,
.container span::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    ;
    border-radius: 5px;
    background: #0095A1;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
} */

/* .container span::after {
    background: #0095A1;
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
}

.container .active::after {
    transform: rotate(0);
    transition: 0.5s;
} */

.content-txt-box {
    padding: 20px;
    margin-top: 4em;
    background: #fff;
    border: solid 1px #222;
    text-align: left;
}

.content-txt-box h2 {
    text-align: center;
    font-size: 36px;
}

.content-txt-box h3 {
    font-size: 24px;
    letter-spacing: 0;
    border-bottom: 1px solid #222;
    padding-bottom: 0.5em;
}

.content-txt-box p {
    font-size: 15px;
    margin: 2em 0;
}

.service_support_tbl {
    width: 100%;
    border-collapse: collapse;
}

.service_support_tbl th {
    width: 170px;
    vertical-align: middle;
    color: #fff;
    background: #757575;
    font-weight: normal;
    text-align: center;
}

.service_support_tbl th, .service_support_tbl td {
    padding: 20px 30px;
    border: 1px solid #222;
}

.service_support_tbl td {
    background: #F3F3F3;
}

.underline_double {
    background: linear-gradient(transparent 70%, #FFE500 70%);

}

.content-support {
    border: solid 3px #0095A1;
    background-color: white;
}

.content-support a {
    display: block;
}

.support-header {
    background: #D6F4EE;
    text-align: center;
    padding: 2em 0;
}

.company-box {
    text-align: left;
    margin: 2em 0;
    margin-left: 5em;
}

.company-box>div {
    display: table-cell;
    padding: 0 2em;
}

.company-box>div:first-child {
    background-color: #878787;
    color: #fff;
    padding: 0.5em;
    text-align: center;
    width: 112px;
    vertical-align: middle;
}

.policy-box {
    padding: 4em;
}

.border-green {
    border: 4px solid #0095a1;
}

.p0 {
    padding: 10vh 0 30vh 0 !important;
}

/*============================================================
ボンッ、ヒュッ
==============================================================*/

/* 拡大 */
.zoomIn {
    animation-name: zoomInAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
    from {
        transform: scale(0.6);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.zoomInTrigger,
.zoomOutTrigger,
.fadeLeftTrigger {
    opacity: 0;
}

.animation.played span {
    animation-name: fadeInTop;
}

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

    100% {
        opacity: 1;
    }
}

/* 左から */

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*========= 1文字ずつ出現させるためのCSS ===============*/

h3 .eachTextAnime span {
    opacity: 0;
}

h3 .eachTextAnime.appeartext span {
    animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/*============================================================
ポップアップ
==============================================================*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 999;
}

/* 背景黒色部分 */
.modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

/* コンテンツ表示部分 */
.inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #fff;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    /* 慣性スクロール */
    padding-top: 30px;
}

.box-btn {
    text-align: right;
    position: fixed;
    top: 0;
    z-index: 2;
    position: fixed;
    top: 8%;
    right: 9%;
}

.btn-modal {
    border: none;
    appearance: none;
    padding: 0;
    margin-right: 0.5em;
    background-color: transparent;
    /* ボタン背景を透明に */
    cursor: pointer;
    font-size: 3em;
}

.btn-more {
    border: none;
    appearance: none;
    padding: 0.3em 0.5em;
    background-color: transparent;
    cursor: pointer;
    margin-top: 4em;
}

.campaign .btn-link>div {
    display: inline-block;
    margin: 2em 1em;
}

#g-nav {
    width: 90%;
    /* margin: 1em 0; */
}

#g-nav-list {
    display: flex;
}

#g-nav ul {
    display: flex;
    vertical-align: middle;
    align-items: center;
}

#g-nav li {
    list-style: none;
    padding-left: 1.7em;
    text-align: right;
}

#g-nav ul {
    display: flex;
    float: right;
    vertical-align: middle;
    align-items: center;
    margin: 20px;
    margin-top: 0px;
    padding: 0;
}

.green {
    color: #008A3F !important;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    width: 168px;
    margin: 1em auto;
}

/*============================================================
FVのアニメーション
==============================================================*/
/* init */
.background {
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    position: fixed;
    background-position: center center;
    opacity: 0;
    -webkit-background-size: cover;
    background-size: cover;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.show .background, .show {
    opacity: 1;
}

/* design*/

#content01_bg {
    background: url(../img/landing-page/main-image.webp) no-repeat center/cover;
    width: 100%;
    height: 100vh;
    position: relative;
}

#content01 h2, #content06 h2 {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    text-shadow: 0 0 10px #000;
    color: #fff;
    font-size: 70px;
    font-weight: lighter;
}

.text-box h1 {
    position: absolute;
    z-index: 1;
    bottom: 44px;
    right: 10vh;
    color: #fff;
    text-align: right;
    text-shadow: 0px 3px 20px rgba(0, 0, 0, 0.60);
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 600;
    line-height: 1.3;
}

.text-box h1 span {
    display: block;
    font-size: clamp(18px, 3vw, 30px);
    margin-top: 20px;
}


.section__h2 {
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    font-weight: lighter;
    opacity: 0.5;
    font-size: 70px;
    color: #79bbb6;
    margin: 0;
    padding-top: 1em;
}

.section__h3 {
    margin: 0;
    color: #008a3f;
    font-size: 40px;
    font-family: 'Noto Sans JP', 'Noto Sans Japanese', sans-serif;
    letter-spacing: 4px;
    font-weight: lighter;
}

.section__h3 span.line {
    vertical-align: middle;
    font-size: 40px;
    font-weight: 100;
}

.section__h3 small {
    font-size: 18px;
    font-weight: lighter;
    font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
    letter-spacing: 2px;
}

.section__h4 {
    padding-bottom: 0.3em;
    margin: 20px 0;
    background-image: linear-gradient(90deg, #008a3f 0 250px, #ffffff00 250px);
    background-repeat: no-repeat;
    background-size: 100% 4%;
    background-position: bottom;
    font-weight: lighter;
    font-size: 40px;
    text-align: left;
    letter-spacing: 1px;
}

.join h4 {
    font-size: 35px;
    color: #008A3E;
    letter-spacing: 5px;
    font-weight: lighter;
    text-align: center;
}

#teamkudo h6 {
    font-size: 25px;
    font-weight: lighter;
    margin-bottom: 15px;
}

.news-content {
    margin-top: 2em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.news-box {
    color: #5C5C5C;
    font-size: 17px;
    width: calc((1480px - 80px) / 3);
    display: inline-block;
    text-align: left;
    background-color: #fff;
    margin: 0 10px;
    box-shadow: 0 10px 15px rgb(0 0 0 / 12%);
    vertical-align: top;
}

.news-box .day {
    display: inline-block;
    margin-top: 1em;
}

.news-box .news-img img, .news-box .news-img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-box .news-txt {
    padding: 1em 2em;
}
.static{
    margin-top: 6em;
}
.news-box .category {
    display: inline-block;
    padding: 0.2em 0.5em;
    background: #34CBA7;
    color: #fff;
    float: right;
    margin: 0.8em 0;
}

.news-box p {
    margin: 0;
    padding-bottom: 1em;
}

.news-btn {
    position: relative;
    margin-bottom: 0.2rem;
    padding: 0.5rem 3em;
    color: #fff;
    background-color: #008A3F;
    font-weight: lighter;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    font-family: 'Noto Sans Japanese', sans-serif;
    border-radius: 50px;
}

input[type="submit"i] {
    position: relative;
    margin-bottom: 0.2rem;
    padding: 0.5rem 3em;
    color: #fff;
    background-color: #008A3F;
    font-weight: lighter;
    font-size: 18px;
    text-align: center;
    display: inline-block;
    font-family: 'Noto Sans Japanese', sans-serif;
    border-radius: 50px;
    border-style: none;
}

input[type="submit"i]:before {
    position: absolute;
    inset: 3px -3px -3px 3px;
    border: 1px solid #008A3F;
    content: '';
    border-radius: 50px;
}

.header .news-btn {
    position: relative;
    margin-bottom: 0.2rem;
    padding: 0.5rem 2em;
    color: #fff;
    background-color: #008A3F;
    font-weight: lighter;
    letter-spacing: 0;
    font-size: 13px;
    text-align: center;
    display: inline-block;
    font-family: 'Noto Sans Japanese', sans-serif;
    border-radius: 50px;
    vertical-align: bottom;
}

.jp {
    font-family: 'Noto Sans Japanese', sans-serif;
}

.blog {
    font-family: 'Noto Sans Japanese', sans-serif;
}

.news-btn:before {
    position: absolute;
    inset: 3px -3px -3px 3px;
    border: 1px solid #008A3F;
    content: '';
    border-radius: 50px;
}

.wedo-txt .txt2 {
    font-size: 18px;
    letter-spacing: 0px;
    margin-bottom: 1em;
    text-align: left;
}

.sns-2 {
    padding: 2em 0;
}


.wedo .wedo-txt {
    display: flex;
    flex-wrap: wrap;
    text-align: center;

}

.wedo .wedo-txt>div {
    width: 48%;
    margin-left: 2em;
}

.wedo .wedo-txt .ml0 {
    margin-left: 0;
}

.wedo-txt p {
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
    text-align: left;
    line-height: 1.6;
}

.bk-img {
    background-image: url(../img/landing-page/news-bk.png);
    background-position: 0 8em;
    background-repeat: no-repeat;

}

.bk-img2 {
    background-image: url(../img/landing-page/news-bk.png);
    background-position: 0px 4em;
    background-repeat: no-repeat;
}

.bk-img3 {
    background-image: url(../img/landing-page/news-bk.png);
    background-position: 0px;
    background-repeat: no-repeat;
}

.bk-green {
    background: #dff6e9;
}

.bk-green2 {
    background: -moz-linear-gradient(top, #9FE5BF, #7FD8CE);
    background: -webkit-linear-gradient(top, #9FE5BF, #7FD8CE);
    background: linear-gradient(to bottom, #9FE5BF, #7FD8CE);
}

.green-txt {
    color: #008A3E;
}

.slash {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #008A3E;
    margin-bottom: 1.5em;
    font-size: 18px;
}

.slash::before,
.slash::after {
    content: "";
    width: 35px;
    height: 1px;
    background-color: #008A3E;
    margin: 0px 4px 0;
}

.slash::before {
    transform: rotate(45deg);
}

.slash::after {
    transform: rotate(-45deg);
}

.toggle_title {
    padding: 0 0 0 10px;
    position: relative;
}

.toggle_btn {
    display: inline-block;
    width: 100%;
    height: 80px;
    background: url(../img/landing-page/open.png) no-repeat center center;
    position: absolute;
    right: 5px;
    cursor: pointer;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.toggle_btn.selected {
    background: url(../img/landing-page/close.png) no-repeat center center;
}

.toggle_txt {
    display: none;
    padding: 0 6em;
}

.history-content {
    padding: 2em;
    padding-bottom: 8em;
    background: #fff;
    border-radius: 20px;
    margin: 1em;
    width: 40%;
    display: inline-block;
    vertical-align: text-top;
}

.history-content h4 {
    color: #008A3E;
    font-size: 34px;
    letter-spacing: 2px;
}

.history-content h4 small {
    font-weight: lighter;
    font-size: 18px;
}

.history-content p {
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 3em;
    text-align: left;
    line-height: 2;
}

.join-content {
    display: flex;
    margin-bottom: 5em;
}

.join-box {
    position: relative;
    margin-bottom: 0.2rem;
    padding: 3em 1rem;
    color: #353535;
    background: -moz-linear-gradient(top, #C0F8D9, #A5F2EA);
    background: -webkit-linear-gradient(top, #C0F8D9, #A5F2EA);
    background: linear-gradient(to bottom, #C0F8D9, #A5F2EA);
    font-weight: bold;
    font-size: 26px;
    text-align: center;
    width: 48%;
    margin: 0 2em;
}

.join-box:before {
    position: absolute;
    inset: 10px -10px -10px 10px;
    border: 1px solid #008A3F;
    content: '';
}

.join-box h5 {
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: lighter;
    line-height: 2;
    color: #486D5B;
    letter-spacing: 1px;
}

.voice-box {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.voice-box a {
    flex: 1;
}

.voice-content {
    background: #AEDFDC;
    padding: 2em;
    box-shadow: 5px 5px 0px #85BAAA;
    text-align: justify;
}

.voice-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.voice-top div {
    flex: 1;
}

.voice-top .txt {
    font-size: 28px;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.voice-top>div img {
    object-fit: cover;
}

.voice-content p {
    letter-spacing: 1.5px;
    line-height: 1.6;
}

.blog {
    color: #5c5c5c;
    padding-top: 5em;

}

.blog p {
    font-size: 16px;
    line-height: 2.5;
    text-align: justify;
}

.wp-block-heading {
    font-weight: lighter;
    margin-top: 2em;
}

.title h2 {
    font-size: 35px;
    font-weight: lighter;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 3em;
}

.title span {
    font-size: 28px;
    font-weight: lighter;
    letter-spacing: 2px;
}

.footer {
    background: linear-gradient(to right, #32A737, #34CBA7);
    color: #fff;
    padding: 3em 0;
}

.footer a {
    color: #fff;
}

#g-nav a {
    padding-right: 2em;
    letter-spacing: 1px;
    display: inline-block;
    margin: 0;
}

.footer-nav a {
    letter-spacing: 1px;
    display: inline-block;
    margin: 0;
}

#g-nav a:last-of-type {
    padding-right: 0;
}

.footer-nav span, #g-nav a span {
    display: block;
    font-size: 12px;
}

#g-nav a span {
    color: #008A3F;
}

.main-categorys {
    margin-bottom: 3em;
    padding-top: 2em;
}

.main-contacts {
    padding-top: 9em;
}

.main-contacts .red {
    color: #C50000;
}

.main-contacts .mb3 p {
    margin-bottom: 3em;
}

.copy {
    font-size: 12px;
    text-align: center;
    margin-top: 42px;
}

.sns a {
    display: inline-block;
    padding-right: 0;
}

.youtube-box {
    width: 100%;
    height: 420px;
}

/*============================================================
カテゴリー一覧
==============================================================*/
.full_content {
    text-align: center;
    position: relative;
    height: auto;
}
/*.ratio-1_1:before {
    content: "";
    display: block;
    padding-top: 100%; /* 1:1 */
}
.inner1 {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}*/
.tabmenu {
    color: #008a3f;
    display: inline-block;
    list-style: none;
    padding: 1em 0;
    text-align: center;
    cursor: pointer;
    font-size: 36px;
}

.tabmenu::before {
    content: "/";
    margin-left: .5em;
    margin-right: .5em;
}

.tabmenu:first-child::before {
    content: none;
}

.active, .hover {
    opacity: 0.5;
}

.tabmenu img:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";
}


.tabcontent {
    width: 100%;
    margin-top: 1em;
    left: 0;
    position: relative;
}

.tabcontent dl {
    max-width: 750px;
    margin: 20px auto;
}

.tabcontent dl dt {
    padding: 0 20px 5px;
    border-bottom: solid 1px #e2e2e2;
    margin-bottom: 10px;
}

.tab_title {
    margin-top: 10px;
    padding: 5px 20px 5px;
    font-weight: bold;
    border-bottom: 1px #999 solid;
}

.full_content .news-content {
    margin-top: 2em;
    margin-bottom: 1em;
    text-align: left;
    color: #5c5c5c;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
}
.full_content .news-box {
    color: #5C5C5C;
    font-size: 17px;
    width: calc((1480px - 500px) / 3);
    display: inline-block;
    text-align: left;
    background-color: #fff;
    margin: 0 10px;
    box-shadow: 0 10px 15px rgb(0 0 0 / 12%);
    vertical-align: top;
}

/*============================================================
ノーパソ
==============================================================*/
@media screen and (max-width: 1480px) {
    .wrap {
        max-width: 1200px;
        width: auto;
        margin: 0 auto;
        padding-left: 2em;
        padding-right: 2em;
        overflow: hidden;
    }

    #g-nav a {
        padding-right: 1em;
        margin-bottom: 1em;
    }

    .sns a {
        margin-top: 1em;
        width: auto;
        text-align: center;
    }

    .footer-nav a, #g-nav a {
        margin: 0;
        margin-bottom: 1em;
    }
}

#about {
    background: url(../img/landing-page/new-npo3.png) no-repeat center bottom;
    background-size: 80%;
}

.flex-box {
    display: flex;
    justify-content: space-between;
    padding-bottom: 23em;
}

.flex-box>img {
    width: 40%;
}

.wedo-txt h5 {
    font-size: 35px;
    line-height: 1.5;
    letter-spacing: 2px;
    margin-bottom: 0;
    font-weight: normal;
}

.wedo .wedo-txt {
    margin-bottom: 2em;
}

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
    display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
    background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
    padding: 0;
}
.tabmenu{
    color: #008a3f;
    font-size: 25px;
    display: inline-block;
    margin-top: 2em;
}
.main-categorys {
    margin-bottom: 3em;
    padding-top: 2em;
}
.join .voice-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
    text-align: right;
    gap: 20px 30px;
}
.join .voice-box a {
    flex: none;
    width: calc((1480px - 360px) / 3);
}
.join .voice-content {
    background: #AEDFDC;
    padding: 1em;
}
.join .voice-top .txt {
    font-size: 19px;
}
/*============================================================
スマホ
==============================================================*/
@media screen and (max-width: 999px) {
    .join .voice-box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        display: flex;
        text-align: right;
        gap: 0;
    }
    .join .voice-content {
        background: #AEDFDC;
        padding: 1em;
        margin-bottom: 0;
    }
    .voice-content p {
        letter-spacing: 0.5px;
        line-height: 1.5;
        font-size: 0.7em;
    }
    /*.join{*/
    /*    height: 210vh;*/
    /*}*/
    .full_content .news-box {
        margin: 2em 0;
    }
    .pc-dn {
        display: block;
    }

    .sp-dn {
        display: none;
    }

    .wrap {
        max-width: none;
        width: 100%;
        margin: 0 auto;
        padding-right: 20px;
        padding-left: 20px;
    }

    /*
    .contents .wrap {
        padding: 10vh 0 70vh 0;
    } */

    .text-box2 {
        padding: 10vh 0 100vh 0;
    }

    .text-box1, .text-box2, .text-box3, .text-box4, .text-box5, .text-box6, .text-box7, .text-box8>div, .text-box9, #content-1_bg h3, #content-1_bg h2 {
        width: auto;
        text-align: center;
    }

    .text-box8>div {
        font-size: 20px;
    }

    .text-box3 {
        font-size: 18px;
        letter-spacing: 0;
    }

    .content-1 {
        padding: 0;
    }

    .join-content {
        display: block;
    }

    .tar {
        text-align: center;
    }

    .history-content {
        padding: 1em 0;
        padding-bottom: 4em;
    }

    .section__h3 {
        font-size: 30px;
        letter-spacing: 2px;
    }

    .section__h4 {
        font-size: 20px;
        line-height: 1.5;
    }

    .header-bk .wrap {
        padding: 0;
    }

    #content01 h2, #content06 h2 {
        font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
        text-shadow: 0 0 10px #000;
        color: #fff;
        font-size: 45px;
        font-weight: lighter;
        letter-spacing: 3px;
    }

    #logo {
        padding: 0;
    }

    #logoimg {
        margin-top: 60%;
    }

    .content-1 .tar {
        text-align: right;
    }

    .text-box4 {
        padding: 1em;
        line-height: 1.5;
        font-size: 15px;
        margin-right: 1em;
        margin-top: 2em;
        letter-spacing: 0;
    }

    .text-box4 p {
        margin: 0;
    }

    .text-box5 {
        padding: 1em;
        line-height: 1.5;
        font-size: 15px;
        margin-left: 1em;
        margin-top: -15em;
        letter-spacing: 0;
    }

    .text-box5 p {
        margin: 0;
    }

    .join-box h5 {
        font-size: 17px;
        letter-spacing: 0;
        line-height: 1.5;
    }

    .join-content .news-btn {
        font-size: 17px;
    }

    #content-1_bg {
        background-size: contain;
    }

    .text-box6 {
        padding: 2em 0;
        letter-spacing: 1px;
        line-height: 1.5;
        font-size: 15px;
        text-align: center;
        display: inline-block;
    }

    .text-box7 {
        padding-bottom: 0em;
        padding-top: 0em;
        letter-spacing: 1px;
        line-height: 1.5;
        font-size: 15px;
    }

    .text-box7 p {
        padding: 0 2em;
    }

    #content-1_bg h2 .small {
        font-size: 18px;
        background: none;
    }

    #content-1_bg h2 small {
        font-size: 20px;
    }

    #content-1_bg h2 span {
        background: linear-gradient(transparent 80%, #EFFFEC 80%);
    }

    #content-1_bg h2 {
        font-size: 18px;
        letter-spacing: 0;
        font-weight: bold;
        text-align: left;
    }

    #content-1_bg h3 {
        font-size: 16px;
        padding: 1em 0.5em;
        letter-spacing: 2px;
        margin-top: 10em;
    }

    .section__h2 {
        font-size: 30px;
    }

    .section__h3 {
        font-size: 25px;
        letter-spacing: 1px;

    }

    .section__h3 span {
        font-size: 24px;
    }

    .news-box {
        color: #5C5C5C;
        font-size: 15px;
        width: 90%;
        margin-bottom: 3em;
    }

    .bk-img, .bk-img2 {
        background-size: contain;
    }

    .section__h4 {
        background-image: linear-gradient(90deg, #008a3f 0 26%, #ffffff00 23%);
        padding-bottom: 17px;
    }

    .wedo .wedo-txt {
        display: block;
    }

    .wedo .wedo-txt>div {
        width: 100%;
        margin-left: 0;
    }

    .wedo .wedo-txt>div p, .wedo-txt p, .wedo-txt .txt2 {
        font-size: 16px;
        text-align: justify;
        line-height: 1.5;
        letter-spacing: 0px;
        margin-bottom: 1.5em;
    }

    #news {
        padding-bottom: 0;
    }

    .wedo {
        padding-bottom: 0em;
    }

    .bk-green .section__h3 {
        font-size: 22px;
    }

    .history-content {
        margin: 0 2em;
        margin-top: 0;
        margin-bottom: 4em;
        padding-bottom: 6em;
    }

    .toggle_txt {
        font-size: 16px;
        padding: 0 1em;
    }

    .history-content p {
        font-size: 16px;
        letter-spacing: 0px;
        margin-bottom: 2em;
        text-align: left;
        line-height: 1.5;
    }

    .history-content h4 {
        font-size: 25px;
        letter-spacing: 0px;
    }

    .history-content h4 small {
        font-size: 14px;
    }

    .toggle_btn {
        background-size: 30%;
    }

    .toggle_btn.selected {
        background-size: 20%;
    }

    .toggle_contents img {
        width: 80%;
    }

    .join h4 {
        letter-spacing: 1px;
        padding: 0 0.5em;
    }

    .join-box {
        width: 75%;
        margin: 3em 1em;
    }

    .voice-box {
        display: block;
    }

    .voice-content {
        width: 75%;
        margin: 2em 1em;
    }

    .voice-box {
        display: block;
    }

    .voice-top {
        display: block;
    }

    .voice-top>div:first-child {
        width: 100%;
        text-align: center;
    }

    .voice-top .txt {
        font-size: 20px;
        letter-spacing: 0;
        margin: 10px 0;
    }

    .voice-content p {
        letter-spacing: 0.5px;
        line-height: 1.5;
    }

    .footer .tal {
        text-align: center;
    }

    .sns {
        margin-top: 2em;
    }

    .sns a, .sns-2 a {
        margin-right: 0em;
        margin-top: 0em;
        margin-bottom: 0.5em;
        padding-top: 0.4em;
        width: auto;
        vertical-align: middle;
    }

    .tabmenu {
        font-size: 20px;
        display: inline-block;
    }

    .main-categorys {
        margin-bottom: 3em;
    }

    .title h2 {
        font-size: 25px;
    }

    .title span {
        font-size: 20px;
    }

    .blog p {
        font-size: 16px;
        padding: 0 1em;
        line-height: 1.5;
    }

    .wp-block-heading {
        margin: 0 1em;
        margin-top: 2em;
    }

    .main-contacts {
        padding-top: 6em;
    }

    .main-contacts p {
        padding: 0 1em;
    }

    .footer-logo img {
        width: 50%;
        margin-top: 1em;
    }

    .drawer {
        width: 30%;
        padding-left: 0.5em;
    }

    #teamkudo h6 {
        font-size: 20px;
        font-weight: lighter;
        padding: 0 1em;
    }

    .slash {
        margin-bottom: 1em;
        padding: 0 0.5em;
    }

    /*============================================================
横スクロール-スマホ
==============================================================*/

    .scroll-box {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .scroll-box div img {
        max-width: 100%;
        min-width: 600px;
        vertical-align: top;
    }

    /*===========
scrollbar
===========*/
    /*スクロールバー全体の高さ*/
    .scroll-box::-webkit-scrollbar {
        height: 4px;
    }

    /*スクロールバー全体の背景*/
    .scroll-box::-webkit-scrollbar-track {
        background: #eee;
    }

    /*スクロールバーの動く部分*/
    .scroll-box::-webkit-scrollbar-thumb {
        background: #aaa;
        border: none;
    }

    /*スクロールバーの動く部分のホバー（マウスオーバー）*/
    .scroll-box::-webkit-scrollbar-thumb:hover {
        background: #999;
    }

    .reason-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: block;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        margin-top: 2em;
        margin-bottom: 27em;
    }


    /*============================================================
コンタクトフォーム-スマホ
==============================================================*/
    .form {
        max-width: 100%;
        display: inline-block;
    }

    .form__item {
        display: block;
    }

    .form__term {
        width: 46%;
    }

    .form__term.is-required {
        font-weight: bold;
        margin-top: 2em;
        margin-bottom: 0.5em;
    }

    .wpcf7 {
        padding-bottom: 2em;
    }

    label {
        display: block;
        text-align: left;
        margin: 0.5em 0;
    }

    .form__term {
        width: 100%;
    }

    .form__desc {
        width: 100%;
    }

    .form * {
        box-sizing: border-box;
        margin: 0;
    }

    .wrap-contact {
        padding: 1em;
        background: #fff;
        text-align: center;
    }

    .form__term.is-required {
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 0.5em;
        text-align: center;
        font-size: 17px;
    }

    .form__desc select {
        width: 100%;
        text-align: center;
        padding: 2em 0;
    }

    .form__term.is-required {
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 0.5em;
        text-align: center;
        font-size: 17px;
    }


    /*============================================================
ハンバーガーメニュー
==============================================================*/
    #g-nav {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
        top: 0;
        right: -120%;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: #fff;
        /*動き*/
        transition: all 0.6s;
    }

    /*アクティブクラスがついたら位置を0に*/
    #g-nav.panelactive {
        right: 0;
    }

    #g-nav-list .jp {
        padding: 0 2em;
        padding-top: 4em;
        flex-wrap: wrap;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        display: block;
    }

    .header-bk {
        top: 0;
        z-index: 999;
        padding: 0.5em;
    }

    /*ナビゲーション*/
    #g-nav ul {
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    #g-nav a {
        padding: 1em;
        letter-spacing: 1px;
        display: block;
        margin: 0;
        border-bottom: dashed 1px #008a3f;
        width: 100%;
    }

    #g-nav .bu-n {
        border-bottom: none;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn1 {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #008a3f;
        width: 45%;

    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    h1.fv {
        overflow: hidden;
        width: 100%;
    }

    h1.fv img {}

    .sp-wrap {
        padding: 0 2em !important;
        margin-top: 9px !important;
        overflow: hidden;
        text-align: center;
    }

    h2.fv {
        font-size: 20px;
    }

    .fs25 {
        font-size: 16px;
    }

    .w40 {
        width: 80%;
    }

    .w50 {
        width: 100%;
    }

    .wrap {
        max-width: none;
        width: auto;
        margin: 0 auto;
    }

    .slider {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .slick-list {
        height: 110vw;
    }

    #about {
        background-size: contain;
        margin-bottom: 3em;
    }

    .flex-box {
        display: block;
        padding-bottom: 10em;
        text-align: center;
        padding-top: 2em;
    }

    .flex-box>img {
        width: 90%;
        margin-bottom: 1em;
    }

    #news {
        padding-top: 3em;
    }
}

/* ==========================
2023.12.27 以下、中本追加
===========================*/

#g-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#g-nav .jp {
    display: flex;
    align-items: center;
}

#g-nav a {
    margin-bottom: 0;
}

#message .bg {
    text-align: center;
    position: relative;
}

#message .bg .message_bg {
    width: 100%;
}

#message .text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 360px;
    width: 360px;
    height: 360px;
}

#message .scroll {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#message .scroll p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

section.question {
    text-align: center;
    padding: 55px 0;
}

#answer {
    background: #DFF6E9;
    text-align: center;
    padding: 60px 0;
    font-size: 25px;
}

#answer h3 {
    font-size: 30px;
    letter-spacing: .1em;
}

#answer .randomAnime {
    visibility: hidden;
    font-size: 40px;
}

#answer .line-bg {
    position: relative;
    z-index: 1;
}

#answer .line-bg::after {
    position: absolute;
    content: '';
    background: url(../img/landing-page/white-line.png) no-repeat center/contain;
    width: 626.19px;
    height: 79.07px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

#answer img {
    width: 376px;
}

.question h2 {
    font-size: 40px;
    margin: 0;
    font-weight: 500;
}

#news {
    margin-top: 120px;
}

section h3 .en {
    font-family: YuMincho, serif;
}

#aboutus .container {
    display: flex;
    justify-content: center;
    gap: 10%;
    margin: 70px auto;
}

#aboutus .section__h3 {
    text-align: center;
    font-size: 25px;
}

#aboutus .box {
    position: relative;
    z-index: 1;
}

#aboutus .box::after {
    position: absolute;
    content: '';
    width: 456px;
    height: 457px;
    background: url(../img/landing-page/gr_circle.svg) no-repeat center/contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#aboutus h4 {
    text-align: center;
    font-size: 35px;
    margin: 0;
    font-weight: 600;
}

#aboutus p {
    max-width: 288px;
    margin: 20px auto;
    line-height: 1.6;
}

#aboutus {
    background: url(../img/landing-page/about_bg.png) no-repeat bottom/auto;
    padding-bottom: 350px;
}

#whatwedo .sub-title {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 600;
}

.history-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3em;
}

.join .section__h3 {
    margin: 30px 0;
}

.join .border {
    border-radius: 25px;
    background: #fff;
    padding: 25px 40px;
    height: calc(100% - 50px);
}

.join .box {
    border-radius: 30px;
    background: linear-gradient(to right, #9FE5BF, #7FD8CE);
    padding: 6px;
    flex: 1;
}

.join .container {
    display: flex;
    gap: 33px;
    justify-content: center;
}

.join p,
.join .green_btn {
    font-family: 'Noto Sans JP', 'Noto Sans Japanese', sans-serif;
}

a.green_btn {
    border-radius: 50px;
    background: #008A3E;
    color: #fff;
    padding: 15px 60px;
    font-weight: 300;
    display: inline-block;
    margin-bottom: 30px;
}

section.ku-chan {
    background: -moz-linear-gradient(top, #9FE5BF, #7FD8CE);
    background: -webkit-linear-gradient(top, #9FE5BF, #7FD8CE);
    background: linear-gradient(to bottom, #9FE5BF, #7FD8CE);
    max-width: 845px;
    margin: 80px auto;
    padding: 30px 50px;
    border-radius: 25px;
}

section.ku-chan h2 {
    color: #008A3E;
    text-align: center;
    font-size: 35px;
    font-weight: 600;
}

section.ku-chan p {
    font-family: 'Noto Sans JP', 'Noto Sans Japanese', sans-serif;
}

section.ku-chan .flex {
    display: flex;
    gap: 26px;
}

section.ku-chan .green_btn {
    flex: 1;
    text-align: center;
    font-family: 'Noto Sans JP', 'Noto Sans Japanese', sans-serif;
}

.sns-2 .slash {
    font-size: 30px;
    font-weight: 500;
}

.footer-nav .menu {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 1em auto 3em;
}

.footer-nav .sns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width:999px) {

    .text-box h1 {
        right: 10px;
    }

    #content01_bg {
        height: 80vh;
        background-position: 65% center;
    }

    #message .wrap {
        padding: 0;
    }

    #message .text {
        width: 207px;
        height: 207px;
    }

    #message .scroll p {
        white-space: nowrap;
        font-size: 14px;
    }

    #message .scroll img {
        width: 50px;
    }

    .question h2 {
        font-size: 24px;
    }

    #answer {
        font-size: 16px;
        padding: 40px 0;
    }

    #answer .randomAnime {
        font-size: 20px;
    }

    #answer h3 {
        font-size: 16px;
    }

    #answer .line-bg::after {
        width: 327.72px;
        height: 41.38px;
    }

    #news {
        margin-top: 0;
    }

    .news-content {
        gap: 0;
        flex-wrap: wrap;
    }

    #news .mt5 {
        margin-top: 0;
    }

    .section__h2 {
        font-size: 32px;
        padding-top: 0;
    }

    #aboutus .container {
        margin: 20px auto 37px;
        flex-wrap: wrap;
        gap: 70px;
    }

    #aboutus h4 {
        font-size: 24px;

    }

    #aboutus {
        padding-bottom: 285px;
        background: url(../img/landing-page/about_bg.png) no-repeat bottom/contain;
    }

    #aboutus .box::after {
        width: 342px;
    }

    #whatwedo .sub-title {
        margin-bottom: 20px;
        font-size: 18px;
        text-align: left;
    }

    .history-list {
        gap: 30px;
        margin-top: 2em;
    }

    .history-content {
        width: 100%;
        margin: 0;
    }

    .wedo .wedo-txt>div {
        margin-bottom: 20px;
    }

    .youtube-box {
        height: auto;
        aspect-ratio: 16/9;
    }

    #teamkudo.pb6 {
        padding-bottom: 3em;
    }

    .section__h3 small {
        font-size: 24px;
    }

    .join .container {
        flex-wrap: wrap;
    }

    .join .box {
        flex: auto;
    }

    .join .border {
        padding: 25px;
    }

    #voice.pb6 {
        padding-bottom: 3em;
    }

    #column .mt3 {
        margin-top: 0;
    }

    section.ku-chan {
        padding: 20px 10px;
        margin: 20px;
    }

    section.ku-chan .wrap {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 30px;
    }

    section.ku-chan h2 {
        font-size: 24px;
    }

    section.ku-chan .flex {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    section.ku-chan .green_btn {
        margin-bottom: 0;
        flex: auto;
        width: 100%;
        padding: 15px;
    }

    .sns-2 .slash {
        font-size: 22px;
    }

    .footer-nav .sns {
        flex-wrap: wrap;
        gap: 20px;
    }

    #aboutus .section__h3 span,
    .section__h3 small {
        font-size: 18px;
    }

    #aboutus .section__h3 {
        margin-bottom: 15px;
    }

    .footer-nav .menu {
        flex-wrap: wrap;
    }
}

#fixedButton {
    position: fixed;
    bottom: 0;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 80%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.fixedButton__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #DFF6E9;
    padding: 20px 46px;
    font-size: 18px;
    border-radius: 15px 15px 0px 0px;
}

#fixedButton p {
    margin: 0;
    color: #585858;
}

#fixedButton .link {
    color: #008A3F;
    font-weight: 800;
}

.lb-news-category{
    color: #008A3F!important;
}

.lb-news-category:not(.lb-news-category:first-child)::before{
    content: "/";
    margin-left: .5em;
    margin-right: .5em;
}


.lb-post{
    padding-top: 5rem;
    color: #5c5c5c;
}
.lb-article-heading{
    text-align:  center;
    margin-bottom: 3rem;
}
.lb-article-created-at{
    font-size: 1.6rem;
    font-weight: lighter;
    letter-spacing: 2px;
    margin:unset;
}

.lb-article-title{
    font-size: 2.3rem;
    font-weight: lighter;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 3em;
}

.lb-article-content p{
    margin-block: 16px;
    line-height: 2.5;
    font-size: 16px;
}
.lb-article-content h2{
    font-weight: lighter;
    margin-top: 2em;
}
.lb-article-back-wrapper{
    padding-bottom: 3rem;
    margin-top: 8rem;
}

.lb-article-back-button{
    text-align: center;
    margin-bottom: 0.2rem;
    padding: 0.5rem 3rem;
    color: #fff!important;
    background-color: #008A3F;
    font-weight: lighter;
    font-size: 18px;
    text-align: center;
    display: block;
    width: fit-content;
    border-radius: 999px;
    margin-inline: auto;
    position: relative;
}
.lb-article-back-button:hover{
    opacity: 0.5;
    color: white;
}

.lb-article-back-button::before{
    content: "";
    position: absolute;
    inset: 3px -3px -3px 3px;
    border: 1px solid #008A3F;
    border-radius: 50px;
}

.custom-btn{
    display: inline-block;
    font-size: 1.125rem;
    padding: calc(.667rem + 2px) calc(1.333rem + 2px);
    background: #008a3f;
    color: #FFF !important;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid #008a3f;
}

.custom-btn-outline{
    background: transparent;
    color: #008a3f !important;
}

.tiktok-embed{
    margin:unset!important;
}

@media (max-width:999px) {

    #fixedButton {
        width: 95%;
        bottom: 10px;
    }

    .fixedButton__inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px;
        border-radius: 15px;
    }
}
