@charset "UTF-8";
/*ベースとなるスタイル
---------------------------------------------------------*/
html{
    font-size: 62.5%; 
}
*{margin:0;padding:0;box-sizing:border-box;}
img{
    max-width:100%; /*画像が親要素からはみ出すのを防ぐ*/
    height:auto;
    vertical-align: top;
}
body{
    background-color:#fff;
    margin:0;
    padding:0;
    font-size: 1.6rem;
    color: #333;
    line-height: 1.5;
    font-family:  "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;

}
h1{
    margin:0;
    font-weight: bold;
    font-size: 2.5rem;
    text-shadow: 1px 1px 2px #fff;
}
h2{
    margin:2rem 0;
    width:100%;
    background-image: url(/common/images/sec2_title_bg.jpg);
    background-size:cover;
    background-position: right bottom;
    padding:2rem 2.3rem 1.5rem;
    border-bottom:4px double #DCDDDD;
    font-size: 2.3rem;
    line-height: 1.4;
    font-weight: bold;
}
h2 span{
    color:#D45E46;
}
@media screen and (max-width:768px) {

    h2{
        width:100%;
        background-image: url(/common/images/sec2_title_sp_bg.jpg);
        background-size:cover;
        background-position: right bottom;
        padding:1rem 1.5rem;
        border:0;
        border-top:2px solid #DCDDDD;
        border-bottom:2px solid #DCDDDD;
    }
}
h3{
    margin-bottom:1.5rem;
    position: relative;
    padding: 1rem 1.5rem;
    color: #fff;
    border-radius: 5px;
    background: #146434;
    font-weight: bold;
    font-size: 1.7rem;
  }
h3:after {
    position: absolute;
    bottom: -9px;
    left: 1em;
    width: 0;
    height: 0;
    content: '';
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: #146434 transparent transparent transparent;
}
h4{
    margin:1rem 0;
    font-weight: bold;
    font-size: 1.6rem;
}
p{
    padding: 1rem;
    font-size: 1.6rem;
}
a{color:#1b7b98;}
@media screen and (max-width:768px) {
    h3 {
        position: relative;
        padding: 0.8rem 1.5rem;
        color: #fff;
        border-radius: 0;
        font-size: 1.7rem;
        background: #146434;
    }
}

ul{font-size: 1.6rem;}
ol{font-size: 1.6rem;}


/*webサイト大枠のレイアウトスタイル
---------------------------------------------------------*/
/*ヘッダーエリア*/
header{
    margin: 10px 0 0;
}
.l-headertop-Area{
    width:90%;
    background-color:#fff;
    padding:0;
    display:flex; 
    max-width: 1180px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    header{
        position: fixed;
        background-color: #fff;
        width:100%;
        padding-top: 85px;
        margin-top: -180px;
        z-index: 3;
        border-bottom: #c2c2c2 1px solid;
    }
    .l-headertop-Area{
        display:initial;  
    }
 }

 @media screen and (min-width:769px) {
    nav{
        border-bottom:2px solid #C4DC7B;
        border-top:2px solid #C4DC7B;
        font-family: Georgia, serif;
        font-weight: bold;
        font-size:1.4rem;
    }
 }

/*メインエリア*/
#wrapper{
}


