@charset "utf-8";


.wrapper{
	max-width: 1100px;
    width: 90%;
	margin:0 auto;	
}

.wrapper700{
	max-width: 700px;
    width: 90%;
	margin:0 auto;
}

.wrapper900{
	max-width: 900px;
    width: 90%;
	margin: 0 auto;
}



@media screen and (max-width: 768px) {
    
    .wrapper,
	.wrapper700,
	.wrapper900{
        width:90%;
    }

    .mainvisual .wrapper{
        width: 100%;
    }

}

/*index*/


/*========= 流れるテキスト ===============*/

.slide-in {
    overflow: hidden;
      display: inline-block;
  }
  
  .slide-in_inner {
    display: inline-block;
  }

/*左右のアニメーション*/
.leftAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
    from {
    transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
}

    to {
    transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
    }
}

/*左右のアニメーション*/
.rightAnime{
    opacity: 0;/*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name:slideTextX100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
  transform: translateX(-100%); /*要素を左の枠外に移動*/
        opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name:slideTextX-100;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
  transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
  transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}



/*========= 流れるテキスト ここまで===============*/

.header{
    width: 100%;
    /*position: absolute;*/
    z-index: 2;
    height: 100px;
    position: -webkit-sticky;
	position: sticky;
	top: 0;
    background-color: rgba(255,255,255,0.7);
}

.header-section-wrapper{
    display: flex;
    justify-content: space-between;
}

.header-logo-wrapper{
    margin-top: 24px;
}

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

.header-nav ul{
    display: flex;
}

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

.header-nav ul li a{
    position: relative;
    color: #fff;
}

.header-nav ul li a:hover{
    opacity: 1 !important;
}

.top-page .header-nav ul li a{
    color: #000;
    font-weight: 400;
    font-size: 1.4rem;
}

.header-nav ul li a:hover,
.header-nav ul li a.active{
    color: #4788c3;
}

a.btn-login {
    padding: 60px 0 20px;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    width: 120px;
    height: 100px;
    position: relative;
}

a.btn-login::before {
    content: "";
    width: 30px;
    height: 34px;
    background: url(../img/icon-login.png);
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: 40px;
    left: 48%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

a.btn-radius {
    padding: 15px 50px;
    border-radius: 100vh;
   /* display: flex;
    align-items: center;
    justify-content: center;*/
    width: auto;
    font-size: 1.8rem;
    font-weight: 600;
}

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: 1200px) {

    .header-logo-wrapper{
        margin-top: 5px;
    }

}

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

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

    a.btn-radius {
        padding: 8px 50px;
    }

}

a.btn--orange {
    color: #fff;
    background-color: #ea5413;
}
a.btn--yellow {
    /*color: #fff;*/
    background-color: #e4ea34;
}

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-blue3-color);
    padding:25px 0;
}

.footer .wrapper{
    display: flex;
    justify-content: center;
    position:relaitve;
}

.footer-list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    justify-content: center;
}

.footer-list::before{
    width: 23px;
    height: 35px;
    background: url(../img/icon-company-logo.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%);
}

.footer-list li{
    margin-right: 12px;
}

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

.arrow-white:before{
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    color: #fff;
    margin-right: 5px;
    margin-left: 0px;
    font-size: 14px;
}


.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: 680px;
    background-image: url(../img/mainvisual-top-bk.jpg);
    background-size: cover;
    background-position: center;
    padding-top: 220px;
}

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

}
.top-mainvisual__text h2,
.top-mainvisual__text h2 span{
    color: #fff;
    font-weight: 800;
    font-size: 6.0rem;
	font-size: 7.0rem;
    line-height: 1.5;
    letter-spacing: 5px;
}

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

