@charset "UTF-8";
/*
Theme Name: original-theme
Author: Kaoru
Author URI: 
Version: 1.0
*/
/*-----------------------------------
テーマ用CSS設定
●基本設定
-----------------------------------*/
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, img, object, table, caption, tbody, tfoot, thead, tr, th, td, address, iframe, code, pre, strong, em, fieldset, form, input, select, optgroup, option, textarea, button, legend, label {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  outline: 0;
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 62.5%;
}

html body {
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}

html body ul, html body ol {
  list-style: none;
}

html body img {
  vertical-align: bottom;
}

html body a, html body object {
  outline: 0;
}

html body a {
  color: #000;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

html body a:hover {
  color: #000;
  opacity: .6;
  text-decoration: none;
}

html body a img {
  -webkit-transition: .3s;
  transition: .3s;
}

html body a img:hover {
  opacity: .6;
}

html body table {
  border-collapse: collapse;
  border-spacing: 0;
}

html body input, html body select, html body textarea, html body button {
  font: unset;
  vertical-align: middle;
}

/*-----------------------------------
テーマ用CSS設定
●オリジナル設定
-----------------------------------*/
/*----- base -----*/
body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6;
  margin: 0 auto;
  min-width: 192.0rem;
  width: 100%;
}

body h1 {
  color: #000;
  font-size: 5rem;
  font-weight: 400;
}

body h2 {
  color: #000;
  font-size: 5rem;
  font-weight: 500;
  margin-bottom: 4rem;
  position: relative;
}

body h2::after {
  background-color: #f2b500;
  content: '';
  height: .4rem;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 10rem;
}

body h2 span {
  color: #f2b500;
  font-size: 5rem;
}

body h3 {
  color: #40801e;
  font-size: 2.8rem;
  font-weight: 700;
}

body h4 {
  font-size: 3.2rem;
}

body h5 {
  font-size: 2.4rem;
}

body h6 {
  font-size: 2.4rem;
  font-weight: 400;
}

body p {
  font-size: 2.0rem;
  font-weight: 300;
}

body main {
  overflow: hidden;
}

/*----- parts -----*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.text-center {
  text-align: center;
}

.contents-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 192.0rem;
}

.contents-wrapper .contents-block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 144.0rem;
}

.contents-wrapper .contents-block .contents-element {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  width: 101.6rem;
}

.contents-title {
  margin-bottom: 8.0rem;
}

/*----- btn -----*/
.btn-block {
  padding-top: 10.0rem;
}

.btn-block .flex-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-block .flex-container a,
.btn-block .flex-container button {
  border: 0.3rem solid #707070;
  border-radius: 5.0rem;
  cursor: pointer;
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 2.0rem;
  padding: 1.0rem 0;
  position: relative;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  width: 45.0rem;
}

.btn-block .flex-container a:after,
.btn-block .flex-container button:after {
  border-right: 0.3rem solid #707070;
  border-top: 0.3rem solid #707070;
  content: '';
  padding: .7rem;
  position: absolute;
  right: 10%;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(55deg) skew(20deg);
          transform: translate(0, -50%) rotate(55deg) skew(20deg);
}

.btn-block .flex-container a:hover,
.btn-block .flex-container button:hover {
  opacity: .6;
}

/*----- pagenation -----*/
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.4rem;
  line-height: 1.4rem;
  text-align: center;
}

.wp-pagenavi span,
.wp-pagenavi a {
  border: 0;
  border-radius: .3rem;
  display: block;
  margin: .2rem .2rem .2rem 0;
  padding: 1.0rem 1.5rem;
  text-decoration: none;
  width: auto;
  color: #000;
  /* 通常の文字色 */
  background: #fff;
  /* 通常の背景色 */
}

.wp-pagenavi span.pages,
.wp-pagenavi a.pages {
  color: #A7A7A7;
  display: inline-block;
}

.wp-pagenavi span.current,
.wp-pagenavi a.current {
  padding: 1.0rem 1.5rem;
  color: #fff;
  /* 現在のページの文字色 */
  background: #4c4c4c;
  /* 現在のページの背景色 */
}

/*----- loading animation -----*/
#loading {
  /* ローディング画面 */
  background-color: #4c4c4c;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  -webkit-transition: all 1s;
  transition: all 1s;
  z-index: 9999;
}

#loading .loading-animation {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#loading .loading-animation .spinner {
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
          animation: sk-scaleout 1.0s infinite ease-in-out;
  background-color: #fff;
  border-radius: 100%;
  height: 100px;
  margin: 2.0rem auto 0;
  width: 100px;
}

