@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Kosugi+Maru|Noto+Serif+JP");
/*
|---------------------------------------------------------------
| サイト全体用のスタイルシート
|---------------------------------------------------------------
|
| サイト全体に共通するスタイルを記入
|
*/
/*
|---------------------------------------------------------------
| 色Utilities
|---------------------------------------------------------------
*/
.text-primary {
  color: #395d3a !important;
}

.bg-primary {
  background: #395d3a !important;
}

.text-secondary {
  color: #f95c5c !important;
}

.bg-secondary {
  background: #f95c5c !important;
}

.text-bright {
  color: #3fad13 !important;
}

.bg-bright {
  background: #3fad13 !important;
}

.text-light {
  color: #b0d4a2 !important;
}

.bg-light {
  background: #b0d4a2 !important;
}

.text-link {
  color: #005500 !important;
}

.bg-link {
  background: #005500 !important;
}

.text-gray {
  color: #c9c9c9 !important;
}

.bg-gray {
  background: #c9c9c9 !important;
}

/*
|---------------------------------------------------------------
| 文字
|---------------------------------------------------------------
*/
.text-small {
  font-size: 0.8em;
}

.text-large {
  font-size: 1.2em;
}

/*
|---------------------------------------------------------------
| ボタン
|---------------------------------------------------------------
*/
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.5em 0.75em;
  border-radius: 0.25em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  line-height: 1.5;
  cursor: pointer;
  white-space: nowrap;
  color: #fff;
  background: #395d3a;
}

.btn.btn-gray {
  color: inherit;
  background: #c9c9c9;
}

.btn.btn-closer {
  color: #888;
  font-size: 20px;
  font-weight: bold;
  background: none;
  padding: 0.25em;
}

/*
|---------------------------------------------------------------
| モーダル
|---------------------------------------------------------------
*/
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  display: none;
  overflow: hidden;
  outline: 0;
  padding: 0 10px;
}

.modal .modal-dialog {
  position: relative;
  width: auto;
  max-width: 735px;
  margin: 50px auto;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal .modal-dialog .modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  outline: 0;
  border-radius: 6px;
}

.modal.js-show {
  /*!
        * モーダルが表示されたとき
        */
  overflow-x: hidden;
  overflow-y: auto;
}

.modal.js-show .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal .modal-title {
  font-size: 1.1em;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.modal .modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #dfdfdf;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.modal .modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
}

.modal .modal-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 15px;
  border-top: 1px solid #dfdfdf;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9990;
  background-color: rgba(0, 0, 0, 0.7);
}

/*
|---------------------------------------------------------------
| カード
|---------------------------------------------------------------
*/
.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  word-wrap: break-word;
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
}

.card .card-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 15px;
}

