@charset "UTF-8";
/* モジュール */

/* マーカー */
.marker{
  background: linear-gradient(transparent 40%, #b7e9e5 60%);
  line-height: 1;
}


/* 吹き出し */
.balloon {
  position: relative;
    display: inline-block;
    background-color: #fff;
    border: solid 2px #808080;
    min-width: 240px;
    max-width: 100%;
    text-align: center;
}
.balloon:before,
.balloon:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.balloon:before {
    border: solid 32px transparent;
    border-top: solid 32px #808080;
}
.balloon:after {
    border: solid 34px transparent;
    border-top: solid 34px #fff;
    margin-top: -5px;
}

/* 吹き出し2 */
.balloon1 {
    position: relative;
    background-color: #fff;
    border-bottom: solid 2px #808080;
    max-width: 100%;
    display: inline-block;
}
.balloon1:before,
.balloon1:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.balloon1:before {
    border: solid 32px transparent;
    border-top: solid 32px #808080;
}
.balloon1:after {
    border: solid 34px transparent;
    border-top: solid 34px #fff;
    margin-top: -5px;
}

/* 斜め線 */
.slantedline {
  position: relative;
}
.slantedline::before,
.slantedline::after {
  position: absolute;
  bottom: 2px;
  height: 1.8rem;
  content: '';
}
.slantedline::before {
  border-left: solid 3px #aaafff;
  left: 0;
  transform: rotate(-30deg);
}
.slantedline::after {
  border-right: solid 3px #aaafff;
  right: 0;
  transform: rotate(30deg);
}

/* 両端に線 */
.headborder {
  position: relative;
  padding: 0 100px;
}
.headborder:before,
.headborder:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 150px;
  height: 2px;
  background-color: #666;
}
.headborder:before {
  left: 0;
}
.headborder:after {
  right: 0;
}
@media screen and (max-width: 767px) {
  .headborder:before,
  .headborder:after {
    width: 80px;
  }
}

/* ボタン */
.button_solid001 a{
  background: #ffffff;
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 0.3s ease-in-out;
  border: solid 2px #555;
  box-shadow: 0 5px 0 #6bb6ff;
}
.button_solid001 a:hover {
  background-color: #b3d9ff;
  box-shadow: 0 0 0;
}

/* 001 */
.button001 a {
    background: #eee;
    border-radius:5px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 0;
    transition: 0.3s ease-in-out;
}
.button001 a:hover {
    background: rgb(127, 173, 127);
    color: #FFF;
}
.button001 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

/* 002 */
.button002 a {
    background: #eee;
    border-radius: 5px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    transition: 0.3s ease-in-out;
}
.button002 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button002 a:hover {
  background: rgb(127, 173, 127);
  color: #FFF;
}
.button002 a:hover:after {
  right: 1.4rem;
}

/* 003 */
.button003 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0px 10px 25px;
    transition: 0.3s ease-in-out;
}
.button003 a:before, .button003 a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.button003 a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.button003 a:after {
  left: 0;
  background: rgb(127, 173, 127);
  z-index: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.button003 a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}
.button003 a:hover span {
  color: #fff;
}
.button003 a:hover:before {
  left: 2rem;
}
.button003 a:hover:after {
  right: 0;
  width: 100%;
}

.button004 a {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	font-weight: bold;
	border-radius: 0.3rem;
	border: 2px dashed rgb(127, 173, 127);
	color: rgb(127, 173, 127);
	box-shadow: 5px 5px 0 rgb(127, 173, 127);
	transition: 0.3s ease-in-out;
      padding: 10px 0;
}
.button004 a:hover {
	box-shadow: 0 0 0;
	transform: translate(5px, 5px);
}

.button005 a {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	font-weight: bold;
	color: rgb(127, 173, 127);
	background: #dae6da;
	transition: 0.3s ease-in-out;
  margin-left:10px;
      padding: 10px 0;
}
.button005 a::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid rgb(127, 173, 127);
  transition: 0.2s;
}
.button005 a:hover {
	background: rgb(127, 173, 127);
	color: #fff;
}
.button005 a:hover::before {
  top: 0;
  left: 0;
}

.button006 a {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	font-weight: bold;
	border-radius: 10px;
	color: rgb(127, 173, 127);
	border: 3px solid rgb(127, 173, 127);
	box-shadow: 5px 5px rgb(127, 173, 127);
	transition: 0.3s ease-in-out;
      padding: 10px 0;
}
.button006 a:hover {
	box-shadow: none;
	transform: translate(5px, 5px);
	color: rgb(127, 173, 127);
}


