@charset "utf-8";

:root {
    --primary-green-color: #1b967b;
	--primary-orange-color: #f49b59;
    --primary-blue-color: #6283e1; 
    --primary-red-color: #f00000; 
    --primary-gray-color: #9c9c9c;
	--primary-bkgray-color: #fdfbf3;
    --primary-bkgreen-color: #e6eeec;
    --primary-bkbeige-color: #fdfaf0;
    --primary-border-gray-color: #c1beb6;
	--primary-gray-color:#b7b5b5;
}

body{
   background: #fafafa; 
}

.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;
    top:10px;
    z-index: 9999 !important;
    height: 60px;
    /*background: #fff;
    position: -webkit-sticky;
	position: sticky;
	top: 0;
    background-color: rgba(255,255,255,0.7);*/
}

.header-section-wrapper{
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: relative;
    border-radius: 10px;
    padding-left: 50px;
    position: relative;
    z-index: 1000; /* Slickより上 */
    box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.35);
}

.header-logo-wrapper{
   /* margin-top: 10px;*/
    
}

.header-logo-wrapper h1 a{
    display: flex;
    align-items: center;
}

.header-logo-wrapper h1 span.fz16{
    font-size: 1.6rem;
    font-weight: 600;
}

.header-logo-wrapper h1 span.fz12{
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 20px;
    margin-right:5px;
}

.header-logo-wrapper h1 img{
    vertical-align: middle;
    width: 160px;
    height: auto;
}

.header-navigation{
    width: 80px;
    height: 50px;
    border-left: 1px solid #333;
    padding: 15px 25px;
    position: relative;
    z-index: 30;
}

.header-nav{
    margin-right: 50px;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-nav ul{
    display: flex;
}

.header-nav ul li{
    margin-left:30px;
}

.header-nav ul li a{
    position: relative;
    font-size: 1.4rem;
    padding-bottom:2px;
}

.header-nav ul li a:hover,
.header-nav ul li a.active{
    border-bottom: 1px solid #bf2029;
}

@media screen and (max-width: 1260px) {
    
    .header-nav{
        display: none;
    }
}






a.btn-contact {
    padding: 40px 0;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    font-size: 1.4rem;
    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-large-contact {
    padding: 10px 28px;
    border-radius: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    font-size: 1.8rem;
    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: 768px) {

    .header-logo-wrapper{
        margin-top: 0;
    }


    a.btn-large-contact {
        width: 225px;
        padding: 5px;
        margin: 0 auto;
    }

}

a.btn--orange {
    color: #fff;
    background-color: #ea5413;
    }

a.btn--pink {
    color: #fff;
    background-color: #ff83b2;
}


.header-telno{
    font-size: 2.0rem;
    color: #fff;
    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;
}

.footer{
    background: var(--primary-green-color);
    padding:50px 0 20px;
}

.footer .wrapper{
    padding: 0 50px;
} 

.footer p,
.footer a,
.footer li{
    color: #fff;
}

.footer__flex{
    display: flex;
    justify-content: space-between;
    position:relaitve;
}

.footer__logo-address-item{
    width: 410px;
}

.footer__logo-wrapper{
    border-radius: 10px;
    padding:10px 10px 5px;
    background:#fff;
    display: inline-block;
}


@media screen and (max-width: 768px) {
    
    .footer__logo-wrapper{
        margin: 0 auto 10px;
    }
    .footer__logo-wrapper img{
        width: 130px;
        height: auto;
    }
}

.footer__list-items{
    width: 630px;
    column-gap: 20px;
    justify-content: space-between;
}

.footer-list{

}

.footer-list li{
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.footer-list li a{
    font-size: 1.4rem;
}

.footer-list li::before{
    content: "";
    width: 15px;
    height: 15px;
    background: url(../img/icon-circle-white-arrow_trans.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 2px;
    vertical-align: -2px;
    
}

.footer__under-flex{
    padding: 20px 0;
    margin-top: 20px;
}

.border__top-dotted{
    border-top: 1px dotted #fff;
}

.list__flex-line li{
    border-left: 1px solid #fff;
    padding: 0 20px;
    line-height: 1;
}

.list__flex-line li:last-of-type{
    border-right: 1px solid #fff;
}

.list__flex-line li a{
    font-size: 1.4rem;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    
    .list__flex-line{
        row-gap: 5px;
        width: 100%;
    }
    
    .list__flex-line li a{
        font-size: 1.0rem;
    }
    
    .list__flex-line li{
        width: 25%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    
    .list__flex-line li:nth-child(4n){
        border-right: 1px solid #fff;
    }
    
}

.copy{
    display: flex;
    justify-content: center;
}

.copy small{
    font-size: 1.0rem;
    color: #fff;
}

.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{
    /*height:450px;
    background-image: url(../img/mainvisual-top-bk.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 120px;*/
    position: relative;
    height: 350px; /* 必要に応じて調整 */
    overflow: hidden;
}

.top-mainvisual__text{
    display: flex;
    justify-content: center;
    margin-bottom: 30px;

}
.top-mainvisual__text h2,
.top-mainvisual__text h2 span{
    color: #fff;
    text-align: center;
    font-size: 4.8rem;
    line-height: 2;
}

/*.top-mainvisual__img-sakura{
    margin-bottom: 40px;
}*/


/* スライダー部分（最背面） */
.main-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.main-slider__item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* テキスト部分（スライダーより上） */
.top-mainvisual__content {
    position: relative;
    z-index: 2;  スライダーより上
    height: 100%;
    padding-top: 150px;
   /* display: flex;
    align-items: center; */ /* 縦中央揃え */
}

@media screen and (max-width: 1260px) {
    .footer__list-items{
        display: none;
    }
    .footer__list-items .footer-list{
        display: none;
    }
}


@media screen and (max-width: 768px) {
    
    .top-mainvisual__content{
        padding-top: 20px;
    } 

    .header{
        height: 35px;
    }

    .header h1 img{
        width: 90px;
        height: auto;
    }

    .header-section-wrapper{
        height: 35px;
        padding-left: 10px;
    }
    
    .header-logo-wrapper h1{
        display: flex;
        align-items: center;
    }
    
    .header-logo-wrapper h1 span.fz12{
        font-size: 0.8rem;
        margin-left: 3px;
        margin-right: 2px;
    }
    
    .header-logo-wrapper h1 span.fz16{
        font-size: 1.0rem;
    }
    
    .header-navigation {
        width: 30px;
        height: 30px;
        border-left: none;
        padding: 7px 10px 0 5px;
    }

    a.btn-contact{
        max-width: 120px;
        padding: 2px 5px 2px 7px;
        font-size: 1.4rem;
    }

    a.btn-contact::before {
        width: 14px;
        height: 11px;
        background-size: contain;
    }

    .header-contact{
        margin-left: 5%;
    }

    .header-telno{
        font-size: 1.6rem;
    }

    .top-mainvisual{
        height: 120px;
        padding-top: 30px;
    }

    .top-mainvisual__text h2,
    .top-mainvisual__text h2 span{
        font-size: 1.8rem;
    }

    .top-mainvisual__text{
        margin-bottom: 10px;
    }

    


    .footer{
        padding: 25px 0;
    }
    
    .footer .wrapper{
        padding: 0;
    } 

    
    
    .footer-list li{
        font-size: 1.2rem;
    }

    .pagetop {
        right: 20px;
    }

    .pagetop img{
        width: 55px;
        height: 55px;
    }

}


.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;
    }
}





.section-top__new-property-listings{
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    .section-top__new-property-listings{
        padding: 30px 0;
    }
}




.button-gray-arrow{
    background: #f2f2f2;
    padding: 5px;
    
    border-radius: 40px;
    font-size: 1.6rem;
    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_title-wrap{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.top-news_title-wrap a{
    margin-right: 0;
    margin-left: auto;
}

@media screen and (max-width: 768px) {

    .section-top-news{
        padding: 0;
    }

    .top-news_title-wrap a{
        font-size: 1.2rem;
    }
}

.top-news-flex{
    column-gap: 1.8%;
}

.news-flex__left{
    width: 16.6%;
}

.news-flex__right{
    width: 81.6%;
}

@media screen and (max-width: 768px) {
    
    .news-flex__left{
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        align-items: center;
    }

    .news-flex__right{
        width: 100%;
    }
}

.title__green span{
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-green-color);
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-green-color);
   
}

@media screen and (max-width: 768px) {
    .title__green span{
        font-size: 1.8rem;
        padding-bottom: 2px;
        border-bottom: 1px solid var(--primary-green-color);
    }
}



.button__orange-arrow {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-orange-color);
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 5px; /* 右側にアイコンが入る分、余白を調整 */
  border-radius: 100vh;
  transition: 0.3s;
}

.button__orange-arrow.p5_10 {
    padding: 5px 10px;
}

.button__green-arrow {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-green-color);
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 100vh;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
    
    .button__orange-arrow,
    .button__green-arrow {
        font-size: 1.2rem;
        padding: 5px 10px 7px;
        border-radius: 100vh;
        height: 23px;
        line-height: 20px;
    }
    
    .button__green-arrow.fz10sp {
        font-size: 1.0rem;
        height: auto;
    }
}

/* 疑似要素でアイコンを表示 */
.button__orange-arrow::after,
.button__green-arrow::after {
  content: ""; /* 必須 */
  display: inline-block;
  width: 15px;  /* アイコンの横幅 */
  height: 15px; /* アイコンの縦幅 */
  margin-left: 5px; /* テキストとの間隔 */
  background-image: url("../img/icon-circle-white-arrow_trans.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.button__green-arrow::after {
    transform: rotate(90deg);
}




.news-list{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    /*align-items: center;
    height: 60px;*/
    padding: 10px 0;
    border-bottom: dotted 1px #000;
}

.news-list:first-of-type{
    border-top: dotted 1px #000;
}

.news-list dt{
    width: 200px;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.news-list dd{
    width: calc(100% - 220px);
}

.news-list__time {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green-color);
}

.news-list__category {
    font-size: 1.4rem;
    padding: 3px 10px;
    min-width: 100px;
    border-radius: 5px;
    text-align: center;
}

.news-list__category-blue {
    background: #0864b2;  
}

.news-list__category-pink{
    background: #fcd2d2;
}

.news-list__category-yellow {
    background: #fae5c5;  
}

.news-list__category-green {
    background: #54b65b;
    color: #ffffff;
}

.news-list__category-orange {
    background: #ea5413;
}


.news-list dd a{
    font-size: 1.6rem;
}

@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: 10px;
    }

    .news-list dd{
        width: 100%;
    }

    .news-list__time {
        font-size: 1.2rem;
    }

    .news-list__category{
        font-size: 1.2rem;
        margin-left: 0px;
        padding: 0 7px;
        min-width: inherit;
    }

    .news-list dd a{
        font-size: 1.4rem;
    }

}

