@charset "utf-8";

:root {
    --accent-color: #005792;
    --font-color: #394348;
    --hover-color: #53cde2;
}

html {
    font-size: 62.5%;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    color: #394348;
    padding-top: 58px;
}



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

header {
    position: fixed;
    top: 0;
    z-index: 5;
    width: 100%;
    background-color: #FFF;
    box-shadow: 0 4px 10px -1px #6f6f6f6b;
}

.header-wrap {
    display: flex;
    justify-content: space-between;
    transition: all .2s;
}

.header-wrap .logo {
    max-width: 270px;
    width: 100%;
    padding: 15px 20px;
}

.header-wrap .logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-wrap .nav-wrap {
    display: flex;
    align-items: center;
    width: calc(100% - 230px);
    background-color: var(--accent-color);
}

.header-wrap .nav-wrap ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-wrap .nav-wrap ul li {
    position: relative;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    transition: all .2s;
    border-left: 1px solid #FFF;
    padding: 13px 10px;
}

.nav-list li:hover {
    background-color: var(--hover-color);
    transition: all .2s;
}

.header-wrap .nav-wrap ul li a {
    font-size: 1.5rem;
    color: #FFF;
}

.header-wrap .sp-nav-wrap {
    display: none;
}

.bg-black {
    display: none;
}

.hov-style {
    opacity: 0;
    visibility: hidden;
    background-color: var(--accent-color);
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    transition: all .2s;
    width: 100%;
}

.hov-style a {
    display: block;
    padding: 13px 10px;
    border-top: 1px solid #FFF;
}

.hov-style a:hover {
    transition: all .2s;
    background-color: var(--hover-color);
}

.hov1:hover .inner-hov1,
.hov2:hover .inner-hov2,
.hov3:hover .inner-hov3,
.hov4:hover .inner-hov4 {
    opacity: 1;
    visibility: visible;
    transition: all .2s;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.swiper-container li {
    font-size: 0;
}

.topswiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    margin-top: 20px;
    text-align: center;
}

.topslider .swiper-slide a {
    pointer-events: none;
    cursor: pointer;
}

.topslider .swiper-slide-active img {
    filter: none;
    max-height: 800px;
    object-fit: cover;
    pointer-events: none;
}

.topslider img {
    filter: brightness(0.6);
}

.topslider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
}

.topslider.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

@media screen and (min-width: 769px) {
    .topslider .swiper-pagination-top.swiper-pagination-clickable.swiper-pagination-bullets {
        margin-top: 15px;
    }

    .topslider .swiper-pagination-bullet {
        width: 17px;
        height: 17px;
    }
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .header-wrap .nav-wrap {
        display: none;
    }

    .topswiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
        margin-top: 8px;
    }

    .topslider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }

    .header-wrap .sp-nav-wrap {
        display: flex;
    }

    .openbtn {
        position: relative;
        z-index: 10;
        cursor: pointer;
        width: 50px;
        height: 50px;
        top: -1px;
    }

    .openbtn::after {
        content: "MENU";
        color: var(--font-color);
        position: absolute;
        bottom: -2px;
        right: 9px;
    }

    .openbtn.active::after {
        content: "CLOSE";
        color: var(--font-color);
        position: absolute;
        bottom: -2px;
        right: 9px;
    }

    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 10px;
        height: 2px;
        background: var(--font-color);
        width: 60%;
    }

    .openbtn span:nth-of-type(1) {
        top: 14px;
    }

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

    .openbtn span:nth-of-type(3) {
        top: 32px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 9px;
        transform: translateY(6px) rotate(-45deg);
        width: 60%;
        background-color: var(--font-color);
    }

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

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 9px;
        transform: translateY(-6px) rotate(45deg);
        width: 60%;
        background-color: var(--font-color);
    }

    .sp-menu-drawer {
        position: absolute;
        z-index: 3;
        right: 0;
        top: 60px;
        width: 100%;
        transition: all .3s !important;
        visibility: hidden;
        opacity: 0;
        background-color: #005792;
    }

    .sp-menu-drawer.active {
        visibility: visible;
        opacity: 1;
        right: 0;
    }

    .sp-nav-list li {
        position: relative;
    }

    .sp-nav-list .nav-link {
        color: #FFF;
        font-size: 1.6rem;
        display: block;
        padding: 10px 15px;
        border-bottom: 1px solid #FFF;
    }

    .header-wrap {
        padding: 5px 10px;
        transition: all .2s !important;
    }

    .header-wrap.active {
        transition: all .1s !important;
    }

    .bg-black {
        position: fixed;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        display: initial;
        background-color: #00000080;
        width: 100vh;
        height: 100vh;
        left: 0;
        top: 0;
        transition: all .3s;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

    .bg-black.active {
        opacity: 1;
        visibility: visible;
        transition: all .3s;
    }

    .openbtn.black span {
        background-color: var(--font-color);
    }

    .openbtn.black:after {
        color: var(--font-color);
    }

    .nav-icon {
        position: absolute;
        width: 40px;
        height: 40px;
        top: 23px;
        right: 4px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    .nav-icon::before {
        position: absolute;
        content: '';
        width: 15px;
        height: 2px;
        background-color: #FFF;
        top: 48%;
        right: 30%;
        transform: rotate(0deg);
    }

    .nav-icon::after {
        position: absolute;
        content: '';
        width: 15px;
        height: 2px;
        background-color: #FFF;
        top: 48%;
        right: 30%;
        transform: rotate(90deg);
    }

    .nav-icon.open::after {
        display: none;
    }

    .ac-box {
        display: none;
    }

    .ac-box a {
        display: block;
        color: #FFF;
        border-bottom: 1px solid #FFF;
        padding: 10px 15px 10px 30px;
        font-size: 1.5rem;
    }

    .header-wrap .logo {
        max-width: 220px;
        width: 100%;
        padding: 13px 10px 7px 10px;
    }
}



/* --------------------------------
/* --------------------------------
 * ファーストビュー
 * --------------------------------
 * -------------------------------- */

.wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px;
}

