@charset "UTF-8";
/*------------------------
    共通
------------------------*/
html {
  font-size: 62.5%;
  box-sizing: border-box;
}
html * {
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  color: #161720;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8f5e7;
}
img {
  max-width: 100%;
  height: auto;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
section {
  max-width: 1160px;
  margin: 0 auto 100px;
  padding: 0 60px;
}
.container {
  position: relative;
  z-index: 0;
}
.container:before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  z-index: 2;
  width: 40px;
  height: 100%;
  background: url("../images/side.png") repeat-y;
}
.container:after {
  content: "";
  position: absolute;
  top: 35px;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 100%;
  background: url("../images/side.png") repeat-y;
}
.container-item {
  min-height: calc( 100vh - 270px );
}

/*****************************
  header 
*****************************/
.header {
  position: relative;
  padding: 40px 60px 60px;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  background: url("../images/top-and-bottom.png") repeat-x;
}
.kv {
  max-width: 1230px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
}
.kv img {
  width: 100%;
}
/*****************************
  main 
*****************************/
/* feature */
.feature {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 910px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.feature-content {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
.feature-text {
  line-height: 1.4;
}
.feature-text .check-icon {
  max-width: 38px;
  margin-right: 15px;
}
.feature-text span {
  font-size: 3rem;
}
/* btns */
.btns {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1366px;
  margin: 0 auto 40px;
  padding: 20px 60px;
  text-align: center;    
}
.btns .btns-item {
  position: relative;
  
  /* width: calc( ( 100% - 30px ) / 2 ); */

  width: 50%;
  margin: 0 auto;

  padding: 10px 0 20px 0;
  line-height: 1.2;
  transition: .3s;
}
.btns .btns-item.btn-js {
  color: #f08b84;
  background: #fff;
  border: 4px solid #f08b84;
  border-radius: 10px;
}
.btns .btns-item.btn-js .btns-item__icon {
  position: absolute;
  top:  50%;
  right: 20px;
  transform: translate(0, -50%);
  transition: .3s;
}
.btns .btns-item.btn-js:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
  transition: .3s;
}
.btns .btns-item.btn-js:hover .btns-item__icon {
  top: 52%;
  transition: .3s;
}
.btns .btns-item .btns-item__icon svg {
  width: 60px;
  height: 60px;
  max-width: 100%;
  fill: #f08b84;
}
.btns .btns-item.btn-com .btns-item__icon {
  position: absolute;
  right: 8px;
  bottom: 5px;
  transform: translate(0,0);
  transition: .3s;
}
.btns .btns-item.btn-com .btns-item__icon svg {
  width: 40px;
  height: 40px;
  fill: #aac61b;
}
.btns .btns-item.btn-com {
  color: #aac61b;
  background: #fff;
  border: 4px solid #aac61b;
  border-radius: 10px;
}
.btns .btns-item.btn-com:hover {
  box-shadow: none;
  transform: translate(5px, 5px);
  transition: .3s;
}
.btns .btns-item.btn-com:hover .btns-item__icon {
  transform: rotate(-5deg);
  transition: .3s;
}
.btns .btns-item__text p:first-of-type {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 2vw;
  font-weight: 500;
  color: #161720;
}
.btns .btns-item__text p:first-of-type::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -20px;
  height: 30px;
  width: 3px;
  border-radius: 3px;
  background: #161720;
  transform: rotate(-30deg);
}
.btns .btns-item__text p:first-of-type::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -17px;
  height: 30px;
  width: 3px;
  border-radius: 3px;
  transform: rotate(30deg);
}
.btns .btns-item.btn-js p:first-of-type::before,
.btns .btns-item.btn-js p:first-of-type::after {
  background: #161720;
  transition: .3s;
}
.btns .btns-item.btn-com p:first-of-type::before,
.btns .btns-item.btn-com p:first-of-type::after {
  background: #161720;
  transition: .3s;
}
.btns .btns-item__text p:last-of-type {
  font-size: 2.65vw;
  font-weight: bold;
}
/* overview */
.overview .section-title {
  margin-bottom: 45px;
}
.def-item {
  margin-bottom: 50px;
}
.def-term {
  width: 200px;
  display: inline-block;
  margin-right: 30px;
  padding: 10px 15px 14px;
  background-color: #6ca177;
  border-radius: 7px;
  color: #fff;
  font-size: 2.6rem;
  text-align: center;
  line-height: 1;
}
.def-desc span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 2.8rem;
}
.def-desc span.font-large {
  margin: 0 3px;
  font-size: 5.8rem;
}
.def-desc span.indent {
  display: inline-block;
  font-size: 1.8rem;
  text-indent: 1.25em;
}
.def-desc span.indent span.under-line {
  display: inline;
  border-bottom: 1px solid #6d6d71;
  font-size: 1.6rem;
  text-indent: 0;
}
.def-desc.caution,
.def-desc.caution span.indent {
  font-size: 1.6rem;
}
.def-desc .gmap {
  line-height: 1;
  display: inline-block;
  color: #aac61b;
  transition: .3s;
}
.def-desc .gmap:hover {
  color: #137839;
  transition: .3s;
}
.def-desc .gmap svg {
  vertical-align: sub;
  display: inline-block;
  margin: 15px 0 2px 5px;
  transition: .3s;
}
.def-desc .gmap:hover svg {
  fill: #137839;
  transition: .3s;
}
.overview {
  max-width: 1160px;
  margin: 0 auto 100px;
  padding: 0 60px;
}
.overview .section-title {
  margin-bottom: 45px;
}
.def-item {
  margin-bottom: 50px;
}
.def-term {
  width: fit-content;
  display: inline-block;
  margin-right: 30px;
  padding: 12px;
  background-color: #137839;
  border-radius: 10px;
  color: #fff;
  font-size: 2.6rem;
  text-align: center;
  line-height: 1;
}
.def-desc__wrap .def-desc {
  position: relative;
  padding-left: 60px;
}
.def-desc__wrap .def-desc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 40px;
  width: 24px;
  height: 24px;
  transform: translate(-50%,0);
  background: url("../images/check.png") no-repeat center / contain;
}
.def-desc__wrap .def-desc:first-of-type::before {
  top: 30px;
}
.def-desc {
  padding: 20px 0 0 30px;
  font-weight: bold;
  font-size: 2.4rem;
}
.def-desc span {
  display: inline-block;
  margin-bottom: 5px;
}
.def-desc span.indent {
  display: inline-block;
  text-indent: 1.25em;
}
/* .def-desc span.indent {
  display: inline-block;
  font-size: 1.8rem;
  text-indent: 1.25em;
} */
.def-desc span.indent span.under-line {
  display: inline;
  border-bottom: 1px solid #6d6d71;
  font-size: 1.6rem;
  text-indent: 0;
}
.def-desc.caution,
.def-desc.caution span.indent {
  font-size: 1.6rem;
}
.def-desc span.caution {
  font-size: 1.6rem;
}
.map {
  margin-top: 30px;
}
/* information */
.information{
  max-width: 940px;
  margin: 200px auto;
}
.information .section-title{
  max-width: 750px;
  margin: 0 auto 80px;
}
.information-item {
  margin-bottom: 30px;
}
.information-link{
  display: flex;
  gap: 50px;
  width: fit-content;
  align-items: baseline;
}
.information-link .time{
  background-color: #9eb731;
  color: #fff;
  margin-bottom: 10px;
  padding: 10px;
  width: fit-content;
  border-radius: 5px;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
}
.information-link .title{
  color: #9eb731;
  font-size: 3.8rem;
  text-decoration: underline;
  transition: .3s;
}
.information-link:hover .title{
  color: #137839;
}