#loading .loading-animation p {
  color: #fff;
  font-size: 2.4rem;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes sk-scaleout {
  /* ローディングアニメーション設定 */
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  /* ローディングアニメーション設定 */
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

/*----- fade in -----*/
.fadein {
  /* 画面外にいる状態 */
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

.fadein.scrollin {
  /* 画面内に入った状態 */
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*----- flex container -----*/
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-container .flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-container .flex-item-2 {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}

.flex-container .flex-item-3 {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}

.flex-container .flex-item-7 {
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}

.flex-container .flex-item-8 {
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

/*----- header -----*/
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

header.low {
  background-color: rgba(64, 128, 30, 0.6);
}

header .flex-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 4.0rem 0;
}

header .flex-container img {
  width: 4.0rem;
}

header .flex-container .logo {
  color: #fff;
  font-size: 4.0rem;
}

header .flex-container .logo img {
  width: 25rem;
}

header .flex-container .lang {
  margin-left: 2rem;
}

header .flex-container .menu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
}

header .flex-container .menu li {
  display: inline-block;
  font-weight: 500;
  position: relative;
}

header .flex-container .menu li a {
  color: #fff;
}

header .flex-container .menu li a img {
  vertical-align: middle;
}

header .flex-container .menu a {
  line-height: 3.6;
  display: block;
  padding: 0 2.0rem;
}

header .flex-container .menu a:hover {
  background-color: #f2b500;
  color: #000;
  opacity: 1;
}

.first-view {
  position: relative;
}

.first-view img {
  width: 100%;
}

.first-view .contents-block {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.first-view .contents-block .first-view__text {
  color: #fff;
  text-align: center;
}

.first-view .contents-block .first-view__text h1 {
  color: #fff;
  font-size: 7.0rem;
  font-weight: 500;
}

.first-view .contents-block .first-view__sns {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}

.first-view .contents-block .first-view__sns a {
  margin: 0 3rem;
  width: 3.4rem;
}

.first-view .contents-block .first-view__sns a img {
  width: 100%;
}

/*----- footer -----*/
footer {
  padding: 1.0rem 0;
}

footer .footer__copyright {
  font-size: 1.2rem;
  text-align: center;
}

/*----- top -----*/
/* concept */
.concept .contents-block {
  height: 80rem;
  position: relative;
  width: 105rem;
}

.concept .contents-block .concept__block-text {
  background-color: #fff;
  border: 1rem solid #f2b500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10rem 5rem 9rem 10rem;
  position: absolute;
  top: -10rem;
  right: 0;
  width: 55rem;
}

.concept .contents-block .concept__block-text h2::after {
  position: absolute;
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.concept .contents-block .concept__block-text p {
  font-size: 2rem;
  margin-top: 1.5rem;
}

.concept .contents-block .concept__block-image {
  background-color: #f2b500;
  position: absolute;
  top: 10rem;
  left: 0;
  width: 55rem;
}

.concept .contents-block .concept__block-image img {
  border: 1rem solid #f2b500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

/* benefit */
.benefit {
  padding: 10rem 0;
}

.benefit h2 {
  margin-bottom: 10rem;
  text-align: center;
}

.benefit .benefit__block {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.benefit .benefit__block .benefit__box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  padding: 5rem 0;
  text-align: center;
  width: 45rem;
}

.benefit .benefit__block .benefit__box .benefit__icon {
  background-color: #40801e;
  border-radius: .8rem;
  height: 8rem;
  margin: 0 auto;
  position: relative;
  width: 8rem;
}

.benefit .benefit__block .benefit__box .benefit__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5rem;
}

.benefit .benefit__block .benefit__box h3 {
  color: #40801e;
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 5rem;
}

.benefit .benefit__block .benefit__box p {
  font-size: 2rem;
  margin-top: 2.5rem;
}

/* cotents */
.contents {
  padding: 10rem 0;
}

.contents h2 {
  text-align: center;
}

.contents .contents__area {
  position: relative;
}

.contents .contents__area::before {
  background-color: #ccc;
  content: '';
  height: 90%;
  position: absolute;
  top: 18rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: .2rem;
}

.contents .contents__area .sub-text {
  text-align: center;
}

.contents .contents__area .contents__block {
  margin-top: 8rem;
}

.contents .contents__area .contents__block .contents__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8rem;
  text-align: right;
}

.contents .contents__area .contents__block .contents__box:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: left;
}

.contents .contents__area .contents__block .contents__box .contents__text {
  margin: 0 4rem;
  width: 50%;
}

.contents .contents__area .contents__block .contents__box .contents__text p {
  margin-top: 1.5rem;
}

.contents .contents__area .contents__block .contents__box .contents__img {
  margin: 0 4rem;
  width: 50%;
}

.contents .contents__area .contents__block .contents__box .contents__img img {
  width: 100%;
}

/* costs */
.costs {
  background-color: #4c4c4c;
  padding: 10rem 0 14rem;
}

.costs .contents-block h2 {
  color: #fff;
  text-align: center;
}

.costs .contents-block .sub-text {
  color: #fff;
  text-align: center;
}

.costs .contents-block .costs__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6rem;
  position: relative;
}

.costs .contents-block .costs__block::before {
  background-color: #fff;
  content: '';
  height: 5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: .5rem;
}

.costs .contents-block .costs__block::after {
  background-color: #fff;
  content: '';
  height: .5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 5rem;
}

.costs .contents-block .costs__block .costs__box {
  border: 0.2rem solid #fff;
  border-radius: 50%;
  color: #fff;
  height: 30rem;
  margin: 0 6rem;
  position: relative;
  text-align: center;
  width: 30rem;
}

.costs .contents-block .costs__block .costs__box:nth-of-type(1) {
  border: 0.2rem solid #f2b500;
}

.costs .contents-block .costs__block .costs__box .costs__text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.costs .contents-block .costs__block .costs__box .costs__text h4 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.costs .contents-block .costs__block .costs__box .costs__text p {
  font-size: 2.8rem;
}

.costs .contents-block .costs__block .costs__box .costs__text p.costs__time {
  margin-bottom: 2rem;
}

.costs .contents-block .costs__block .costs__box .costs__text p span {
  color: #f2b500;
  font-size: 4rem;
  font-weight: 500;
}

.costs .contents-block .costs__table {
  background-color: #333;
  border: 0.1rem solid #fff;
  color: #fff;
  margin: 10rem auto 0;
  text-align: center;
  width: 100%;
}

.costs .contents-block .costs__table thead th {
  border: 0.1rem solid #fff;
  font-size: 3rem;
  font-weight: 700;
  padding: 2rem 0;
}

.costs .contents-block .costs__table thead th:nth-child(1) {
  width: 27%;
}

.costs .contents-block .costs__table thead th:nth-child(2) {
  width: 27%;
}

.costs .contents-block .costs__table thead th:nth-child(3) {
  width: 23%;
}

.costs .contents-block .costs__table thead th:nth-child(4) {
  width: 23%;
}

.costs .contents-block .costs__table td {
  border: 0.1rem solid #fff;
  font-size: 2.4rem;
  padding: 2rem 0;
}

.costs .contents-block .costs__table tbody {
  background-color: #555;
}

.costs .contents-block .costs__table tbody:nth-of-type(2) {
  background-color: #777;
}

.costs .contents-block .costs__list {
  margin-top: 2rem;
}

.costs .contents-block .costs__list li {
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 1rem;
  padding-left: 2rem;
  text-indent: -2rem;
}

.costs .contents-block .costs__list li::before {
  content: '★';
}

/* blog */
.blog {
  padding: 10.0rem 0;
}

.blog h2 {
  text-align: center;
}

.blog .blog__block {
  margin-top: 4rem;
}

.blog .blog__block .blog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  width: 144rem;
}