.important-wrap {
    background-color: #e33f3f;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
}

.important-wrap .left-con {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.important-wrap .left-con .icon {
    color: #FFF;
    display: inline-block;
    font-weight: bold;
    border-radius: 30px;
    border: 3px solid #FFF;
    padding: 7px;
    font-size: 2.4rem;
    line-height: 1;
}

.important-wrap .left-con h2 {
    color: #FFF;
    font-size: 2.4rem;
    font-weight: bold;
    padding: 10px 0;
}

.important-wrap .left-con a {
    padding: 8px 60px 8px 60px;
    background-color: #FFF;
    color: #e33f3f;
    margin-top: 10px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 20px;
}

.important-wrap .right-con {
    width: 70%;
    background-color: #FFF;
    border: 3px solid #e33f3f;
    padding: 20px 40px;
    border-radius: 0 10px 10px 0;
}

.important-wrap .right-con p {
    font-size: 1.5rem;
    padding: 5px 0;
    display: flex;
}

.important-wrap .right-con p .date {
    margin-right: 3%;
    font-weight: bold;
    color: #e33f3f;
    letter-spacing: 0.08rem;
}

.important-wrap .right-con p .text {
    width: calc(100% - 100px);
    font-weight: bold;
    color: #394348;
}

.important-wrap .right-con p .text a {
    font-weight: bold;
    color: #e33f3f;
    text-decoration: underline;
}

.important-wrap .left-con .title-box {
    text-align: center;
}


@media screen and (max-width: 768px) {
    .important-wrap .left-con {
        width: 100%;
        flex-direction: initial;
        padding: 10px 15px 7px 15px;
        justify-content: space-between;
    }

    .important-wrap .left-con .title-box {
        display: flex;
        align-items: center;
    }

    .important-wrap .left-con .icon {
        margin-right: 7px;
        font-size: 1.4rem;
        border: 2px solid #FFF;
    }

    .important-wrap .left-con h2 {
        font-size: 1.6rem;
        padding: 5px 0;
    }

    .important-wrap .left-con a {
        margin-top: 0;
        font-size: 1.4rem;
        padding: 8px 40px 8px 20px;
    }

    .important-wrap .right-con {
        width: 100%;
        border-radius: 0px 0px 10px 10px;
        padding: 10px 20px;
    }

    .important-wrap .right-con p {
        flex-direction: column;
        padding: 10px 0;
    }

    .important-wrap .right-con p .text {
        width: 100%;
    }
}




/* --------------------------------
/* --------------------------------
 * 更新系コンテンツ
 * --------------------------------
 * -------------------------------- */

.flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.update-wrap {
    width: 47%;
}

.update-wrap .title-box {
    display: flex;
    justify-content: space-between;
}

.update-wrap .title-box h2 {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 2.8rem;
    font-weight: bold;
}

.update-wrap .title-box h2::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 100%;
    background-color: var(--accent-color);
    margin-right: 10px;
}

