@charset "UTF-8";
/* CSS Document */
@media screen and (max-width: 480px) {
  html, body {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
html{
    scroll-behavior: smooth;
}
body {
    -webkit-text-size-adjust: 100%;
    font-family: "Zen Kaku Gothic New","Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: var(--fnt_size_main);
    text-align: justify;
    background: #fff;
    letter-spacing: .05em;
    color: var(--col_main-color);
    font-size: 20px;
    min-height: 0vw;
}
body *{
    line-height: 1.6em;
}

:root{
    --col_main-color: #333333;
    --col_white: #fff;
    --col_orange: #FF960D;
    --col_blue: #2962AC;
    --col_red: #FC0000;
    
    --bgcol_main: #A7BE27;
    --bgcol_beige: #FFFBE1;
    --bgcol_beige_bright: #FFFCF0;
    --bgcol_green: #336600;
    --bgcol_light-gray: #EFEFEF;
    
  
    --fnt_fam_noto: "Noto Sans JP", Meiryo, sans-serif;
    --fnt_fam_lexend-tera: "Lexend Tera", sans-serif;
    --fnt_size_main: 20px;
    --fnt_size_h2: 33px;
    --fnt_size_h2_s: calc(var(--fnt_size_h2) * 0.9);
    --fnt_size_s: calc(var(--fnt_size_main) * 0.9);
    --fnt_size_h2_768-481: calc(2.0625rem + ((1vw - 7.68px) * 4.1812));
    --fnt_size_h2_480-350: calc(1.3125rem + ((1vw - 4.8px) * 4.6512));
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

h1 {
    margin-bottom: 10px;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.2em;
    letter-spacing: 0;
    height: 2em;
    overflow: visible;
    position: absolute;
    color: #777;
    right: 0;
    top: 10px;
    padding-right: calc(5% + 17px);
}
.headline01{
    font-family: var(--fnt_fam_noto);
    font-size: var(--fnt_size_h2);
    font-weight: 900;
    color: var(--col_blue);
    text-align: center;
    letter-spacing: .18em;
}

a {
  color: var(--col_main-color);;
  text-decoration: none;
}
a img {
  transition: all .2s;
}

a:link {
  color: var(--col_main-color);;
  text-decoration: none;
}

a:visited {
  color: var(--col_main-color);
  text-decoration: none;
}

a:hover {
  color: var(--col_main-color);
  text-decoration: underline;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
a[href^="tel:"]{
    color: var(--col_main-color);
    font-size: 110%;
}


img {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: bottom;
  width: 100%;
}
img.sizeauto{
    width: auto;
}

p.info{
    font-weight: bold;
    line-height: 1.8;
}

.sp_only {
  display: none!important;
}
.sp_only_block {
  display: none!important;
}
.sp_only1023{
  display: none!important;
}
.sp_only768{
  display: none!important;
}

.sp_only_kaigyo {
  display: none;
}

.sp_kaigyo_480{
    display: none;
}

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

.fnt_s95{
    font-size: 95%;
}
.fnt_s90{
    font-size: 90%;
}
.fnt_s85{
    font-size: 85%;
}
.fnt_s80{
    font-size: 80%;
}
.fnt_s140{
    font-size: 140%;
}
.fnt_s160{
    font-size: 160%;
}
.fnt_sub_size{
    font-size: var(--fnt_size_s);
}

.anchor {
    padding-top: 115px;
    margin-top: -115px;
}

.ul_disc li{
    position: relative;
    padding-left: 1.2em;
}
.ul_disc li:before{
    content: "・";
    position: absolute;
    margin-left: -1.2em;
}
.ul_asta li{
    position: relative;
    padding-left: 1em;
}
.ul_asta li:before{
    content: "※";
    position: absolute;
    margin-left: -1em;
}
.asta{
    position: relative;
    padding-left: 1em;
    display: block;
}
.asta.noblock{
    display: inline;
}
.asta:before{
    content: "※";
    position: absolute;
    margin-left: -1em;
}

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

}
@media screen and (max-width: 1023px) {
    body{
        font-size: calc(var(--fnt_size_main) * 0.9);
        --fnt_size_s: calc(var(--fnt_size_main) * 0.8);
    }
    h1{
        display: none;
    }
  .sp_only1023 {
    display: inline!important;
  }
  .sp_hide1023 {
    display: none!important;
  }  
  .anchor {
    padding-top: 60px;
    margin-top: -60px;
  }
}
@media screen and (max-width: 768px) {
    body {
        font-size: calc(var(--fnt_size_main) * 0.8);
      }

  .sp_hide768 {
    display: none!important;
  }
  .sp_only768 {
    display: inline!important;
  }
  .headline01{
      padding: .5em 0;
      font-size: var(--fnt_size_h2_768-481);
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: calc(var(--fnt_size_main) * 0.7);
    --fnt_size_s: calc(var(--fnt_size_main) * 0.7);
  }
    .headline01{
      font-size: var(--fnt_size_h2_480-350);
  }
  .sp_hide480 {
    display: none!important;
  }

  .sp_only {
    display: inline!important;
  }
  .sp_only_block {
    display: block!important;
  }
  .ul_disc li{
      padding-left: .5em;
  }
}
@media screen and (max-width: 320px) {
  body {
        font-size: calc(var(--fnt_size_main) * 0.65);
  }
}
/* ヘッダー画像
---------------------------------------------------------------------------------------------------------------------------------------*/
header {
    margin-top: 115px;
    margin-bottom: 0;
    position: relative;
    width: 100%;
}
.header_top{
    display: flex;
    justify-content: flex-end;
}
.header_top img{
    width: 70%;
}
.txt_float01{
    position: absolute;
    max-width: 498px;
    width: 26.142%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 11vw;
    padding-right: 1em;
    text-align: center;
}

.breadcrumb{
    margin: 0 45px;
    font-size: 12px;
    line-height: 20px;
}
.breadcrumb ol{
    display: flex;
}
.breadcrumb ol li a{
    color: #666666;
}
.breadcrumb ol li:last-child{
    color: #19633B;
}

#banner{
    padding-top: 100px;
    margin-bottom: 130px;
}
#banner img{
    width: 66%;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 1023px) {
  header {
      margin-top: 60px;
  }
  .top_contents {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
    .header_top img{
        width: 100%;
    }
    .txt_float01{
        display: none;
    }

  .breadcrumb{
      margin: 0 5%;
  }
}

/* コンテンツ
---------------------------------------------------------------------------------------------------------------------------------------*/
article {
  width: 100%;
  margin-bottom: 50px;
}

.contents-box_full{
    width: 100%;
    max-width: 100%;
}

.contents-box{
    max-width: 1040px;
    width: 90%;
    margin: 0 auto;
}

.contents-box img {
  width: 100%;
  height: auto;
}
.contents-box.width_l{
    max-width: 1300px;
}
.contents-box.width_m{
    max-width: 1120px;
}
.contents-box.width_s{
    max-width: 880px;
}

.flex_box {
  display: flex;
  flex-wrap: nowrap;
}

.box_half {
  width: 50%;
}

.text_red {
  color: #CB1C24;
}

.img_sp {
  display: none !important;
}

.text_center {
  text-align: center;
}

dl dd{
    line-height: 2;
}

.more_btn a{
    background: #ff620b;
    color: #fff;
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: .4em 0;
    transition: all .2s;
    border: solid 1px #ff620b;
    width: 460px;
    max-width: 90%;
    position: relative;
    padding-right: 1em;
    text-align: center;
    border-radius: .4em;
}
.more_btn a:hover{
    text-decoration: none;
    background: transparent;
    color: #ff620b;
}
.more_btn a:after{
    content: "";
    position: absolute;
    width: 1em;
    height: .6em;
    background: url(../images/common/arrow01.png) no-repeat right center;
    background-size: contain;
    right: 1em;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
}
.more_btn a:hover:after{
    background: url(../images/common/arrow02.png) no-repeat right center;
    background-size: contain;
    right: 0.5em;
}

.marker{
    background: linear-gradient(transparent 65%, #FFFF60 0%);
    display: inline;
}

.col_orange{
    color: var(--col_orange);
}

@media screen and (max-width: 768px) {
    dl dd{
        line-height: 1.5;
    }
    .contents-box{
        padding-left: 0;
        padding-right: 0;
    }

  .box_half {
    width: 100%;
  }
  .sp_only_kaigyo {
    display: block;
  }

  .img_pc {
    display: none !important;
  }

  .img_sp{
    display: inline !important;
  }
  .img_sp {
    display: block !important;
  }
    #banner {
        padding-top: 1em;
        margin-bottom: 2em;
    }
    #banner img{
        width: 100%;
    }
    .more_btn a{
        font-size: 130%;
        padding: 0.5em 0;
    }
}
@media screen and (max-width: 600px) {
    .breadcrumb{
        margin-left: 3%;
    }
}

@media screen and (max-width: 480px) {
    .sp_kaigyo_480{
        display: block;
    }
    .more_btn a{
          font-size: 100%;
          padding: 0.3em 0;
    }
}

@media screen and (max-width: 320px) {
    body *{
        white-space: normal!important;
    }
}


/* 滑らかに変形して出現 */
.smooth{
    animation-name:smoothAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    transform-origin:left;
}

@keyframes smoothAnime{
  from {
    transform:translate3d(0, 100%, 0) skewY(12deg);
    opacity:0;
  }

  to {
    transform:translate3d(0, 0, 0) skewY(0);
    opacity:1;
  }
}

/* フッター
---------------------------------------------------------------------------------------------------------------------------------------*/
footer{
    background: url(../images/common/footer.png) bottom center no-repeat;
}
footer .cont01{
    background: url(../images/common/bg_contact.jpg) top center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    padding-top: 180px;
    padding-bottom: 165px;
    margin-bottom: 65px;
}
footer .cont01 #kengaku{
    background: rgba(255,255,255,.8);
    max-width: 80%;
    width: 1020px;
    padding: 90px 5% 80px;
    border-radius: 2em;
}
footer .cont01 #kengaku h2{
    text-align: center;
    margin-bottom: 30px;
}
footer .cont01 #kengaku h2 img{
    width: auto;
    max-width: 100%;
}
footer .cont01 h3{
    max-width: 760px;
    width: 80%;
    margin-bottom: 45px;
}
footer .cont01 .txt_stl01{
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 45px;
}
footer .cont01 .txt_stl01 > span{
/*    width: 25%;*/
    padding-left: 30px;
}
footer .cont01 .txt_stl01 > span img{
    width: auto;
}
footer .cont01 .txt_stl01 p{
    width: 75%;
    padding-left: 65px;
    font-size: var(--fnt_size_s);
}
footer .cont01 .txt_stl01 p span{
    font-size: 120%;
    color: #AD467C;
}
footer .cont01 .txt_stl02{
    border: solid 5px var(--col_blue);
    background: var(--col_blue);
}
footer .cont01 .txt_stl02 .title{
    color: var(--col_blue);
    background: #fff;
    padding: .5em 0;
    text-align: center;
    font-size: 120%;
}
footer .cont01 .txt_stl02 > div{
    background: var(--col_blue);
    color: #fff;
    padding: 1em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .cont01 .txt_stl02 > div > div{
    width: 75%;
}
footer .cont01 .txt_stl02 > div a{
    color: #fff;
}
footer .cont01 .txt_stl02 > div .txt_stl03{
    display: flex;
}
footer .cont01 .txt_stl02 > div .txt_stl03 span{
    padding-left: 3em;
    width: 70%;
}
footer .cont01 .txt_stl02 > div .txt_stl03 span a{
    cursor: default;
}
footer .cont01 .txt_stl02 > div .txt_stl03 span a:hover img{
    opacity: 1;
}
footer .cont01 .txt_stl02 > div .txt_stl04{
    padding-top: 20px;
}

footer .cont02{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    line-height: 1.9;
    width: 1300px;
    max-width: 90%;
    margin: auto;
}
footer .cont02 .f_company{
    width: 50%;
    padding-right: 40px;
}
footer .cont02 .f_company h2{
    font-size: 190%;
    padding-bottom: 40px;
    text-align: left;
}
footer .cont02 .f_company h2 img{
    margin-bottom: 10px;
    max-width: 80%;
    width: auto;
}
footer .cont02 .f_company .tel{
    margin-bottom: 65px;
}
footer .cont02 .f_company .link_contact img{
    width: 240px;
    max-width: 60%;
}
footer .cont02 .iframe_box{
    text-align: right;
    width: 50%;
}
footer .cont02 .iframe_box iframe{
    width: 100%;
    height: 100%;
}
footer .copy {
    font-size: 60%;
    padding-bottom: 20px;
    padding-top: 15em;
    line-height: 1.5em;
    justify-content: space-between;
    width: 1300px;
    max-width: 90%;
    margin: 0 auto;
}
footer .copy a{
    
}
footer .copy p{
    padding-right: 3em;
    color: var(--col_white);
    font-size: 140%;
}

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

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

}
@media screen and (max-width: 1023px) {
    footer .cont01 .txt_stl01{
        white-space: normal;
        width: 100%;
    }
    footer .cont01 .txt_stl01 p{
        font-size: 110%;
    }
    footer .cont01 .txt_stl02 .title{
        font-size: 110%;
        text-align: center;
    }
    footer .cont01 .txt_stl02 > div{
        padding-left: 5%;
        padding-right: 5%;
    }
    footer .cont01 .txt_stl02 > div > div {
        width: 100%;
    }
    footer .cont01 .txt_stl02 > div .txt_stl03 span{
        padding-left: 2em;
    }
    footer .cont02 .f_company .link_contact img{
        max-width: 80%;
    }

}
@media screen and (max-width: 768px) {
    footer {
        background: url(../images/sp/footer.png) bottom center no-repeat;
        background-size: contain;
    }
    footer .cont01{
        padding-top: 3em;
        padding-bottom: 3em;
        background: url(../images/sp/bg_contact.jpg) top center no-repeat;
        background-size: cover;
    }
    footer .cont01 #kengaku{
        max-width: 90%;
        padding-top: 3em;
        padding-bottom: 2em;
        padding-left: 5%;
        padding-right: 5%;
    }
    footer .cont01 h3{
        width: 100%;
        margin-bottom: 1em;
    }
    footer .cont01 .txt_stl01{
        flex-direction: column;
        margin-bottom: 1.5em;
    }
    footer .cont01 .txt_stl01 > span{
        width: 25%;
        display: block;
        margin: 0 auto;
        margin-bottom: 1em;
        padding-left: 0;
    }
    footer .cont01 .txt_stl01 > span img {
        width: 100%;
    }
    footer .cont01 .txt_stl01 p{
        width: 100%;
        padding-left: 0;
    }
    footer .cont01 .txt_stl02{
        border: solid 3px var(--col_blue);
    }
    footer .cont01 .txt_stl02 .title{
        text-align: left;
        display: flex;
        justify-content: center;
        padding: .8em 0;
        text-align: center;
    }
    footer .cont01 .txt_stl02 > div{
        padding: 1em 5%;
    }
    footer .cont01 .txt_stl02 > div > div{
        width: 84%;
    }
    footer .cont01 .txt_stl02 > div .txt_stl03{
        flex-direction: column;
        margin-bottom: 1.5em;
    }
    footer .cont01 .txt_stl02 > div .txt_stl03 span{
        padding-left: 0;
        padding-top: .6em;
        width: 100%;
    }
    footer .cont01 .txt_stl02 > div .txt_stl04{
        padding-top: 0;
    }
    footer .cont02{
        flex-direction: column;
        font-size: 16px;
    }
    footer .cont02 .f_company{
        width: 100%;
        padding-right: 0;
    }
    footer .cont02 .f_company h2{
        padding-bottom: 20px;
    }
    footer .cont02 .f_company h2 img{
        max-width: 60%;
    }
    footer .cont02 .f_company .txt_stl{
        margin-bottom: 2em;
        font-size: var(--fnt_size_s);
    }
    footer .cont02 .iframe_box{
        width: 100%;
    }
    footer .cont02 .iframe_box iframe{
        height: 60vw;
    }
    footer .cont02 .f_company .tel {
        margin-bottom: 1.5em;
    }
    footer .copy{
        justify-content: center;
    }
    footer .copy p{
        padding-right: 0;
    }
    footer .copy a {
        display: none;
    }
    
    
}
@media screen and (max-width: 480px) {
    footer .cont01{
        padding-bottom: 1.5em;
    }
    footer .cont01 #kengaku{
        padding-top: 2.5em;
        max-width: 84%;
        padding-bottom: 1.5em;
        border-radius: 1em;
    }
    footer .cont01 .txt_stl01{
        margin-bottom: 2em;
    }
    footer .cont01 .txt_stl01 p{
        font-size: 100%;
    }
    footer .cont01 .txt_stl01 p span{
        font-size: 110%;
    }
    footer .cont01 .txt_stl02 .title{
        font-size: 90%;
        padding: .5em 0;
    }
    footer .cont01 .txt_stl02 > div{
        padding: 1em 3%;
    }
    footer .cont01 .txt_stl02 > div > div{
        width: 100%;
    }
    footer .cont01 .txt_stl02 > div .txt_stl03{
        margin-bottom: 1em;
    }
    footer .cont01 .txt_stl02 > div .txt_stl03 span{
        padding-top: .3em;
    }
    footer .cont01 .txt_stl02 > div .txt_stl03 span a img{
        width: 90%;
    }
    footer .cont01 .txt_stl02 > div .txt_stl04{
        font-size: 90%;
        white-space: nowrap;
    }
    
    
    
}
@media screen and (max-width: 350px) {
/*  footer .tel_fax {
    font-size: 170%;
  }*/
}
/* Scroll To Top
---------------------------------------------------------------------------------------------------------------------------------------*/
#scrolltotop {
  z-index: 99999;
  visibility: hidden;
  opacity: 0.2;
  position: fixed;
  bottom: 55px;