.section-panel p,
.section-panel li,
.section-panel a,
.section-panel span{
    color: #fff;
}

.section-panel p{
    line-height: 1.5;
}

.section-panel__outer-flex{
    column-gap: 15px;
}


.top-link-img__01{
    background: url(../img/top-link-img__01.png);
    background-size: cover;
    border-radius: 10px;
    height: 440px;
    width: calc(50% - 15px/2);
    padding: 30px 50px;
}

.top-link-img__sub-items{
    width: calc(50% - 15px/2);
    
}

@media screen and (max-width: 768px) {
    
    .section-panel__outer-flex{
        gap: 10px;
    }
    
    .top-link-img__01,
    .top-link-img__sub-items{
         width:100%;
         
    }
    
    .top-link-img__01{
        padding: 20px;
        height: auto;
        background-position: right center;
    }
}



.section-top-link-img__inner-flex{
    gap: 15px;
}

.top-link-img__sub-item{
    width: calc(50% - 15px/2);
    height: 210px;
    border-radius: 10px;
    padding: 30px 20px;
}

.top-link-img__sub-item > a{
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .section-top-link-img__inner-flex{
        gap: 10px;
    }
    .top-link-img__sub-item{
        width: calc(50% - 10px/2);
        height: 120px;
        padding: 20px;
    }
    
}

.top-link-img__02{
    background: url(../img/top-link-img__02.png);
    background-size: cover;
    background-position: right center;
}

.top-link-img__03{
    background: url(../img/top-link-img__03.png);
    background-size: cover;
    background-position: right center;
}

.top-link-img__04{
    background: url(../img/top-link-img__04.png);
    background-size: cover;
    background-position: right center;
}

.top-link-img__05{
    background: url(../img/top-link-img__05.png);
    background-size: cover;
    background-position: right center;
}

.underline__white{
    border-bottom: 1px solid #fff;
    
}

.list__white-circle-green-arrow li{
    margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
    .list__white-circle-green-arrow li{
        font-size: 1.4rem;
    }
}

.list__white-circle-green-arrow li:before{
    display: inline-block;
    content:"";
    width: 15px;
    height: 15px;
    background: url(../img/icon-circle-white-arrow.png);
    vertical-align: middle;
    margin-right: 5px;
}


.bk-green-radius{
    background: var(--primary-bkgreen-color);
    padding: 50px;
    border-radius: 10px;
}

.leftauto{
    margin-left:auto;
    margin-right: 0;
}

.bk-green-radius_p20{
    padding: 20px 50px;
}


@media screen and (max-width: 768px) {
    
    .bk-green-radius,
    .bk-green-radius_p20{
        padding: 20px;
    }
}




































.section-banner-area{
    background: #ebebeb;
    height: 130px;
}

.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: 1.4rem;
}

.section-company-name-address__txt span{
    font-size: 1.8rem;
    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: 1.0rem;
    }

    .section-company-name-address__txt span{
        margin: 0 auto;
        font-size: 1.2rem;
    }

}

/*
.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;
}

/*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-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;
    }

}

/*---------------main-contents----------------*/

.contents-wrapper{
    padding: 0 0 130px;
}

.top-page .contents-wrapper{
    padding: 70px 0 130px;
}

@media screen and (max-width: 768px) {
    
    .contents-wrapper{
        padding: 20px 0 50px;
    }
    
    .top-page .contents-wrapper{
        padding: 30px 0 50px;
    }
    
}

.bk-geometric{
    background: url(../img/b-geometric.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
}

.main-contents{
    padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
    .main-contents{
        padding-bottom: 70px;
    }
}

/*---------------breadcrumb----------------*/

.breadcrumb {
    height: 50px;
}

.breadcrumb span, .breadcrumb span a {
    font-size: 1.4rem;
    line-height: 50px;
}

.breadcrumb span a:after {
    content: '／';
    padding: 0 5px;
}

.breadcrumb span > a > span {
    /*text-decoration: underline;*/
}

@media screen and (max-width: 768px) {
    .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: 1.4rem;
    }
}

.pagenavi-single-post a,
.pagenavi-single-post span {
    margin-right: 30px;
}

.pagenavi-single-post a:last-child{
    margin-right: 0;
}


/*---------------main-visual----------------*/

.mainvisual{
    height: 250px;
    background-image: url(../img/mainvisual-about-bk.jpg);
    background-size: cover;
    background-position: top center;
    padding-top: 120px;
    text-align: center;
}

.mainvisual-title{
    font-size: 3.6rem;
    font-family: 'Noto Serif JP', serif;
	font-weight: 400;
    color: #fff;
}

@media screen and (max-width: 768px) {

    .mainvisual{
        height: 120px;
        padding-top: 30px;
    }
    .mainvisual-title{
        font-size: 1.8rem;
    }
}

/*------------wrapper__inner-----------*/

.wrapper__inner{
    padding: 0 50px;
    padding: 50px 50px 70px;
    background: #fff;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    
    .wrapper__inner{
        padding: 20px 20px 30px;
    }
}

/*---------------about----------------*/

.title__green span.fz30{
    font-size: 3.0rem;
}

@media screen and (max-width: 768px) {
    .title__green span.fz18sp{
        font-size: 1.8rem;
    }
}


.border__bottom-dotted{
    border-bottom: 1px dotted #000;
}

.two-columns-item__p50{
    padding: 50px 0;
}

@media screen and (max-width: 768px) {
    
    .two-columns-item__p50{
        padding: 20px 0;
        row-gap: 10px;
    }
}



.two-columns-item__w200{
    width: 200px;
}

