@charset "UTF-8";

html{
    font-size: 100%;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}

a{
    text-decoration: none;
    color: #333;
}

p{
    font-size: 1.3rem;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
    font-size: 1.2rem;
}

/* hover */
.header-fixed-icon-image:hover,.header-fixed-icon>a>p>span:hover,.header-fixed-sns-nav-item>a>img:hover,.header-side-icon-image:hover,.header-side-sns-nav-item>a>img:hover,.header-sp-icon-image:hover,.header-sp-sns-nav-item>a>img:hover,.menu-modal-open-button:hover,.pankuzu>a:hover,.footer-mtf>a:hover,.footer-nav-item>a:hover{
    opacity: 0.5;
}

/* header */
.header{
    position: relative;
}

.header-fixed{
    position: fixed;
    width: 100%;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 150;
    transition: transform 0.3s ease-in-out; /* スライドイン・アウトのアニメーション */
    transform: translateY(-100%); /* 画面上部から隠す */
}

.header-fixed.visible{
    transform: translateY(0); /* 画面内に表示 */
}

.header-fixed-icon{
    position: absolute;
    top: 15px;
    left: 30px;
}

.header-fixed-icon-image{
    width: 100px;
}

.header-fixed-icon>a>p>span{
    font-size: 2.0rem;
    font-weight: 600;
    margin-right: 10px;
    line-height: 0.75;
}

.header-fixed-nav{
    position: absolute;
    top: 20px;
    right: 20px;
}

.header-fixed-nav-list{
    display: flex;
    gap: 15px;
    margin: 5px 0;
}

.header-fixed-nav-item{
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 255, 0);
}

.header-fixed-nav-item::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #3EB370;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;   /*変形の時間*/
}

.header-fixed-nav-item:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header-fixed-nav-item>a{
    font-weight: 500;
}

.header-fixed-sns-nav-list{
    align-items: center;
    display: flex;
    justify-content: right;
}

.header-fixed-sns-nav-item{
    margin: 5px 10px;
}

.header-fixed-sns-nav-item>a>img{
    width: 35px;
}

.header-side{
    position: absolute;
    top: 250px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px gray;
    padding: 25px;
    border-radius: 25px 5px;
    z-index: 200;
}

.header-side-icon-image{
    width: 100px;
}

.header-side-icon>p>span{
    font-size: 2.0rem;
    font-weight: 600;
    margin-right: 10px;
}

.header-side-sns-nav{
    margin: 10px 0;
}

.header-side-sns-nav-list{
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.header-side-nav-item{
    position: relative;
    margin-left: 10px;
    padding: 5px;
    width: fit-content;
    font-size: 1.5rem;
    font-weight: 600;
}

.header-side-nav-item>a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #3EB370;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;   /*変形の時間*/
}

.header-side-nav-item>a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header-side-sns-nav-item>a>img{
    width: 40px;
}

.header-sp{
    display: none;
    position: relative;
    z-index: 200;
}

.header-sp-menu{
    position: fixed;
    display: flex;
    justify-content: space-between;    
    width: 80%;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 0 8px gray;
    border-radius: 15px;
    padding: 10px 20px;
    align-items: center;
    z-index: 200;
}

.header-sp-sns-nav{
    width: 100%;
    padding-top: 5px;
}

.header-side-sns-nav>p{
    font-weight: 600;
}

.header-sp-sns-nav-list{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.header-sp-sns-nav-item:not(:first-child){
    margin-left: 10px;
}

.header-sp-sns-nav-item>a>img{
    width: 40px;
}

.header-menu-modal{
    padding: 0 15px 0 0;
}

.menu-modal-open-button{
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 999;
}

.menu-modal-open{
    content: "";
    position: center;
    z-index: 999;
    width: 25px;
    display: block; 
}

.menu-modal-open i{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - 0px);
    width: 100%;
    height: 2px;
}