main{
    width: 90%;
    margin: 40px 5%;
}
.l-contents{
    max-width: 1180px; 
    margin: 0 auto;
    display:flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media screen and (max-width:768px) {
    main{
        width: 100%;
        margin: 40px 0;
    }
}

/*KVエリア*/
.l-kv-Area{
    width:100%;
    background-image: url(/images/kv.webp);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width:768px) {
    .l-kv-Area{
        background-image: url(/images/kv_sp.webp);
        background-position: right;
        background-repeat: no-repeat;
    }
    
    .l-kv-upper-Area{
        padding: 3% 2% 2%;
        font-size: 1.7rem;
        margin-top: 100px;
        background-color: #9DC23A;
        font-weight: bold;
        color: #fff;
        text-align: center;
    }
}
@media screen and (max-width: 514px) {
    .l-kv-upper-Area {
        padding: 3% 2% 2%;
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 456px) {
    .l-kv-upper-Area {
        padding: 2%;
    }
}

/*下層ページ*/
.lowerPage{
    margin-top:50px;
}
@media screen and (max-width:768px) {
.lowerPage{
    margin-top:100px;
}
}

/*メインエリア　サイドナビ*/
.sideNav{
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: sticky;
    top: 0;
    right: 0;
    max-width: 290px;
    min-width: 200px; 
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.sideNav::-webkit-scrollbar {
    width: 8px; /* スクロールバーの幅 */
}

.sideNav::-webkit-scrollbar-track {
    background: #f0f0f0; /* トラック背景色（お好みで調整可能） */
}

.sideNav::-webkit-scrollbar-thumb {
    background-color: #C4DC7B; /* バーの色 */
    border-radius: 4px;
    border: 2px solid #f0f0f0; /* バーの周囲に隙間を付ける場合 */
}



/*メインエリア　コンテンツ*/
.l-contents-inner{
    max-width: 850px; 
    min-width: 300px;
    width: 100%;
    background: #fff;
    margin-right:40px;
}
.inner{
    width:100%;
    margin-bottom:40px;
}

@media screen and (max-width:768px) {
    .l-contents-inner{
        max-width: 768px; 
        width: 100%;
        background: #fff;
        margin:0;
    }
    .inner{
        padding-top: 90px;
        margin-top:-90px;
    }
    
}


/*フッター エリア1(CTA)*/
.footer-Area1{
    padding:50px 0;
    background-color: #C4DC7B;
    text-align: center;
}

.footer-Area1-inner2{
    max-width: 950px;
    margin: 0 auto;
    display: flex;
}

@media screen and (max-width:768px) {
    .footer-Area1{
        padding:25px 5%;
    }
}

/*フッター エリア2 サイトマップ*/
.footer-Area2{
    text-align: center;
    font-size: .9rem;
}

.footer-Area2-inner {
    color: #808080;
    background: #F7F8F8;
    text-align: center;
    padding: 30px;
   }

   @media only screen and (max-width: 599px) {
    .footer-Area2-inner{
        padding: 0 0 15px;
    }
}

/*フッター エリア3(事業紹介)*/
.footer-Area3{
    padding:50px 0;
    background-color: #ECF4D9;
    text-align: center;
    
}

.footer-Area3-inner{
    max-width: 1180px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .footer-Area3{
        padding:30px 5%;
    }
}

/*問い合わせフォーム*/
.footer-Area1-inner3{
    max-width: 850px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background-color: #ECF4D9;
    border-radius: 10px;
    width: 90%;
}

@media screen and (max-width:768px) {
    .footer-Area1-inner3{
        width: 100%;
    }
}


/*webサイト大枠のレイアウトスタイル テンプレート共通部分
---------------------------------------------------------*/
/*ヘッダーエリア*/
.header-logo{
    width:30%;
    padding:10px;
}
.header-right{
    width:70%;
    text-align: right;
}
.header-tel{
    max-width: 400px;
    margin-bottom: 7px;
}

/*パンくずリスト*/
.breadcrumb {
    color: #212529;
    margin-bottom: 2rem;
}
.breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.5rem;
    line-height: 1em;
    list-style: none;
    padding-left: 0;
}
.breadcrumb ul li {
    position: relative;
    margin-right: 3rem;
}
.breadcrumb ul li:after {
    content: "";
    position: absolute;
    top: 0;
    right: -1.5rem;
    bottom: .3rem;
    width: 5px;
    height: 5px;
    margin: auto;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    color: #212529;
}
.breadcrumb ul li:last-of-type:after {
	content: none;
}

/*下層ページタイトル (h1)*/
.l-pageTitle-area{
    margin-bottom:50px;
    padding:25px;
    width: 100%;
    background-image: url(/common/images/page_title_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-top:solid 1px #5DBCE3;
    border-bottom:solid 1px #5DBCE3;
}
@media screen and (max-width:768px) {
    .l-pageTitle-area{
        margin-bottom:30px;
    }
}

/*言語切り替え*/
.header-right-up{
    display: flex;
    
}
.header-right-up .col-l{
    width: 100%;
    margin-top:5px;
}
.header-right-up .col-r{
    width: 160px;
    padding: 20px 0 10px;
    color: #b6b6b6;
    font-size: 1.4rem;
}

/*検索*/
.search {
    position: relative;
	max-width: 100%;
    margin-bottom: .5rem;
	padding: .5rem 1.5rem .5rem 5rem;
    z-index: 0;
}
.search input {
	width: calc(100% - 40px);
	padding: .5rem 1.5rem;
	background: rgb(239,240,245);
	border: none;
	border-radius: 15px;
}
.search button, .searchArea button {
    width: 40px;
    height: 28px;
    background: none;
    border: none;
    vertical-align: middle;
    background-image: url(/common/images/icon_search.png);
    background-repeat: no-repeat;
}

.search button i.icon:before,.search button i.customs01:after {
    top: 0;
    bottom: 0;
    left: .5rem;
    width: 15px;
    height: 15px;
    margin: auto;
}
.headerBox ul.registration {
	min-width: 200px;
}
 @media screen and (max-width:1024px) {
.search {
	width: 100%;
	padding: 0.5rem 1.5rem 0.5rem 3rem;
}
}
 @media screen and (max-width:920px) {
.search {
	width: 100%;
	max-width: 95%;
	padding: 0.5rem 1.5rem 0.5rem 3rem;
}



}
 @media screen and (max-width:520px) {
.search {
	max-width: 100%;
	padding: .5rem 0 0;
}
 }

@media screen and (max-width:768px) {
 .search {
    width: 100%;
    }
    }
    
    i.icon {
        display: block;
        position: relative;
        padding-left: 4rem;
        font-style: normal;
    }

 /*検索ここまで*/
   

@media screen and (min-width:769px) {
nav ul{
    display: table;
    margin: 0 auto;
    padding: 0 ;
    width: 90%;
    max-width: 1180px;
    text-align: center;
    border-right:1px solid #C4DC7B;
    }
    nav li{
    display: table-cell;
    min-width: 50px;
    border-left:1px solid #C4DC7B;
    width: calc(100% / 6);
    vertical-align: middle;
    }
    nav a{
    display: block;
    width: 96%;
    text-decoration: none;
    color: #555;
    padding-top: 15px;
    padding-bottom: 15px;
     padding-left: 2%;
     padding-right: 2%;
     margin: auto;
    }
    nav li.current{
    border-bottom: 3px solid #92D050;
    }
    nav li:hover{
    background: #F6FAED;
    }
}

    @media screen and (max-width:768px) {
        .header-logo{
            width:auto;
            padding: 0;
            text-align: center;
            margin-top: 5px;
        }
        .header-logo img{
            width: 220px;
            padding-right: 15px;
            margin-top: -10px;
        }
        .spNav{
            height: 0;
        }

        #menu__toggle {
            opacity: 0;
          }
          #menu__toggle:checked + .menu__btn > span {
            transform: rotate(45deg);
          }
          #menu__toggle:checked + .menu__btn > span::before {
            top: 0;
            transform: rotate(0deg);
          }
          #menu__toggle:checked + .menu__btn > span::after {
            top: 0;
            transform: rotate(90deg);
          }
          #menu__toggle:checked ~ .menu__box {
            left: 0 !important;
          }
          .menu__btn {
            padding-top: 5px;
            position: fixed;
            top: 20px;
            left: 20px;
            width: 26px;
            height: 26px;
            cursor: pointer;
            z-index: 4;
          }
          .menu__btn > span,
          .menu__btn > span::before,
          .menu__btn > span::after {
            display: block;
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #146434;
            transition-duration: .25s;
          }
          .menu__btn > span::before {
            content: '';
            top: -8px;
          }
          .menu__btn > span::after {
            content: '';
            top: 8px;
          }
          .menu__box {
            display: block;
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100%;
            margin: 0;
            padding: 50px 0;
            list-style: none;
            background-color: #E1EBC3;
            box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
            transition-duration: .25s;
            z-index: 3;
              overflow-y: auto;
                overflow-x: hidden;
            }

            .menu__box::-webkit-scrollbar {
                width: 8px; /* スクロールバーの幅 */
            }

            .menu__box::-webkit-scrollbar-track {
                background: #f0f0f0; /* トラック背景色（お好みで調整可能） */
            }

            .menu__box::-webkit-scrollbar-thumb {
                background-color: #C4DC7B; /* バーの色 */
                border-radius: 4px;
                border: 2px solid #f0f0f0; /* バーの周囲に隙間を付ける場合 */
            }


          .menu__item {
            display: block;
            padding: 12px 24px;
            color: #146434;
            font-family:  "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            text-decoration: none;
            transition-duration: .25s;
            border-bottom: 1px solid #146434;
          }
          .menu__item:hover {
            background-color: #EDF2DD;
          }
          .header-search{
           width: 100%;
           text-align: center;
           padding: 0 10px 8px 20px;
          }
          .menu__box .bnr{
            padding:0 20px 0 ;
          }
          .menu__box .lang {
            text-align: center;
            padding: 2%;
            margin: 10px;
            position: absolute;
            top: 0;
            right: 0;
            font-size: .9em;
        }
    
    }

    /*メインエリア　サイドナビ*/
