/*
@media screen and (max-width: 767px) {
@media (min-width: 768px) {
*/
.sec-btnp {
  background-color: #E4EAE3;
  padding: var(--pixel32);
}
@media (min-width: 768px) {
  .sec-btnp {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}

.elem-p-btn {
  background-color: #FFF;
  border: 1px solid var(--col-green2);
  padding: var(--pixel20) var(--pixel24);
  cursor: pointer;
  transition: opacity 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.elem-p-btn img {
  width: var(--pixel30);
  height: var(--pixel28);
}
.elem-p-btn p {
  font-size: var(--pixel18);
  font-weight: 700;
  line-height: 1;
  margin-left: 0.5em;
}
.elem-p-btn:hover {
  opacity: 0.6;
  transition: opacity 0s;
}

.sec-fv {
  position: relative;
  background-color: var(--col-green);
  padding-top: var(--pixel27);
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .sec-fv {
    padding-top: var(--pixel23);
  }
}
.sec-fv .inner {
  max-width: 1300px;
}
.sec-fv .elem-l {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: var(--pixel40);
}
@media screen and (max-width: 767px) {
  .sec-fv .elem-l {
    padding-bottom: 38vw;
  }
}
.sec-fv .elem-r {
  position: absolute;
  top: 0;
  right: 0;
  width: min(700px, 48vw);
}
@media (min-width: 1300px) {
  .sec-fv .elem-r {
    right: calc(50% - 700px);
  }
}
@media screen and (max-width: 767px) {
  .sec-fv .elem-r {
    top: auto;
    bottom: calc(var(--pixel75) * -1);
    width: 80vw;
  }
}
.sec-fv .t1 {
  font-size: var(--pixel18);
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid #FFF;
  padding: 0.8em;
}
@media screen and (max-width: 767px) {
  .sec-fv .t1 {
    font-size: var(--pixel13);
  }
}
.sec-fv .t2 {
  font-size: var(--pixel48);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-top: 0.2em;
}
@media screen and (max-width: 767px) {
  .sec-fv .t2 {
    font-size: var(--pixel24);
  }
}
.sec-fv .t3 {
  font-size: var(--pixel18);
  font-weight: 600;
  margin-top: 0.6em;
}
@media screen and (max-width: 767px) {
  .sec-fv .t3 {
    font-size: var(--pixel13);
  }
}
.sec-fv .t4 .color1 {
  color: var(--col-green2);
}

.sec-fvtxt .inner {
  position: relative;
}
@media (min-width: 768px) {
  .sec-fvtxt .inner {
    padding-top: var(--pixel150);
    padding-bottom: var(--pixel130);
    padding-left: var(--pixel150);
  }
}
@media screen and (max-width: 767px) {
  .sec-fvtxt .inner {
    padding-top: var(--pixel90);
    padding-bottom: var(--pixel40);
  }
}
.sec-fvtxt .t1 {
  font-size: var(--pixel32);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .sec-fvtxt .t1 {
    font-size: var(--pixel18);
    line-height: 1.8;
    text-align: center;
    padding: 1em 0;
  }
}
.sec-fvtxt .t1 .color1 {
  color: var(--col-green2);
}
@media (min-width: 768px) {
  .sec-fvtxt .p1, .sec-fvtxt .p2 {
    position: absolute;
  }
}
@media (min-width: 768px) {
  .sec-fvtxt .p1 {
    top: var(--pixel32);
    left: 0;
    width: var(--pixel128);
  }
}
@media screen and (max-width: 767px) {
  .sec-fvtxt .p1 {
    width: var(--pixel60);
    margin-left: var(--pixel10);
  }
}
@media (min-width: 768px) {
  .sec-fvtxt .p2 {
    bottom: var(--pixel100);
    right: var(--pixel100);
    width: var(--pixel106);
  }
}
@media screen and (max-width: 767px) {
  .sec-fvtxt .p2 {
    width: var(--pixel60);
    margin-left: auto;
    margin-right: var(--pixel10);
  }
}

.sec-merit {
  background-color: #F6F6F6;
}
.sec-merit .elem > .box2 {
  display: flex;
}
@media screen and (max-width: 767px) {
  .sec-merit .elem > .box2 {
    flex-direction: column;
  }
}
.sec-merit .elem > .box2 .txt {
  flex: 1;
}
@media (min-width: 768px) {
  .sec-merit .elem > .box2 .img {
    width: min(500px, 41.7vw);
  }
}
@media screen and (max-width: 767px) {
  .sec-merit .elem > .box2 .img {
    margin-top: var(--pixel20);
  }
}
@media (min-width: 768px) {
  .sec-merit .elem > .box2:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) {
  .sec-merit .elem > .box2:nth-child(odd) .txt {
    padding-left: var(--pixel50);
  }
}
@media (min-width: 768px) {
  .sec-merit .elem > .box2:nth-child(even) .txt {
    padding-right: var(--pixel50);
  }
}
.sec-merit .elem > .box2 + .box2 {
  margin-top: var(--pixel80);
}
@media screen and (max-width: 767px) {
  .sec-merit .elem > .box2 + .box2 {
    margin-top: var(--pixel35);
  }
}
.sec-merit .elem .t1 {
  color: var(--col-green2);
  font-size: var(--pixel32);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sec-merit .elem .t1 {
    font-size: var(--pixel20);
    text-align: center;
  }
}
.sec-merit .elem .t1 span {
  display: block;
  font-size: var(--pixel32);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--pixel15);
}
@media screen and (max-width: 767px) {
  .sec-merit .elem .t1 span {
    font-size: var(--pixel28);
    text-align: center;
    margin-bottom: var(--pixel5);
  }
}
.sec-merit .elem .t2 {
  font-size: var(--pixel18);
  margin-top: var(--pixel25);
}
@media screen and (max-width: 767px) {
  .sec-merit .elem .t2 {
    font-size: var(--pixel15);
    margin-top: var(--pixel10);
  }
}

.sec-pay .notes a {
  color: #0B57D0;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .sec-pay .notes > li {
    font-size: var(--pixel16);
    font-weight: 500;
  }
}
.sec-pay .title-h3 {
  font-size: var(--pixel32);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--col-green2);
  margin-top: var(--pixel35);
}
@media screen and (max-width: 767px) {
  .sec-pay .title-h3 {
    font-size: var(--pixel20);
    margin-top: var(--pixel20);
  }
}
.sec-pay .elem {
  display: flex;
  flex-wrap: wrap;
  margin-top: var(--pixel30);
}
@media screen and (max-width: 767px) {
  .sec-pay .elem {
    margin-top: var(--pixel24);
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .sec-pay .elem > .box {
    width: calc(50% - var(--pixel40));
  }
}
.sec-pay .elem > .box dt {
  background-color: var(--col-green2);
  color: #FFF;
  min-height: var(--pixel90);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .sec-pay .elem > .box dt {
    min-height: auto;
    padding: var(--pixel10) 0;
  }
}
.sec-pay .elem > .box dt .t1 {
  font-size: var(--pixel32);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec-pay .elem > .box dt .t1 {
    font-size: var(--pixel20);
  }
}
.sec-pay .elem > .box dt .t1.sizeS {
  font-size: var(--pixel24);
}
@media screen and (max-width: 767px) {
  .sec-pay .elem > .box dt .t1.sizeS {
    font-size: var(--pixel16);
  }
}
.sec-pay .elem > .box dt .t2 {
  font-size: var(--pixel18);
  margin-top: 0.6em;
}
@media screen and (max-width: 767px) {
  .sec-pay .elem > .box dt .t2 {
    font-size: var(--pixel15);
  }
}
.sec-pay .elem > .box dd {
  border: 1px solid var(--col-green2);
  width: 100%;
  font-size: var(--pixel40);
  line-height: 1.6;
  padding: 0.2em 0.5em;
  color: #C72814;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .sec-pay .elem > .box dd {
    min-height: var(--pixel100);
  }
}
.sec-pay .elem > .box dd .t3 {
  display: flex;
  flex-direction: column;
}
.sec-pay .elem > .box dd .sizeS {
  font-size: 62%;
  font-weight: 600;
}
.sec-pay .elem > .box dd .sizeSS {
  font-size: 50%;
}
@media screen and (max-width: 767px) {
  .sec-pay .elem > .box dd {
    font-size: var(--pixel32);
    padding: 0.2em 0.5em;
  }
  .sec-pay .elem > .box dd .sizeM-sp {
    font-size: 93%;
  }
  .sec-pay .elem > .box dd .sizeS {
    font-size: var(--pixel16);
  }
  .sec-pay .elem > .box dd .sizeSS {
    font-size: var(--pixel15);
  }
}
.sec-pay .elem .notes {
  margin-top: 1.5em;
}
@media (min-width: 768px) {
  .sec-pay .elem > .box:nth-child(even) {
    margin-left: var(--pixel40);
  }
  .sec-pay .elem > .box:nth-child(n+3) {
    margin-top: var(--pixel32);
  }
}
@media screen and (max-width: 767px) {
  .sec-pay .elem > .box + .box {
    margin-top: var(--pixel10);
  }
}