@media screen and (max-width: 1200px) {
    .header{
        /*padding-top: 5px;*/
        height: 50px;
        position: static;
    }

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

    .header-section-wrapper{
        justify-content: space-between;
        height: 50px;
        align-items: center;
        padding-right: 40px;
    }

    a.btn-login{
        max-width: 70px;
        padding: 28px 0 0;
        font-size: 1.0rem;
        height: 50px;
    }

    a.btn-login::before {
        width: 20px;
        height: 30px;
        background-size: contain;
        top: 20px;        
    }

}


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

    .header{
        /*padding-top: 5px;*/
        height: 50px;
        position: static;
    }

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

   /* .header-section-wrapper{
        justify-content: flex-start;
        height: 50px;
        align-items: center;
    }*/

    a.btn-login{
        max-width: 70px;
        padding: 28px 0 0;
        font-size: 1.0rem;
        height: 50px;
    }

    a.btn-login::before {
        width: 20px;
        height: 30px;
        background-size: contain;
        top: 20px;        
    }

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

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

    .top-mainvisual{
        height: 300px;
        padding-top: 100px;
    }

    .top-mainvisual__text h2,
    .top-mainvisual__text h2 span{
        font-size: 2.2rem;
		font-size: 2.8rem;
        letter-spacing: 1px;
    }

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

    .footer{
        padding: 10px 0;
    }

    .footer-list{
        display: none;
    }

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

.illust-side{
    position: relative;
}

.illust-side:before{
    content: '';/*何も入れない*/
    width: 152px;/*画像の幅*/
    height: 125px;/*画像の高さ*/
    background-image: url(../img/illust01.png);
    background-size: contain;
    vertical-align: middle;
    position:absolute;
    left: 50%;
    margin-left: -380px;
}

.illust-side:after{
    content: '';/*何も入れない*/
    width: 152px;/*画像の幅*/
    height: 144px;/*画像の高さ*/
    background-image: url(../img/illust02.png);
    background-size: contain;
    vertical-align: middle;
    position:absolute;
    top: 0;
    left: 50%;
    margin-left: 250px;
}

@media screen and (max-width: 768px) {
    .illust-side p{
        font-size: 1.4rem;
    }

    .illust-side:before {
        width: 40px;
        height: 35px;
        margin-left: -155px;
        background-repeat: no-repeat;
    }

    .illust-side:after {
        background-repeat: no-repeat;
        width: 40px;
        height: 45px;
        margin-left: 115px;
    }
}

.category-circle-link{
    display: flex;
    justify-content: space-around;
}

.category-circle-link__item{
    background: #fff;
    width: 250px;
    height: 250px;
    border-radius: 100%;
}

.category-circle-link__item.circle-w200{
    width: 200px;
    height: 200px;
}

.category-circle-link__item a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

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

    .category-circle-link{
        flex-wrap: wrap;
    }
    .category-circle-link__item,
    .category-circle-link__item.circle-w200 {
        background: #fff;
        width: 105px;
        height: 105px;
        border-radius: 100%;
    }
}

.item__yellow{
    border: 10px solid #ffda04;
}

.item__orange{
    border: 10px solid #ea5413;
}

.item__green{
    border: 10px solid #54b65b;
}

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

    .item__yellow{
        border: 5px solid #ffda04;
    }
    
    .item__orange{
        border: 5px solid #ea5413;
    }
    
    .item__green{
        border: 5px solid #54b65b;
    }

}




.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: 70px 0 80px;
}

.top-news_title-wrap{
    position: relative;
}
.top-news_title-wrap a{
    position:absolute;
    right:0;
    top: 30px;
    color: var(--primary-blue-color);
    font-weight: 800;
}

.white-radius-wrapper{
    width: 100%;
    background: #fff;
    padding: 40px 50px 60px;
    border-radius: 10px;
}   

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

    .section-top-news{
        padding: 30px 0 40px;
    }

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

    .white-radius-wrapper{
        padding: 20px 30px 40px;
    }
}

.news-list{
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;
    height: 60px;*/
    padding: 20px 0;
    border-bottom: 1px solid #808a70;
}

.news-list dt{
    width: 230px;
}

.news-list dd{
    width: calc(100% - 250px);
    margin-top: -2px;
}

.news-list__time {
    font-size: 1.6rem;
    color: #4788c3;
    font-weight: 800;
    /*color: #0864b2;*/
}

.news-list__category {
    font-size: 1.6rem;
    color: #fff;
    margin-left: 30px;
    padding: 5px 10px;
    border-radius: 5px;
    vertical-align: middle;
}