right: 50px;
/*  padding: 8px 10px 5px;*/
  line-height: normal;
}

#scrolltotop.visible {
    visibility: visible;
    padding-left: 20px;
    opacity: 1;
    transition: all .8s ease-in-out;
}
#scrolltotop span{
    display: block;
    position: relative;
/*    padding: 40px 40px 5px 5px;
    border-left: solid 1px #17959D;*/
/*    padding-right: 40px;*/
}
#scrolltotop span:before{
    content: "";
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--col_main-color);
    border-radius: 50%;
    left: -6px;
    top: 12px;
    bottom: auto;
    transition: all .5s;
}
/*#top #scrolltotop span:before{
    background: #fff;
}*/
#scrolltotop:hover span:before{    
    top: 115px;
}
#scrolltotop:hover  span:before{
/*    animation: slide_img 2s 0s forwards;*/
}
/*@keyframes slide_img {
  0% {
    transform: translate(0,0);
  }
  100% {
    transform: translate(0,80px);
  }
}*/


#scrolltotop img {
  height: 140px;
  width: auto;
}
#scrolltotop:hover img{
/*  opacity: 1;*/
}
@media screen and (max-width: 1600px) {
    #scrolltotop{
        right: 40px;
    }
}
@media screen and (max-width: 768px) {
    #scrolltotop {
        right: 0;
        bottom: 40px;
    }
}
@media screen and (max-width: 480px) {
    #scrolltotop {
        bottom: 10px;
    }
    #scrolltotop span{
        padding-right: 5px;
    }
    #scrolltotop img {
        height: 90px;
    }
    #scrolltotop:hover span:before{
        animation: none;
    }
    #scrolltotop:hover span:before {
        top: 12px;
    }
}





@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*# sourceMappingURL=style.css.map */