/* 見出し */
.heading001 {
    padding: .5em .7em;
    border-left: 5px solid rgb(127, 173, 127);
    border-bottom: 3px solid #d2d2d2;
    background-color: #f2f2f2;
}
.heading002 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.heading002::before,
.heading002::after {
    width: 3px;
    height: 40px;
    background-color: rgb(127, 173, 127);
    content: '';
}
.heading002::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}
.heading002::after {
    transform: rotate(35deg);
    margin-left: 30px;
}

.heading003 {
    position: relative;
    padding: .5em .7em;
    background-color: #7fad7f;
    color: #fff;
}

.heading003::before {
    position: absolute;
    top: 100%;
    left: 0;
    border-bottom: solid 10px transparent;
    border-right: solid 20px #598d5a;
    content: '';
}

.heading004 {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    padding: .5em .7em;
    background-color: #7fad7f;
    color: #fff;
    text-align: center;
}

.heading004::before,
.heading004::after {
    position: absolute;
    bottom: -10px;
    z-index: -1;
    border-style: solid;
    border-color: #507e47;
    content: '';
}

.heading004::before {
    left: -30px;
    border-width: 25px 25px 25px 15px;
    border-left-color: transparent;
}

.heading004::after {
    right: -30px;
    border-width: 25px 15px 25px 25px;
    border-right-color: transparent;
}

.heading004 span::before,
.heading004 span::after {
    position: absolute;
    bottom: -10px;
    width: 10px;
    height: 10px;
    background-color: #2a3b30;
    content: '';
}

.heading004 span::before {
    left: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 100%);
}

.heading004 span::after {
    right: 0;
    clip-path: polygon(0 0, 100% 0%, 0% 100%);
}

/* ボックス */
.box001 {
    position: relative;
    margin: 30px auto 0;
    padding: 1em 1.5em;
    border: 2px solid rgb(127, 173, 127);
    border-radius: 5px;
}
.box001 span {
    position: absolute;
    top: -28px;
    left: -1px;
    padding: .2em .8em;
    border-radius: 5px 5px 0 0;
    background-color: rgb(127, 173, 127);
    color: #fff;
}
.box002 {
    position: relative;
    margin-top: 1em;
    padding: 1.8em 1.5em 1em 1.5em;
    border: 2px solid rgb(127, 173, 127);
    margin-left: .5em;
    border-radius: 5px;
}
.box002 > div {
    position: absolute;
    top: -1.15em;
    left: -.5em;
    padding: .4em 1.4em;
    border-radius: 25px;
    background-color: rgb(127, 173, 127);
    color: #fff;
    font-size: .9em;
    
}
.box002 > div::before {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background-color: rgb(127, 173, 127);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.box003 {
    border: 2px solid rgb(127, 173, 127);
    border-radius: 3px;
    border-radius: 5px;
}
.box003 span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5em 0;
    background-color: rgb(127, 173, 127);
    color: #fff;
    font-weight: 600;
}
.box003 p {
    padding: 1em 1.5em;
    color: #555;
}


/* リスト */
.list001 {
    counter-reset: li;
}
.list001 li {
    display: flex;
    align-items: center;
    padding: .3em;
}
.list001 li::before {
    display: inline-block;
    min-width: 1.7em;
    margin-right: 5px;
    border-radius: 50%;
    background-color: rgb(127, 173, 127);
    color: #fff;
    font-weight: bold;
    font-size: .75em;
    line-height: 1.7em;
    text-align: center;
    content: counter(li);
    counter-increment: li;
}

/* ライン */
hr.line001{
  border: none;
  border-bottom: 3px dotted #767676;
}