.two-columns-item__w900{
    width: calc(100% - 200px);
}

.two-columns-item__w300{
    width: 300px;
}

.two-columns-item__w800{
    width: calc(100% - 300px);
}

.komoku-title__green{
    font-size: 2.0rem;
    color: var(--primary-green-color);
    font-weight: 600;
}

.contents-title__black{
    font-size: 2.0rem;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .two-columns-item__w800,
    .two-columns-item__w300,
    .two-columns-item__w200,
    .two-columns-item__w900{
        width: 100%;
    }
    
    .komoku-title__green,
    .contents-title__black{
        font-size:1.6rem;
    }

    
}

.two-columns-item__r_img{
    column-gap: 6%;
    row-gap: 20px;
}

.two-columns-item__text{
    width: 53%;
}

.two-columns-item__text_w72{
    width: 72%;
}

.two-columns-item__text_w48{
    width: 48%;
}

.two-columns-item__img{
    width: 40%;
}

.two-columns-item__img_w22{
    width: 22%;
}

.two-columns-item__img_w45{
    width: 45%;
}

@media screen and (max-width: 1000px) {
    .two-columns-item__text,
    .two-columns-item__img,
    .two-columns-item__text_w72,
    .two-columns-item__img_w22,
    .two-columns-item__text_w48,
    .two-columns-item__img_w45{
         width: 100%;
    }
    
    .two-columns-item__img,
    .two-columns-item__img_w22,
    .two-columns-item__img_w45{
        text-align: center;
    }
    
}

.radius-text__green{
    width: auto;
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    background: var(--primary-green-color);
    border-radius: 5px;
    padding: 0 20px;
    display: inline-block;
}

.exective-list{
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.exective-list dt{
    font-weight: 600;
    font-size: 1.6rem;
    width: 70px;
}

.exective-list dd {
    width: calc(100% - 80px);
}

.exective-list dd .name{
    font-size: 1.6rem;
    margin-right: 10px;
}

.exective-list dd .position{
    font-size: 1.6rem;
}

.map iframe{
    width: 100% !important;
    height: 400px !important;
}

@media screen and (max-width: 768px) {
    
    .radius-text__green{
        font-size: 1.4rem;
    }
    
    .exective-list dd .position{
        font-size: 1.2rem;
        display: block;
        margin-bottom: 5px;
    }
    
    .map iframe{
        height: 250px !important;
    }
}

/*---------------benefit----------------*/

.disc-list li.fz20{
    font-size: 2.0rem;
}

@media screen and (max-width: 768px) {
    
    .disc-list li.fz20{
        font-size: 1.8rem;
    }
}


/*---------------members----------------*/


.info-header {
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ナビゲーションの親要素 */
.anchor-nav ul {
    display: flex;
    flex-wrap: wrap; /* 折り返し許可（項目が多い場合） */
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ccc;
    justify-content: flex-start; /* 左寄せ */
}

.anchor-nav li {
    width: auto; /* 幅を固定しない */
    margin-right: 30px; /* デザイナー指定の「中途半端な余白」はここで調整 */
}

.anchor-nav li:last-child {
    margin-right: 0;
}

.anchor-nav a {
    display: inline-block; /* 文字の幅に合わせる */
    padding: 10px 5px; /* 上下パディングと、左右に微調整 */
    text-decoration: none;
    color: #333;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    transition: color 0.3s;
}

/* 下線の引き方（文字の幅だけに引く） */
.anchor-nav a::after {
    content: "";
    position: absolute;
    bottom: -1px; /* ulのborder-bottomと重ねる */
    left: 0;
    width: 100%;
    height: 3px;
    background: #008080;
    transform: scaleX(0);
    transition: transform 0.3s;
}

/* ホバー・アクティブ時 */
.anchor-nav a:hover::after, 
.anchor-nav a.active::after {
    transform: scaleX(1);
}

/* カテゴリー見出し（横一杯の下線） */
.category-block {
    margin-bottom: 50px;
}


.member-list{
    column-gap: 20px;
}

.member-list li{
    width: calc(50% - 20px/2);
}

@media screen and (max-width: 768px) {
    .anchor-nav li {
        margin-right: 5px;
    }
    
    .anchor-nav a {
        font-size: 1.2rem;
        padding: 5px 5px;
    }
    
    .member-list li{
        width: 100%;
    }
    
}


/*---------------organize-------------*/

.item__organize-img01{
    margin-left:35px;
}

.flex__organize-img02-03{
    column-gap: 4%;
}

.item__organize-img02{
    width: 44%;
}

.item__organize-img03{
    width: 52%;
}

@media screen and (max-width: 768px) {
    
    .item__organize-img01{
        margin-left:0;
    }
}

.item__organize-img02,
.item__organize-img03{
    width: calc(50% - )
}


/*---------------history-------------*/

.history-list{
    column-gap: 20px;
}

.history-list li a.button__orange-arrow{
    padding: 5px 10px;
}

@media screen and (max-width: 768px) {
    .history-list{
        column-gap: 10px;
        row-gap: 10px;
    }
    
}

.border__radius_green{
    border-radius: 20px;
    border: 4px solid var(--primary-bkgreen-color);
    padding: 30px 50px;
}

@media screen and (max-width: 768px) {
    .border__radius_green{
        padding: 20px;
    }
    
}

.three-columns__img-text-wrapper{
    column-gap: 25px;
    row-gap: 25px;
}

.three-columns__item__img-text{
    width: calc(33.333% - 50px/3);
}

.three-columns__item__img-text .item__img{
    margin-bottom: 20px;
    
}

.three-columns__item__img-text .item__img img{
    border-radius: 20px;
}

.three-columns__item__img-text p{
    word-break: break-all;
    letter-spacing: -.5px;
}

@media screen and (max-width: 768px) {
    .three-columns__item__img-text{
        width: 90%;
        margin: 0 auto 20px;
        max-width: 300px;
    }
    
    .three-columns__item__img-text .item__img{
        margin-bottom: 10px;
    }
    
    .three-columns__item__img-text .item__img-text{
        font-size: 1.4rem;
    }
   
}


/*---------------j_guide-------------*/

.mainvisual__j_guide{
    background-image: url(../img/mainvisual-j_guide-bk.jpg);
    background-size: cover;
    background-position: top center;
}


.mainvisual__j_guide .mainvisual-title{
    color: #000;
    text-shadow: 
    0 0 10px #fff,
    0 0 10px #fff,
    0 0 10px #fff,
    0 0 10px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff,
    0 0 5px #fff;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 5px #fff);
}

/* リスト全体のコンテナ */
.j_guide-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 50px; 
  row-gap: 40px;
  /*align-items: stretch;*/
}

.j_guide-item {
  /*flex: 0 0 calc((100% - 100px) / 3);*/
  width: calc(33.33% - 100px/3);
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 768px) {
    .j_guide-item {
        width: 100%;
        max-width:350px;
        margin: 0 auto;
    }
}

/* 上部のラベル */
.j_guide-badge {
  background-color: #1a938c;
  color: #ffffff;
  padding: 4px 15px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  width: 100%;
  margin-bottom: 20px;
}

.j_guide-visual {
  text-align: center;
  margin-bottom: 30px;
}

.j_guide-visual a{
    display: block;
}

.j_guide-visual img {
  max-width: 100%;
  height: auto;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
}

.j_guide-lead-text {
  color: #1a938c;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 5px;
  font-weight: 600;
}

/* 下部の特集部分：上のmain-boxが伸びるため、自然と下端に揃う */
.j_guide-feature-text {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}

/*---------------b_guide-------------*/

.mainvisual__b_guide{
    background-image: url(../img/mainvisual-b_guide-bk.jpg);
    background-size: cover;
    background-position: top center;
}

.circle-green-arrow_right::after{
    background: url(../img/icon-circle-green-arrow.png);
    background-size: contain;
    content: '';
	width: 14px;
	height: 14px;
    display: inline-block;
    margin-left: 5px;
    vertical-align: -2px;
}

.circle-green-arrow_left::before{
    background: url(../img/icon-circle-green-arrow.png);
    background-size: contain;
    content: '';
	width: 14px;
	height: 14px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: 0px;
}

@media screen and (max-width: 768px) {
    
    .circle-green-arrow_left::before{
        margin-right: 2px;
    }
}

.blue-link{
    color: #1d408b;
    font-weight: 600;
    border-bottom: 1px solid #1d408b;
}


.b_guide__item-wrapper{
    row-gap:50px;
}

@media screen and (max-width: 768px) {
    
    .b_guide__item-wrapper{
        row-gap:25px;
    }
}


.b_guide__item{
    border-left: 2px solid var(--primary-green-color);
    padding-left:20px;
    padding-right:20px;
    width: 50%;
}

@media screen and (max-width: 768px) {
    
    .b_guide__item{
        width: 100%;
        padding-left: 15px;
        padding-right: 10px;
    }
}

.b_guide__item a{
    display: block;
}




.b_guide__item__title{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-green-color);
    margin-bottom: 10px;
    text-indent: -1em;
    padding-left: 1em;
}