.update-wrap .title-box a {
    font-size: 1.5rem;
    background-color: var(--accent-color);
    padding: 8px 40px;
    border-radius: 20px;
}

.white {
    color: #FFF !important;
}

.white::after {
    border-top: 1px solid #FFF !important;
    border-right: 1px solid #FFF !important;
}

.update-wrap .text-box {
    padding: 10px 0;
}

.update-wrap .text-box a {
    display: flex;
    align-items: center;
    color: var(--font-color);
    border-bottom: 1px solid #ccc;
    padding: 18px 0 15px 0;
}

.update-wrap .text-box a .day {
    font-size: 1.5rem;
    border-right: 1px solid #ccc;
    margin-right: 20px;
    padding-right: 20px;
    padding-left: 10px;
}

.update-wrap .text-box a .title {
    font-size: 1.5rem;
    padding-right: 20px;
}

.gray::after {
    right: 10px !important;
    border-top: 1px solid #394348 !important;
    border-right: 1px solid #394348 !important;
}

.wrapper .top-task-wrapper {
    width: 100%;
    margin-top: 60px;
}

.bnr-img-wrap {
    display: flex;
    flex-wrap: wrap;
}

.bnr-img-wrap a {
    margin-right: 2%;
    margin-bottom: 2%;
}

/*
.bnr-img-wrap a:nth-child(4n) {
    margin-right: 0;
}
*/

@media screen and (max-width: 768px) {
    .update-wrap {
        width: 100%;
        margin-bottom: 50px;
    }

    .update-wrap .title-box h2 {
        font-size: 1.8rem;
    }

    .update-wrap .title-box a {
        padding: 9px 35px 9px 25px;
        font-size: 1.4rem;
    }

    .update-wrap .title-box h2::before {
        height: 80%;
    }

    .update-wrap .text-box a {
        flex-direction: column;
        align-items: start;
        padding: 16px 0 13px 0;
    }

    .update-wrap .text-box a .day {
        padding: 0;
        border: none;
    }

    .wrapper .top-task-wrapper {
        margin-bottom: 0;
        margin-top: 10px;
    }

    .bnr-img-wrap a {
        width: 49%;
        margin-right: 1%;
        margin-bottom: 1%;
    }

    /*
    .bnr-img-wrap a:nth-child(2n) {
        margin-right: 0;
    }
    */
}