.news-list__category-blue {
    background: #4788c3;  
}

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

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

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

.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: 10px;
        padding: 0 7px;
    }

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

}

.section-top-frk-member-login{
    padding: 110px 0;
}



.section-top-frk-member-login-two-columns-left{
    width: 50%;
}

.section-top-frk-member-login-two-columns-right{
    width: 50%;
}
.section-top-frk-member-login-two-columns-right-inner{
    width: 295px;
    margin: 0 auto;
}

.top-frk-member-login-list li a{
    color: var(--primary-gray-color);
    font-size:2.4rem;
    font-weight: 600;
    line-height: 2.5;
}

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

    .section-top-frk-member-login{
        padding: 30px 0;
    }

    .section-top-frk-member-login-two-columns-right-inner{
        width: 150px;
    }

    .top-frk-member-login-list li a{
        font-size:1.6rem;
    }
}



.section-banner-area{
    padding: 60px 0;
    background: var(--primary-blue2-color);
    
}

.section-banner-area-inner{
   /* height: 130px;*/
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.section-banner-item{
    width: auto;
    height: auto;
    margin: 0 20px;
    /*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: 25px 0;
    }

    .section-banner-area-inner{
        height: auto;
    }
    .section-banner-item{
        width: calc(50% - 15px/2);
       /* margin-bottom: 15px;*/
        text-align: center;
        margin:0;
    }

    .section-banner-item:nth-child(1){
        margin-right: 15px;
    }

    /*.section-banner-item:nth-child(5n){
        margin-right: 15px;
    }*/
}

.section-company-name-address{
    background: #4788c3;
    padding: 30px 0;
}

.section-company-name-address__inner{
   /* height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;*/
}

.section-company-name-address__txt{
    font-size: 1.4rem;
    color: #fff;
    width: 480px;
}

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

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

}



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

.main-contents{
    padding: 50px 0 170px;
    background: var(--primay-bk-gray-color);
}

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

.border-bottom{
    border-bottom: 1px solid #808a70;
}

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

.breadcrumb {
    height: 50px;
    background: var(--primay-bk-gray-color);
}

.breadcrumb span, .breadcrumb span a {
    font-size: 1.2rem;
    line-height: 50px;
    color: #808a70;
}

.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;*/
    color: var(--primary-blue-color);
}

.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: 200px; 
    padding-top: 70px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.mainvisual-title{
    font-size: 4.0rem;
    font-weight:800;
    color: #fff;
    letter-spacing: 3px;
}

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

    .mainvisual{
        height: 90px;
        padding-top: 30px;
        background-size: auto;
    }
    .mainvisual-title{
        font-size: 2.0rem;
    }
}

/*---------------共通要素----------------*/

.title__left-blue-border{
    border-left: 5px solid var(--primary-blue-color);
    padding-left: 10px;
    line-height: 1.2;
}

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

.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: -5px;
	top: -3px;
}

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

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

.border-bottom-block-item{
    padding: 30px 0;
    border-bottom: 1px solid #808a70;
}

.border-bottom-block-item:first-of-type{
    padding: 0 0 30px;
}

/*.border-bottom-block-item:last-of-type{
    padding: 30px 0 0;
}*/

@media screen and (max-width: 768px) {
    .border-bottom-block-item{
        padding: 15px 0;
    }
    
    .border-bottom-block-item:first-of-type{
        padding: 0 0 15px;
    }
    
    /*.border-bottom-block-item:last-of-type{
        padding: 15px 0 0;
    }*/
}


/*---------------outline----------------*/

.mainvisual-outline{
    background-image: url(../img/bk-mainvisual_outline.jpg);
    
}

.outline-twocolumns{
    column-gap: 6%;
    align-items: center;
}

.outline-twocolumns-left{
    width: 33%;
}

.outline-twocolumns-right{
    width: 60%;
}

.outline-arrow-list li a {
    color: var(--primary-gray-color);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.5;
}

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

    .outline-twocolumns-left{
        width: 80%;
        margin: 0 auto 20px;
        max-width: 333px;
    }

    .outline-twocolumns-right{
        width: 100%;
    }

    .outline-arrow-list li a {
        line-height: 2;
    }

}