.com-cta {
  background-color: #008923;
  padding-top: var(--pixel35);
  padding-bottom: var(--pixel35);
}
@media screen and (max-width: 767px) {
  .com-cta {
    padding-top: var(--pixel32);
    padding-bottom: var(--pixel26);
  }
}
.com-cta .wrap-btn {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .com-cta .wrap-btn {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .com-cta .wrap-btn > * + * {
    margin-left: var(--pixel50);
  }
}
@media screen and (max-width: 767px) {
  .com-cta .wrap-btn > * + * {
    margin-top: var(--pixel15);
  }
}
.com-cta .part-txt {
  font-size: var(--pixel18);
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
  margin-top: var(--pixel20);
}
@media screen and (max-width: 767px) {
  .com-cta .part-txt {
    font-size: var(--pixel15);
    margin-top: var(--pixel16);
  }
}

.btn-sq {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: min(380px, 31.7vw);
  height: var(--pixel93);
  align-items: center;
  color: var(--col-green2);
  background-color: #FFF;
  border-radius: var(--pixel3);
  border-bottom: var(--pixel5) solid var(--col-green3);
  transition: opacity 0.5s;
  /*.t1{
  	position: relative;
  	font-size: var(--pixel40);
  	font-weight: 700;
  	padding-left: 0.7em;
  	@media screen and (max-width: 767px) {
  		font-size: var(--pixel30);
  	}
  	&:before{
  		content: "";
  		display: block;
  		position: absolute;
  		top: 0.2em;
  		left: 0;
  		background-image: url(../images/ico-tel_gre.svg);
  		background-repeat: no-repeat;
  		background-size: 100% auto;
  		background-position: 50%;
  		width: 0.6em;
  		height: 0.6em;
  	}
  }*/
}
@media screen and (max-width: 767px) {
  .btn-sq {
    width: 80vw;
    height: var(--pixel68);
    border-bottom: var(--pixel4) solid var(--col-green3);
  }
}
.btn-sq:hover {
  opacity: 0.6;
  transition: opacity 0s;
}
.btn-sq .t2 {
  font-size: var(--pixel15);
  color: #333;
  margin-top: 0.3em;
}
@media screen and (max-width: 767px) {
  .btn-sq .t2 {
    font-size: var(--pixel13);
  }
}

.btn-sq.type-yel {
  background-color: #FFEA00;
}
.btn-sq.type-yel .t1 {
  font-size: var(--pixel24);
  padding-left: 1.4em;
}
@media screen and (max-width: 767px) {
  .btn-sq.type-yel .t1 {
    font-size: var(--pixel16);
  }
}
.btn-sq.type-yel .t1:before {
  background-image: url(../images/ico-mail_gre.svg);
  width: 1.2em;
  height: 1.2em;
  top: 0;
}
.btn-sq.type-yel:before {
  content: "";
  display: block;
  position: absolute;
  width: var(--pixel10);
  height: var(--pixel10);
  border-top: 1px solid var(--col-green2);
  border-right: 1px solid var(--col-green2);
  right: var(--pixel20);
  top: calc(50% - var(--pixel5));
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .btn-sq.type-yel:before {
    right: var(--pixel16);
    top: calc(50% - var(--pixel4));
    width: var(--pixel8);
    height: var(--pixel8);
  }
}

.com-teltxt {
  position: relative;
  font-size: var(--pixel40);
  font-weight: 700;
  padding-left: 0.7em;
  color: var(--col-green2);
}
@media screen and (max-width: 767px) {
  .com-teltxt {
    font-size: var(--pixel30);
  }
}
.com-teltxt:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 0.3em);
  left: 0;
  background-image: url(../images/ico-tel_gre.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 50%;
  width: 0.6em;
  height: 0.6em;
}

