@charset "UTF-8";
.c-linkbtn {
  padding: 0;
  margin-bottom: 60px;
  margin-top: 30px;
}
.c-linkbtn .link__btn__inner {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link {
  width: 240px;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 25px;
  color: #fff;
  background-color: #5e7c36;
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 0 0 0 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid #5e7c36;
  text-decoration: none;
  transition: color 0.3s;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link span {
  z-index: 2;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link::after {
  position: absolute;
  display: block;
  content: "";
  width: 58px;
  height: 8px;
  transform: translateY(-50%);
  bottom: 30%;
  right: 40px;
  z-index: 2;
  transition: border, right 0.5s;
  background-image: url(../common/images/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: right;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #fff;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  top: -2.5%;
  position: absolute;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link:hover {
  color: #5e7c36;
  transition: color 0.3s;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link:hover::after {
  right: 20px;
  transition: border, right 0.5s;
  background-image: url(../common/images/arrow-green.svg);
}
.c-linkbtn .link__btn__inner .link__btn__inner--link:hover::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #fff;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s;
  top: -2.5%;
  position: absolute;
}
.c-linkbtn .link__btn__inner:last-child {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-linkbtn {
    padding: 0;
    margin-bottom: 60px;
  }
  .c-linkbtn .link__btn__inner {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .c-linkbtn .link__btn__inner li {
    margin: 0 auto 30px;
  }
  .c-linkbtn .link__btn__inner li .link__btn__inner--link {
    display: flex;
    justify-content: cenfter;
    align-items: center;
    color: #fff;
    background-color: #5e7c36;
    font-size: 2rem;
    line-height: 1.2;
  }
  .c-linkbtn .link__btn__inner li:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-linkbtn {
    padding: 0 60px 0;
    margin-bottom: 100px;
  }
  .c-linkbtn .link__btn__inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .c-linkbtn .link__btn__inner li {
    margin: 0;
    width: 31%;
  }
  .c-linkbtn .link__btn__inner li .link__btn__inner--link {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .c-linkbtn .link__btn__inner li:last-child {
    margin: 0;
  }
}

.search-input-wrap {
  display: block;
  text-align: center;
  margin: 0 auto 40px;
}
.search-input-wrap #searchform {
  width: auto;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.search-input-wrap #searchform input {
  border: 1px solid #666666;
  height: 50px;
  width: 320px;
  font-size: 1.6rem;
  padding-left: 8px;
  background-color: #fff;
  padding-right: 40px;
}
.search-input-wrap #searchform input[type=submit] {
  background: url(/common/images/icon-search.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 24px;
  border: none;
  height: 24px;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  background-size: contain;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .search-input-wrap {
    display: block;
    text-align: center;
    margin: 0 auto;
    background-color: #004080;
    padding: 0 0 60px;
  }
}

.p-firstview__imagearea {
  position: relative;
}
.p-firstview__imagearea::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-blend-mode: multiply;
  opacity: 0.4;
}

.p-firstview__imagearea--image {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-firstview__imagearea--image {
    min-height: 400px;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 1280px) {
  .p-firstview__imagearea--image {
    min-height: auto;
    height: 400px;
  }
}

.p-firstview__title {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: max-content;
}
.p-firstview__title .p-firstview__title--ja {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
  padding-bottom: 12px;
  letter-spacing: 0.5rem;
  position: relative;
}
.p-firstview__title .p-firstview__title--ja::after {
  content: "";
  display: block;
  position: absolute;
  width: 100px;
  height: 1px;
  bottom: 0px;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  background-color: #fff;
}
.p-firstview__title .p-firstview__title--en {
  color: #fff;
  font-size: 1.4rem;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  letter-spacing: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-firstview__title .p-firstview__title--ja {
    font-size: 2.8em;
  }
  .p-firstview__title .p-firstview__title--ja::after {
    width: 120px;
  }
  .p-firstview__title .p-firstview__title--en {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-firstview__title {
    transform: translate(-50%, -50%);
    top: 62%;
    left: 50%;
  }
}
@media screen and (min-width: 1280px) {
  .p-firstview__title .p-firstview__title--ja {
    font-size: 3.8em;
  }
  .p-firstview__title .p-firstview__title--en {
    font-size: 3rem;
  }
}

.breadcrumb {
  padding: 10px 15px;
}
.breadcrumb ul {
  display: flex;
  justify-content: flex-start;
  flex-flow: row nowrap;
  align-items: center;
  white-space: nowrap;
  word-break: break-all;
  overflow-x: auto;
  line-height: 1.4;
}
.breadcrumb ul li {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  position: relative;
  font-size: 1.2rem;
}
.breadcrumb ul li:not(:last-child) {
  padding-right: 2.4rem;
}
.breadcrumb ul li:not(:last-child)::after {
  content: "＞";
  color: #251e1c;
  display: block;
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb ul li a {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #5e7c36;
  text-decoration: underline;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 15px 30px;
    margin: 0 auto;
  }
  .breadcrumb ul li {
    font-size: 1.4rem;
  }
  .breadcrumb ul li a {
    font-size: 1.4rem;
  }
}

.p-contents {
  margin: 40px auto 60px;
  padding: 0 20px;
}
.p-contents .p-contents__title {
  margin-bottom: 40px;
}
.p-contents .p-contents__title .p-contents__title--ja {
  color: #484848;
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  padding-bottom: 10px;
  margin-bottom: 8px;
  position: relative;
  font-weight: bold;
}
.p-contents .p-contents__title .p-contents__title--ja::after {
  content: "";
  display: block;
  position: absolute;
  width: 160px;
  height: 1px;
  bottom: 0px;
  transform: translateY(-50%) translateX(-50%);
  left: 50%;
  background-color: #5e7c36;
}
.p-contents .p-contents__title .p-contents__title--en {
  color: #b3b3b3;
  font-size: 1.4rem;
  letter-spacing: 0.5rem;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
}
.p-contents .p-contents__title .p-contents__title--green {
  color: #5e7c36;
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
  line-height: 2;
  position: relative;
  font-weight: normal;
}
.p-contents .p-contents__text {
  font-size: 1.4rem;
  text-align: justify;
  margin: 0 auto 75px;
}
.p-contents .p-contents__subtitle {
  margin: 0 auto 30px;
}
.p-contents .p-contents__subtitle .p-contents__subtitle--greenbg {
  color: #fff;
  font-size: 1.8rem;
  background-color: #5e7c36;
  padding: 15px 20px;
  text-align: left;
  width: 100%;
  font-weight: normal;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin-bottom: 30px;
  letter-spacing: 1rem;
}
.p-contents .p-contents__subtitle .p-contents__subtitle--green {
  font-size: 1.6rem;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  color: #5e7c36;
  letter-spacing: 0.2rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-contents {
    margin: 60px auto 200px;
    padding: 0 30px;
    max-width: 708px;
  }
  .p-contents .p-contents__title {
    margin-bottom: 50px;
  }
  .p-contents .p-contents__title .p-contents__title--ja {
    font-size: 2.4rem;
  }
  .p-contents .p-contents__title .p-contents__title--en {
    font-size: 1.6rem;
  }
  .p-contents .p-contents__title .p-contents__title--green {
    font-size: 2.4rem;
  }
  .p-contents .p-contents__text {
    max-width: 708px;
    margin: 0 auto 100px;
    font-size: 1.6rem;
  }
  .p-contents .p-contents__subtitle {
    margin: 0 auto 40px;
    max-width: 708px;
  }
  .p-contents .p-contents__subtitle .p-contents__subtitle--greenbg {
    font-size: 2.4rem;
  }
  .p-contents .p-contents__subtitle .p-contents__subtitle--green {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-contents {
    margin: 60px auto 200px;
    max-width: 1100px;
  }
  .p-contents .p-contents__text {
    max-width: 1100px;
  }
  .p-contents .p-contents__subtitle {
    max-width: 1100px;
  }
}
@media screen and (min-width: 1280px) {
  .p-contents .p-contents__text {
    font-size: 1.8rem;
  }
}

.p-contents .mb20 {
  margin-bottom: 20px;
}
.p-contents .mb60 {
  margin-bottom: 60px;
}
.p-contents h3 {
  font-size: 1.6rem;
  text-align: left;
  color: #5e7c36;
}
@media screen and (min-width: 768px) {
  .p-contents h3 {
    font-size: 2.1rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-contents h3 {
    font-size: 2.4rem;
  }
}
.p-contents p {
  font-size: 1.3rem;
  text-align: justify;
  color: #251e1c;
}
@media screen and (min-width: 768px) {
  .p-contents p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-contents p {
    font-size: 1.8rem;
  }
}
.p-contents ul {
  text-align: left;
  line-height: 2;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .p-contents ul {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-contents ul {
    font-size: 1.8rem;
  }
}
.p-contents ul li.list--square {
  padding-left: 2rem;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-contents ul li.list--square {
    padding-left: 2.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-contents ul li.list--square {
    padding-left: 2.8rem;
  }
}
.p-contents ul li.list--square::before {
  content: "";
  position: absolute;
  background-color: #5e7c36;
  width: 1.3rem;
  height: 1.3rem;
  display: block;
  left: 0;
  top: 1.3rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-contents ul li.list--square::before {
    width: 1.6rem;
    height: 1.6rem;
    top: 1.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-contents ul li.list--square::before {
    width: 1.8rem;
    height: 1.8rem;
    top: 1.8rem;
  }
}
.p-contents ul li.list--circle {
  padding-left: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contents ul li.list--circle {
    padding-left: 1.6rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-contents ul li.list--circle {
    padding-left: 1.8rem;
  }
}
.p-contents ul li.list--circle:first-child {
  margin-top: 20px;
}
.p-contents ul li.list--circle::before {
  content: "";
  position: absolute;
  background-color: #251e1c;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  display: block;
  left: 0rem;
  top: 1.3rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .p-contents ul li.list--circle::before {
    width: 6px;
    height: 6px;
    top: 1.6rem;
    border-radius: 3px;
  }
}
@media screen and (min-width: 1280px) {
  .p-contents ul li.list--circle::before {
    width: 8px;
    height: 8px;
    top: 1.8rem;
    border-radius: 4px;
  }
}

.p-privacy__linkbtn {
  padding: 0;
}
.p-privacy__linkbtn .link__btn__inner {
  align-items: flex-start;
  justify-content: flex-start;
}/*# sourceMappingURL=privacypolicy.css.map */