.blog .blog__block .blog__list .blog__box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
  width: 45rem;
}

.blog .blog__block .blog__list .blog__box .blog__image {
  text-align: center;
}

.blog .blog__block .blog__list .blog__box .blog__image img {
  /* サムネイル画像は、縦225px, 横400pxを推奨  */
  max-height: 22.5rem;
  max-width: 40rem;
  height: auto;
  width: auto;
}

.blog .blog__block .blog__list .blog__box .blog__text-block {
  padding: 2.5rem;
}

.blog .blog__block .blog__list .blog__box .blog__text-block .blog__date {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.blog .blog__block .blog__list .blog__box .blog__text-block .blog__title {
  color: #40801e;
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.blog .blog__block .blog__list .blog__box .blog__text-block .blog__content {
  font-size: 2rem;
}

.blog .blog__block .blog__list .blog__box .blog__text-block .blog__more {
  color: #A7A7A7;
  font-size: 2rem;
  margin-top: 4.5rem;
}

.blog .blog__block .blog__list .blog__box .blog__text-block .blog__more img {
  margin-left: 1rem;
  vertical-align: middle;
  width: 1.7rem;
}

.blog .news__comingsoon img {
  width: 42.5rem;
}

.blog .news__title {
  font-size: 3.2rem;
  font-weight: 400;
}

.blog .news__date {
  font-size: 1.8rem;
  margin-top: 2.0rem;
  text-align: right;
}

.blog .news__content {
  font-size: 1.8rem;
  word-break: break-all;
}

.blog .news__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10.0rem;
}

.blog .news__pager a:first-child {
  border-right: 0.3rem solid #A7A7A7;
  padding-right: 2.0rem;
}

.blog .news__pager a:last-child {
  padding-left: 2.0rem;
  text-align: right;
}

/* profile */
.profile .contents-block {
  height: 80rem;
  margin: 20rem auto;
  position: relative;
  width: 105rem;
}

.profile .contents-block .profile__block-text {
  background-color: #fff;
  border: 1rem solid #f2b500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10rem 10rem 9rem 5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 55rem;
}

.profile .contents-block .profile__block-text h2::after {
  position: absolute;
  left: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.profile .contents-block .profile__block-text p {
  margin-top: 1.5rem;
}

.profile .contents-block .profile__block-image {
  background-color: #f2b500;
  position: absolute;
  top: 20rem;
  right: 0;
  width: 55rem;
}

.profile .contents-block .profile__block-image img {
  border: 1rem solid #f2b500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

/* contact */
.contact__top {
  background-color: #eef6ea;
  padding: 15rem 0;
}

.contact__top h2 {
  text-align: center;
}

.contact__top .contact__button a {
  background-color: #40801e;
  border-radius: 100rem;
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  margin: 8rem auto 0;
  padding: 2rem 4rem;
  text-align: center;
  width: 40rem;
}

.contact__top .contact__button a.contact__back {
  width: 22rem;
}

/*----- contact -----*/
.contact {
  background-color: #eef6ea;
  padding: 25rem 0 10rem;
}

.contact h2 {
  text-align: center;
}

.contact .contact__form {
  margin: 0 auto;
}

.contact .contact__form table {
  border-collapse: separate;
  border-spacing: 0 4.0rem;
  margin: 0 auto;
}

.contact .contact__form table tbody tr th,
.contact .contact__form table tbody tr td {
  font-size: 2.4rem;
  padding: 2.0rem;
  text-align: left;
  vertical-align: top;
}

.contact .contact__form table tbody tr th a,
.contact .contact__form table tbody tr td a {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.contact .contact__form table tbody tr th a:hover,
.contact .contact__form table tbody tr td a:hover {
  text-decoration: none;
}

.contact .contact__form table tbody tr th a img,
.contact .contact__form table tbody tr td a img {
  margin-left: 0.5rem;
  vertical-align: unset;
  width: 2.2rem;
}

.contact .contact__form table tbody tr th a img:hover,
.contact .contact__form table tbody tr td a img:hover {
  opacity: 1;
}

.contact .contact__form table tbody tr th {
  font-weight: 500;
  width: 24.0rem;
}

.contact .contact__form table tbody tr th span {
  color: #40801e;
}

.contact .contact__form table tbody tr td {
  width: 73.6rem;
}

.contact .contact__form table tbody tr td input {
  border-bottom: 0.1rem solid #A7A7A7;
  padding: .5rem;
  width: 100%;
}

.contact .contact__form table tbody tr td input.radio {
  width: 2rem;
}

.contact .contact__form table tbody tr td select {
  border-bottom: 0.1rem solid #A7A7A7;
  padding: .5rem;
}

.contact .contact__form table tbody tr td textarea {
  border: 0.1rem solid #A7A7A7;
  border-radius: .5rem;
  padding: .5rem;
  max-width: 73rem;
}

.contact .contact__form ul {
  margin: 5.0rem auto 0;
  width: 85rem;
}

.contact .contact__form ul li {
  font-size: 1.8rem;
  margin-bottom: 1.0rem;
  padding-left: 1.8rem;
  text-indent: -1.8rem;
}

.contact .contact__form ul li::before {
  content: '※';
}

.contact .contact__form ul li a {
  margin: 0 0.5rem;
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.contact .contact__form ul li a:hover {
  text-decoration: none;
}

.contact .contact__form .contact__button {
  background-color: #40801e;
  border-radius: 100rem;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 8rem auto 0;
  padding: 2rem 4rem;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  width: 30rem;
}

.contact .contact__form .contact__button:hover {
  opacity: .6;
}

.contact .contact__form .contact__agree {
  font-size: 2.4rem;
  text-align: center;
}

.contact .contact__form .contact__agree input {
  height: 2.4rem;
  margin-right: 1.0rem;
  width: 2.4rem;
}

.contact .contact__form .mw_wp_form_confirm table {
  background-color: transparent;
}

.contact .contact__form .mw_wp_form_confirm .contact__agree {
  display: none;
}

.contact .contact__form .mw_wp_form_send_error {
  text-align: center;
}

.contact .contact__button {
  border: 0.1rem solid #40801e;
  border-radius: 100rem;
  cursor: pointer;
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  margin: 8rem auto 0;
  padding: 2rem 0;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
  width: 30rem;
}

.contact .contact__button a {
  color: #40801e;
}

.contact .contact__button:hover {
  opacity: .6;
}

/*----- privacy-policy -----*/
.privacy {
  padding: 10.0rem 0;
}

.privacy .privacy__lead {
  margin: 1.0rem auto 7.0rem;
}

.privacy .privacy__lead .privacy__date {
  margin-bottom: 4.0rem;
  text-align: right;
}

.privacy .privacy__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1.0rem;
  margin-top: 4.0rem;
}

.privacy .address {
  margin: 2.0rem 0;
}

.privacy ol {
  counter-reset: item;
  margin: 1.0rem 0;
}

.privacy ol li {
  font-size: 2.0rem;
  text-indent: -2.0rem;
  padding-left: 2.0rem;
  font-weight: 300;
}

.privacy ol li::before {
  counter-increment: item;
  content: counter(item) ". ";
}

.privacy ol ol {
  counter-reset: item2;
  margin: 1.0rem 0;
  padding-left: 4.0rem;
}

.privacy ol ol li {
  font-size: 2.0rem;
  text-indent: -2.0rem;
  padding-left: 2.0rem;
}

.privacy ol ol li::before {
  counter-increment: item2;
  content: counter(item2) ". ";
}

@media only screen and (max-width: 1920px) {
  html {
    font-size: .521vw;
  }
}

@media only screen and (max-width: 960px) {
  /*----- base -----*/
  body h2 {
    font-size: 8rem;
  }
  body h2 span {
    font-size: 8rem;
  }
  body h3 {
    font-size: 6rem;
  }
  body h4 {
    font-size: 5.0rem;
  }
  body h5 {
    font-size: 5.0rem;
  }
  body p {
    font-size: 6.0rem;
  }
  /*----- parts -----*/
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .contents-wrapper {
    width: 100%;
  }
  .contents-wrapper .contents-block {
    width: 90%;
  }
  .contents-wrapper .contents-block .contents-element {
    width: 80%;
  }
  .contents-title {
    margin-bottom: 20.0rem;
  }
  /*----- pagenation -----*/
  .wp-pagenavi {
    font-size: 7.0rem;
    line-height: 7.0rem;
    margin-top: 20.0rem;
  }
  .wp-pagenavi span,
  .wp-pagenavi a {
    border: 0;
    border-radius: 1.0rem;
    margin: .2rem 5.0rem .2rem 0;
    padding: 5.0rem;
  }
  .wp-pagenavi span.current,
  .wp-pagenavi a.current {
    padding: 5.0rem;
  }
  /*----- header -----*/
  header .contents-block {
    padding: 7.5rem 0;
    position: relative;
    /*** Hamberger Menu ***/
  }
  header .contents-block img {
    width: 15.0rem;
  }
  header .contents-block .logo img {
    width: 40rem;
  }
  header .contents-block .hamburger-menu {
    position: fixed;
    top: 0;
    right: 10rem;
  }
  header .contents-block .hamburger-menu input {
    display: none;
  }
  header .contents-block .hamburger-menu .menu__btn {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #40801e;
    border: 0.1rem solid #fff;
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 12rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: absolute;
    top: 4.5rem;
    right: 0;
    z-index: 90;
    width: 35rem;
  }
  header .contents-block .hamburger-menu .menu__btn .menu__text {
    color: #fff;
    display: block;
    font-family: 'Gotham Black Regular';
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    left: 5.0rem;
    top: 4.5rem;
    -webkit-transition: .3s;
    transition: .3s;
  }
  header .contents-block .hamburger-menu .menu__btn .menu__bar {
    background-color: #fff;
    border-radius: 0.3rem;
    content: '';
    display: block;
    height: .5rem;
    position: absolute;
    right: 5.0rem;
    top: 5.5rem;
    -webkit-transition: .3s;
    transition: .3s;
    width: 8rem;
  }
  header .contents-block .hamburger-menu .menu__btn .menu__bar::before, header .contents-block .hamburger-menu .menu__btn .menu__bar::after {
    background-color: #fff;
    border-radius: 0.3rem;
    content: '';
    display: block;
    height: .5rem;
    -webkit-transition: .3s;
    transition: .3s;
    width: 8rem;
  }
  header .contents-block .hamburger-menu .menu__btn .menu__bar::before {
    position: absolute;
    top: -2.5rem;
  }
  header .contents-block .hamburger-menu .menu__btn .menu__bar::after {
    position: absolute;
    top: 2.5rem;
  }
  header .contents-block .hamburger-menu .menu__content {
    background-color: #40801e;
    height: 100%;
    overflow: scroll;
    position: fixed;
    top: 0rem;
    left: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    z-index: 80;
  }
  header .contents-block .hamburger-menu .menu__content .menu {
    display: block;
    padding-top: 20rem;
  }
  header .contents-block .hamburger-menu .menu__content .menu li {
    display: block;
    position: relative;
  }
  header .contents-block .hamburger-menu .menu__content .menu li::before {
    content: none;
  }
  header .contents-block .hamburger-menu .menu__content .menu li a {
    border-bottom: 0.1rem solid #40801e;
    color: #fff;
    display: block;
    font-size: 8rem;
    font-weight: 700;
    line-height: 3;
    position: relative;
    text-align: center;
  }
  header .contents-block .hamburger-menu .menu__content .menu li a::before {
    content: none;
  }
  header .contents-block .hamburger-menu .menu__content .menu li a:hover {
    background-color: transparent;
  }
  header .contents-block .hamburger-menu .menu__content .menu li.header__submenu a {
    font-size: 1.6rem;
    font-weight: 400;
  }
  header .contents-block .hamburger-menu .menu__content .menu li .sub-menu {
    -webkit-animation: unset;
            animation: unset;
    background-color: transparent;
    display: block;
    position: unset;
    width: 100%;
  }
  header .contents-block .hamburger-menu .menu__content .menu li .sub-menu li {
    width: 100%;
  }
  header .contents-block .hamburger-menu .menu__content .menu li .sub-menu li a {
    font-size: 8.0rem;
    padding: 2.0rem 0 2.0rem 74.0rem;
  }
  header .contents-block .hamburger-menu .menu__content .menu li .sub-menu li a::before {
    border-right: 2.5rem solid #49b8f8;
    border-top: 2.5rem solid #49b8f8;
    content: '';
    padding: 2.5rem;
    position: absolute;
    left: calc(50% - 22%);
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
  }
  header .contents-block .hamburger-menu #menu-btn-check:checked ~ .menu__content {
    left: 0;
  }
  header .contents-block .hamburger-menu #menu-btn-check:checked ~ .menu__btn .menu__bar {
    top: 6rem;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  header .contents-block .hamburger-menu #menu-btn-check:checked ~ .menu__btn .menu__bar::before {
    top: 0;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  header .contents-block .hamburger-menu #menu-btn-check:checked ~ .menu__btn .menu__bar::after {
    top: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .first-view {
    height: 100vh;
    width: 100%;
  }
  .first-view img {
    height: 100vh;
    width: auto;
  }
  .first-view .contents-block .first-view__text h1 {
    font-size: 15rem;
  }
  .first-view .contents-block .first-view__sns a {
    margin: 0 10rem;
    width: 12rem;
  }
  .first-view .contents-block .first-view__sns a img {
    height: auto;
  }
  /*----- footer -----*/
  footer {
    padding: 4rem 0;
  }
  footer .footer__copyright {
    font-size: 4rem;
  }
  /*----- top -----*/
  /* concept */
  .concept .contents-block {
    height: auto;
  }
  .concept .contents-block .concept__block-text {
    margin: 10rem auto 0;
    padding: 5rem;
    position: unset;
    width: 80%;
  }
  .concept .contents-block .concept__block-text p {
    font-size: 4rem;
  }
  .concept .contents-block .concept__block-image {
    margin: 10rem auto 0;
    position: unset;
    width: 50%;
  }
  /* benefit */
  .benefit {
    padding: 20rem 0;
  }
  .benefit h2 {
    margin-bottom: 10rem;
    text-align: center;
  }
  .benefit .benefit__block {
    display: block;
  }
  .benefit .benefit__block .benefit__box {
    margin: 0 auto 10rem;
    width: 80%;
  }
  .benefit .benefit__block .benefit__box:last-of-type {
    margin-bottom: 0;
  }
  .benefit .benefit__block .benefit__box .benefit__icon {
    height: 14rem;
    width: 14rem;
  }
  .benefit .benefit__block .benefit__box .benefit__icon img {
    width: 8rem;
  }
  .benefit .benefit__block .benefit__box h3 {
    font-size: 6rem;
  }
  .benefit .benefit__block .benefit__box p {
    font-size: 4rem;
  }
  /* cotents */
  .contents {
    padding: 20rem 0;
  }
  .contents .contents__area::before {
    content: none;
  }
  .contents .contents__area .sub-text {
    font-size: 4rem;
  }
  .contents .contents__area .contents__block {
    margin-top: 15rem;
  }
  .contents .contents__area .contents__block .contents__box {
    display: block;
    margin-bottom: 15rem;
  }
  .contents .contents__area .contents__block .contents__box .contents__text {
    margin: 0 auto;
    width: 100%;
  }
  .contents .contents__area .contents__block .contents__box .contents__text h3 {
    text-align: center;
  }
  .contents .contents__area .contents__block .contents__box .contents__text p {
    font-size: 4rem;
    text-align: center;
  }
  .contents .contents__area .contents__block .contents__box .contents__img {
    margin: 4rem auto 0;
    width: 80%;
  }
  /* costs */
  .costs .contents-block .sub-text {
    font-size: 4rem;
  }
  .costs .contents-block .costs__block {
    margin-top: 10rem;
  }
  .costs .contents-block .costs__block .costs__box {
    border: 0.4rem solid #fff;
    height: 60rem;
    width: 60rem;
  }
  .costs .contents-block .costs__block .costs__box:nth-of-type(1) {
    border: 0.2rem solid #f2b500;
  }
  .costs .contents-block .costs__block .costs__box .costs__text h4 {
    font-size: 7rem;
  }
  .costs .contents-block .costs__block .costs__box .costs__text p {
    font-size: 5rem;
  }
  .costs .contents-block .costs__block .costs__box .costs__text p span {
    font-size: 8rem;
  }
  .costs .contents-block .costs__table thead th {
    font-size: 5rem;
  }
  .costs .contents-block .costs__table td {
    font-size: 4rem;
  }
  .costs .contents-block .costs__list li {
    font-size: 4rem;
  }
  /* blog */
  .blog .blog__block {
    margin-top: 10rem;
  }
  .blog .blog__block .blog__list {
    display: block;
    width: 80%;
  }
  .blog .blog__block .blog__list .blog__box {
    display: block;
    margin: 0 auto 15rem;
    width: 90%;
  }
  .blog .blog__block .blog__list .blog__box .blog__image img {
    max-height: 40rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block {
    padding: 2.5rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__date {
    font-size: 4.5rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__title {
    font-size: 6rem;
    font-weight: 700;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__content {
    font-size: 4rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__more {
    font-size: 4rem;
    text-align: right;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__more img {
    width: 3rem;
  }
  .blog .news__comingsoon img {
    width: 42.5rem;
  }
  .blog .news__title {
    font-size: 3.2rem;
    font-weight: 400;
  }
  .blog .news__date {
    font-size: 1.8rem;
    margin-top: 2.0rem;
    text-align: right;
  }
  .blog .news__content {
    font-size: 1.8rem;
    word-break: break-all;
  }
  .blog .news__pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 10.0rem;
  }
  .blog .news__pager a:first-child {
    border-right: 0.3rem solid #A7A7A7;
    padding-right: 2.0rem;
  }
  .blog .news__pager a:last-child {
    padding-left: 2.0rem;
    text-align: right;
  }
  /* profile */
  .profile .contents-block {
    height: auto;
    margin: 10rem auto 20rem;
    width: 90%;
  }
  .profile .contents-block .profile__block-text {
    margin: 0 auto 10rem;
    padding: 5rem;
    position: unset;
    width: 80%;
  }
  .profile .contents-block .profile__block-text p {
    font-size: 4rem;
  }
  .profile .contents-block .profile__block-image {
    margin: 0 auto;
    position: unset;
    width: 50%;
  }
  /* contact */
  .contact__top .contact__button a {
    font-size: 5rem;
    padding: 2rem 4rem;
    width: 120rem;
  }
  .contact__top .contact__button a.contact__back {
    width: 22rem;
  }
  /*----- contact -----*/
  .contact {
    padding: 35rem 0 10rem;
  }
}

@media only screen and (max-width: 768px) {
  /*----- contact -----*/
  .contact {
    padding: 35rem 0 10rem;
  }
  .contact .contact__form table tbody tr th,
  .contact .contact__form table tbody tr td {
    font-size: 4rem;
  }
  .contact .contact__form table tbody tr th {
    width: 30%;
  }
  .contact .contact__form table tbody tr td {
    width: 70%;
  }
  .contact .contact__form table tbody tr td input.radio {
    width: 3rem;
  }
  .contact .contact__form table tbody tr td textarea {
    max-width: 115rem;
  }
  .contact .contact__form .contact__button {
    font-size: 4.5rem;
    width: 50rem;
  }
}

@media only screen and (max-width: 425px) {
  /*----- parts -----*/
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  /*----- base -----*/
  body h2 {
    font-size: 14rem;
  }
  body h2::after {
    height: 1rem;
    width: 30rem;
  }
  body h2 span {
    font-size: 14rem;
  }
  body h3 {
    font-size: 8rem;
  }
  /*----- pagenation -----*/
  .pagination {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
  .pagination.current {
    padding: .8rem 1.0rem;
  }
  .pagination .pagination span,
  .pagination .pagination a {
    padding: .8rem 1.0rem;
  }
  /*----- header -----*/
  header .contents-block .logo img {
    width: 100rem;
  }
  /*----- footer -----*/
  footer .footer__copyright {
    font-size: 6rem;
  }
  /*----- top -----*/
  /* first-view */
  .first-view .contents-block .first-view__text p {
    font-size: 8rem;
  }
  .concept .contents-block .concept__block-text {
    width: 100%;
  }
  .concept .contents-block .concept__block-text p {
    font-size: 7rem;
  }
  .concept .contents-block .concept__block-image {
    width: 80%;
  }
  .benefit .benefit__block .benefit__box {
    padding: 10rem 0;
  }
  .benefit .benefit__block .benefit__box h3 {
    font-size: 10rem;
  }
  .benefit .benefit__block .benefit__box .benefit__icon {
    height: 25rem;
    width: 25rem;
  }
  .benefit .benefit__block .benefit__box .benefit__icon img {
    width: 16rem;
  }
  .benefit .benefit__block .benefit__box p {
    font-size: 7rem;
  }
  .contents .contents__area .sub-text {
    font-size: 7rem;
  }
  .contents .contents__area .contents__block .contents__box .contents__text p {
    font-size: 6rem;
  }
  .costs .contents-block .sub-text {
    font-size: 7rem;
  }
  .costs .contents-block .costs__block {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .costs .contents-block .costs__block::before {
    height: 15rem;
    width: 1rem;
  }
  .costs .contents-block .costs__block::after {
    height: 1rem;
    width: 15rem;
  }
  .costs .contents-block .costs__block .costs__box {
    height: 65rem;
    width: 65rem;
  }
  .costs .contents-block .costs__block .costs__box .costs__text h4 {
    font-size: 8rem;
  }
  .costs .contents-block .costs__block .costs__box .costs__text p {
    font-size: 7rem;
  }
  .costs .contents-block .costs__block .costs__box .costs__text p span {
    font-size: 10rem;
  }
  .costs .contents-block .costs__list li {
    font-size: 6rem;
    padding-left: 6rem;
    text-indent: -6rem;
    width: 100%;
  }
  .costs .contents-block .costs__table {
    width: 100%;
  }
  .costs .contents-block .costs__table thead th {
    font-size: 6rem;
  }
  .costs .contents-block .costs__table td {
    font-size: 6rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block {
    padding: 8rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__date {
    font-size: 6rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__title {
    font-size: 8rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__content {
    font-size: 6rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__more {
    font-size: 6rem;
  }
  .blog .blog__block .blog__list .blog__box .blog__text-block .blog__more img {
    width: 5rem;
  }
  .profile .contents-block .profile__block-text {
    width: 100%;
  }
  .profile .contents-block .profile__block-text p {
    font-size: 7rem;
  }
  .profile .contents-block .profile__block-image {
    width: 80%;
  }
  .contact__top .contact__button a {
    font-size: 7rem;
    padding: 2rem 0;
    width: 100%;
  }
  /*----- contact -----*/
  .contact {
    padding: 55rem 0 10rem;
  }
  .contact .contact__form table {
    display: block;
  }
  .contact .contact__form table tbody tr {
    display: block;
    margin-bottom: 10rem;
  }
  .contact .contact__form table tbody tr:last-child {
    margin-bottom: 0;
  }
  .contact .contact__form table tbody tr th,
  .contact .contact__form table tbody tr td {
    display: block;
    font-size: 7rem;
    width: 95%;
  }
  .contact .contact__form table tbody tr td {
    width: 95%;
  }
  .contact .contact__form table tbody tr td input.radio {
    width: 6rem;
  }
  .contact .contact__form table tbody tr td textarea {
    max-width: 170rem;
  }
  .contact .contact__form .contact__button {
    font-size: 7.5rem;
    width: 80rem;
  }
}
/*# sourceMappingURL=style.css.map */