.sec-reason .box,
.sec-flow .box {
  position: relative;
  background-color: #FFF;
  border-bottom: 1px solid var(--col-green2);
  padding: var(--pixel25) var(--pixel47);
  padding-left: 0;
}
@media (min-width: 768px) {
  .sec-reason .box,
  .sec-flow .box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .sec-reason .box,
  .sec-flow .box {
    padding: var(--pixel30) var(--pixel20) var(--pixel30);
  }
}
.sec-reason .box + .box,
.sec-flow .box + .box {
  margin-top: var(--pixel20);
}
@media screen and (max-width: 767px) {
  .sec-reason .box + .box,
  .sec-flow .box + .box {
    margin-top: var(--pixel36);
  }
}
.sec-reason .box .num,
.sec-flow .box .num {
  width: min(180px, 15vw);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .sec-reason .box .num,
  .sec-flow .box .num {
    position: absolute;
    justify-content: flex-start;
    top: calc(var(--pixel17) * -1);
    left: var(--pixel15);
  }
}
.sec-reason .box .num img,
.sec-flow .box .num img {
  height: var(--pixel60);
  width: auto;
}
@media screen and (max-width: 767px) {
  .sec-reason .box .num img,
  .sec-flow .box .num img {
    height: var(--pixel32);
  }
}
@media (min-width: 768px) {
  .sec-reason .box .part-txt,
  .sec-flow .box .part-txt {
    flex: 1;
    padding: var(--pixel10) 0;
  }
}
.sec-reason .box .t1,
.sec-flow .box .t1 {
  font-size: var(--pixel32);
  font-weight: 700;
  line-height: 1.4;
  color: var(--col-green2);
}
@media screen and (max-width: 767px) {
  .sec-reason .box .t1,
  .sec-flow .box .t1 {
    font-size: var(--pixel20);
  }
}
.sec-reason .box .lead,
.sec-flow .box .lead {
  font-size: var(--pixel18);
  font-weight: 500;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .sec-reason .box .lead,
  .sec-flow .box .lead {
    font-size: var(--pixel15);
    margin-top: 0.5em;
  }
}

