@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:200,300,400,500,600,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono:100,100i,300,300i,400,400i,500,500i,700,700i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i&display=swap");
/* サイトの基本のカラー */
/* マウスオーバーのカラー */
/* フォームのエラーのカラー */
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1023px) {
  .pc {
    display: none !important; } }
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important; } }
/* タブレット・SP */
@media screen and (min-width: 1024px) {
  .tbsp {
    display: none !important; } }
/* タブレットのみ */
@media screen and (max-width: 599px) and (min-width: 1024px) {
  .tb {
    display: none !important; } }
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important; } }
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none; } }
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body {
  font-size: 62.5%; }

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box; }

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
  list-style: none; }

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none; }

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through; }

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle; }

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  width: 100%;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    img {
      max-width: 100%; } }

li {
  list-style: none; }

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation; }

@page {
  size: A4;
  margin: 5mm; }
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent; }

a:link {
  color: #4397cd; }

a:visited {
  color: #c7829c; }

a:hover {
  color: #2A8974; }

a:active {
  color: #2A8974; }

/*--------------------------------------------------------

	body設定

----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue","游ゴシック",YuGothic,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
  color: #333333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.5;
  font-size: 1.6rem;
  overflow-x: hidden; }
  @media screen and (max-width: 599px) {
    body {
      font-size: 1.4rem;
      }
    }

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

[hidden] {
  display: none !important;
 }

[disabled] {
  cursor: not-allowed;
 }

:focus:not(:focus-visible) {
  outline: none;
 }

/*--------------------------------------------------------

	box-sizing

----------------------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

/*--------------------------------------------------------

	禁則処理の追加

----------------------------------------------------------*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict; }

/*--------------------------------------------------------

	iOSでのsubmit, buttonのデザインをリセットするCSS

----------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="search"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus,
  input[type="search"]::focus {
    outline-offset: -2px; }

.clearfix::after {
  content: "";
  display: table;
  clear: both; }

.clearfix {
  *zoom: 1; }

/*--------------------------------------------------------

	デバイス関係なし

----------------------------------------------------------*/
.mb00 {
  margin-bottom: 0px !important; }

.mb05 {
  margin-bottom: 5px !important; }

.mb08 {
  margin-bottom: 8px !important; }

.mb10 {
  margin-bottom: 10px !important; }

.mb12 {
  margin-bottom: 12px !important; }

.mb15 {
  margin-bottom: 15px !important; }

.mb20 {
  margin-bottom: 20px !important; }

.mb25 {
  margin-bottom: 25px !important; }

.mb30 {
  margin-bottom: 30px !important; }

.mb35 {
  margin-bottom: 35px !important; }

.mb40 {
  margin-bottom: 40px !important; }

.mb45 {
  margin-bottom: 45px !important; }

.mb50 {
  margin-bottom: 50px !important; }

.mb55 {
  margin-bottom: 55px !important; }

.mb60 {
  margin-bottom: 60px !important; }

.mb65 {
  margin-bottom: 65px !important; }

.mb70 {
  margin-bottom: 70px !important; }

.mb75 {
  margin-bottom: 75px !important; }

.mb80 {
  margin-bottom: 80px !important; }

.mb85 {
  margin-bottom: 85px !important; }

.mb90 {
  margin-bottom: 90px !important; }

.mb95 {
  margin-bottom: 95px !important; }

.mb100 {
  margin-bottom: 100px !important; }

.mb110 {
  margin-bottom: 110px !important; }

.ml00 {
  margin-left: 0px !important; }

.ml05 {
  margin-left: 5px !important; }

.ml10 {
  margin-left: 10px !important; }

.ml15 {
  margin-left: 15px !important; }

.ml20 {
  margin-left: 20px !important; }

.ml25 {
  margin-left: 25px !important; }

.ml30 {
  margin-left: 30px !important; }

.ml35 {
  margin-left: 35px !important; }

.ml40 {
  margin-left: 40px !important; }

.ml45 {
  margin-left: 45px !important; }

.ml50 {
  margin-left: 50px !important; }

.ml55 {
  margin-left: 55px !important; }

.mr00 {
  margin-right: 0px !important; }

.mr05 {
  margin-right: 5px !important; }

.mr10 {
  margin-right: 10px !important; }

.mr20 {
  margin-right: 20px !important; }

.mr30 {
  margin-right: 30px !important; }

.mr40 {
  margin-right: 40px !important; }

.mr50 {
  margin-right: 50px !important; }

.mr60 {
  margin-right: 60px !important; }

.mr70 {
  margin-right: 70px !important; }

.mr80 {
  margin-right: 80px !important; }

.mr90 {
  margin-right: 90px !important; }

.mr100 {
  margin-right: 100px !important; }

.mt00 {
  margin-top: 0px !important; }

.mt05 {
  margin-top: 5px !important; }

.mt10 {
  margin-top: 10px !important; }

.mt15 {
  margin-top: 15px !important; }

.mt20 {
  margin-top: 20px !important; }

.mt25 {
  margin-top: 25px !important; }

.mt30 {
  margin-top: 30px !important; }

.mt35 {
  margin-top: 35px !important; }

.mt40 {
  margin-top: 40px !important; }

.mt45 {
  margin-top: 45px !important; }

.mt50 {
  margin-top: 50px !important; }

.mt55 {
  margin-top: 55px !important; }

.pt00 {
  padding-top: 0px !important; }

.pt05 {
  padding-top: 5px !important; }

.pt06 {
  padding-top: 6px !important; }

.pt07 {
  padding-top: 7px !important; }

.pt08 {
  padding-top: 8px !important; }

.pt10 {
  padding-top: 10px !important; }

.pt15 {
  padding-top: 15px !important; }

.pt20 {
  padding-top: 20px !important; }

.pt25 {
  padding-top: 25px !important; }

.pt30 {
  padding-top: 30px !important; }

.pt35 {
  padding-top: 35px !important; }

.pt40 {
  padding-top: 40px !important; }

.pt45 {
  padding-top: 45px !important; }

.pt50 {
  padding-top: 50px !important; }

.pt55 {
  padding-top: 55px !important; }

.pt60 {
  padding-top: 60px !important; }

.pt65 {
  padding-top: 65px !important; }

.pt70 {
  padding-top: 70px !important; }

.pt75 {
  padding-top: 75px !important; }

.pt80 {
  padding-top: 80px !important; }

.pb00 {
  padding-bottom: 0px !important; }

.pb05 {
  padding-bottom: 5px !important; }

.pb10 {
  padding-bottom: 10px !important; }

.pb15 {
  padding-bottom: 15px !important; }

.pb20 {
  padding-bottom: 20px !important; }

.pb25 {
  padding-bottom: 25px !important; }

.pb30 {
  padding-bottom: 30px !important; }

.pl00 {
  padding-left: 0px !important; }

.pl05 {
  padding-left: 5px !important; }

.pl10 {
  padding-left: 10px !important; }

.pl15 {
  padding-left: 15px !important; }

.pl20 {
  padding-left: 20px !important; }

.pl25 {
  padding-left: 25px !important; }

.pl30 {
  padding-left: 30px !important; }

@media print {
  .sp {
    display: none !important; }

  body {
    width: 1140px;
    -webkit-print-color-adjust: exact; }

  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/ }
@page {
  size: A4;
  margin: 12.7mm 9.7mm; }
.main {
  display: block; }
  @media screen and (min-width: 1025px) {
    .main {
      padding-top: 86px; } }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .main {
      padding-top: 68px; } }
  @media screen and (max-width: 599px) {
    .main {
      padding-top: 45px; } }

.header {
  background-color: #fff;
  padding: 20px 20px 16px 36px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  height: 86px;
  z-index: 2;
  position: fixed;
  width: 100%;
  padding-right: 540px; }
  @media screen and (max-width: 1350px) and (min-width: 1025px) {
    .header {
      padding-left: 15px; } }
  @media screen and (max-width: 1053px) and (min-width: 1025px) {
    .header {
      font-size: 1.4rem; } }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .header {
      padding-left: 20px;
      height: 68px;
      padding-top: 14px;
      padding-right: 0; } }
  @media screen and (max-width: 599px) {
    .header {
      display: block;
      padding: 12px 10px 14px 12px;
      height: 45px;
      padding-right: 0; } }

.sitelogo {
  width: 160px;
  margin-right: 45px; }
  @media screen and (max-width: 1350px) and (min-width: 1025px) {
    .sitelogo {
      margin-right: 10px;
      width: 200px; } }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .sitelogo {
      width: 120px; } }
  @media screen and (max-width: 599px) {
    .sitelogo {
      width: 80px; } }
  .sitelogo img {
    width: 100%; }

.tagline {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-end;
  font-weight: bold; }
  @media screen and (max-width: 1024px) {
    .tagline {
      display: none; } }
@media screen and (min-width: 600px) {
  .header-btn__list {
    width: 260px;
    position: absolute;
    top: 0;
    right: 0; } }
.header-btn__list__item a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center; }
  .header-btn__list__item a span {
    position: relative;
    padding-left: 24px; }
    .header-btn__list__item a span::before {
      content: '';
      display: inline-block;
      position: absolute;
      top: 2px;
      left: 0;
      bottom: 0;
      margin: auto; }