.b_guide__item__title .new{
    color: #f00000;
    font-size: 1.2rem;
    font-weight: 600;
}

.b_guide__item__title.no-link{
    color: #666;
}

.pe-none{
    pointer-events: none;
}

.b_guide__item a.pe-none .b_guide__item__title{
    text-indent: 0;
    padding-left: 0;
}


@media screen and (max-width: 768px) {
    .b_guide__item__title{
        font-size: 1.6rem;
        letter-spacing: -.5px;
    }
    
    .b_guide__item__title .new{
    font-size: 1.0rem;
    }
}

.b_guide__item__list{
    display: flex;
}

.b_guide__item__list dt{
    font-size: 1.6rem;
    font-weight: 600;
    width: 65px;
}

.b_guide__item__list dd:before{
    content: ":";
    margin:0 5px;
}

.b_guide__item__list dd{
    width: calc(100% - 75px);
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    
    .b_guide__item__list dt,
    .b_guide__item__list dd{
        font-size: 1.4rem;
    }
}

/*-----------------disaster_01--------------------*/

.mainvisual__disaster{
    background-image: url(../img/mainvisual-disaster_01-bk.jpg);
    background-size: cover;
    background-position: top center;
}

.disaster_two-columns-item{
    column-gap: 5%;
    row-gap: 20px;
}

.disaster_two-columns-item__text{
    width: 59%;
}

.disaster_two-columns-item__img{
    width: 35.8%;
}

.disaster_two-columns-item__text > p{
    text-align: justify;
}

@media screen and (max-width: 768px) {
    
    
    .disaster_two-columns-item__text,
    .disaster_two-columns-item__img{
        width: 100%;
    }
    
    .disaster_two-columns-item__img{
        text-align: center;
    }
}

.flex.disc-list{
    column-gap: 30px;
}

.number-list {
  list-style: none;        /* デフォルトの数字を消す */
  counter-reset: my-list;  /* カウンターの名前を定義（リセット） */
  padding: 0;
  margin: 0;
}

.number-list li {
  display: flex;           /* 数字と本文を横並びにする */
  align-items: flex-start; /* 上揃え */
  margin-bottom: 15px;     /* 行間の調整 */
  line-height: 1.8;
}

.number-list li:last-of-type{
   margin-bottom:0;
}

.number-list li::before {
  counter-increment: my-list;        /* 番号を1ずつ増やす */
  content: counter(my-list) ". ";   /* 数字とドットを表示 */
  
  /* 数字部分の見た目の調整 */
  flex-shrink: 0;         /* 数字が潰れないように固定 */
  width: 1.5em;           /* 数字エリアの幅（2桁になる場合は調整） */
  font-weight: normal;    /* 任意：数字の太さ */
  color: #333;            /* 任意：数字の色 */
}

@media screen and (max-width: 768px) {
    
    .number-list li {
        font-size: 1.4rem;
    }
}

.number-list__mb0 li{
    margin-bottom: 0;   
}


/*-----------------disaster_02--------------------*/


/* ラジオボタンの選択肢を横に並べる */
.contact-list01 .smf-radio-control {
    display: flex;
    flex-wrap: wrap; /* 画面が狭いときは折り返す */
    align-items: center;
    gap: 30px; /* 選択肢同士の間隔 */
}

/* 各選択肢（ラベルとボタンのセット）のスタイル */
.contact-list01 .smf-radio-control__item {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0; /* Snow Monkeyの既定マージンをリセット */
}

/* ラジオボタン本体とテキストの間の距離 */
.contact-list01 .smf-radio-control__control {
    flex-shrink: 0;
    margin-right: 8px;
    width: 18px;  /* カンプに合わせてサイズ調整が必要な場合 */
    height: 18px;
}

/* テキスト部分のスタイル */
.contact-list01 .smf-radio-control__label {
    font-size: 1.6rem;
    line-height: 1.5;
}

/* スマホ表示：横並びだと入り切らない場合は縦に並べる */
@media screen and (max-width: 640px) {
    .contact-list01 .smf-radio-control {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 15px;
    }
    
    .contact-list01 .smf-radio-control__label {
        font-size: 1.4rem;
    }
}


/*-----------------examination------------------*/

.mainvisual__examination{
    background-image: url(../img/mainvisual-examination-bk.png);
    background-size: cover;
    background-position: top center;
}

.circle-green-title{
    font-weight: 600;
    font-size: 2.0rem;
}

.circle-green-title:before{
    content: '';
	width: 6px;
	height: 6px;
    background: var(--primary-green-color);
	display: inline-block;
	border-radius: 100%;
	position: relative;
	left: -8px;
	top: -5px;    
}

.item__border-left-green{
    border-left: 2px solid var(--primary-green-color);
    padding-left: 20px;
}

.item__border-left-green__title{
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-green-color);

}

/*-----------------news------------------*/

.mainvisual__news{
    background-image: url(../img/mainvisual-news-bk.png);
    background-size: cover;
    background-position: top center;
}

.news-detail-title-wrapper .news-list__category{
    margin-left: 20px;
}

.news-detail-title {
    color: var(--primary-green-color);
    font-size: 2.0rem;
    font-weight: 600;
    margin-bottom: 10px;
    
}



@media screen and (max-width: 768px) {

.news-detail-title {
    font-size: 1.6rem;
}

}

.news-contents{
    padding: 25px 0;
}

.news-contents p{
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1em;
}

.info-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;
    }
    .news-contents p{
        font-size: 1.4rem;
    }

}

.news-contents__list{
    display: flex;
    flex-wrap:wrap;
    margin-bottom: 20px;
}

.news-contents__list dt,
.news-contents__list dd{
    line-height: 1.8;
}

.news-contents__list dt{
    width: 100px;
    position: relative;
    padding-right: 7px;
}

.news-contents__list dd{
    width: calc(100% - 100px);
}

.news-contents__list dt::after{
    content:":";
    position: absolute;
    right: 5px;
}

@media screen and (max-width: 768px) {
    
    .news-contents__list dt,
    .news-contents__list dd{
        width: 100%;
        font-size: 1.4rem;
    }
    
    .news-contents__list dt::after{
    content:":";
    position: static;
    display: inline-block;
    margin-left:5px;
}
}




.pagenavi ul li{
    margin-right: 18px;
}

.pagenavi ul li:last-child{
    margin-right: 0;
}

.pagenavi ul li a{
    color: #000;
    font-size: 1.6rem;
    
}

.pagenavi ul li a.active,
.pagenavi ul li a:hover{
    border-bottom: 1px solid #000;
}

/*-----------------teikan------------------*/

.mainvisual__teikan{
    background-image: url(../img/mainvisual-teikan-bk.png);
    background-size: cover;
    background-position: top center;
}


/*-----------------contact------------------*/

.mainvisual__contact{
    background-image: url(../img/mainvisual-contact-bk.png);
    background-size: cover;
    background-position: top center;
}























/*---------------bukken----------------*/

.section-circle-link{
    padding: 60px 0;
}

@media screen and (max-width: 768px) {

    .section-circle-link{
        padding: 30px 0;
    }
}

.wrapper_sold{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
}

.txt_sold{
    background: #ea5413;
    padding: 5px 10px;
    border-radius: 5px;  
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;    
}

.txt_negotiating{
    background: #54b65b;
    padding: 5px 10px;
    border-radius: 5px;  
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;    
}

