@charset "utf-8";
/* CSS Document */
:root{
  --color:#65A534;
}

/* ==========================
main
============================= */
main{
  box-sizing: border-box;
  *{
    box-sizing: border-box;
  }
}
.contents_box {
    background: url("../img/bg_right.png")no-repeat right bottom;
}
.f_cor{
  font-family: 'Cormorant Infant', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
}
.paper_button {
    position: relative;
    margin: 30px auto 0;
    max-width: 360px;
    width: 100%;
   font-family: "Hiragino Kaku Gothic ProN";
    text-align: center;
    color: #fff;
    border-radius: 2px;
  > p{
      width: 100%;
      height: 100%;
      padding: 25px 30px;
      background: #6baecf;
      position: relative;
      z-index: 1;
  }
}
.paper_button::before, .paper_button::after {
    content: '';
    position: absolute;
    bottom: 10px;
    width: 43%;
    height: 13px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.paper_button::before {
    left: 15px;
    -webkit-transform: skew(-5deg) rotate(-5deg);
    -ms-transform: skew(-5deg) rotate(-5deg);
    transform: skew(-7deg) rotate(-7deg);
}
.paper_button::after {
  right: 15px;
  -webkit-transform: skew(5deg) rotate(5deg);
      -ms-transform: skew(5deg) rotate(5deg);
          transform: skew(5deg) rotate(5deg);
}
.paper_button:hover::before,
.paper_button:hover::after {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}
.paper_button:hover::before {
  left: 5px;
}
.paper_button:hover::after {
  right: 5px;
}
.paper_button a:link {
    color: #fff;
}
.paper_button a:visited {
    color: #fff;
}
/* ==========================
category
============================= */
.category {
    background: url(../img/category.png)no-repeat center right;
    padding: 90px 0;
    background-size: cover;
}
.cate_tit {
    background: url(../img/title_bg.png)no-repeat center;
    padding: 30px 0;
    margin: 0 auto 0 10%;
    max-width: 360px;
}
.cate_name {
    text-align: center;
    line-height: 0.8em;
    font-size: 230%;
}
.cate_name span {
    font-size: 40%;
}
p.contents_title span {
    font-size: 50%;
}
.intro {
  max-width: 1200px;
  width: 90%;
  margin: 60px auto;
  line-height: 2;
}

p.title_text{
    text-align: center;
    line-height: 1.0em;
    font-size: 230%;
    margin-top: 80px;
}
p.title_text span {
    font-size: 40%;
}
.sp_block {
  display: none;
}
.anc_list{
  max-width: 1200px;
  width: 90%;
  margin: 30px auto 70px;
  display: flex;
  flex-wrap: wrap;
  gap:30px;
  justify-content: center;
}
.anc_card{
  position: relative;
  display: block;
  max-width: calc((100% / 3) - (60px / 3));
}
.anc_label{
  font-family: 'Cormorant Infant', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  font-size: 30px;
  width: 220px;
  height: 50px;
  background: #C5D74B;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10px;
  left: -20px;
}
.anc_label::before, .anc_label::after {
  content: '';
  position: absolute;
  bottom: 10px;
  width: 43%;
  height: 13px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  z-index: -1;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.anc_label::before {
  left: 15px;
  -webkit-transform: skew(-5deg) rotate(-5deg);
  -ms-transform: skew(-5deg) rotate(-5deg);
  transform: skew(-7deg) rotate(-7deg);
}
.anc_label::after {
  right: 15px;
  -webkit-transform: skew(5deg) rotate(5deg);
  -ms-transform: skew(5deg) rotate(5deg);
  transform: skew(5deg) rotate(5deg);
}
.anc_name{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  padding-top: 20px;
}


.reason{
  background: #EFF6EA;
  padding-bottom: 100px;
}
.rea_block{
  padding-top: 50px;
  position: relative;
}
.rea_inner{
  max-width: 1200px;
  width: 90%;
  margin: auto;
  background: #fff url("../img/bg_right.png") no-repeat bottom right;
  padding: 60px;
}
.rea_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.rea_com {
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  line-height: 2;
}
.rea_label {
  font-family: 'Cormorant Infant', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  position: absolute;
  top: 100px;
  left: 0;
  height: 60px;
  width: calc(50% - 390px);
  p{
    width: 100%;
    height: 100%;
    background: #C5D74B;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 30px;
    font-size: 32px;
    font-weight: bold;
    position: relative;
  }
}
.rea_label::before {
  content: '';
  position: absolute;
  bottom: 10px;
  width: 43%;
  height: 13px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  right: 15px;
  -webkit-transform: skew(5deg) rotate(5deg);
  -ms-transform: skew(5deg) rotate(5deg);
  transform: skew(5deg) rotate(5deg);
}
.history{
  max-width: 860px;
  width: 100%;
  margin: auto;
  padding-top: 50px;
  position: relative;
}
.his_row {
  display: flex;
  justify-content: center;
  min-height: 150px;
  position: relative;
  &::before{
    content: '';
    background: #65A534;
    width: 15px;
    height: 100%;
    position: absolute;
    top: 0;
  }
  &.last::after{
    content: '';
    background: url("../img/arrow_head.svg") no-repeat center top;
    -webkit-background-size: contain;
    background-size: contain;
    width: 57px;
    height: 32px;
    position: absolute;
    bottom: -30px;
  }
}
.his_year{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 95px;
  height: 95px;
  border: 3px solid #65A534;
  border-radius: 50%;
  font-size: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,.25);
  position: relative;
  background: #fff;
}
.his_card {
  position: absolute;
  top: 15px;
  right: 0;
  width: calc(50% - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:10px;
}
.his_head{
  border-bottom: 1px solid #000;
  padding: 0 20px 5px 0;
  width: 100%;
}
.his_row{
  &:nth-child(even){
    .his_card {
      right: auto;
      left: 0;
      .his_head{
        padding: 0 0 5px 20px;
      }
    }
  }
  &:nth-child(2){
    .his_card {
      top: 0px;
    }
  }
}
.his_center{
  text-align: center;
  margin-top: 40px;
}
.his_chatch {
  font-size: 20px;
  line-height: 2;
}
.his_bot {
  line-height: 2;
}

.rea_flex{
  display: flex;
  flex-wrap: wrap;
  gap:20px;
  justify-content: center;
  margin: 40px auto 0;
}
.rea_card{
  max-width: 328px;
  width: calc(100% / 3 - (40px / 3));
  border: 1px solid #ccc;
  padding: 20px;
}
.rea_card--02{--color:#6BAECF;}
.rea_card--03{--color:#EE8224;}
.card_head{
  display: flex;
  gap:10px;
  align-items: center;
  color: var(--color);
  &.center{
    justify-content: center;
  }
}
.card_tag{
  font-family: 'Cormorant Infant', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 20px;
  border: 1px solid var(--color);
}
.card_name{
  font-size: 18px;
  font-weight: bold;
}
.card_img{
  margin-top: 10px;
}
.card_com{
  margin-top: 10px;
  line-height: 2;
}
a.card_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 18px;
  margin-top: 10px;
  font-weight: bold;
  color: #fff;
  position: relative;
  background: var(--color);
  &::after{
    content: '';
    display: block;
    background: url("../img/arrow_btn.svg") no-repeat center;
    width: 11px;
    height: 12px;
    position: absolute;
    right: 15px;
  }
}
.rea_box{
  max-width: 420px;
  width: 100%;
  line-height: 2;
}
.rea_point{
  display: flex;
  align-items: center;
  &::before{
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: var(--color);
    margin-right: 10px;
  }
  &.mt_20{
    margin-top: 20px;
  }
}
.rea_fig{
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  max-width: 1036px;
  margin: auto;
}
.fig_link{
  display: block;
  width: 28.5%;
  height: 11%;
  position: absolute;
  bottom: 15.75%;
  &:hover{
    background: #fff;
    opacity: 0.4;
  }
  &:nth-last-child(3){
    left: 4.7%;
  }
  &:nth-last-child(2){
    left: 35.75%;
  }
  &:nth-last-child(1){
    left: 66.8%;
  }
}
@media screen and ( max-width: 1000px ){

}
@media screen and ( max-width: 767px ){
.category {
    background: url(../img/category.png)no-repeat center right;
    background-size: cover;
    padding: 0;
}
.cate_tit {
    width: 90%;
    margin: auto;
}
	
.sp_block {
    display: block;
}
.pc_block {
    display: none;
}
.intro{
  margin: 40px auto;
}
.anc_card{
  max-width: 100%;
}
.rea_inner {
  padding: 100px 5% 40px;
}
.rea_card{
  width: 100%;
}
.rea_label {
  width: calc(60%);
  top: 70px;
}
.rea_title {
  font-size: 18px;
}
.rea_com {
  margin-top: 30px;
}
.his_row {
  justify-content: space-between;
  width: 100%;
  min-height: 100px;
  &::before {
    left: 31px;
    top: 3px;
  }
  &.last::after {
      left: 10.5px;
  }
}
.his_card {
  position: static;
  width: calc(100% - 100px);
  padding-bottom: 30px;
}
.his_year {
  width: 78px;
  height: 78px;
  font-size: 18px;
}
p.title_text {
  margin-top: 0;
}
}
@media print {


}