@charset "utf-8";

body {
	font-size:100%;
	color: #333333;
	/*background-color: #ffffff;*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; /* Firefox (Gecko) 向け */
}


@media screen and (max-width: 480px) {
	body {
		font-size:90%;
	}
}


.wrapper{
	width: 90%;
    max-width: 1200px;
	margin: 0 auto;	
}

.wrapper700{
	width: 700px;
	margin:0 auto;
}

.wrapper900{
	width: 900px;
	margin: 0 auto;
}



@media screen and (max-width: 768px) {
    
    .wrapper,
	.wrapper700,
	.wrapper900{
        width:90%;
    }

    .mainvisual .wrapper{
        width: 100%;
    }

}

/*index*/


/*========= 流れるテキスト ===============*/

.slide-in {
    overflow: hidden;
      display: inline-block;
  }
  
  .slide-in_inner {
    display: inline-block;
  }

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  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:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
    from {
    transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
}

    to {
    transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
    }
}

/*左右のアニメーション*/
.rightAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  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:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}



/*========= 流れるテキスト ここまで===============*/

.header{
    width: 100%;
    /*position: absolute;*/
    z-index: 2;
    height: 100px;
   /* position: -webkit-sticky;
	position: sticky;*/
	top: 0;
    background-color: #fff;
    /*background-color: var(--primary-bkgray-color);*/
}

:target {
  /* headerの高さに合わせて120pxを設定 */
  scroll-margin-top: 120px; 
}

.header-section-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.search{
    display: flex;
}

.search > form{
    display: flex;
}

.switchBtn{
    background-color: #fff;
    border: 1px solid var(--primary-blue-color);
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;   
    justify-content: center;
    font-size: 88%;
}

.switchBtn.active{
    background-color: var(--primary-blue-color);
    border: 1px solid var(--primary-blue-color);
    color: white;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;   
}