@media screen and (max-width: 768px) {
    .txt_sold,
    .txt_negotiating{
        font-size: 1.2rem;
    }
}

.pointer-none{
    pointer-events: none;
}

/*---------------bukken-mansion----------------*/

.section-bulletin-board{
    padding: 70px 0 80px;
}

.section-bulletin-board img{
    width: 100%;
    height: auto;
}

.section-property-listings{
    padding-top: 70px;
}

@media screen and (max-width: 768px) {
    .section-bulletin-board{
        padding: 30px 0 40px;
    }
    
    .section-property-listings{
        padding-top: 30px;
    }
}

/*---------------bukken-single----------------*/

.section-bukken-single-info-wrap{
    padding: 50px 0 70px;
}

.bukken-name{
    color:#ea5413;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.bukken-name::before{
    content: '';/*何も入れない*/
    display: inline-block;
    width: 23px;/*画像の幅*/
    height: 35px;/*画像の高さ*/
    background-image: url(../img/icon-company-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
   /* vertical-align: b;*/
    margin-right: 20px;
    vertical-align: middle;
}

.bukken-information-wrap{
    display: flex;
    flex-wrap:wrap;
    margin-bottom: 70px;
}

.bukken-information__photo-wrap{
    width: calc(100% - 415px);
    padding-right:30px;
}

.bukken-information__txt-wrap{
    width: 415px;
    background: #fdf6d2;
    padding: 40px 20px;
    border-radius: 10px;
}

@media screen and (max-width: 768px) {

    .section-bukken-single-info-wrap{
        padding: 30px 0 40px;
    }

    .bukken-information-wrap{
        margin-bottom: 30px;
    }

    .bukken-information__photo-wrap{
        width: 100%;
        padding-right: 0;
    }

    .bukken-information__txt-wrap{
        width: 100%;
        padding: 20px;
    }

    .bukken-name {
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding-left: 40px;
        text-indent: -45px;
    }

}

.bukken-information__list{
    display: flex;
    flex-wrap: wrap;
   /* align-items: center;*/
    margin-bottom: 40px;
}

.bukken-information__list:last-child{
    margin-bottom: 0;
}

.bukken-information__list dt{
    width: 90px;
    height:32px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    background: #ea5413;
    padding:5px;
    border-radius: 5px;
    margin-right: 10px;
    font-weight:400;
    transform: rotate(0.03deg);
}

.bukken-information__list dd{
    font-size: 1.4rem;
    font-weight:500;
    transform: rotate(0.03deg);
}

.bukken-information__price{
    font-size: 1.8rem;
    color:#ea5413;
    font-weight: 600;
}

.bukken-information__price span{
    font-size: 2.4rem;
    color:#ea5413;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .bukken-information__list{
        margin-bottom:20px;
    }

    .bukken-information__list dt,
    .bukken-information__list dd,
    .bukken-information__price{
        font-size: 1.2rem;
    }

    .bukken-information__price span{
        font-size: 1.8rem;
    }

}

.button-bukken-contact{
    font-size: 2.2rem;
    color: #fff;
    font-weight: 500;
    width:320px;
    height: 80px;
    padding: 35px 10px 10px 10px;
    background: #ea5413;
    text-align: center;
    position: relative;
}

.button-bukken-contact::before{
    content: '';/*何も入れない*/
    display: inline-block;
    width: 25px;/*画像の幅*/
    height: 20px;/*画像の高さ*/
    background-image: url(../img/icon-envelope.png);
    background-size: contain;
    background-repeat: no-repeat;
   /* vertical-align: b;*/
    margin-right: 20px;
    vertical-align: middle;
    position: absolute;
    top: 15px;
    left: 50%;
    margin-left: -12.5px;
}

.section-bukken-recommendations{
    padding: 60px 0 100px;
}

@media screen and (max-width: 768px) {
    .section-bukken-recommendations{
        padding: 30px 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .button-bukken-contact{
        font-size: 1.8rem;
    }
}

.title_orange{
    color: #ea5413;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.list_orange-check li{
    font-size: 1.8rem;
    margin-bottom: 10px;
    background-image: url(../img/icon-check-orange.png);
    background-repeat: no-repeat;
    background-size:auto 20px;
    padding-left: 25px;
    
}

/*.list_orange-check li:before{
    content: '';
    display: inline-block;
    width: 24px;
    height: 20px;
    background-image: url(../img/icon-check-orange.png);
    background-size: contain;
    background-repeat: no-repeat;

    margin-right: 10px;
    vertical-align: sub;
}*/

@media screen and (max-width: 768px) {
    .title_orange{
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .list_orange-check li{
        font-size: 1.4rem;
    }
    .list_orange-check li{
        background-size: auto 15px;
    }
    
}



.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: 1.2rem;
    }
   
}

.section-bukken-map{
    padding: 70px 0 0;
}

.section-bukken-map iframe{
    width: 100% !important;
    height: 450px !important;
}

@media screen and (max-width: 768px) {
    .section-bukken-map{
        padding: 30px 0 0;
    }

    .section-bukken-map iframe{
        height: 200px !important;
    }
    
}

/*-----------------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: 1.6rem;
    font-weight: 500;
    transform: rotate(0.03deg);
}

.company-gaiyo__list dd{
    width: calc(100% - 125px);
    font-size: 1.6rem;
    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: 1.4rem;
    }
}


/*-----------------access-----------------*/


.section-access-introduction {
    padding: 40px 0 70px;
}

@media screen and (max-width: 768px) {

    .section-access-introduction {
        padding: 20px 0 35px;
    }
}


.section-access-map iframe{
    width: 100%;
    height: 500px;
}

@media screen and (max-width: 768px) {
    .section-access-map iframe{
        height: 250px;
    }
}

@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{
    padding-top: 70px;
}

.section-access-txt-item{
    width: 460px;
    margin: 0 auto;
    max-width: 90%;
}

.indent7{
    padding-left: 7em;
    text-indent:-7em;
}

@media screen and (max-width: 768px) {

    .section-access-txt{
        padding-top: 30px;
    }

    .indent7{
        padding-left: 0;
        text-indent: 0;
    }
}


/*-----------------privacy-----------------*/

.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: 1.6rem;
    line-height: 2.2;
    color: #000;
}

.privacy-title{
    text-align: center;
    font-size: 2.4rem;
    color: #ea5413;
    font-weight: 600;
    line-height: 2.2;
}

@media screen and (max-width: 768px) {

    .privacy-title{
        font-size: 1.8rem;
        margin:10px 0;
    }

    .privacy-content-txt{
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

.disc-list{
    margin-left: 15px;
}

.disc-list li{
    list-style-type: none;
    font-size: 1.6rem;
    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: -5px;
}

.disc-list__green li:before{
    width: 6px;
	height: 6px;
    background: var(--primary-green-color);
    
}

@media screen and (max-width: 768px) {

    .disc-list li{
        font-size: 1.4rem;
        line-height: 1.6;
    }
}





.list__green-circle{
    padding-left: 25px;
    text-indent: -17px;
    margin-left:0;
}

.list__green-circle li:before{
    background: var(--primary-green-color);
    content: '';
	width: 8px;
	height: 8px;
    position: static;
    display: inline-block;
    margin-right: 7px;
}





/*-----------------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: 1.6rem;
    font-weight: 500;
    transform: rotate(0.03deg);
}

.contact__list dd{
    width: calc(100% - 200px);
    font-size: 1.6rem;
    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: 1.4rem;
    }
}

.contact-address-list{
    display: flex;
    align-items: center;
}

.contact-address-list_column1{
    font-size: 1.4rem;
    width: 80px;
}

.required{
    color: #c0362f;
    font-size: 1.4rem;
    font-weight: 800;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {

    .contact-address-list_column1{
        font-size: 1.2rem;
        width: 60px;
    }
    
    .required{
        font-size: 1.2rem;
        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: 1.6rem;
    }
    .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: 2.2rem;
    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: 1.2rem;
        padding: 12px 5px;
    }

}

/*smf関連*/

.input {
    border: 1px solid #aba9a9;
    /* font-weight: 500; */
    padding: 5px;
    font-size: 1.6rem;
    padding: 0.5em 0.5em 0.5em 0.7em;
}

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;  
}

.smf-form .textarea{
    width: 100%;
    max-width: 700px;
    height: 180px;
}

.smf-form .input_text01{
    width:100%;
    max-width: 300px; 
    
}

.smf-form .input_text02{
    width: 100px;
}

.smf-form .input_text03{
    width: 100%;
    max-width: 700px;
}

.smf-form .input_text04{
    width: 170px;
}

.smf-form .select01{
    width: 180px;
}

::placeholder {
    opacity: .5;
}

@media screen and (max-width: 768px) {

    .smf-form .input,
    .smf-form .select,
    .smf-form .textarea{
        font-size: 1.6rem;
    }
    .smf-form .input_text01{
        width: 100%;
        max-width: inherit;
        /*width: calc(100% - 50px);*/
    }
    .smf-form .input_text02,
    .smf-form .input_text04,
    /*.input_text03,*/
    .smf-form .select01{
        max-width: 215px;
    }
    .contact-address-list_column2{
        width: calc(100% - 137px);
    }

    
}


.btn-auto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 100px;
    background: #d5d5d5;
    margin-left: 10px;
    cursor: pointer;
    border: none;
    padding: 0.6em 0.5em 0.7em 0.5em;
    padding: 0.8em 0.5em 1em 0.5em;
}