/* post */
.post .header {
  padding: 40px;
}
.post section {
  max-width: 860px;
  margin: 0 auto 100px;
}
.post .section-title{
  max-width: 500px;
  margin: 20px auto 40px;
}
.post-title {
  margin-bottom: 15px;
  font-size: 3.8rem;
  line-height: 1.2;
  color: #9eb731;
}
.post-time {
  font-size: 1.8rem;
  color: #9eb731;
  margin-bottom: 30px;
}
.post-content {
  font-size: 2rem;
  word-break: break-all;
}
.post-content a {
  color: #9eb731;
  text-decoration: underline;
  transition: .3s;
}
.post-content a:hover {
  color: #137839;
  transition: .3s;
}
/*****************************
  footer 
*****************************/
.footer {
  position: relative;
  padding: 80px 60px;
}
.footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -70px;
  width: 100%;
  height: 35px;
  background: url("../images/top-and-bottom.png") repeat-x;
}
.footer-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 40px;
  background: #fff;
  border: 6px solid #137839;
  border-radius: 10px;
}
.footer-inner::before {
  content: "";
  position: absolute;
  top: -122px;
  right: 50px;
  width: 124px;
  height: 122px;
  background: url("../images/walking.png") no-repeat center / contain;
}
body.thanks .footer-inner::before {
  background: url("../images/thanks.png") no-repeat center / contain;
}
.footer-item {
  display: flex;
  max-width: fit-content;
  margin: 0 auto;
  font-size: 1.6rem;
}
.footer-list {
  display: flex;
  align-items: flex-start;
  word-break: break-all;
}
.footer-list__title {
  padding-right: 20px;
}
.footer-list:first-of-type {
  margin-right: 40px;
}
.footer-list:first-of-type .footer-list__desc > p {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.footer-list__desc {
  padding-left: 20px;
  border-left: 2px solid #161720;
}
.footer-list__desc .footer-list__desc-item {
  display: flex;
}
.footer-list__desc .image-wrap {
  margin-right: 25px;
}
.footer-list__desc .image-wrap p:first-of-type {
  max-width: 143px;
  margin-bottom: 12px;
}
.footer-list__desc .image-wrap p:last-of-type {
  max-width: 93px;
}

/* thanks */
.thanks .header {
  padding: 110px 60px 0;
}
.thanks .header .kv img {
  max-width: 760px;
  margin: 0 auto;
}
.thanks main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 50px;
}
.main-content {
  padding: 0 20px;
}
.thanks-text{
  letter-spacing: 0.1em;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}