.sideNav ul{
    list-style: none;
    padding-left:0;
    display: block;
    margin-top: 0;
    margin-bottom: 0;
}

ul.inquiry{
    background-color: #f7fbeb;
margin-bottom: 0;
}
ul.inform{
    padding: 10px 15px 15px;
    font-size: 1.3rem;
}

li.mail{
    background-image: url(/common/images/icon_mail.png);
    background-repeat: no-repeat;
    padding-left:25px;
    padding-bottom: 5px;
    padding-top: 5px;
}
li.tel{
    background-image: url(/common/images/icon_tel.png);
    background-repeat: no-repeat;
    padding-left:25px;
    padding-bottom: 5px;
    padding-top: 5px;
}
li.fax{
    background-image: url(/common/images/icon_fax.png);
    background-repeat: no-repeat;
    padding-left:25px;
    padding-bottom: 5px;
    padding-top: 5px;
}
li.fax2{
    padding-left:5px;
    font-size: 1.1rem;
    
}


/*フッター エリア1(CTA)*/
.cta-msg{
    text-align: center;
}
.footer-Area1 .col-l{
margin-bottom: 20px;
width:67%;
border-right:1px solid #fff;
padding: 0 2%;
}
.footer-Area1 .col-r{
    width:auto;  
    padding:1.5% 1.5% 0 2%;
}
.footer-Area1 .col-r a{
    color:#212529;
}

