@charset "UTF-8";
/* 管理パーツ */
.acms-admin-edit-info {
  margin: 0;
  border: 0;
}

#js-seo_info {
  background-color: #efefef;
}

#adminBox,
.acms-admin-box {
  margin-bottom: 0;
}

/* ------------------------------
　　ベース
------------------------------ */
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  font-size: 15px;
  line-height: 1.7;
  padding-top: 50px;
}

@media (min-width: 1024px) {
  body {
    padding-top: 0;
  }
}

body.menu-open {
  position: fixed;
  width: 100%;
  height: auto;
}

/* ボックスサイジング */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* リンクの設定 */
a {
  color: #006dd9;
  text-decoration: none;
  border: none;
}

a:visited {
  color: #7f5ad7;
  text-decoration: none;
}

a:active {
  color: #006dd9;
  text-decoration: none;
}

a:hover {
  color: #006dd9;
  text-decoration: underline;
}

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

/* リンクのボタン */
.link-btn {
  display: inline-block;
  padding: 10px 25px 10px 25px;
  background-color: #006536;
  color: #fff;
  font-weight: bold;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  background-image: url(../../images/icon_arrow_right_white.png);
  background-size: auto 1em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
}

.link-btn:hover {
  background-color: #004625;
  text-decoration: none;
  color: #fff;
}

.link-btn:visited {
  color: #fff;
}

.link-btn:active {
  color: #fff;
}

/* コンテナー */
.acms-container {
  max-width: 1140px;
  padding-right: 20px;
  padding-left: 20px;
  padding-right: calc(20px + constant(safe-area-inset-right));
  padding-left: calc(20px + constant(safe-area-inset-left));
}

.acms-container .acms-container {
  padding: 0;
}

.narrow-container {
  max-width: 940px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-right: calc(20px + constant(safe-area-inset-right));
  padding-left: calc(20px + constant(safe-area-inset-left));
}

.small-container {
  max-width: 860px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-right: calc(20px + constant(safe-area-inset-right));
  padding-left: calc(20px + constant(safe-area-inset-left));
}

/* 汎用 */
.u-pb-0 {
  padding-bottom: 0 !important;
}

/* ------------------------------
　　アニメーション
------------------------------ */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

/* ------------------------------
　　バナー
------------------------------ */
.banner {
  margin: 0;
  padding: 0;
  list-style: none;
}

.banner a {
  display: block;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}

.banner a:hover {
  opacity: 0.75;
}

.banner-list-item {
  margin: 0 0 20px 0;
}

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
  background: #666;
  border: 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 0;
}

.btn:hover, .btn:visited {
  color: #FFF;
  text-decoration: none;
}