.select, .textarea {
    border: 1px solid #aba9a9;
    padding: 0.5em 0.5em 0.5em 0.7em;
    font-size: 1.6rem;
}



.contact-address-list {
    display: flex;
    align-items: center;
}

/*.contact-address-list_column2 {
    width: calc(100% - 137px);
}*/

@media screen and (max-width: 1000px){
    .contact-address-list_column2 {
        width: calc(100% - 137px);
    }
}

@media screen and (max-width: 1000px){
    .textarea {
        width: 100%;
        height: 180px;
    }
}


@media screen and (max-width: 768px){
    .input_text01 {
        width: 100%;
    }
    .btn-auto {
        margin-top: 10px;
        margin-left: 0;
    }  
    .smf-item__label__text > span {
        font-size: 1.2rem;
    }
}

.smf-form--simple-table{
    margin-bottom: 30px;
}

.smf-action .smf-button-control__control {
    padding: 0 50px;
    border-radius: 35px;
    white-space: nowrap;
    height: 35px;
    color: #fff;
    background-color: var(--primary-orange-color);
    text-align: center;
    /*font-size: 1.6rem;
    height: 50px;
    line-height: 47px;
    padding: 0 30px;
    width: 280px;
    background: #fff;
    border: 1px solid var(--primary-gray-color);
    border-radius: 50px;
    background: var(--primary-orange-color);
    border-radius: 70px;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 600;
    width: 320px;
    height: 70px;*/
}

.icon-arrow-white-w22{
    font-size: 1.6rem;
    color: #fff;
}

@media screen and (max-width: 768px){
    .icon-arrow-white-w22{
    font-size: 1.6rem;
}
}

.icon-arrow-white-w22::after {
    content: "";
    background: url(../img/icon-circle-white-arrow_trans.png);
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-left: 5px;
    vertical-align: -3px;
}


@media screen and (max-width: 768px){
    
    .smf-action .smf-button-control__control {
    /*width: 150px;*/
        margin: 10px auto;
        font-size: 1.2rem;
    }
}


    @media screen and (min-width: 1000px){
.smf-form--simple-table .smf-item__col--label {
    flex: 0 0 210px;
    max-width: 210px;
    padding-bottom: 0;
    padding-right: var(--_padding1);
}
}

.wp-block-columns {
    align-items: normal!important;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap!important;
}


/*@media (max-width: 781px){*/
@media (max-width: 1000px){
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 100%!important;
    }
}
    
.wp-block-column.is-vertically-aligned-center {
    align-self: center;
}


[data-name="checkboxes-1hh1ci2ua"]{
    margin-top: 50px;
}

/*@media screen and (min-width: 640px){*/
@media screen and (min-width: 1000px){
.smf-form--simple-table .smf-item__col--controls {
   /* flex: 1 1 calc(100% - 288px);
    max-width: calc(100% - 288px);*/
}
}



.sme-text-color.has-vivid-red-color{
    color:#ff0000;
    font-size: 1.4rem;
    font-weight: 600;
}

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

.txt-alert{
    color:#ff0000;
    font-size: 1.4rem;
}

.smf-form--simple-table .contact-list01 {
    border-bottom: 1px solid #d4d4d4;
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0;
}

/*.smf-form--simple-table .contact-list01:first-of-type {
    border-top: 1px solid var(--primary-green-color);
}*/


.smf-checkboxes-control__control{
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
}


.smf-radio-buttons-control__control{
    display: flex;
    flex-wrap: wrap;
}

.smf-radio-buttons-control__control .smf-label{
    margin-left: 50px;
}

.smf-radio-buttons-control__control .smf-label:first-of-type{
    margin-left: 0;
}

@media screen and (max-width: 960px){

    .smf-checkboxes-control__control,
    .smf-radio-buttons-control__control{
        display: block;
    }

    .smf-checkboxes-control__control .smf-label,
    .smf-radio-buttons-control__control .smf-label{
        margin:5px 0;
    }
    
    

}

@media screen and (max-width: 768px){
.smf-form--simple-table .contact-list01 {
    display: block;
}
}

.smf-action {
    text-align: center;
}

.smf-action .smf-button-control:nth-child(2n) {
    margin-left:20px;
}

[data-screen="confirm"] .contact-txt,
[data-screen="complete"] .contact-txt {
    display:none;
}

[data-screen="input"] .confirm-txt,
[data-screen="invalid"] .confirm-txt {
  display:none;
}

/* 「人数」の後ろに「人」を表示 */
input[name="ninzu"]::after {
    content: "人"; /* 表示する文字列 */
    margin-left: 5px; /* インプットとの間隔を調整 */
    color: #333; /* テキストカラー（任意） */
}

/* 「予定ゲーム数」の後ろに「ゲーム」を表示 */
input[name="gamesuu"]::after {
    content: "ゲーム"; /* 表示する文字列 */
    margin-left: 5px; /* インプットとの間隔を調整 */
    color: #333; /* テキストカラー（任意） */
}

.smf-form--simple-table .pt50{
    padding-top: 50px;
}

/*.smf-form--simple-table .pb50{
    padding-bottom: 50px;
}*/

.smf-checkbox-control__label img{
    vertical-align: middle;
    margin: 0 5px;
}

/* クラス名を contact-list01 に修正しました */

.contact-list01 .smf-row {
    display: flex !important;
    flex-direction: row !important; 
    align-items: center !important; 
    flex-wrap: nowrap !important;   
    gap: 15px;                      
}

/*.contact-list01 .smf-row__item:nth-child(1) {
    flex: 0 0 auto !important;
    width: auto !important;
}*/

.contact-list01 .smf-row__item:nth-child(2) {
    flex: 0 0 300px !important; 
    width: 300px !important;
}

.contact-list01 .smf-row__item:nth-child(3) {
    flex: 1 1 auto !important;
    width: auto !important;
    font-size: 1.4rem;
    color: #666;
}

/*.contact-list01 .smf-text-control__control {
    width: 100% !important;
}*/

/* 念のため：smf-row自体に幅100%を強制 */
.contact-list01 .smf-item__controls {
    width: 100% !important;
}

/* --- スマホ(640px以下)の設定：すべて縦に積み上げる --- */
@media screen and (max-width: 1000px) {
    .contact-list01 .smf-row {
        display: block !important; /* flexを解除して縦並びに */
    }

    .contact-list01 .smf-row__item {
        width: 100% !important;   /* 各要素を横幅いっぱいに */
        margin-bottom: 10px !important; /* 要素間の上下の隙間 */
    }

    /* チェックボックス横の余計な余白を消す */
    .contact-list01 .smf-checkbox-control__label {
        display: inline-flex;
    }

    /* 入力欄を画面幅いっぱいに広げる */
    .contact-list01 .smf-text-control__control {
        width: 100% !important;
    }

    /* 注釈の文字サイズ調整と余白 */
    .contact-list01 .smf-item__description {
        white-space: normal !important; /* 改行を許可 */
        margin-top: 5px !important;
        display: block;
    }
}