.search-input {
    border: 1px solid var(--primary-blue-color);
    padding: 0px 8px;
    flex-grow: 1;
    width: 150px;
    height: 40px;
    margin-left: 15px;
  }

  .search-button{
    background-color: var(--primary-blue-color);
    color: white;
    /*padding: 0px 8px;*/
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .search-button input[type=submit] {
    border: none;
        width: 40px;
        height: 40px;
        background: var(--primary-blue-color) url(../img/icon-search.png) center 50% no-repeat;
        background-size: 20px 20px;
        text-indent: -9999px;
        cursor: pointer;
  }


.header-logo-wrapper{
    margin-top: 10px;
}

.header-logo-wrapper > p{
    margin-bottom: -7px;
    margin-left: 90px;
    margin-top: 8px;
    font-size: 88%;
    letter-spacing: -.5px;
}


.header-nav{
    margin-right: 50px;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-nav ul{
    display: flex;
}

.header-nav ul li{
    margin-left:50px;
}

.header-nav ul li a{
    position: relative;
    color: #fff;
}

.header-nav ul li a:hover{
    opacity: 1 !important;
}

.top-page .header-nav ul li a{
    color: #000;
    font-weight: 500;
}

.header-nav ul li a:hover::before,
.header-nav ul li a.active::before{
    position: absolute;
    content: '';
    top: -22px;
    left: 50%;
    margin-left: -10px;
    display: block;
    width: 21px;/*幅*/
    height: 21px;/*どれだけデカくなってもはみ出ないであろう高さを指定*/
    background-image: url(../img/icon-sakura.png);
    background-size: contain;
    background-repeat: no-repeat;/*画像を繰り返さない*/
}

a.btn-contact {
    padding: 40px 0;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    font-size: 88%;
    width: 120px;
    height: 80px;
    position: relative;
}

a.btn-contact::before {
    content: "";
    width: 25px;
    height: 20px;
    background: url(../img/icon-envelope.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

a.btn-reserve {
    padding: 40px 0 20px;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    font-size: 100%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    width: auto;
    height: 0;
    position: relative;
    color: var(--primary-red-color);
}

a.btn-reserve::before {
    content: "";
    width: 31px;
    height: 31px;
    background: url(../img/icon-schedule.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

a.btn-large-contact {
    padding: 10px 28px;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    font-size: 113%;
    font-weight: bold;
}

a.btn-large-contact::before {
    content: "";
    width: 23px;
    height: 18px;
    background: url(../img/icon-envelope.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
}

@media screen and (max-width: 1285px) {

    .header-logo-wrapper{
        margin-top: 20px; 
    }

    #spnavi .header-logo-wrapper{
        width: 100%;
        max-width: 350px;
    }


    a.btn-large-contact {
        width: 225px;
        padding: 5px;
        margin: 0 auto;
    }

    .header-logo-wrapper > p,
    .header-text-resize-wrapper,
    .header-tel-wrapper,
    .header-tel-flex{
        display: none;

    }

    .search{
        justify-content: space-between;
    }

    .search-keyword{
        width: calc(100% - 45px);
    }

    .search-input {
        width: 100%;
        border: 1px solid #c1c1c1;
        border-radius: 5px;
        margin-left:0;
    }
    
    .header-contact{
        display: none;
    }

}

a.btn--orange {
    color: #fff;
    background-color: #ea5413;
    }

a.btn--pink {
    color: #fff;
    background-color: #ff83b2;
}

.header-tel-flex{
    display: flex;
    margin-left: 40px;
    column-gap: 10px;
    align-items: center;
}



.header-telno{
    font-size: 200%;
    font-size:32px;
    letter-spacing: 1px;
    color: var(--primary-red-color);
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    /*text-shadow:1px 1px 0 #ff83b2, -1px -1px 0 #ff83b2,
                -1px 1px 0 #ff83b2, 1px -1px 0 #ff83b2,
                0px 1px 0 #ff83b2,  0 -1px 0 #ff83b2,
                -1px 0 0 #ff83b2, 1px 0 0 #ff83b2;*/
}

.header-telno::before{
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    background-image: url(../img/icon-tel.png);
    vertical-align: -3px;
    margin-right: 5px;
}

.header-text-resize-wrapper {

}

.textsizer-flex li{
    display: flex;
    align-items: center;
    height: 40px;
    width: 40px;
}

.footer{
    background: var(--primary-bkgray-color);
    padding:50px 0 30px;
}

.footer .wrapper{
    /*display: flex;
    justify-content: center;
    position:relaitve;*/
}

.blue-radius-wrapper{
    width: 100%;
    padding: 20px 50px;
    background: var(--primary-blue-color);
    border-radius: 20px;
}

.footer-blue-radius-top{
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
}

.footer-blue-radius-left{
    width: 50%;
    justify-content: center;
}

.footer-blue-radius-right{
    width: 50%;
    align-items: center;
    justify-content: center;
}

.footer-blue-radius-left_inner-left{
    align-items: center;
    column-gap: 10px;
    padding-right:15px;
    border-right: 1px solid #fff;
}




.footer-blue-radius-left_inner-right{
    padding-left: 10px;
    
}

.footer-blue-radius-left_inner-button{
    margin-left:10px;
}

/*.icon-circle-arrow-white-right::after{
    display: inline-block;
    content: "";
    width: 55px;
    height: 55px;
    background: url(../img/icon-circle-arrow-white.png);
    vertical-align: -20px;
    margin-left: 15px;
}*/

@media screen and (max-width: 1160px) {

    .blue-radius-wrapper{
        padding: 15px;
        row-gap: 10px;
    }
    .footer-blue-radius-left,
    .footer-blue-radius-right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-blue-radius-left_inner-left{
        column-gap: 5px;
    }

    .footer-blue-radius-left_inner-left__img,
    .footer-blue-radius-left_inner-right__img{
        width: 30px;
    }

    .footer-blue-radius-left_inner-left__img img,
    .footer-blue-radius-left_inner-right__img img{
        width: 100%;
        height: auto;
    }

    .icon-circle-arrow-white-right::after{
        width: 33px;
        height: 33px;
        background-size: contain;
        vertical-align: -10px;
        margin-left: 5px;
    }    
}

@media screen and (max-width: 768px) {
    .footer-blue-radius-left,
    .footer-blue-radius-right {
        max-width: 370px;
        justify-content: flex-start;
        margin-bottom: 10px;
    }
    .footer-blue-radius-left_inner-left,
    .footer-blue-radius-right_inner-left{
        width: 135px;
        padding-right: 5px;
    }
    .footer-blue-radius-left_inner-button{
        width: 30px;
    }
}


@media screen and (max-width: 1285px) {
.footer-sitemap-list-wrapper{
    display: none;
}

}

.footer-sitemap-list{
    display: flex;
    column-gap: 15px;
}

.footer-sitemap-list li a{
    font-size: 88%;
}

.footer-logo-address-list-wrapper{
    column-gap: 2%;
}

.footer-logo-address-wrapper{
    width: 42%;
}

.footer-list-wrapper{
    width: 56%;
    column-gap: 7%;
    justify-content: space-between;
}

@media screen and (max-width: 1285px) {

    .footer-logo-address-wrapper{
        width: 100%;
    }

    .footer-logo-address-wrapper > div > img{
        width: 100%;
        height: auto;
    }

    .footer-address-wrapper{
        width: 100%;
        max-width: 370px;
        margin: 10px auto 20px;
    }

    .footer-logo-wrapper{
        max-width: 370px;
        margin: 0 auto;
        width: 100%;
    }
}

.footer-list{
    /*/*display: flex;
    margin-bottom: 25px;
    position: relative;*/*/
}

/*.footer-list::before{
    width: 23px;
    height: 35px;
    background: url(../img/icon-company-logo.png);
    background-repeat: no-repeat;
    display: inline-block;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}*/

.footer-list > li{
    margin-bottom: 10px;
    line-height: 1.2;
}

.footer-list > li > a{
    font-size: 100%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    line-height: 1;
}

.footer-list > li > a::before{
    display: inline-block;
    content: "";
    width: 11px;
    height: 11px;
    background: url(../img/icon-blue-arrow.png);
    background-size: contain;
    /*vertical-align: -2px;*/
    margin-right: 5px;

}

.footer-list > li > ul.footer-sublist{
    margin-left:17px;
}

.footer-list > li > ul.footer-sublist > li{
    line-height: 1.2;
}

.footer-list > li > ul.footer-sublist > li > a{
    font-size: 88%;
    line-height: 1;
}

.copy{
    /*display: flex;
    justify-content: center;*/
}

.copy small{
    font-size: 62.5%;
}

@media screen and (max-width: 1285px) {

    .copy{
        text-align: center;
    }

}

.pagetop {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 999;
    opacity: .8;
}

.textbox {
    position: fixed;
    top: 100px;
    right: 0%;
}
.vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: #fff;
    padding: 15px 10px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.vertical__yellow{
    border-top: 5px solid #ffda04;
    border-left: 5px solid #ffda04;
    border-bottom: 5px solid #ffda04;

}

.vertical__orange{
    border-top: 5px solid #ea5413;
    border-left: 5px solid #ea5413;
    border-bottom: 5px solid #ea5413;

}

.vertical__green{
    border-top: 5px solid #54b65b;
    border-left: 5px solid #54b65b;
    border-bottom: 5px solid #54b65b;

}

.vertical__part {
    text-orientation: upright;
}

.vertical_icon{
    width: 20px;
    margin-bottom: 10px;
}





/*top-mainvisual*/
.top-mainvisual{
    margin-top: 10px;
    /*height: 500px;
    background-image: url(../img/mainvisual-top-bk.jpg);
    background-size: cover;
    background-position: bottom center;
    padding-top: 50px;*/
}

.top-mainvisual-flex{
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.6%;
}

.top-mainvisual__text{
    /*display: flex;*/
   /* justify-content: center;*/
    margin-bottom: 20px;
    width: calc(100% - 54.9%);

}
.top-mainvisual__text h2,
.top-mainvisual__text h2 span{
    /*color: #fff;*/
    font-weight: 700;
    font-size: 175%;
    line-height: 1.4;
}

/*.top-mainvisual__img-sakura{
    margin-bottom: 40px;
}*/

.top-mainvisual-slick{
    width: 53.3%;
}

@media screen and (max-width: 1100px) {

.top-mainvisual__text h2,
.top-mainvisual__text h2 span{
    /*color: #fff;*/
    font-weight: 700;
    font-size: 150%;
    line-height: 1.4;
}

}



@media screen and (max-width: 1285px) {

    .header{
       /* padding-top: 5px;*/
        height: 50px;
        position: static;
    }

    .header h1 img{
        width: 210px;
        height: auto;
    }

    .header-section-wrapper{
        justify-content: center;
        height: 50px;
    }

    a.btn-contact{
        max-width: 120px;
        padding: 2px 5px 2px 7px;
        font-size: 88%;
    }

    a.btn-reserve{
        max-width: 120px;
        padding: 2px 5px 2px 7px;
        font-size: 88%;
        
    }

    a.btn-contact::before {
        width: 14px;
        height: 11px;
        background-size: contain;
    }

    a.btn-reserve::before {
        width: 14px;
        height: 11px;
        background-size: contain;
    }

    .header-contact{
        margin-left: 5%;
        display: none;
    }

    .header-telno{
        font-size: 100%;
    }

    .top-mainvisual{
        height: auto;
        position: relative;        
    }
    
    .top-mainvisual .wrapper{
        width: 100%;
    }

    .top-mainvisual__text h2,
    .top-mainvisual__text h2 span{
        font-size: 100%;
        font-size: 150%;
    }

    .top-mainvisual__text{
        margin: 0 auto 10px;
        width: 100%;
        max-width: 350px;
    }

    /*.top-mainvisual-flex{
        position: absolute;
        top: 10px;
    }*/
    

    .top-mainvisual-slick{
        width: 100%;
       max-width:350px;
       margin: 0 auto;
    }

    .footer{
        padding: 25px 0;
    }

    .footer-list{
        display: none;
    }

    .pagetop {
        right: 20px;
    }

    .pagetop img{
        width: 55px;
        height: 55px;
    }

}

@media screen and (max-width: 800px) {
    .top-mainvisual{
        /*padding-top: 15px;*/
    }
}

.section-top-category-navi{
    /*background-color: var(--primary-bkyellow-color);*/
    padding: 70px 0 60px;
}

@media screen and (max-width: 800px) {
    .section-top-category-navi{
        padding: 45px 0;
    }
}

.section-top-category-flex{
    display: flex;
    flex-wrap: wrap;
    column-gap: 1%;
}

.category-flex-item{
    width: calc(16.66% - 5% / 6 );
    border-radius: 20px;
    background: #fff;
    border: 1px solid #c1c1c1;
}

.category-flex-item a{
    display: block;
    padding: 20px 5px 30px;
}

.category-flex-item_img{
    /*text-align: center;*/
    height: 100px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.category-flex-item_title{
    text-align: center;
    font-size: 100%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

@media screen and (max-width: 800px) {
    .category-flex-item_title{
        font-size: 88%;
    }
}

.category-flex-item_subtitle{
    text-align: center;
    font-size: 75%;
    color: var(--primary-orange-color);
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}


.icon-blue-arrow::before{
    display: inline-block;
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/icon-blue-arrow.png);
    vertical-align: -2px;
    margin-right: 5px;
}

.icon-blue-arrow__small::before{
    display: inline-block;
    content: "";
    width: 11px;
    height: 11px;
    background: url(../img/icon-blue-arrow.png);
    background-size: contain;
    /*vertical-align: -2px;*/
    margin-right: 3px;
}

.icon-blue-arrow__under{
    position: relative;
}

.icon-blue-arrow__under::after{
    position:absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/icon-blue-arrow.png);
}

@media screen and (max-width: 1160px) {

    .section-top-category-flex{
        column-gap: 3%;
        row-gap: 20px;
    }

    .category-flex-item{
        
        width: calc(33.3333% - 6% / 3);
    }
}

@media screen and (max-width: 768px) {

    .section-top-category-flex{
        column-gap: 3%;
        row-gap: 10px;
    }

    .category-flex-item{
        width: calc(50% - 3% / 2);
    }

    .category-flex-item a {
        padding: 15px 8px 30px;
    }

    .category-flex-item_img {
        height: 100px;
        margin-bottom: 10px;
    }

    .category-flex-item_img > img {
        /*height: auto;
        width: auto;*/
    }

}

/*トップページ　バナー　スライダー
-----------------------------------------------------------------*/	

.mainslider{
	padding:0 0 50px;
    padding: 0;
}

.js-slick-slider{
	width:1200px;
	margin:0 auto;
}

@media screen and (max-width: 768px) {
    
    .mainslider{
        padding:0 0 25px;
    }
    .js-slick-slider{
	width:90%;
    }
}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: no-repeat center center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-size: 20px auto;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.slick-prev {
    background-image: url(../img/btn-prev.png);
    left: -30px;
    background-position: left 50%;
    z-index: 10;
}

.slick-next {
    background-image: url(../img/btn-next.png);
    right: -20px;
    background-position: right 50%;
    z-index: 10;
}

#bannerslider .slick-prev:before, 
#bannerslider .slick-next:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 24px;
    margin-top: -17px;
    margin-left: 0;
    /* border-radius: 50% 50% 50% 50%; */
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.slick-slide {
  /* 左右に余白を20px設定 */
  margin: 0 8px;
}

.slick-list {
  /* slick-slideのmarginを相殺するために、ネガティブマージンを設定 */
  margin: 0 -8px;
}































.section-top-introduction{
    padding: 40px 0 70px;
}

@media screen and (max-width: 768px) {
    .section-top-introduction{
        padding: 20px 0 35px;
    }

    .section-top-introduction h3 img{
        width: 120px;
        height: auto;
    }
}

.illust-side{
    position: relative;
}

.illust-side:before{
    content: '';/*何も入れない*/
    width: 152px;/*画像の幅*/
    height: 125px;/*画像の高さ*/
    background-image: url(../img/illust01.png);
    background-size: contain;
    vertical-align: middle;
    position:absolute;
    left: 50%;
    margin-left: -380px;
}

.illust-side:after{
    content: '';/*何も入れない*/
    width: 152px;/*画像の幅*/
    height: 144px;/*画像の高さ*/
    background-image: url(../img/illust02.png);
    background-size: contain;
    vertical-align: middle;
    position:absolute;
    top: 0;
    left: 50%;
    margin-left: 250px;
}

@media screen and (max-width: 768px) {
    .illust-side p{
        font-size: 88%;
    }

    .illust-side:before {
        width: 40px;
        height: 35px;
        margin-left: -155px;
        background-repeat: no-repeat;
    }

    .illust-side:after {
        background-repeat: no-repeat;
        width: 40px;
        height: 45px;
        margin-left: 115px;
    }
}

.category-circle-link{
    display: flex;
    justify-content: space-around;
}

.category-circle-link__item{
    background: #fff;
    width: 250px;
    height: 250px;
    border-radius: 100%;
}

.category-circle-link__item.circle-w200{
    width: 200px;
    height: 200px;
}

.category-circle-link__item a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media screen and (max-width: 768px) {

    .category-circle-link{
        flex-wrap: wrap;
    }
    .category-circle-link__item,
    .category-circle-link__item.circle-w200 {
        background: #fff;
        width: 105px;
        height: 105px;
        border-radius: 100%;
    }
}

.item__yellow{
    border: 10px solid #ffda04;
}

.item__orange{
    border: 10px solid #ea5413;
}

.item__green{
    border: 10px solid #54b65b;
}

@media screen and (max-width: 768px) {

    .item__yellow{
        border: 5px solid #ffda04;
    }
    
    .item__orange{
        border: 5px solid #ea5413;
    }
    
    .item__green{
        border: 5px solid #54b65b;
    }

}

.section-top__new-property-listings{
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    .section-top__new-property-listings{
        padding: 30px 0;
    }
}

.property-listings-wrapper{
    display: flex;
    flex-wrap: wrap;
}

.property-listings-item{
    width: calc(33.3333% - 40px/3);
    margin-right: 20px;
    margin-bottom: 40px;
}

.property-listings-item:nth-child(3n){
    margin-right:0;

}

@media screen and (max-width: 768px) {
    .property-listings-item{
        width: calc(50% - 20px/2);
        margin-bottom: 20px;
    }

    .property-listings-item:nth-child(3n){
        margin-right: 20px;
    }

    .property-listings-item:nth-child(2n){
        margin-right: 0;
    }
}


.property-listings-item a{
    width: 100%;
    height: 100%;
}

.property-listings-item a > div{
    margin-bottom: 20px;
    position: relative;
}

.property-listings_category{
    display: inline-block;
    padding: 2px;
    background: #fff;
    border-radius: 5px;
    border: 2px solid #ea5413;
    color: #ea5413;
    font-weight: 500;
    font-size: 88%;
    margin-bottom: 8px;
}

.property-listings-item a > div > img{
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.property-listings_title{
    font-size: 113%;
    color: #ea5413;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    margin-bottom: 5px;
}

.property-listings_address{
    font-size: 88%;
    color: #000;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #000;
}

.property-listings_address:before{
    content: '';/*何も入れない*/
    display: inline-block;
    width: 16px;/*画像の幅*/
    height: 20px;/*画像の高さ*/
    background-image: url(../img/icon-map_green.png);
    background-size: contain;
    vertical-align: sub;
    margin-right: 5px;
}

.property-listings_price{
    font-size: 88%;
    color: #000;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.property-price-number{
    font-size: 137.5%;
    color: #ea5413;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    margin-left: 10px;
}

.property-price-unit{
    font-size: 113%;
    color: #ea5413;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

@media screen and (max-width: 768px) {
    .property-listings-item a > div {
        margin-bottom: 10px;
    }
    
    .property-listings_category {
        font-size: 10px;
        margin-bottom: 8px;
    }
    
    .property-listings_title {
        font-size: 88%;
    }
    
    .property-listings_address {
        font-size: 62.5%;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    
    .property-listings_address:before {
        width: 8px;
        height: 10px;
        vertical-align: inherit;
        margin-right: 2px;
    }
    
    .property-listings_price {
        font-size: 62.5%;
    }
    
    .property-price-number {
        font-size: 100%;
    }
    
    .property-price-unit {
        font-size: 75%;
    }

}


.button-gray-arrow{
    background: #f2f2f2;
    padding: 5px;
    
    border-radius: 40px;
    font-size: 100%;
    width: 270px;
    text-align: center;
}

.button-gray-arrow:before{
    content: '';
    display: inline-block;
    width: 19px;
    height: 8px;
    background-image: url(../img/icon-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    vertical-align: middle;
    padding-bottom: 12px;
}

@media screen and (max-width: 768px) {
    .button-gray-arrow{
        width: auto;
        padding: 5px 20px;
    }

}

.section-top-news{
    padding: 60px 0;
}

.top-news_flex{
    display: flex;
    flex-wrap:wrap;
    column-gap: 1%;
}

.top-news_title-wrap{
    width: 16%;
}

.top-news_list-wrap{
    width: 83%;
}

.top-news_title-wrap a{
    color: var(--primary-blue-color);
    font-size: 100%;
    
}

.top-news_title{
    font-size:150%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.top-news_subtitle{
    margin-left: 30px;
    margin-bottom: 20px;
    font-size: 75%;
    color: var(--primary-orange-color);
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}



@media screen and (max-width: 768px) {

    .section-top-news{
        padding: 30px 0;
    }

    .top-news_title-wrap{
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .top-news_title-wrap a{
        font-size: 75%;
        margin-right: 0;
        margin-left: auto;
    }

    .top-news_title-wrap{
        width: 100%;
    }
    
    .top-news_list-wrap{
        width: 100%;
    }
    .top-news_subtitle{
    margin-left: 10px;
    margin-bottom: 0;
    }
}

.news-list{
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;
    height: 60px;*/
    padding: 10px 0;
    column-gap: 20px;
}

.news-list:first-of-type{
    padding-top: 5px;
}

.news-list dt{
    width: 290px;
}

.news-list dd{
    width: calc(100% - 310px);
    margin-top: 2px;
}

.news-list__time {
    font-size: 100%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    /*color: #0864b2;*/
}

.news-list__category {
    font-size: 75%;
    font-size: 12px;
    color: #fff;
    margin-left: 20px;
    width: 120px;
    padding: 2px 5px;
    border-radius: 50px;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
}


.news-list__category-blue {
    background: var(--primary-blue-color);  
}

.news-list__category-orange {
    background: var(--primary-orange-color);  
}




.news-list dd a{
    font-size: 100%;
}

@media screen and (max-width: 768px) {

    .news-list{
        /*display: block;*/
        padding: 10px 0;
    }

    .news-list dt{
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }

    .news-list dd{
        width: 100%;
    }

    .news-list__time {
        font-size: 100%;
    }

    .news-list__category{
        font-size: 75%;
        margin-left: 10px;
        padding: 0 7px;
        width:130px;
    }

    .news-list dd a{
        font-size: 100%;
    }

}

/*search-list*/

.search-list dt{
    width: 200px;
}

.search-list dd{
    width: calc(100% - 220px);
}

@media screen and (max-width: 768px) {

    .search-list dt {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 5px;
    }
    .search-list dd {
        width: 100%;
    }
}



.section-banner-area{

}

.section-banner-area-inner{
    height: 130px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.section-banner-item{
    width: auto;
    height: auto;
    /*width: calc(20% - 60px/5);
    margin-right:15px;*/
}

/*.section-banner-item:nth-child(5n){
    margin-right:0;
}*/

.section-banner-item img{
    max-width: 100%;
    max-height: 110px;
    height: auto;
    vertical-align: bottom;
}

@media screen and (max-width: 768px) {

    .section-banner-area{
        height: auto;
        padding-top: 20px;
    }

    .section-banner-area-inner{
        height: auto;
    }
    .section-banner-item{
        width: calc(50% - 15px/2);
        margin-bottom: 15px;
        text-align: center;
    }

    .section-banner-item:nth-child(2n){
        margin-right: 0;
    }

    .section-banner-item:nth-child(5n){
        margin-right: 15px;
    }
}

.section-company-name-address{
    background:#fceea6;
    height: 100px;
}

.section-company-name-address__inner{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-company-name-address__txt{
    font-size: 88%;
}

.section-company-name-address__txt span{
    font-size: 113%;
    font-weight: 500;
    margin-right: 40px;
}

@media screen and (max-width: 768px) {
    .section-company-name-address__txt{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        font-size: 62.5%;
    }

    .section-company-name-address__txt span{
        margin: 0 auto;
        font-size: 75%;
    }

}

/*
.section-top-products{
    padding: 60px 0;
    background: #fff;
}

@media screen and (max-width: 768px) {

    .section-top-products{
        padding: 30px 0;
    }
}*/

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

.slider li a:hover{
    opacity: 1;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    /*margin:0 10px;/*スライド左右の余白調整*/
}

.section-top-products-link{
    position: relative;
}

.section-top-products-link-section1{
    height: 300px;
}

.zoom{
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.zoom-1 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    animation: animationZoom1 5s ease-in-out forwards;
}

@media screen and (max-width: 768px) {
    .zoom,
    .zoom-1 img{
        height: 220px;
    }
}

@keyframes animationZoom1 {
    100% { transform:scale(1.1)} 
}


/*
.section-top-products-link-section2{
    position: absolute;
    top:40px;
    left: 50%;
    margin-left: -500px;
    width:1000px;
    height: 230px;
}



.top-products-link-item{
    display: block;
    width: 670px;
    height: 230px;
    background: rgba(255,255,255,.8);
    padding: 20px 30px;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {

    .section-top-products-link-section2{
        top:20px;
        left: 50%;
        margin-left:-45%;
        width: 90%;
        height: auto;
    }

    .top-products-link-item{
        width: 100%;
        height: auto;
        padding: 15px;
    }
}

.top-products-link-item-wrap{
    display: flex;
}

.top-products-link-item_left {
    width: calc(100% - 220px);
}

@media screen and (max-width: 768px) {
    .top-products-link-item_left {
        width: 100%;
    }
}

.top-products-link-item_left .product-introduction{
    font-size: 137.5%;
    font-weight: 700;
    line-height: 1;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {

    .top-products-link-item_left .product-introduction img{
        width: 50px;
        height: auto;
        margin-left: 10px;
    }
}

.top-products-link-item_left .product-name{
    font-size: 250%;
    font-weight: 700;
    line-height: 1.3;
}

.top-products-link-item_right{
    width: 220px;
}

@media screen and (max-width: 768px) {
    .top-products-link-item_right{
        display: none;
    }
    .top-products-link-item_left .product-name{
        font-size: 175%;
    }
}

.top-products-link-item_right img{
    width: 100%;
    height: auto;
}

.product-introduction img{
    width: 98px;
    height: 26px;
    margin-left:20px;
    vertical-align: middle;
}
*/
.section-map iframe{
    width: 100% !important;
    height: 300px !important;
    vertical-align:middle;
    /*filter:grayscale(100%);
    -webkit-filter:grayscale(100%);*/
}

@media screen and (max-width: 768px) {

    .section-map iframe{
        height: 250px !important;
    }

}

.section-footer-logo-contact{
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    .section-footer-logo-contact .wrapper660{
        max-width: 350px;
        width: 95%;
    }
}

.footer-logo-contact-wrap{
    display: flex;
    justify-content: space-between;
}

.footer-logo{
    display: flex;
    margin-bottom: 20px;
}

.footer-logo img{
    margin-right:10px;
    width: 51px;
    height: 54px;
}

.tel-contact-wrap{
    width: 300px;
}

.footer-tel{
    color: #0864b2;
    font-size: 3.4rem;
    font-weight: 700;
}

.footer-tel::before{
    content: '';
    display: inline-block;
    width: 33px;
    height: 33px;
    background-image: url(../img/icon-tel.png);
    background-size: contain;
    margin-right: 7px;
}

@media screen and (max-width: 768px) {

    .section-footer-logo-contact{
        padding: 35px 0;
    }

    .footer-logo-contact-wrap{
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    .footer-logo-wrap{
        margin-bottom: 20px;
    }

}

/*---------------global-navi----------------*/

.global-navi-wrapper{
    height: 50px;
    border-bottom: 2px solid var(--primary-blue-color);   
}

.global-navi{
    display: flex;
    flex-wrap: wrap;
}

.global-navi li{
    width: calc( 16.66% - 7px/6);
    width: calc( 14.28% - 8px/7);
    height: 50px;
    position: relative;
    padding: 0 10px;
}

.global-navi li::before{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    left: 0;
    content: "";
    width: 1px;
    height: 26px;
    background: var(--primary-blue-color);
}

.global-navi li:last-of-type::after{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    right: 0;
    content: "";
    width: 1px;
    height: 26px;
    background: var(--primary-blue-color);
}

.global-navi li a{
    font-size: 93.75%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    letter-spacing: -1.5px;
}

.global-navi li a:hover,
.global-navi li a.active{
    color: var(--primary-blue-color);

}

@media screen and (max-width: 768px) {
    .global-navi-wrapper{
        display: none;
    }
}

/*---------------main-contents----------------*/

.main-contents{
    padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
    .main-contents{
        padding-bottom: 70px;
    }
}

/*---------------breadcrumb----------------*/

.breadcrumb {
    height: 30px;
}

.breadcrumb span, .breadcrumb span a {
    font-size: 75%;
    line-height: 30px;
}

.breadcrumb span a:after {
    content: '>';
    padding: 0 5px;
}

.breadcrumb span > a > span {
    /*text-decoration: underline;*/
}

@media screen and (max-width: 1285px) {
    .breadcrumb {
        display: none;
    }
}

/*---------------pagenavi---------------*/

.wp-pagenavi a,
.wp-pagenavi span{
    margin-right: 15px;
    font-weight: 500;
}

.wp-pagenavi span.current{
    border-bottom: 1px solid;
}

.wp-pagenavi a:hover{
    border-bottom: 1px solid;
}

.wp-pagenavi a:last-child{
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .wp-pagenavi a,
    .wp-pagenavi span{
        font-size: 88%;
    }
}

.pagenavi-single-post a,
.pagenavi-single-post span {
    margin-right: 30px;
}

.pagenavi-single-post a:last-child{
    margin-right: 0;
}


/*---------------main-visual----------------*/

.mainvisual{
    height: 120px;
    padding-top: 10px;
    text-align: center;
}

.mainvisual-title{
    font-size: 187.5%;
    font-weight:600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

@media screen and (max-width: 768px) {

    .mainvisual{
        height: 75px;
        padding-top: 23px;
    }
    .mainvisual-title{
        font-size: 125%;
    }
}

/*----------sub-link-navi------------*/


/*.sub-link-navi-wrapper{
    height: 30px;
}*/

.sub-link-navi {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 30px;*/
    padding: 10px 0;
    background: var(--primary-bkgray-color);
}

.sub-link-navi li{
    width: calc( 16.66% - 7px/6);
    max-width: 200px;
    position: relative;
}

.sub-link-navi li::before{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    left: 0;
    content: "";
    width: 1px;
    height: 30px;
    background: var(--primary-blue-color);
}

.sub-link-navi li:last-of-type::after{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    right: 0;
    content: "";
    width: 1px;
    height: 30px;
    background: var(--primary-blue-color);
}

.sub-link-navi li a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
    letter-spacing: -1px;;
}

.sub-link-navi li a span::before{
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    background: url(../img/icon-blue-arrow-down.png);
    margin-right: 5px;
}

.sub-link-navi li a span.arrow-right::before{
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    background: url(../img/icon-blue-arrow.png);
    background-size: contain;
    margin-right: 5px;
}

.dropdown-trigger {
  display: none; /* PCでは非表示 */
}

@media (max-width: 768px) {
    
  .sub-link-navi {
    display: none; /* スマホではデフォルトで非表示 */
    flex-direction: column; /* ドロップダウンが開いた時に縦並びにする */
    position: absolute; /* 親要素を基準に配置 */
    width: 100%; /* 幅を画面いっぱいに広げる */
    background: #fff; /* ドロップダウン背景色 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影を追加して立体感を出す */
    z-index: 80; /* 他の要素より手前に表示する */
    background: var(--primary-bkgray-color);
  }
  
  .sub-link-navi li{
    max-width: inherit;
    width:100%;
    text-align: center;
  }
  
  .sub-link-navi li a{
    justify-content: flex-start;
    padding-left: 20px;
  }
  
  .dropdown-trigger {
    display: flex;
    align-items: center;
    position: relative; /* 子要素の配置基準に */
    padding: 10px;
    background: var(--primary-bkgray-color);
    cursor: pointer;
  }
  
  .dropdown-text {
    flex-grow: 1; /* 親要素の残りのスペースをすべて占有 */
    text-align: center; /* テキストを中央寄せ */
  }

  .arrow-icon {
    position: absolute;
    right: 15px;
    top: 40%;
    transform: translateY(-50%) rotate(135deg); /* 中央に配置し、135度回転 */
    width: 8px; /* 矢印の幅 */
    height: 8px; /* 矢印の高さ */
    border-top: 2px solid #333; /* 上の線 */
    border-right: 2px solid #333; /* 右の線 */
    transition: transform 0.3s ease;
  }

}

/*---------------page-title--------------*/

.page-title__underline{
    font-size: 125%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    color: var(--primary-blue-color);
    border-bottom: 2px solid var(--primary-blue-color);
}

.page-title__underline_fz24{
    font-size: 150%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    color: var(--primary-blue-color);
    border-bottom: 2px solid var(--primary-blue-color);
}

.page-title__underline_fz24 > span{
    font-size: 100%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    color: var(--primary-blue-color);
}

@media (max-width: 768px) {
    .page-title__underline_fz24{
        font-size: 118%;
    }
    
    .page-title__underline_fz24 > span{
        font-size: 90%;
        letter-spacing: -1px;
    }
    
}

.page-title_leftline{
    font-size: 125%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    border-left: 5px solid var(--primary-blue-color);
    padding-left: 10px;
}

.page-title__orange{
    font-size: 125%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    color: var(--primary-orange-color);
}

.page-title__orange_leftline{
    font-size: 125%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    border-left: 5px solid var(--primary-orange-color);
    padding-left: 10px;
}

@media (max-width: 768px) {
    
    .page-title_leftline,
    .page-title__orange_leftline{
        font-size: 113%;
    }
    .page-title__orange{
        font-size: 100%;
    }
    
}

.page-title__orange_fz30{
    font-size: 187.5%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    color: var(--primary-orange-color);
}

.page-title__orange_fz30 > a{
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    color: var(--primary-orange-color);
}

.feature-title{
    font-size: 125%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.feature-title > span.number_txtorange{
    font-size: 150%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    color: var(--primary-orange-color);
    margin-left: 5px;
}

@media (max-width: 768px) {
    .feature-title{
        font-size: 80%;
    }
    
    .page-title__orange_fz30{
        font-size: 120%;
    }
    
}


/*---------------about----------------*/

.about-section01{
    padding: 80px 0 30px;
}

@media (max-width: 768px) {
    
    .about-section01{
        padding: 30px 0 20px;
    }
}

.about-section02{
    position: relative;
    padding: 50px 0;
}

.about-section02-flex-items{
    column-gap: 6%;
}

.about-section02-flex-item-text{
    width: 60%;
}

.about-section02-flex-item-img{
    width: 34%;
}

@media (max-width: 1220px) {
    .about-section02-flex-item-text{
        width: 500px;
    }
    
}

@media (max-width: 1024px) {
    
    .about-section02{
        padding: 20px 0 30px;
        background: #fefaea;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
    .about-section02-flex-item-text{
        width: 100%;
    }
    
    .about-section02-flex-item-img{
        width: 80%;
        margin:0 auto;
        max-width: 280px;
    }
 
}

.about-section02::before {
    content: '';
    background: #fefaea;
    border-top-right-radius: 20px; 
    border-bottom-right-radius: 20px; 
    position: absolute;
    top: 0;
    left: 0;
    width: 78.5%;
    height: 400px;
    z-index: -1;
}

@media (max-width: 1024px) {
    
    .about-section02::before {
        content: none;
        /*width: 95%;
        height:550px;*/
    }
    
    .about-section02{
        
    }
}

.orange-radius-list li{
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #fc9128;
    border-radius: 5px;
    width: 700px;
    margin-bottom: 15px;
    line-height: 1;

}

@media (max-width: 1220px) {
    .orange-radius-list li{
        width: 500px;
    }
}

@media (max-width: 1024px) {
    .orange-radius-list li{
        width: 100%;
        text-indent: -25px;
        padding-left: 40px;
    }
}

.orange-radius-list li span{
    font-size: 150%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    letter-spacing: -.5px;
    line-height: 1;
}


@media (max-width: 1220px) {
    
    .orange-radius-list li span{
        font-size: 100%;
    }
}

@media (max-width: 1024px) {
    
    .orange-radius-list li span{
        font-size: 100%;
    }
    
}

.orange-radius-list li span:before{
    display: inline-block;
    content: "";
    width: 26px;
    height: 30px;
    margin-right: 5px;
    vertical-align: -8px;
}

.orange-radius-list li.one span:before{
    background: url(../img/icon-orange-01.png);
    background-size: contain;
        background-repeat: no-repeat;
}

.orange-radius-list li.two span:before{
    background: url(../img/icon-orange-02.png);
    background-size: contain;
        background-repeat: no-repeat;
}

.orange-radius-list li.three span:before{
    background: url(../img/icon-orange-03.png);
    background-size: contain;
        background-repeat: no-repeat;
}

@media (max-width: 1024px) {
    
    .orange-radius-list li span:before{
        width: 20px;
        height: 25px;
        
    }
}

.about-section03{
    padding: 80px 0;
}

@media (max-width: 768px) {
    .about-section03{
        padding: 40px 0;
    }
}

.about-feature-item{
    column-gap: 2%;
    margin-bottom: 50px;
}

.about-feature-item_text{
    width: 60%;
}

.about-feature-item_img{
    width: 37.5%;
    padding: 0 50px;
}

.about-feature-item:nth-child(odd){
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    
    .about-feature-item,
    .about-feature-item:nth-child(odd){
        flex-direction: column-reverse;
    }
    
    .about-feature-item_text{
        width: 100%;
    }
    
    .about-feature-item_img{
        width: 80%;
        padding: 0;
        margin: 10px auto 30px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
.negative-margin-title__sp{
    width: 95vw;
    margin-left: calc(50% - 45vw);
}
}

/*-------------about-lawyer--------------*/

.about-lawyer-content{
    padding: 70px 0;
}

.about-lawyer__photo-item{
    column-gap: 5%;
}

.about-lawyer__photo-text-name-wrap{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--primary-gray-color);
}

.about-lawyer__photo-img{
    width: 28.33%;
}

.about-lawyer__photo-text{
    width: 66.66%;
}

.about-lawyer__item{
    padding: 60px 0 20px;
}

@media (max-width: 768px) {
    
    .about-lawyer-content{
        padding: 40px 0;
    }
    
    .about-lawyer__photo-img{
        width: 100%;
        margin-bottom: 20px;
    }

    .about-lawyer__photo-text{
        width: 100%;
    }
    
    .about-lawyer__item{
        padding: 20px 0 10px;
    }
}


.about-lawyer__item:last-of-type{
    padding-bottom: 0;
}

.yellow-table-border-style{
    border-left: 1px solid var(--primary-gray-color);
    border-right: 1px solid var(--primary-gray-color);
    border-bottom: 1px solid var(--primary-gray-color);
}

.yellow-table-border-style:first-of-type{
    border-top: 1px solid var(--primary-gray-color);
}

.komoku{
    background-color: #fefaea;
    padding: 20px;
    width: 15%;
}

.naiyo{
    padding: 20px;
    width: 85%;
}

@media (max-width: 768px) {
    .komoku{
        width: 100%;
        padding: 10px 20px;
    }
    .naiyo{
        width: 100%;
        padding: 10px 20px;
    }
    
}

.list-dtw90,
.list-dtw120,
.list-dtw160,
.list-dtw190{
    display: flex;
    flex-wrap:wrap;
}

.list-dtw90 dt{
    width: 90px;
}

.list-dtw90 dd{
    width: calc(100% - 90px);
}

.list-dtw120 dt{
    width: 120px;
}

.list-dtw120 dd{
    width: calc(100% - 120px);
}

.list-dtw160 dt{
    width: 160px;
}

.list-dtw160 dd{
    width: calc(100% - 160px);
}

.list-dtw190 dt{
    width: 190px;
}

.list-dtw190 dd{
    width: calc(100% - 190px);
}

@media (max-width: 768px) {
    .list-dtw90 dt,
    .list-dtw120 dt,
    .list-dtw160 dt,
    .list-dtw190 dt{
        width: 100%;
    }
    
    .list-dtw90 dd,
    .list-dtw120 dd,
    .list-dtw160 dd,
    .list-dtw190 dd{
        width: 100%;
        text-align: justify;
    }
    
    .list-dtw90,
    .list-dtw120,
    .list-dtw160,
    .list-dtw190{
        margin-bottom: 10px;
    }
    
}

.square-list li{
    text-indent: -18px;
    padding-left: 18px;
    line-height: 1.8;
}

.square-list li::before{
    display: inline-block;
    content: "";
    background: var(--primary-blue-color);
    width: 13px;
    height: 13px;
    margin-right: 5px;
    vertical-align: ;
}

.square-list__white li{
    text-indent: -18px;
    padding-left: 18px;
    color: #fff;
    line-height: 1.8;
}

.square-list__white li::before{
    display: inline-block;
    content: "";
    background: #fff;
    width: 13px;
    height: 13px;
    margin-right: 5px;
    vertical-align: ;
}

.square-list__black li::before{
    background: #000;
}

.square-list__orange li::before{
    background: var(--primary-orange-color);
}



.about-lawyer-column{
    padding: 40px 0 50px;
    background: var(--primary-bkyellow-color);
}
@media (max-width: 768px) {
    .about-lawyer-column{
    padding: 20px 0 30px;
    }
}


.about-section03-flex-items{
    column-gap: 3.3%;
    row-gap: 50px;
}

.about-section03-flex-item{
    width: 48.3%;
    column-gap: 10%;
}

.about-section03-flex-item-img{
    width:34.5%;
}

/*.about-section03-flex-item-img .red-title*/
.red-title{
    text-align: center;
    margin-bottom: 20px;
    color: #c0392b;
    font-size: 125%;
}

.red-title::before{
    content: "\\"; 
    color: inherit; 
    margin-right: 0.3em;
}

.red-title::after {
    content: "/";
    color: inherit; 
    margin-left: 0.3em; 
}

.about-section03-flex-item-img > div > img{
    width: 100%;
    height: auto;
}

.about-section03-flex-item-text{
    width: 55.5%;
}

.icon-blue-right::after{
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icon-blue-arrow.png);
    background-size: contain;
    vertical-align: -2px;
    margin-left: 5px;
}

.about-section03-border-wrapper{
    border: 2px solid var(--primary-blue-color);
    border-radius: 20px;

}


.about-section04{
    padding: 40px 0 50px;
    background: var(--primary-bkyellow-color);
}

.about-section04-flex{
    column-gap: 4%;
}

.about-section04-flex-right{
    width: 21%;
}



.about-section04-flex-right-img{
    width: 205px;
    margin: 0px auto;
}

.about-section04-flex-right-img > img{
    max-width: 100%;
}

.about-section04-flex-left{
    width: 75%;
}

@media (max-width: 768px) {
    .about-section04-flex-left{
        width: 100%;
    }
    .about-section04-flex-right{
        display: none;
    }
}


.border-flex-list{
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #919191;
}

.border-flex-list:first-of-type{
    border-top: 1px solid #919191;
}

.border-flex-list dt{
    width: 110px;
    padding: 15px 5px 15px 15px;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.border-flex-list dd{
    width: calc(100% - 110px);
    padding: 15px 5px;
}

@media (max-width: 768px) {
    .border-flex-list dt{
        width: 100%;
        padding: 15px 5px 0px 0px;
    }
    
    .border-flex-list dd{
         width: 100%;
         padding: 0px 0px 15px;
    }
    
}

.about-section05{
    /*background: var(--primary-bkgray-color);*/
    padding: 70px 0;
}

.about-section05-flex{
    /*padding: 0 4%;*/
    column-gap: 8%;
    row-gap: 50px;
}

.about-section05-flex-item{
    width: calc(33.3333% - 16%/3);
    column-gap: 7.5%;
}

@media (max-width: 768px) {
    
    .about-section05-flex{
        column-gap: 5%;
    }
    
    .about-section05-flex-item{
        width: calc(50% - 5%/2);
        justify-content: center;
    }
    
}

.about-section05-flex-item-img{
    /*width: 25%;*/
}

.about-section05-flex-item-text .name-flex{
   align-items: center;
}

@media (max-width: 768px) {
    .about-section05-flex-item-text .name-flex > p{
        width: 100%;
    }
}

/*---------------flow----------------*/

.flow-title-img-wrap{
    column-gap: 3.4%;
    align-items: center;
    column-gap: 20px;
}

.flow-title-img{
    width: 16.6%;
    width: 193px;
}

.flow-title-img img{
    height: auto;
}

.flow-title-text{
    width: 80%;
    width: calc(100% - 213px);
}

@media (max-width: 768px) {
    
    .flow-title-img{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .flow-title-text{
        width: 100%;
    }
}

.flow-section01{
    padding: 50px 0 60px;
}

.flow-section02{
    padding: 60px 0 70px;
    margin-bottom: 100px;
    background: url(../img/flow-section02__bk.jpg);
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .flow-section02{
        padding: 40px 0;
        background-position: 70% center;
        margin-bottom: 50px;
    }   
}

.flow-section02 .orange-radius-list{
    margin: 20px auto;
}

.flow-section02 .orange-radius-list li{
    text-align: center;
    margin: 0 auto 20px;
}

.gray-radius-wrapper{
    background: var(--primary-bkgray-color);
    border-radius: 20px;
    padding: 50px;
}

.gray-radius-list{
    padding: 10px 20px;
    background: #fff;
    border: 1px solid  var(--primary-gray-color);
    border-radius: 5px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.gray-radius-list:last-of-type{
    margin-bottom: 0;
}

.gray-radius-list dt{
    width: 110px;
}

.gray-radius-list dd{
    width: calc(100% - 110px);
}


.yellow-radius-left-wrapper{
    padding: 40px 0;
    position: relative;
}

@media (max-width: 768px) {
    
    .yellow-radius-left-wrapper{
        width: 100%;
        background: #fefaea;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

.yellow-left-bg{
    background: #fefaea;
    border-top-right-radius: 20px; 
    border-bottom-right-radius: 20px; 
    width: 78%;
    height: 400px;
    position: absolute;
    top:0;
    left: 0;
    z-index:-1;
}

@media (max-width: 768px) {
    .yellow-left-bg{
        opacity: 0;
    }
}

.yellow-radius-right-wrapper{
    padding: 40px 0;
    position: relative;
}

@media (max-width: 768px) {
    
    .yellow-radius-right-wrapper{
        width: 100%;
        background: #fefaea;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        margin-left: 0%;
    }
}

.yellow-right-bg{
    background: #fefaea;
    border-top-left-radius: 20px; 
    border-bottom-left-radius: 20px; 
    width: 78%;
    height: 700px;
    position: absolute;
    top:0;
    right: 0;
    z-index:-1;
}

@media (max-width: 768px) {
    .yellow-right-bg{
        opacity: 0;
    }
}

/*.yellow-radius-left-wrapper::before{
    display: inline-block;
    background: #fefaea;
    border-top-right-radius: 20px; 
    border-bottom-right-radius: 20px; 
    width: 78%;
    height: 375px;
    content: "";    
}*/

.yellow-radius-left-content,
.yellow-radius-right-content{
    column-gap: 6%;
}

@media (max-width: 768px) {
    .yellow-radius-right-content{
        flex-direction: column-reverse;
    }
}

.yellow-radius-left_text{
    /*background: #fefaea;
    border-top-right-radius: 20px; 
    border-bottom-right-radius: 20px; */
    width: 58%;
    padding: 20px 0px 20px 0;
}

.yellow-radius-left_img{
    width: 35%;
}

.yellow-radius-left_img > img{
    width:100%;
    height: auto;
}

@media (max-width: 768px) {
    .yellow-radius-left_text{
        width: 100%;
        padding-top: 0;
    }

    .yellow-radius-left_img{
        width: 85%;
        margin: 0 auto;
        max-width: 400px;
    }
    
}

.yellow-radius-right_img{
    width: 35%;
    padding-top: 40px;
    /*display: flex;
    align-items: center;
    justify-content: center;*/
}

.yellow-radius-right > img{
    width:100%;
    height: auto;
}

.yellow-radius-right_text{
    /*background: #fefaea;
    border-top-left-radius: 20px; 
    border-bottom-left-radius: 20px; */
    width: 58%;
    padding: 0 0px 20px 0;
}

@media (max-width: 768px) {
    .yellow-radius-right_img{
        width: 85%;
        margin: 0 auto;
        padding-top: 10px;
        max-width: 400px;
    }
    
    .yellow-radius-right_text{
        width: 100%;
    }
    
}

.orange-number-list li,
.blue-number-list li{
	text-indent: -30px;
    padding-left: 30px;
    margin-bottom: 20px;
} 

.orange-number-list li:last-of-type,
.blue-number-list li:last-of-type{
    margin-bottom: 0px;
}

.orange-number-list li > div,
.blue-number-list li > div{
    padding-left:30px;
}

.orange-number-list li:before,
.blue-number-list li:before {
    display: inline-block;
    content: "";
    width: 26px;
    height: 30px;
    margin-right: 5px;
    vertical-align: -8px;
}

.orange-number-list li.one::before{
    background: url(../img/icon-orange-01.png);
}

.orange-number-list li.two::before{
    background: url(../img/icon-orange-02.png);
}

.orange-number-list li.three::before{
    background: url(../img/icon-orange-03.png);
}

.orange-number-list li.four::before{
    background: url(../img/icon-orange-04.png);
}

.orange-number-list li.five::before{
    background: url(../img/icon-orange-05.png);
}

.blue-number-list li.one::before{
    background: url(../img/icon-blue-01.png);
}

.blue-number-list li.two::before{
    background: url(../img/icon-blue-02.png);
}

.blue-number-list li.three::before{
    background: url(../img/icon-blue-03.png);
}

@media (max-width: 768px) {
    .orange-number-list li:before,
    .blue-number-list li:before {
        width: 20px;
        height: 25px;
        margin-right: 8px;
    }
    
    .orange-number-list li.one::before,
    .orange-number-list li.two::before,
    .orange-number-list li.three::before,
    .orange-number-list li.four::before,
    .orange-number-list li.five::before,
    .blue-number-list li.one::before,
    .blue-number-list li.two::before,
    .blue-number-list li.three::before{
        background-repeat: no-repeat;
        background-size: contain;
    }
        
}


.flow-section05{
    padding: 60px 0 80px;
}

@media (max-width: 768px) { 
    
    .flow-section05{
        padding: 40px 0;
    }
}

.flow-section05-flex{
    column-gap: 4%;
    row-gap: 10px;
}

.flow-section05-flex-img{
    width: 46%;
}

.flow-section05-flex-text{
    width: 48%;
}

@media (max-width: 768px) {
    
    .flow-section05-flex-img{
        width: 100%;
        margin: 0 auto 10px;
        max-width: 400px;
    }

    .flow-section05-flex-text{
        width: 100%;
    }
}

.blue-border-radius-line-wrapper{
    border: 2px solid var(--primary-blue-color);
    border-radius: 20px;
    background: #fff;
    padding: 30px 50px;
}

.orange-border-radius-line-wrapper{
    border: 2px solid var(--primary-orange-color);
    border-radius: 20px;
    background: #fff;
    padding: 30px 50px;
}

@media (max-width: 768px) {
    
    .orange-border-radius-line-wrapper{
        padding: 20px 10px;
    }
}

.accordion {
    width: 100%; /* 必要に応じて幅を調整 */
    margin-bottom: 10px; /* 各アコーディオン項目の下の余白 */
  }
  
  .accordion-item {
    border-bottom: 1px solid #908e86 /* 各項目の区切り線 */
  }

  .accordion-item:first-of-type {
    border-top: 1px solid #908e86 /* 各項目の区切り線 */
  }
  
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 50px 20px;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left; 
    background: transparent;
    font-size: 118%;
  }
  
  @media (max-width: 768px) {
    .accordion-header {
        padding: 10px 5px 15px;
    }
  }
  
  .question {
    font-weight: bold;
  }

  .question::before{
    display: inline-block;
    content:"";
    width: 39px;
    height: 40px;;
    background: url(../img/icon-question__orange.png);
    vertical-align: -10px;
    margin-right: 10px;
  }
  
  .answer {
    letter-spacing: -.5px;
    padding-left: 3.2em;
    text-indent: -3.2em;
    display: block;
  }

  .answer::before{
    display: inline-block;
    content:"";
    width: 40px;
    height: 41px;;
    background: url(../img/icon-answer__orange.png);
    vertical-align: -10px;
    margin-right: 10px;
  }
  
  .arrow {
    width: 1.6em; /* 幅を調整 */
    height: 1.6em; /* 高さを調整 */
    border-right: 0.3em solid #c1c0c0; /* 右側に線を描画 */
    border-top: 0.3em solid #c1c0c0; /* 上側に線を描画 */
    transform: rotate(135deg); /* これで右斜め下向きになります */
    transition: transform 0.3s ease-in-out;
    margin-top: -10px;
  }
  
  @media (max-width: 768px) { 
     .question::before{
        width: 25px;
        height: 25px;
        background: url(../img/icon-question__orange.png);
        vertical-align: -5px;
        background-size: contain;
     }
     .answer{
        text-indent: -2.5em;
        display: block;
        padding-left: 2.5em;
        text-align: justify;
    }
     .answer::before{
        width: 25px;
        height: 25px;
        background: url(../img/icon-answer__orange.png);
        vertical-align: -5px;
        background-size: contain;
     }
      .arrow {
        width: 1.0em;
        height: 1.0em;
        border-right: 0.2em solid #c1c0c0;
        border-top: 0.2em solid #c1c0c0;
        margin-top: 0;
        vertical-align: -5px;
      }
  }
  
  
  .accordion-header.open .arrow {
    transform: rotate(-45deg); /* 開いたときに上向きに */
    margin-top: 0px;
  }
  .accordion-content {
    padding: 0px 50px 20px 50px;
    display: none; /* 初期状態では非表示 */
    overflow: hidden; /* アニメーションのために必要 */
  }
  
  @media (max-width: 768px) { 
    .accordion-content {
        padding: 10px 50px 20px 5px;
    }
  }
  
  .accordion-content.open {
    display: block; /* 開いたときに表示 */
  }


/*---------------case----------------*/


.sub-link-navi-wrapper.case-sub-link-navi{
    background: var(--primary-bkgray-color);
}

.case-sub-link-navi .sub-link-navi{
    width: 90%;
    max-width: 1200px;
	margin: 0 auto;
}

.case-sub-link-navi .sub-link-navi li{
    width: calc(25% - 5px/4);
    max-width: inherit;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .case-sub-link-navi .sub-link-navi{
        width: 100%;
    }
    
    .case-sub-link-navi .sub-link-navi li{
        width: 100%;
    }
    
}

.case-title-img-wrap{
    column-gap: 3.4%;
    column-gap: 20px;
}

.case-title-img{
    width: 16.6%;
    width: 180px;
}

.case-title-img > img{
    width: 180px !important;
    vertical-align: top;
}

.case-title-text{
    width: 80%;
    width: calc(100% - 200px);
}

@media (max-width: 768px) {
    
    .case-title-img{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .case-title-text{
        width: 100%;
    }
}

.case-section01{
    padding: 100px 0 30px;
}

.case-section02{
    padding: 0 0 60px;
}

.case-section03{
    
}

/*.case-section03 h4.page-title_leftline{
    font-size: 125%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    border-left: 5px solid var(--primary-blue-color);
    padding-left: 10px;
}*/

.case-section03 .yellow-left-bg{
    height: 380px;
}


.case-section03 .border-flex-list{
    align-items: center;
}

.case-section03 .border-flex-list:first-of-type{
    border-top: none;
}

.case-section03 .border-flex-list dt{
    width: 180px;
    padding-left: 50px;
    font-size: 113%;
}

.case-section03 .border-flex-list dd{
    width: calc(100% - 180px);
    font-size: 113%;
}

@media (max-width: 768px) {
    
    .case-section03 .border-flex-list dt{
        width: 100%;
        padding-left: 0;
        margin-bottom: 10px;
    }
    
    .case-section03 .border-flex-list dd{
        width: 100%;
    }
    
}

a.underline{
    text-decoration: underline; 
}

.case-items-wrapper{
    column-gap: 3%;
    row-gap: 40px;
}

.case-item{
    width: calc(33.3333% - 6%/3);
    padding: 25px 30px;
    border-radius: 20px;
    border: 1px solid var(--primary-gray-color);
}

.case-item > a{
    display: block;
}

.case-item__img{
    width: 100%;
    margin-bottom: 20px;
}

.case-item__img > img{
    width: 100%;
    height: auto;
}

.case-item__text-title{
    font-size: 150%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    text-align: center;
    margin-bottom: 10px;
}

.icon-blue-arrow_w21::before {
    display: inline-block;
    content: "";
    width: 21px;
    height: 21px;
    background: url(../img/icon-blue-arrow_w21.png);
    vertical-align: -2px;
    margin-right: 5px;
}

.case-item__text > p{
    line-height: 1.4;
    font-size: 113%;
}

@media (max-width: 1024px) {
   .case-item{
        width: calc(50% - 6% / 2);
        padding: 15px;
        border-radius: 10px;
    } 
}


@media (max-width: 768px) {
    
    .case-items-wrapper{
        row-gap: 20px;
    }
    
    .case-item{
        width: calc(50% - 6% / 2);
        padding: 15px;
        border-radius: 10px;
    }
    
    .case-item__text-title {
        font-size: 100%;
        letter-spacing: -1px;
        margin-bottom: 0;
    }
    
    .case-item__img{
        margin-bottom: 5px;
    }
    
    .case-item__text > p{
        display: none;
    }
    
    .icon-blue-arrow_w21::before {
        width: 13px;
        height: 13px;
        margin-right: 2px;
        background-size: contain;
    }
    
}





.case-sec02-flex{
    justify-content: space-between;
    align-items: center;
}

.case-sec02-right-flex{
    column-gap: 60px;
}

.gray-line-radius-wrapper{
    padding: 20px 60px 20px 50px;
    background: #fff;
    border: 1px solid var(--primary-gray-color);
    border-radius: 10px;
    width: 100%;
    margin-bottom: 30px;
}

.gray-line-radius-wrapper:last-of-type{
    margin-bottom: 0;
}


.icon-blue-arrow-down-left::before{
    display: inline-block;
    content: "";
    width: 12px;
    height: 12px;
    background: url(../img/icon-blue-arrow-down.png);
    margin-right: 5px;
}

.icon-blue-left::before{
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icon-blue-arrow.png);
    background-size: contain;
    vertical-align: -2px;
    margin-right: 5px;
}


/*--------------case detail--------------*/

.case-detail-article{
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .case-detail-article{
        padding-bottom: 30px;
    }
}

.case-detail-title-wrapper{
    column-gap: 5%;
    margin-bottom: 60px;
}

.case-detail-title__img{
    width: 26.666%;
}

.case-detail-title__text{
    width: 68.3%;
}

.case-detail-section01{
    margin: 60px 0 0;
    padding-bottom: 90px;
}

.case-detail-title{
    font-size: 187.5%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

@media (max-width: 768px) {
    
    .case-detail-section01{
        padding-bottom: 50px;
    }
    
    .case-detail-title-wrapper{
        margin-bottom: 30px;
    }
    
    .case-detail-title__img{
        width: 80%;
        margin: 0 auto 20px;
    }
    
    .case-detail-title__text{
        width: 100%;
    }
    
    .case-detail-title{
        font-size: 125%;
    }
    
}


/* 手続きの流れ */
.flow-chart {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0; 
    flex-wrap: wrap; 
    justify-content: flex-start; 
}

.flow-step {
    position: relative; 
    padding: 20px;
    box-sizing: border-box;
    border: 3px solid var(--primary-orange-color);
    border-radius: 15px;
    background-color: #fff; 
    text-align: center;
    margin: 0px 40px 40px 0;
    flex: 0 0 calc( 33.33333% - 40px ); 
}

.flow-step-wrapper{
    margin-bottom: 0px;
}

.flow-step-wrapper:last-of-type{
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    
    .flow-step {
        /*margin: 0px 40px 20px 0;
        flex: 0 0 calc(100% - 40px); */
        margin: 0 0 35px 0;
        flex: 0 0 100%;
    }
}

/*.flow-step:nth-child(3n) {
    margin-right: 0;
}*/

.flow-step:not(:last-child)::after {
    content: '▶'; 
    position: absolute;
    top: 50%; 
    right: -25px; 
    transform: translate(50%, -50%); 
    font-size: 120%; 
    color: #000; 
    z-index: 10;
}

@media (max-width: 768px) {
    .flow-step:not(:last-child)::after {
        content: '▼'; 
        top: auto;     
        right: auto;    
        transform: none; 
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
    
}

.step-title {
    font-size: 175%; 
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    color: var(--primary-orange-color);
    margin-bottom: 10px;
}

.step-description{
    font-size: 113%;
    text-align: left;
}

@media (max-width: 768px) {
    .step-title {
        font-size: 125%; 
    }
    .step-description{
        font-size: 100%;
    }
}


.case-detail-content > p{
    font-size:113%;
}



.sub-link-navi-w20 li:nth-child(5n)::after{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    right: 0;
    content: "";
    width: 1px;
    height: 30px;
    background: var(--primary-blue-color);
}


.sub-link-navi-w20 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
}

.sub-link-navi-w20 li{
    width: calc(20% - 6px / 5);
    position: relative;
}

.sub-link-navi-w20 li::before{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    left: 0;
    content: "";
    width: 1px;
    height: 30px;
    background: var(--primary-blue-color);
}

.sub-link-navi-w20 li:last-of-type::after{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    right: 0;
    content: "";
    width: 1px;
    height: 30px;
    background: var(--primary-blue-color);
}

@media (max-width: 768px) {
    .sub-link-navi-w20 li::before,
    .sub-link-navi-w20 li:last-of-type::after{
        content: none;
    }
}

.sub-link-navi-w20 li a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 100%;
    letter-spacing: -1px;;
}

@media (max-width: 768px) {
    
  .sub-link-navi-w20 {
    display: none; /* スマホではデフォルトで非表示 */
    flex-direction: column; /* ドロップダウンが開いた時に縦並びにする */
    position: absolute; /* 親要素を基準に配置 */
    width: 100%; /* 幅を画面いっぱいに広げる */
    background: #fff; /* ドロップダウン背景色 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 影を追加して立体感を出す */
    z-index: 100; /* 他の要素より手前に表示する */
    background: var(--primary-bkgray-color);
    padding-bottom: 20px;
  }
  
  .sub-link-navi-w20 li{
    max-width: inherit;
    width:100%;
    text-align: center;
  }
  
  .sub-link-navi-w20 li a{
    justify-content: flex-start;
    padding-left: 20px;
  }
}

.case-sub-link-navi-wrapper{
    padding: 30px 0;
}

@media (max-width: 768px) {
    .case-sub-link-navi-wrapper{
        padding: 0;
    }
    
    .case-sub-link-navi-wrapper .wrapper{
        width: 100%;
    }
}


.case-icon {
    font-weight: bold;
    color: var(--primary-orange-color);
}

.case-icon::before{
    display: inline-block;
    content:"";
    width: 91px;
    height: 41px;;
    background: url(../img/icon-case__orange.png);
    vertical-align: -7px;
    margin-right: 10px;
}

.case-detail-accordion .accordion-header{
    padding: 10px 50px 20px;
}

.case-detail-accordion .accordion-content {
    padding: 20px 50px 30px 50px;
    background: #f5f5f5;
    margin-left: 50px;
    margin-right: 40px;
}

.case-detail-accordion .accordion-item:first-of-type{
    border-top: none;
}

@media (max-width: 768px) {
    
    .case-icon {
        position: relative;
        padding: 40px 0 0 0;
    }
    
    .case-icon::before{
        position: absolute;
        top: -5px;
    }
    
    .case-detail-accordion .accordion-header{
        padding: 10px 5px 20px;
    }
    
    .case-detail-accordion .accordion-content{
        margin: 0;
        padding: 20px;
    }
}



.case-accordion{
    width: 100%;
}

.case-accordion-item{
    border-bottom: 1px solid var(--primary-blue-color);
}

.case-accordion-item .accordion-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 20px 10px;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    background: transparent;
    font-size: 118%;
}

.case-accordion-item .accordion-content{
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}

.arrow-small{
    width: .8em;
    height: .8em;
}

.case-detail-section02{
    padding: 50px 0;
}

@media (max-width: 768px) {
    .case-detail-section02{
        padding: 25px 0;
    }
    
}

.case-detail-section03{
    padding: 60px 0;
}

.table-gray-style01{
    width: 100%;
}

.table-gray-style01 th,
.table-gray-style01 td{
    border: 1px solid var(--primary-gray-color);
    padding: 10px 20px;
}

.table-gray-style01 th{
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    text-align: left;
}

.table-gray-style01 th.col01{
    width: 14.1%;
}

.table-gray-style01 th.col02{
    width: 33.33%;
}

.table-gray-style01 th.col03{
    width: 52.3%;
}


.table-yellow-style01{
    width: 100%;
}

.table-yellow-style01 th,
.table-yellow-style01 td{
    border: 1px solid var(--primary-gray-color);
    padding: 10px 20px;
    font-size: 113%;
}

.table-yellow-style01 th.txtcenter {
    text-align: center;
}


@media (max-width: 768px) {
    
    .table-yellow-style01 th,
    .table-yellow-style01 td{
        font-size: 88%;
        padding: 10px;
    }
}

.table-yellow-style01 th{
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    text-align: left;
    background: var(--primary-bkyellow-color);
}

.table-yellow-style01.case01-table th.col01{
    width: 14.1%;
}



.table-yellow-style01.case01-table th.col02{
    width: 33.33%;
}

@media (max-width: 768px) {
    .table-yellow-style01.case01-table th.col01{
        width:calc(23.33% - 3px/2);
    }

    .table-yellow-style01.case01-table th.col02{
        width:calc(76.66% - 3px/2);
    }
}



.table-yellow-style01.case03-table th.col01{
    width: 5%;
}

.table-yellow-style01.case03-table th.col02{
    width: 20%;
}

.table-yellow-style01.case03-table th.col03{
    width: 33.33%;
}

@media (max-width: 768px) {
    .table-yellow-style01.case03-table th.col01{
        width:8%;
    }

    .table-yellow-style01.case03-table th.col02{
        width:20%;
    }
    
    .table-yellow-style01.case03-table th.col03{
        width:20%;
    }
}

.table-yellow-style01.case05-table01 th{
    width: 33%;
}

@media (max-width: 768px) {
    .table-yellow-style01.case05-table01 th.col02,
    .table-yellow-style01.case05-table01 th.col03{
        width:15%;
    }
}

.table-yellow-style01.case05-table02 th{
    width: 25%;
}

@media (max-width: 768px) {
    .table-yellow-style01.case05-table02 th.col03{
        width: 18%;
    }
    .table-yellow-style01.case05-table02 th.col04{
        width: 15%;
    }
    
}

.table-yellow-style01.case06-table01 td{
    vertical-align: top;
}

.table-yellow-style01.case07-table01 th{
    width: 50%;
}

.table-yellow-style01.case12-table01 th{
    width: 33%;
}

.case-detail__red-alert-item{
    width:91.666%;
    margin:20px auto;
    background: #c0392b;
    padding: 40px 70px;
    border-radius: 10px;
}

.case-detail__red-alert-item-flex{
    column-gap: 7%;
    align-items: center;
}

.case-detail__red-alert-item__img{
    width: 10.6%;
}

.case-detail__red-alert-item__img > img{
    max-width: 100%;
    height: auto;
}

.case-detail__red-alert-item__text{
    width: 82.23%;
}

.case-detail__red-alert-item__text > p,
.case-detail__red-alert-item__text > .circle-number-list li{
    color: #fff;
}

.case-detail__red-alert-item__text > p{
    font-size: 118%;
}

.case-detail__red-alert-item__text > li{
    font-size: 100%;
}

@media (max-width: 768px) {
    .case-detail__red-alert-item{
        padding: 30px 20px;
    }

    .case-detail__red-alert-item__img{
        width: 60px;
        margin: 0 auto 10px;
    }
    .case-detail__red-alert-item__text{
    width: 100%;
    }
}



.circle-number-list li{
    padding-left: 1em;
    text-indent: -1em;
}

.page-title__fw600_fz24{
    font-size: 150%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.table-yellow-style01.case14-table01 th{
    width: 33%;
}








/*--------------houterasu--------------*/

.houterasu-section01{
    padding: 0px 0 100px;
}

.houterasu-section01 .yellow-radius-right-wrapper{
    padding: 50px 0;
}

.houterasu-section01 .yellow-radius-right-content{
    align-items: center;
}

.houterasu-section01 .yellow-radius-right_img {
    padding-top: 0;
}

.houterasu-section01 .yellow-right-bg {
    height: 500px;
}

@media (max-width: 768px) {
    .houterasu-section01 .yellow-radius-right-wrapper{
        padding: 25px 0;
    }
    .houterasu-section01 .table-yellow-style01 th.txtcenter{
        width: 25%;
    }
    .houterasu-section01 .table-yellow-style01 th:nth-child(2){
        width: 33%;
    }
    
}

.circle-orange-icon{
    font-weight: bold;
}

.circle-orange-icon::before {
    display: inline-block;
    content: "";
    width: 27px;
    height: 27px;
    background: url(../img/icon-check-orange-circle.png);
    vertical-align: -7px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    
    .circle-orange-icon{
        font-size: 93.75%;
        letter-spacing: -.5px;
    }
    
    .circle-orange-icon::before {
        width: 20px;
        height: 20px;
        background-size: contain;
        vertical-align: -4px;
    }
    
}


/*---------------column----------------*/



.column-section01{
    padding: 30px 0;
}

.column-title-img-wrap{
    column-gap: 3.4%;
    align-items: center;
    padding-bottom: 30px;
}

.column-title-img{
    width: 16.6%;
    text-align: center;
}

.column-title-text{
    width: 80%;
}

@media (max-width: 768px) {
    
    .column-title-img{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .column-title-text{
        width: 100%;
    }
}

.border-gray{
    border-bottom: 1px solid var(--primary-gray-color);
}

.column-archive-flex{
    align-items: center;
    column-gap: 3%;
    margin-bottom: 50px;
}

.column-archive-flex:last-of-type{
    margin-bottom: 0;
}


.column-archive-img{
    width: 14%;
}

.column-archive-img .column-archive-img-pc{
    width: 100%;
    
}

.column-archive-img .column-archive-img-pc > img{
    width: 100%;
    height: auto;
}

.column-archive-text{
    width: 82.5%;
}

.column-archive-img-sp-wrapper{
    display: none;
}

@media (max-width: 768px) {
    .column-archive-img{
        width: 100%;
    }
    
    .column-archive-img .column-archive-img-sp-wrapper{
        display: flex;
        column-gap: 3%;
        margin-bottom: 20px;
    }
    
    .column-detail-title-flex .column-archive-img .column-archive-img-sp-wrapper {
    margin-bottom: 0;
    }

    .column-archive-img-sp{
        width:33%;
    }

    .column-archive-img-sp > img{
        width: 100%;
        height: auto;
    }

    .column-archive-img-sp-title{
        width: 60%;
    }
    
    .column-archive-text{
        width: 100%;
    }

}

.column-archive-excerpt > p{
    display: inline;
}

.column-detail-title-flex{
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
    margin-bottom: 0;
}


.column-detail-contents{
    padding: 40px 0 100px;
}

.column-name{
    font-size: 88%;
    color: #fff;
    margin-right: 10px;
    width: 150px;
    padding: 2px 5px;
    border-radius: 50px;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    background: var(--primary-blue-color);
}

@media (max-width: 768px) {
    
    .column-detail-title-flex{
        padding-bottom: 20px;
    }
    
    .column-detail-contents{
        padding: 20px 0 40px;
    }
    
    .column-name{
        font-size: 75%;
        width: 120px;
        padding: 1px;
    }
}

.column-year-archive-section{
    padding: 30px 0 35px;
}

@media (max-width: 768px) {
    .column-year-archive-section{
        padding: 0;
    }
    .column-year-archive-section .wrapper{
        width: 100%;
    }
}


/*-----------------access-----------------*/


.access-section01{
    padding: 30px 0;
}

.pagetop-title-img-wrap{
    column-gap: 3.4%;
    align-items: center;
}

.pagetop-title-img{
    width: 16.6%;
    text-align: center;
}

.pagetop-title-text{
    width: 80%;
}

@media (max-width: 768px) {
    
    .pagetop-title-img{
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .pagetop-title-text{
        width: 100%;
    }
}




.section-access-map iframe{
    width: 100%;
    height: 550px;
}

@media screen and (max-width: 768px) {
    .section-access-map iframe{
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .tel-link > a {
        /*color: #06F;
        font-weight: bold;*/
        text-decoration: underline;
    }
    
    .tel-link.txtRed > a {
        color: #f00;
    }
}

.section-access-txt{
    margin-bottom: 40px;
}

.access-text-block{
    margin-bottom: 20px;
}

.indent1{
    padding-left: 1em;
    text-indent:-1em;
}

.indent7{
    padding-left: 7em;
    text-indent:-7em;
}

@media screen and (max-width: 768px) {

    .indent1{
        padding-left: 0;
        text-indent:0;
    }

    .indent7{
        padding-left: 0;
        text-indent: 0;
    }
}

/*-------------column-kizuna---------------*/


.column-kizuna-article{
    padding-bottom: 60px;
}

.column-kizuna-section01{
    padding: 30px 0;
}

.event-wrap{
    margin-bottom: 40px;
}

.column-kizuna-section02{
    padding: 40px 0 50px;
    background: var(--primary-bkyellow-color);
}

.column-kizuna-list-wrap{
    margin-bottom: 40px;
}

.column-kizuna-list-wrap .border-flex-list{
    align-items: center;
}

.column-kizuna-list-wrap .border-flex-list dt{
    width: 180px;
    padding: 15px 0;
}

.column-kizuna-list-wrap .border-flex-list dd{
    width: calc(100% - 180px);
}

.column-kizuna-list-wrap .border-flex-list dd a{
    font-size: 125%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

@media (max-width: 768px) {
    
    .column-kizuna-article{
        padding-bottom: 30px;
    }
    
    .event-wrap{
        margin-bottom: 20px;
    }
    
    .column-kizuna-section02{
        padding: 30px 0;
    }
    
    .column-kizuna-list-wrap .border-flex-list dt  {
        width: 100%;
        padding: 10px 5px 0px 0px;
        font-size: 75%;
    }

    .column-kizuna-list-wrap .border-flex-list dd {
        width: 100%;
        padding: 0px 0px 10px;
    }
    
    .column-kizuna-list-wrap .border-flex-list dd a{
        font-size: 100%;
    }
    
    .column-kizuna-list-wrap{
        margin-bottom: 20px;
    }

}


.column-section01-flex{
    column-gap: 4%;
    row-gap: 20px;
}

.column-section01-item{
    width: 48%;
}

.column-section01-item.blue-border-radius-line-wrapper{
    padding: 25px;
}


.column-section01-item__logo{
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-bkyellow-color);
    border-bottom: 5px solid var(--primary-blue-color);
}

.column-section01-item__logo img{
    max-width: 100%;
    height: auto;
}

.column-section01-item__text{
    padding: 20px 10px 0 20px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {

    .column-section01-item{
        width: 100%;
    }
}

.column-kizuna-content-table{
    width: 100%;
}

.column-kizuna-content-table th{
    width: 200px;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    font-size: 113%;
    text-align: left;
    vertical-align: top;
}

.column-kizuna-content-table td{
    width: calc(100% - 200px);
}

.column-kizuna-content-table th,
.column-kizuna-content-table td{
    padding: 10px 0;
}

.column-kizuna-content-table td{
    font-size: 113%;
}

.column-kizuna-content-table td a{
    text-decoration: underline;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

@media screen and (max-width: 768px) {
    
    .column-kizuna-content-table th,
    .column-kizuna-content-table td{
        display:block;
        width: 100%;
        font-size: 100%;
    }
     .column-kizuna-content-table th{
        padding:0;
     }
     .column-kizuna-content-table td{
        padding: 0 0 20px;
     }
}

.event-item{
    margin-bottom: 30px;
}

.event-item:last-of-type{
    margin-bottom: 0;
}








/*-------------------link-------------------*/

.link-sub-link-navi li{
    width: auto;
    max-width: inherit;
    padding: 0 20px;
}

.link-section01{
    padding: 40px 0 50px;
    background: var(--primary-bkyellow-color);
}

.link-section01 .square-list__orange li a{
    letter-spacing: -1px;
}

.flex-5050-item .square-list__orange li{
    width: 50%;
}

@media screen and (max-width: 768px) {
    
    .link-section01{
        padding: 30px 0;
    }
    
    .flex-5050-item .square-list__orange li{
        width: 100%;
    }
}

.link-section02{
    padding: 40px 0 90px;
}

.border-paragraph{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.link-border-paragraph > p{
    font-size: 113%;
}

.link-border-paragraph span{
    color: var(--primary-blue-color);
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    margin-left: 20px;
}

.link-border-paragraph span > a{
    color: var(--primary-blue-color);
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    
    .link-section02{
        padding: 30px 0 40px;
    }
    
    .link-border-paragraph > p{
        font-size: 88%;
    }
    
    .link-border-paragraph span{
        display: block;
        margin-left:0;
    }
    
    
}


/*---------------news----------------*/


.news-archive-section01{
    padding: 20px 0 70px;
}
.news-archive-list-wrap{
    margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
    
    .news-archive-section01{
        padding: 10px 0 40px;
    }
    .news-archive-list-wrap{
        margin-bottom: 50px;
    }
    
}










.detail_list {
   /* width: 49%;*/
    display: flex;
    flex-wrap: wrap;
}

.detail_list li {
    width: calc(50% - 20px/2);
    margin-right: 20px;
    color: #5b5b5b;
    margin-bottom: 10px;
}

.detail_list li:nth-child(2n) {
    margin-right: 0;
}

.detail_list li span {
    padding: 2px 10px;
    background: #fff;
    display: inline-block;
    width: 100%;
}

.detail_list li span.subttl {
    font-weight: 500;
    display: inline-block;
    width: 100%;
    background: #cfeaf6;
    padding: 2px 10px;
}

@media screen and (max-width: 768px) {

    .detail_list {
        width: 100%;
    }

    .detail_list li {
        margin-bottom: 5px;
        width: 100%;
        margin-right: 0;
    }

    .detail_list li span {
        font-size: 75%;
    }
   
}


/*-----------------company-----------------*/

.section-company-introduction {
    padding: 40px 0 70px;
}

@media screen and (max-width: 768px) {

    .section-company-introduction {
        padding: 20px 0 35px;
    }
}

.section-company-gaiyo{
    padding-top: 70px;
}

.company-gaiyo__list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.company-gaiyo__list:last-child{
    margin-bottom: 0;
}

.company-gaiyo__list dt{
    width: 125px;
    color:#ea5413;
    font-size: 100%;
    font-weight: 500;
    transform: rotate(0.03deg);
}

.company-gaiyo__list dd{
    width: calc(100% - 125px);
    font-size: 100%;
    transform: rotate(0.03deg);
}

@media screen and (max-width: 768px) {

    .section-company-gaiyo{
        padding-top: 30px;
    }
    .company-gaiyo__list{
        margin-bottom: 20px;
    }

    .company-gaiyo__list dt,
    .company-gaiyo__list dd{
        width: 100%;
        font-size: 88%;
    }
}





/*-------------privacy-policy-------------*/

.privacy__number-list{
    padding-left: 3em;
    text-indent: -3em;
}

.privacy__date > p{
    text-align: right;
}

.disc-list.privacy__disc-list li{
    line-height: 1.6;
}


.section-privacy-content{
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    .section-privacy-content{
        padding-top: 40px;
    }
}

.privacy-paragraph{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #000;
}

.privacy-content-txt{
    font-size: 100%;
    line-height: 2.2;
    color: #000;
}

.privacy-title{
    text-align: center;
    font-size: 150%;
    color: #ea5413;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    line-height: 2.2;
}

@media screen and (max-width: 768px) {

    .privacy-title{
        font-size: 113%;
        margin:10px 0;
    }

    .privacy-content-txt{
        font-size: 88%;
        line-height: 1.6;
    }
}

.disc-list{
    margin-left: 15px;
}

.disc-list li{
    list-style-type: none;
    font-size: 100%;
    line-height: 2;
}

.disc-list li:before{
    content: '';
	width: 2px;
	height: 2px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	position: relative;
	left: -8px;
	top: -3px;
}

@media screen and (max-width: 768px) {

    .disc-list li{
        font-size: 88%;
        line-height: 1.6;
    }
}


/*-----------------news-detail-----------------*/

.news-detail-title {
    color: var(--primary-blue-color);
    font-size: 150%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue-color);
}

/*.info-detail-title::before{
    content: '';
    display: inline-block;
    width: 23px;
    height: 35px;
    background-image: url(../img/icon-company-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
    vertical-align: middle;
}*/

@media screen and (max-width: 768px) {

.news-detail-title {
    font-size: 113%;
    margin-bottom: 15px;
    padding-left: 40px;
    text-indent: -45px;
}

}

.news-contents{
    border-bottom: 1px solid #000;
    padding: 50px 0 100px;
}

.news-contents p{
    font-size: 100%;
    line-height: 2;
    margin-bottom: 1em;
}

.news-detail__date_cat{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media screen and (max-width: 768px) {

    .news-contents{
        padding: 20px 0 40px;
    }
    .news-contents p{
        font-size: 88%;
    }

}

.pagenavi ul li{
    margin-right: 18px;
}

.pagenavi ul li:last-child{
    margin-right: 0;
}

.pagenavi ul li a{
    color: #000;
    font-size: 100%;
    
}

.pagenavi ul li a.active,
.pagenavi ul li a:hover{
    border-bottom: 1px solid #000;
}

.news-to-ichiran-link::after{
    vertical-align: 0;
}

/*------------soudan_yoyaku_doui------------*/

    .soudan_yoyaku-section01 {
        padding: 30px 0 20px;
    }

.orange-radius-item li{
    padding: 10px 15px;
    background: #fff;
    border: 1px solid #fc9128;
    border-radius: 5px;
    width: 600px;
    margin-bottom: 15px;
    padding-left: 45px;
    text-indent: -30px;
}

.orange-radius-item li span.title{
    font-size: 125%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}

.orange-radius-item li span.icon-check-orange::before{
    content: "";
    background: url(../img/icon-check-orange-circle.png);
    width: 27px;
    height: 27px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .orange-radius-item li{
        width: 100%;
    }
    .orange-radius-item li span.title{
        font-size: 100%;
    }
    .orange-radius-item li span.icon-check-orange::before {
        content: "";
        background: url(../img/icon-check-orange-circle.png);
        width: 18px;
        height: 18px;
        display: inline-block;
        vertical-align: -4px;
        margin-right: 10px;
        background-size: contain;
    }
}

.underline{
    text-decoration: underline;

}



.soudan_yoyaku-section02 {
    position: relative;
    padding: 50px 0;
    
}

.soudan_yoyaku-section02::before {
       content: '';
    background: #fefaea;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 78.5%;
    height: 580px;
    z-index: -1;

}

@media (max-width: 768px) {
    
    .soudan_yoyaku-section02 {
        padding: 0;
    }
    
    .soudan_yoyaku-section02::before {
        content: none;
    }
}

.soudan_yoyaku-section02-flex-items{
    column-gap: 6%;
}


@media (max-width: 768px) {
    .soudan_yoyaku-section02-flex-items{
        background: #fefaea;
        margin: 0 calc(50% - 50vw) 20px;
        padding: 20px calc(50vw - 50% + 8px);
        width: 100vw;
    }

}

.soudan_yoyaku-kojinjoho-check-item{
    margin: 10px 0;
    padding: 15px 0;
    border-top: 1px solid var(--primary-gray-color);
    border-bottom: 1px solid var(--primary-gray-color);
}

.soudan_yoyaku-kojinjoho-check-submit > a,
.soudan_yoyaku-kojinjoho-check-submit > button,
#submit01{
    border: none;
    color: var(--primary-blue-color);
    font-size: 150%;
    background: none; /* ボタンのデフォルト背景を消す */
    cursor: pointer;  /* マウスを乗せた時に指マークにする */
    padding: 0;       /* 余計な余白をリセット */
    font-family: inherit; /* フォントを継承 */
}

.soudan_yoyaku-kojinjoho-check-submit > a.icon-blue-left::before,
.soudan_yoyaku-kojinjoho-check-submit > button.icon-blue-left::before{
    vertical-align: 0;
}
.soudan_yoyaku-kojinjoho-check-item label{
    font-size: 115%;
}

.soudan_yoyaku-kojinjoho-check-item label > input{
    margin-right:5px;
}

@media (max-width: 768px) {
    .soudan_yoyaku-kojinjoho-check-item label{
        font-size: 100%;
    }
    
.soudan_yoyaku-section02-flex-items::before {
    height: 970px;
    width: 100%;
}

.soudan_yoyaku-section02-flex-items .about-section02-flex-item-text{
    margin: 0 auto;
}

}

.yoyaku-calendar-content{
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    
    .yoyaku-calendar-content{
        padding-bottom: 50px;
    }
    
}

.yoyaku-calendar-content .multiple-calendar{
    margin-bottom: 20px;
}

.yoyaku-calendar-content .multiple-calendar > .calendar-title{
    display: none;
}


.yoyaku-calendar-content .multiple-calendar table{
    width: 100%;
}

.yoyaku-calendar-content .calendar-caption {
    color: var(--primary-blue-color);
    font-size: 125%;
}

.yoyaku-calendar-content .multiple-calendar th{
    background: var(--primary-blue-color);
    color: #fff;
    padding: 5px;
}

.yoyaku-calendar-content .multiple-calendar td{
    height: 60px;
}


/* 「戻る」ボタン本体のスタイル */
.mtssb-daily-action button {
    border: none;
    color: var(--primary-blue-color);
    font-size: 150%; /* 相談申込ボタンと同じサイズ */
    background: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

/* アイコン（::before）の追加 */
.mtssb-daily-action button::before {
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/icon-blue-arrow.png);
    background-size: contain;
    margin-right: 5px;
}

/* ホバー時の演出（必要に応じて） */
.mtssb-daily-action button:hover {
    opacity: 0.7;
}

/*booking-form*/

#booking-form.content-form{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto 100px;
}

.content-form input, 
.content-form textarea,
.content-form select {
    border: 1px solid #ccc;
    padding: 5px;
}

@media (max-width: 768px) {
#booking_client-fieldset .content-text.medium {
    width: 95%;
}

#booking_client-fieldset .content-form th{
    font-size: 0.9rem;
}

}




/*-----------------sitemap-----------------*/

.sitemap-list-wrapper{
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .sitemap-list-wrapper{
        width: 80%;
    }
    
}

.sitemap-list{
    min-width: 200px;
}

.sitemap-list > li {
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    
    .sitemap-list > li {
        margin-bottom: 20px;
    }
    
}

.sitemap-list > li > a {
    font-size: 113%;
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
    line-height: 1;
}


.sitemap-list > li > a::before {
    display: inline-block;
    content: "";
    width: 11px;
    height: 11px;
    background: url(../img/icon-blue-arrow.png);
    background-size: contain;
    vertical-align: 1px;
    margin-right: 5px;
}

.sitemap-sublist{
    margin-top: 5px;
    margin-left: 16px;
}

.sitemap-sublist > li > a {
    font-size: 113%;
}


@media (max-width: 768px) {
    .sitemap-list > li > a,
    .sitemap-sublist > li > a {
        font-size: 100%;
    }
}




/*-----------------contact-----------------*/


.section-contact-wrapper{
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    .section-contact-wrapper{
        padding-top: 30px;
    }
}

.contact__list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact__list:last-child{
    margin-bottom: 0;
}

.contact__list dt{
    width: 200px;
    color:#ea5413;
    font-size: 100%;
    font-weight: 500;
    transform: rotate(0.03deg);
}

.contact__list dd{
    width: calc(100% - 200px);
    font-size: 100%;
    transform: rotate(0.03deg);
}

@media screen and (max-width: 768px) {

    .contact__list{
        margin-bottom: 20px;
    }

    .contact__list dt,
    .contact__list dd{
        width: 100%;
    }

    .contact__list dt{
        font-size: 88%;
    }
}

.contact-address-list{
    display: flex;
    align-items: center;
}

.contact-address-list_column1{
    font-size: 88%;
    width: 80px;
}

.required{
    color: #c0362f;
    font-size: 88%;
    font-weight: 800;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {

    .contact-address-list_column1{
        font-size: 75%;
        width: 60px;
    }
    
    .required{
        font-size: 75%;
        margin-left: 10px;
        width: 40px;
    }
}

.input{
    border: 1px solid #d4d4d4;
    font-weight:500;
    padding: .5em .5em .5em .7em;
}

.select,
.textarea{
    border: 1px solid #d4d4d4;
    font-weight:500;
    padding: .5em .5em .5em .7em;  
}

.textarea{
    width: 100%;
    height: 250px;
}

.input_text01{
    width:100%;
    /*width: 300px;
    max-width: 300px;   */
    
}

.input_text02{
    width: 180px;
}

.input_text03{
    width: 300px;
    max-width: 300px;
}

.select01{
    width: 180px;
}

::placeholder {
    opacity: .5;
}

@media screen and (max-width: 768px) {

    .input,
    .select,
    .textarea{
        font-size: 100%;
    }
    .input_text01{
        width: 100%;
        /*width: calc(100% - 50px);*/
    }
    .input_text02,
    .input_text03,
    .select01{
        max-width: 215px;
    }
    .contact-address-list_column2{
        width: calc(100% - 137px);
    }

    .textarea{
        width: 100%;
        height: 180px;
    }
}


.button-contact-submit{
    font-size: 137.5%;
    color: #fff;
    font-weight: 500;
    width:250px;
    height: auto;
    padding: 10px;
    background: #ea5413;
    text-align: center;
    position: relative;
    border: none;
    cursor: pointer;
}

.button_address{
    font-size:1.6rem;
    padding: 6px 10px;
    background: #e0e0e0;
    margin-left: 10px;
    cursor: pointer;
}

.button_address:hover{
    opacity: .7;
}

@media screen and (max-width: 768px) {
    .button_address{
        font-size: 75%;
        padding: 12px 5px;
    }

}


/* table */
table.general-table,
table.general-table th,
table.general-table td,
table.cost-table,
table.cost-table th,
table.cost-table td	{
    border-collapse: collapse;
	}
table.general-table th,
table.general-table td,
table.cost-table th,
table.cost-table td	{
	border: 1px solid #ccc;
	vertical-align: middle;
	padding: 10px;
	}
table.general-table th,
table.cost-table th	{
	background-color: #f5f5f5;
	}
table.general-table td a,
table.cost-table td a	{
	text-decoration: underline;
	font-weight: bold;
	}
table.general-table th.w150,
table.cost-table th.w150	{
	width: 130px;
	}
table.general-table th.w100,
table.cost-table th.w100	{
	width: 80px;
	}
    
@media screen and (max-width:768px){
    
table.general-table	{
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	}
table.general-table th,
table.general-table td	{
	display: block;
	width: 100%;
	border: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	}
table.general-table th	{
	background-color: #f5f5f5;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	}
table.general-table th.w150,
table.general-table th.w100	{
	width: 100%;
	}

table.cost-table	{
    /*table-layout: fixed;*/
	word-break: break-word;
	}
table.cost-table th.w150	{
	width: auto;
	}
table.cost-table th.w100	{
	width: auto;
}	

}

.inquiry-form input[type="text"] {
    float: left;
    width: 200px;
    height: 22px;
    padding: 4px;
    border: 1px solid #ccc;
    -webkit-appearance: none;
    border-radius: 0;
}
.inquiry-form input[type="submit"] {
    width: 100px;
    height: 32px;
    background-color: #666;
    border: none;
    color: #fff;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    -webkit-appearance: none;
    border-radius: 0;
}
.inquiry-form input[type="submit"]:hover {
    background-color: #59b1eb;
}
.inquiry-form input[type="submit"][disabled] {
    background-color: #ccc;
    cursor: default;
}


/*.section-property-listings {
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    
    .section-property-listings {
        padding-top: 70px;
    }
}*/

/*-----------------slick-----------------*/

/*photo-slider サムネイル付写真slick*/

#photo-slider,
#photo-thumbnail_slider{
    width: 100%;
    /*margin: 0 auto 20px;*/
}

/*#photo-thumbnail_slider{
    margin: 0 auto;
}*/
.slide-item img{
    width: 100%;
}  
  .thumbnail-item img{
    width: 98%;
    margin: 0 auto;
}

#photo-slider .slick-next{
    right:-45px;
}

#photo-slider .slick-prev{
    left:-45px;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 70px; 
  height: 70px; 
  border: none;
  background-color: transparent; 
  cursor: pointer;
  text-indent: -9999px; 
  overflow: hidden;
}

.slick-prev {
  left: 10px;
  background-image: url('../img/btn-prev.png'); /* prevボタンの画像URL */
  background-repeat: no-repeat;
  background-size: contain; /* 画像をボタン内に収める */
}

.slick-next {
  right: 10px;
  background-image: url('../img/btn-prev.png'); /* nextボタンの画像URL */
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%) scaleX(-1); /* 画像を左右反転 */
}


/*#photo-thumbnail_slider .slick-prev,
#photo-thumbnail_slider .slick-next{
    background-color: #fff;
    opacity: .8;
    width: 20px;
    height: 100%;
    background-image: none;
    background-position: center;
    z-index:1;
    border-radius:0;
    -webkit-border-radius: 0;
    top: 0;
    margin-top: 0;
}

#photo-thumbnail_slider .slick-prev{
    left: 0px;
}

#photo-thumbnail_slider .slick-next{
    right: 0px;
}

#photo-thumbnail_slider .slick-prev::before{
    content: "";
    display:block;
    width: 8px;
    height: 16px;
    margin-top: -8px;
    background-image: url(../img/btn-prev.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 30%;
}

#photo-thumbnail_slider .slick-next::before{
    content: "";
    display:block;
    width: 8px;
    height: 16px;
    margin-top: -8px;
    background-image: url(../img/btn-next.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 200;
    left: 25%;
}*/

@media screen and (max-width: 768px) {
    #photo-slider, 
    #photo-thumbnail_slider{
        margin: 0 auto 20px;
    }

    .slick-prev,
    .slick-next {
        width: 50px;
        height: 50px; 
    }

    #photo-slider .slick-next {
        right: -20px;
    }

    #photo-slider .slick-prev {
        left: -20px;
    }
}

#bannerslider{
    position: relative;
}

#bannerslider .slick-prev,
#bannerslider .slick-next {
  position: absolute;
  top: 57%;
  transform: translateY(-50%);
  z-index: 10;
  width: 24px; 
  height: 24px; 
  border: none;
  background-color: transparent; 
  cursor: pointer;
  text-indent: -9999px; 
  overflow: hidden;
}

#bannerslider .slick-prev {
  left: 5px;
  background-image: url('../img/btn-prev__blue-arrow_w24.png'); /* prevボタンの画像URL */
  background-repeat: no-repeat;
  background-size: contain; /* 画像をボタン内に収める */
}

#bannerslider .slick-next {
  right: 5px;
  background-image: url('../img/btn-prev__blue-arrow_w24.png'); /* nextボタンの画像URL */
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%) scaleX(-1); /* 画像を左右反転 */
}

.slick-dots{
    text-align: center;
    margin-top: 10px;
}

.slick-dots li {
  /* ドットを横並びにする */
  display: inline-block;
  /* ドット同士の間に少し隙間を作る */
  margin: 0 5px;
}

.slick-dots li button {
  /* 数字を非表示にする */
  font-size: 0;
  line-height: 0;
  /* 非表示にした文字の代わりに見えるように、幅と高さを設定 */
  width: 12px;
  height: 12px;
  /* 任意の背景色を設定 */
  background: #fff;
  /* 丸型にする */
  border-radius: 50%;
  /* その他のスタイル調整 */
  border: none;
  cursor: pointer;
  padding: 0;
  border: 1px solid var(--primary-blue-color);
}

/* 現在アクティブなドットの色を変更する */
.slick-dots li.slick-active button {
  background: var(--primary-blue-color);
}


/*---------------products----------------*/



/*.main-menu-list{
    display: flex;
}



.main-menu-list li a{
    display: block;
    width: 250px;
    height: 85px;
    background: #e8e9eb;
    padding-top: 15px;
    text-align: center;
    border-radius: 10px 10px 0 0 / 10px 10px 0 0;
    margin-right: 1px;
}

.main-menu-list li a.active,
.main-menu-list li a:hover{
    background: #fff;
    opacity: 1 !important;

}

.main-menu-list li a span{
    display: block;
}



@media screen and (max-width: 768px) {

    

    .main-menu-list li:last-child{
        margin-right: 0;
    }

    .main-menu-list li a{
        width: 100%;
        padding-top: 5px;
        height: 50px;
    }

    .main-menu-list li a span.txtBlue{
        zoom: 0.8;
    }
}

.title-vertical-line{
    position: relative;
}

.title-vertical-line::before {
    position: absolute;
    content: '';
    top: -90px;
    left: 50%;
    margin-left: -1px;
    display: block;
    width: 1px;
    height: 60px;
    background-image: url(../img/vertical-line.jpg);
    background-size: contain;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {

    .title-vertical-line::before {
        top: -40px;
        height: 30px;
    }


}

.products_jisha-tasha-link-item{
    display: flex;
    margin-bottom: 150px;
}

.products_jisha-tasha-link-item > a{
    width: calc( 50% - 40px/2 );
    height: 370px;
    background:#f6f8fb;
    text-align: center;
}

.products_jisha-tasha-link-item > a:first-child{
    margin-right: 40px;
}

.products_jisha-tasha-link-item > a > div{
    height: 290px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-jisha{
    width: 420px;
    height: 115px;
}

@media screen and (max-width: 768px) {

    .products_jisha-tasha-link-item{
        margin-bottom: 45px;
    }

    .products_jisha-tasha-link-item > a img{
        width: auto;
        height: auto;
        max-width: 90%;
        max-height: 80%;
    }

    .products_jisha-tasha-link-item > a{
        width: calc( 50% - 15px/2 );
        height: 140px;
    }

    .products_jisha-tasha-link-item > a:first-child{
        margin-right: 15px;
    }

    .products_jisha-tasha-link-item > a > div{
        height: 100px;
    }

}*/

/*products-00*/

/*.products-img-wrap{
    width: 500px;
    padding-right: 50px;
}

.products-txt-wrap{
    width: 500px;
}

.square__back-line{
    display: flex;
    align-items: center;
}

.square__back-line span{
    width:200px;
    height: 50px;
    line-height:45px;
    font-size: 88%;
    color: #000;
    background-color: #fff;
    border: 1px solid #b5b5b5;
    text-align: center;
}

.square__back-line::before{
    content: "";
    display: inline-block;
    background: #b5b5b5;
    width:145px;
    height: 1px;
}

.square__back-line::after{
    content: "";
    display: inline-block;
    background: #b5b5b5;
    width:145px;
    height: 1px;
}

.products__icon-yoto-wrap{
    width: 460px;
    margin:20px auto;
    display:flex;
}

.products__icon-yoto-item{
    width: 25%;
}

.products__icon-yoto-item div,
.products__icon-yoto-item p{
    text-align: center;
}

.link__catalogue-download{
    font-size: 113%;
    font-weight: 700;
    color: #0864b2;
    border-bottom: 2px solid #7faed6;
}

.flex-wrap__l690-r310{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.flex-wrap__l690-r310:last-child{
    margin-bottom: 0;
}

.flex-item__l690{
    width: 690px;
}

.flex-item__r310{
    width: 310px;
}

.title-blue-underline{
    position: relative;
}

.title-blue-underline:after{
    position: absolute;
    content:"";
    left:0;
    bottom: -10px;
    display: inline-block;
    width: 70px;
    height: 5px;
    background:#0864b2;

}

.flex-wrap__l500-r500{
    display: flex;
    flex-wrap: wrap;
}

.flex-item__l500{
    width: 500px;
}

.flex-item__r500{
    width: 500px;
}

.flex-wrap__l500-r500 img{
    margin-right: 1px;
    margin-bottom: 1px;
}

.table-style01{
    width: 100%;
    border-right: 1px solid #b5b5b5;
    border-top: 1px solid #b5b5b5;
}

.table-style01 th,
.table-style01 td{
    border-left: 1px solid #b5b5b5;
    border-bottom: 1px solid #b5b5b5;
    height: 50px;
}

table.scroll{
    width: 100%;
    table-layout: inherit;
    white-space: inherit;
}

.table-style01 th{
    background: #f6f8fb;
}
.table-style01 th.w27{
    width: calc( 27% - 3px/4 );
}

.table-style01 th.w32{
    width: calc( 32% - 3px/4 );
}

.table-style01 th.w12{
    width: calc( 12% - 3px/4 );
}

@media screen and (max-width: 768px) {
    .table-style01 td{
        padding-right: 20px;
        padding-left: 20px;
    }

    .table-style01 th{
        padding-right: 20px;
        padding-left: 20px;
    }


}

.w65{
    width: 65px;
}

.product-list-01 span{
    display: inline-block;
}

.product__item-box{
    height: 155px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__item-box-img{
    margin-right: 30px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {

    .products-img-wrap{
        width: 80%;
        padding-right: 0;
        margin: 0 auto;
    }

    .products-txt-wrap{
        width: 100%;
        margin-bottom: 30px;
    }

    .products-img-wrap img{
        max-width: 100%;
    }

    .square__back-line{
        justify-content: center;
    }

    .square__back-line span{
        width: 120px;
        height: 30px;
        font-size: 75%;
        line-height: 26px;
    }
    .products__icon-yoto-wrap {
        width: 100%;
    }
    .products__icon-yoto-wrap div img{
        max-width: 80%;
    }
    .products__icon-yoto-wrap p{
        font-size: 62.5%;
    }

    .link__catalogue-download{
        font-size: 75%;
    }

    .title-blue-underline:after{
        bottom: -5px;
        width: 40px;
        height: 3px;
    }

    .flex-wrap__l690-r310 {
        margin-bottom: 40px;
    }

    .flex-item__l690{
        width: 100%;
    }
    .flex-item__r310{
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }
    .flex-item__r310 img{
        max-width: 100%;
    }

    .flex-item__l500{
        width: 100%;
        margin-bottom: 20px;
    }
    .flex-item__l500 img{
        max-width: 100%;
    }
    .flex-item__r500{
        width: 100%;
    }
    .flex-item__r500 img{
        width: calc(33.3333% - 2px/3);
    }

    .flex-item__r500 img:nth-child(3n){
        margin-right: 0;
    }
    table.scroll{
        overflow-x: scroll;
        white-space: nowrap;
        display: block;
        -webkit-overflow-scrolling: touch;
    }

    .product__item-box{
        height: auto;
        padding: 20px;
    }

    .product__item-box-img{
        width: 22%;
        margin-right: 0;
    }
    .product__item-box-img img{
        max-width: 90%;
    }
    .product__item-box-txt{
        width: 78%;
    }
}*/

/*products-01*/

/*.product-category-list{
    margin-bottom: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-list li{
    border-left: 1px solid #000;
}

.product-category-list li:last-child{
    border-right: 1px solid #000;
}


.product-category-list li a{
    width: 250px;
    display: inline-block;
    height: 45px;
    line-height: 43px;
    text-align: center;
    font-size: 100%;
}

.product-tasha-machine-wrap{
    display: flex;
    flex-wrap: wrap;
}
.product-tasha-machine-item{
    width: calc(33.3333% - 40px/3);
    margin-right: 20px;
    margin-bottom: 40px;
}

.product-tasha-machine-item:nth-child(3n){
    margin-right: 0;
}

.product-tasha-machine-item div{
    text-align: center;
    height: 200px;
}

.bk-blue{
    background:#0864b2;
    padding:5px 10px;
    color: #fff;
}



@media screen and (max-width: 768px) {

    .product-category-list{
        margin:0 auto 80px;
        width: 80%;
    }

    .product-category-list li{
        width: 50%;
    }

    .product-category-list li a{
        width: 100%;
        height: 25px;
        line-height: 25px;
        font-size: 88%;
    }

    .product-tasha-machine-item{
        width: 50%;
        margin-right: 0;
    }

    .product-tasha-machine-item div{
        height: 100px;
    }

    .product-tasha-machine-item div img{
        max-width: 80%;
        max-height: 80%;
    }

    .bk-blue{
        font-size: 62.5%;
        padding:3px;
    }

}*/


/*company*/

/*.mainvisual-company {
    background-image: url(../img/mainvisual-company.jpg);
    background-size: cover;
    background-position: center;
}

.dotted-list{
    border-top: 1px dashed #000;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.dotted-list:last-child{
    border-bottom: 1px dashed #000;
}

.company-gaiyo-list dt{
    width: 250px;
}

.company-gaiyo-list dd{
    width: calc(100% - 250px);
}

.company-enkaku-list dt{
    width: 150px;
}

.company-enkaku-list dd{
    width: calc(100% - 150px);
}

@media screen and (max-width: 768px) {

    .kokoroe-img{
        width: 90%;
        margin:0 auto;
    }

    .kokoroe-img img{
        max-width: 100%;
    }

    .dotted-list{
        padding: 10px 0;
    }

    .company-gaiyo-list dt{
        width: 100%;
        margin-bottom: 5px;
    }

    .company-gaiyo-list dd{
        width: 100%;
    }

    .company-enkaku-list dt{
        width: 100%;
        margin-bottom: 5px;
    }
    
    .company-enkaku-list dd{
        width: 100%;
    }

    .section-map iframe.h380sp{
        height: 380px !important;
    }
}*/

/*office*/

/*.office-list dt{
    width: calc(100% - 100px);
}

.office-list dd{
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.office__mail{
    margin-right: 20px;
}

.office__mail img,
.office__map img{
        width: 35px;
        height: auto;
    }

@media screen and (max-width: 768px) {
    .office-list dt,
    .office-list dd{
        width: 100%;
    }

    .office-list dd{
        justify-content: center;
        margin-top:10px;
    }

    .office__mail img,
    .office__map img{
        width: 47px;
        height: auto;
    }

    .office__mail{
        margin-right: 40px;
    }

}*/

/*client*/

/*.client-wrap{
    border-bottom: 1px dashed #000;
    border-top: 1px dashed #000;
    padding: 30px 0 40px;
}

.client-list{
    display: flex;
    flex-wrap: wrap;
}

.client-list li{
    width: 50%;
    margin-bottom: 20px;
    font-size: 113%;
}

@media screen and (max-width: 768px) {

    .client-wrap{
        padding: 20px 0;
    }

    .client-list li{
        width: 100%;
        margin-bottom: 5px;
        font-size: 100%;
    }
}*/

/*info*/

/*.mainvisual-info {
    background-image: url(../img/mainvisual-info.jpg);
    background-size: cover;
    background-position: center;
}

.info-wrap{
    border-bottom: 1px dashed #000;
    border-top: 1px dashed #000;
    padding: 30px 0 40px;
}


.mainvisual-info {
    background-image: url(../img/mainvisual-info.jpg);
    background-size: cover;
    background-position: center;
}

.info-detail-wrap{
    border-bottom: 1px dashed #000;
    border-top: 1px dashed #000;
    padding: 30px 0 10px;
}


@media screen and (max-width: 768px) {

    .info-wrap{
        padding: 20px 0;
    }
    .info-detail-wrap{
        padding: 20px 0 5px;
    }
}


.info-title{
    margin: 40px 0 70px 0;
    font-size: 113%;
    text-align: center;
}

.info-content{
    margin-bottom: 50px;
}

.info-content p{
    font-size: 100%;
    line-height: 2;
    margin-bottom: 1.5em;
}

.news-detail-list{
    padding: 0;
    justify-content: flex-end;
}

.news-detail-list dt{
    width: auto;
}

@media screen and (max-width: 768px) {

    .info-title{
        margin: 20px 0 30px;
    }


}*/

/*contact*/

/*.mainvisual-contact {
    background-image: url(../img/mainvisual-contact.jpg);
    background-size: cover;
    background-position: center;
}

.contact-list01.first{
    border-top: 1px dashed #000;

}

.contact-list01{
    border-bottom: 1px dashed #000;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0 40px;
}

.contact-list01 dt{
    font-size: 88%;
    font-weight:bold;
    width: 190px;
    margin-top: 7px;
}

.contact-list01 dd{
    width: calc(100% - 190px);
}

@media screen and (max-width: 768px) {

    .contact-list01{
        padding: 15px 0 25px;
    }

    .contact-list01 dt{
        font-size: 75%;
        margin-bottom:5px;
        width: 100%;
    }
    .contact-list01 dd{
        width: 100%;
    }
}


.blue-link-button {
    color: #fff;
    font-size: 2.0rem;
    font-weight: 800;
    display: inline-block;
    width: 300px;
    text-align: center;
    padding: 0.4em 2em;
    cursor: pointer;
    border-radius: 5px;
    background-color: #0864b2;
}


input[type=submit].blue-link-button{
    border: 1px solid #0864b2;
    border-radius: 5px;
}

input[type=submit].blue-link-button:hover{
    opacity: .8;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.underline {
    text-decoration: underline;
}*/


/*privacy*/

/*mainvisual-privacy {
    background-image: url(../img/mainvisual-privacy.jpg);
    background-size: cover;
    background-position: center;
}

.privacy-wrap{ 
    border-top: 1px dashed #000;
    padding: 40px 0;
}

.privacy-wrap.last{
    border-bottom: 1px dashed #000;
}

.box__p30{
    padding: 30px;
}



@media screen and (max-width: 768px) {

    .privacy-wrap{
        padding: 20px 0 15px;
    }
}*/

/*sitemap*/

/*.sitemap-list li{
    text-indent: 10px;
    padding:10px 0;
}

.sitemap-list > li > a{
    display: block; 
		color:#555555 !important;
		padding:3px 0;
		font-size:1.8rem;
		text-decoration: none;
}

.sitemap-list > li > ul > li > a{
    display: block; 
    color:#555555 !important;
    padding:3px 0 3px 20px;
    font-size:1.8rem;
    text-decoration: none;
}

.sitemap-arrow:before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../img/spnavi-arrow.png);
    background-size: contain;
    margin-right:5px;
}




@media screen and (max-width: 768px) {

    .sitemap-list li{
        padding:5px 0;
    }
    .sitemap-list > li > a{
        font-size:1.6rem;
    }
    .sitemap-list > li > ul > li > a{
        font-size:1.6rem;
    }
}*/



/*共通要素*/


/*共通　flexboxタグ
-----------------------------------------------------------*/

.flex{
    display: flex;
    flex-wrap: wrap;
}
.flexb{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.flexc{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.block{
    display: block;
}



@media screen and (max-width: 768px) {
    .blocksp{
        display: block;
    }
    .flex-dir_column_reverse-sp{
        flex-direction: column-reverse;
    }
}




/*背景
-----------------------------------------------------------*/
.bk-gray{
    background-color: var(--primary-bkgray-color);
    /*background-image: url(../img/bk-gray-img.jpg);*/
}

.bk-yelllow{
    background-color: var(--primary-bkyellow-color);
    /*background-image: url(../img/bk-yellow-img.jpg);*/
}

/*a
-----------------------------------------------------------*/

a:hover{
    opacity: .8;
}

/*zoom in
-----------------------------------------------------------*/

.zoomIn img{
    transform: scale(1);
    transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  }

  .zoomIn a:hover{
    opacity: 1;
  }
  
  .zoomIn a:hover img{/*hoverした時の変化*/
    transform: scale(1.1);/*拡大の値を変更したい場合はこの数値を変更*/
    
  }
  
  /*　画像のマスク　*/
  
  .mask{
      display: block;
      line-height: 0;/*行の高さを0にする*/
      overflow: hidden;/*拡大してはみ出る要素を隠す*/
  }

/*その他装飾
-----------------------------------------------------------*/

.line-dashed{
    border-bottom: 1px dashed #000;
}

.line-dashed-top{
    border-top: 1px dashed #000;
}

.arrow-blue-right::after{
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../img/icon-blue-arrow.png);
    background-size: contain;
    vertical-align: middle;
    margin-left: 3px;
}

.arrow-blue-left::before{
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../img/icon-blue-arrow.png);
    vertical-align: -2px;
    margin-right: 5px;
}

.arrow-black-right::after{
    content: '';
    display: inline-block;
    width: 10px;
    height: 12px;
    background-image: url(../img/icon_arrow-black-right.png);
    background-size: contain;
    vertical-align: middle;
    margin-left: 7px;
}

.arrow-black-left::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 12px;
    background-image: url(../img/icon_arrow-black-right.png);
    background-size: contain;
    /*vertical-align: middle;*/
    margin-right: 7px;
}

.arrow-white-left::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-image: url(../img/icon_arrow-white-right.png);
    background-size: contain;
    margin-right: 7px;
}

.button__simple-square{
    background: transparent;
    border: 1px solid rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    align-items: center;   
    font-size: 88%;
    width: 300px;
    height: 50px;
}

@media screen and (max-width: 768px) {

    .button__simple-square{
        width: 230px;
        height: 35px;
    }

}


/*フェードイン
-----------------------------------------------------------*/

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/* 下から */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeUpAnime{
    from {
    opacity: 0;
    transform: translateY(100px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* 右から */

.fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeRightAnime{
    from {
    opacity: 0;
    transform: translateX(100px);
    }

    to {
    opacity: 1;
    transform: translateX(0);
    }
}

/*text
-----------------------------------------------------------*/

.bold{
	font-weight: bold;
}

.txtcenter{
	text-align: center;
}

.txtright{
	text-align: right;
}

.txtjustify{
	text-align: justify;
}

.txtOrange{
    color: var(--primary-orange-color);
}

.txtBlue{
    color: var(--primary-blue-color);
}

.txtRed{
    color: var(--primary-red-color);
}

.txtWhite{
    color: #fff;
}

.txtYellow{
    color: var(--primary-yellow-color);
}



.title-mincho{
    font-family: 'Noto Serif JP', serif;
    font-size: 187.5%;
}

@media screen and (max-width: 768px) {
    .title-mincho{
        font-size: 150%;
    }
    .txtleftsp{
        text-align: left;
    }
}

.blue-subtitle{
    font-size: 88%;
    color: #0864b2;
}

@media screen and (max-width: 768px) {
    .blue-subtitle{
        font-size: 75%;
    }
}

/*font
-----------------------------------------------------------*/

.fz12{
	font-size: 75%;
}

.fz14{
	font-size: 88%;
}

.fz16{
	font-size: 100%;
}

.fz18{
	font-size: 113%;
}

.fz20{
	font-size: 125%;
}

.fz22{
	font-size: 137.5%;
}

.fz24{
	font-size: 150%;
}

.fz26{
	font-size: 163%;
}
.fz28{
	font-size: 175%;
}

.fz30{
	font-size: 187.5%;
}

.fz35{
	font-size: 218.75%;
}

.fz36{
	font-size: 225%;
}

.fz40{
	font-size: 250%;
}

.fz50{
	font-size: 312.5%;
}

.fw700{
    font-weight: 700;
}

.fw400{
    font-weight: 400;
}

.fw500{
    font-weight: 500;
}
.fw600{
    font-weight: 600;
font-family: "FP-ヒラギノ角ゴ ProN W6";
}
.fw700{
    font-weight: 700;
}


.lsplus10{
	letter-spacing: 1px;
}

.lsplus15{
	letter-spacing: 1.5px;
}

.lsplus20{
	letter-spacing: 2.0px;
}

.lsminus05{
	letter-spacing: -.5px;
}

.lsminus10{
	letter-spacing: -1px;
}

.lsminus15{
	letter-spacing: -1.5px;
}

.lsminus18{
	letter-spacing: -1.8px;
}

.lsminus20{
	letter-spacing: -2px;
}

.lsplus15{
	letter-spacing: 1.5px;
}

.lh10{
	line-height: 1.0;
}

.lh12{
	line-height: 1.2;
}

.lh14{
	line-height: 1.4;
}

.lh18{
	line-height: 1.8;
}

.lh20{
	line-height: 2.0;
}
.lh25{
	line-height: 2.5;
}
.lh30{
	line-height: 3.0;
}

@media screen and (max-width: 768px) {

    .fz10sp{
        font-size: 62.5%;
    }
    .fz12sp{
		font-size: 75%;
	}
	.fz14sp{
		font-size: 88%;
	}
	.fz15sp{
		font-size: 93.75%;
	}
	.fz16sp{
		font-size: 100%;
	}
	.fz18sp{
		font-size: 113%;
	}
    .fz20sp{
        font-size: 125%;
    }
	.fz22sp{
		font-size: 137.5%;
	}
	.fz24sp{
		font-size: 150%;
	}
	.fz28sp{
		font-size: 175%;
	}
	.fz30sp{
		font-size: 187.5%;
	}
    .lh12sp{
		line-height: 1.2;
	}
	.lh14sp{
		line-height: 1.4;
	}
	.lh16sp{
		line-height: 1.6;
	}
    .lsminus20sp{
		letter-spacing: -2.0px;
	}
	.lsminus15sp{
		letter-spacing: -1.5px;
	}
	.lsminus10sp{
		letter-spacing: -1px;
	}

}


/*mt mb 調整タグ
-----------------------------------------------------------*/

.mt10{
    margin-top:10px;
}
.mt15{
    margin-top:15px;
}
.mt20{
    margin-top:20px;
}
.mt30{
    margin-top:30px;
}
.mt40{
    margin-top:40px;
}
.mt50{
    margin-top:50px;
}
.mt60{
    margin-top:60px;
}
.mt80{
    margin-top:80px;
}
.mt100{
    margin-top:100px;
}
.mb5{
    margin-bottom:5px;
}
.mb10{
    margin-bottom:10px;
}
.mb15{
    margin-bottom:15px;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mb40{
    margin-bottom: 40px;
}
.mb50{
    margin-bottom:50px;
}
.mb60{
    margin-bottom:60px;
}
.mb70{
    margin-bottom: 70px;
}
.mb80{
    margin-bottom: 80px;
}
.mb100{
    margin-bottom: 100px;
}
.mb120{
    margin-bottom: 120px;
}
.mb130{
    margin-bottom: 130px;
}
.mb160{
    margin-bottom: 160px;
}
.mb200{
    margin-bottom: 200px;
}


.ml0{
    margin-left:0;
}
.ml10{
    margin-left: 10px;
}
.ml20{
    margin-left: 20px;
}
.ml30{
	margin-left: 30px;
}
.ml40{
	margin-left: 40px;
}
.ml50{
    margin-left: 50px;
}

.mr10{
    margin-right: 10px;
}
.mr20{
    margin-right: 20px;
}
.mr30{
    margin-right: 30px;
}
.pt25{
    padding-top: 25px;
}
.pt40{
    padding-top: 40px;
}
.pt50{
    padding-top: 50px;
}
.pt60{
    padding-top: 60px;
}
.pt70{
    padding-top: 70px;
}
.pt80{
    padding-top: 80px;
}
.pt100{
    padding-top: 100px;
}

.pt150{
    padding-top: 150px;
}
.pb10{
    padding-bottom: 10px;
}
.wrapppb20{
    padding-bottom: 20px;
}
.pb20{
    padding-bottom: 20px;
}
.pb25{
    padding-bottom: 25px;
}
.pb30{
    padding-bottom: 30px;
}
.pb40{
    padding-bottom: 40px;
}
.pb50{
    padding-bottom: 50px;
}
.pb60{
    padding-bottom: 60px;
}
.pb80{
    padding-bottom: 80px;
}
.pb90{
    padding-bottom: 90px;
}
.pb100{
    padding-bottom: 100px;
}
.pb120{
    padding-bottom: 120px;
}
.pb130{
    padding-bottom: 130px;
}
.pb150{
    padding-bottom: 150px;
}

.pl5{
    padding-left: 5px;
}

.pl10{
    padding-left: 10px;
}

.pl30{
    padding-left: 30px;
}

.pl20{
    padding-left: 20px;
}
.pl50{
    padding-left:50px;
}
.pl60{
    padding-left:60px;
}
.pl70{
    padding-left:70px;
}
.pl25{
    padding-left: 25px;
}

.pl110{
    padding-left: 110px;
}

.pr30{
    padding-right: 30px;
}
.pr70{
    padding-right: 70px;
}


@media screen and (max-width: 768px) {

    /*margin*/
    .mb5{
        margin-bottom:2px;
    }
    .mt15{
        margin-top:10px;
    }
    .mt30{
        margin-top:15px;
    }
    .mt40{
        margin-top:20px;
    }
    .mt50{
        margin-top:25px;
    }
    .mt60{
        margin-top:30px;
    }
    .mt80{
        margin-top:40px;
    }
    .mt100{
        margin-top:50px;
    }
    .mb10{
        margin-bottom:5px;
    }
    .mb15{
        margin-bottom:10px;
    }
    .mb20{
        margin-bottom: 10px;
    }
    .mb30{
        margin-bottom: 15px;
    }
    .mb40{
        margin-bottom: 20px;
    }
    .mb50{
        margin-bottom:25px;
    }
    .mb60{
        margin-bottom:30px;
    }
    .mb70{
        margin-bottom: 35px;
    }
    .mb80{
        margin-bottom: 40px;
    }
    .mb100{
        margin-bottom: 50px;
    }
    .mb120{
        margin-bottom: 60px;
    }
    .mb130{
        margin-bottom: 65px;
    }
    .mb160{
        margin-bottom: 80px;
    }
    
    /*sp調整タグ*/
    .mb0sp{
        margin-bottom: 0;
    }
    .mb03sp{
        margin-bottom: 3px;
    }
    .mb05sp{
        margin-bottom: 5px;
    }
    .mb10sp{
        margin-bottom: 10px;
    }
    .mb25sp{
        margin-bottom: 25px;
    }
    .mb50sp{
        margin-bottom: 50px;
    }
    .mt30sp{
        margin-top: 30px;
    }
    .mt60sp{
        margin-top: 60px;
    }
    .minwidth90{
        min-width: 90px;
    }
    .ml0sp{
        margin-left:0;
    }

    /*padding*/
    
    .pt25{
        padding-top: 15px;
    }
    .pt40{
        padding-top: 20px;
    }
    .pt50{
        padding-top: 25px;
    }
    .pt60{
        padding-top: 30px;
    }
    .pt70{
        padding-top: 35px;
    }
    .pt80{
        padding-top: 40px;
    }
    .pt100{
        padding-top: 50px;
    }
    .pt150{
        padding-top: 75px;
    }
    .pb20{
        padding-bottom: 10px;
    }
    .pb25{
        padding-bottom: 13px;
    }
    .pb30{
        padding-bottom: 15px;
    }
    .pb40{
        padding-bottom: 20px;
    }
    .pb50{
        padding-bottom: 25px;
    }
    .pb60{
        padding-bottom: 30px;
    }
    .pb80{
        padding-bottom: 40px;
    }
    .pb90{
        padding-bottom: 45px;
    }
    .pb100{
        padding-bottom: 50px;
    }
    .pb120{
        padding-bottom: 60px;
    }
    .pb130{
        padding-bottom: 75px;
    }

    .pb150{
        padding-bottom: 75px;
    }

    /*sp調整タグ*/

    .pt25sp{
        padding-top: 25px;
    }
    .pb25sp{
        padding-bottom: 25px;
    }
    .pl30{
        padding-left: 15px;
    }
    .pr30{
        padding-right: 15px;
    }
    .pl20sp{
        padding-left: 20px;
    }
    
    /*marigin-left sp調整*/
    .ml0sp{
        margin-left:0;
    }
    .pl0sp{
        padding-left: 0;
    }

    /*width sp100%*/
    .w100sp{
        width: 100%;
        height: auto;
    }
}





/*スマホメニュー
-----------------------------------------------------------------*/

@media screen and (max-width: 1285px) {
	#spnavi{
		display: none;
		position: absolute;
		top: 50px;
		width: 100%;
		background: #fff;
		left: 0;
		z-index:90;
        padding: 5px 0 30px;
	}
	#spnavi > ul{
		display: block;
		margin: 0 auto;
		width: 95%;
	}
	#spnavi > ul > li{
		margin: 0 auto;
		text-indent:10px;
		/*border-bottom: 1px solid #525252;*/
        padding: 5px 0;
	}
	
	/*#spnavi > ul > li:first-child{
		border-top: 1px solid #525252;
	}*/
	
	#spnavi > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0;
		font-size: 113%;
		text-decoration: none;
	}

    #spnavi > ul > li > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0 3px 20px;
		font-size: 113%;
		text-decoration: none;
	}

	#spnavi > ul li a:hover{
		text-decoration:none;
		opacity:.7;
	}

    #spnavi h1 > a > img{
        width: 150px;
        height: auto;
    }
	
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 30px;
        height: 26px;
		position:absolute;
		top:13px;
		/*top:35px;*/
		left:20px;
		z-index: 100;
		text-align: center;
		background: var(--primary-blue-color);
        padding: 6px 7px;
        border-radius: 3px;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 2px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}

    .top-page #nav_toggle span{
        background: #fff;
    }
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:6px;
	}
	#nav_toggle span:nth-child(3){
		top:12px;
	}
	
	#nav_toggle p.togglemenu{
		background:none;
		color:#fff;
		font-size:8px;
		padding-top:19px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 6px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
            background: #fff;
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 6px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
            background: #fff;
		}
	
	.header-companylogo_sp{
		position:absolute; 
		top:20px;
		left:10px;
		z-index:99;
		/*top:-27px; 
		right:-10px;*/
	}

    .spnavi-arrow:before{
        content: '';/*何も入れない*/
        display: inline-block;/*忘れずに！*/
        width: 10px;/*画像の幅*/
        height: 10px;/*画像の高さ*/
        background-image: url(../img/icon-blue-arrow.png);
        background-size: contain;
        /*vertical-align: middle;*/
        margin-right:5px;
    }

    #nav_tel{
		display: block;
		width: 30px;
        height: 26px;
		position:absolute;
		top:13px;
		/*top:35px;*/
		right:20px;
		z-index: 100;
		text-align: center;
		background: var(--primary-blue-color);
        padding: 4px 0;
        border-radius: 3px;
	}

    #nav_tel > div > a{
        display: block;
    }

    #nav_tel > div > a > img{
        width: 15px;
        height: auto;
    }
}	