/*
|---------------------------------------------------------------
| Inview
|---------------------------------------------------------------
|
| アニメーション関連
|
*/
.js__inview {
  opacity: 0;
  -webkit-transition: all 0.75s;
  -o-transition: all 0.75s;
  transition: all 0.75s;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.js__inview.inview--top {
  -webkit-transform: translate(0%, -20%);
  -ms-transform: translate(0%, -20%);
  transform: translate(0%, -20%);
}

.js__inview.inview--left {
  -webkit-transform: translate(-20%, 0%);
  -ms-transform: translate(-20%, 0%);
  transform: translate(-20%, 0%);
}

.js__inview.inview--right {
  -webkit-transform: translate(20%, 0%);
  -ms-transform: translate(20%, 0%);
  transform: translate(20%, 0%);
}

.js__inview.inview--bottom {
  -webkit-transform: translate(0%, 20%);
  -ms-transform: translate(0%, 20%);
  transform: translate(0%, 20%);
}

.js__inview.inview--delay-1 {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.js__inview.inview--delay-2 {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.js__inview.inview--delay-3 {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.js__inview.inview--delay-4 {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.js__inview.inview--delay-5 {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.js__inview.inview--delay-6 {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.js__inview.inview--delay-7 {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

.js__inview.inview--delay-8 {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.js__inview.inview--delay-9 {
  -webkit-transition-delay: 1.1s;
  -o-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

.js__inview.inview--delay-10 {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.js__inview.js-inviewed {
  -webkit-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  opacity: 1;
}

/*
|---------------------------------------------------------------
| JS
|---------------------------------------------------------------
*/
.js-hide {
  display: none !important;
}

.form {
  display: block;
}

.form .form-group {
  display: block;
  margin: 0 0 20px;
}

.form .form-label {
  display: block;
  margin: 0 0 5px;
}

.form .form-control {
  display: block;
  width: 100%;
  border: 1px solid #c9c9c9;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  line-height: 1.5;
  padding: 4px 6px;
  border-radius: 4px;
  font-family: inherit;
  -webkit-transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  transition: border-color 0.3s;
  height: 34px;
}

.form .form-control:focus {
  outline: none;
  border-color: #3fad13;
}

.form textarea.form-control {
  height: auto;
  resize: vertical;
  min-height: 160px;
}

.form .form-text {
  margin-top: 5px;
}

.form .form-text p {
  margin: 0;
}

.form .form-submit {
  margin-top: 40px;
  text-align: center;
}

.errors {
  display: block;
  margin: 0 0 30px;
  font-size: 1.2em;
  color: #f95c5c;
}

.errors p {
  margin: 0;
}

.errors p + p {
  margin-top: 0.5em;
}

.form-error {
  display: block;
  color: #fff;
  background: #f95c5c;
  margin: 5px 0;
  padding: 2px;
}

/*
|---------------------------------------------------------------
| body
|---------------------------------------------------------------
*/
body {
  font-family: -apple-system, 'Kosugi Maru', 'Arial', 'Helvetica', 'Hiragino Maru Gothic', 'Meiryo', 'Yu Gothic', sans-serif !important;
  color: #333;
  font-size: 16px;
  background: #fff;
  min-width: 300px;
}

p {
  line-height: 1.5;
}

a {
  color: #005500;
}

::-moz-selection {
  background: rgba(156, 230, 158, 0.7);
}

::selection {
  background: rgba(156, 230, 158, 0.7);
}

/*
|---------------------------------------------------------------
| font
|---------------------------------------------------------------
*/
.font_mincho {
  font-family: 'Noto Serif JP', serif;
  font-weight: bolder;
}

/*
|---------------------------------------------------------------
| 画像フレーム
|---------------------------------------------------------------
*/
.img_frame {
  border: 1px solid #ddd;
  background: #fff;
  margin-bottom: 10px;
}

.img_frame img {
  display: block;
  width: 100%;
  height: auto;
}

/*
|---------------------------------------------------------------
| レイアウトに関するCSS
|---------------------------------------------------------------
*/
.container {
  display: block;
  width: 100%;
  max-width: 1000px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.container.no_gutters {
  padding-left: 0;
  padding-right: 0;
  max-width: 980px;
}

/*
|---------------------------------------------------------------
| ヘッダー部分
|---------------------------------------------------------------
*/
.header {
  display: block;
  background: #fff;
  border-bottom: 1px solid #dfdfdf;
}

@media screen and (max-width: 780px) {
  .header {
    /* タブレットサイズの時 */
  }
  .header > .container {
    padding: 0;
  }
}

.header-top {
  display: block;
  padding: 4px 0;
  color: #fff;
  background: #395d3a;
  font-size: 13px;
  text-align: right;
  line-height: 1.3;
  letter-spacing: 1px;
}

.header-top .header-top-text {
  display: inline-block;
  font-size: 1em;
  font-weight: normal;
  margin: 0;
}

.header-main {
  display: block;
  padding-left: 170px;
  position: relative;
  min-height: 140px;
  /* ロゴの高さ */
}

.header-main .header-main-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-main .header-brand {
  display: block;
  width: 170px;
  padding: 10px 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}

.header-main .header-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-main .header-contact {
  display: block;
  padding: 10px 10px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: right;
}

@media screen and (max-width: 480px) {
  .header-main .header-contact {
    /* スマートフォンサイズの時 */
    text-align: center;
  }
}

.header-main .header-contact .header-contact-block {
  display: inline-block;
  padding: 10px 10px;
  position: relative;
}

.header-main .header-contact .header-contact-block::before, .header-main .header-contact .header-contact-block::after {
  content: "";
  display: inline-block;
  width: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  border: 1px solid #dfdfdf;
}

.header-main .header-contact .header-contact-block::before {
  left: 0;
  border-right: 0;
}

.header-main .header-contact .header-contact-block::after {
  right: 0;
  border-left: 0;
}

.header-main .header-contact .header-contact-link {
  color: #62a946;
  text-decoration: none;
}

.header-main .header-contact .header-contact-catch {
  font-size: 0.75em;
  margin: 0 0 5px;
  text-align: left;
  line-height: 1.2;
}

.header-main .header-contact .header-contact-catch > dt,
.header-main .header-contact .header-contact-catch > dd {
  display: inline-block;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.header-main .header-contact .header-contact-tel {
  font-size: 2.0em;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .header-main .header-contact .header-contact-tel {
    /* スマートフォンサイズの時 */
    font-size: 2.2em;
  }
}

.header-main .header-contact .header-contact-nav {
  font-size: 13px;
  margin-top: 5px;
  text-align: right;
}

@media screen and (max-width: 780px) {
  .header-main {
    /* タブレットサイズの時 */
    padding: 0;
  }
  .header-main .header-brand {
    position: relative;
  }
}

@media screen and (max-width: 480px) {
  .header-main {
    /* スマートフォンサイズの時 */
    padding: 0;
  }
}

.header-nav {
  display: block;
  padding: 0;
}

.header-nav .header-nav-menu {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav .header-nav-menu .header-nav-menu-item {
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header-nav .header-nav-menu .header-nav-menu-link {
  display: block;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  padding: 0 15px;
  color: inherit;
  font-size: 16px;
  text-decoration: none;
  font-weight: bolder;
  -webkit-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.header-nav .header-nav-menu .header-nav-menu-link:hover {
  color: #3fad13;
  text-decoration: underline;
}

@media screen and (max-width: 780px) {
  .header-nav .header-nav-menu {
    /* タブレットサイズの時 */
    width: auto;
    padding: 0;
    margin: 0 -1px 0 0;
    border-top: 1px solid #b0d4a2;
  }
  .header-nav .header-nav-menu .header-nav-menu-item {
    max-width: 50%;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    border-right: 1px solid #b0d4a2;
    border-bottom: 1px solid #b0d4a2;
  }
}

/*
|---------------------------------------------------------------
| メインコンテンツ部分の共通css
|---------------------------------------------------------------
*/
.main {
  display: block;
  position: relative;
}

.main .main-title {
  width: 100%;
  font-size: 24px;
  line-height: 1.5;
  margin: 0 0 20px;
  border: 1px solid #dfdfdf;
  border-color: 0;
  border-right: 0;
}

.main .main-title .main-title-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 160px;
  background-image: url(./images/bg_title.png);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
  font-family: 'Noto Serif JP', serif;
}

.main-section {
  display: block;
  position: relative;
  padding: 40px 0 50px;
}

.main-section .main-section-title {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 1em;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.5;
  border-bottom: 2px solid #dfdfdf;
}

/*
|---------------------------------------------------------------
| パンくず
|---------------------------------------------------------------
*/
.breadcrumbs {
  display: block;
  background: #efefef;
}

.breadcrumbs .breadcrumbs-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 13px;
  padding: 8px 0;
}

.breadcrumbs .breadcrumbs-item {
  display: inline-block;
}

.breadcrumbs .breadcrumbs-item::after {
  content: ">";
  display: inline-block;
  margin: 0 10px;
}

.breadcrumbs .breadcrumbs-item:last-child::after {
  display: none;
}

/*
|---------------------------------------------------------------
| フッター部分
|---------------------------------------------------------------
*/
.footer {
  display: block;
  position: relative;
  padding: 20px 0;
  border-top: 4px solid #395d3a;
  background: #fff;
}

.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #395d3a;
  position: absolute;
  top: 2px;
  left: 0;
}

.footer-main {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.footer-info {
  display: block;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 10px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.footer-info .footer-info-block {
  display: block;
  margin: 0 0 10px;
}

.footer-info .footer-info-brand {
  display: block;
  width: 150px;
}

@media screen and (max-width: 480px) {
  .footer-info .footer-info-brand {
    /* スマートフォンサイズの時 */
    margin: 0 auto;
  }
}

.footer-info .footer-info-address {
  display: block;
  line-height: 1.3;
  font-style: normal;
  margin-bottom: 20px;
}

.footer-info .footer-info-box {
  display: block;
  width: 100%;
  border: 1px solid currentColor;
}

.footer-info .footer-info-box .footer-info-tel {
  display: block;
  border-bottom: 1px solid currentColor;
  padding: 10px;
}

.footer-info .footer-info-box .footer-info-tel strong {
  font-size: 1.5em;
}

.footer-info .footer-info-box .footer-info-meta {
  font-size: 0.9em;
  padding: 10px;
}

.footer-map {
  display: block;
  padding: 0 10px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.footer-map .footer-map-inner {
  display: block;
  width: 100%;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}

.footer-map .footer-map-inner iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
  border: 1px solid #ddd;
}

/*
|---------------------------------------------------------------
| フッターシェア
|---------------------------------------------------------------
*/
.footer-share {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-share .footer-share-item {
  margin-right: 10px;
}

.footer-share .footer-share-item > * {
  display: block;
  line-height: 1;
}

/*
|---------------------------------------------------------------
| フッターメニュー
|---------------------------------------------------------------
*/
.footer-menu {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0;
  overflow: hidden;
  padding: 20px 0;
  font-size: 0.85em;
}

.footer-menu .footer-menu-list {
  width: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 0 -1px;
  list-style: none;
  padding: 0;
}

.footer-menu .footer-menu-list .footer-menu-list-item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-left: 1px solid currentColor;
  margin-bottom: 10px;
}

.footer-menu .footer-menu-list .footer-menu-list-link {
  display: block;
  padding: 5px 5px;
  white-space: nowrap;
  text-align: center;
}

@media screen and (max-width: 780px) {
  /* タブレットサイズの時 */
  .footer-menu {
    font-size: 1em;
  }
  .footer-menu .footer-menu-list {
    display: block;
    width: 100%;
    border-top: 1px solid #ddd;
  }
  .footer-menu .footer-menu-list .footer-menu-list-item {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ddd;
    margin: 0;
  }
  .footer-menu .footer-menu-list .footer-menu-list-link {
    display: block;
    padding: 15px 40px 15px 5px;
    text-align: left;
    text-decoration: none;
    position: relative;
  }
  .footer-menu .footer-menu-list .footer-menu-list-link::after {
    content: "";
    display: block;
    width: 0.4em;
    height: 0.4em;
    border-width: 3px 3px 0 0;
    border-style: solid;
    border-color: currentColor;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    z-index: 2;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.copyright {
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

.to_top {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 20px;
  text-align: center;
  line-height: 50px;
  padding: 0;
  color: #395d3a;
  background: #b0d4a2;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  -webkit-transition: opacity 0.7s;
  -o-transition: opacity 0.7s;
  transition: opacity 0.7s;
  opacity: 0;
  -webkit-transform: translateX(100vw);
  -ms-transform: translateX(100vw);
  transform: translateX(100vw);
}

.to_top.js-show {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/*
|---------------------------------------------------------------
| バナーエリア
|---------------------------------------------------------------
*/
.bottom_banner_area {
  padding: 30px 0 0;
  background: #fff;
}

.banner {
  display: block;
  text-align: center;
  padding: 30px 0;
}

.banner a {
  display: inline-block;
  max-width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.banner a:hover {
  opacity: 0.7;
}

.banner .banner--pc {
  display: block;
}

.banner .banner--sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .banner {
    /* スマートフォンサイズの時 */
  }
  .banner .banner--pc {
    display: none;
  }
  .banner .banner--sp {
    display: block;
  }
}