@media screen and (max-width:768px) {
.footer-nav{
display: flex;
position: fixed;
bottom: 0;
z-index: 1;
}
.btnTel{
    background-color: #146434;
    width: 50%;
}
.btnForm{
    background-color: #D45E46;
    width: 50%;
}
}


@media screen and (max-width:768px) {
.footer-Area1 .col-l{
    border-right:0;
    float:none;
    width:100%;
    }
    .footer-Area1 .col-r{
        width:auto;  
        padding:15px 0;
    }
}

/*フッター エリア2*/
   .footer-Area2-inner a {
    color: #808080;
    text-decoration: none;
   }
   .footer-Area2-inner a:hover {
    text-decoration: underline;
   }
   .footer-Area2-inner .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.5rem;
   }
   .footer-Area2-inner .menu li {
    margin: 0;
    padding: 0 20px;
    border-right: 1px #808080 solid;
   }
   .footer-Area2-inner .menu li:last-child {
    border: none;
   }
   .footer-Area2-inner .copyright {
    margin: 0;
    padding: 20px 0 0 0;
   }
   
   @media only screen and (max-width: 599px) {

   .footer-Area2-inner .menu {
    justify-content: flex-start;
    border-bottom: 1px #ddd solid;
    border-top: 1px #ddd solid;
   }
   .footer-Area2-inner .menu li {
    width: 50%;
    box-sizing: border-box;
    border: none;
    border-bottom: 1px #ddd solid;
    padding:10px 0;
   }
   .footer-Area2-inner .menu li:nth-child(odd) {
    border-right: 1px #ddd solid;
   }
   .footer-logo{
    padding:10px;
    text-align: center;
   }
   .footer-logo img{
    width:60%;
   }
   .footer-Area2{
    margin-bottom: 50px;
}

   }

/*フッター エリア3(事業紹介)*/
.footer-Area3-title{
    font-weight: bold;
    font-size: 2.2rem;
    font-family: Georgia, serif;
    margin-bottom: 30px;
}

.footer-Area3-btn{
    display: flex;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 5%;
    }

.footer-Area3-btn .btn{
    width:24%;
    margin:0.5%;
    padding:40px 20px;
    position: static;
}
.border_btn01 {
    display: inline-block;
    width: 100%;
    max-width: 350px; /* ボタン幅 */
    color: #a4bd5b; /* 文字色 */
    border: 2px solid #fff; /* 線幅・種類・色 */
    background-image: url(/common/images/bg_btn1.jpg);
    padding: 1em 2em;
    font-weight: bold; /* 文字の太さ */
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
  }
  
  /* マウスオーバーした際のデザイン */
  .border_btn01:hover {
    color: #fff; /* 文字色 */
    background: #A4BD5B; /* 背景色 */
  }

  .border_btn02 {
    display: inline-block;
    width: 100%;
    max-width: 350px; /* ボタン幅 */
    color: #A4BD5B; /* 文字色 */
    border: 2px solid #fff; /* 線幅・種類・色 */
    background: #fff; /* 背景色 */
    background-image: url(/common/images/bg_btn2.jpg);
    padding: 1em 2em;
    font-weight: bold; /* 文字の太さ */
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    background-size: cover;
  }
  
  /* マウスオーバーした際のデザイン */
  .border_btn02:hover {
    color: #fff; /* 文字色 */
    background: #A4BD5B; /* 背景色 */
  }

  .border_btn03 {
    display: inline-block;
    width: 100%;
    max-width: 350px; /* ボタン幅 */
    color: #A4BD5B; /* 文字色 */
    border: 2px solid #fff; /* 線幅・種類・色 */
    background: #fff; /* 背景色 */
    background-image: url(/common/images/bg_btn3.jpg);
    padding: 1em 2em;
    font-weight: bold; /* 文字の太さ */
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    background-size: cover;
  }
  
  /* マウスオーバーした際のデザイン */
  .border_btn03:hover {
    color: #fff; /* 文字色 */
    background: #A4BD5B; /* 背景色 */
  }

  .border_btn04 {
    display: inline-block;
    width: 100%;
    max-width: 350px; /* ボタン幅 */
    color: #A4BD5B; /* 文字色 */
    border: 2px solid #fff; /* 線幅・種類・色 */
    background: #fff; /* 背景色 */
    background-image: url(/common/images/bg_btn4.jpg);
    padding: 1em 2em;
    font-weight: bold; /* 文字の太さ */
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    background-size: cover;
  }
  
  /* マウスオーバーした際のデザイン */
  .border_btn04:hover {
    color: #fff; /* 文字色 */
    background: #A4BD5B; /* 背景色 */
  }

  @media screen and (max-width:768px) {
    .footer-Area3-btn{
        display: block;
    }
    .footer-Area3-btn .btn{
        width:100%;
        margin-bottom:5%;
        padding:40px 20px;
    }
    .footer-Area1-inner3 {
    }
}