@media screen and (max-width: 500px) {
    .bnr-img-wrap a {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
}




/* --------------------------------
/* --------------------------------
 * フッター
 * --------------------------------
 * -------------------------------- */

.ad-img-wrap {
    display: flex;
    flex-wrap: wrap;
}

.ad-img-wrap a {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
}

.ad-img-wrap a:nth-child(4n) {
    margin-right: 0;
}

footer {
    background-color: var(--accent-color);
    margin-top: 50px;
}

.footer-con {
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-con .left-con {
    width: 30%;
}

.footer-con .left-con .text-box {
    margin-top: 20px;
}

.footer-con .left-con .text-box p {
    color: #FFF;
    font-size: 1.5rem;
}

.footer-con .right-con {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-con .right-con .con {
    width: 30%;
}

.footer-con .right-con .con .title {
    color: #FFF;
    font-size: 2rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #FFF;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.footer-con .right-con .con img {
    width: 22px;
    margin-right: 7px;
}

.footer-con .right-con .con a {
    color: #FFF;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.footer-con .right-con .con a:hover {
    text-decoration: underline;
}

.mt40 {
    margin-top: 40px;
}

.copywrite {
    width: 100%;
    text-align: center;
    color: #FFF;
    font-size: 1.2rem;
    padding: 80px 10px 0px 10px;
}

@media screen and (max-width: 768px) {
    .ad-img-wrap a {
        width: 49%;
        margin-right: 1%;
        margin-bottom: 1%;
    }

    .ad-img-wrap a:nth-child(2n) {
        margin-right: 0;
    }

    .footer-con .left-con {
        width: 100%;
        margin-bottom: 50px;
    }

    .footer-con .right-con {
        width: 100%;
    }

    .footer-con .left-con .img-box img {
        max-width: 270px;
        width: 100%;
    }

    .footer-con .right-con .con {
        width: 100%;
        margin-bottom: 30px;
    }

    .copywrite {
        padding: 20px 10px 0px 10px;
    }
}

@media screen and (max-width: 500px) {
    .ad-img-wrap a {
        width: 100%;
        margin: 0;
        margin-bottom: 20px;
    }
}



/* --------------------------------
/* --------------------------------
 * 汎用
 * --------------------------------
 * -------------------------------- */

.arrow {
    position: relative;
    display: inline-block;
    color: #e33f3f;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}

.arrow::after,
.arrow::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.arrow-01::after {
    width: 7px;
    right: 20px;
    height: 7px;
    border-top: 1px solid #e33f3f;
    border-right: 1px solid #e33f3f;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .3s;
}

.page-wrapper .mt5 {
    margin-top: 5px;
}

.page-wrapper .mt10 {
    margin-top: 10px;
}

.page-wrapper .mt15 {
    margin-top: 15px;
}

.page-wrapper .mt20 {
    margin-top: 20px;
}

.page-wrapper .mt25 {
    margin-top: 25px;
}

.page-wrapper .mt30 {
    margin-top: 30px;
}

.page-wrapper .mt35 {
    margin-top: 35px;
}

.page-wrapper .mt40 {
    margin-top: 40px;
}

.page-wrapper .mt45 {
    margin-top: 45px;
}

.page-wrapper .mt50 {
    margin-top: 50px;
}

.page-wrapper .mb5 {
    margin-bottom: 5px;
}

.page-wrapper .mb10 {
    margin-bottom: 10px;
}

.page-wrapper .mb15 {
    margin-bottom: 15px;
}

.page-wrapper .mb20 {
    margin-bottom: 20px;
}

.page-wrapper .mb25 {
    margin-bottom: 25px;
}

.page-wrapper .mb30 {
    margin-bottom: 30px;
}

.page-wrapper .mb35 {
    margin-bottom: 35px;
}

.page-wrapper .mb40 {
    margin-bottom: 40px;
}

.page-wrapper .mb45 {
    margin-bottom: 45px;
}

.page-wrapper .mb50 {
    margin-bottom: 50px;
}



/* --------------------------------
/* --------------------------------
 * 下層ページ
 * --------------------------------
 * -------------------------------- */

.sub-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.sub-wrapper img {
    width: 100vw;
    height: 350px;
    object-fit: cover;
}

.sub-wrapper h2 {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #fff;
    transition: .5s;
    letter-spacing: 0.2rem;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    width: 80%;
}

.sub-wrapper::after {
    content: "";
    position: absolute;
    z-index: 1;
    background: url(http://kamt.xsrv.jp/wp/wp-content/uploads/2022/12/add-bg.png);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.blog-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.blog-wrapper .left-box {
    width: 75%;
}

.blog-wrapper .left-box h3 {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 2.8rem;
    font-weight: bold;
}

.blog-wrapper .left-box h3::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 30px;
    background-color: var(--accent-color);
    margin-right: 10px;
}

.blog-wrapper .left-box .blog-list {
    margin-top: 20px;
}

.blog-wrapper .left-box .blog-list a {
    display: flex;
    align-items: center;
    color: var(--font-color);
    border-bottom: 1px solid #ccc;
    padding: 18px 0 15px 0;
    padding-right: 25px;
}

.blog-wrapper .left-box .blog-list a .day {
    font-size: 1.5rem;
    border-right: 1px solid #ccc;
    margin-right: 20px;
    padding-right: 20px;
    padding-left: 10px;
}

.blog-wrapper .left-box .blog-list a .title {
    font-size: 1.5rem;
}

.blog-wrapper .right-box {
    width: 20%;
    min-width: 220px;
    margin-left: 20px;
}

.wp-pagenavi {
    margin-top: 40px;
    font-size: 1.5rem;
}

.wp-pagenavi span.current {
    margin: 0px 5px;
    background-color: #a6a6a6;
    color: #FFF;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    border-radius: 20px;
}

.wp-pagenavi .page.larger,
.wp-pagenavi .page.smaller,
.previouspostslink,
.nextpostslink {
    margin: 0px 5px;
    background-color: #005792;
    color: #FFF;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border-radius: 20px;
}

.extend {
    padding: 0px 5px;
}

.monthly-list {
    background-color: #f6f3f3;
    padding: 20px;
    position: sticky;
    top: 80px;
}

.monthly-archive-title {
    font-size: 1.5rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    font-weight: bold;
}

.archive-list .year {
    font-size: 1.5rem;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    cursor: pointer;
}

.month-archive-list {
    display: none;
    margin-top: 10px;
}

.month-archive-list li {
    font-size: 1.5rem;
    padding: 2px 0;
}

.month-archive-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.monthly-list li a {
    width: 100%;
    color: var(--font-color);
}

.contents-box object {
    width: 100%;
    height: 80vh;
    display: none;
}

.contents-box embed {
    width: 100%;
    height: 80vh;
    display: none;
}

.contents-box object.active {
    display: block;
}

.contents-box embed.active {
    display: block;
}

.blog-page-top h2 {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 2.2rem;
    font-weight: bold;
    margin: 40px 0;
}

.blog-page-top h2::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 30px;
    background-color: var(--accent-color);
    margin-right: 10px;
}

.blog-title {
    margin-bottom: 40px;
}

.blog-title p {
    font-size: 1.5rem;
}

.blog-title a {
    font-size: 1.5rem;
    text-decoration: underline;
}

.blog-text {
    margin-top: 40px;
    font-size: 1.5rem;
}

.contact-form-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.contact-title {
    width: 15%;
    color: var(--font-color);
    font-weight: bold;
}

.hissu {
    color: #FFF;
    background-color: #d50000;
    font-size: 0.8em;
    font-weight: bold;
    padding: 5px 10px 5px 10px;
    min-width: 49px;
}

.ninni {
    color: #FFF;
    background-color: #898989;
    font-size: 0.8em;
    font-weight: bold;
    padding: 5px 10px 5px 10px;
    min-width: 49px;

}

.contact-form-flex p {
    margin: 0;
    font-size: 1.5rem;
}

.wpcf7-form-control-wrap {
    width: 100%;
    padding-left: 40px;
}

.wpcf7-form-control {
    border: 1px solid var(--font-color);
    height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    width: 500px;
}

.wpcf7-not-valid-tip {
    display: none !important;
}

.textarea-box {
    align-items: flex-start;
}

textarea {
    -webkit-appearance: none;
    height: auto !important;
    padding-top: 13px;
}

.service-box {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    padding: 10px 20px;
}

.service-box p {
    color: var(--font-color);
    text-align: left;
    padding-top: 2em;
    padding-bottom: 2em;
    font-size: 1.5rem;
    font-weight: bold;
}

.privacy-link {
    text-decoration: underline;
}

input[type="submit"] {
    height: auto !important;
    padding: 20px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    border-radius: 0;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    white-space: normal;
}

.textarea-box .contact-title p {
    margin-top: 10px;
}

.textarea-box .tag {
    margin-top: 10px;
}

.contact-btn {
    width: 100%;
    max-width: 790px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
}

.wpcf7-response-output {
    display: none;
}

.wpcf7-response-output[aria-hidden="true"] {
    display: block;
    font-size: 1.5rem;
    margin-top: 40px;
    border: 2px solid #d50000;
    padding: 20px;
    background-color: #efefef;
    color: #d50000;
}

.wpcf7-response-output.ok[aria-hidden="true"] {
    border: 2px solid #e8ffe9;
    background-color: #e8ffe9;
    color: var(--font-color);
}

#wpcf7-f80-p81-o1-ve-your-name,
#wpcf7-f80-p81-o1-ve-kana,
#wpcf7-f80-p81-o1-ve-your-email {
    display: none;
}

.screen-reader-response p {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 40px;
    border: 2px solid #d50000;
    padding: 20px;
    background-color: #efefef;
    color: #d50000;
}

.screen-reader-response p.ok {
    border: 2px solid #e8ffe9;
    background-color: #e8ffe9;
    color: var(--font-color);
}

.page-wrapper {
    margin-top: 40px;
    font-size: 1.5rem;
}

.update-wrap .text-box div p {
    font-size: 1.5rem;
    margin-top: 20px;
}

#loading {
    width: 100vw;
    height: 100vh;
    transition: all 0.5s;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.loaded {
    opacity: 0;
    visibility: hidden;
}

.add-pd {
    display: block;
    padding: 40px 0;
}

.page-wrapper h2 {
    text-align: center;
    font-size: 3.0rem;
    font-weight: bold;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-wrapper h2::after {
    content: '';
    display: inline-block;
    width: 100%;
    max-width: 150px;
    height: 4px;
    background-color: var(--accent-color);
    margin-top: 10px;
}

.page-wrapper h3 {
    font-size: 2.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 40px;
}

.page-wrapper h3:first-child {
    padding-top: 0;
}

.page-wrapper h4 {
    font-weight: bold;
    padding: 15px 0 5px 0;
}

.page-wrapper h3::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 30px;
    background-color: var(--accent-color);
    margin-right: 10px;
}

.page-wrapper ul li {
    display: flex;
}

.page-wrapper ul li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    min-width: 5px;
    background-color: var(--accent-color);
    margin-right: 5px;
    border-radius: 10px;
    margin-top: 10px;
}

.page-wrapper .btn-01 {
    color: #FFF;
    display: inline-block;
    background-color: var(--accent-color);
    padding: 7px 20px;
    border-radius: 20px;
    margin: 10px 0;
}

.page-wrapper .btn-02 {
    color: #FFF;
    display: inline-block;
    background-color: #9b9b9b;
    padding: 7px 20px;
    border-radius: 20px;
    margin: 10px 0;
}

.page-wrapper .table-01,
.page-wrapper .table-02 {
    width: 100%;
}

.page-wrapper .table-01 tr {
    border-bottom: 1px solid #999;
}

.page-wrapper .table-01 tr:first-child {
    border-top: 1px solid #999;
}

.page-wrapper .table-01 th,
.page-wrapper .table-02 th {
    font-weight: bold;
    padding: 10px;
}

.page-wrapper .table-01 td,
.page-wrapper .table-02 td {
    padding: 10px;
}

.page-wrapper .table-02 th {
    border: 1px solid #999;
}

.page-wrapper .table-02 td {
    border: 1px solid #999;
}

.page-wrapper ul,
.page-wrapper ol {
    margin-bottom: 30px;
    list-style: auto;
    margin-left: 1em;
}

.page-wrapper ul {
    margin-left: 0;
}

.page-wrapper ul ol,
.page-wrapper ol ul {
    margin-bottom: 0;
}

.wpcf7 .screen-reader-response.active {
    position: initial;
    overflow: visible;
    clip: initial;
    clip-path: inherit;
    width: auto;
    height: auto;
}

.wpcf7 .screen-reader-response ul {
    display: none !important;
}

@media screen and (max-width: 768px) {
    .contact-form-flex {
        flex-wrap: wrap;
        justify-content: left;
    }

    .contact-title {
        width: auto;
    }

    .hissu,
    .ninni {
        margin-left: 10px;
    }

    .contact-form-flex p {
        margin: 0;
        margin-top: 10px;
        width: 100%;
    }

    .wpcf7-form-control-wrap {
        padding: 0;
        padding-top: 1em;
    }

    .wpcf7-form-control {
        padding: 10px;
        width: 100%;
        font-size: 1.4rem;
    }

    .textarea-box {
        align-items: center;
    }

    .textarea-box .tag {
        margin-top: 0;
    }

    .blog-wrapper {
        flex-wrap: wrap;
    }

    .sub-wrapper h2 {
        font-size: 2.8rem;
        width: 90%;
        text-align: center;
    }

    .blog-wrapper .left-box {
        width: 100%;
    }

    .blog-wrapper .right-box {
        margin-left: 0;
        width: 100%;
        margin-top: 40px;
    }

    .sub-wrapper {
        height: 220px;
    }

    .sub-wrapper img {
        height: 220px;
    }

    .page-wrapper {
        margin-top: 0;
    }

    .page-wrapper h2 {
        font-size: 2.2rem;
        text-align: left;
    }

    .page-wrapper h2::after {
        max-width: inherit;
    }

    .page-wrapper h3 {
        font-size: 1.8rem;
    }

    .table-01 {
        display: block;
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .table-02 {
        display: table;
        overflow-x: auto;
        white-space: initial;
    }

    .table-02 tr {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .page-wrapper .table-02 td {
        border-top: none;
    }
}