hr.line002 {
  border: 0;
	height: 8px;
	background-image: repeating-linear-gradient(45deg, #777 0px, #777 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
	background-size: 8px 8px;
}



/* 背景 */
.background001 {
  background-color: #fff;
  background-image:
    repeating-linear-gradient(to bottom,
      transparent 25px,
      rgba(0, 0, 0, 0.04) 26px,  rgba(0, 0, 0, 0.04) 26px,
      transparent 27px,  transparent 51px, 
      rgba(0, 0, 0, 0.04) 52px,  rgba(0, 0, 0, 0.04) 52px,
      transparent 53px,  transparent 77px, 
      rgba(0, 0, 0, 0.04) 78px,  rgba(0, 0, 0, 0.04) 78px,
      transparent 79px,  transparent 103px, 
      rgba(0, 0, 0, 0.04) 104px,  rgba(0, 0, 0, 0.04) 104px,
      transparent 105px,  transparent 129px, 
      rgba(0, 0, 0, 0.04) 130px,  rgba(0, 0, 0, 0.04) 130px),

    repeating-linear-gradient(to right,
      transparent 25px,
      rgba(0, 0, 0, 0.04) 26px,  rgba(0, 0, 0, 0.04) 26px,
      transparent 27px,  transparent 51px, 
      rgba(0, 0, 0, 0.04) 52px,  rgba(0, 0, 0, 0.04) 52px,
      transparent 53px,  transparent 77px, 
      rgba(0, 0, 0, 0.04) 78px,  rgba(0, 0, 0, 0.04) 78px,
      transparent 79px,  transparent 103px, 
      rgba(0, 0, 0, 0.04) 104px,  rgba(0, 0, 0, 0.04) 104px,
      transparent 105px,  transparent 129px, 
      rgba(0, 0, 0, 0.04) 130px,  rgba(0, 0, 0, 0.04) 130px);
}

.background002 {
  background-image:  linear-gradient(
    135deg,
    #b7ccb7 25%, transparent 25%),
    linear-gradient(225deg, #b7ccb7 25%, transparent 25%),
    linear-gradient(45deg, #b7ccb7 25%, transparent 25%),
    linear-gradient(315deg, #b7ccb7 25%, #edfae1 25%);
  background-position:  20px 0, 20px 0, 0 0, 0 0;
  background-size: 40px 40px;
  background-repeat: repeat;
}

.background003  {
  background-size: 20px 20px;
  background-image: radial-gradient(circle at center, #b7ccb7 3px, #ffffff 3px);
}

.background004 {
  background-image:  radial-gradient(#b7ccb7 3px, transparent 3px), radial-gradient(#b7ccb7 3px, #ffffff 3px);
  background-size: 40px 40px;
  background-position: 0 0,20px 20px;
}
.background005 {
  background-image: linear-gradient(0deg, #edfae1 50%, #b7ccb7 50%);
  background-size: 20px 20px;
}
.background006 {
  background-image: linear-gradient(to right, #b7ccb7, #b7ccb7 10px, #edfae1 10px, #edfae1 );
  background-size: 20px 100%;
}


/* 吹き出し */
.balloon001 {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    padding: .8em 1.2em;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #333333;
}

.balloon001::before {
    position: absolute;
    bottom: -15px;
    width: 30px;
    height: 15px;
    background-color: #f2f2f2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.balloon002 {
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 15px;
    padding: .8em 1.2em;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #333333;
}

.balloon002::before {
    position: absolute;
    top: -15px;
    width: 30px;
    height: 15px;
    background-color: #f2f2f2;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: '';
}
.balloon003 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 22px;
}

.balloon003 p {
    position: relative;
    margin: 3px 0 0;
    padding: .8em 1em;
    border-radius: 5px;
    background-color: #f2f2f2;
    color: #333333;
}

.balloon003 p::before {
    position: absolute;
    top: 26%;
    left: -15px;
    width: 15px;
    height: 30px;
    background-color: #f2f2f2;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: '';
}

/* アイコン */
svg{
    width: 50px;
    height: 50px;
    opacity: 1;
  }

/* ベース */
strong{
  font-weight: inherit;
}
img{
  max-width: 100%!important;
  width: auto!important;
  display: inline-block!important;
}
.article,.article * {
  font-family:Zen Maru Gothic, serif; 
  line-height: 1.7;
  font-weight: unset;
}
.article h1{
  color: #017B36;
  font-weight: 700;
}

/* display */
.block{
  display: block;
}
.block_center{
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.inlineblock{
  display: inline-block;
}
.flex {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  -webkit-align-items: center;
	align-items: center;
  -webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex>*{
  width: 49%;
}
@media screen and (max-width: 767px) {
  .spflex_cancel{
    display: block;
  }
  .spflex_cancel>*{
  width: 100%;
  }
}

/* 余白 */
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb35 {margin-bottom: 35px;}
.mb40 {margin-bottom: 40px;}
.mb45 {margin-bottom: 45px;}
.mb50 {margin-bottom: 50px;}
.mb55 {margin-bottom: 55px;}
.mb60 {margin-bottom: 60px;}
.mb65 {margin-bottom: 65px;}
.mb70 {margin-bottom: 70px;}
.mb75 {margin-bottom: 75px;}
.mb80 {margin-bottom: 80px;}
.mb85 {margin-bottom: 85px;}
.mb90 {margin-bottom: 90px;}
.mb95 {margin-bottom: 95px;}
.mb100 {margin-bottom: 100px;}
@media screen and (max-width: 767px) {
  .spmb0 {margin-bottom: 0px;}
  .spmb5 {margin-bottom: 5px;}
  .spmb10 {margin-bottom: 10px;}
  .spmb15 {margin-bottom: 15px;}
  .spmb20 {margin-bottom: 20px;}
  .spmb25 {margin-bottom: 25px;}
  .spmb30 {margin-bottom: 30px;}
  .spmb35 {margin-bottom: 35px;}
  .spmb40 {margin-bottom: 40px;}
  .spmb45 {margin-bottom: 45px;}
  .spmb50 {margin-bottom: 50px;}
  .spmb55 {margin-bottom: 55px;}
  .spmb60 {margin-bottom: 60px;}
  .spmb65 {margin-bottom: 65px;}
  .spmb70 {margin-bottom: 70px;}
  .spmb75 {margin-bottom: 75px;}
  .spmb80 {margin-bottom: 80px;}
  .spmb85 {margin-bottom: 85px;}
  .spmb90 {margin-bottom: 90px;}
  .spmb95 {margin-bottom: 95px;}
  .spmb100 {margin-bottom: 100px;}
}

/* 横幅 */
.width30 {width: 30%;}
.width35 {width: 35%;}
.width40 {width: 40%;}
.width45 {width: 45%;}
.width50 {width: 50%;}
.width55 {width: 55%;}
.width60 {width: 60%;}
.width65 {width: 65%;}
.width70 {width: 70%;}
.width75 {width: 75%;}
.width80 {width: 80%;}
.width85 {width: 85%;}
.width90 {width: 90%;}
.width95 {width: 95%;}
.width100 {width: 100%;}
@media screen and (max-width: 767px) {
  .spwidth30 {width: 30%;}
  .spwidth35 {width: 35%;}
  .spwidth40 {width: 40%;}
  .spwidth45 {width: 45%;}
  .spwidth50 {width: 50%;}
  .spwidth55 {width: 55%;}
  .spwidth60 {width: 60%;}
  .spwidth65 {width: 65%;}
  .spwidth70 {width: 70%;}
  .spwidth75 {width: 75%;}
  .spwidth80 {width: 80%;}
  .spwidth85 {width: 85%;}
  .spwidth90 {width: 90%;}
  .spwidth95 {width: 95%;}
  .spwidth100 {width: 100%;}
  }

/* フォント */
.article p{
  font-size: 16px;
}
.article .heading{
  font-size: 24px;
}
.article .fontsizeL{
  font-size: 24px;
}
.article .fontsizeM{
  font-size: 20px;
}
.article .fontsizeS{
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .article .spfontsizeL{
    font-size: 24px;
  }
  .article .spfontsizeM{
    font-size: 20px;
  }
  .article .spfontsizeS{
    font-size: 18px;
  }
}
.article .fontsize16{font-size: 16px;}
.article .fontsize18{font-size: 18px;}
.article .fontsize20{font-size: 20px;}
.article .fontsize22{font-size: 22px;}
.article .fontsize24{font-size: 24px;}
.article .fontsize26{font-size: 26px;}
.article .fontsize28{font-size: 28px;}
.article .fontsize30{font-size: 30px;}
@media only screen and (max-width: 767px) {
  .article .spfontsize16{font-size: 16px;}
  .article .spfontsize18{font-size: 18px;}
  .article .spfontsize20{font-size: 20px;}
  .article .spfontsize22{font-size: 22px;}
  .article .spfontsize24{font-size: 24px;}
  .article .spfontsize26{font-size: 26px;}
  .article .spfontsize28{font-size: 28px;}
  .article .spfontsize30{font-size: 30px;}
}
.article .bold{
  font-weight: bold!important;
}

/* 表示 */
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 767px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}