/*---------------officer----------------*/

.mainvisual-officer{
    background-image: url(../img/bk-mainvisual_officer.jpg);
    
}

.officer-twocolumns_outer{

}

.officer-twocolumns_outer-left{
    width: 15%;
}

.officer-twocolumns_outer-right{
    width: 85%;
}

.officer-twocolumns_inner{
    align-items: flex-end;
    margin-bottom: 20px;
}

.officer-twocolumns_inner:last-of-type{
    margin-bottom: 0;
}

.officer-twocolumns_inner dt{
    width: 38%;
    font-size: 1.8rem;
    font-weight: 800;
}

.officer-twocolumns_inner dt span{
    font-size: 1.4rem;
}

.officer-twocolumns_inner dd{
    width: 62%;
    font-size: 1.8rem;
}


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

    .officer-twocolumns_outer-left{
        margin-bottom: 10px;
        width: 100%;
    }

    .officer-twocolumns_outer-right{
        width: 100%;
    }

    .officer-twocolumns_inner dt {
        width: 100%;
        margin-bottom: 5px;
    }

    .officer-twocolumns_inner dd {
        width: 100%;
        font-size: 1.4rem;
    }
	
	.officer-twocolumns_inner dt span{
    font-size: 1.2rem;
}

    .officer-twocolumns_inner {
        margin-bottom: 15px;
    }
}


/*---------------member----------------*/

.mainvisual-memberlist{
    background-image: url(../img/bk-mainvisual_member.jpg);
    
}

.member-threecolumns-wrapper p{
    width: 33%;
    margin-bottom: 15px;
    display: inline-block;
}

.member-align-right{
    justify-content: flex-end;
}

.member-align-right p{
    font-weight: 800;
}

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

    .member-threecolumns-wrapper p {
        width: 100%;
        margin-bottom: 5px;
    }

}

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

.mainvisual-news{
    background-image: url(../img/bk-mainvisual_news.jpg);
    
}


.news-detail-title {
    font-size: 2.0rem;
    font-weight: 800;
    margin-bottom: 10px;
    
}


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

.news-detail-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

}

.news-contents{
    border-bottom: 1px solid var(--primary-gray-color);
    padding: 25px 0;
}

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

.news-detail__date_cat{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.news-detail__date_cat .news-list__time{
    margin-left:20px;
    color: #000;
}

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

    .news-contents{
        padding: 20px 0;
    }
    .news-contents p{
        font-size: 1.4rem;
    }

}

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



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

.mainvisual-contact{
    background-image: url(../img/bk-mainvisual_contact.jpg);
    background-position: bottom center;
}

.mainvisual-2025-new-year{
    background-image: url(../img/bk-mainvisual_contact.jpg);
    background-position: bottom center;
}

/*--20250220追加*/
.mainvisual-golf-entry{
    background-image: url(../img/bk-mainvisual_contact.jpg);
    background-position: bottom center;
}


.contact-list01,
.smf-form--simple-table .smf-item.contact-list01{
    border-top: 1px solid #c4c4c4;
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0;
    /*align-items: center;*/
}

.smf-form--simple-table .smf-item.contact-list01:first-of-type,
.smf-form--simple-table .smf-item.contact-list01:nth-child(2){
    border-top: none;
}

dl.contact-list01:last-child {
    border-bottom: 1px solid #c4c4c4;
}

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

.contact-list01 dt{
    font-size: 1.6rem;
    font-weight:bold;
    width: 210px;
    /*margin-top: 7px;*/
    padding-right: 60px;
}

.contact-list01 dd{
    width: calc(100% - 210px);
}

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

    .contact-list01{
        padding: 15px 0 25px;
    }

    .contact-list01 dt{
        font-size: 1.2rem;
        margin-bottom:5px;
        width: 100%;
        text-align: left;
    }
    .contact-list01 dd{
        width: 100%;
        /*font-size: 1.2rem;*/
       /* display: flex;
        align-items: center;*/
    }

    .contact-list01 dd.fz12sp{
        font-size: 1.2rem;
    }

    .contact-list01 dd span.fz12sp{
        font-size: 1.2rem;
    }
}

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