.thanks .main-content p{
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
.thanks .main-content a{
  display: flex;
  gap: 10px;
  width: 200px;
  height: 60px;
  border: 2px solid #161720;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 10px;
}
.thanks .main-content a:hover{
  background-color: #161720;
  color: #fff;
}
.thanks main {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 50px;
}
.main-content {
  padding: 0 20px;
}
.thanks-text{
  letter-spacing: 0.1em;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}
.thanks .main-content p{
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
.thanks .main-content p:first-of-type {
  margin-bottom: 30px;
  font-weight: bold;
}
.thanks .main-content a{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 200px;
  height: 60px;
  margin: 0 auto;
  background: #f08a84;
  border: 3px solid #f08a84;
  font-weight: bold;
  color: #fff;
  border-radius: 10px;
  transition: .3s;
}
.thanks .main-content a:hover {
  background-color: #fff;
  color: #f08b84;
  border: 3px solid #f08b84;
  transition: .3s;
}

@media screen and (max-width: 1120px) {
  .container-item {
    min-height: calc( 100vh - 570px );
  }
  /*****************************
    footer 
  *****************************/
  .footer-item {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 0 80px;
    flex-direction: column;
  }
  .footer-list {
    flex-direction: column;
  }
  .footer-list:first-of-type {
    margin: 0 0 60px 0;
  }
  .footer-list__desc {
    width: 100%;
    padding: 20px 0 0 0;
    border-left: none;
    border-top: 2px solid #161720;
  }
  .footer-list__title {
    padding: 0 0 10px 0;
  }
}
@media screen and (max-width: 880px) {
  .def-desc__wrap .def-desc:last-of-type::before {
    top: 30px;
  }
}
@media screen and (max-width: 1080px) {
  /*****************************
  main 
  *****************************/
  /* btns */
  .btns .btns-item__text p:first-of-type::before,
  .btns .btns-item__text p:first-of-type::after {
    height: 20px;
  }
  .btns .btns-item .btns-item__icon svg {
    width: 45px;
    height: 45px;
  }
  .btns .btns-item.btn-com .btns-item__icon svg {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 980px) {
  /*****************************
  main 
  *****************************/
  /* feature */
  .feature {
    display: block;
    width: fit-content;
  }
  .feature-content {
    display: block;
  }
  .feature-list {
    margin-bottom: 20px;
  }
  .feature-text:last-of-type span:nth-of-type(2) {
    display: block;
    margin-left: 54px;
  }
  /* information */
  .information .section-title{
    max-width: 600px;
  }
  .information-list {
    padding: 0 40px;
  }
  .information-link {
    display: block;
  }
  .information-link .time {
    font-size: 2rem;
  }
  .information-link .title {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }
  /*****************************
  main 
  *****************************/
  /* feature */
  .feature-text span {
    font-size: 4vw;
  }
  .feature-text .check-icon {
    max-width: 28px;
  }
  .feature-text:last-of-type span:nth-of-type(2) {
    text-align: center;
    margin-left: 0;
  }
  /* overview */
  .def-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .def-term {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    border-radius: 5px;
  }
  .def-desc.caution,
  .def-desc.caution span.indent {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .def-desc__wrap .def-desc {
    padding: 20px 30px 0px 60px;
  }
  .def-desc__wrap .def-desc::before {
    width: 22px;
    height: 22px;
  }
  .def-desc__wrap .def-desc:first-of-type::before,
  .def-desc__wrap .def-desc:last-of-type::before {
    top: 23px;
  }
  .def-desc__wrap .def-desc span {
    font-size: 1.4rem;
  }
  .def-desc {
    padding: 0 30px;
  }
  .def-desc.desc-image img.sp-only {
    margin-top: 40px;
    padding: 0 20px;
  }
  .def-desc span {
    font-size: 2.4rem;
  }
  .def-desc span.font-large {
    font-size: 4.8rem;
  }
  .def-desc span.indent {
    font-size: 1.6rem;
  }
  .def-desc .gmap {
    font-size: 2.4rem;
  }
  .def-desc .gmap svg {
    margin: 15px 0 0px 5px;
  }
  /* btns */
  .btns {
    flex-direction: column;
  }
  .btns .btns-item {
    width: 100%;
  }
  .btns .btns-item:first-of-type {
    margin-bottom: 60px;
  }
  .btns .btns-item.btn-js {
    border: 4px solid #f08b84;
  }
  .btns .btns-item.btn-com {
    border: 4px solid #aac61b;;
  }
  .btns .btns-item__text p:first-of-type {
    font-size: 3vw;
  }
  .btns .btns-item__text p:last-of-type {
    font-size: 4vw;
  }
  .btns .btns-item .btns-item__icon svg {
    width: 60px;
    height: 60px;
  }
  .btns .btns-item.btn-com .btns-item__icon svg {
    width: 40px;
    height: 40px;
  }
  .btns .btns-item__text p:first-of-type::before,
  .btns .btns-item__text p:first-of-type::after {
    width: 2px;
    height: 20px;
  }
  .btns {
    flex-direction: column;
    align-items: center;
  }
  .btn-file {
    border-radius: 5px;
    font-size: 1.5rem;
  }
  .btn-file a {
    padding: 10px;
  }
  .btn-file:first-of-type {
    margin: 0 0 50px 0;
  }
  /* overview */
  .def-item {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .def-term {
    width: 160px;
    margin: 0 0 10px 0;
    font-size: 1.8rem;
  }
  /* information */
  .information {
    margin: 100px auto;
  }
  .information-list {
    padding: 0;
  }
  .information .section-title{
    margin: 0 auto 50px;
  }
  /*****************************
  footer 
  *****************************/
  .footer-inner {
    padding: 40px;
    border: 4px solid #137839;
  }
  /* thanks */
  .thanks .header .kv img {
    max-width: 500px;
  }
  .thanks main {
    padding: 40px 50px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 570px) {
  .def-desc {
    font-size: 1.6rem;
  }
  .footer-list__desc .footer-list__desc-item {
    flex-direction: column;
  }
  .footer-list__desc .image-wrap {
    margin: 0 0 30px 0;
  }
  .post .section-title {
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .container:before,
  .container:after {
    width: 20px;
  }
  section {
    padding: 0 35px;
  }
  /*****************************
  header 
  *****************************/
  .header {
    padding: 40px;
  }
  .thanks .header {
    padding: 60px 60px 0;
  }
  /*****************************
  main 
  *****************************/
  /* feature */
  .feature-text .check-icon {
    max-width: 18px;
    margin-right: 10px;
  }
  /* btns */
  .btns {
    padding: 20px 50px;
  }
  .btns .btns-item:first-of-type {
    margin-bottom: 40px;
  }
  .btns .btns-item .btns-item__icon svg {
    width: 30px;
    height: 30px;
  }
  .btns .btns-item.btn-com .btns-item__icon svg {
    width: 20px;
    height: 20px;
  }
  .btns .btns-item__text p:first-of-type::before,
  .btns .btns-item__text p:first-of-type::after {
    top: 0;
    width: 1px;
    height: 15px;
  }
  /* overview */
  .def-term {
    width: 160px;
    margin: 0 0 10px 0;
    font-size: 1.6rem;
  }
  .def-desc span {
    font-size: 1.8rem;
  }
  .def-desc.desc-image img.sp-only {
    padding: 0 10px;
  }
  .def-desc .gmap {
    font-size: 1.8rem;
  }
  .def-desc .gmap svg {
    width: 25px;
    margin: 15px 0 -4px 5px;
  }
  /*****************************
  main 
  *****************************/
  /* overview */
  .overview {
    padding: 0 35px;
  }
  .def-term {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
  }
  .def-desc {
    padding: 0;
  }
  .def-desc span {
    font-size: 1.8rem;
  }
  .def-desc__wrap .def-desc {
    padding: 20px 0 0 30px;
  }
  .def-desc__wrap .def-desc::before,
  .def-desc__wrap .def-desc:first-of-type::before,
  .def-desc__wrap .def-desc:last-of-type::before {
    left: 10px;
  }
  /* btns */
  .btns .btns-item__text p:last-of-type {
    font-size: 5vw;
  }
  /* information */
  .information-item {
    margin-bottom: 20px;
  }
  .information-link .time {
    font-size: 1.6rem;
  }
  .information-link .title {
    font-size: 4.5vw;
  }
  /* post */
  .post-title {
    font-size: 3rem;
  }
  /*****************************
  footer 
  *****************************/
  .footer {
    padding: 0 35px;
  }
  .footer-inner::before {
    right: 10px;
  }
  .footer-list:first-of-type .footer-list__desc > p {
    font-size: 1.6rem;
  }
  .footer-list__desc .footer-list__desc-item {
    flex-direction: column;
  }
  .footer-list__desc .image-wrap {
    margin: 0 0 30px;
  }
  .footer-list__desc .image-wrap p:first-of-type {
    max-width: 200px;
    margin-bottom: 20px;
  }
  .footer-list__desc .image-wrap p:last-of-type {
    max-width: 200px;
  }
  /* thanks */
  .thanks main {
    margin-bottom: 100px;
  }
  .thanks .main-content {
    padding: 0;
  }
  .post section {
    margin: 0 auto 60px;
  }
  .post-content {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 375px) {
  /*****************************
  header 
  *****************************/
  .header {
    padding: 20px 40px;
  }
  /*****************************
  main 
  *****************************/
  .btns .btns-item {
    padding: 5px 0 15px 0;
  }
  .btns .btns-item.btn-js .btns-item__icon {
    right: 10px;
  }
  .post section {
    margin: 0 auto 40px;
  }
  .post .section-title {
    padding: 0;
  }
  .post-title {
    font-size: 2.6rem;
  }
  .post-content {
    font-size: 1.6rem;
  }
}