/* PC・タブレット：チェックボックスと注釈を横並びにする */
.contact-list-documents .smf-row,
.contact-list-shipping .smf-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 15px;
    /*margin-top: 5px;*/
}

.contact-list-documents .smf-row__item,
.contact-list-shipping .smf-row__item {
    flex: 0 0 auto !important;
}

.contact-list-documents .smf-item__description,
.contact-list-shipping .smf-item__description {
    margin: 0 !important;
    font-size: 1.4rem;
    color: #333;
    white-space: nowrap; /* PCでは1行で表示 */
}

/* スマホ：縦並びに切り替え */
@media screen and (max-width: 640px) {
    .contact-list-documents .smf-row,
    .contact-list-shipping .smf-row {
        display: block !important;
    }

    .contact-list-documents .smf-item__description,
    .contact-list-shipping .smf-item__description {
        white-space: normal !important; /* スマホでは改行を許可 */
        margin-top: 5px !important;
    }
}

/* チェックボックスの横にあるラベル文字を右に押し出す */
.smf-checkbox-control__label-text {
    display: inline-block !important;
    padding-left: 5px !important; /* 3pxで足りなければここを大きくしてください */
    vertical-align: middle !important;
}

/* チェックボックスの「見た目」を作っている要素を強制的に下げる */
.smf-checkbox-control__control::before,
.smf-checkbox-control__control::after {
    margin-top: 3px !important; /* ここで位置を調整 */
}

/* もし上記が効かない場合、フレックスボックスで位置を制御する */
.smf-checkbox-control__label {
    display: inline-flex !important;
    align-items: center !important; /* これで垂直方向を中央に強制 */
    gap: 5px !important;           /* 3pxの隙間をここで確保 */
}

.smf-checkbox-control__control {
    margin: 0 !important;
    flex-shrink: 0 !important;
    transform: translateY(2px) !important; /* 強制的に2px下に押し下げる */
}

.contact-address-list_column2{
    width: 100%;
}

.flex-align-center{
    display: flex;
    align-items: center;
} 

.ml10{
    margin-left:10px;
}

/* 専用クラス「is-row-layout」がある項目だけを横並びにする */
.smf-item.is-row-layout .smf-placeholder {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
}

/* 入力欄の幅制限（この項目だけ適用） */
.smf-item.is-row-layout .smf-text-control {
    flex: 0 0 300px;
}

/* 注釈タグのブロック解除（この項目だけ適用） */
.smf-item.is-row-layout div[style*="display:inline"],
.smf-item.is-row-layout .fz14 {
    display: inline-block;
    margin: 0;
    padding: 0;
    /*white-space: nowrap;*/
}

/* スマホ表示の切り替え */
@media screen and (max-width: 640px) {
    .smf-item.is-row-layout .smf-placeholder {
        display: block;
    }
    .smf-item.is-row-layout .smf-text-control {
        width: 100%;
        margin-bottom: 8px;
    }
}

.word-no-break{
    word-break: break-all;
}

/* 各行の間に余白を作る */
.smf-item__controls .smf-row {
  margin-bottom: 10px;
}
.smf-item__controls .smf-row:last-child {
  margin-bottom: 0;
}

//* 1. 各行の横並び設定 */
.contact-list01 .smf-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

/* 2. セレクトボックスと数値入力に .input と同じスタイルを適用 */
.contact-list01 .smf-select-control__control,
.contact-list01 .smf-number-control__control {
    border: 1px solid #d4d4d4;
    font-weight: 500;
    padding: .5em .5em .5em .7em; /* 他のinputと同じ余白 */
    font-size: 16px; /* 文字サイズを適正化 */
    box-sizing: border-box;
    height: auto; /* paddingによって高さが決まるようにする */
}

/* 3. 図書名セレクトボックスの幅を確保 */
.contact-list01 .smf-row .smf-row__item:nth-child(1) {
    flex: 0 0 450px;
}

.contact-list01 .smf-select-control__control {
    width: 100%;
}

/* 4. 冊数入力側の設定 */
.contact-list01 .smf-row .smf-row__item:nth-child(2) {
    flex: 0 0 auto;
}

.contact-list01 .smf-control-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-list01 .smf-number-control__control {
    width: 80px;
}

/* 矢印を置くための土台（親要素） */
.contact-list01 .smf-select-control {
    position: relative;
    display: block;
}

/* 擬似要素で「▼」を作成 */
.contact-list01 .smf-select-control::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px; /* 右端からの距離 */
    transform: translateY(-50%); /* 垂直中央に配置 */
    
    /* 三角形の形を作る（サイズや色はここで調整） */
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #666; /* 下向き矢印の色 */
    
    pointer-events: none; /* 矢印の上をクリックしてもセレクトが開くようにする */
}

/* もし標準の矢印が残っていたら消す（ブラウザ対策） */
.contact-list01 .smf-select-control__control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 35px; /* 矢印と文字が重ならないように右側に余白を作る */
}

/* IE/Edgeで矢印を消すための呪文 */
.contact-list01 .smf-select-control__control::-ms-expand {
    display: none;
}

/* 申込日の入力欄から枠と背景を消す */
.contact-list01 input[name="entry-date"][readonly] {
    border: none;           /* 枠線を消す */
    background: transparent; /* 背景を透明にする */
    padding: 0;             /* 余白をリセットしてテキストの位置を合わせる */
    outline: none;          /* クリック時の青い枠線も消す */
    box-shadow: none;       /* 影がついている場合に消す */
    color: #333;            /* 文字色（適宜調整してください） */
    font-size: 16px;        /* 他のテキストとサイズを合わせる */
    cursor: default;        /* カーソルをテキスト選択用にする */
}

/* もし「申込日」以外のreadonly項目も共通で枠を消したい場合 */
/* .contact-list01 input[readonly] { ... } と書けば共通化できます */















.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: 1.6rem;
    font-weight: 500;
    transform: rotate(0.03deg);
}

.contact__list dd{
    width: calc(100% - 200px);
    font-size: 1.6rem;
    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: 1.4rem;
    }
}

.contact-address-list{
    display: flex;
    align-items: center;
}

.contact-address-list_column1{
    font-size: 1.4rem;
    width: 80px;
}

.required{
    color: #c0362f;
    font-size: 1.4rem;
    font-weight: 800;
    margin-left: 20px;
}

@media screen and (max-width: 768px) {

    .contact-address-list_column1{
        font-size: 1.2rem;
        width: 60px;
    }
    
    .required{
        font-size: 1.2rem;
        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: 1.6rem;
    }
    .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: 2.2rem;
    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: 1.2rem;
        padding: 12px 5px;
    }

}