.menu-modal-open::before{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - 5px);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.menu-modal-open::after{
    content: "";
    position: absolute;
    background: #24292e;
    top: calc(50% - -5px);
    width: 100%;
    height: 2px;
    transition: .25s;
}

.menu-modal-open.modal-expanded-state i{
    display: none;
}

.menu-modal-open.modal-expanded-state::before{
    background-color: #24292e;
    transform: rotate(45deg);
    transition: .25s;
    top: 15px;
}

.menu-modal-open.modal-expanded-state::after{
    background-color: #24292e;
    transform: rotate(-45deg);
    transition: .25s;
    top: 15px;
}

.menu-modal-overlay{
    display: none;
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.menu-modal-container{
    display: none;
    position: absolute;
    background-color: #3EB370;
    box-shadow: 0 0 8px gray;
    border-radius: 15px;
    top: -500px;
    right: 0;
    width: 100%;
    height: 450px;
    overflow-y: auto;
}

.header-sp-icon{
    margin: 20px 20px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 25px;
}

.header-sp-icon-image{
    width: 150px;
}

.header-sp-icon>a>p>span{
    font-size: 2.0rem;
    font-weight: 600;
    margin-right: 10px;
    line-height: 0.8;
}

.header-sp-menu-modal-nav{
    padding: 10px 20px 20px;
}

.header-sp-menu-modal-nav-item{
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.header-sp-menu-modal-nav-item:hover{
    background-color: #eae5e3;
}

.page-top{
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: transform 0.3s ease-in-out; /* スライドイン・アウトのアニメーション */
    transform: translateY(400%); /* 画面上部から隠す */
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}

.page-top.visible{
    transform: translateY(0); /* 画面内に表示 */
}

@media screen and (max-width: 800px) {
    .header-fixed{
        position: absolute;
    }
    .header-fixed-nav{
        display: none;
    }
    .header-side{
        display: none;
    }
    .header-sp{
        display: block;
    }
    .page-top{
        right: 30px;
        bottom: 140px;
    }
}

@media screen and (max-width: 480px) {
    .header-menu-modal{
        padding: 0 0 0 5px;
    }

    .header-sp-menu{
        width: 90%;
    }

    .header-sp-icon-image{
        width: 100px;
    }

    .header-sp-icon>a>p{
        font-size: 1.0rem;
    }

    .header-sp-icon>a>p>span{
        font-size: 1.5rem;
    }
}

/* background */
.background{
    position: fixed;
    z-index: -2;
}

.swiper{
    margin: 0 calc(50% - 50vw);
    max-width: 100vw;
    position: relative;
    overflow: hidden;
}

@keyframes zoomIn {
  from {
    transform: scale(1.05); /* 開始時のサイズ */
  }
  to {
    transform: scale(1.0); /* 終了時のサイズ */
  }
}

.slide-images img{
    object-fit: cover;
    height: 100vh;
    width: 100vw;
    animation-name: zoomIn; /* 1で定義したアニメーション名 */
    animation-duration: 5s; /* アニメーションにかかる時間 */
    animation-timing-function: ease-in-out; /* アニメーションの速度変化 */
    animation-fill-mode: forwards; /* アニメーション終了後に終了時のスタイルを保持 */
}

.swiper-scrollbar-horizontal{
    display: none;
}


/* main base */

/* section */
.page-blank{
    position: relative;
    height: 120px;
    background-color: #fff;
}

.section.white-bg{
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
}

.section.soshoku-bg{
    width: 100%;
    background: rgba(234, 229, 227, 0.9);
}

.section-button{
    text-align: center;
}

.button{
    display: inline-block;
    text-align: center;
    margin-top: 10px;
    padding: 2px 5px;
    border: 2px solid #333;
    border-radius: 15px;
    transition: color,border .25s;
}

.soshoku-bg .button:hover{
    background-color: #fff;
}

.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4% 50px;
}

.wrapper.page-title{
    padding-bottom: 5px;
}

.wrapper.page-content{
    padding-top: 20px;
    min-height: 300px;
}

.sec-main-title{
    font-size: 2.5rem;
    padding: 20px 0 0;
    text-align: center;
}

.sec-sub-title{
    font-size: 1.0rem;
    padding: 0 0 15px;
    text-align: center;
}

.wrapper.pankuzu{
    padding: 20px;
    text-align: left;
}

@media screen and (max-width: 480px) {
    .sec-main-title{
        font-size: 1.5rem;
    }
    .sec-sub-title{
        font-size: 0.8rem;
    }

    .wrapper.pankuzu{
        padding: 10px;
    }

    .wrapper.pankuzu,.wrapper.pankuzu>a{
        font-size: 0.7rem;
    }
}

/* grid */
.grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.grid-4 .grid-item{
    width: 24%;
    transition: all .25s;
}



@media screen and (max-width: 800px) {
    .grid-4 > .grid-item{
        width: 48%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .grid-4 > .grid-item{
        width: 100%;
    }
}


/* main */

/* main-images */
.main-images{
    position: relative;
    height: 800px;
    z-index: 0;
}

.main-word{
    position: absolute;
    right: 10px;
    top: 20px;
}

.main-word>img{
    height: 700px;
}

@media screen and (max-width: 480px) {
    .main-images{
        height: 900px;
    }

    .main-word{
        right: 10px;
        top: auto;
        top: 30px;
    }

    .main-word>img{
        height: 450px;
    }

}

/* news */

.news-header{
    margin: 10px auto;
}

.news-category{
    padding: 10px 4%;
    border-top: 3px solid #333;
    border-bottom: 3px solid #333;
}

.news-category-list{
    display: flex;
    justify-content: space-between;
    gap: 1%;
}

.news-category-item{
    position: relative;
    width: 12%;
    text-align: center;
}

.news-category-item>a:hover{
    color: #3EB370;
}

.news-category-item>a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #3EB370;
    bottom: -8px;
    transform: scale(0, 1);
    transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;   /*変形の時間*/
}

.news-category-item>a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.news-body{
    margin: 0 auto;
}

.news-content{
    margin-top: 30px;
}

.news-card{
    margin: 10px;
    width: 250px;
    height: 350px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 8px gray;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    overflow: hidden;
}

.news-card.visible{
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.news-card.visible:hover{
    color: #fff;
    background-color: #543f32;
    overflow: hidden;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.news-card.visible:hover>.news-card-info>.news-card-category>a,.news-card.visible:hover>a>p{
    color: #fff;
}


.news-card.visible:hover>.news-card-image{
    max-height: 187.5px;
    max-width: 250px;
    overflow: hidden;
}

.news-card.visible:hover>a>.news-card-image>img{
    transform: scale(1.05);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.news-card::before{
  content:"";
  display: block;
  width:23%;
  order:1;
}

.news-card::after{
  content:"";
  display: block;
  width:23%;
}

.news-card-image{
    max-height: 187.5px;
    background-color: #eae5e3;
    overflow: hidden;
}

.news-card-image>img{
    min-width: 100%;
    height: 187.5px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.news-card-info{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px 5px;
    font-size: 1.1rem;
}

.news-card-category{
    font-size: 1.1rem;
}

.news-card-title{
    height: 115px;
    padding: 0 20px;
    font-size: 1.2rem;
    overflow: hidden;
}

.navigation.pagination{
    margin: 10px 0;
    padding: 10px 0;
    text-align: center;
}

.page-numbers{
    margin: 0 5px;
    padding: 2px 10px;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 5px;
    box-shadow: 0 0 8px gray;

}

@media screen and (min-width: 1400px) {
    .news-body,.news-content,.news-list,.grid{
        width: 1080px;
    }
}


@media screen and (max-width: 880px) {
    .news-list{
        justify-content: center;
        gap: 20px;
    }
}

@media screen and (max-width: 800px) {
    .news-category-list{
        flex-wrap: wrap;
    }

    .news-category-item{
        width: 29%;
        text-align: center;
        margin: 5px;
    }
}

/* profile */
.profile-content{
    display: flex;
    justify-content: center;
}

.profile-content-box{
    padding: 5px 4%;
}

.profile-left{
    width: 40%;
    padding-top: 20px;
}

.profile-images{
    width: 100%;
}

.profile-images>img{
    border-radius: 15px;
}

.hashtag{
    color: #3EB370;
}

.profile-text{
    padding: 0 10px;
}

.profile-text>table>tbody>tr>th{
    text-align: left;
}

.profile-text>table>tbody>tr>th>span{
    font-size: 1.2rem;
    padding-left: 10px;
}

.profile-right{
    width: 60%;
    height: 400px;
    background-color: #fff;
    box-shadow: 0 0 8px gray;
    border-radius: 15px;
    padding-top: 20px;
}

.profile-timeline-text{
    font-size: 1.5rem;
    margin: 0 0 10px 20px;
    font-weight: 600;
}

.profile-timeline{
    max-height: 300px;
    overflow-y: auto;
}

.profile-timeline-content-box{
    position: relative;
    display: flex;
    justify-content: space-around;
}

.profile-timeline-date {
    width: 25%;
    padding: 10px 0;
}

.profile-timeline-content{
    position: relative;
    width: 75%;
    border-left: 3px #3EB370 solid;
    padding: 10px 0 10px 20px;
}

.profile-timeline-date,.profile-timeline-content>h3{
    font-size: 1.0rem;
}

.profile-timeline-content>p{
    padding-top: 2px;
    font-size: 0.8rem;
}

.profile-timeline-content:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #3EB370;
  position: absolute;
  left: -7px;
  top: 16px;
  border-radius: 100%;
}

@media screen and (max-width: 800px) {
    .profile-content{
        display: block;
    }
    .profile-left,.profile-right{
        width: 100%;
    }
    .profile-left{
        display: flex;
        justify-content: space-around;
    }
    .profile-images{
        width: 40%;
    }
    .profile-text{
        width: 60%;
    }
    .profile-right{
        margin-top: 20px;
    }
    .profile-timeline-date,.profile-timeline-content>h3{
        font-size: 1.0rem;
    }
    .profile-timeline-content>p{
        font-size: 0.8rem;
    }

}

@media screen and (max-width: 480px) {
    .profile-content{
        display: block;
    }
    .profile-left,.profile-right{
        width: 100%;
    }
    .profile-left{
        display: flex;
        justify-content: space-around;
    }
    .profile-text>table>tbody>tr>th{
        font-size: 0.6rem;
    }

    .profile-text>table>tbody>tr>th>span{
        font-size: 0.8rem;
    }

    .profile-right{
        height: 230px;
    }
    .profile-timeline-text{
        font-size: 1.2rem;
    }

    .profile-timeline{
        max-height: 150px;
    }

    .profile-timeline-date,.profile-timeline-content>h3{
        font-size: 0.6rem;
    }

    .profile-timeline-content>p{
        font-size: 0.5rem;
    }

    .profile-timeline-content:before {
    width: 9px;
    height: 9px;
    left: -6px;
    top: 13px;
    }

}


.sns-content{
    display: flex;
    justify-content: center;
    gap: 4%;
}

.sns-content-box{
    width: 46%;
    min-height: 200px;
}

@media screen and (max-width: 800px) {
    .sns-content{
        display: block;
    }
    .sns-content-box{
        width: 100%;
    }
}

.footer-sns-list{
    width: 80%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.footer-sns-item{
    position: relative;
    width: 140px;
    height: 160px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 8px gray;
    border-radius: 15px;
    padding: 20px;
}

.footer-sns-item:hover{
    background-color: #eae5e3;
}

.footer-sns-icon{
    position: relative;
    height: 80px;
}

.footer-sns-icon>img{
    position: absolute;
    width: 80px;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50%);
}

.footer-sns-item>a>p{
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

@media screen and (max-width: 480px) {

    .footer-sns-item{
        width: 100px;
        height: 100px;
    }

    .footer-sns-icon{
        height: 40px;
    }

    .footer-sns-icon>img{
        width: 40px;
    }

    .footer-sns-item>a>p{
        margin-top: 10px;
        font-size: 0.8rem;
        font-weight: 600;
    }
}

.footer-main,.footer-nav,.copyright{
    padding: 20px 4% 0;
    background-color: #fff;
}

.footer-main{
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
}

.footer-logo{
    position: relative;
}

.footer-logo-image{
    position: absolute;
    width: 150px;
    opacity: 0.05;
}

.footer-contact{
    position: relative;
    z-index: 1;
}

.footer-contact-item{
    margin: 10px 0;
}

.footer-mtf>a{
    display: flex;
    width: fit-content;
}

.footer-mtf>a>img{
    width: 30px;
    margin-right: 10px;
}

.footer-sitemap-item{
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
    padding: 5px 15px;
    border: 2px solid #333;
    border-radius: 30px;
    width: 40%;
    min-width: 200px;
    text-align: center;
}

.footer-sitemap-item>a{
    display: block;
}

.footer-sitemap-item:hover{
    background-color: #eae5e3;
}

.footer-nav{
    display: flex;
    gap: 20px;
}

.copyright{
    text-align: center;
    padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
    .footer-main{
        flex-direction: column-reverse;
        padding-bottom: 0;
    }

    .footer-sitemap-item{
        margin: 5px auto;
    }

    .footer-nav{
        padding-bottom: 100px;
    }

}

@media screen and (max-width: 480px) {
    .footer-mtf>a>p{
        font-size: 1.2rem;
    }

    .footer-nav{
        display: block;
    }

    .copyright>p{
        font-size: 1.0rem;
    }
}


/* contact */
.contact-contents{
    min-height: 200px;
}

.contact-msg{
    margin: 10px 0 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
}

.wpcf7>.wpcf7-form>table{
    margin: 20px auto 0;
    text-align: left;
}

.contact-body>tr{
    height: 40px;
}

.label,.input,.textarea{
    font-weight: 400;
}

.form-required{
    margin-left: 10px;
    padding: 2px 5px;
    border-radius: 5px;
    background-color: #d3381c;
    color: #fff;
    font-weight: 400
}

.contact-input-2 p{
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

.wpcf7-form-control.wpcf7-text,.wpcf7-form-control.wpcf7-textarea{
    padding: 0 2px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
}

.contact-input.contact-input-2>p>span>input{
    max-width: 250px !important;
}

.input{
    height: 35px;
}

.wpcf7-form>p{
    text-align: center;
}

.wpcf7-form>p>input{
    color: #333;
}

@media screen and (max-width: 480px) {
    .contact-msg{
        font-size: 1.0rem;
        margin: 10px 0 20px;
    }
}


/* privPoli */
.privPoli-header{
    margin: 0 0 20px;
    padding: 10px;
    border: 1px solid #24292e;
}

.privPoli-content-item{
    margin: 10px 0 30px;
    text-align: left;
}

.privPoli-item-title{
    margin: 10px 0;
    font-size: 1.3rem;
}

.privPoli-item-content{
    font-size: 0.8rem;
}

.privPoli-item-content ul li{
    font-size: 0.8rem;
}

.privPoli-item-content-go{
    margin-left: 10px;
}

.privPoli-item-content-go-go{
    margin-left: 10px;
}

/* sitemap */
.sitemap-box{
    margin: 10px 0.5%;
    padding: 10px;
    width: 24%;
    background-color: rgba(255, 255, 255, 0.8);
    /* border: 2px solid #24292e; */
    box-shadow: 0 0 8px gray;
    border-radius: 15px;
    text-align: left;
}

.sitemap-title{
    border-left: 3px solid #3EB370;
    margin-bottom: 5px;
    padding-left: 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.sitemap-content-item{
    padding: 3px 2px 0;
    font-size: 1.0rem;
    font-weight: 400;
}

.sitemap-title:hover,.sitemap-content-item:hover{
    opacity: 0.5;
}

.sitemap-content-item::before{
    content: "> ";
    font-weight: 400;
}

@media screen and (max-width: 800px) {
    .grid-4 > .sitemap-box{
        width: 48%;
        margin-bottom: 20px;
    }
}


@media screen and (max-width: 480px) {
    .grid-4 > .sitemap-box{
        width: 100%;
    }
}

/* 404 */
.nf-contents p{
    text-align: center;
    font-size: 1.2rem;
}

.nf-contents p a{
    font-weight: 600;
    font-size: 1.2rem;
}

/* single */
.post-content{
    display: flex;
    justify-content: space-between;
    min-height: 500px;
}

.post-content-left{
    width: 65%;
    margin:  10px 0 20px 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 8px gray;
    border-radius: 15px;
}

.post-title{
    padding: 0 0 10px 0;
    text-align: center;
    font-size: 1.4rem;
}

.post-info{
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.post-thumbnail{
    margin: 10px 0;
    width: 100%;
    /* aspect-ratio: 4 / 3; */
    text-align: center;
    overflow: hidden;
}

.post-thumbnail>img{
    min-width: 50%;
    /* height: 175px; */
}

.post-text{
    padding: 10px 4% 10px;
}

.post-text>p{
    font-size: 1.0rem;
}

.post-content-right{
    width: 30%;
    max-height: 220px;
    margin:  10px 0 20px 0;
    padding: 20px 20px 0 20px;
    background-color: #fff;
    box-shadow: 0 0 8px gray;
    border-radius: 15px;
}

.post-content-profile-header{
    margin: 0 0 10px 0;
    text-align: center;
}

.post-content-profile-body{
    display: flex;
    justify-content: space-around;
}

.post-content-profile-body-image{
    width: 30%;
    overflow: hidden;
}

.post-content-profile-body-image>img{
    height: 100%;
    object-fit: cover;
}

.post-content-profile-body-text{
    max-width: 180px;
    width: 65%;
}

.post-content-profile-body-text>p{
    font-size: 0.7rem;
}

@media screen and (max-width: 800px) {
    .post-content{
        display: block;
    }
    
    .post-content-left{
        width: 100%;
    }

    .post-content-right{
        padding: 20px;
        max-width: 350px;
        width: 100%;
    }
    .post-content-profile-body-image>img{
        height: 60px;
        object-fit: cover;
    }
}

@media screen and (max-width: 480px) {
    .post-title{
        text-align: left;
        font-size: 1.2rem;
    }

    .post-info{
        padding: 10px;
    }

    .post-text>p{
        font-size: 0.9rem;
    }

    .post-category,.post-category>a,.post-date{
        font-size: 0.8rem;
    }

}

/* contact */
.contact-contents{
    min-height: 200px;
}

.contact-msg{
    margin: 10px 0 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
}

.wpcf7>.wpcf7-form>table{
    margin: 20px auto 0;
    text-align: left;
}

.contact-body>tr{
    height: 40px;
}

.label,.input,.textarea{
    font-weight: 400;
}

.form-required{
    margin-left: 10px;
    padding: 2px 5px;
    border-radius: 5px;
    background-color: #d3381c;
    color: #fff;
    font-weight: 400
}

.contact-input-2 p{
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

.wpcf7-form-control.wpcf7-text,.wpcf7-form-control.wpcf7-textarea{
    padding: 0 2px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
}

.contact-input.contact-input-2>p>span>input{
    max-width: 250px !important;
}

.input{
    height: 35px;
}

.wpcf7-form>p{
    text-align: center;
}

.wpcf7-form>p>input{
    color: #333;
}

@media screen and (max-width: 480px) {
    .contact-msg{
        font-size: 1.0rem;
        margin: 10px 0 20px;
    }
}