.contact-address-list_column1{
    font-size: 1.6rem;
    font-weight: 500;
    width: 120px;
}

.required{
    color: #ff0c00;
    font-size: 1.6rem;
}

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

    .contact-address-list_column1{
        font-size: 1.2rem;
        width: 87px;
    }
    
    .required{
        font-size: 1.2rem;
        margin-left: 10px;
        width: 40px;
    }
}

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

.select,
.textarea{
    border: 1px solid #aba9a9;
    /*font-weight:500;*/
    padding: .5em .5em .5em .7em;
    font-size: 1.6rem;
}

.textarea{
    width: 700px;
    height: 250px;
}


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

.input_text02{
    width: 180px;
}

.input_text03{
    width: 300px;
    max-width: 280px;
}

.input_text04{
    width: 100%;
    max-width: 700px;
}

.select01{
    width: 180px;
}

.selectw60{
    width: 60px;
    margin: 2px 5px;
}


.form__btn {
    display: flex;
    justify-content: center;
    column-gap: 36px;
}

.form__btn [type="submit"], 
.form__btn [type="reset"] {
    /*width: 250px;
    height: 48px;*/
    width: 270px;
    max-width: 100%;
    border: none;
    background-color: #e2ece8;
    /*color: #000000;
    font-size: 1.6rem;
    transition: color 0.3s, border 0.3s, background 0.3s ease 0s;*/
    padding: 10px;
    border-radius: 50px;
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
    background: #00a497;
}

.form__btn [type="submit"]:hover, 
.form__btn [type="reset"]:hover {
    color: #fff;
    background-color: #ffffff;
    background-color: #00531d;
}



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

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

    .textarea{
        width: 100%;
        height: 180px;
    }

    .form__btn [type="submit"], .form__btn [type="reset"] {
        font-size: 1.5rem;
    }

    .selectw60{
        width: 42px;
        margin: 2px;
    }
    
}

.checkbox-list-block > span{
    display: block;
    margin-bottom: 5px;
}

@media screen and (max-width: 1030px) {
.checkbox-list-block > span{
    font-size: 1.4rem;
}
}

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

.has-vivid-red-color {
color: #ff0c00;
font-size: 1.4rem;
}

body .is-layout-flex {
    display: flex;
    flex-wrap: wrap;
}


.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: .25em .5em .25em .7em;
}

.select,
.textarea{
    border: 1px solid #d4d4d4;
    font-weight:500;
    padding: .5em .5em .5em .7em;  
}

.textarea{
    width: 100%;
    height: 250px;
}



.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%;
        max-width: inherit;
        /*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-action .smf-button-control__control {
    width: 270px;
    max-width: 100%;
    border: none;
    background-color: #e2ece8;
    padding: 10px;
    border-radius: 50px;
    font-size: 1.8rem;
    text-align: center;
    color: #fff;
    background: var(--primary-blue-color);
}

a.privacy-link {
    text-decoration: underline;
    margin: 0 5px;
}

a.windows:after{
    content: "";
    display: inline-block;
    width: 15px;
    height: 12px;
    background-image: url(../img/icon-window.png);
    background-repeat:no-repeat;
    background-size: contain;
    margin-left:3px;

}

.smf-form--simple-table+.smf-action {
    margin: 30px auto;
}


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

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

@media (max-width: 781px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        flex-basis: 100% !important;
    }
}
@media (max-width: 781px) {
	[data-screen="confirm"] .smf-action{
		display: flex;
	}
	[data-screen="confirm"] .smf-action .smf-button-control{
		width: 50%;
	}
	[data-screen="confirm"] .smf-action .smf-button-control .smf-button-control__control{
		width: 100%;
	}
}


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

.smf-form--simple-table .smf-item__col--label {
    padding-bottom: 10px;
}

@media screen and (max-width: 798px) {
    .btn-auto {
        margin-top: 10px;
        margin-left: 0;
    }
	.input_text01 {
		width: 100%;
	}
		
	
}


@media screen and (min-width: 798px) {

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

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

.smf-item__col smf-item__col--controls.input_text01{
		width: 100%;
	max-width:inherit;
	}
	
	.smf-form--simple-table .smf-item__col--label {
		width: 100%;
	}
	
	.smf-item__col smf-item__col--controls{
		width: 100%;
	}
	
	:where(.is-layout-flex) {
		gap: 0.5em;
	}
	
	.smf-form .smf-item .smf-text-control__control.input_text01 {
		width: 100%;
		max-width: inherit;
	}
	
	.smf-form .smf-item .smf-item__col--controls{
		width: 100%;
	}
	
}









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



@media screen and (max-width: 768px) {
    .tel-link > a {
        /*color: #06F;
        font-weight: bold;*/
        text-decoration: underline;
    }
    
    .tel-link.txtRed > a {
        color: #f00;
    }
}


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