.sec-flow .box {
  padding: var(--pixel25) var(--pixel50);
  padding-left: 0;
}
@media (min-width: 768px) {
  .sec-flow .box {
    align-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  .sec-flow .box {
    padding: var(--pixel17) var(--pixel20) var(--pixel30);
  }
}
.sec-flow .box + .box {
  position: relative;
  margin-top: var(--pixel57);
}
@media screen and (max-width: 767px) {
  .sec-flow .box + .box {
    margin-top: var(--pixel45);
  }
}
.sec-flow .box + .box:before {
  content: "";
  display: block;
  position: absolute;
  width: var(--pixel30);
  height: var(--pixel15);
  top: calc(var(--pixel34) * -1);
  left: calc(50% - var(--pixel15));
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--col-green2);
}
@media screen and (max-width: 767px) {
  .sec-flow .box + .box:before {
    top: calc(var(--pixel28) * -1);
  }
}
@media screen and (max-width: 767px) {
  .sec-flow .box .num {
    position: absolute;
    top: calc(var(--pixel20) * -1);
    left: auto;
    right: var(--pixel15);
    width: var(--pixel76);
  }
}
.sec-flow .box .num img {
  width: var(--pixel83);
  height: var(--pixel83);
}
@media screen and (max-width: 767px) {
  .sec-flow .box .num img {
    width: var(--pixel76);
    height: var(--pixel76);
  }
}
@media (min-width: 768px) {
  .sec-flow .box .part-txt {
    padding: 0;
  }
}
.sec-flow .box .t1 {
  color: #333;
}
@media (min-width: 768px) {
  .sec-flow .box .t1 {
    font-size: var(--pixel28);
  }
}
@media screen and (max-width: 767px) {
  .sec-flow .box .t1 {
    text-indent: -7.2vw;
    padding-left: 14vw;
  }
}
.sec-flow .box .t1 .sizeL {
  position: relative;
  top: 0em;
  display: inline-block;
  font-size: var(--pixel30);
  font-weight: 400;
  line-height: 1;
  color: var(--col-green2);
  margin-right: 0.3em;
}
@media screen and (max-width: 767px) {
  .sec-flow .box .t1 .sizeL {
    font-size: var(--pixel36);
  }
}
@media (min-width: 768px) {
  .sec-flow .box .lead {
    font-size: var(--pixel18);
  }
}
.sec-flow .box .part-box {
  border: 1px solid #CCC;
  background-color: #F9F7F7;
  width: min(460px, 38.3vw);
  height: auto;
  margin-left: var(--pixel28);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .sec-flow .box .part-box {
    width: 100%;
    margin-left: 0;
    margin-top: 1em;
    padding: var(--pixel20);
  }
}
.sec-flow .box .part-box .com-teltxt {
  font-size: var(--pixel48);
}
@media screen and (max-width: 767px) {
  .sec-flow .box .part-box .com-teltxt {
    font-size: var(--pixel31);
  }
}
.sec-flow .box .part-box .part1 {
  margin-top: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .sec-flow .box .part-box .part1 {
    align-items: flex-start;
    margin-top: 1em;
    letter-spacing: 0;
  }
}
.sec-flow .box .part-box .part1 .t2 {
  font-size: var(--pixel15);
}
@media screen and (max-width: 767px) {
  .sec-flow .box .part-box .part1 .t2 {
    font-size: var(--pixel13);
  }
}
.sec-flow .box .part-box .part1 .t2 + .t2 {
  margin-top: 1.6em;
}
@media (min-width: 768px) {
  .sec-flow .box .part-box .part1 .t2 + .t2 {
    position: relative;
  }
  .sec-flow .box .part-box .part1 .t2 + .t2:before {
    content: "";
    display: block;
    position: absolute;
    top: -0.8em;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #CCC;
  }
}
@media screen and (max-width: 767px) {
  .sec-flow .box .part-box .part1 .t2 + .t2 {
    margin-top: 0.8em;
  }
}