/*.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:5px;
}

#photo-slider .slick-prev{
    left:5px;
}


#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;
    }
}

/* ドットの親要素（ul） */
.slick-dots {
    position: absolute;
    bottom: 20px;       /* 下からどのくらい浮かせたいか */
    left: 50%;          /* 中央に寄せる */
    transform: translateX(-50%); /* 中央寄せの補正 */
    z-index: 5;         /* スライダー(1)より上で、メニュー(1000)よりは下 */
    display: flex !important; /* 横並びにする */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 各ドット（li） */
.slick-dots li {
    margin: 0 5px;      /* 丸と丸の間隔 */
}

/* ドットの中にあるボタン（実際の丸） */
.slick-dots li button {
    font-size: 0;       /* 数字を消す */
    line-height: 0;
    display: block;
    width: 15px;        /* 丸の大きさ */
    height: 15px;       /* 丸の大きさ */
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 1px solid #fff; /* 白い枠線 */
    border-radius: 50%;     /* 正円にする */
    background: transparent; /* 中は透明 */
    outline: none;
    transition: all 0.3s;
}

/* 現在表示されている画像に対応するドット（active） */
.slick-dots li.slick-active button {
    background: #fff;  /* アクティブな時は白く塗りつぶす */
}

@media screen and (max-width: 768px) {
    
    .slick-dots {
        bottom: 8px; 
    }
    
    .slick-dots li {
        margin: 0 3px;      /* 丸と丸の間隔 */
    }
    
    .slick-dots li button {
        width: 10px;        /* 丸の大きさ */
        height: 10px;  
    }
}

/*---------------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: 1.4rem;
    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: 1.8rem;
    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: 1.2rem;
        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: 1.0rem;
    }

    .link__catalogue-download{
        font-size: 1.2rem;
    }

    .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: 1.6rem;
}

.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: 1.4rem;
    }

    .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: 1.0rem;
        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: 1.8rem;
}

@media screen and (max-width: 768px) {

    .client-wrap{
        padding: 20px 0;
    }

    .client-list li{
        width: 100%;
        margin-bottom: 5px;
        font-size: 1.6rem;
    }
}*/

/*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: 1.8rem;
    text-align: center;
}

.info-content{
    margin-bottom: 50px;
}

.info-content p{
    font-size: 1.6rem;
    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: 1.4rem;
    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: 1.2rem;
        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;
}

*/


/*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;
}

.flexac{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}



@media screen and (max-width: 768px) {
    .blocksp{
        display: block;
    }
    .flex-dir_column_reverse-sp{
        flex-direction: column-reverse;
    }
}




/*背景
-----------------------------------------------------------*/
.bk-gray{
    /*background-color: #f6f8fb;*/
    background-image: url(../img/bk-gray-img.jpg);
}

.bk-yelllow{
    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-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: 1.4rem;
    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;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.txtcenter{
	text-align: center;
}

.txtright{
	text-align: right;
}

.txtjustify{
	text-align: justify;
}

.txtOrange{
    color: #ea5413;
}

.txtBlue{
    color: #0864b2;
}

.txtRed{
    color: #ff0000;
}



.title-mincho{
    font-family: 'Noto Serif JP', serif;
    font-size: 3.0rem;
}

@media screen and (max-width: 768px) {
    .title-mincho{
        font-size: 2.4rem;
    }
    .txtleftsp{
        text-align: left;
    }
}

.blue-subtitle{
    font-size: 1.4rem;
    color: #0864b2;
}

@media screen and (max-width: 768px) {
    .blue-subtitle{
        font-size: 1.2rem;
    }
}

/*font
-----------------------------------------------------------*/

.fz12{
	font-size: 1.2rem;
}

.fz14{
	font-size: 1.4rem;
}

.fz16{
	font-size: 1.6rem;
}

.fz18{
	font-size: 1.8rem;
}

.fz20{
	font-size: 2.0rem;
}

.fz22{
	font-size: 2.2rem;
}

.fz24{
	font-size: 2.4rem;
}

.fz26{
	font-size: 2.6rem;
}
.fz28{
	font-size: 2.8rem;
}

.fz30{
	font-size: 3.0rem;
}

.fz35{
	font-size: 3.5rem;
}

.fz36{
	font-size: 3.6rem;
}

.fz40{
	font-size: 4.0rem;
}

.fz50{
	font-size: 5.0rem;
}

.fw700{
    font-weight: 700;
}

.fw400{
    font-weight: 400;
}

.fw500{
    font-weight: 500;
}
.fw600{
    font-weight: 600;
}
.fw700{
    font-weight: 700;
}


.lsplus10{
	letter-spacing: 1px;
}

.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: 1.0rem;
    }
    .fz12sp{
		font-size: 1.2rem;
	}
	.fz14sp{
		font-size: 1.4rem;
	}
	.fz15sp{
		font-size: 1.5rem;
	}
	.fz16sp{
		font-size: 1.6rem;
	}
	.fz18sp{
		font-size: 1.8rem;
	}
    .fz20sp{
        font-size: 2.0rem;
    }
	.fz22sp{
		font-size: 2.2rem;
	}
	.fz24sp{
		font-size: 2.4rem;
	}
	.fz28sp{
		font-size: 2.8rem;
	}
	.fz30sp{
		font-size: 3.0rem;
	}
	.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*/
    .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調整タグ*/
    .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;
    }

    /*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: 768px) {*/
	#spnavi{
		/*display: none;
		   position: absolute;
		top:0;
		width: 100%;
		background: #fff;
		left: 0;
		z-index:90;
        padding: 5px 0 30px; */
        display: block !important;
        position: fixed;
        top: 0;
    right: -50%;          /* 右端に配置 */
    width: 50%;        /* 画面の半分 */
    height: 100vh;     /* 画面の高さ100% */
    background: #fff;
    z-index: 20;     /* ボタンよりは下、コンテンツよりは上 */
    padding: 40px 0 30px; /* 上部にボタンと重ならない余白を確保 */
    overflow-y: auto;  /* メニュー内が長い場合にスクロール可能にする */
    -webkit-overflow-scrolling: touch; /* スマホでのスクロールを滑らかに */
    transition: all 0.4s ease;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1); /* 境界線の影 */
	}
    
    #spnavi > ul{
		display: block;
		margin: 0 auto 0 10%;
		width: 85%;
	}

    @media screen and (max-width: 768px) {
        #spnavi{
            width: 100%; 
            right: -100%; 
            padding: 10px 0 30px;
        }
    }

    body.open #spnavi {
        right: 0;          /* 画面の右端ぴったりに戻る */
    }
    body.open {
    overflow: hidden;
}

	
	#spnavi > ul > li{
		margin: 0 auto;
		text-indent:10px;
        padding: 3px 0;
	}
	
	#spnavi > ul > li:first-child{
	}
	
	#spnavi > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0;
		font-size:1.8rem;
		text-decoration: none;
	}
    
     @media screen and (max-width: 768px) {
        
        #spnavi > ul > li > a{
            font-size:1.4rem;
            padding:0;
        }
     }

    #spnavi > ul > li > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0 3px 20px;
		font-size:1.8rem;
		text-decoration: none;
	}
    
    @media screen and (max-width: 768px) {
        
        #spnavi > ul > li > a{
            font-size:1.4rem;
            padding:0;
        }
        #spnavi > ul > li > ul > li > a{
            font-size:1.4rem;
        }
     }


	#spnavi > ul li a:hover{
		text-decoration:none;
		opacity:.7;
	}

    #spnavi h1 > a > img{
        width: 90px;
        height: auto;
    }
    
     #spnavi .header-logo-wrapper{
        margin-top: 10px;
     }
	
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width:25px;
		height:16px;
		/*position:absolute;*/
        position: relative;
		/*top:13px;
		/*top:35px;
		right:20px;*/
		z-index: 31;
		text-align: center;
		cursor: pointer;
	}
    
    @media screen and (max-width: 768px) {
        #nav_toggle{
            width: 15px;
            height: 16px;
        }
    }
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 2px;
		background: #bf2029;
		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: #bf2029;
    }
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:8px;
	}
	#nav_toggle span:nth-child(3){
		top:16px;
	}
    
    @media screen and (max-width: 768px) {
        #nav_toggle span:nth-child(2){
		    top:6px;
        }
        #nav_toggle span:nth-child(3){
            top:12px;
        }
    }
	
	#nav_toggle p.togglemenu{
		background:none;
		color:#bf2029;
		font-size:8px;
		padding-top:19px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 8px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
            background: #bf2029;
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 8px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
            background: #bf2029;
		}
	
	.header-companylogo_sp{
		position:absolute; 
		top:20px;
		left:10px;
		z-index:99;
		/*top:-27px; 
		right:-10px;*/
	}

    .spnavi-arrow:before{
        content: '';/*何も入れない*/
        display: inline-block;/*忘れずに！*/
        width: 16px;/*画像の幅*/
        height: 16px;/*画像の高さ*/
        background-image: url(../img/icon-circle-green-arrow.png);
        background-size: contain;
        /*vertical-align: middle;*/
        margin-right:10px;
        vertical-align: -2px;
    }
    
     @media screen and (max-width: 768px) {
        .spnavi-arrow:before{
            width: 10px;/*画像の幅*/
            height: 10px;/*画像の高さ*/
        }
     }

    #menu-overlay {
        display: none;       /* 最初は隠す */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6); /* 黒の60%透明 */
        z-index: 10;  
        cursor: pointer;
    }

    /* メニューが開いている時だけ表示 */
    body.open #menu-overlay {
        display: block;
    }
/*}*/	


/*スマホメニュー終わり
-----------------------------------------------------------------*/	


/*pconly sponly切り替え　スマホtel処理
-----------------------------------------------------------*/

@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;
    }*/

}