/*スマホメニュー終わり
-----------------------------------------------------------------*/	


/*pconly sponly切り替え　スマホtel処理
-----------------------------------------------------------*/

@media screen and (max-width: 1285px) {
	.w1250uponly{
		display: none;
	}
}

@media screen and (min-width: 1024px) {
	.w1024only{
		display: none;
	}
}

@media screen and (max-width: 1024px) {
    .w1024only{
        display: block;
        position:relative;
        z-index: 2;
    }
}

@media screen and (min-width: 769px) {
	.sponly{
		display: none;
	}
}


@media screen and (max-width: 768px) {
    .pconly{
        display: none;
    }
    .sponly{
        display: block;
        position:relative;
        /*z-index: 2;*/
    }
    /*a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }*/

}

@media print {
  /* 1. 用紙の高さ制限を解除し、自動改ページを許可する */
  @page {
    size: A4;
    margin: 10mm;
  }

  html, body {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important; /* コンテンツが途切れないようにする重要設定 */
    transform: none !important;  /* 一旦 scale をリセットします */
    zoom: 0.8; /* scaleの代わりにzoom（正の数）を使用。これなら高さも再計算されます */
  }

  /* 2. 下部の「相談予約」バナーなどが切れないようにする */
  .contact-wrapper, /* 相談予約のクラス名を想定 */
  footer,
  .consultation-banner {
    position: static !important; /* 固定表示（fixed）になっている場合は解除 */
    display: block !important;
    page-break-inside: avoid; /* 要素の途中で改ページさせない */
    margin-top: 20px !important;
  }

  /* 3. コンテンツの横幅を「はみ出さないギリギリ」に固定 */
  #wrapper, .wrapper, #container, main {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    display: block !important;
  }

  .navigation, .sidebar, #spnavi, #nav_toggle,
  
  .global-navi-wrapper,
  .breadcrumb,
  .dropdown-trigger,
  .pconly
  {
    display: none !important;
  }
  
}