.btn:focus, .btn:active {
  color: #FFF;
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn:hover {
  color: #FFF;
  background-color: #444;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
  background-image: -webkit-linear-gradient(top, #666, #444);
  background-image: linear-gradient(to bottom, #666, #444);
}

.btn:active, .btn:focus {
  background: #444;
}

/* ボタン　色付き */
.btn-attention {
  background: #FF9A00;
  border: 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 0;
}

.btn-attention:hover, .btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-attention:focus, .btn-attention:active {
  color: #FFF;
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention:hover {
  color: #FFF;
  background-color: #F08300;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FF9A00), to(#F08300));
  background-image: -webkit-linear-gradient(top, #FF9A00, #F08300);
  background-image: linear-gradient(to bottom, #FF9A00, #F08300);
}

.btn-attention:active, .btn-attention:focus {
  background: #F08300;
}

/* ボタンサイズ大 */
.btn-large {
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 0;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.btn-large:hover, .btn-large:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-large:focus, .btn-large:active {
  color: #FFF;
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-large:hover {
  background: #444;
}

.btn-large:active, .btn-large:focus {
  background: #444;
}

/* ボタンサイズ大 色付き */
.btn-attention-large {
  background: #FF9A00;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 0;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.btn-attention-large:hover, .btn-attention-large:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-attention-large:focus, .btn-attention-large:active {
  color: #FFF;
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention-large:hover {
  background: #F08300;
}

.btn-attention-large:active, .btn-attention-large:focus {
  background: #F08300;
}

/* デスクトップ：最大360pxボタン */
.btn-block-large {
  width: 100%;
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 0;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.btn-block-large:hover, .btn-block-large:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-block-large:focus, .btn-block-large:active {
  color: #FFF;
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-block-large:hover {
  background: #444;
}

.btn-block-large:active, .btn-block-large:focus {
  background: #444;
}

/* デスクトップ：最大360pxボタン 色付き */
.btn-attention-block-large {
  width: 100%;
  background: #FF9A00;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 0;
  font-size: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.btn-attention-block-large:hover, .btn-attention-block-large:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-attention-block-large:focus, .btn-attention-block-large:active {
  color: #FFF;
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention-block-large:hover {
  background: #F08300;
}

.btn-attention-block-large:active, .btn-attention-block-large:focus {
  background: #F08300;
}

@media (min-width: 768px) {
  .btn-block-large {
    max-width: 360px;
  }
  .btn-attention-block-large {
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .btn-search-block {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 15px;
  }
}

/* ボーダーボタン */
.home-btn {
  margin: 20px auto 10px;
}

.btn-border {
  display: inline-block;
  padding: 7px 10px;
  color: #333;
  border: 1px solid #CCC;
  border-radius: 4px;
  font-size: 16px;
}

.btn-border [class*='acms-icon-'] {
  color: #CCC;
  font-size: 14px;
}

.btn-border:hover {
  text-decoration: none;
}

/* ------------------------------
　　カード
------------------------------ */
.card {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #E5E5E5;
}

.card-item {
  border-top: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.card-link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  color: #333;
}

.card-link:hover {
  text-decoration: none;
  background: #EEE;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.card-link:hover, .card-link:visited, .card-link:active, .card-link:focus {
  color: #333;
}

.card-img {
  margin: 0 0 10px 0;
}

.card-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.card-detail {
  font-size: 13px;
}

/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
  line-height: 1.5;
}

.box_headline-dat {
  display: block;
  float: left;
}

.headline-link {
  padding: 13px 10px;
  color: #333;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

.headline-link:hover, .headline-link:visited, .headline-link:active, .headline-link:focus {
  color: #333;
}

.headline-link:hover {
  background: #F1F1F1;
}

.headline-title {
  display: block;
  padding: 0 0 0 7.8em;
}

@media screen and (max-width: 479px) {
  /* 画面幅が小さいとき */
  /* ヘッドライン */
  .box_headline-dat {
    float: none;
  }
  .headline-title {
    padding: 0;
  }
}

[aria-labelledby="top_headline-news_headline"] {
  margin-bottom: 50px;
}

/* ------------------------------
　　リスト
------------------------------ */
@media screen and (min-width: 768px) {
  /* リスト */
  a.list-link.acms-list-group-item {
    padding: 10px 20px 10px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-item:hover {
    padding: 10px 10px 10px 20px;
    -webkit-transition: padding 0.25s ease-out;
    transition: padding 0.25s ease-out;
  }
  /* ラベルがあったとき */
  a.list-link.acms-list-group-label-parent {
    padding: 10px 30px 10px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-label-parent:hover {
    padding: 10px 30px 10px 20px;
  }
}

/* 検索結果 */
.list-results-wrap {
  margin: 15px 0 15px 0;
  padding: 10px;
  border: 1px solid #CCC;
}

.list-results-heading {
  margin: 0 0 10px 0;
  padding: 5px;
  background: #E5E5E5;
}

.list-results {
  position: relative;
  margin: 0;
}

.list-results-item {
  position: absolute;
  width: 100px;
}

.list-results-detail {
  margin: 0;
  padding: 0 0 0 100px;
  font-weight: bold;
}

/* ------------------------------
　　各モジュール
------------------------------ */
.module-section {
  margin: 0 0 30px 0;
}

/* タイトル */
.module-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #333;
  border-bottom: 2px solid #333;
}

.module-header + .thumbnail,
.module-header + .summary-default,
.module-header + .entry-column,
.module-header + .card,
.module-header + .search-form,
.module-header + .banner {
  margin-top: 10px;
}

.module-heading {
  margin: 0;
  font-size: 18px;
}

.module-heading [class*="acms-icon-"] {
  margin: 0 10px 0 0;
  vertical-align: baseline;
}

a.module-index-link {
  position: absolute;
  right: 0;
  bottom: 5px;
  color: #333;
  font-size: 16px;
}

a.module-index-link [class*='acms-icon-'] {
  color: #CCC;
  font-size: 14px;
}

/* カスタムフィールドグループ */
.group-list {
  padding: 0 10px;
  list-style: none;
}

/* 行揃えの設定 */
/* 見出し */
.heading-align-left .group-heading {
  text-align: left;
}

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

.heading-align-right .group-heading {
  text-align: right;
}

/* 概要文 */
.detail-align-left .group-detail {
  text-align: left;
}

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

.detail-align-right .group-detail {
  text-align: right;
}

/* ボタン */
.btn-align-left .group-btn-wrap {
  text-align: left;
}

.btn-align-center .group-btn-wrap {
  text-align: center;
}

.btn-align-right .group-btn-wrap {
  text-align: right;
}

/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-wrapper {
  display: table;
  width: 100%;
  height: 100px;
  border-top: solid 1px #A0D8AC;
  border-bottom: solid 1px #A0D8AC;
  color: #FFF;
}

.page-title-inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.page-title {
  margin: 0;
  color: #000;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.page-title a {
  color: #FFF;
}

.page-description {
  margin: 10px 0 0;
  color: #006536;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .page-title-wrapper {
    height: 190px;
  }
}

/* ------------------------------
　　ページャー
------------------------------ */
.pager {
  margin: 0 -5px 40px -5px;
  padding: 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline-block;
  margin: 0 5px 10px;
  font-size: 14px;
}

.pager li.cur {
  /* 現在いる位置 */
  padding: 3px 10px;
  color: #FFF;
  background: #0c0909;
}

.pager-link {
  display: block;
  padding: 3px 10px;
  color: #000;
  background: #E5E5E5;
}

.pager-link:visited, .pager-link:focus, .pager-link:active {
  color: #000;
}

.pager-link:hover {
  color: #FFF;
  text-decoration: none;
  background: #333;
}

.pager-link-forward {
  float: right;
}

.pager-link-prev {
  float: left;
}

/* 前後リンク */
.serial-nav {
  margin: 0 0 60px 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.serial-nav .serial-nav-item-prev {
  float: left;
}

.serial-nav .serial-nav-item-next {
  float: right;
}

.serial-nav a {
  display: block;
  padding: 8px 12px;
  background: #E5E5E5;
  color: #000;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
}

.serial-nav a:hover, .serial-nav a:visited, .serial-nav a:focus, .serial-nav a:active {
  color: inherit;
  text-decoration: none;
}

.serial-nav a:hover {
  color: #fff;
  text-decoration: none;
  background: #333;
}

/* ------------------------------
　　検索フォーム
------------------------------ */
.search-form .btn-search {
  padding: 10px 20px;
  color: #FFF;
  background: #333;
  border: 1px solid #333;
  border-radius: 0 4px 4px 0;
  -webkit-filter: none;
  filter: none;
  /* IEでのグラデーションを上書き */
  font-size: 16px;
}

.search-form .btn-search:hover, .search-form .btn-search:active, .search-form .btn-search:focus {
  background: #666;
}

.search-form input[type="search"] {
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="search"].search-form-input {
  padding-top: 5px;
  padding-bottom: 4px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ------------------------------
　　サマリー
------------------------------ */
.summary {
  margin: 0 -10px 30px -10px;
  padding: 0;
  list-style: none;
}

.summary:before, .summary:after {
  display: table;
  content: " ";
}

.summary:after {
  clear: both;
}

.summary_item {
  display: block;
  margin-bottom: 20px;
  padding: 0 10px;
}

.summary_link {
  display: block;
  position: relative;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
  color: #000;
}

.summary_link:hover, .summary_link:visited, .summary_link:active, .summary_link:focus {
  color: #000;
}

.summary_link:hover {
  text-decoration: none;
  opacity: 0.7;
}

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

.summary_title {
  margin: 5px 0 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.summary_department-icon {
  position: absolute;
  top: 0;
  left: 0;
}

.summary_department-icon [class^="department-icon-"] {
  display: block;
  margin: 0;
}

.summary_department-icon [class^="department-icon-"] [class^="sec-icon-"] {
  background: #fff;
  line-height: 17px;
  font-size: 11px;
  height: 17px;
  padding: 0 5px;
  margin: 0 0 0 5px;
  border-radius: 5px;
  vertical-align: 2px;
}

/* ------------------------------
　　スライダー
------------------------------ */
.summary_slider {
  margin: 0 20px 30px 20px;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.summary_slider .summary_item {
  margin-bottom: 0;
}

.summary_slider.slick-initialized {
  opacity: 1;
  /*slick-initializedが付与されたら表示*/
}

/* 矢印ナビゲーション */
.slick-prev,
.slick-next {
  position: absolute;
  top: 43%;
  display: block;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.slick-prev:focus,
.slick-next:focus {
  border: 0;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  visibility: hidden;
}

.slick-prev {
  left: -40px;
  background: url("../../images/icon_arrow_left_black.png") no-repeat;
  background-size: contain;
}

.slick-next {
  right: -40px;
  background: url("../../images/icon_arrow_right_black.png") no-repeat;
  background-size: contain;
}

@media screen and (min-width: 1240px) {
  .summary_slider {
    margin: 0 -10px 30px -10px;
  }
  .slick-prev,
  .slick-next {
    width: 50px;
    height: 50px;
  }
  .slick-prev {
    left: -50px;
  }
  .slick-next {
    right: -50px;
  }
}

/* ドットのナビゲーション */
.slick-dots {
  position: relative;
  clear: both;
  margin: 10px 0 0 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  font-size: 0;
  background: #A0D8AC;
  border: 1px solid transparent;
  border-radius: 7px;
  content: "";
}

.slick-dots li button:focus {
  border: 1px solid #006536;
  outline: 0;
}

.slick-dots li:hover button {
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background: #006536;
}

.slick-dots button {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

/* ------------------------------
　　サムネイル
------------------------------ */
.thumbnail {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thumbnail-item {
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.thumbnail-item:hover {
  opacity: 0.75;
}

.thumbnail-link {
  display: block;
  color: #333;
}

.thumbnail-link:hover {
  color: #333;
  text-decoration: none;
}

.thumbnail-link:visited {
  color: #333;
}

.thumbnail-img {
  display: block;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.thumbnail-title {
  margin: 5px 0 10px;
  font-weight: bold;
  font-size: 15px;
}

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  padding: 5px 0;
  background: #F3F3F3;
}

.topicpath-list {
  margin: 0 auto;
  list-style: none;
}

.topicpath-item {
  float: left;
  position: relative;
  padding: 0 2.5em 0 0;
  font-size: 12px;
}

.topicpath-item::after {
  content: "\003e";
  position: absolute;
  top: 0;
  right: 1em;
}

.topicpath-item:last-child {
  padding: 0;
}

.topicpath-item:last-child::after {
  content: none;
}

.topicpath-link {
  color: #000;
}

.topicpath-link:visited, .topicpath-link:focus, .topicpath-link:active {
  color: #000;
}

@media (min-width: 1024px) {
  .topicpath {
    padding: 15px 0;
  }
}

/* ------------------------------
　　エントリー
------------------------------ */
.entry {
  margin: 0 0 25px 0;
  border-bottom: 1px solid #E5E5E5;
}

.page-header {
  margin: 0 0 30px 0;
  border-bottom: 1px solid #006536;
}

.entry-info {
  margin: 0 0 10px;
  font-size: 12px;
}

em, strong {
  font-weight: bold;
  font-style: normal;
}

/* カテゴリーと新着ラベル */
.entry-category,
.entry-new {
  font-size: 12px;
}

.entry-new {
  display: inline-block;
  padding: 0 5px;
  color: #E11313;
}

/* タイトル */
.entry-title {
  margin: 10px 0;
  font-size: 24px;
  padding: 0 5px;
}

.entry-title a {
  color: #000;
}

.entry-title .acms-entry h2 {
  padding: 0;
}

.entry-title#article-404 {
  padding: 0;
  font-size: 20px;
}

/* エントリーのスタイル */
.entry-column {
  color: #333;
  word-wrap: break-word;
}

.entry-column em, .entry-column strong {
  font-weight: bold;
  font-style: normal;
}

.entry-column strong {
  color: #E11313;
}

.entry-column h2 {
  margin: 0 10px 25px 10px;
  font-size: 20px;
}

.entry-column h2.module-heading {
  margin: 0;
}

.entry-column h2.section-head {
  font-size: 24px;
  letter-spacing: 0;
}

.entry-column h3 {
  margin: 0 10px 20px 10px;
  padding: 5px 10px;
  font-size: 17px;
  color: #333;
  background: #E5E5E5;
}

.entry-column h4 {
  margin: 0 10px 20px 10px;
  font-size: 17px;
  color: #333;
}

.entry-column a:link {
  text-decoration: none;
}

.entry-column a:hover, .entry-column a:focus, .entry-column a:active {
  text-decoration: underline;
}

.entry-column a:visited {
  color: #7f5ad7;
  text-decoration: none;
}

/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.7;
}

.entry-column p.entry-danger-text {
  color: #c41134;
  font-weight: bold;
}

.entry-column p.summary-title {
  margin: 0 0 10px 0;
}

.entry-column p.summary-detail {
  margin: 0 0 10px 0;
  font-size: 14px;
}

/* エントリー内コンテナー */
.entry-container {
  margin: 0 5px;
}

[class^=column-table] .entry-container {
  margin-bottom: 30px;
  overflow-x: auto;
}

[class^=column-table] table {
  margin-bottom: 0;
}

/* テーブル */
.entry-column table {
  width: 100%;
  border-top: 1px solid #dfdfdf;
}

.entry-column th,
.entry-column td {
  display: block;
  padding: 10px;
  color: #000;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #dfdfdf;
  font-size: 15px;
}

.entry-column .acms-table-responsive {
  border-top: 0;
  border-bottom: 0;
}

.entry-column .acms-table-responsive th,
.entry-column .acms-table-responsive td {
  display: table-cell;
  white-space: nowrap;
}

.entry-column .acms-table-responsive table {
  margin: 0;
}

.entry-column th {
  background: #f5f5f5;
}

.entry-column .entry-custom-table {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .entry-column th,
  .entry-column td {
    display: table-cell;
    padding: 15px;
    text-align: left;
  }
  .entry-column th {
    background: inherit;
  }
  .entry-column tr:nth-child(odd) {
    background: #f5f5f5;
  }
}

/* リスト */
.entry-column ul {
  margin: 0 0 25px 0;
  padding: 0 0 0 2em;
}

.entry-column ul li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}

.entry-column ul.summary-default {
  padding: 0;
}

.entry-column ul.summary-default li {
  margin: 0;
}

/* 番号付きリスト */
.entry-column ol {
  margin: 0 0 25px 0;
  padding: 0 0 0 2.5em;
}

.entry-column ol li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* 定義リスト */
.entry-column dl {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}

.entry-column dt {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}

.entry-column dd {
  margin-bottom: 10px;
  margin-left: 0;
  line-height: 1.5;
  font-size: 16px;
}

/* 引用 */
.entry-column blockquote {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 10px 20px 20px;
  line-height: 1.8;
  background: #F5F5F5;
  border-left: 5px solid #DEDEDE;
  font-size: 16px;
}

.entry-column .column-quote-auto blockquote {
  padding: 10px;
  border: 1px solid #D0D0D0;
}

.entry-column .column-quote-auto .quoteTitleLink {
  color: #333;
}

@media screen and (min-width: 480px) {
  /* 引用 */
  .entry-column blockquote {
    padding: 20px 20px 20px 30px;
  }
  .entry-column .column-quote-auto blockquote {
    padding: 15px;
  }
}

/* ソースコード */
.entry-column pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 30px 0;
  font-family: Menlo, Monaco, "Courier New", monospace;
}

.entry-column pre ol {
  margin: 0;
  padding: 0 0 0 2.5em;
}

.entry-column pre ol li {
  line-height: 1.5;
}

/* 区切り線 */
.entry-column hr {
  border: 0;
  border-bottom: 1px solid #E5E5E5;
}

/* ユニット */
.entry-column .caption {
  margin: 0 0 20px 0;
  font-size: 12px;
  line-height: 1.3;
  text-align: left;
}

.column-file-auto + .caption {
  margin-left: 10px;
}

.column-module {
  margin: 0 10px;
}

/* ユニットグループ */
.ug-bg-color {
  margin: 0 10px 25px 10px;
  padding: 20px 10px;
  background: #F5F5F5;
}

.ug-bg-color *:last-child {
  margin-bottom: 0;
}

.ug-bg-color h2 {
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.ug-bg-color h3,
.ug-bg-color h4 {
  margin-bottom: 10px;
}

@media screen and (min-width: 480px) {
  .ug-bg-color {
    padding: 25px 15px;
  }
}

/* NEWの文字 */
.new-visible {
  display: inline-block;
  padding: 0 5px;
  color: #E11313;
  font-size: 12px;
  vertical-align: 1px;
}

/* リンクのボタン */
.entry-column a.link-btn {
  color: #fff;
}

.entry-column a.link-btn:hover {
  text-decoration: none;
}

/* ダウンロードのボタン */
a.dl-btn {
  display: table;
  width: 100%;
  border: solid 1px #006536;
  background: url(../../images/icon_dl_green.png) no-repeat right 0.5em center #fff;
  background-size: auto 18px;
  color: #006536;
  font-weight: bold;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
}

a.dl-btn:visited {
  color: #006536;
}

a.dl-btn:hover {
  background-image: url(../../images/icon_dl_white.png);
  background-color: #006536;
  text-decoration: none;
  color: #fff;
}

a.dl-btn span {
  display: table-cell;
  vertical-align: top;
}

a.dl-btn img {
  display: block;
  width: 100%;
  height: auto;
}

a.dl-btn .dl-btn-thum {
  padding: 5px;
  width: 45px;
}

a.dl-btn .dl-btn-text {
  padding: 12px 40px 12px 0;
}

/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-column,
.entryFormLiteEditor {
  /* 色付きボタン */
}

.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 0;
}

.entry-column .entry-btn-default:hover, .entry-column .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
  color: #FFF;
  text-decoration: none;
}

.entry-column .entry-btn-default:focus, .entry-column .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active {
  color: #FFF;
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.entry-column .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
  color: #FFF;
  background-color: #444;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
  background-image: -webkit-linear-gradient(top, #666, #444);
  background-image: linear-gradient(to bottom, #666, #444);
}

.entry-column .entry-btn-default:active, .entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
  background: #444;
}

.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
  background: #FF9A00;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 0;
}

.entry-column .entry-btn-attention:hover, .entry-column .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}

.entry-column .entry-btn-attention:focus, .entry-column .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active {
  color: #FFF;
  -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.entry-column .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
  color: #FFF;
  background-color: #F08300;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FF9A00), to(#F08300));
  background-image: -webkit-linear-gradient(top, #FF9A00, #F08300);
  background-image: linear-gradient(to bottom, #FF9A00, #F08300);
}

.entry-column .entry-btn-attention:active, .entry-column .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
  background: #F08300;
}

/* ------------------------------
　　編集ページ
------------------------------ */
.field-title {
  padding: 0 10px;
}

.field-title:first-child {
  margin: 0 0 10px 0;
}

.field-table-inner {
  width: 100%;
}

.field-table-inner th,
.field-table-inner td {
  border: 0;
}

/* ------------------------------
　　レイアウトモジュール
------------------------------ */
/* 背景色 */
.layout-bg {
  padding: 20px 0;
  background: #F6F6F6;
}

.layout-space {
  padding: 20px 0;
}

/* カラムの中央寄せ */
.center-col {
  float: none;
  margin: 0 auto;
}

/* 見出し */
.section-heading {
  margin: 20px 0 40px 0;
  font-size: 28px;
}

.section-heading a {
  color: #333;
}

/* ------------------------------
　　各モジュール
------------------------------ */
/* フィールドグループ */
.group-heading {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.2;
}

.group-detail {
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.7;
}

/* ヘッドライン */
.lp-headline {
  font-size: 16px;
}

/* ------------------------------
　　フッター
------------------------------ */
/* お問い合わせ誘導エリア */
.lp-suggest-box {
  padding: 50px 0;
}

.lp-suggest-text {
  margin: 30px 0 10px 0;
}

.lp-suggest-tel {
  margin: 0;
  color: #C38A00;
  font-weight: bold;
  font-size: 34px;
}

.lp-suggest-tel a {
  color: #C38A00;
}

.btn-shadow {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

/* ------------------------------
　　セクション
------------------------------ */
.section {
  margin-top: 50px;
  margin-bottom: 50px;
}

/* セクションのタイトル */
.section-head {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}

.section-head::before, .section-head::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 22px;
  height: 5px;
}

.section-head::before {
  right: 50%;
  right: calc(50% + 1px);
  background-color: #006536;
}

.section-head::after {
  left: 50%;
  left: calc(50% + 1px);
  background-color: #CBCBCB;
}

/* セクションの背景色 */
.bg-gray {
  background-color: #f3f3f3;
}

/* ------------------------------
　　トップページ
------------------------------ */
/* セクション共通 */
.top-section {
  padding: 40px 0 50px;
  position: relative;
}

.top-section-negative {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  height: calc(100% - 68px);
}

.top-section .module-section {
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .top-section-negative {
    height: calc(100% - 72px);
  }
}

/* セクションの見出し */
.top-section-head {
  margin-top: 0;
}

.top-section-head_top {
  display: block;
  font-size: 30px;
  letter-spacing: 0.3em;
}

#top-current .top-section-head_top,
#top-past .top-section-head_top {
  letter-spacing: 0;
}

.top-section-head_bottom {
  display: block;
  font-size: 15px;
  letter-spacing: 0.3em;
}

@media (min-width: 480px) {
  .top-section-head_top {
    font-size: 35px;
  }
  #top-current .top-section-head_top,
  #top-past .top-section-head_top {
    letter-spacing: 0.2em;
  }
}

/* リンクのボタン */
.strong_link-btn {
  text-align: center;
  margin: 20px 0 0;
}

.strong_link-btn .link-btn {
  width: 100%;
  max-width: 340px;
  letter-spacing: 0.3em;
  font-size: 18px;
}

/* メインイメージ */
.top-image-wrapper {
  position: relative;
}

.top-image-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.top-image_bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 68%;
  background: url(../../images/top/top_image_bg.jpg) no-repeat center bottom;
  background-size: auto 100%;
}

.top-image_text-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-image_text {
  height: 45%;
  margin: 0;
  overflow: hidden;
}

.top-image_text span {
  display: block;
}

.top-image_text img {
  vertical-align: bottom;
}

.top-image_text_right {
  float: right;
  width: 50%;
  height: 100%;
  padding-bottom: 20px;
}

.top-image_text_right span {
  padding-left: 10px;
  height: 50%;
}

.top-image_text_right img {
  width: auto;
  height: 100%;
}

.top-image_text_left {
  float: left;
  width: 50%;
  height: 100%;
  text-align: right;
  padding-top: 20px;
}

.top-image_text_left span {
  height: 50%;
  padding-right: 10px;
}

.top-image_text_left img {
  height: 100%;
}

.top-image_bottomcopy {
  max-width: 514px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-image_bottomcopy_text {
  display: table;
  width: 100%;
  margin: 20px 0;
  line-height: 1;
}

.top-image_bottomcopy_text span {
  display: table-cell;
  vertical-align: middle;
}

.top-image_bottomcopy_text img {
  width: 100%;
  height: auto;
}

@media (min-width: 480px) {
  .top-image_bg {
    height: 100%;
  }
  .top-image_text {
    height: 100%;
  }
  .top-image_text_right {
    padding: 6% 0;
    text-align: right;
  }
  .top-image_text_left {
    padding: 6% 0;
    text-align: left;
  }
}

/* スクロールして */
.scroll-please-wrapper {
  position: absolute;
  width: 100%;
}

.scroll-please {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 16px;
  height: 28px;
  border-radius: 8px;
  background-color: #006536;
}

.scroll-please-ball {
  display: block;
  position: absolute;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #fff;
  vertical-align: bottom;
  -webkit-animation: ball 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite normal;
  animation: ball 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite normal;
}

@-webkit-keyframes ball {
  0% {
    top: 5px;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    top: 17px;
    opacity: 0;
  }
  100% {
    top: 17px;
    opacity: 0;
  }
}

@keyframes ball {
  0% {
    top: 5px;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    top: 17px;
    opacity: 0;
  }
  100% {
    top: 17px;
    opacity: 0;
  }
}

/* リード文（黒柳建設について） */
#top-about {
  padding-top: 0;
}

.top-lead_head {
  margin: 0 0 10px;
  color: #006536;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.top-lead_text {
  margin: 0 0 30px;
}

.top-lead-video {
  margin: 60px auto 0;
  max-width: 720px;
}

.top-lead-video_inner {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.top-lead-video_inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 480px) {
  .top-lead_text {
    text-align: center;
  }
}

/* インスタ */
#top-instagram .link-btn {
  background: -webkit-linear-gradient(45deg, #fed475 0%, #e53d5d 50%, #c23186 70%, #9c38bb 100%);
  background: linear-gradient(45deg, #fed475 0%, #e53d5d 50%, #c23186 70%, #9c38bb 100%);
  position: relative;
}

#top-instagram .link-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1em;
  width: 1em;
  height: 100%;
  background: url(../../images/icon_exit__white.png) no-repeat center/100% auto;
}

#top-instagram .link-btn:hover {
  opacity: 0.8;
}

.bg-insta {
  opacity: 0.4;
  background: -webkit-repeating-linear-gradient(135deg, #ffffff, #ffffff 2px, #f3f3f3 2px, #f3f3f3 10px);
  background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 2px, #f3f3f3 2px, #f3f3f3 10px);
}

.top-instagram-list {
  margin: 0 -2px;
}

.top-instagram-list::after {
  content: "";
  display: block;
  clear: both;
}

.top-instagram-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 2px;
  width: 20%;
  float: left;
  margin: 0 0 4px;
}

.top-instagram-link {
  display: block;
  width: 100%;
  padding: 100% 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.top-instagram-link:hover {
  opacity: 0.7;
}

/* 採用情報 */
#top-recruit {
  overflow: hidden;
}

.bg-yellow {
  background-color: #ffef02;
}

.top-recruit-box {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.top-recruit-ill {
  margin-bottom: 20px;
}

.top-recruit-ill_sp {
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 100%;
  min-width: 450px;
  height: auto;
}

.top-recruit-ill_pc {
  display: none;
}

.top-recruit-title {
  margin: 0 0 30px;
  position: relative;
}

.top-recruit-title_sp {
  display: block;
  width: 100%;
  height: auto;
}

.top-recruit-title_pc {
  display: none;
}

.top-recruit-cont {
  position: relative;
  padding: 0 10px;
}

.top-recruit-cont-link {
  margin: 0 0 20px;
}

.top-recruit-cont-link .link-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  -webkit-animation-name: tada;
  animation-name: tada;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.top-recruit-cont-link .link-btn img {
  display: block;
  width: 100%;
  max-width: 240px;
}

.top-recruit-cont-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.top-recruit-cont-btns-item {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.top-recruit-cont-btns-item.top-recruit-cont-btns-item__hideSp {
  display: none;
}

.top-recruit-cont-btns-item .link-btn {
  height: 100%;
  border-radius: 5px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-recruit-cont-btns-item .link-btn.rikunavi {
  background-image: none;
  border: solid 2px #006dd9;
  background-color: #fff;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
  max-height: 60px;
}

.top-recruit-cont-btns-item .link-btn.rikunavi img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-width: 180px;
  mix-blend-mode: multiply;
}

.top-recruit-cont-btns-item .link-btn.rikunavi:hover, .top-recruit-cont-btns-item .link-btn.rikunavi:active {
  background-color: #a1c8e6;
}

.top-recruit-cont-insta {
  text-align: center;
  padding: 50px 20px 15px;
}

.top-recruit-cont-insta img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  3.4%,
  2.8% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  10.2%,
  17%,
  23.8%,
  30.6% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 3deg);
  }
  13.6%,
  20.4%,
  27.2% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, -3deg);
  }
  34% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  3.4%,
  2.8% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  10.2%,
  17%,
  23.8%,
  30.6% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, 3deg);
  }
  13.6%,
  20.4%,
  27.2% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.05, 1.05, 1.05) rotate3d(0, 0, 1, -3deg);
  }
  34% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@media (min-width: 768px) {
  .top-recruit-box {
    max-width: 100%;
    padding: 0 270px 0 0;
  }
  .top-recruit-ill {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 320px;
    margin: 0;
  }
  .top-recruit-ill_sp {
    display: none;
  }
  .top-recruit-ill_pc {
    display: block;
    width: 100%;
    height: 100%;
  }
  .top-recruit-title_sp {
    display: none;
  }
  .top-recruit-title_pc {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .top-recruit-cont {
    padding: 0 5px;
  }
  .top-recruit-cont-btns-item {
    width: calc((100% - 20px) / 3);
  }
  .top-recruit-cont-btns-item.top-recruit-cont-btns-item__hideSp {
    display: block;
  }
}

@media (min-width: 1024px) {
  .top-recruit-box {
    padding-right: 420px;
  }
  .top-recruit-ill {
    width: 400px;
  }
}

/* インスタのリンク */
.top-recruitInsatLink {
  position: relative;
  padding: 30px 0 6px;
  text-align: center;
}

.top-recruitInsatLink::after {
  content: "";
  display: inline-block;
  vertical-align: top;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 18px solid #44b036;
  border-bottom: 0;
}

@media (min-width: 768px) {
  .top-recruitInsatLink {
    padding-right: 10px;
  }
}

.top-recruitInsatLink-btn {
  display: block;
  border: solid 4px #44b036;
  background-color: #fff;
  color: #44b036;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  padding: 10px 20px;
  border-radius: 100vmax;
}

.top-recruitInsatLink-btn:visited {
  color: #44b036;
  text-decoration: none;
}

.top-recruitInsatLink-btn:active, .top-recruitInsatLink-btn:hover {
  color: #fff;
  background-color: #44b036;
  text-decoration: none;
}

.top-recruitInsatLink-btn svg {
  margin: 0 auto;
  max-width: 550px;
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}

/* 採用インスタのスライダー */
.top-recruit-insta ul.slick-dots li button {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
}

.top-recruit-insta-slider {
  margin: 0 20px;
}

.top-recruit-insta-item {
  padding: 0 3px;
}

.top-recruit-insta-link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.top-recruit-insta-link:active, .top-recruit-insta-link:hover {
  opacity: 0.7;
}

.top-recruit-insta-img {
  aspect-ratio: 4 / 5;
  background-color: #44b036;
}

.top-recruit-insta-img img,
.top-recruit-insta-img video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.top-recruit-insta-linkBtn {
  text-align: center;
  margin-top: 30px;
}

.top-recruit-insta-linkBtn .link-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  max-width: 340px;
  font-size: 18px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #44b036;
  background-image: url(../../images/icon_exit__white.png);
}

.top-recruit-insta-linkBtn .link-btn:hover, .top-recruit-insta-linkBtn .link-btn:active {
  background-color: #409f34;
}

.top-recruit-insta-linkBtn .link-btn svg {
  margin-right: 0.5em;
  display: block;
  width: 1.2em;
  height: auto;
}

/* 事業案内 */
.service-list {
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}

.service-list_item {
  display: block;
  color: #000;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.service-list_item:visited {
  color: #000;
}

.service-list_item:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.7;
}

.service-list_item:nth-child(-n + 2) {
  margin-bottom: 20px;
}

.service-list_photo {
  margin: 0 0 5px 0;
}

.service-list_photo img {
  display: block;
  width: 100%;
  height: auto;
}

.service-list_body h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  background-image: url(../../images/icon_arrow_right_green.png);
  background-size: auto 1em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-position: right top;
  background-size: 1.2em;
}

.service-list_body p {
  margin: 0;
  padding: 0;
  font-size: 13px;
}

@media (min-width: 480px) {
  .service-list_body h3 br {
    display: none;
  }
}

@media (min-width: 1024px) {
  .service-list_body h3 {
    padding: 0 10px;
    font-size: 18px;
  }
  .service-list_body p {
    padding: 0 10px;
  }
}

/* お知らせとブログ */
.nb-index-link {
  margin: 15px 0 0;
  font-size: 12px;
  text-align: right;
}

.nb-index-link a {
  color: #000;
}

.i-arrow {
  background-image: url(../../images/icon_arrow_right_black.png);
  background-size: auto 1em;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

.i-exit {
  background-image: url(../../images/icon_exit__black.png);
  background-size: auto 1em;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .top-news-blog-wrapper {
    background-color: #f3f3f3;
  }
  .top-news-blog-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
  }
  .top-news-blog-grid {
    margin: 0 -25px;
  }
  .top-news-blog-grid .top-section {
    float: left;
    width: 50%;
    padding: 30px 25px 50px;
  }
  .top-news-blog-grid .acms-container {
    padding: 0;
  }
  .top-news-blog-grid .headline-link:hover {
    background: #ebebeb;
  }
}

/* 工事関係書類のバナー */
.dl_banner {
  display: block;
  max-width: 450px;
  margin: 0 auto;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.dl_banner img {
  width: 100%;
  height: auto;
}

.dl_banner:hover {
  opacity: 0.8;
}

.dl_banner_sp {
  display: block;
}

.dl_banner_pc {
  display: none;
}

@media (min-width: 480px) {
  .dl_banner {
    max-width: 650px;
  }
  .dl_banner_sp {
    display: none;
  }
  .dl_banner_pc {
    display: block;
  }
}

@media (min-width: 768px) {
  .bg-gray.wrapper-dl_banner {
    background-color: #fff;
  }
}

/* ------------------------------
　　実績紹介
------------------------------ */
/* 部門のラベル */
[class^="department-icon"] {
  display: inline-block;
  position: relative;
  height: 28px;
  margin: 0 20px 0 0;
  padding: 0 6px 0 10px;
  background: #006536;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 28px;
}

[class^="department-icon"]::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 18px 0 0;
  border-color: #006536 transparent transparent transparent;
}

.department-icon-doboku {
  background: #fd891c;
}

.department-icon-doboku::after {
  border-color: #fd891c transparent transparent transparent;
}

.department-icon-kenchiku {
  background: #0fa10f;
}

.department-icon-kenchiku::after {
  border-color: #0fa10f transparent transparent transparent;
}

.department-icon-iji {
  background: #17368b;
}

.department-icon-iji::after {
  border-color: #17368b transparent transparent transparent;
}

[class^="sec-icon-"] {
  display: inline-block;
  padding: 0 10px 0 0;
}

.sec-icon-road {
  color: #18b7cd;
}

.sec-icon-river {
  color: #f29600;
}

.sec-icon-bridge {
  color: #e066b2;
}

.sec-icon-public {
  color: #18b7cd;
}

.sec-icon-private {
  color: #f29600;
}

/* メインイメージ */
.main-image-container {
  margin: 0 10px 30px 10px;
}

.main-image {
  max-width: 600px;
  margin: 0 auto;
}

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

.main-image .caption {
  margin-top: 5px;
  margin-bottom: 0;
}

/* 工事概要の表 */
.tabel-overview {
  margin-bottom: 20px;
}

/* サブ画像 */
.sub-image .caption {
  margin-bottom: 0;
}

/* 一覧ページの絞り込み部分 */
.fieldsearch dt {
  font-weight: bold;
  background-image: url(../../images/icon_arrow_bottom_white.png);
  background-size: auto 1em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
}

.fieldsearch dd {
  margin: 0;
}

.fieldsearch input[type="submit"] {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #FF9A00;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
}

.fieldsearch input[type="submit"]:hover {
  background-color: #F08300;
}

.fieldsearch.searchOpen dt {
  background-image: url(../../images/icon_arrow_top_white.png);
}

@media (max-width: 767px) {
  .fieldsearch {
    text-align: center;
  }
  .fieldsearch dt {
    padding: 5px 0;
    background-color: #666;
    color: #ffffff;
  }
  .fieldsearch dt i {
    background-image: url(../../images/icon_arrow_up_white.png);
    background-size: auto 1em;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
  }
  .fieldsearch dd {
    display: none;
    padding: 3px 10px 8px;
    background-color: #ddd;
  }
  .fieldsearch dd .acms-form-checkbox {
    margin-top: 5px;
  }
  .fieldsearch input[type="submit"] {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 5px 0;
  }
}

@media (min-width: 768px) {
  .fieldsearch {
    text-align: center;
  }
  .fieldsearch dt {
    display: inline-block;
  }
  .fieldsearch dt::after {
    content: "：";
  }
  .fieldsearch dd {
    display: inline-block !important;
  }
  .fieldsearch input[type="submit"] {
    padding: 3px 10px;
  }
}

/* 現在の工事の一覧ページ */
.summary-current_item {
  border-bottom: solid 1px #dfdfdf;
  padding: 0 0 30px 0;
  margin: 0 0 30px 0;
}

.summary-current_photo {
  position: relative;
  margin: 0 0 10px;
}

.summary-current_title {
  font-size: 15px;
  margin: 0 0 10px;
}

.summary-current_table {
  width: 100%;
  font-size: 12px;
}

.summary-current_table th, .summary-current_table td {
  padding: 3px 0;
  text-align: left;
  vertical-align: top;
}

.summary-current_table th {
  min-width: 5em;
  white-space: nowrap;
}

.summary-current_link {
  margin: 20px 0 0 0;
}

.summary-current_link .link-btn {
  width: 100%;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.1em;
}

@media (min-width: 480px) {
  .summary-current_item {
    padding-right: 10px;
    padding-left: 10px;
  }
  .summary-current_photo {
    float: left;
    width: 40%;
    padding: 0 15px 0 0;
  }
  .summary-current_body {
    float: left;
    width: 60%;
    padding: 0 0 0 15px;
  }
}

@media (min-width: 768px) {
  .summary-current_title {
    font-size: 20px;
    margin: 0 0 15px;
  }
  .summary-current_table {
    font-size: 15px;
  }
  .summary-current_link {
    margin: 30px 0 0 0;
  }
}

@media (min-width: 1024px) {
  .summary-current_item {
    padding-right: 20px;
    padding-left: 20px;
  }
  .summary-current_photo {
    width: 43%;
  }
  .summary-current_body {
    width: 57%;
  }
}

/* ------------------------------
　　事業案内
------------------------------ */
/* 一覧ページ */
.service-item {
  position: relative;
}

.service-photo {
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.service-body_box {
  padding: 20px 0 50px 0;
}

.service-body_title {
  color: #006536;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.service-body_title h2 {
  margin: 0 0 10px 0;
}

.service-body_title p {
  margin: 0 0 15px -0.4em;
  font-size: 12px;
}

.service-body_lead {
  margin: 0 0 15px 0;
  font-size: 15px;
}

.service-body_text {
  margin: 0 0 30px 0;
}

.service-body_link {
  margin: 0;
}

.service-body_link .link-btn {
  width: 100%;
  max-width: 360px;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}

@media (min-width: 480px) {
  .service-body_title h2 {
    display: inline-block;
    margin: 0 10px 10px 0;
  }
  .service-body_title p {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .service-photo {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
  }
  .service-photo-left {
    right: 0;
  }
  .service-photo-right {
    left: 0;
  }
  .service-body {
    min-height: 386px;
  }
  .service-body-right {
    padding-left: 50%;
  }
  .service-body-right .service-body_box {
    padding: 40px 0 40px 50px;
  }
  .service-body-left {
    padding-right: 50%;
  }
  .service-body-left .service-body_box {
    padding: 40px 50px 40px 0;
  }
}

/* エントリーの下の線を消す */
body.service .entry {
  border-bottom: 0;
}

/* ページタイトル下のリード文 */
.page-lead-wrapper {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}

.page-lead-bg, .page-lead-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.title-bottom-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.title-bottom-img_item {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-lead-cover {
  background: #013d1b;
  opacity: 0.6;
}

.page-lead-inner {
  position: relative;
}

.page-lead-box {
  display: table;
  width: 100%;
  min-height: 150px;
}

.page-lead {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  color: #fff;
}

.page-lead_text {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.page-lead_text.has-sptext {
  display: none;
}

@media (min-width: 480px) {
  .page-lead_text {
    font-size: 24px;
  }
  .page-lead_text.has-sptext {
    display: block;
  }
  .page-lead_head-sp, .page-lead_text-sp {
    display: none;
  }
}

/* 部門別 */
.department-section {
  margin-bottom: 0;
}

.department-block {
  margin-bottom: 30px;
}

.department-title {
  margin-bottom: 10px;
}

.department-title-blue {
  color: #18b7cd;
}

.department-title-orange {
  color: #f29600;
}

.department-title-bridge {
  color: #e066b2;
}

.department-name {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
}

.department-no {
  position: relative;
  top: 3px;
  margin-right: 15px;
  font-size: 50px;
  font-weight: bold;
}

.department-product {
  margin: 0 0 15px 0;
  font-weight: bold;
}

.department-text {
  margin: 0;
}

.summary_service {
  margin-bottom: 10px;
}

@media (min-width: 480px) {
  .department-name {
    display: inline-block;
    margin-right: 20px;
  }
  .department-product {
    display: inline-block;
  }
}

/* 緑の背景 */
.department-section.prideof {
  margin-top: 0;
  padding: 50px 0;
  background-color: #e4f9e7;
}

.prideof_title {
  margin: 20px 0;
}

.prideof_en {
  margin: 0 0 10px 0;
  border-bottom: solid 1px #006536;
  color: #006536;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.4em;
}

.prideof_en span {
  font-size: 2em;
}

.prideof_head {
  margin: 0;
  font-size: 20px;
}

.prideof_text {
  margin: 0;
}

.prideof_text dt {
  float: left;
}

.prideof_text dd {
  padding: 0 0 0 1.2em;
  margin: 0 0 20px 0;
}

.prideof_text dd:last-child {
  margin: 0;
}

.prideof_photo_bg {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding-bottom: 68%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 480px) {
  .prideof_title {
    margin: 0 0 20px 0;
  }
  .prideof_en {
    margin: 0 -20px 10px 0;
  }
}

/* 倉庫事業・不動産事業 */
@media (max-width: 479px) {
  .page-title.page-title_warehouse_realestate,
  .page-description.page-description_warehouse_realestate {
    letter-spacing: 0;
  }
}

.stock-wrapper {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.stock-bg {
  padding: 70px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../../images/service/highway.jpg);
}

.stock-head {
  margin: 0 20px;
  padding: 0 0 0 8px;
  border-left: solid 5px #006536;
  font-size: 24px;
  line-height: 1.3;
}

.stock-text {
  margin: 30px 0 0 0;
}

@media (min-width: 768px) {
  .stock-bg {
    display: none;
  }
  .stock-wrapper {
    position: relative;
    padding: 50px 0;
    background-image: url(../../images/service/highway.jpg);
  }
  .stock-head {
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .stock-wrapper {
    background-position: right center;
  }
}

/* ------------------------------
　　会社概要
------------------------------ */
/* ごあいさつ */
.page-lead_policy {
  margin: 0;
}

.ourpolicy {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.ourpolicy_sp {
  display: block;
  max-width: 240px;
}

.ourpolicy_pc {
  display: none;
  max-width: 550px;
}

.greet {
  max-width: 620px;
  margin: 0 auto;
}

.greet-photo {
  text-align: center;
  margin: 0 0 40px;
}

.greet-photo-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  max-width: 345px;
}

.greet-photo-name {
  margin: 10px 0 0;
  font-weight: bold;
}

.greet-photo-name span {
  font-size: 13px;
  margin-right: 1em;
}

.greet-cont-head {
  font-weight: bold;
  font-size: 22px;
  padding: 0 0 0 10px;
  margin: 0 0 16px;
  border-left: solid 5px #006536;
}

.greet-cont-txt {
  margin: 0 0 40px;
  line-height: 2;
}

.greet-cont-txt strong {
  font-weight: normal;
  color: #006536;
  font-weight: bold;
}

.company-links {
  padding: 50px 0;
}

.company-links-container {
  max-width: 640px;
}

.company-link {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
}

.company-link:hover {
  opacity: 0.7;
}

.company-link_left {
  background-image: url(../../images/company/bg_link_left.jpg);
}

.company-link_right {
  background-image: url(../../images/company/bg_link_right.jpg);
}

.company-link_item {
  display: block;
  padding: 30px 0;
  background-color: rgba(1, 61, 27, 0.6);
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.company-link_item:visited {
  color: #fff;
}

.company-link_item:hover {
  color: #fff;
  text-decoration: none;
}

@media (min-width: 480px) {
  .ourpolicy_sp {
    display: none;
  }
  .ourpolicy_pc {
    display: block;
  }
  .company-link_item {
    padding: 50px 0;
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}

@media (min-width: 1024px) {
  .greet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    max-width: none;
  }
  .greet-cont {
    padding-right: 80px;
    margin: 0;
    width: calc(100% - 345px);
  }
}

/* エントリー */
body.company .entry {
  border-bottom: 0;
}

.company-topimage {
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* 会社概要のテーブル */
.box-gaiyou {
  margin-bottom: 50px;
}

.table-gaiyou th, .table-gaiyou td {
  padding: 10px;
  line-height: 1.7;
}

.table-gaiyou dl {
  margin: 0 0 10px 0;
}

.table-gaiyou dl:last-child {
  margin: 0;
}

.table-gaiyou dt, .table-gaiyou dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.table-gaiyou dd {
  padding: 0 0 0 1em;
}

.table-gaiyou dd span {
  display: inline-block;
}

a.map-btn {
  display: inline-block;
  height: 16px;
  padding: 0 18px 0 8px;
  margin: 0 0 0 8px;
  background-color: #18b7cd;
  border-radius: 8px;
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  vertical-align: 3px;
  background-image: url(../../images/icon_exit__white.png);
  background-size: auto 1em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
}

a.map-btn:visited {
  color: #fff;
}

a.map-btn:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .table-gaiyou th, .table-gaiyou td {
    padding: 10px 15px;
    background: #fff;
  }
  .table-gaiyou th {
    white-space: nowrap;
  }
}

/* 沿革のテーブル */
.box-enkaku {
  margin-bottom: 50px;
}

.tsuki {
  display: inline-block;
  width: 5em;
  padding-left: 0.5em;
}

@media (min-width: 768px) {
  .tsuki {
    text-align: right;
  }
}

/* CSR活動 */
.csr-section {
  padding: 35px 0 20px;
  position: relative;
}

.csr-section-negative {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  height: calc(100% - 50px);
}

.bg-pink {
  background: #fff3fc;
}

.section-head-csr {
  margin: 0 0 20px 0;
  padding: 55px 0 0 0;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1em;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 55px 55px;
}

#shokuba .section-head-csr {
  background-image: url(../../images/company/icon_shokuba.png);
}

#bousai .section-head-csr {
  background-image: url(../../images/company/icon_bousai.png);
}

#sonota .section-head-csr {
  background-image: url(../../images/company/icon_sonota.png);
}

#hyoushou .section-head-csr {
  background-image: url(../../images/company/icon_hyoushou.png);
}

.csr-item {
  margin: 0 0 20px 0;
}

.csr-item a {
  display: block;
  color: #000;
}

.csr-item a:hover {
  text-decoration: none;
}

.hyoushou-item {
  float: left;
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
}

.csr-photo {
  margin: 0 0 5px 0;
}

.csr-caption {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
}

@media (min-width: 480px) {
  .top-section-negative {
    height: calc(100% - 72px);
  }
  .hyoushou-item {
    width: 33.33%;
  }
}

@media (min-width: 768px) {
  .hyoushou-item {
    width: 20%;
  }
}

/* 経営理念 */
body.about .page-lead-wrapper {
  padding: 0;
}

@media (max-width: 479px) {
  body.about .title-bottom-img {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  body.about .title-bottom-img_item {
    width: 50%;
    height: 50%;
  }
}

.rinen-container {
  position: relative;
}

.rinen {
  display: table;
  width: 100%;
  min-height: 250px;
}

.rinen-inner {
  display: table-cell;
  padding: 50px 0;
  text-align: center;
  vertical-align: middle;
}

.rinen-text img {
  width: 100%;
  max-width: 235px;
  vertical-align: bottom;
}

@media (min-width: 768px) {
  .rinen {
    min-height: 370px;
  }
  .rinen-text img {
    max-width: 700px;
  }
}

/* 各項目 */
.about-section {
  position: relative;
  margin: 50px 0;
}

.pw-photo {
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.pw-photo-inner {
  display: none;
}

.pw-body {
  position: relative;
  margin: -20px 0 0 0;
}

.pw-head {
  margin: 0;
}

.pw-head img {
  display: block;
  width: 100%;
  max-width: 275px;
  height: auto;
}

.pw-head-en {
  position: relative;
  margin: 20px 0 0 0;
  padding: 0 0 0 35%;
}

.pw-head-en img {
  display: block;
  width: 100%;
  max-width: 215px;
  height: auto;
}

.pw-head-en::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  width: 30%;
  background-color: #006536;
}

.pw-lead {
  margin: 20px 0;
  font-size: 24px;
  line-height: 2;
}

.pw-text {
  margin: 0;
  line-height: 2;
}

@media (min-width: 768px) {
  .pw-photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
  }
  .pw-riverse .pw-photo {
    left: auto;
    right: 0;
  }
  .pw-photo-inner {
    display: block;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-position: right -1px top;
    background-size: auto 103%;
    background-image: url(../../images/about/pw_photo_cover_right.png);
  }
  .pw-riverse .pw-photo-inner {
    background-position: left -1px top;
    background-image: url(../../images/about/pw_photo_cover_left.png);
  }
  .pw-body {
    margin: 0;
    padding: 0 0 0 40%;
    min-height: 520px;
  }
  .pw-riverse .pw-body {
    padding: 0 40% 0 0;
  }
  .pw-body-inner {
    padding: 40px 0 40px 30px;
  }
  .pw-head img {
    max-width: 400px;
  }
  .pw-head-en {
    width: calc(100% + 70px);
    margin: 20px 0 0 -70px;
    padding: 0 0 0 50%;
  }
  .pw-head-en img {
    max-width: none;
  }
  .pw-head-en::after {
    content: "";
    height: 4px;
    width: 40%;
  }
  .pw-lead {
    margin: 20px 0;
    font-size: 34px;
    line-height: 1.7;
  }
}

@media (min-width: 1024px) {
  .pw-photo {
    width: 50%;
  }
  .pw-body {
    padding: 0 0 0 50%;
  }
  .pw-riverse .pw-body {
    padding: 0 40% 0 0;
  }
  .pw-body-inner {
    padding: 40px 0 40px 70px;
  }
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .message-group {
  margin: 0 0 35px 0;
}

.contact-box .message-text {
  color: #C41134;
  font-weight: bold;
}

.contact-box .contact-no {
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 30px;
}

.contact-box .contact-no a {
  color: inherit;
}

.contact-box .error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: #C41134;
}

.contact-box .message {
  margin: 0 0 20px;
}

.contact-form {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border-top: 1px solid #DFDFDF;
}

.contact-form-group {
  background: #fff;
}

.contact-form-label {
  display: block;
  margin: 0;
  padding: 10px 10px 0 10px;
  text-align: left;
}

.contact-form-control {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #DFDFDF;
}

.contact-form-label {
  font-weight: bold;
}

.contact-form-grid {
  margin: 0 -5px;
}

.contact-form-col,
.acms-entry .contact-form-col {
  margin: 0 0 10px 0;
  padding: 0 5px;
}

.contact-form-col:last-child,
.acms-entry .contact-form-col:last-child {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .contact-form {
    display: table;
    width: 100%;
  }
  .contact-form-group {
    display: table-row;
  }
  .contact-form-label,
  .contact-form-control {
    display: table-cell;
  }
  .contact-form-label {
    width: 33.33333%;
    padding: 15px;
    vertical-align: top;
    border-bottom: 1px solid #DFDFDF;
  }
  .contact-form-control {
    width: 66.66667%;
    padding: 15px;
  }
  .contact-form-col {
    margin: 0;
  }
}

/* ステップ
------------------------------ */
.contact-box .mail-step {
  margin: 0 0 35px 0;
  padding: 0 10px;
  background: #E5E5E5;
  /* カウンターの設定 */
  counter-reset: mailStep;
}

.contact-box .mail-step-item {
  float: left;
  margin: 0 10px;
  padding: 18px 0 14px;
  color: #999;
  font-weight: bold;
  list-style: none;
  border-bottom: 4px solid transparent;
  font-size: 16px;
}

.contact-box .mail-step-item:before {
  content: counter(mailStep) ".";
  /* カウンターの設定 */
  counter-increment: mailStep;
}

.contact-box .mail-step-item-current {
  color: #333;
  border-bottom: 4px solid #333;
}

@media screen and (min-width: 768px) {
  .contact-box .mail-step {
    height: 60px;
  }
}

/* 送信ボタン
------------------------------ */
.form-btn-box {
  margin: 30px 10px 50px 10px;
  text-align: center;
}

.form-btn {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .form-btn-send {
    width: 100%;
    max-width: 360px;
  }
}

/* ラベル
------------------------------ */
.label-required {
  margin: 0 5px;
  padding: 0 5px;
  color: #FFF;
  background: #E44555;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .label-required {
    float: right;
  }
}

/* フォーム要素
------------------------------ */
.contact-box select[required]:required {
  border: 1px solid #C49511;
}

.contact-box select.focused:invalid {
  border: 1px solid #c41134;
}

.contact-box select[required]:valid {
  border: 1px solid #A7A7AA;
}

.contact-box input[required]:required,
.contact-box textarea[required]:required {
  background: #FFFDEB;
}

.contact-box input.focused:invalid,
.contact-box textarea.focused:invalid {
  background: #FFEBEE;
}

.contact-box input[required]:valid,
.contact-box textarea[required]:valid {
  background: #FFF;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="datetime"],
.contact-box input[type="datetime-local"],
.contact-box input[type="date"],
.contact-box input[type="month"],
.contact-box input[type="time"],
.contact-box input[type="week"],
.contact-box input[type="number"],
.contact-box input[type="email"],
.contact-box input[type="url"],
.contact-box input[type="search"],
.contact-box input[type="tel"] {
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 5px 10px;
  border-radius: 0;
}

.contact-box textarea {
  font-size: 16px;
  padding: 5px 5px 4px;
}

.contact-box select {
  min-height: 32px;
  padding-top: 6px;
  padding-bottom: 5px;
  font-size: 16px;
  vertical-align: top;
}

/* バリデーター
------------------------------ */
.valid-mark {
  display: none;
}

.valid-mark.valid {
  display: inline;
  float: right;
  color: #5cb85c;
}

.invalid {
  background: #ffebee !important;
}

/* 電話・FAXのところ
------------------------------ */
.telfax {
  text-align: center;
}

.telfax:first-child {
  margin-bottom: 20px;
}

.telfax_main {
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}

.telfax_main span {
  font-size: 18px;
  margin-right: 5px;
}

@media (min-width: 480px) {
  .box-telfax {
    display: table;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    table-layout: fixed;
  }
  .telfax {
    display: table-cell;
    padding: 0 10px;
    text-align: center;
  }
  .telfax_main {
    display: block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
  }
  .telfax_main span {
    font-size: 18px;
    margin-right: 5px;
  }
}

/* ------------------------------
　　ヘッダー
------------------------------ */
/* 外枠 */
.head-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
}

.head-container {
  position: relative;
  z-index: 9999;
}

/* 内枠 */
.header {
  position: relative;
  height: 50px;
}

/* ロゴ */
.site-name {
  margin: 0 0 0 -20px;
  padding: 10px 0 0 10px;
}

.site-name img {
  display: block;
  width: auto;
  height: 30px;
}

@media (min-width: 1024px) {
  /* 外枠 */
  .head-wrapper {
    position: static;
  }
  /* 内枠 */
  .header {
    height: 105px;
  }
  /* ロゴ */
  .site-name {
    margin: 0;
    padding: 15px 0 0 0;
  }
  .site-name img {
    height: 44px;
  }
}

/* ------------------------------
　　ナビゲーション
------------------------------ */
/* 外部リンク2つ */
.header-link {
  display: none;
}

@media (min-width: 1024px) {
  .header-link {
    display: table;
    position: absolute;
    top: 0;
    right: 380px;
  }
  .header-link_list {
    display: table-row;
    list-style: none;
  }
  .header-link_list_item {
    display: table-cell;
    font-size: 14px;
  }
  .header-link_list_item a {
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
  }
  .header-link_list_item:last-child a {
    padding: 15px 40px 15px 20px;
    background-image: url(../../images/icon_exit__white.png);
    background-repeat: no-repeat;
    background-color: #006dd9;
    background-position: right 10px center;
    background-size: auto 1em;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .header-link_list_item:last-child a:hover {
    background-color: #0063c5;
  }
}

/* 採用情報と問い合わせ */
.rc-nav {
  display: none;
}

.rc-nav_list_item i {
  display: none;
}

@media (min-width: 768px) {
  .rc-nav {
    display: table;
    position: absolute;
    top: 0;
    right: 30px;
    height: 100%;
  }
  .rc-nav_list {
    display: table-row;
    list-style: none;
  }
  .rc-nav_list_item {
    display: table-cell;
    position: relative;
    width: 130px;
    background: #006536;
    text-align: center;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
  }
  .rc-nav_list_item:hover {
    background-color: #004625;
  }
  .rc-nav_list_item > a {
    display: block;
    height: 100%;
    line-height: 50px;
    color: #fff;
  }
  .rc-nav_list_item > a:hover {
    text-decoration: none;
  }
  .rc-nav_list_item.rc-nav_list_item__entry {
    background: #fff000;
  }
  .rc-nav_list_item.rc-nav_list_item__entry:hover {
    background-color: #ffd900;
  }
  .rc-nav_list_item.rc-nav_list_item__entry > a {
    color: #000;
  }
  .rc-nav_list_item.rc-nav_list_item__rikunavi {
    background: #fff;
    border: solid 2px #0068b7;
  }
  .rc-nav_list_item.rc-nav_list_item__rikunavi:hover {
    background-color: #a1c8e6;
  }
  .rc-nav_list_item.rc-nav_list_item__rikunavi > a {
    line-height: 46px;
  }
  .rc-nav_list_item.rc-nav_list_item__rikunavi > a img {
    width: 80%;
    height: auto;
    mix-blend-mode: multiply;
  }
}

@media (min-width: 1024px) {
  .rc-nav {
    right: 0;
  }
  .rc-nav_list_item {
    width: 120px;
  }
  .rc-nav_list_item > a {
    line-height: 105px;
  }
  .rc-nav_list_item.rc-nav_list_item__rikunavi > a {
    line-height: 101px;
  }
  .rc-nav_list_item i {
    background-image: url(../../images/icon_arrow_bottom_black.png);
    background-size: auto 1em;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
  }
}

/* グローバルナビ */
.box_global-nav {
  display: none;
}

.child-nav-list {
  display: none;
  list-style: none;
  text-align: left;
}

@media (min-width: 1024px) {
  .box_global-nav {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 0 360px 0 0;
  }
  .box_global-nav ul {
    list-style: none;
  }
  .global-nav {
    display: table;
    width: 100%;
  }
  .global-nav_list {
    display: table-row;
    margin: 0;
    padding: 0;
  }
  .global-nav_list_item {
    display: table-cell;
    position: relative;
  }
  .global-nav_list_item:hover > a {
    color: #006536;
  }
  .global-nav_list_item > a {
    display: block;
    position: relative;
    padding: 8px 0;
    color: #000;
    text-align: center;
    letter-spacing: 0.1em;
  }
  .global-nav_list_item > a::before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 1px;
    height: 1.7em;
    background-color: #dcdcdc;
  }
  .global-nav_list_item > a:hover {
    text-decoration: none;
  }
  .global-nav_list_item > a i {
    background-image: url(../../images/icon_arrow_bottom_black.png);
    background-size: auto 1em;
    display: inline-block;
    width: 1em;
    height: 1em;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    vertical-align: middle;
  }
  .global-nav_list_item:hover > a i {
    background-image: url(../../images/icon_arrow_bottom_green.png);
  }
  .child-nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    margin: 0;
    padding: 0;
  }
  .child-nav-list_item a {
    display: block;
    padding: 10px 20px;
    background: #006536;
    border-top: solid 1px #004625;
    color: #fff;
    white-space: nowrap;
    -webkit-transition-duration: 0.25s;
    transition-duration: 0.25s;
  }
  .child-nav-list_item a:hover {
    background: #004625;
    text-decoration: none;
  }
  .child-nav-list_item:first-child a {
    border-top: 0;
  }
  .rc-nav_list_item .child-nav-list_item a {
    background: #fff000;
    border-top: solid 1px #ffd900;
    color: #000;
  }
  .rc-nav_list_item .child-nav-list_item a:hover {
    background-color: #ffd900;
  }
}

/* スマホメニューボタン */
.header_menu-button {
  position: absolute;
  top: 0;
  right: 0;
}

.menu-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #006536;
  border-left: solid 1px #fff;
}

.menu-button .menu-button_line {
  display: block;
  position: absolute;
  left: 16px;
  width: 18px;
  height: 1px;
  background: #fff;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.menu-button .menu-button_line:nth-child(1) {
  top: 16px;
}

.menu-button .menu-button_line:nth-child(2) {
  top: 24px;
}

.menu-button .menu-button_line:nth-child(3) {
  top: 32px;
}

.menu-open .menu-button_line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.menu-open .menu-button_line:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button_line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/* ------------------------------
　　スティッキー
------------------------------ */
.sticky-wrapper {
  display: none;
  visibility: hidden;
  border-bottom: solid 1px #ddd;
}

@media (min-width: 1024px) {
  /* 外枠 */
  .sticky-wrapper {
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    background: #fff;
  }
  .sticky-container {
    position: relative;
  }
  /* 内枠 */
  .sticky-header {
    position: relative;
    height: 45px;
  }
  .sticky-header .rc-nav_list_item > a {
    line-height: 45px;
  }
  .sticky-header .rc-nav_list_item:nth-child(2) > a {
    line-height: 41px;
  }
}

/* ------------------------------
　　スマートフォンのメニュー
------------------------------ */
/* 黒いカバー */
.spmenu-cover {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.menu-open .spmenu-cover {
  display: block;
}

/* 外枠 */
.box_spmenu {
  position: fixed;
  top: 0;
  right: -70%;
  z-index: 9998;
  max-width: 400px;
  width: 70%;
  height: 100%;
  padding-top: 50px;
  background: #006536;
  overflow-y: auto;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

.menu-open .box_spmenu {
  right: 0;
}

/* グローバルナビ */
.sp-global-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sp-global-nav a {
  display: block;
  padding: 5px 10px 5px 35px;
  background: #006536;
  color: #fff;
}

.sp-global-nav a:hover {
  text-decoration: none;
}

.sp-global-nav a:active {
  background-color: #004625;
}

.sp-global-nav_list_item {
  position: relative;
}

.sp-global-nav_list_item > a {
  font-weight: bold;
}

.sp-global-nav_list_item button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  padding: 0 0 0 10px;
  text-align: center;
}

.sp-global-nav_list_item button span {
  display: block;
  background: #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: #006536;
  line-height: 15px;
  background-image: url(../../images/icon_arrow_bottom_green.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.sp-global-nav_list_item button i {
  margin: 0;
}

.sp-global-nav_list_item.visible button span {
  background-image: url(../../images/icon_arrow_top_green.png);
}

.sp-child-nav-list {
  display: none;
}

.sp-child-nav-list_item {
  padding-left: 35px;
}

.sp-child-nav-list_item a {
  padding-left: 1em;
}

/* 外部リンク2つ */
.sp-link-list {
  margin: 0;
  padding: 0 0 15px;
  list-style: none;
}

.sp-link-list_item {
  margin-top: 10px;
  padding: 0 15px;
}

.sp-link-list_item a {
  display: block;
  padding: 10px 40px 10px 10px;
  background: #fff;
  color: #006536;
  font-weight: bold;
  background-image: url(../../images/icon_exit__green.png);
  background-size: auto 1em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
}

.sp-link-list_item a:hover {
  text-decoration: none;
}

/* ------------------------------
　　フッター
------------------------------ */
/* 外枠 */
.foot-wrapper {
  padding: 50px 0 30px;
  background: #006536;
}

/* フッター内会社情報 */
.company-about {
  margin: 0 0 10px 0;
  color: #FFF;
  text-align: center;
}

.company-name {
  margin: 0 0 15px 0;
}

.company-name img {
  display: inline-block;
  max-width: 257px;
  width: 100%;
}

.company-detail {
  margin: 0;
  padding: 0;
  color: #FFF;
  font-style: normal;
}

.company-detail a {
  color: #FFF;
}

.company-detail a:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .company-about {
    text-align: left;
  }
}

/* 外部リンク2つ */
.footer-link_list {
  margin: 0 -10px;
  padding: 0;
  list-style: none;
}

.footer-link_list_item {
  margin: 20px 0 0;
}

.footer-link_list_item a {
  display: block;
  margin: 0 auto;
  max-width: 500px;
  padding: 20px;
  background: #fff;
  color: #006536;
  font-weight: bold;
  text-align: center;
  -webkit-transition-duration: .25s;
  transition-duration: .25s;
  background-image: url(../../images/icon_exit__green.png);
  background-size: auto 1em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
}

.footer-link_list_item a:hover {
  background-image: url(../../images/icon_exit__white.png);
  background-color: #004625;
  color: #fff;
  text-decoration: none;
}

/* ナビゲーション */
.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav_list {
  float: right;
  max-width: 220px;
  width: 100%;
}

.footer-nav_list_item {
  margin: 0 0 10px;
}

.footer-nav_list_item a {
  display: block;
  padding: 0 15px 0 0;
  color: #fff;
  background-image: url(../../images/icon_arrow_right_white.png);
  background-size: auto 1em;
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-position: right center;
}

.footer-nav_list_item > a {
  font-weight: bold;
}

.footer-child-nav-list_item {
  padding-left: 1em;
}

/* 著作権表示 */
.copyright {
  margin: 30px 0 0;
  color: #FFF;
}

.copyright-text {
  margin: 0 auto;
}

.copryright-logo {
  vertical-align: middle;
}

/* ページの上に戻るボタン */
.page-top a:focus {
  display: block;
  border: 1px dotted #FFF;
}

.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: url("../../images/marker/btn_pageTop.png") no-repeat center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  right: calc(20px + constant(safe-area-inset-right));
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.no-js .page-top-btn {
  /* jsが無効の環境のとき */
  opacity: 0.6;
}

.page-top-btn-appear {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .page-top-btn {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .page-top-btn:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
  }
}
