@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New&display=swap');

/*--------------------------------------
リセット
--------------------------------------*/
/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}



/*--------------------------------------
共通
--------------------------------------*/
.mt0  { margin-top: 0px!important; }
.mt10 { margin-top: 10px!important; }
.mt20 { margin-top: 20px!important; }
.mt30 { margin-top: 30px!important; }
.mt40 { margin-top: 40px!important; }
.mt50 { margin-top: 50px!important; }
.mb0  { margin-bottom: 0px!important; }
.mb10 { margin-bottom: 10px!important; }
.mb20 { margin-bottom: 20px!important; }
.mb30 { margin-bottom: 30px!important; }
.mb40 { margin-bottom: 40px!important; }
.mb50 { margin-bottom: 50px!important; }
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
html {
    overflow: auto;
    font-size: 62.5%;
}
body {
    color: #333333;
    font-size: 1.6rem;
    line-height: 1.6;
    -webkit-text-size-adjust: none;
    position: relative;
    font-family: 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 400;
}
.inner{
    width: 90%;
    margin: 0 auto;
}
.sec{
    position: relative;
    overflow: hidden;
}
.sec a{
    word-break:break-all;
}
a {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color: #333333;
}
a:hover {
    text-decoration: none;
    opacity: 0.6;
}
.font{
    font-family: "Montserrat", sans-serif;
}
.zen{
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.flex{
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20%);
  transition:1s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.pc{
    display: none;
}
.sp{
    display: block;
}
@media (min-width: 768px) {
    .pc{
        display: block;
    }
    .sp{
        display: none;
    }
    .inner{
        width: 1000px;
    }
    /*.sec{
        overflow: visible;
    }*/
}/*/pc-end*/

/*---------------------------------------
ボタン類
---------------------------------------*/
.conv_btn a{
    background: #F3962E;
    border-radius: 90px;
    color: #fff;
    position: relative;
    text-align: center;
    padding: 10px 0 20px 0px;
    width: 100%;
    margin: 0 auto;
    display: block;
}
.conv_btn span{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}
.conv_btn p{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin-top: 4px;
}
.conv_btn a{
    background: #F3962E;
    border-radius: 90px;
    color: #fff;
    position: relative;
    display: block;
    text-align: center;
    padding: 10px 0 20px 0px;
}
.conv_btn span{
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
}
.conv_btn p{
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin-top: 4px;
}
.conv_btn a:after{
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(0%, -50%);
    background-image: url(../img/arrow_wt.svg);
    width: 11px;
    height: 16px;
    content: "";
}
.more{
    border-radius: 90px;
    display: block;
    width: 87%;
    margin: 0 auto;
    position: relative;
    border: 3px solid #1E8E43;
    text-align: center;
    font-size: 1.6rem;
    padding: 12px 0;
    font-weight: 500;
    margin-top: 20px;
}
.more:after{
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(0%, -50%);
    background-image: url("../img/arrow_green.svg");
    width: 11px;
    height: 17px;
    content: "";
}
.icon_link{
    text-align: center;
    border-bottom: 1px solid #000;
    padding-bottom:10px;
    line-height: 1.5;   
    margin-top: 30px;
    position: relative;
}
.icon_link a{
    margin-bottom: 0!important;
}
.icon_link a:after{
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(0%, -50%);
    background-image: url(../img/arrow_bk.svg);
    width: 8px;
    height: 14px;
    content: "";
}
.icon_link p{
    width: 100%;
    margin-left: -57px;
}
@media (min-width: 768px) {
    .conv_btn a{
        width: 500px;
        padding: 25px 0 30px;
    }
    .conv_btn span{
        font-size: 1.6rem;
    }
    .conv_btn p{
        font-size: 2.5rem;
    }
    .icon_link{
        width: 500px;
        margin: 0 auto;
        margin-top: 30px;
    }
    .icon_link a{
        display: flex!important;
    }
    .icon_link a img{
        margin: 0!important;
    }
    .icon_link p{
        text-align: center;
        display: flex;
        justify-content: center;
        width: 82%;
        font-size: 1.8rem;
        margin: 0;
    }
}/*/pc-end*/


/*--------------------------------------
よくある質問
--------------------------------------*/
.accordion_wrapper{
    margin-top:30px;
}
.accordion{
    width: 100%;
    margin: 0 auto;
}
.accordion_header,
.accordion_content{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    width: 100%;
    font-weight: 400;
}
.accordion_header .flex,
.accordion_content .flex{
    align-items: center;
    justify-content: flex-start;
}
.accordion_content .flex{
    align-items:flex-start;
}
.accordion_header {
    cursor: pointer;
    color: #4A4A4A;
    position: relative;
    border-bottom: 1px solid #969696;
    padding-right: 50px;
    font-size: 1.4rem;
}
.accordion_header .color{
    font-family: "Montserrat", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: #B7DAC2;
    margin-right: 14px;
}
.accordion_content {
    display: none;
    color: #4A4A4A;
    font-size: 1.4rem;
}
.accordion_content .color{
    font-family: "Montserrat", sans-serif;
    font-size: 3.6rem;
    font-weight: 700;
    color: #E7F2A8;
    margin-right: 14px;
    position: relative;
    top: -10px;
}
.accordion_header::before{
    position: absolute;
    content: "";
    top: 32%;
    right: 0;
    background-image: url(../img/../img/plus.svg);
    transition: all .3s ease-in-out;
    width: 30px;
    height: 30px;
}
.accordion_header.open::before {
    background-image:url("../img/../img/minus.svg");
}
.accordion_header.open::after {
    opacity:0;
}
@media (min-width: 768px) {
    .accordion_header,.accordion_content .flex{
        justify-content: flex-start !important;
        align-items: center;
    }
    .accordion_header,.accordion_content{
        font-size: 1.8rem;
    }
}/*/pc-end*/


/*--------------------------------------
fotter_pagelink
--------------------------------------*/
.fotter_pagelink{
    background: #58AE74;
    flex-wrap: wrap;
}
.fotter_pagelink a{
    width: 50%;
    border-bottom: 2px solid #fff;
    padding: 20px 10px;
    line-height: 1;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    position: relative;
}
.fotter_pagelink a:after{
    position: absolute;
    bottom: 0px;
    right: 5px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(0%, -50%);
    background-image: url(../img/arrow_sankaku_wt.svg);
    width: 14px;
    height: 14px;
    content: "";
}
.fotter_pagelink a:nth-child(odd){
    border-right: 2px solid #fff;
}
.fotter_pagelink a.icon{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}
.fotter_pagelink a.bottomnone{
    border-bottom: none;
}
.fotter_pagelink a.icon span{
    display: flex;
    justify-content: center;
    flex: 1;
    margin-left: -24px;   
}
@media (min-width: 768px) {
    .fotter_pagelink a{
        width: 24.5%;
        background: #58AE74;
        border: none !important;
        margin-bottom: 7px;
        font-size: 1.6rem;
        font-weight: 400;
        padding: 25px 10px;
    }
    .fotter_pagelink{
        background: none;
        width: 90%;
        margin: 0 auto 80px;
        max-width: 1000px;
    }
}/*/pc-end*/


/*--------------------------------------
ヘッダーのメニュー
--------------------------------------*/
body{
    padding-top: 100px;
    }
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-top: 6px solid #1e8e43;
    background: #fff;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
    z-index: 101;
}
header .inner{
    display: flex;
    align-items: center;
    width: 1120px;
    margin: 0 auto;
}
header .right{
    width: 100px;
    height: 94px;
    background: #E9EFD9;
}
header .logo{
    width: 160px;
    z-index: 1;
}
header .hamburger {
    width: 50px;
    height: 28px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    z-index: 1000;
    top: 32px;
    left: 25px;
}
header .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: #248e3a;
    border-radius: 2px;
    transition: 0.4s;
}
header .hamburger span:nth-child(1) { top: 0; }
header .hamburger span:nth-child(2) { top: 12px; }
header .hamburger span:nth-child(3) { top: 24px; }
header .hamburger.active span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
    opacity: 0;
}
header .hamburger.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}
header .nav {
    position: absolute;
    top: 0;
    right: -100%;
    width: 1305px;
    height: auto;
    background: #fafafa;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    transition: right .4s;
    padding-top: 80px;
    display: none;
}
header .nav.active {
    right: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    padding: 80px 91px 40px;
    display: block;
}
header .nav .cl3 {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: dotted 2px #D9D9D9;
    padding-bottom: 30px;
    margin-top: 10px;
}
header .nav .department_box {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: dotted 2px #D9D9D9;
    padding-bottom: 30px;
    padding-top: 30px;
}
header .nav .site{
    margin-top: 30px;
}
header .nav .department_box a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid #58ae74;
}
header .nav .department_box a img{
    margin-right: 10px;
}
header .nav div a {
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #B5B5B5;
    width: 49%;
    margin-top: 10px;
    padding: 20px;
    display: block;
    box-sizing: border-box;
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
}
header .nav div a:after{
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(0%, -50%);
    background-image: url("../img/arrow_green.svg");
    width: 11px;
    height: 17px;
    content: "";    
}
header .nav a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
}
@media (max-width: 767px) {
    body{
        padding-top: 66px;
    }
    header{
        position: fixed;
    }
    header .inner{
        width: 100%;
    }
    header .right {
        width: 60px;
        height: 60px;
        background: #E9EFD9;
    }
    header .logo {
        width: 105px;
        z-index: 1;
        position: relative;
        left: 10px;
    }
    header .hamburger {
        width: 30px;
        height: 28px;
        position: relative;
        cursor: pointer;
        display: inline-block;
        z-index: 1000;
        top: 16px;
        left: 16px;
    }
    header .hamburger span{
        height: 2px;
    }
    header .nav{
        width: 100%;
    }
    header .nav.active{
        padding: 19% 5% 5%;
    }
    header .nav .cl3{
        width: 100%;
    }
    header .nav div a{
        border-radius: 12px;
        width: 100%;
        padding: 14px;
    }
    header .nav div a:after{
        right: 10px;
    }
    header .nav div a{
        border: none;
        border-bottom: 1px solid #B5B5B5;
        border-radius: 0px;
        background: none;
        margin: 0;
        padding-left: 0px;
    }
    header .nav .cl3{
        border: none;
        padding: 0;
        margin: 0;
    }
    header .nav .department_box{
        padding: 0;
        border: 0;
    }
    header .nav .department_box a{
        border: none;
        border-bottom: 1px solid #58ae74;
        padding: 10px;
        padding-left: 0;
    }
    header .nav .site{
        margin: 0;
    }
}/*sp-end*/



/*--------------------------------------
固定ボタン
--------------------------------------*/
@media (max-width: 767px) {
    main{
        padding-bottom: 100px;
    }
    #fixed_btn {
        position: fixed;
        bottom: -80px; 
        left: 0;
        right: 0;
        margin: auto;
        width: fit-content;
        transition: bottom 0.5s ease, opacity 0.5s ease;
        opacity: 0;
        z-index: 9999;
    }
    #fixed_btn.show {
        bottom: 0px;
        opacity: 1;
        width: 94%;
    }
    #fixed_btn.show a{
        border-radius: 90px;
        padding: 7px 0 10px;
        margin-bottom: 15px;
    }
}/*sp-end*/
@media (min-width: 768px) {
    #fixed_btn{
        display: none;
    }
}/*pc-end*/













