@charset "UTF-8";
/*
Theme Name: ZOOMY_child
Template: zoomy_tcd067
Theme URI:
Description: WordPressテーマ「ZOOMY」child
Author: Design Plus
Author URI: http://design-plus1.com/tcd-w/
Version: 2.12.1
Text Domain: tcd-w
*/

body{
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif !important;
}

.d-block{display: block;}
p:empty{display: none;}
img{
    max-width: 100%;
    height: auto;
}

#mouse-cursor {
    pointer-events: none;
    position: fixed;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: #1cede6;
    border-radius: 50%;
    transform: translate(0,0);
    transition: transform 0.2s;
    transition-timing-function: ease-out;
    z-index: 999;
}

.d-none{
    display: none;
}

@media screen and (max-width: 768px){
    #mouse-cursor{
      display:none;
    }
}


/*************************
/* flex-box
*************************/
.flex-box {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-box-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-box-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-box-row-rever {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-box-space-b {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-box-space-a {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-box-space-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-box-item-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


/*******************************
*中央寄せ
*******************************/
.center-type1 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.center-type2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.center-type3 {
    position: absolute;
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}

.center-type4 {
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


/*******************************
*テキスト位置
*******************************/
.text-left{text-align: left;}
.text-center{text-align: center;}
.text-right{text-align: right;}


/*******************************
*フォント
*******************************/
.fontsz1rem{font-size: 1rem !important;}
.fontsz2rem{font-size: 2rem !important;}
.fontsz3rem{font-size: 3rem !important;}
.fontsz4rem{font-size: 4rem !important;}
.fontsz5rem{font-size: 5rem !important;}
.font-bold{font-weight: bold !important;}


/*******************************
*縦書き
*******************************/
.text-vertical{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}


/*******************************
*アニメーション
*******************************/
.animated{
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 2s, visibility 2s, transform 2s;
}

.is-fadein {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media only screen and (max-width: 767px) {
    .animated {
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
}


/*************************
/*btn
*************************/
.c-btn{
    display: block;
    position: relative;
    max-width: 320px;
    padding: 15px 0;
    margin: 0 auto;
    background: #991217;
    box-sizing: border-box;
    color: #fff !important;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
}

.c-btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -6px;
}

.c-btn:hover{
    /* background-color: #cc181e; */
    background-color: #e60012;
}


/*******************************
*layout
*******************************/
.inner{
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 88.8888%;
    /* max-width: 1024px; */
    max-width: 1200px;
}


/*******************************
*column
*******************************/
.c-col2{
    flex: 1 0 50%;
}

.img-colm2 > div{
    flex: 1 0 50%;
    padding: 5px;
}

.img-colm2 > div img{
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}


/*******************************
*horizontal
*******************************/
.c-hn{
    position: relative;
    padding: 18rem 0 18rem;
}

.c-hn_img{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #000000;
    top: 0;
    left: 0;
    z-index: 0;
}

.c-hn_img img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0.3;
}


/*******************************
*banner
*******************************/
.fl-banner{
    display: none;
    position: fixed;
    left: 0;
    bottom: 25px;
    width: 100%;
    max-width: 240px;
    height: auto;
    z-index: 100;
}

.fl-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.fl-banner .icon{
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
}

.fl-banner-close {
    font-weight: bold;
    position: absolute;
    top: -2px;
    right: -4px;
    z-index: 99999;
    padding: 4px 8px;
    border: none;
    background-color: #f8f8f8;
    border-radius: 25px;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}

@media screen and (max-width: 750px) {
    .banner-close {
        top: 8px;
        right: 15px;
    }
}


/*******************************
*header
*******************************/
.l-header__bar a:hover{color: #000 !important;}


/*******************************
*nav
*******************************/
.p-sidemenu-categories-title{
    display: none;
}

.p-sidemenu-categories{
    display: none;
}

.p-widget-sidemenu .p-widget__title{
    background: #000;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 16px;
    line-height: 1.8;
    min-height: 50px;
    padding: 0 26px;
    margin: 0 0 0;
}

.p-widget-sidemenu ul.menu > li a {
    display: block;
    padding: 8.5px 26px;
    width: 100%;
}


/*******************************
*footer
*******************************/
.p-pagetop{background-color: #333333;}
.p-pagetop a{color: #fff;}
.p-pagetop + .p-footer-widget-area {border-top: 1px solid #555;}

.p-footer-widget-area .widget_nav_menu a{
    position: relative;
    padding: 0 0 0 1rem;
    line-height: 1.6;
    text-decoration: underline;
}

.p-footer-widget-area .widget_nav_menu a::before{
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 6px;
}

.p-siteinfo{
    display: flex;
    flex-direction: column;
}

.p-siteinfo__image{
    order: 2;
}

.p-siteinfo__desc{
    order: 1;
    margin-top: 0 !important;
    margin-bottom: 0.2rem;
    color: #fff;
    font-size: 1.125rem;
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    display: none;
}

.p-siteinfo__button{
    order: 3;
    width: 50%;
}

.p-copyright{
    border-top: 1px solid #555;
}

@media only screen and (max-width: 991px){
    .p-siteinfo__desc{
        font-size: 0.8rem;
    }
}


/*******************************
*slider
*******************************/
/* 削除予定 */
.tuyoku-text-box{display: none;}

.home .p-index-slider .tuyoku-text-box{
    /* display: none; */
    position: absolute;
    /* right: 5%; */
    /* bottom: 100px; */
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100000;
    color: #fff;
    /* text-align: right; */
    text-align: center;
}

.home .p-index-slider .tuyoku-text1{
    font-size: 2rem;
    font-weight: 900;
}

.home .p-index-slider .tuyoku-text2{
    font-size: 7rem;
    font-weight: 900;
}

.p-header-content__inner{
    display: flex;
    flex-direction: column;
}

.p-header-content__logo{
    order: 2;
}

.p-header-content__desc{
    order: 1;
}

.p-header-content__button{
    order: 3;
}

.p-index-slider__item.is-active .p-header-content__inner > *:nth-child(1){
    -webkit-transition-delay: 2s;
    -moz-transition-delay: 2s;
    -ms-transition-delay: 2s;
    transition-delay: 2s;
}

.p-index-slider__item.is-active .p-header-content__inner > *:nth-child(2) {
    -webkit-transition-delay: 1s;
    -moz-transition-delay: 1s;
    -ms-transition-delay: 1s;
    transition-delay: 1s;
}

.p-index-slider__item--1.is-active .p-header-content__inner > *:nth-child(1){
    -webkit-transition-delay: 0.75s;
    -moz-transition-delay: 0.75s;
    -ms-transition-delay: 0.75s;
    transition-delay: 0.75s;
}

.p-header-content__logo + .p-header-content__desc{
    margin-top: 0;
    margin-bottom: 13px;
    font-weight: 900;
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media only screen and (max-width: 1280px){
    .home .p-index-slider .tuyoku-text1 {
        font-size: 1rem;
    }
    .home .p-index-slider .tuyoku-text2 {
        font-size: 3rem;
    }
    .home .p-index-slider .tuyoku-text2 .tuyoku-circle::after{
        width: 2.2rem !important;
        height: 2.2rem !important;
    }
}

@media only screen and (max-width: 767px){
    .p-index-slider .p-header-content__inner > * {
        opacity: 1;
    }
}

/* 削除予定 */


/*******************************
*xo slider
*******************************/
#xo-slider-472 .swiper-slide img{
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}


/*******************************
*youtube
*******************************/
.youtube{text-align: center;}

@media only screen and (max-width: 960px) {
    .youtube{
        width: 90%;
        margin: 0 auto;
    }
    .youtube iframe{
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .youtube{
        position: relative;
        width: 100%;
        padding-top: 56.25%;
    }
    .youtube iframe{
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }
}


/*******************************
*home
*******************************/
.p-home-title{
    clear: both;
    margin-bottom: 24.2px;
    line-height: 1.4;
}

.p-home-title_h2{
    /* font-size: 3rem; */
    font-size: 4rem;
}

.p-home-title_h3{
    font-size: 2.5rem;
}

.p-home-title_color{
    /* color: #660c0f; */
    /* color: #e60012; */
    color: #000;
    /* color: #fff; */
}

.p-home-title_color2{
    color: #fff;
}

.p-home-title_subcolor{
    /* color: #991217; */
    color: #e60012;
}

.p-home-title_fl:first-letter {
    font-size: 150%;
    color: #ee1d23;
}

.p-home-title_btop{
    padding-top: 0.75rem;
    border-top: solid 1px #aaa;
}

.p-home-title_bbotm{
    padding-bottom: 0.75rem;
    border-bottom: solid 1px #aaa;
}

.p-home-strong_color{
    color: #e60012;
}

.p-home-text{
    margin-bottom: 2rem;
    font-size: 1.5rem;
    line-height: 2;
}

.p-home-text_color{
    color: #000;
}

.p-home-text_color2{
    color: #fff;
}

.p-home-text_width{
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
}

.u-home-youtube_animation{
    margin-bottom: 3rem;
}

.home .p-home-title_h2 span{
    font-weight: bold;
}

.p-home-logocatch_img-pc{
    display: block;
    background-color: #f9f9f9;
    text-align: center;
}

.p-home-logocatch_img-pc img{
    width: 70%;
    height: auto;
}

.p-home-logocatch_img-sp{
    display: none;
}

.p-home-content1 p.p-home-text{
    max-width: 1200px;
}

.p-home-shinkijun-colm2-l{
    position: relative;
    width: 40%;
    padding: 15rem 0 15rem 0;
    background-color: #fff;
    text-align: center;
}

.p-home-shinkijun-colm2-l_text{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.p-home-shinkijun-colm2-l .logo{
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.p-home-shinkijun-colm2-l p{
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.p-home-shinkijun-colm2-r{
    width: 60%;
    /* padding: 15rem 10rem 15rem 10rem; */
    padding: 15rem 10rem 15rem 10rem;
    background-color: #e60012;
    color: #fff;
}

.p-home-shinkijun-colm2-r h2{
    margin-bottom: 5rem;
    font-size: 3rem;
}

.p-home-shinkijun-colm2-r_text{
    margin-bottom: 5rem;
}

.p-home-shinkijun-colm2-r p{
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.75;
}

.p-home-shinkijun-colm2-r_text p.last-child{
    padding-bottom: 5rem;
    border-bottom: 1px solid #fff;
}

.p-home-shinkijun-colm2-r_list h3{
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.75rem;
}

.p-home-shinkijun-colm2-r_list ul{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.p-home-shinkijun-colm2-r_list ul li{
    background-color: #fff;
    color: #000;
    padding: 0rem;
    margin: 0.4rem;
    /* width: 31%; */
    width: 48%;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
}

.p-home-shinkijun-colm2-r_list ul li a{
    display: block;
    padding: 1rem;
    font-weight: bold;
}

.p-home-reason-content{
    background: url("https://tsuyoku.jp/wp-content/uploads/2023/09/concrete-sample0-bg-scaled.jpg") no-repeat center center;
    background-size: cover;
}

.p-home-reason{
    background: url("https://tsuyoku.jp/wp-content/uploads/2023/09/concrete-sample0-bg-scaled.jpg") no-repeat center center;
    background-size: cover;
}

.p-home-reason-content_col2{
    max-width: 1280px;
    padding: 40px;
    margin: auto;
}

.p-home-reason-content_col2:first-child{
    padding-top: 80px;
}

.p-home-reason-content_col2-width{
    width: 48%;
}

.p-home-reason-content_col2-outside-left{
    flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 4%;
}

.p-home-reason-content_col2-outside-right{
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 4%;
}

.p-home-reason-content_title{
    position: relative;
    margin-bottom: 5%;
    padding-top: 0.75rem;
    font-size: 2.5rem;
    font-weight: bold;
    border-top: solid 1px #aaa;
    line-height: 1.125;
}

.p-home-reason-content_title::after{
    content: "";
    width: 60px;
    height: 1px;
    background: #e60012;
    left: 0;
    bottom: -1px;
    position: absolute;
}

.p-home-reason-content_subtitle{
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e60012;
}

.p-home-reason-content_text{
    margin-bottom: 2rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

.p-home-mission-content h3::after{
    content: "";
    top: -1px;
    bottom: 0;
}

.p-home-cards{
    gap: 0 30px;
}

.p-home-cards_item{
    width: 33%;
}

.p-home-cards_title{
    clear: both;
    font-size: 115%;
    line-height: 1.4;
    margin-top: 7px;
    margin-bottom: 24.2px;
    color: #660c0f;
    text-align: center;
}

.p-home-mission-content{
    display: none;
    color: #fff !important;
    padding: 5% 0 5% 0;
    background: url(https://tsuyoku.jp/wp-content/uploads/2023/08/home-mission_bg.jpg) no-repeat center 0px;
    background-color: rgb(0 0 0 / 50%);
    background-blend-mode: color;
    background-position: 70% 60%;;
}

.p-home-mission-content .flex-box > div{
    width: 48%;
}

.p-home-mission-content h2{
    padding: 0.75rem 0;
    margin-bottom: 24.2px;
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5;
    clear: both;
}

.p-home-mission-content h2 span{
    display: block;
    font-weight: bold;
}

.p-home-mission-content h3{
    padding: 0.75rem 0;
    margin-bottom: 24.2px;
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5;
    clear: both;
}

.p-home-mission-content h3 span{
    font-weight: bold;
}

.p-home-mission-content_box{
    padding: 0 6rem;
}

.p-home-mission-content_box p{
    margin-bottom: 1.125rem;
    font-size: 1.5rem;
    line-height: 1.2;
}

.p-home-mission_img-sp{
    display: none;
}

.home #cb_1{
    /* margin-top: 100px; */
    /* padding: 100px 0 200px 0; */
    padding: 200px 0 200px 0;
}

.p-home-post-title{
    margin-bottom: 5%;
    padding-top: 0.75rem;
    font-size: 2.5rem;
    font-weight: bold;
    border-bottom: solid 1px #aaa;
    line-height: 1.125;
}

.p-home-post-title:first-letter {
    font-size: 150%;
    color: #ee1d23;
}

.youtube-banner-type1{
    max-width: 950px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.youtube-banner-type1 > a{
    display: block;
}

.youtube-banner-type1 > a:hover img{
    box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
}

.youtube-banner-type1 img{
    width: 100%;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

.tcd-pb-row.row4{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.p-home-video-parody > div.flex-box{
    flex-direction: row-reverse;
}

.p-home-video-parody .youtube-colm2-text{
    background-color: #fafafa;
}

.p-home-video-parody h2{
    /* width: 65%; */
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
    font-size: 3.5rem;
}

.p-home-video-parody .p-home-text_width{
    max-width: 1200px;
}

.p-home-video-parody .c-btn:before{
    left: 15px;
}

.p-home-video-interview .flex-box{
    max-width: 1200px;
    margin: 0 auto;
}

.p-home-video-interview .youtube{
    /* width: 31%; */
    /* aspect-ratio: 16 / 9; */
    text-align: center;
}

.p-home-video-interview .btn{
    margin-top: 2rem;
}

.youtube-colm2{
    position: relative;
}

.youtube-colm2-img,
.youtube-colm2-text{
    width: 50%;
}

.youtube-colm2-img{
    position: relative;
    z-index: 0;
}

.youtube-colm2-img a{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.youtube-colm2-img .video-thum img{
    width: 100%;
    height: auto;
}

.youtube-colm2-img .video-thum::before,
.youtube-colm2-img .video-thum::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: border-color 0.3s ease;
    -moz-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    transition: all .2s ease;
}

.youtube-colm2-img .video-thum::before{
    width: 96px;
    height: 96px;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 1;
}

.youtube-colm2-img .video-thum::after{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13px 0 13px 20px;
    left: 4px;
    border-color: transparent transparent transparent #fff;
    z-index: 1;
}

.youtube-colm2-img .video-thum.boder-bl::before{
    border-color: #000;
}

.youtube-colm2-img .video-thum.boder-bl::after{
    border-color: transparent transparent transparent #000;
}

.youtube-colm2 a:hover .video-thum::before{
    transition: all 0.2s ease;
    width: 108px;
    height: 108px;
    border-color: #ce0023;
}

.youtube-colm2 a:hover .video-thum::after{
    transition: all 0.2s ease;
    border-width: 20px 0 20px 27px;
    border-color: transparent transparent transparent #ce0023;
}

.youtube-colm2-text{
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 5%;
    /* background-color: #fafafa; */
    background-color: #fff;
}

.youtube-colm2-text h2{
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.youtube-colm2-text p{
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.75;
}

@media only screen and (max-width: 960px) {
    .p-home-logocatch_img-pc{
        display: none;
    }
    .p-home-logocatch_img-sp{
        display: block;
        max-width: 65%;
        margin: 0 auto;
    }
    .p-home-logocatch_img-sp p{
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
        text-align: center;
    }
    section.p-home-intro{
        padding: 0 2rem;
    }
    .p-home-shinkijun-colm2-l,
    .p-home-shinkijun-colm2-r{
        width: 100%;
        padding: 10rem 0;
    }
    .p-home-shinkijun-colm2-r{
        padding: 7.5rem 5rem 7.5rem 5rem;
    }
    .p-home-shinkijun-colm2-r h2 {
        margin-bottom: 2.5rem;
        font-size: 2rem;
        line-height: 1.5;
    }
    .p-home-cards{
        gap: 0 20px;
    }
}

@media only screen and (max-width: 767px) {
    .p-home-title{
        font-size: 2rem;
        text-align: left;
        line-height: 1.2;
    }
    .p-home-title_sp{
        letter-spacing: -2.5px;
    }
    .p-home-video-promotion > div.flex-box,
    .p-home-video-conceptmovie > div.flex-box{
        flex-direction: column-reverse;
    }
    .youtube-colm2-img,
    .youtube-colm2-text{
        width: 100%;
    }
    .youtube-colm2-img{
        padding: 1.25rem;
    }
    .p-home-video-parody{
        display: flex;
        flex-direction: column-reverse;
    }
    .p-home-video-parody h2{
        font-size: 2rem;
        letter-spacing: 0;
    }
    .p-home-video-parody .img{
        margin-bottom: 4rem;
    }
    .p-home-reason-content_col2{
        padding: 20px;
        margin-bottom: 40px;
    }
    .p-home-reason-content_col2-width{
        width: 100%;
    }
    .p-home-reason-content_col2-outside-left,
    .p-home-reason-content_col2-outside-right{
        margin-left: 0;
        margin-right: 0;
        flex: 0 0 100%;
    }
    .p-home-reason-content_col2-img{
        margin-bottom: 2rem;
    }
    .p-home-reason-content_title{
        font-size: 2rem;
    }
    h3.p-home-reason-content_title + .p-home-reason-content_text{
        margin-bottom: 2rem;
    }
    .p-home-reason-content_subtitle{
        margin-top: 0.5rem;
    }
    .p-home-title_h3{
        font-size: 1.8rem !important;
    }
    .p-home-mission_lead{
        width: 100%;
        padding: 40px;
    }
    .p-home-mission_h2{
        font-size: 3rem;
    }
    .p-home-mission_h3{
        font-size: 1.75rem;
        letter-spacing: -2px;
    }
    .p-home-cards_item{
        width: 100%;
        margin-bottom: 3rem;
        text-align: center;
    }
    .p-home-cards_title{
        font-size: 1.25rem;
        letter-spacing: -1px;
    }
    .p-home-mission-content{
        padding: 15% 0;
        background-position: 50% 100%;
    }
    .p-home-mission-content_box{
        padding: 0 1.25rem;
    }
    .p-home-mission-content .flex-box > div{
        width: 100%;
    }
    .p-home-mission-content h2 {
        font-size: 2.5rem;
    }
    .p-home-mission-content h3 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .p-home-mission-content h3 span{
        display: block;
    }
    .p-home-mission-content_box p{
        font-size: 1.25rem;
    }
    .p-home-mission_img-pc{
        display: none;
    }
    .p-home-mission_img-sp{
        display: block;
    }
}

@media only screen and (max-width: 600px){
    .p-home-text{
        font-size: 1.25rem;
    }
    .p-home-shinkijun-colm2-l_text{
        display: block;
        width: 100%;
        padding: 0 2rem;
    }
    .p-home-shinkijun-colm2-r{
        padding: 7.5rem 1.25rem;
    }
    .p-home-shinkijun-colm2-r_list h3{
        text-align: center;
    }
    .p-home-shinkijun-colm2-r_list ul li{
        width: 100%;
    }
}

@media screen and (min-width:961px) and (max-width:1500px){
    .p-home-shinkijun-colm2-l,
    .p-home-shinkijun-colm2-r{
        padding: 7.5rem 5rem 7.5rem 5rem;
    }
    .p-home-shinkijun-colm2-r_list ul{
        flex-wrap: nowrap;
    }
    .p-home-shinkijun-colm2-r_list ul li{
        font-size: 1rem;
    }
}

@media only screen and (max-width: 991px){
    .p-index-newsticker__archive-link__button {
        padding: 5px 15px;
    }
    .p-index-newsticker__archive-link{
        position: absolute;
        top: 4px;
        right: 0;
        z-index: 100;
    }
}


/*******************************
*固定ページ
*******************************/
.coming-soon{
    padding: 10rem 0rem;
}

.coming-soon p{
    margin-bottom: 0;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}

@media only screen and (max-width: 1200px){
    .coming-soon{
        padding: 5rem 0rem;
    }
    .coming-soon p{
        font-size: 3rem;
        font-weight: bold;
        text-align: center;
    }
}

.p-page-header__image-desc{
    color: #e60012 !important;
    font-weight: bold;
    line-height: 1.0;
}

.page .header-text .p-page-header__title{
    padding: 1rem 5rem;
    background-color: rgb(255 255 255 / 70%);
}

.page .header-text .p-page-header__desc{
    padding: 1rem 5rem;
    background-color: rgb(255 255 255 / 70%);
    font-size: 1.2rem;
    font-weight: 900;
}

.page.privacy-policy .p-page-header__title{
    padding: 0 0;
    background-color: transparent;
}

.page .l-main{
    /* padding-top: 0; */
    padding-bottom: 0;
}

.p-page-title_h2{
    position: relative;
    margin-bottom: 5%;
    padding-bottom: 0.75rem;
    border-bottom: solid 1px #aaa;
    color: #660c0f;
    font-size: 2rem !important;
    font-weight: bold;
}

.p-page-title_h2::after {
    content: "";
    width: 60px;
    height: 1px;
    background: #e60012;
    left: 0;
    bottom: -1px;
    position: absolute;
}

.page .lead-text{
    font-size: 1.2rem;
}

.page .lead-text_small{
    font-size: 1rem;
}

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

.text-annotation_lead{
    padding: 15px 30px;
    font-size: 1rem;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    line-height: 1.8;
}

/* guidelines */
.u-guidelines-img_border{
    border: 1px solid #ddd;
}

/* engineer */
.engineer-img-box > div{
    width: 25%;
}

/* guidelines */
.guidelines-dl{
    padding: 30px 45px;
    font-size: 1rem;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    line-height: 1.8;
}

.guidelines-dl dd:last-child{
    margin-bottom: 0;
}

@media only screen and (max-width: 767px){
    .guidelines-dl{
        padding: 30px 30px;
    }
    .guidelines-dl dd{
        margin-bottom: 2rem;
    }
}

/* glossary */
.glossary-link-list_ul{
    list-style: none !important;
}

.glossary-link-list_li{
    font-size: 1.25rem;
}

.glossary-link-list_li:not(:last-child){
    margin-right: 1.25rem;
}

.page-id-429 table.pb_simple_table th{
    width: 36%;
    text-align: left;
}

/* sakura villege */
.sakura-villege-overview-content1{
    margin-bottom: 75px !important;
}

.sakura-villege-overview-content1 dl{
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
	border: 1px solid #ccc;
	border-bottom: none;
}

.sakura-villege-overview-content1 dl dt{
	background: #f5f5f5;
	padding: 5px;
	width: 150px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.sakura-villege-overview-content1 dl dd{
	background: #fff;
	padding: 5px;
    margin-bottom: 0;
	width: calc(100% - 150px);
	border-bottom: 1px solid #ccc;
}

.sakura-villege-overview_img0{
    margin-bottom: 75px;
}

.sakura-villege-overview_imgbox1{
    margin-bottom: 75px !important;
}

.sakura-villege-overview_imgbox1 > div{
    width: 47%;
    text-align: center;
}

.sakura-villege-overview-content2 table{
    margin-bottom: 75px;
    text-align: center;
}

.sakura-villege-overview-content2 dl dd{
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 2rem;
}

/* doc-link */
.doc-link_list li{
    font-size: 1.2rem;
    list-style: none;
}

/* company */
.h2-copy_campany{
    font-size: 2rem !important;
}

.company-content1 p{
    font-size: 1.25rem;
}

/* privacy-policy */
.page-id-3 .l-main{
    background-color: #fff;
}

@media only screen and (max-width: 767px){
    .page-id-3 .l-main{
        margin-bottom: 2rem;
    }
}


/*******************************
*投稿・カテゴリ・アーカイブページ
*******************************/
.p-blog-archive__sort{
    display: none;
}

.archive .p-page-header__desc,
.category .p-page-header__desc{
    text-align: center;
}

.single .l-2columns .l-primary{
    margin: 0 auto;
}

.category .p-page-header__title{
    color: #FFFFFF;
    font-size: 42px;
}

@media only screen and (max-width: 991px){
    .category-blog .p-page-header__title{
        font-size: 26px;
    }
    .category-tsuyoku-story .p-page-header__title{
        color: #FFFFFF;
        font-size: 42px;
    }
}

/* 設計者STORY */
.p-blog-archive__item-title{
    max-height: none;
}

.p-blog-archive__item-title .company{
    display: block;
    font-size: 14px;
    font-weight: bold;
}

.p-blog-archive__item-title .name{
    display: block;
    font-weight: bold;
}

.single-post .p-entry__title .company,
.single-post .p-entry__title .name{
    display: none;
}

.category-tsuyoku-story .p-page-header__title{
    color: #FFFFFF;
    font-size: 42px;
}

.p-page-story_h2{
    font-size: 1.75rem !important;
    letter-spacing: -0.5px;
}

body{counter-reset: number 0;}
.p-page-story_h2::before{
    counter-increment: number 1;
    content: "STORY"counter(number);
    display: block;
    color: #1c8ced;
    font-size: 0.75rem;
}

.p-page-story_h3{
    font-weight: bold;
}

.profile-text{
    border-bottom: 1px solid #aaa;
}

.profile-text h2{
    font-size: 2rem;
    font-weight: bold;
    /* font-size: 1.75rem; */
}

.profile-text p{
    font-size: 1rem !important;
    letter-spacing: -0.25px;
}

.tsuyoku-story p,
.tsuyoku-story li{
    font-size: 1.125rem;
}

.tsuyoku-story p.q-title{
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #e60012;
    border: 1px solid #e8e8e8;
    background-color: #f9f9f9;
    line-height: 1.5;
}

@media only screen and (max-width: 991px){
    .category-tsuyoku-story .p-page-header__title{
        color: #FFFFFF;
        font-size: 26px;
    }
    .tsuyoku-story p.q-title{
        letter-spacing: -1px;
    }
}


/* 会話 */
.balloon-content{
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.balloon-left {
    display: flex;
    /* justify-content: center; */
    align-items: start;
    gap: 0 22px;
    margin-bottom: 3rem;
}

.balloon-left img {
    max-width: 70px;
    height: 100%;
    border: 3px solid #e6f3e9;
    border-radius: 50%;
}

.balloon-left p {
    position: relative;
    /* max-width: 300px; */
    width: 100%;
    margin: 3px 0 0;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #e0ffec;
    color: #333333;
}

.balloon-left p::before {
    position: absolute;
    left: -15px;
    width: 15px;
    height: 30px;
    background-color: #e0ffec   ;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
}

.balloon-left-2 p::before {
    content: none;
}

.balloon-left-color img{border-color: #e6edf3;}
.balloon-left-color p{background-color: #e0efff;}
.balloon-left-color p::before{background-color: #e0efff;}

.balloon-right {
    display: flex;
    /* justify-content: center; */
    align-items: start;
    gap: 0 22px;
    margin-bottom: 3rem;
}

.balloon-right img {
    max-width: 70px;
    height: 100%;
    border: 3px solid #e6edf3;
    border-radius: 50%;
}

.balloon-right p {
    position: relative;
    /* max-width: 300px; */
    width: 100%;
    margin: 3px 0 0;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #e0efff;
    color: #333333;
}

.balloon-right p::before {
    position: absolute;
    right: -15px;
    width: 15px;
    height: 30px;
    background-color: #e0efff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: '';
}

.balloon-right-2 p::before {
    content: none;
}


/*******************************
*耐震マップ
*******************************/
.map-window p{margin-bottom: 5px;}
.map-window_img img{
    max-width: 100%;
    height: 20vh;
}


/*******************************
*table
*******************************/
.table-type1 table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    color:#221815;
    font-weight: 900;
}

.table-type1 table thead th{
    background:#efefef;
}

.table-type1 table th {
    padding: 2rem;
    line-height: 1.0;
    border: transparent;
    background-color: transparent;

}

.table-type1 table td {
    padding: 1.5rem .5rem;
    line-height: 1.0;
    border: transparent;
    text-align: center;
}

.table-type1 table tr{
    border-bottom: 2px solid #221815;
}

.table-type1_bg-color-red{
    background:#d80c18 !important;
    color: #fff !important;
}

.table-type1_fsize-l{
    font-size: 1.5rem !important;
    line-height: 1.0 !important;
}


@media only screen and (max-width: 767px){
    table.pb_simple_table th, table.pb_simple_table td{
        display: block;
        width: 100% !important;
    }
    table.pb_simple_table th{
        border-bottom: transparent !important;
    }
    table.pb_simple_table tr:not(:last-child) td{
        border-bottom: transparent;
    }
    .table-type1_fsize-l{
        line-height: 0.75 !important;
    }
}

@media screen and (max-width: 600px) {
    .table-type1{
        overflow-x: scroll;
    }
    .table-type1 table{
        width: 250%;
    }
}


/*******************************
*フォーム
*******************************/
.embedded-form {
	width: 100%;
    max-width: 600px;
	margin: 0 auto;
}

.embedded-form br{
    display: none;
}

.embedded-form > form p {
    font-size: 16px;
    font-weight: bold;
    margin: 40px auto 10px;
    line-height: 1.2;
}

.embedded-form .form-text_required{
    background-color: #cc181e;
    font-size: 14px;
    color: #fff;
    padding: 3px 5px;
    margin-right: 5px;
    display: inline-block;
}

.embedded-form > form input[type="text"],textarea {
    display: block;
    font-size: 16px;
    padding: 12px 15px;
    width:100%;
    transition: 0.8s;
    border: 1px solid #b5b5b5;
}

.embedded-form > form  input[type="text"]:focus,
.embedded-form > form  textarea:focus {
    background: #e9f5fb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.embedded-form > form  textarea[name="f_item_free2"] {
    display: inline-block;
    width: 100%;
    height: 200px;
}

.embedded-form > form  input::placeholder,
.embedded-form > form  textarea::placeholder {
    color: #ccc;
}

::-webkit-input-placeholder {
    color: #ccc;
    opacity: 1;
}

::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #ccc;
    opacity: 1;
}

.embedded-form select {
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #b5b5b5;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}

.embedded-form .form-button{
    margin: 40px auto 10px;
}

.embedded-form > form .button {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    font-size: 15pt;
    text-align: center;
    cursor: pointer;
    padding:12px 15px;
    background: #cc181e;
    color: #fff;
    font-weight: bold;
    line-height: 1em;
    /*transition : .3s;
    box-shadow: 6px 6px 3px #666666;
    border: 2px solid #97d0fb;
    box-shadow: 6px 6px 3px #666666;*/
    border: transparent;
    font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    letter-spacing: 1.5px;
}

.form-error,
.form-thanks{
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}


@media screen and (max-width: 600px) {
    .embedded-form > form input[type="text"],textarea {
        max-width: 100%;
    }

}