/*@media print {

  body {
    
    transform: scale(0.7);
 
    transform-origin: top left;
    
    width: 140%;
  }
  .wrapper,
.js-slick-slider {
   
   width: 100% !important; 

    margin: 0 auto !important;
 
    max-width: none !important; 
    min-width: 0 !important;
  }
  
 
  * {
    background: transparent !important;
    box-shadow: none !important;
  }

 
 .navigation, .sidebar, .footer,
  #spnavi, #nav_toggle,
  .header-tel-wrapper,
  .header-text-resize-wrapper,
  .search,
  .search-button,
  .header-contact,
  .global-navi-wrapper,
  .breadcrumb,
  .dropdown-trigger,
  .pconly
  {
    display: none !important;
  }
}*/

/* =============================================================================
   重要なお知らせ
   ========================================================================== */
.important-news dl	{
	display: table;
	width: 958px;
	border: 1px solid #c0392b;
	margin: 30px auto 0 auto;
	}
.important-news dl dt	{
	display: table-cell;
	width: 159px;
	background-color: #c0392b;
	border-right: 1px solid #c0392b;
	text-align: center;
	vertical-align: middle;
	color: #fff;
	font-size: 115%;
	font-weight: bold;
	}
.important-news dl dd	{
	display: table-cell;
	width: 798px;
	}
.important-news dl dd ul	{
	padding: 10px;
	}
.important-news dl dd ul li	{
    position: relative;
    display: block;
	padding-left: 8em;
	}
.important-news dl dd ul li span	{
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 6.5em;
	font-weight: bold;
	}
.important-news dl dd ul li a:hover	{
	color: #c0392b;
	}