.header-btn__list__item__tel {
  display: block;
  background-color: #2A8974;
  color: #fff !important;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1px;
  height: 43px;
  font-size: 2.1rem; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .header-btn__list__item__tel {
      height: 34px; } }
  .header-btn__list__item__tel span::before {
    background-image: url(../../assets/img/common/tel_icon_white.svg);
    background-size: 13px 18px;
    width: 13px;
    height: 18px; }
.header-btn__list__item__mail {
  display: block;
  background-color: #8E876F;
  color: #fff !important;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 600;
  text-align: center;
  height: 42px;
  background-size: 200% 100%;
  background-image: -webkit-linear-gradient(left, transparent 50%, #666150 50%);
  background-image: linear-gradient(to right, transparent 50%, #666150 50%);
  -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
  transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .header-btn__list__item__mail {
      height: 33px; } }
  .header-btn__list__item__mail:hover {
    background-color: #666150;
    background-position: -100% 100%; }
  .header-btn__list__item__mail span::before {
    background-image: url(../../assets/img/common/mail_icon_white.svg);
    background-size: 18px 13px;
    width: 18px;
    height: 13px; }

.footer {
  padding: 0px 0 40px 0; }

.footer-copy {
  background-image: url(../../assets/img/common/footer_bg.jpg);
  background-size: cover;
  background-position: center center;
  padding: 80px 0 80px 0;
  text-align: center;
  font-weight: 700;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .footer-copy {
      padding: 40px 0 40px 0; } }
  @media screen and (max-width: 599px) {
    .footer-copy {
      padding: 30px 10px 30px 10px; } }
  .footer-copy__title {
    color: #fff;
    font-size: 3.0rem;
    margin-bottom: 5px; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .footer-copy__title {
        font-size: 2.4rem; } }
    @media screen and (max-width: 599px) {
      .footer-copy__title {
        font-size: 1.8rem; } }
  .footer-copy__data {
    font-size: 2.0rem;
    color: #caedff; }
    @media screen and (max-width: 599px) {
      .footer-copy__data {
        font-size: 1.6rem; } }

.footer-data {
  padding-top: 40px; }
  @media screen and (max-width: 1200px) {
    .footer-data {
      padding-left: 20px;
      padding-right: 20px; } }
  @media screen and (max-width: 599px) {
    .footer-data {
      padding-top: 30px;
      padding-left: 10px;
      padding-right: 10px; } }
  .footer-data__wrap {
    max-width: 1200px;
    margin: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex; }
    @media screen and (max-width: 599px) {
      .footer-data__wrap {
        display: block; } }
  .footer-data__logo {
    width: 200px;
    margin-right: 80px; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .footer-data__logo {
        width: 160px; } }
    @media screen and (max-width: 599px) {
      .footer-data__logo {
        margin: 0 auto 20px;
        width: 120px; } }
    .footer-data__logo img {
      width: 100%; }

.footer-add {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-size: 1.4rem;
  margin-bottom: 20px; }
  .footer-add dt {
    color: #2A8974;
    font-weight: bold;
    width: 7em; }
  .footer-add dd {
    width: calc(100% - 7em);
    margin-bottom: 20px;
    line-height: 1.8; }
    @media screen and (max-width: 599px) {
      .footer-add dd {
        margin-bottom: 10px; } }

.copyright {
  max-width: 1200px;
  margin: auto;
  font-size: 1.2rem;
  text-align: right; }
  @media screen and (max-width: 1200px) {
    .copyright {
      padding-left: 20px;
      padding-right: 20px; } }
  @media screen and (max-width: 1024px) {
    .copyright {
      text-align: center; } }

.contact {
  padding: 160px 0 160px 0; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .contact {
      padding: 80px 0 80px 0; } }
  @media screen and (max-width: 599px) {
    .contact {
      padding: 40px 0 40px 0; } }
  .contact.beenet {
    background-image: url(../../assets/img/common/contact-bg.jpg);
    background-size: cover; }
  .contact-box {
    background-color: rgba(255, 255, 255, 0.9);
    width: 62.5%;
    margin: auto;
    padding: 60px 60px 60px 60px; }
    @media screen and (max-width: 1620px) and (min-width: 1025px) {
      .contact-box {
        width: 90%;
        padding: 20px 20px 20px 20px; } }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .contact-box {
        padding: 40px 20px 40px 20px;
        width: 90%; } }
    @media screen and (max-width: 599px) {
      .contact-box {
        padding: 20px 20px 20px 20px;
        width: 90%; } }
  .contact__title {
    font-size: 3.2rem;
    color: #2A8974;
    font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    position: relative;
    text-align: center;
    margin-bottom: 60px; }
    @media screen and (max-width: 599px) {
      .contact__title {
        font-size: 2.4rem;
        margin-bottom: 30px; } }
    .contact__title::after {
      content: 'CONTACT';
      display: inline-block;
      position: absolute;
      left: 0;
      right: 0;
      bottom: -30px;
      margin: auto;
      color: rgba(42, 137, 116, 0.5);
      font-size: 1.6rem;
      text-align: center;
      font-family: "Roboto Mono", "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", monospace;
      width: 100%;
      font-weight: 400;
      letter-spacing: 2px; }
      @media screen and (max-width: 599px) {
        .contact__title::after {
          font-size: 1.2rem;
          bottom: -18px; } }
  .contact__read {
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 24px; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .contact__read {
        font-size: 1.6rem; } }
    @media screen and (max-width: 599px) {
      .contact__read {
        font-size: 1.5rem;
        margin-bottom: 10px; } }
  .contact__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 599px) {
      .contact__list {
        display: block; } }
    .contact__list__item {
      width: calc(98% / 3); }
      @media screen and (max-width: 599px) {
        .contact__list__item {
          width: 100%;
          margin-bottom: 5px; } }
      .contact__list__item__link {
        display: block;
        background-color: #8E876F;
        color: #fff !important;
        height: 84px;
        vertical-align: middle;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
        font-size: 2.4rem;
        font-weight: 700;
        position: relative;
        line-height: 1.0;
        background-size: 200% 100%;
        background-image: -webkit-linear-gradient(left, transparent 50%, #666150 50%);
        background-image: linear-gradient(to right, transparent 50%, #666150 50%);
        -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
        transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease; }
        @media screen and (max-width: 1024px) and (min-width: 600px) {
          .contact__list__item__link {
            font-size: 1.6rem;
            height: 52px; } }
        @media screen and (max-width: 599px) {
          .contact__list__item__link {
            height: 52px;
            font-size: 1.8rem; } }
        .contact__list__item__link:hover {
          background-color: #666150;
          background-position: -100% 100%; }
        .contact__list__item__link span::before {
          content: '';
          display: inline-block;
          position: relative;
          top: 0;
          left: 0; }
        .contact__list__item__link.trial {
          background-color: #30b89b;
          background-image: -webkit-linear-gradient(left, transparent 50%, #298E79 50%);
          background-image: linear-gradient(to right, transparent 50%, #298E79 50%);
          -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
          transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease; }
          .contact__list__item__link.trial:hover {
            background-color: #298E79; }
          .contact__list__item__link.trial span::before {
            background-image: url(../../assets/img/common/pc_icon_white.svg);
            background-size: 32px 25px;
            width: 32px;
            height: 25px;
            margin-right: 10px;
            top: 3px; }
            @media screen and (max-width: 1024px) {
              .contact__list__item__link.trial span::before {
                background-size: calc(32px / 1.5) calc(25px / 1.5);
                width: calc(32px / 1.5);
                height: calc(25px / 1.5);
                top: 2px;
                margin-right: 5px; } }
        .contact__list__item__link.tel {
          font-size: 3.4rem;
          font-family: "Roboto Mono", "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", monospace; }
          @media screen and (max-width: 1024px) and (min-width: 600px) {
            .contact__list__item__link.tel {
              font-size: 2.0rem; } }
          @media screen and (max-width: 599px) {
            .contact__list__item__link.tel {
              font-size: 2.0rem; } }
          .contact__list__item__link.tel span::before {
            background-image: url(../../assets/img/common/tel_icon_white.svg);
            background-size: 24px 34px;
            width: 24px;
            height: 34px;
            margin-right: 10px;
            top: 4px; }
            @media screen and (max-width: 1024px) {
              .contact__list__item__link.tel span::before {
                background-size: calc(24px / 1.5) calc(34px / 1.5);
                width: calc(24px / 1.5);
                height: calc(34px / 1.5);
                top: 3px;
                margin-right: 5px; } }
        .contact__list__item__link.mail span::before {
          background-image: url(../../assets/img/common/mail_icon_white.svg);
          background-size: 34px 27px;
          width: 34px;
          height: 27px;
          margin-right: 10px;
          top: 4px; }
          @media screen and (max-width: 1024px) {
            .contact__list__item__link.mail span::before {
              background-size: calc(34px / 1.5) calc(27px / 1.5);
              width: calc(34px / 1.5);
              height: calc(27px / 1.5);
              top: 3px;
              margin-right: 5px; } }

.sp-contact {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  height: 60px; }
  .sp-contact__item {
    width: 50%;
    line-height: 1.2; }
    .sp-contact__item a {
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      align-items: center;
      height: 60px; }
      .sp-contact__item a span {
        position: relative;
        padding-left: 50px; }
        .sp-contact__item a span::before {
          content: '';
          display: inline-block;
          position: absolute;
          top: 2px;
          bottom: 0;
          margin: auto; }
    .sp-contact__item__tel {
      display: block;
      background-color: #2A8974;
      color: #fff !important;
      font-family: 'Roboto', sans-serif;
      font-weight: 600;
      font-size: 1.6rem; }
      .sp-contact__item__tel span::before {
        background-image: url(../../assets/img/common/tel_icon_white.svg);
        background-size: 22px 30px;
        width: 22px;
        height: 30px;
        left: 20px; }
    .sp-contact__item__mail {
      display: block;
      background-color: #8E876F;
      color: #fff !important;
      font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
      font-weight: 600;
      background-size: 200% 100%;
      background-image: -webkit-linear-gradient(left, transparent 50%, #666150 50%);
      background-image: linear-gradient(to right, transparent 50%, #666150 50%);
      -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
      transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
      font-size: 1.6rem; }
      .sp-contact__item__mail:hover {
        background-color: #666150;
        background-position: -100% 100%; }
      .sp-contact__item__mail span::before {
        background-image: url(../../assets/img/common/mail_icon_white.svg);
        background-size: 22px 18px;
        width: 22px;
        height: 18px;
        left: 20px; }

#loader {
  width: 220px;
  height: auto;
  display: none;
  position: fixed;
  _position: absolute;
  /* IE6対策 */
  top: 55%;
  left: 50%;
  margin-top: -110px;
  /* heightの半分のマイナス値 */
  margin-left: -110px;
  /* widthの半分のマイナス値 */
  z-index: 10;
  /* #fadeより多い値を入れて下さい */ }
  @media screen and (max-width: 599px) {
    #loader {
      width: 180px;
      margin-top: -90px;
      margin-left: -90px; } }
  #loader img {
    width: 100%; }

#fade {
  width: 100%;
  height: 100%;
  display: none;
  background-color: #fff;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  /* #loaderより少ない値を入れて下さい */ }

.top-main__copy__wrap {
  opacity: 0;
  -webkit-animation: sectop-main__copy__wrap 0.5s ease 2s 1 forwards;
  animation: sectop-main__copy__wrap 0.5s ease 2s 1 forwards; }

@-webkit-keyframes sectop-main__copy__wrap {
  0% {
    -webkit-transform: translateX(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0); } }
@keyframes sectop-main__copy__wrap {
  0% {
    -ms-transform: translateX(-20px);
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    -ms-transform: translateX(0);
    transform: translateX(0); } }
.top-main__award {
  opacity: 0;
  -webkit-animation: top-main__award 0.5s ease 3s 1 forwards;
  animation: top-main__award 0.5s ease 3s 1 forwards; }

@-webkit-keyframes top-main__award {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes top-main__award {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.top-main__read__title,
.top-main__read__text,
.top-service__title,
.top-service__wrap,
.top-deale__title,
.top-deale__wrap,
.top-support__data,
top-support__img,
.top-about__title,
.about-tbl {
  opacity: 0; }

.sec-title {
  opacity: 0; }

.sec-title {
  -webkit-animation: sec-title 0.5s ease 0.5s 1 forwards;
  animation: sec-title 0.5s ease 0.5s 1 forwards; }

@-webkit-keyframes sec-title {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes sec-title {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
.sec-wrap {
  opacity: 0; }

.sec-wrap {
  -webkit-animation: sec-wrap 0.5s ease 0.5s 1 forwards;
  animation: sec-wrap 0.5s ease 0.5s 1 forwards; }

@-webkit-keyframes sec-wrap {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0); } }
@keyframes sec-wrap {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.top-support-bg {
  opacity: 0; }

.top-support-bg {
  -webkit-animation: top-support-bg 0.5s ease 1s 1 forwards;
  animation: top-support-bg 0.5s ease 1s 1 forwards; }

@-webkit-keyframes top-support-bg {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes top-support-bg {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both; }

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite; }

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s; }

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s; }

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s; }

.animated.fast {
  -webkit-animation-duration: .8s;
  animation-duration: 0.8s; }

.animated.faster {
  -webkit-animation-duration: .5s;
  animation-duration: 0.5s; }

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s; }

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s; }

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -webkit-transition: none !important;
    animation: unset !important;
    transition: none !important; } }
.balloon-title__sub {
  border: 3px solid #333333;
  transform: skewX(-10deg);
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.0rem;
  font-weight: 700;
  position: relative;
  padding: 12px 10px 12px 10px;
  margin: 0 auto 40px; }
  @media screen and (max-width: 599px) {
    .balloon-title__sub {
      font-size: 1.4em;
      margin-bottom: 20px;
      padding: 8px 8px 8px 8px; } }
  .balloon-title__sub::before, .balloon-title__sub::after {
    content: '';
    display: inline-block;
    position: absolute;
    margin: auto;
    transform: skewX(10deg); }
  .balloon-title__sub::before {
    bottom: -61px;
    left: 50%;
    margin-left: -15px;
    border: 31px solid transparent;
    border-top: 31px solid #fff;
    z-index: 2; }
    @media screen and (max-width: 599px) {
      .balloon-title__sub::before {
        bottom: -41px;
        border: 21px solid transparent;
        border-top: 21px solid #fff; } }
  .balloon-title__sub::after {
    bottom: -68px;
    left: 50%;
    margin-left: -17px;
    border: 34px solid transparent;
    border-top: 34px solid #333;
    z-index: 1; }
    @media screen and (max-width: 599px) {
      .balloon-title__sub::after {
        bottom: -48px;
        border: 24px solid transparent;
        border-top: 24px solid #333; } }
  .balloon-title__sub.new {
    color: #2A8974;
    border: 3px solid #2A8974;
    max-width: 400px;
    background-color: #fff; }
    @media screen and (max-width: 599px) {
      .balloon-title__sub.new {
        width: 60%; } }
    .balloon-title__sub.new::before {
      border-top: 31px solid #fff; }
      @media screen and (max-width: 599px) {
        .balloon-title__sub.new::before {
          border-top: 21px solid #fff; } }
    .balloon-title__sub.new::after {
      border-top: 34px solid #2A8974; }
      @media screen and (max-width: 599px) {
        .balloon-title__sub.new::after {
          border-top: 24px solid #2A8974; } }
  .balloon-title__sub.option {
    max-width: 400px;
    color: #2A8974;
    background-color: #fff;
    border-color: #2A8974; }
    @media screen and (max-width: 599px) {
      .balloon-title__sub.option {
        width: 80%; } }
    .balloon-title__sub.option::before {
      border-top: 31px solid #fff; }
      @media screen and (max-width: 599px) {
        .balloon-title__sub.option::before {
          border-top: 21px solid #fff; } }
    .balloon-title__sub.option::after {
      border-top: 34px solid #2A8974; }
      @media screen and (max-width: 599px) {
        .balloon-title__sub.option::after {
          border-top: 24px solid #2A8974; } }
  .balloon-title__sub.presen {
    max-width: 480px; }
    @media screen and (max-width: 599px) {
      .balloon-title__sub.presen {
        width: 90%; } }

.balloon-title__main {
  margin-bottom: 20px;
  font-size: 5.0rem;
  text-align: center;
  color: #2A8974;
  font-weight: 700;
  font-style: italic; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .balloon-title__main {
      font-size: 4.2rem; } }
  @media screen and (max-width: 599px) {
    .balloon-title__main {
      font-size: 2.4rem;
      margin-bottom: 20px; } }
  .balloon-title__main.new {
    font-family: "Roboto Mono", "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", monospace;
    font-size: 7.0rem; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .balloon-title__main.new {
        font-size: 5.0rem;
        margin-bottom: 20px; } }
    @media screen and (max-width: 599px) {
      .balloon-title__main.new {
        font-size: 3.2rem; } }

  .balloon-title__main.option {
    color: #fff; }

.top-main img {
  width: 100%; }
.top-main__item--01 {
  position: relative; }
  .top-main__item--01 .top-main__item__copy01 {
    width: 900px;
    position: absolute;
    top: 28%;
    left: 10%;
    z-index: 10; }
    @media screen and (max-width: 1280px) and (min-width: 1024px) {
      .top-main__item--01 .top-main__item__copy01 {
        width: 700px;
        top: 24%; } }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .top-main__item--01 .top-main__item__copy01 {
        width: 500px;
        top: 24%;
        left: 5%; } }
    @media screen and (max-width: 1023px) and (min-width: 881px) {
      .top-main__item--01 .top-main__item__copy01 {
        width: 600px;
        top: 24%; } }
    @media screen and (max-width: 599px) {
      .top-main__item--01 .top-main__item__copy01 {
        top: 20%;
        left: 3%;
        width: 250px; } }
    @media screen and (max-width: 649px) and (min-width: 501px) {
      .top-main__item--01 .top-main__item__copy01 {
        width: 400px;
        top: 20%; } }
    @media screen and (max-width: 500px) and (min-width: 400px) {
      .top-main__item--01 .top-main__item__copy01 {
        width: 300px;
        top: 20%; } }
.about {
  background-image: url(../../assets/img/top/about-bg.jpg);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 110px 0 90px 0; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .about {
      padding: 40px 0px 0px 0px;
      background-position: 90% bottom; } }
  @media screen and (max-width: 599px) {
    .about {
      padding: 0px 0px 20px 0px;
      background-position: 90% bottom; } }
  .about__wrap {
    overflow: hidden;
    max-width: 1560px; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .about__wrap {
        padding-left: 40px;
        padding-right: 40px; } }
    @media screen and (max-width: 599px) {
      .about__wrap {
        padding-left: 16px;
        padding-right: 16px; } }

.about__img {
  width: 44%;
  float: left; }
  .about__img img {
    width: 100%; }

.about__data {
  width: 50%;
  float: right;
  margin-top: 20px; }
  @media screen and (max-width: 1600px) and (min-width: 1025px) {
    .about__data {
      padding-right: 40px; } }
  @media screen and (max-width: 1024px) {
    .about__data {
      width: 100%;
      float: none; } }

.about__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 700;
  color: #2A8974;
  font-size: 3.6rem;
  margin-bottom: 10px; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .about__title {
      font-size: 3.2rem;
      text-align: center; } }
  @media screen and (max-width: 599px) {
    .about__title {
      font-size: 2.0rem;
      text-align: center; } }

.about__text {
  line-height: 2.0;
  font-weight: bold;
  font-size: 1.8rem; }
  @media screen and (max-width: 599px) {
    .about__text {
      font-weight: normal;
      font-size: 1.4rem; } }
  .about__text__img {
    width: 50%;
    float: left;
    margin: 20px 15px 30px -40px; }
    .about__text__img img {
      width: 100%; }
.new__text {
  line-height: 2.0;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
 }
  @media screen and (max-width: 599px) {
    .about__text {
      font-size: 1.4rem; } }

.new-point__wrap {
  max-width: 1600px;
  margin: auto;
  padding: 40px 10px 40px 10px;
  *zoom: 1; }
.new-point__wrap:before, .new-point__wrap:after {
  content: "";
  display: table; }
.new-point__wrap:after {
  clear: both; }

.new-point__title {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 6.0rem;
  font-style: italic;
  text-align: center;
  color: #2A8974;
  position: relative;
  margin-bottom: 100px; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .new-point__title {
      font-size: 3.8rem;
      margin-bottom: 60px; } }
  @media screen and (max-width: 599px) {
    .new-point__title {
      font-size: 3.0rem;
      margin-bottom: 40px; } }
  .new-point__title::before {
    content: 'REASONS LOVED FOR MANY YEARS';
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    margin: auto;
    color: rgba(142, 135, 111, 0.5);
    font-size: 2.4rem; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .new-point__title::before {
        font-size: 1.6rem;
        bottom: -30px; } }
    @media screen and (max-width: 599px) {
      .new-point__title::before {
        font-size: 1.4rem;
        bottom: -20px; } }

.new-point__sub-copy {
  color: #2A8974;
  font: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px; }
  @media screen and (max-width: 599px) {
    .new-point__sub-copy {
      font-size: 2.4rem; } }

.new-point__sub-text {
  font: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px; }
  @media screen and (max-width: 599px) {
    .new-point__sub-text {
      font-size: 1.6rem;
      margin-bottom: 30px; } }

.new-point__box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between; }
  @media screen and (max-width: 1024px) {
    .new-point__box {
      display: block; } }
  .new-point__box__item {
    width: 33.125%;
    background-color: #fff;
    box-shadow: 0 10px 25px 0 rgba(142, 135, 111, 0.5);
   }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .new-point__box__item {
        width: 100%;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        margin-bottom: 10px; } }
    @media screen and (max-width: 599px) {
      .new-point__box__item {
        width: 100%;
        margin-bottom: 5px; } }
    .new-point__box__item__img {
      display: block;
      padding: 30px 0px 0px 0px;
      position: relative; }
      @media screen and (max-width: 1024px) and (min-width: 600px) {
        .new-point__box__item__img::before {
          display: inline-block;
          position: absolute;
          bottom: 60px;
          right: 0;
          font-family: 'Roboto', sans-serif;
          color: rgba(42, 137, 116, 0.8);
          font-size: 8.0rem;
          font-style: italic;
          font-weight: 500;
          z-index: 1; }
        .new-point__box__item__img--01::before {
          content: '01'; }
        .new-point__box__item__img--02::before {
          content: '02'; }
        .new-point__box__item__img--03::before {
          content: '03'; } }
      .new-point__box__item__img img {
        width: 100%; }
    .new-point__box__item__data {
      background-color: #fff;
      padding: 80px 42px 40px 42px;
      position: relative; }
      @media screen and (max-width: 1024px) and (min-width: 600px) {
        .new-point__box__item__data {
          padding: 30px 30px 30px 30px; } }
      @media screen and (max-width: 599px) {
        .new-point__box__item__data {
          padding: 50px 20px 20px 20px; } }
      .new-point__box__item__data::before {
        display: inline-block;
        position: absolute;
        top: -0.7em;
        left: 0;
        right: 0;
        margin: auto;
        font-family: 'Roboto', sans-serif;
        color: rgba(42, 137, 116, 0.8);
        font-size: 11rem;
        font-style: italic;
        font-weight: 500;
        text-align: center; }
        @media screen and (max-width: 1024px) and (min-width: 600px) {
          .new-point__box__item__data::before {
            display: none; } }
        @media screen and (max-width: 599px) {
          .new-point__box__item__data::before {
            font-size: 8.0rem; } }
      .new-point__box__item__data--01::before {
        content: '01'; }
      .new-point__box__item__data--02::before {
        content: '02'; }
      .new-point__box__item__data--03::before {
        content: '03'; }
      .new-point__box__item__data__title {
        color: #2A8974;
        font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
        margin-bottom: 20px;
        font-size: 2.4rem;
        font-weight: 700;
        text-align: center; }
        @media screen and (max-width: 1024px) and (min-width: 600px) {
          .new-point__box__item__data__title {
            text-align: left;
            margin-bottom: 5px;
            font-size: 2.0rem; } }
        @media screen and (max-width: 599px) {
          .new-point__box__item__data__title {
            font-size: 2.0rem;
            margin-bottom: 5px; } }
      .new-point__box__item__data__text {
        font-weight: bold;
        line-height: 1.8; }
        @media screen and (max-width: 599px) {
          .new-point__box__item__data__text {
            font-weight: normal; } }
      .new__box__item__data__text {
        font-weight: bold;
        line-height: 1.8;
        text-align: center; }
        @media screen and (max-width: 599px) {
        .new__box__item__data__text {
        font-weight: normal; } }

        .price {
          background-color: #fff;
          padding: 100px 0 0px 0; }
          @media screen and (max-width: 1024px) and (min-width: 600px) {
            .price {
              padding-top: 60px; } }
          @media screen and (max-width: 599px) {
            .price {
              padding-top: 40px; } }
              .price__wrap {
                max-width: 1200px;
                margin: auto;
                padding-left: 10px;
                padding-right: 10px; }

                .price__ex__box {
                  width: 49%;
                  border: 3px solid #2A8974;
                  background-color: #fff;
                  position: relative;
                  margin-top: 5%;
                 }
                  @media screen and (max-width: 1024px) {
                    .price__ex__box {
                      width: 100%;
                      margin-bottom: 40px; } }
                  .price__ex__box.companion {
                    width: 100%; }
                  .price__ex__box__title {
                    background-color: #2A8974;
                    color: #fff;
                    font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
                    font-size: 2.0rem;
                    text-align: center;
                    position: absolute;
                    border-radius: 50px;
                    padding: 10px 0 10px 40px;
                    width: 68%;
                    left: 0;
                    right: 0;
                    top: -25px;
                    margin: auto; }
                    @media screen and (max-width: 599px) {
                      .price__ex__box__title {
                        width: 90%;
                        font-size: 1.6rem;
                        padding: 5px 0 5px 0; } }
                    .price__ex__box__title.companion {
                      width: 52%;
                      font-size: 2.4rem; }
                      @media screen and (max-width: 1400px) and (min-width: 1024px) {
                        .price__ex__box__title.companion {
                          width: 60%; } }
                      @media screen and (max-width: 1024px) and (min-width: 600px) {
                        .price__ex__box__title.companion {
                          font-size: 2.4rem; } }
                      @media screen and (max-width: 730px) and (min-width: 601px) {
                        .price__ex__box__title.companion {
                          font-size: 2.0rem; } }
                      @media screen and (max-width: 1024px) {
                        .price__ex__box__title.companion {
                          width: 90%;
                          font-size: 1.6rem; } }
                      .price__ex__box__title.companion::before {
                        content: '';
                        display: inline-block;
                        position: absolute;
                        top: 0;
                        left: -12px;
                        bottom: 0;
                        margin: auto;
                        background-size: 82px 82px;
                        width: 82px;
                        height: 82px; }
                        @media screen and (max-width: 599px) {
                          .price__ex__box__title.companion::before {
                            background-size: 54px 54px;
                            width: 54px;
                            height: 54px; } }
                    .price__ex__box__title.point span {
                      position: relative;
                      padding-left: 30px; }
                      .pricet__ex__box__title.point span::before {
                        content: '';
                        display: inline-block;
                        position: absolute;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        margin: auto;
                        background-image: url(../../assets/img/wih/support_icon_point.png);
                        background-size: 24px 24px;
                        width: 24px;
                        height: 24px; }
                    .price__ex__box__title.elief span {
                      position: relative;
                      padding-left: 30px; }
                      .price__ex__box__title.elief span::before {
                        content: '';
                        display: inline-block;
                        position: absolute;
                        top: 0;
                        left: 0;
                        bottom: 0;
                        margin: auto;
                        background-image: url(../../assets/img/wih/support_icon_heart.png);
                        background-size: 22px 18px;
                        width: 22px;
                        height: 18px; }
                  .price__ex__box__wrap {
                    padding: 50px 30px 30px 30px; }
                    @media screen and (max-width: 599px) {
                      .price__ex__box__wrap {
                        padding: 30px 16px 20px 16px; } }
                    .price__ex__box__wrap.companion {
                      padding: 60px 80px 50px 80px; }
                      @media screen and (max-width: 1024px) and (min-width: 600px) {
                        .price__ex__box__wrap.companion {
                          padding: 40px 20px 40px 20px; } }
                      @media screen and (max-width: 599px) {
                        .price__ex__box__wrap.companion {
                          padding: 50px 16px 30px 16px; } }
                  .price__ex__box__read {
                    font-size: 2.4rem;
                    color: #2A8974;
                    font-weight: 700;
                    margin-bottom: 18px;
                    text-align: center; }
                    @media screen and (max-width: 599px) {
                      .price__ex__box__read {
                        font-size: 1.8rem;
                        margin-bottom: 10px; } }
                    .price__ex__box__read.companion {
                      margin-bottom: 5px; }
                      @media screen and (max-width: 599px) {
                        .price__ex__box__read.companion {
                          font-size: 1.6rem; } }
                    .price__ex__box__read__sub {
                      width: 92%;
                      margin: auto;
                      font-weight: bold;
                      margin-bottom: 28px;
                      line-height: 1.8; }
                      @media screen and (max-width: 599px) {
                        .price__ex__box__read__sub {
                          margin-bottom: 20px;
                          font-weight: normal;
                          width: 100%; } }
                    .price__ex__box img {
                      width: 100%; }


.option {
  background-color: #fff;
  padding: 100px 0 0px 0; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .option {
      padding-top: 60px; } }
  @media screen and (max-width: 599px) {
    .option {
      padding-top: 40px; } }
  .option__wrap {
    max-width: 1200px;
    margin: auto;
    padding-left: 10px;
    padding-right: 10px; }

.option__box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .option__box {
      padding-left: 20px;
      padding-right: 20px; } }
  @media screen and (max-width: 1024px) {
    .option__box {
      display: block;
      margin-bottom: 20px; } }
  .option__box__data {
    width: 50%;
    font-weight: bold; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .option__box__data {
        width: 100%; } }
    @media screen and (max-width: 599px) {
      .option__box__data {
        font-weight: normal;
        width: 100%; } }
    .option__box__data__text {
      margin-bottom: 30px;
      line-height: 1.8; }
  .option__box__img {
    width: 45%;
    display: block; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .option__box__img {
        width: 60%;
        margin: 0 auto 20px; } }
    @media screen and (max-width: 599px) {
      .option__box__img {
        width: 70%;
        margin: 0 auto 20px; } }
    .option__box__img img {
      width: 100%; }
      .option__box__sample img{
        width: 100%;}

@media screen and (max-width: 599px) {
  .option__box__data__list {
    margin-bottom: 30px; } }
.option__box__data__list__item {
  border: 3px solid #2A8974;
  position: relative;
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 1.8rem; }
  @media screen and (max-width: 599px) {
    .option__box__data__list__item {
      margin-bottom: 5px; } }
  .option__box__data__list__item__check {
    display: block;
    width: 64px;
    position: relative;
    padding: 10px 0 10px 0; }
    @media screen and (max-width: 599px) {
      .option__box__data__list__item__check {
        width: 50px; } }
    .option__box__data__list__item__check::before, .option__box__data__list__item__check::after {
      content: '';
      display: inline-block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto; }
    .option__box__data__list__item__check::before {
      background-color: #2A8974; }
    .option__box__data__list__item__check::after {
      -webkit-transform: rotate(50deg);
      -ms-transform: rotate(50deg);
      transform: rotate(50deg);
      width: 16px;
      height: 27px;
      border-right: 5px solid #ffde00;
      border-bottom: 5px solid #ffde00;
      top: -4px; }
      @media screen and (max-width: 599px) {
        .option__box__data__list__item__check::after {
          width: calc(16px / 1.5);
          height: calc(27px / 1.5); } }
  .option__box__data__list__item__text {
    padding: 16px 0 16px 16px;
    display: block;
    background-color: #fff;
    width: calc(100% - 64px);
    line-height: 1.2; }
    @media screen and (max-width: 599px) {
      .option__box__data__list__item__text {
        width: calc(100% - 50px); } }
    @media screen and (max-width: 599px) {
      .option__box__data__list__item__text {
        font-size: 1.6rem;
        font-weight: bold;
        padding: 8px 10px 8px 10px; } }

.wih-presen__img {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex; }
  @media screen and (max-width: 599px) {
    .wih-presen__img {
      flex-wrap: wrap; } }
  @media screen and (max-width: 599px) {
    .wih-presen__img figure {
      width: 50%; } }
  .wih-presen__img figure img {
    width: 100%; }

.wih-support__wrap {
  max-width: 1200px;
  margin: auto;
  padding: 100px 0px 80px 0px; }
  @media screen and (max-width: 1450px) {
    .wih-support__wrap {
      padding: 60px 10px 60px 10px; } }
  @media screen and (max-width: 1249px) {
    .wih-support__wrap {
      width: 100%;
      padding: 30px 10px 30px 10px; } }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .wih-support__wrap {
      padding: 60px 20px 60px 20px; } }
  @media screen and (max-width: 599px) {
    .wih-support__wrap {
      padding-bottom: 0; } }

.option__read {
  color: #2A8974;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-size: 3.6rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px; }
  @media screen and (max-width: 1024px) and (min-width: 600px) {
    .option__read {
      font-size: 3.2rem; } }
  @media screen and (max-width: 599px) {
    .option__read {
      font-size: 2.0rem;
      margin-bottom: 10px; } }

    .details__btn {
      display: block;
      background-color: #8E876F;
      color: #fff !important;
      width: 350px;
      margin: auto;
      font-size: 1.6rem;
      font-weight: 800;
      text-align: center;
      padding: 16px 5px 16px 5px;
      margin-top: 5px;
      margin-bottom: 15px;
      line-height: 1.0;
      position: relative;
      background-color: #8E876F;
      background-size: 200% 100%;
      background-image: -webkit-linear-gradient(left, transparent 50%, #666150 50%);
      background-image: linear-gradient(to right, transparent 50%, #666150 50%);
      -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
      transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease; }
    .details__btn::after {
      content: '';
      display: inline-block;
      position: absolute;
      top: 0;
      right: 15px;
      bottom: 0;
      margin: auto;
      background-size: 22px 6px;
      width: 22px;
      height: 6px; }
    .details__btn:hover {
      background-color: #666150;
      background-position: -100% 100%; }

      .details__btn2 {
        display: block;
        background-color: #8E876F;
        color: #fff !important;
        width: 300px;
        margin: auto;
        font-size: 1.4rem;
        font-weight: 700;
        text-align: center;
        padding: 16px 5px 16px 5px;
        margin-top: 5px;
        margin-bottom: 15px;
        line-height: 1.0;
        position: relative;
        background-color: #8E876F;
        background-size: 200% 100%;
        background-image: -webkit-linear-gradient(left, transparent 50%, #666150 50%);
        background-image: linear-gradient(to right, transparent 50%, #666150 50%);
        -webkit-transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
        transition: background-position 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease; }
      .details__btn2::after {
        content: '';
        display: inline-block;
        position: absolute;
        top: 0;
        right: 15px;
        bottom: 0;
        margin: auto;
        background-size: 22px 6px;
        width: 22px;
        height: 6px; }
      .details__btn2:hover {
        background-color: #666150;
        background-position: -100% 100%; }

.wih-support__ex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px; }
  @media screen and (max-width: 1024px) {
    .wih-support__ex {
      display: block;
      margin-bottom: 30px; } }
  .wih-support__ex__box {
    width: 49%;
    border: 3px solid #2A8974;
    background-color: #fff;
    position: relative;
    margin-top: 5%;
   }
    @media screen and (max-width: 1024px) {
      .wih-support__ex__box {
        width: 100%;
        margin-bottom: 40px; } }
    .wih-support__ex__box.companion {
      width: 100%; }
    .wih-support__ex__box__title {
      background-color: #2A8974;
      color: #fff;
      font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
      font-size: 2.0rem;
      text-align: center;
      position: absolute;
      border-radius: 50px;
      padding: 10px 0 10px 40px;
      width: 68%;
      left: 0;
      right: 0;
      top: -25px;
      margin: auto; }
      @media screen and (max-width: 599px) {
        .wih-support__ex__box__title {
          width: 90%;
          font-size: 1.6rem;
          padding: 5px 0 5px 0; } }
      .wih-support__ex__box__title.companion {
        width: 52%;
        font-size: 2.4rem; }
        @media screen and (max-width: 1400px) and (min-width: 1024px) {
          .wih-support__ex__box__title.companion {
            width: 60%; } }
        @media screen and (max-width: 1024px) and (min-width: 600px) {
          .wih-support__ex__box__title.companion {
            font-size: 2.4rem; } }
        @media screen and (max-width: 730px) and (min-width: 601px) {
          .wih-support__ex__box__title.companion {
            font-size: 2.0rem; } }
        @media screen and (max-width: 1024px) {
          .wih-support__ex__box__title.companion {
            width: 90%;
            font-size: 1.6rem; } }
        .wih-support__ex__box__title.companion::before {
          content: '';
          display: inline-block;
          position: absolute;
          top: 0;
          left: -12px;
          bottom: 0;
          margin: auto;
          background-size: 82px 82px;
          width: 82px;
          height: 82px; }
          @media screen and (max-width: 599px) {
            .wih-support__ex__box__title.companion::before {
              background-size: 54px 54px;
              width: 54px;
              height: 54px; } }
      .wih-support__ex__box__title.point span {
        position: relative;
        padding-left: 30px; }
        .wih-support__ex__box__title.point span::before {
          content: '';
          display: inline-block;
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          margin: auto;
          background-image: url(../../assets/img/wih/support_icon_point.png);
          background-size: 24px 24px;
          width: 24px;
          height: 24px; }
      .wih-support__ex__box__title.elief span {
        position: relative;
        padding-left: 30px; }
        .wih-support__ex__box__title.elief span::before {
          content: '';
          display: inline-block;
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          margin: auto;
          background-image: url(../../assets/img/wih/support_icon_heart.png);
          background-size: 22px 18px;
          width: 22px;
          height: 18px; }
    .wih-support__ex__box__wrap {
      padding: 50px 30px 30px 30px; }
      @media screen and (max-width: 599px) {
        .wih-support__ex__box__wrap {
          padding: 30px 16px 20px 16px; } }
      .wih-support__ex__box__wrap.companion {
        padding: 60px 80px 50px 80px; }
        @media screen and (max-width: 1024px) and (min-width: 600px) {
          .wih-support__ex__box__wrap.companion {
            padding: 40px 20px 40px 20px; } }
        @media screen and (max-width: 599px) {
          .wih-support__ex__box__wrap.companion {
            padding: 50px 16px 30px 16px; } }
    .wih-support__ex__box__read {
      font-size: 2.4rem;
      color: #2A8974;
      font-weight: 700;
      margin-bottom: 18px;
      text-align: center; }
      @media screen and (max-width: 599px) {
        .wih-support__ex__box__read {
          font-size: 1.8rem;
          margin-bottom: 10px; } }
      .wih-support__ex__box__read.companion {
        margin-bottom: 5px; }
        @media screen and (max-width: 599px) {
          .wih-support__ex__box__read.companion {
            font-size: 1.6rem; } }
      .wih-support__ex__box__read__sub {
        width: 92%;
        margin: auto;
        font-weight: bold;
        margin-bottom: 28px;
        line-height: 1.8; }
        @media screen and (max-width: 599px) {
          .wih-support__ex__box__read__sub {
            margin-bottom: 20px;
            font-weight: normal;
            width: 100%; } }
    .wih-support__ex__box__list__item {
      font-weight: bold;
      position: relative;
      margin-bottom: 8px;
      padding-left: 32px; }
      @media screen and (max-width: 599px) {
        .wih-support__ex__box__list__item {
          font-size: 1.5rem; } }
      .wih-support__ex__box__list__item::before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 2px;
        left: 0;
        margin: auto;
        background-image: url(../../assets/img/wih/support_icon_check.png);
        background-size: 22px 18px;
        width: 22px;
        height: 18px; }
      .wih-support__ex__box__list__item em {
        color: #3aeb8a;
        font-style: normal; }
    .wih-support__ex__box__img {
      margin-top: -20px; }
      @media screen and (max-width: 1024px) and (min-width: 600px) {
        .wih-support__ex__box__img {
          width: 60%;
          margin: auto;
          display: block; } }
      .wih-support__ex__box__img img {
        width: 102%; }

.wih-support__ex__box__elief-box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 16px; }
  @media screen and (max-width: 599px) {
    .wih-support__ex__box__elief-box {
      display: block; } }
  .wih-support__ex__box__elief-box__text {
    font-weight: bold;
    width: 55%;
    line-height: 1.8; }
    @media screen and (max-width: 599px) {
      .wih-support__ex__box__elief-box__text {
        width: 100%;
        font-weight: normal;
        margin-bottom: 16px; } }
  .wih-support__ex__box__elief-box__img {
    width: 42%; }
    @media screen and (max-width: 599px) {
      .wih-support__ex__box__elief-box__img {
        width: 60%;
        margin: auto; } }
    .wih-support__ex__box__elief-box__img img {
      width: 100%; }

.wih-support__ex__companion__box {
  border: 1px solid #cccccc; }
  @media screen and (max-width: 599px) {
    .wih-support__ex__companion__box {
      margin-bottom: 10px; } }
  @media screen and (min-width: 600px) {
    .wih-support__ex__companion__box.support {
      border-left: none; } }
  .wih-support__ex__companion__box__wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 599px) {
      .wih-support__ex__companion__box__wrap {
        display: block; } }
  .wih-support__ex__companion__box__title {
    padding: 36px 30px 36px 30px;
    font-size: 2.4rem;
    font-weight: 700;
    font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    position: relative; }
    @media screen and (max-width: 599px) {
      .wih-support__ex__companion__box__title {
        font-size: 1.8rem; } }
  @media screen and (max-width: 599px) and (max-width: 599px) {
    .wih-support__ex__companion__box__title {
      padding: 16px 16px 16px 16px; } }

    .wih-support__ex__companion__box__title::before {
      content: '';
      display: inline-block;
      position: absolute;
      top: 0;
      right: 20px;
      bottom: 0;
      margin: auto; }
    .wih-support__ex__companion__box__title.introduction {
      background-color: #ebf2f6;
      color: #2A8974; }
      .wih-support__ex__companion__box__title.introduction::before {
        background-image: url(../../assets/img/wih/support_human01.png);
        background-size: calc(94px / 1.5) calc(52px / 1.5);
        width: calc(94px / 1.5);
        height: calc(52px / 1.5); }
    .wih-support__ex__companion__box__title.support {
      background-color: #fceef5;
      color: #db006c; }
      .wih-support__ex__companion__box__title.support::before {
        background-image: url(../../assets/img/wih/support_human02.png);
        background-size: 84px 70px;
        width: 84px;
        height: 70px; }
        @media screen and (max-width: 599px) {
          .wih-support__ex__companion__box__title.support::before {
            background-size: calc(84px / 1.5) calc(70px / 1.5);
            width: calc(84px / 1.5);
            height: calc(70px / 1.5); } }
  .wih-support__ex__companion__box__data {
    padding: 30px 26px 10px 26px; }
    @media screen and (max-width: 599px) {
      .wih-support__ex__companion__box__data {
        padding: 16px 16px 10px 16px; } }
    .wih-support__ex__companion__box__data__list__item {
      margin-bottom: 16px;
      position: relative;
      font-weight: bold;
      padding-left: 18px; }
      @media screen and (max-width: 599px) {
        .wih-support__ex__companion__box__data__list__item {
          font-weight: normal;
          margin-bottom: 8px; } }
      .wih-support__ex__companion__box__data__list__item::before {
        content: '';
        display: inline-block;
        position: absolute;
        top: 6px;
        left: 0;
        margin: auto;
        width: 11px;
        height: 11px;
        -webkit-border-radius: 100%;
        -moz-border-radius: 100%;
        border-radius: 100%; }
        @media screen and (max-width: 599px) {
          .wih-support__ex__companion__box__data__list__item::before {
            width: 8px;
            height: 8px; } }
      .wih-support__ex__companion__box__data__list__item.introduction::before {
        background-color: #49a1cd; }
      .wih-support__ex__companion__box__data__list__item.support::before {
        background-color: #db006c; }

.wih-system {
  background-image: url(../../assets/img/wih/system-bg.jpg); }
  .wih-system__wrap {
    padding: 80px 0 90px 0;
    max-width: 1100px;
    margin: auto; }
    @media screen and (max-width: 1024px) and (min-width: 600px) {
      .wih-system__wrap {
        padding: 40px 20px 40px 20px; } }
    @media screen and (max-width: 599px) {
      .wih-system__wrap {
        padding: 40px 10px 40px 10px; } }
  .wih-system__title {
    font-size: 2.8rem;
    font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
    color: #2A8974; }
    @media screen and (max-width: 599px) {
      .wih-system__title {
        font-size: 2.4rem;
        margin-bottom: 36px; } }
    .wih-system__title::after {
      content: 'OPERATING ENVIRONMENT';
      display: inline-block;
      position: absolute;
      left: 0;
      right: 0;
      bottom: -20px;
      margin: auto;
      color: rgba(142, 135, 111, 0.5);
      font-size: 1.6rem;
      text-align: center;
      font-family: "Roboto Mono", "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", monospace;
      width: 100%;
      font-weight: 400;
      letter-spacing: 1px; }
      @media screen and (max-width: 599px) {
        .wih-system__title::after {
          font-size: 1.2rem; } }

.wih-system__tbl {
  width: 100%;
  border-collapse: separate;
  margin-bottom: 10px; }
  .wih-system__tbl__th, .wih-system__tbl__td {
    padding: 20px 20px 20px 20px; }
    @media screen and (max-width: 599px) {
      .wih-system__tbl__th, .wih-system__tbl__td {
        display: block;
        width: 100%; } }
  .wih-system__tbl__th {
    background-color: #2A8974;
    float: none;
    color: #fff;
    font-weight: normal;
    text-align: left; }
    @media screen and (min-width: 600px) {
      .wih-system__tbl__th {
        width: 220px; } }
    @media screen and (max-width: 599px) {
      .wih-system__tbl__th {
        padding: 5px 20px 5px 20px; } }
  .wih-system__tbl__td {
    background-color: #fff;
    padding-left: 30px; }
    @media screen and (max-width: 599px) {
      .wih-system__tbl__td {
        padding: 15px 20px 15px 20px; } }
  .wih-system__tbl__notes {
    font-size: 1.4rem;
    text-indent: -1em;
    padding-left: 1em; }

.wih-system__notes__item {
  font-size: 1.4rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px; }

.top-main__item {
  display: none; }

.top-main__item.slick-initialized {
  display: block; }

/*# sourceMappingURL=style.css.map */