/*共通要素*/


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



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




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

.bk-yelllow{
    background-image: url(../img/bk-yellow-img.jpg);
}

.bk-dotted{
    background-image: url(../img/bk-dotted-img.jpg);
}

/*a
-----------------------------------------------------------*/

a:hover{
    opacity: .8;
}

/*zoom in
-----------------------------------------------------------*/

.zoomIn img{
    transform: scale(1);
    transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  }

  .zoomIn a:hover{
    opacity: 1;
  }
  
  .zoomIn a:hover img{/*hoverした時の変化*/
    transform: scale(1.1);/*拡大の値を変更したい場合はこの数値を変更*/
    
  }
  
  /*　画像のマスク　*/
  
  .mask{
      display: block;
      line-height: 0;/*行の高さを0にする*/
      overflow: hidden;/*拡大してはみ出る要素を隠す*/
  }

/*その他装飾
-----------------------------------------------------------*/

.line-dashed{
    border-bottom: 1px dashed #000;
}

.line-dashed-top{
    border-top: 1px dashed #000;
}

.arrow-blue-right::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_arrow-blue-right.png);
    background-size: contain;
    vertical-align: -4px;
    margin-right: 10px;
}

.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) {

    .arrow-blue-right::before{
        width: 15px;
        height: 15px;
        background-repeat: no-repeat;
        vertical-align: -3px;
        margin-right: 5px;
    }

    .button__simple-square{
        width: 230px;
        height: 35px;
    }

}


/*フェードイン
-----------------------------------------------------------*/

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/* 下から */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeUpAnime{
    from {
    opacity: 0;
    transform: translateY(100px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* 右から */

.fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
@keyframes fadeRightAnime{
    from {
    opacity: 0;
    transform: translateX(100px);
    }

    to {
    opacity: 1;
    transform: translateX(0);
    }
}

/*text
-----------------------------------------------------------*/

.bold{
	font-weight: bold;
}

.txtcenter{
	text-align: center;
}

.txtright{
	text-align: right;
}

.txtjustify{
	text-align: justify;
}

.txtOrange{
    color: #ea5413;
}

.txtBlue{
    color: #4788c3;
}

.txtGray{
    color: #808a70;
}

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

.fz48{
	font-size: 4.8rem;
}

.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;
}
.fw800{
    font-weight: 800;
}


.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;
}
.lh225{
	line-height: 2.25;
}
.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;
}
.pt30{
    padding-top: 30px;
}
.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;
    }
    .mt10sp{
        margin-top: 10px;
    }
    .mt20sp{
        margin-top: 20px;
    }
    .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: 1200px) {
	#spnavi{
		display: none;
		position: absolute;
		top: 50px;
		width: 100%;
		background: #fff;
		left: 0;
		z-index:90;
        padding: 5px 0 30px;
	}
	#spnavi > ul{
		display: block;
		margin: 0 auto;
		width: 93%;
	}
	#spnavi > ul > li{
		margin: 0 auto;
		text-indent:10px;
		/*border-bottom: 1px solid #525252;*/
        padding: 5px 0;
	}
	
	/*#spnavi > ul > li:first-child{
		border-top: 1px solid #525252;
	}*/
	
	#spnavi > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0;
		font-size:1.4rem;
		text-decoration: none;
	}

    #spnavi > ul > li > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0 3px 20px;
		font-size:1.4rem;
		text-decoration: none;
	}

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

    #spnavi h1 > a > img{
        width: 150px;
        height: auto;
    }
	
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width:17px;
        width: 30px;
		height:16px;
		position:absolute;
		top:13px;
		top: 20px;
		right:15px;
		z-index: 100;
		text-align: center;
		
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #fff;
        background: #000;
		position:absolute;
		width: 100%;
		right: 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: #ea5413;
    }*/
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:6px;
        width:0;
	}
	#nav_toggle span:nth-child(3){
		/*top:12px;*/
        top: 7px;
        width: 80%;
	}
	
	/*#nav_toggle p.togglemenu{
		background:none;
		color:#ed6103;
		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: #000;
            width: 80%;
		}
		.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: #000;
		}
	
	.header-companylogo_sp{
		position:absolute; 
		top:20px;
		left:10px;
		z-index:99;
		/*top:-27px; 
		right:-10px;*/
	}

    .spnavi-arrow:before{
        /*content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        background-image: url(../img/spnavi-arrow.png);
        background-size: contain;
        vertical-align: middle;
        margin-right:5px;*/
        font-family: "Font Awesome 5 Free";
        content: "\f105";
        font-weight: 900;
        color: #000;
        margin-right: 5px;
        margin-left: 0px;
        font-size: 14px;
    }
}