.sec-memb .elem-fill {
  position: relative;
  color: #FFF;
}
@media (min-width: 768px) {
  .sec-memb .elem-fill {
    padding-top: var(--pixel40);
  }
}
.sec-memb .elem-fill .box1 {
  padding-bottom: var(--pixel15);
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-fill .box1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    padding: var(--pixel20) var(--pixel20) var(--pixel10);
  }
}
.sec-memb .elem-fill .box2 {
  padding-bottom: var(--pixel35);
}
.sec-memb .elem-fill .box2 .lead {
  font-size: var(--pixel18);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-fill .box2 .lead {
    font-size: var(--pixel15);
  }
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-fill .box2 {
    padding: 0 var(--pixel20) var(--pixel15);
  }
}
@media (min-width: 768px) {
  .sec-memb .elem-fill .img {
    position: absolute;
    width: min(240px, 20vw);
    top: var(--pixel40);
  }
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-fill .img {
    width: var(--pixel120);
  }
}
.sec-memb .elem-fill .part-name {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-fill .part-name {
    flex: 1;
    padding-left: var(--pixel20);
  }
}
.sec-memb .elem-fill .part-name dt {
  background-color: #FFF;
  color: var(--col-green2);
  font-size: var(--pixel20);
  font-weight: 700;
  padding: 0.3em;
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-fill .part-name dt {
    font-size: var(--pixel13);
  }
}
.sec-memb .elem-fill .part-name dd {
  font-size: var(--pixel32);
  font-weight: 700;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-fill .part-name dd {
    font-size: var(--pixel24);
    display: flex;
    flex-direction: column;
  }
}
.sec-memb .elem-fill .part-name dd > span {
  font-size: 75%;
  font-weight: 400;
  margin-left: 0.7em;
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-fill .part-name dd > span {
    margin-left: 0;
    margin-top: 0.5em;
  }
}
.sec-memb .elem-bord {
  padding: 2px;
}
.sec-memb .elem-bord .elem-in {
  padding-top: var(--pixel30);
  padding-bottom: var(--pixel35);
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-bord .elem-in {
    padding: var(--pixel15) var(--pixel20) var(--pixel15);
  }
}
.sec-memb .elem-bord .title-h4 {
  font-size: var(--pixel20);
  font-weight: 700;
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-bord .title-h4 {
    font-size: var(--pixel16);
  }
}
.sec-memb .elem-bord dl {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--pixel16);
}
@media screen and (max-width: 767px) {
  .sec-memb .elem-bord dl {
    font-size: var(--pixel13);
  }
}
.sec-memb .elem-bord dt {
  width: 5em;
  color: var(--col-green2);
}
.sec-memb .elem-bord dt:nth-of-type(n+2) {
  margin-top: 0.7em;
}
.sec-memb .elem-bord dd {
  width: calc(100% - 5em);
}
.sec-memb .elem-bord dd:nth-of-type(n+2) {
  margin-top: 0.7em;
}
.sec-memb .box + .box {
  margin-top: var(--pixel30);
}
.sec-memb .box:nth-child(odd) {
  background: linear-gradient(to right, rgb(57, 119, 46) 0%, rgb(14, 72, 4) 100%);
}
@media (min-width: 768px) {
  .sec-memb .box:nth-child(odd) .elem-fill {
    padding-right: min(340px, 28.3vw);
    padding-left: var(--pixel50);
  }
  .sec-memb .box:nth-child(odd) .elem-fill .img {
    right: var(--pixel50);
  }
  .sec-memb .box:nth-child(odd) .elem-bord .elem-in {
    padding-left: var(--pixel50);
  }
}
.sec-memb .box:nth-child(even) {
  background: linear-gradient(to left, rgb(57, 119, 46) 0%, rgb(14, 72, 4) 100%);
}
@media (min-width: 768px) {
  .sec-memb .box:nth-child(even) .elem-fill {
    padding-left: min(340px, 28.3vw);
  }
  .sec-memb .box:nth-child(even) .elem-fill .img {
    left: var(--pixel50);
  }
  .sec-memb .box:nth-child(even) .elem-fill .box2 {
    padding-right: var(--pixel50);
  }
  .sec-memb .box:nth-child(even) .elem-bord .elem-in {
    padding-left: min(340px, 28.3vw);
  }
}