/*問い合わせフォーム*/
.contactBox {
	margin-bottom: 4rem;
    margin-top:3rem;
}
.contactBox dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px dotted #fff;
}

.innerContact .contactBox {
    background-color: #fafafa;
    margin-top: 30px;
    padding: 2rem 2rem 4rem;
}

.contactText{
    font-size: 1.5rem;
    text-align: left;
    padding: 5px 10px;
    border-bottom:1px solid #C4DC7B;
}
.contactText p{
    padding: 10px 0;
}

.contactText strong{
    background: linear-gradient(transparent 50%, #f1efa2 50%);
}

.contactText span{
    font-weight:bold;
}

.contactBox dl:last-of-type {
	margin-bottom: 2.5rem;
	border-bottom: none;
}
.contactBox dl dt,
.contactBox dl dd {
	padding: 1.5rem 1rem;
	background: none;
}
.contactBox dl dt {
	position: relative;
	width: 250px;
    font-size: 1.5rem;
    text-align: left;
}
.contactBox dl dd {
	position: relative;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
}
.contactBox small {
	font-size: .9rem;
}
.require:before {
	content: "必須";
	margin-right: 1rem;
	padding: .4rem 1rem .5rem;
	color: rgb(255,255,255);
	font-size: 1.2rem;
	background: rgb(209,96,96);
    border-radius: 5px;

}
.any:before {
	content: "任意";
	margin-right: 1rem;
	padding: .4rem 1rem .6rem;
	color: rgb(255,255,255);
	font-size: 1.2rem;
	background: rgb(80,120,200);
    border-radius: 5px;
}

input[type="submit"] {
	position: relative;
	min-width: 400px;
	padding: 2rem 6.5rem 2rem 5rem;
    color: rgb(255,255,255);
	font-size: 2.4rem;
	font-weight: 900;
    background: rgb(181,211,76);
	border: 3px solid rgb(255,255,255);
    border-radius: 15px;
	cursor: pointer;
}
input[type="submit"][disabled] {
	text-shadow: none;
  background-color: rgb(200,200,200);
  cursor: not-allowed;
}

.caution {
	position: absolute;
	bottom: -.5rem;
	left: 2rem;
	color: rgb(209,96,96);
	font-size: 1.4rem;
}

.contactBox input,select,textarea {
	min-width: 235px;
	padding: .8rem 1rem;
	font-size: 1.4rem;
	border: 1px solid rgb(200,200,200);
	border-radius: 5px;
}
span.select {
	position: relative;
}

textarea {
	width: min(100%,500px);
	height: 200px;
}
input[type="submit"] {
	position: relative;
	min-width: 300px;
	padding: 2rem 6.5rem 2rem 5rem;
    color: rgb(255,255,255);
	font-size: 1.7rem;
	font-weight: 900;
    background: rgb(181,211,76);
	border: 3px solid rgb(255,255,255);
    border-radius: 0.5rem;
	line-height: 1.2em;
}
 @media screen and (max-width:520px) {
    .contactBox {
        margin-bottom: 2rem;
    }
.contactBox dl {
	display: block;
}
	
.contactBox dl {
	display: block;
}
.contactBox dl dt {
	width: 100%;
	padding: .5rem 1rem;
    font-size: 1.6rem;
}

input,select,textarea {
	width: 100%;
}
input[type="submit"] {
	width: 90%;
    min-width: auto;
    margin: auto;
    padding: 1.5rem 1.5rem 1.5rem 1rem;
    font-size: 1.6rem;
} 
ul.imgBox > li {
    width: calc(100% / 2 - (1rem / 2));
    margin: 0 1rem 1rem 0;
}

ul.imgBox > li:nth-of-type(3n) {
	margin-right: 1rem;
}
ul.imgBox > li:nth-of-type(2n) {
	margin-right: 0;
}
.require:before {
    padding: .2rem .4rem .3rem;
}
.contactBox dl dd {
	padding: .7rem .5rem 1em;
	background: none;
}
.contactBox dl dt {
	padding: 1.2rem .5rem 0.2rem;
	background: none;
}
 }

/*各レイアウト内のパーツのスタイル
---------------------------------------------------------*/
/*テキスト強調*/
.ln_y{
    background: linear-gradient(transparent 50%, #f1efa2 50%);
}
.cl_gr{
color:#8fbd14;
}
.cl_rd{
color:#D45E46;
}
.tx_bold{
  font-weight: bold;
}

/*背景強調*/
.clbg_rd{
  background: rgb(255, 244, 244);
}

/*ボタン小 オレンジ*/
.btn,
a.btn,
button.btn {
font-weight: bold;
font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn-orange,
a.btn-orange {
  color: #fff;
  background-color: #eb6100;
}
.btn-orange:hover,
a.btn-orange:hover {
  color: #fff;
  background: #f56500;
}

/*ボタン大 黄緑*/
.btnBig,
a.btnBig,
button.btnBig {
font-weight: bold;
font-size: 1.6rem;
  line-height: 1.7;
  position: relative;
  display: inline-block;
  padding: 2rem 2.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
  min-width: 300px;
  text-shadow: 1px 2px 3px #799b39;
}

.btn-green,
a.btn-greens {
  color: #fff;
  background-color: #C4DC7B;
}
.btn-green:hover,
a.btn-green:hover {
  color: #fff;
  background: #a9cf38;
}

/*リスト(強調)*/
ul.list01{
    list-style: none;
    font-weight: bold;
    padding:20px;
    margin: 0;
}

ul.list01 li:before {
content: '〇 ';
color: #C4DC7B;
}

/*ボックス1(1カラム/強調強め)*/
.box01{
    border:4px solid #C4DC7B;
    padding:3rem 2.5rem 2rem;
    }
    .box01 p{
    font-size: 1.6rem;
    }
    .box01 h2{
    font-size:2rem;
    text-align: center;
    border: 0;
    border-bottom: 1px solid #C4DC7B;
    padding-bottom:10px;
    font-family: Georgia, serif;
    margin-top: 0;
    background: none;
    }
    .box01 span{
        font-weight:bold;
        background: linear-gradient(transparent 50%, #f1efa2 50%);
    }
    

    @media screen and (max-width:768px) {
        .box01{
            border:4px solid #C4DC7B;
            padding:1.5rem;
            width:90%;
            margin:0 5%;
         }
        .box01 p{
            font-size: 1.6rem;
          }
        .box01 h2{
            font-size:1.8rem;
         }
    }

    
/*2カラム ボックス タイトルあり*/
    .col2box-col{
        display: flex;
    }
    .col2box-col-l{
    border: 1px solid #ECF4D9;
    width:48.5%;
    margin-right:3%;
    }
    .col2box-col-r{
        border: 1px solid #ECF4D9;
        width:48.5%;   
    }
    .w5-10{
        background:linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%,rgba(255, 255, 255, 1) 100%);
        padding: 10px 20px 10px;
    height: 100%;
    font-weight: 400;
    }

    @media screen and (max-width:768px) {
        .col2box-col{
            display: block;
        }
        .col2box-col-l{
            width:90%;
            margin:5%;       
        }
        .col2box-col-r{
            width:90%;
            margin:5%;  
         }
         .w5-10{
            padding: 5px 20px;
         }
            
    }
    

/*ボックス3(1カラム/強調軽め)*/
.box03{
    border:#F2F2F2 5px solid;
    background:#fff;
    padding:1%;
    margin: 1% 3%;
}

/*ボックス3(1カラム/強調軽め/padding0)*/
.box03-0{
  border:#F2F2F2 5px solid;
  background:#fff;
  padding:0;
  margin: 1% 3%;
}

/*ボックス4(1カラム/背景黄緑)*/
.box04{
    background:#f9fbf2;
    padding:3%;
    margin: 1% 3%;
}


/*テーブル1(項目なし、3カラム)*/
.table01 {
    border-collapse: collapse;
    width: 100%;
    max-width: 850px;
    text-align: center;
    font-size: 1.7rem;
  }
  .table01 tr {
    background-color: #F2F2F2;
  }
  .table01 tr:nth-child(odd) {
    background-color: #fff;
  }
  .table01 th, .table01 td {
    padding: 1em;
    border:#fff solid 1px;
  }
  .table01 tr:nth-child(odd) td {
    border:#F2F2F2  solid 1px;
  }
  .table01 th {
    font-weight: bold;
    text-align: center;
    width: calc(100% / 3);
    min-width: 4em;
  }

  @media screen and (max-width:768px) {
    .table01 {
        font-size: 1.5rem;
    }
}

/*テーブル2((項目あり、2カラム))*/
.table02 {
    border-collapse: collapse;
    width: 100%;
    max-width: 850px;
    font-size: 1.6rem;
  }
  .table02 tr {
    background-color: #FFF;
  }
  .table02 tr:nth-child(odd) {
    background-color: #F7F7F7;
  }
  .table02 th, .table02 td {
    padding: 1em;
  }

  .table02 th {
    font-weight: bold;
    text-align: center;
    width: calc(100% / 4);
    min-width: 4em;
    text-align: center;
  }

  .table02 ul{
  list-style: none;
  padding-left:0;
  font-size: 1.4rem;
  }

  .table02 li:first-child span {
    background-color:#D45E46;
    border-radius: 3px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 2;
    padding:0 5px;
}
@media screen and (max-width:768px) {
    .table02 {
    border:1px solid #DCDDDD;
    font-size: 1.5rem;
    margin: 0 5%;
     width: 90%;
    }
}

/*Q&A用アコーディオン*/
.accordion {
    max-width: 850px;
    margin-bottom: 10px;
    background-color: #f7f7f7;
    border-radius: 5px;
}
.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1.2em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #c2c2c2;
    border-right: 3px solid #c2c2c2;
    content: '';
    transition: transform .3s;
}
.accordion[open] summary::after {
    transform: rotate(225deg);
}
.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 5em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}
.accordion[open] p {
    transform: none;
    opacity: 1;
}
.accordion p{
    text-indent: -3em;
}
.accordion summary span:before{
    content: "Q";
    font-weight: bold;
    background-color:#146434;
    color:#fff;
    padding:2px 8px;
    border-radius: 20px;
    margin: 0 10px 0 0;
}
.accordion p:before{
    content: "A";
    font-weight: bold;
    background-color:#D45E46;
    color:#fff;
    padding:2px 8px;
    border-radius: 20px;
    margin: 10px;
}

@media screen and (max-width:768px) {
    .accordion summary {
        padding: 1em;
    }
    .accordion p{
        padding: .3em 2em 1.5em 3.5em;
    }
}

/*下向き矢印(小)*/
.dli-chevron-down {
    display: inline-block;
    vertical-align: middle;
    color: #146434;
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
  }

  /*外部リンク用ボックス*/
  .linkBox01{
    padding: 2rem;
    font-size: 1.5rem;
    background-color: #FAFAFA;
    line-height: 1.7;
  }
  .linkBox01 a{
  padding-right: 18px;    /* 左側に余白を確保する。 */
  background: url("/common/images/icon_link.png") no-repeat right top;
  background-size: 1.7rem; 
}
@media screen and (max-width:768px) {
  .linkBox01 {
    padding: 5%;
  }
  }

/*下層ページ用h4*/
.lowerPage h4{
    position: relative;/*相対位置*/
    line-height: 1.4;/*行高*/
    display: inline-block;
    border-bottom: 1px solid #C4DC7B;
    padding-bottom:5px;
  }
  
.lowerPage h4:before{ 
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    display: inline-block;
    font-size: 1.7rem;
    color: #C4DC7B;
  }
.lowerPage h4:before {
    content:"■";
    padding-right: 0.5rem
  }

/*参考記事用h2*/
.l-reference h2{
    background: none;
    padding: 0;
    border: 0;
    padding-left: 2rem;
    border-left: 6px double #C4DC7B;
  
}

/*関連記事用h3*/
.l-relation h2{
  background: none;
  padding: 0;
  border: 0;
  padding-left: 2rem;
  border-left: 6px double #C4DC7B;
}

@media screen and (max-width: 768px) {
  .l-relation h2 {
      margin-left: 2%;
      width: 98%;
  }
}

.linkBox02{
  padding: 3%;
  background-color: #FAFAFA;
}
.linkBox02 div{
  background-color: #FFF;
  border:#e7e7e7 1px solid;
  padding: 0.5rem;
}

.l-relation h3{
  background: none;
  color: inherit;
  font-weight: normal;
  font-size: 1.6rem;
  margin-bottom: 0;
}
.l-relation h3:after{
  border: none;
}
.l-relation a{
  text-decoration: none;
}
.linkBox02{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
.linkBox02 img{
width: 100%;
height: 130px;
object-fit: cover;
}
@media screen and (max-width:768px) {
  .linkBox02{
    grid-template-columns: repeat(2, 1fr);
  }
  .l-reference h2 {
    margin-left: 2%;
    width: 98%;
  }
}
.linkBox02 div a:hover{
  color:#448cc1;;
}
.linkBox02 div a:hover img{
opacity: 0.7;
}

/*アンカーリンク用ボタン*/
.linkBox03{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}
@media screen and (max-width:768px) {
  .linkBox03{
    grid-template-columns: repeat(2, 1fr);
    margin: 0 3%;
  }
}
.linkBox03 div {
  position: relative;
  text-align: center;
  border: 1px solid rgb(235, 235, 235);
  border-bottom: 4px solid #146434;
}

.linkBox03 a {
  text-decoration: none;
  display: block;
  padding: 2rem .5rem;
  color:#146434;
  background: rgb(255, 255, 255);
}
.linkBox03 a:hover {
  text-decoration: none;
  display: block;
  padding: 2rem .5rem;
  color:#448b60;
  background:#f2fdf6;
}

/*2カラム 幅1:2*/
.col2box-2-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 2fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-2-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*2カラム 幅2:1*/
.col2box-1-2 {
  display: grid;
  grid-template-columns: repeat(1, 2fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-1-2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*2カラム 幅1:1*/
.col2box-1-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-1-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*2カラム 幅1:3*/
.col2box-1-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 3fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-1-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*2カラム 幅3:1*/
.col2box-3-1 {
  display: grid;
  grid-template-columns: repeat(1, 3fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col2box-3-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*3カラム 幅1:1:1*/
.col3box-1-1-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr 1fr 1fr);
  gap: 20px;
}

@media screen and (max-width:768px) {
  .col3box-1-1-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

/*切り替えタブ*/
.tab01 {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  width: 90%;
  margin: 0 5%;
}

.tab01 > label {
  flex: 1 1;
  order: -1;
  position: relative;
  min-width: 70px;
  padding: .7em 1em;
  background-color: #f2f2f2;
  color: #999;
  font-size: .9em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

.tab01 > label:hover,
.tab01 label:has(:checked) {
  background-color: #C4DC7B;
  color: #fff;
}

.tab01 label:has(:checked)::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background-color: #C4DC7B;
  content: '';
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tab01 input {
  display: none;
}

.tab01 > div {
  display: none;
  width: 100%;
}

.tab01 label:has(:checked) + div {
  display: block;
}

/*目次*/
.indexBox {
  border: 1px solid #dfdfdf;
  padding: 2.5rem;
  margin-top: 2rem;
  line-height: 2;
}
.indexBox h2 {
  background: none;
  border-bottom: 1px dashed #dfdfdf;
  margin-top: 0;
  padding: 0 0 1rem;
}
@media screen and (max-width: 768px) {
  .indexBox h2 {
      border-top: 0;
  }
  .indexBox {
  margin: 1rem;
  }
}

/*参照リンク*/
main ul.reff{
  list-style: none !important;
  padding-left: 2%;
  padding-right: 2%;
  font-size: 1.5rem;
}

main .reff li:first-child span {
  background-color: #D45E46;
  border-radius: 3px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
  padding: 0 5px;
}

@media screen and (max-width: 768px) {
  main ul.reff{
    list-style: none !important;
    padding-left: 5%;
    padding-right: 5%;
    font-size: 1.4rem;
  }
}


/*サイドナビポップアップ*/
 .bnrPup .banner {
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 1px auto 0;
  }
  .bnrPup .modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
 .bnrPup .modal-content {
    background: #fff;
    padding: 20px;
    max-width: 90%;
    width: 400px;
    border-radius: 8px;
    position: relative;
    text-align: center;
  }
 .bnrPup .modal-content p {
    margin-bottom: 20px;
    font-size: 16px;
  }
 .bnrPup .modal-buttons button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
 .bnrPup .btn-yes {
    background-color: #00bfff;
    color: white;
  }
 .bnrPup .btn-no {
    background-color: #ccc;
    color: #333;
  }
  .bnrPup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }