@charset "UTF-8";


/*++++++++++++++++++++++++++
共通
++++++++++++++++++++++++++*/
html{
	overflow: auto;
    scroll-behavior: smooth;
}
body{
    font-family: "Noto Sans JP", sans-serif;
    background-color: #fff;
    color: #101010;;
    padding: 0;
    text-align: left;
    height: auto;
    font-size: 16px;
	line-height: 2.0em;
}
section img{
    vertical-align: bottom;
}
.wrapper{
    max-width: 1100px;
    width: 92%;
    margin: auto;
}
.wrapper-second{
    max-width: 800px;
    width: 92%;
    margin: auto;
}

@media screen and (min-width: 600px){
  .pc { display:block; }
  .sp { display:none; }
}
@media screen and (max-width: 600px){
  .pc { display:none; }
  .sp { display:block; }
}

.clear_both {
	clear: both;
}
.indent {
	text-indent: -1em;
	padding-left: 1em;
}

/*++++++++++++++++++++++++++
共通デザイン
++++++++++++++++++++++++++*/
section h4{
    font-size: clamp(28px, 5vw, 40px);
    line-height: 1.5em;
    text-align: center;
    margin-bottom: clamp(20px, 3vw, 30px);
    position: relative;
    color: #05b136;
    font-weight: 700;
}
section h4::after{
    content: '';
    display: inline-block;
    background-image: url(../images/sun.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -1.1em;
    left: 0;
    right: 0;
    margin: auto;
    width: 1.5em;
    height: 1.5em;
}
/* section h4::after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 50px;
    height: 3px;
    background-color: #05b136;
    border-radius: 5px;
} */
section h4 span{
    font-size: 0.6em;
    display: block;
    font-weight: 500;
}
section p.txt1{
    font-size: clamp(15px, 1.6vw, 16px);
    line-height: 1.6em;
}
/*++++++++++++++++++++++++++
search
++++++++++++++++++++++++++*/
#search{
    padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 3vw, 30px);
}
#search .nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* margin-top: clamp(20px, 3vw, 30px); */
}
#search .nav .link{
    width: calc(98% / 2);
    background-color: #05b136;
    border-radius: 100px;
    margin-bottom: 1.5%;
    position: relative;
}
#search .nav .link.arrow::before{
    position: absolute;
    top: calc(50% - 5px);
    right: 20px;
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
#search .nav .link .inner{
    padding: 15px 5px;
}
#search .nav .link .inner p{
    text-align: center;
    font-size: clamp(11px, 1.6vw, 16px);
    line-height: 1.4em;
    color: #fff;
    letter-spacing: -0.05em;
}
@media screen and (max-width: 700px){
    #search .nav .link{
        width: 100%;
    }
    #search .nav .link .inner p{
        font-size: 13px;
    }
}
/*++++++++++++++++++++++++++
lastyear
++++++++++++++++++++++++++*/
#lastyear{
    padding: clamp(30px, 5vw, 50px) 0;
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: clamp(20px, 3vw, 30px);
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
/*++++++++++++++++++++++++++
company
++++++++++++++++++++++++++*/
#company{
    padding: clamp(30px, 5vw, 50px) 0;
}
/*++++++++++++++++++++++++++
group
++++++++++++++++++++++++++*/
.group{
    padding: clamp(20px, 3vw, 30px) 0;
}
/* .group h5{
    background-color: #CDEFD6;
    font-size: clamp(16px, 1.8vw, 18px);
    text-align: center;
    line-height: 1.5em;
    padding: 10px 5px;
    margin-bottom: clamp(15px, 2vw, 20px);
} */
.group h5{
    font-size: clamp(20px, 2.4vw, 24px);
    line-height: 1.5em;
    padding: 12px 15px;
    margin-bottom: clamp(15px, 2vw, 20px);
    text-align: center;
    /* border-left: solid 6px #00b01d;
    background-color: #f0f5f1; */
    background-image: repeating-linear-gradient(120deg, #fffef0, #fffef0 10px, #fff9d1 10px, #fff9d1 20px);
    color: #039e2f;
    font-weight: 500;
}
.group ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.group ul li{
    width: calc(95.5% / 4);
    margin-right: 1.5%;
    margin-bottom: clamp(20px, 3vw, 30px);
    text-align: center;
}
.group ul li:nth-child(4n){
    margin-right: auto;
}
.group ul li .inner figure img{
    width: 100%;
    height: 15vw;
    object-fit: cover;
    border-radius: 10px;
}
.group ul li .inner .name{
    /* background-color: #05b7f2; */
    padding: 5px 5px;
}
.group ul li .inner .name .txt{
    font-size: clamp(15px, 1.6vw, 16px);
    font-weight: 500;
    line-height: 1.5em;
    color: #0092cc;
    /*行数制限*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.group ul li .inner .type{
    display: inline-block;
    background-color: #fff;
    border: solid 1px #eba000;
    padding: 4px 10px;
    border-radius: 100px;
}
.group ul li .inner .type .txt{
    font-size: clamp(10px, 1.1vw, 11px);
    line-height: 1.5em;
    color: #eba000;
    font-weight: 500;
    text-align: center;
    /*行数制限*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: pre-wrap;
}
@media screen and (min-width: 1200px){
    .group ul li .inner figure img{
        height: 180px;
    }
}
@media screen and (max-width: 780px){
    .group ul li{
        width: calc(98.5% / 2);
        margin-right: 1.5%;
    }
    .group ul li:nth-child(4n){
        margin-right: 1.5%;
    }
    .group ul li:nth-child(2n){
        margin-right: auto;
    }
    .group ul li .inner figure img{
        height: 30vw;
    }
}
/*++++++++++++++++++++++++++
footer
++++++++++++++++++++++++++*/
footer{
    padding: clamp(50px, 6vw, 60px) 0;
    background-color: #f2fafc;
}
footer p.f-txt1{
    font-size: clamp(15px, 1.6vw, 16px);
    line-height: 1.6em;
    text-align: center;
    margin-bottom: clamp(15px, 2vw, 20px);
}
footer p.f-txt2{
    font-size: clamp(14px, 1.5vw, 15px);
    line-height: 1.6em;
    text-align: center;
}
footer p.f-txt2 strong{
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}
footer p.f-txt2 a:hover{
    text-decoration: underline;
}

/*++++++++++++++++++++++++++
詳細ページ
++++++++++++++++++++++++++*/
#main-second{
    padding: clamp(20px, 3vw, 30px) 0;
    background-color: #EDF7F4;
}
#main-second figure{
    width: clamp(130px, 25vw, 250px);
    margin: auto;
}
.pankuzu{
    margin-top: 10px;
    margin-left: 20px;
}
.pankuzu ul{
    font-size: 0;
}
.pankuzu ul li{
    display: inline-block;
}
.pankuzu ul li a,
.pankuzu ul li p{
    font-size: clamp(13px, 1.4vw, 14px);
    line-height: 1.3em;
}
.pankuzu ul li:first-child:after{
    content: '-';
    font-size: clamp(13px, 1.4vw, 14px);
    margin: 0 6px;
}
#contents{
    padding: clamp(60px, 8vw, 80px) 0;
}
#contents .txt-box{
    text-align: center;
}
#contents h2{
    font-size: clamp(24px, 3.2vw, 32px);
    color: #0092cc;
    font-weight: 500;
    margin-bottom: clamp(10px, 1.5vw, 15px);
    line-height: 1.6em;
}
#contents .h3_back h3{
    display: inline-block;
    background-color: #fff;
    border: solid 1px #eba000;
    padding: 4px 20px;
    border-radius: 100px;
    text-align: center;
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.5em;
    font-weight: 500;
    color: #eba000;
}
#contents figure.main-img{
    width: 100%;
    margin-top: clamp(40px, 5vw, 50px);
    margin-bottom: clamp(20px, 2.5vw, 25px);
}
#contents figure.main-img img{
    border-radius: 0;
}
#contents p{
    font-size: clamp(16px, 1.7vw, 17px);
    line-height: 1.7em;
    white-space: pre-wrap;

}
#contents .btn-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}
#contents .btn-box .conts{
    width: 48%;
    background-color: #05b136;
    border-radius: 100px;
    margin-bottom: 4%;
    position: relative;
}
#contents .btn-box .conts:nth-child(2n){
    margin-left: 4%;
}
#contents .btn-box .conts::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 12px;
    height: 12px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
#contents .btn-box .conts .txt{
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.6em;
    text-align: center;
    padding: .6em 5px;
    color: #fff;
    font-weight: 500;
}
/* #contents .site{
    margin-top: clamp(25px, 3vw, 30px);
    text-align: center;
}
#contents .site .txt1{
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.7em;
    margin-bottom: 5px;
}
#contents .site .txt2 a{
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.7em;
    margin-bottom: 5px;
    color: #00b01d;
}
#contents .site .txt2 a:hover{
    text-decoration: underline;
} */


@media screen and (max-width: 780px){
    #contents .btn-box .conts{
        width: 100%;
    }
    #contents .btn-box .conts:nth-child(2n){
        margin-left: auto;
    }
}


.paginate {
    width: 100%;
    max-width: 520px;
    margin: clamp(70px, 10vw, 100px) auto auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.paginate-Prev {
    margin-right: auto;
}
.paginate-Next {
    margin-left: auto;
}
.paginate-Prev a,
.paginate-Next a{
    width: 160px;
    background: #fff;
    border: solid 1px #05b136;
    border-radius: 50px;
    padding: 10px 0;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #05b136;
    display: flex;
    justify-content: center;
    align-items: center;
}
.paginate-Prev a i,
.paginate-Next a i {
    width: 12px;
    height: 12px;
    line-height: 0;
    display: block;
}
.paginate-Prev a i{
    border-bottom: solid 2px #05b136;
    border-left: solid 2px #05b136;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.paginate-Next a i{
    border-top: solid 2px #05b136;
    border-right: solid 2px #05b136;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.paginate-Prev a i{
    margin-right: 5px;
}
.paginate-Next a i {
    margin-left: 5px;
}
.paginate-All {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}
.paginate-All a {
    width: 160px;
    background: #fff;
    border: solid 1px #05b136;
    border-radius: 50px;
    padding: 10px 0;
    font-size: clamp(14px, 1.6vw, 16px);
    color: #05b136;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 640px) {
    .paginate-Prev a,
    .paginate-Next a,
    .paginate-All a {
        width: 100px;
        padding: 6px 0;
    }
    .paginate-Prev a i,
    .paginate-Next a i {
        width: 8px;
        height: 8px;
    }
    .paginate-Prev a i{
        margin-right: 3px;
    }
    .paginate-Next a i {
        margin-left: 3px;
    }
}