/*
@media screen and (max-width: 767px) {
@media (min-width: 768px) {
*/
@media (min-width: 768px) {
  .sec-acce .elem {
    width: min(920px, 76.7vw);
    margin-left: auto;
    margin-right: auto;
  }
}
.sec-acce .elem-gmap > iframe {
  width: 100%;
  height: min(460px, 38.3vw);
}
@media screen and (max-width: 767px) {
  .sec-acce .elem-gmap > iframe {
    height: 44.8vw;
  }
}
.sec-acce .elem-table {
  margin-top: var(--pixel50);
}
@media screen and (max-width: 767px) {
  .sec-acce .elem-table {
    margin-top: var(--pixel20);
  }
}
@media (min-width: 768px) {
  .sec-acce .elem-table dl {
    display: flex;
    flex-wrap: wrap;
  }
}
.sec-acce .elem-table dt, .sec-acce .elem-table dd {
  font-size: var(--pixel18);
  font-weight: 500;
  line-height: 1.8;
  padding: 1em 1.8em;
  border-top: 1px solid #CCC;
}
.sec-acce .elem-table dt:last-of-type, .sec-acce .elem-table dd:last-of-type {
  border-bottom: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .sec-acce .elem-table dt, .sec-acce .elem-table dd {
    font-size: var(--pixel15);
    padding: 0.6em 1em;
  }
}
.sec-acce .elem-table dt {
  background-color: var(--col-green2);
  color: #FFF;
  font-weight: 700;
}
@media (min-width: 768px) {
  .sec-acce .elem-table dt {
    width: 42%;
  }
}
@media (min-width: 768px) {
  .sec-acce .elem-table dd {
    width: 58%;
  }
}
.sec-acce .elem-table a {
  letter-spacing: 0;
}/*# sourceMappingURL=style.css.map */