@media screen and (max-width: 768px) {
	#spnavi{
		display: none;
		position: absolute;
		top: 50px;
		width: 100%;
		background: #fff;
		left: 0;
		z-index:90;
        padding: 5px 0 30px;
	}
	#spnavi > ul{
		display: block;
		margin: 0 auto;
		width: 93%;
	}
	#spnavi > ul > li{
		margin: 0 auto;
		text-indent:10px;
		/*border-bottom: 1px solid #525252;*/
        padding: 5px 0;
	}
	
	/*#spnavi > ul > li:first-child{
		border-top: 1px solid #525252;
	}*/
	
	#spnavi > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0;
		font-size:1.4rem;
		text-decoration: none;
	}

    #spnavi > ul > li > ul > li > a{
		display: block; 
		color:#555555 !important;
		padding:3px 0 3px 20px;
		font-size:1.4rem;
		text-decoration: none;
	}

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

    #spnavi h1 > a > img{
        width: 150px;
        height: auto;
    }
	
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width:17px;
        width: 30px;
		height:16px;
		position:absolute;
		top:13px;
		top: 20px;
		right:15px;
		z-index: 100;
		text-align: center;
		
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #fff;
        background: #000;
		position:absolute;
		width: 100%;
		right: 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: #ea5413;
    }*/
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:6px;
        width:0;
	}
	#nav_toggle span:nth-child(3){
		/*top:12px;*/
        top: 7px;
        width: 80%;
	}
	
	/*#nav_toggle p.togglemenu{
		background:none;
		color:#ed6103;
		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: #000;
            width: 80%;
		}
		.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: #000;
		}
	
	.header-companylogo_sp{
		position:absolute; 
		top:20px;
		left:10px;
		z-index:99;
		/*top:-27px; 
		right:-10px;*/
	}

    .spnavi-arrow:before{
        /*content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        background-image: url(../img/spnavi-arrow.png);
        background-size: contain;
        vertical-align: middle;
        margin-right:5px;*/
        font-family: "Font Awesome 5 Free";
        content: "\f105";
        font-weight: 900;
        color: #000;
        margin-right: 5px;
        margin-left: 0px;
        font-size: 14px;
    }
}	


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


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

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

@media screen and (min-width: 1024px) {
	.w1024only{
		display: none;
	}
}

@media screen and (max-width: 1024px) {
    .w1024only{
        display: block;
        position:relative;
        z-index: 2;
    }
}

@media screen and (min-width: 769px) {
	.sponly{
		display: none;
	}
}


@media screen and (max-width: 768px) {
    .pconly{
        display: none;
    }
    .sponly{
        display: block;
        position:relative;
        /*z-index: 2;*/
    }
    .flexc.sponly{
        display: flex;
    }
    /*a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }*/

}
