@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  line-break: strict;
  word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #000;
}
a:hover {
  color: #000;
  text-decoration: none;
}
a:active {
  color: #000;
}
@media (min-width: 800px) {
  a.tel {
    pointer-events: none;
    cursor: default;
  }
}

@media (min-width: 800px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 799px) {
  .pc {
    display: none !important;
  }
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

/*　Retina対応時のCSS↓　*/
/*　=============================
	.header-space
=============================　*/
.header-space {
  height: 57px;
  width: 100%;
}

/*　=============================
	.header
=============================　*/
.header {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: solid 1px #dcdcdc;
}
.header .header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
}
.header .header-main .logo-area {
  width: 131px;
  height: 100%;
  position: relative;
  top: 2px;
}
.header .header-main .menu-area {
  display: flex;
}
.header .header-main .menu-area .menu-lists {
  display: flex;
}
.header .header-main .menu-area .menu-lists li {
  border-right: solid 1px #31b15c;
}
.header .header-main .menu-area .menu-lists li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 80px;
  background-color: #31be5c;
  color: #fff;
  line-height: 1;
}
.header .header-main .menu-area .hamburger-button {
  position: relative;
  right: 0;
  top: 0;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f6f6f7;
  z-index: 9999;
}
.header .header-main .menu-area .hamburger-button .line-area {
  position: relative;
  width: 20px;
  height: 16px;
}
.header .header-main .menu-area .hamburger-button .line-area span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #31be5c;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.header .header-main .menu-area .hamburger-button .line-area span:nth-child(1) {
  top: 0;
}
.header .header-main .menu-area .hamburger-button .line-area span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .header-main .menu-area .hamburger-button .line-area span:nth-child(3) {
  bottom: 0;
}
.header .header-main .menu-area .hamburger-button.active {
  background-color: #00a357;
}
.header .header-main .menu-area .hamburger-button.active .line-area span {
  background-color: #fff;
}
.header .header-main .menu-area .hamburger-button.active .line-area span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .header-main .menu-area .hamburger-button.active .line-area span:nth-child(2) {
  opacity: 0;
}
.header .header-main .menu-area .hamburger-button.active .line-area span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header {
  /*=============================
  	.global-nav-lists-container
  =============================*/
}
.header .global-nav-lists-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #31be5c;
  padding-top: 56px;
  /* ▼ 初期状態 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  /* ▼ 表示 */
}
.header .global-nav-lists-container.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.header .global-nav-lists-container {
  /* ▼ スクロール対応 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.header .global-nav-lists-container .global-nav-lists .item {
  border-bottom: solid 1px #00A357;
}
.header .global-nav-lists-container .global-nav-lists .item:nth-child(3) {
  padding-bottom: 140px;
}
.header .global-nav-lists-container .global-nav-lists .item > a {
  display: block;
  font-size: 17px;
  padding: 24px 36px;
  color: #fff;
}
.header .global-nav-lists-container .global-nav-lists .item .wrap {
  padding: 24px 36px;
}
.header .global-nav-lists-container .global-nav-lists .item .wrap .title {
  font-size: 14px;
  color: #fff;
  padding-bottom: 8px;
}
.header .global-nav-lists-container .global-nav-lists .item .wrap .lists-type-a li {
  display: inline-block;
  margin-right: 24px;
}
.header .global-nav-lists-container .global-nav-lists .item .wrap .lists-type-a li a {
  font-size: 17px;
  color: #fff;
  padding-left: 16px;
  position: relative;
}
.header .global-nav-lists-container .global-nav-lists .item .wrap .lists-type-a li a::after {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.header .global-nav-lists-container .global-nav-lists .item .wrap .lists-type-b li a {
  font-size: 14px;
  display: block;
  color: #fff;
  padding: 6px 0;
}

/*　=============================
	.footer
=============================　*/
.footer {
  margin-top: 70px;
  background-color: #005b34;
  padding-top: 80px;
  padding-bottom: 90px;
  /*=============================
  	.footer-inner
  =============================*/
}
.footer .footer-inner {
  margin: 0 auto;
  max-width: 1000px;
}
.footer {
  /*=============================
  	.footer-main
  =============================*/
}
.footer .footer-main .footer-logo-area {
  width: 100%;
  text-align: center;
  padding-bottom: 28px;
}
.footer .footer-main .footer-logo-area .footer-logo-image {
  padding-bottom: 18px;
}
.footer .footer-main .footer-logo-area .footer-logo-image .logo {
  display: inline-block;
  width: 180px;
}
.footer .footer-main .footer-logo-area .address-text {
  font-size: 12px;
  color: #fff;
}
.footer .footer-main {
  /*=============================
  	.footer-nav-area
  =============================*/
}
.footer .footer-main .footer-nav-area .footer-nav-lists {
  padding: 0 30px;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item {
  padding: 28px 0;
  border-top: solid 1px #3b8163;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item:nth-child(1) {
  border-bottom: solid 1px #3b8163;
  display: flex;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item:nth-child(1) .sp-item {
  width: 50%;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item:nth-child(3) {
  border-bottom: 0;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li {
  margin-bottom: 16px;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li:nth-last-child(1) {
  margin-bottom: 0;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li > a {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .recruit-title {
  font-size: 15px;
  padding-bottom: 12px;
  color: #fff;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-nav-lists li {
  margin-bottom: 8px;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-nav-lists li > a {
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 12px;
  font-size: 14px;
  line-height: 1;
  position: relative;
  color: #fff;
  display: block;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-nav-lists li > a::after {
  position: absolute;
  left: -4px;
  top: 2px;
  content: "・";
  font-size: 16px;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .group-title {
  font-size: 15px;
  color: #fff;
  padding-bottom: 12px;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li {
  width: 55%;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li:nth-child(1) {
  order: 1;
  width: 45%;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li:nth-child(2) {
  order: 3;
  width: 45%;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li:nth-child(3) {
  order: 5;
  width: 45%;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li:nth-child(4) {
  order: 2;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li:nth-child(5) {
  order: 4;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li:nth-child(6) {
  order: 6;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li a {
  font-size: 14px;
  color: #31be5c;
  padding-left: 15px;
  position: relative;
  padding-right: 20px;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li a::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: #31be5c;
  position: absolute;
  left: 2px;
  top: 50%;
}
.footer .footer-main .footer-nav-area .footer-nav-lists .nav-item .main-nav-lists > li .sub-group-nav-lists li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-color: #31be5c;
  mask-image: url(/images/common/icon-ext-link.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.footer {
  /*=============================
  	.footer-copy
  =============================*/
}
.footer .footer-copy {
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}
.footer .footer-copy small {
  color: #fff;
  font-size: 10px;
}

/*　=============================
	.title-containe
=============================　*/
.title-container {
  padding-bottom: 40px;
}
.title-container .title .en {
  font-size: 10px;
  color: #00a357;
  line-height: 1;
  display: block;
  padding-bottom: 8px;
}
.title-container .title .jp {
  font-size: 26px;
  line-height: 1.3;
  display: block;
}

/*　=============================
	.button-containe
=============================　*/
.button-container {
  width: 100%;
  display: flex;
  justify-content: right;
}
.button-container .button {
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  width: 170px;
  padding: 13px 14px;
  background-color: #31be5c;
  box-sizing: border-box;
  position: relative;
  border: solid 1px #00A357;
  text-align: left;
  transition: all 0.3s ease;
}
.button-container .button .text {
  width: calc(100% - 40px);
  text-align: left;
  display: inline-block;
}
.button-container .button .arrow-box {
  position: absolute;
  width: 40px;
  height: 40px;
  display: block;
  right: 0;
  top: 0;
  z-index: 1;
  border-left: solid 1px #00A357;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-container .button .arrow-box::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 8px;
  background-color: #fff;
  mask-image: url(/images/common/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: 14px 8px;
  mask-position: center;
}
.button-container .button.c-white {
  background-color: #fff;
  color: #000;
  border: solid 1px #dcdcdc;
}
.button-container .button.c-white .arrow-box {
  border-left: solid 1px #dcdcdc;
}
.button-container .button.c-white .arrow-box::after {
  background-color: #000;
}
.button-container .button.c-white:hover {
  background-color: #dcdcdc;
}
.button-container .button:hover {
  background-color: #31b15c;
}
.button-container .button.left-arrow .text {
  text-align: center;
  margin-left: auto;
}
.button-container .button.left-arrow .arrow-box {
  left: 0;
  border-left: none;
  border-right: solid 1px #dcdcdc;
}
.button-container .button.left-arrow .arrow-box::after {
  transform: scale(-1, 1);
}
.button-container.pos-center {
  justify-content: center;
}

/*　=============================
	.arrow-button
=============================　*/
a .arrow-button {
  width: 32px;
  height: 30px;
  border: solid #fff 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  transition: all 0.3s ease;
}
a .arrow-button::after {
  content: "";
  width: 13px;
  height: 7px;
  background-color: #fff;
  mask-image: url(/images/common/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: 13px 7px;
  mask-position: center;
}
a:hover .arrow-button {
  opacity: 0.7;
}

/*　=============================
	.fixed-button-container
=============================　*/
.fixed-button-container {
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
}
.fixed-button-container .item {
  width: 50%;
  border: solid 1px #00a357;
  box-sizing: border-box;
}
.fixed-button-container .item a {
  font-size: 14px;
  color: #fff;
  width: 100%;
  text-align: center;
  background-color: #31be5c;
  display: block;
  padding: 21px 0;
}

/*=============================
	.section-news
=============================*/
.section-news {
  padding-left: 20px;
  padding-right: 20px;
  /*=============================
  	.news-container
  =============================*/
}
.section-news .news-container {
  margin: 0 auto;
  /*=============================
  	.category-lists-container
  =============================*/
}
.section-news .news-container .category-lists-container {
  padding-bottom: 30px;
}
.section-news .news-container .category-lists-container .category-lists {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
}
.section-news .news-container .category-lists-container .category-lists .item a {
  text-align: center;
  padding: 4px 12px;
  font-size: 12px;
  display: inline-block;
  background-color: #fff;
  border: solid 1px #dcdcdc;
  border-radius: 3px;
}
.section-news .news-container {
  /*=============================
  	.news-lists-container
  =============================*/
}
.section-news .news-container .news-lists-container {
  padding-bottom: 24px;
}
.section-news .news-container .news-lists-container .news-lists .item {
  border-bottom: solid 1px #dcdcdc;
}
.section-news .news-container .news-lists-container .news-lists .item a {
  display: block;
  padding: 20px 10px;
}
.section-news .news-container .news-lists-container .news-lists .item a .news-meta {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  gap: 10px;
}
.section-news .news-container .news-lists-container .news-lists .item a .news-meta .news-date {
  font-size: 15px;
}
.section-news .news-container .news-lists-container .news-lists .item a .news-meta .news-category {
  position: relative;
  top: 2px;
  font-size: 10px;
  line-height: 1;
  background-color: #dcdcdc;
  width: 100px;
  text-align: center;
  padding: 5px 0;
  border-radius: 3px;
}
.section-news .news-container .news-lists-container .news-lists .item a .text {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

/*================================
	.breadcrumb-container
=================================*/
.breadcrumb-container {
  position: relative;
}
.breadcrumb-container .breadcrumb-inner {
  padding: 8px 30px;
}
.breadcrumb-container .breadcrumb-inner .breadcrumb {
  display: flex;
}
.breadcrumb-container .breadcrumb-inner .breadcrumb li {
  font-size: 12px;
  color: #000;
  padding-right: 24px;
  position: relative;
}
.breadcrumb-container .breadcrumb-inner .breadcrumb li::before {
  content: ">";
  position: absolute;
  right: 8px;
  top: 0;
  display: inline-block;
}
.breadcrumb-container .breadcrumb-inner .breadcrumb li:nth-last-child(1) {
  padding-right: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.breadcrumb-container .breadcrumb-inner .breadcrumb li:nth-last-child(1)::before {
  content: none;
}
.breadcrumb-container .breadcrumb-inner .breadcrumb li a {
  font-size: 12px;
  white-space: nowrap;
}

/*=============================
  .section-group
=============================*/
.section-group .group-lists-container .group-lists {
  display: flex;
  flex-direction: column;
}
.section-group .group-lists-container .group-lists .item a {
  display: block;
  padding: 20px 15px;
}
.section-group .group-lists-container .group-lists .item a .photo-area {
  padding-bottom: 16px;
}
.section-group .group-lists-container .group-lists .item a .photo-area .photo {
  width: 100%;
}
.section-group .group-lists-container .group-lists .item a .photo-area .photo img {
  width: 100%;
}
.section-group .group-lists-container .group-lists .item a .article-area .title {
  font-size: 16px;
  padding-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-right: 1.75em;
}
.section-group .group-lists-container .group-lists .item a .article-area .title::after {
  position: absolute;
  right: 0;
  top: 1px;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(/images/common/icon-ext-link.svg);
}
.section-group .group-lists-container .group-lists .item a .article-area .text {
  font-size: 14px;
  line-height: 2;
}

/*=============================
  .sub-visual-container
=============================*/
.sub-visual-container {
  position: relative;
  height: 81px;
}
.sub-visual-container .sub-visual {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
}

/*=============================
  .category-title-container
=============================*/
.category-title-container {
  width: 100%;
  margin: 8px auto 48px auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding-left: 8px;
}
.category-title-container .category-title {
  background-color: #fff;
  line-height: 1;
  font-weight: 500;
  display: inline-block;
  padding: 14px 60px 0 16px;
  position: relative;
}
.category-title-container .category-title .en {
  display: block;
  font-size: 13px;
  padding-bottom: 4px;
}
.category-title-container .category-title .js {
  display: block;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

/*=================================
  .pager_wrap(/detail/)
=================================*/
.pager_wrap {
  text-align: center;
  margin: 40px auto 0;
}
.pager_wrap ul {
  position: relative;
  display: inline-flex;
  width: 224px;
}
.pager_wrap ul .list a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  width: 160px;
  height: 32px;
  color: #000;
  text-align: center;
  border: solid 1px #000;
}
.pager_wrap ul .prev a,
.pager_wrap ul .next a {
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  color: #000;
}
.pager_wrap ul .prev a::after,
.pager_wrap ul .next a::after {
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  mask-image: url(/images/common/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: 14px 8px;
  mask-position: center;
  background-color: #000;
}
.pager_wrap ul .prev a {
  border-left: solid 1px #000;
}
.pager_wrap ul .prev a::after {
  transform: scale(-1, 1);
}
.pager_wrap ul .next a {
  border-right: solid 1px #000;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 50px);
  opacity: 0;
  transition: 0.5s ease;
}

.c-anim-left {
  transform: translate(-50px, 0);
  opacity: 0;
  transition: 0.5s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5rem;
  padding-right: 5rem;
  box-sizing: border-box;
}
@media (max-width: 799px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
	リスト系
==================================*/
.news_ul {
  margin: 0 0 1.9rem;
}
.news_ul .news_li {
  border-bottom: 1px solid #e8e8e8;
  padding: 2.2rem 1.4rem;
}
.news_ul .news_li > a {
  display: flex;
  align-items: center;
}
.news_ul .news_li > a .date {
  font-size: 1.6rem;
  color: #919191;
  margin-right: 2.4rem;
}
.news_ul .news_li > a .img_wrap {
  margin-right: 1.7rem;
}
@media (min-width: 800px) {
  .news_ul .news_li > a .title {
    background: linear-gradient(#000, #000) 0 100%/0 1px no-repeat;
    transition: background 0.4s ease;
  }
  .news_ul .news_li > a:hover .title {
    background-size: 100% 1px;
  }
}
@media (max-width: 799px) {
  .news_ul .news_li {
    padding: 1.4rem 0;
  }
  .news_ul .news_li > a {
    display: block;
    position: relative;
    padding-left: 8rem;
  }
  .news_ul .news_li > a .img_wrap {
    margin-right: 0;
    position: absolute;
    top: 0;
    left: -0.5rem;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
  .news_ul .news_li > a .img_wrap img {
    max-width: 5.7rem;
  }
  .news_ul .news_li > a .date,
  .news_ul .news_li > a .title {
    display: block;
  }
  .news_ul .news_li > a .date {
    font-size: 1.4rem;
    margin: 0 0 0.7rem;
  }
  .news_ul .news_li > a .title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}

/*==================================
	ページナビ
==================================*/
.page_navigation .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4.5rem 0 5rem;
}
@media (max-width: 799px) {
  .page_navigation .wp-pagenavi {
    margin: 3rem 0 4rem;
  }
}
.page_navigation .wp-pagenavi > .page,
.page_navigation .wp-pagenavi .current {
  font-size: 1.6rem;
  font-weight: 500;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  box-sizing: border-box;
  margin: 0 0.5rem;
}
.page_navigation .wp-pagenavi > .page:not(.current),
.page_navigation .wp-pagenavi .current:not(.current) {
  background-color: #f3f3f3;
}
@media (min-width: 800px) {
  .page_navigation .wp-pagenavi > .page:not(.current):hover,
  .page_navigation .wp-pagenavi .current:not(.current):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current {
  background-color: #000;
  color: #fff;
}
.page_navigation .wp-pagenavi .nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink {
  position: relative;
  font-weight: 500;
  box-sizing: border-box;
}
.page_navigation .wp-pagenavi .nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.9rem;
  height: 1.4rem;
  background-image: url(../images/common/pager_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s ease;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink {
  padding-left: 3.3rem;
  margin-right: 3rem;
}
.page_navigation .wp-pagenavi .nextpostslink.previouspostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.previouspostslink::before {
  left: 0;
  transform: scale(-1, 1);
}
@media (min-width: 800px) {
  .page_navigation .wp-pagenavi .nextpostslink.previouspostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.previouspostslink:hover::before {
    left: -5px;
  }
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink {
  padding-right: 3.3rem;
  margin-left: 3rem;
}
.page_navigation .wp-pagenavi .nextpostslink.nextpostslink::before,
.page_navigation .wp-pagenavi .previouspostslink.nextpostslink::before {
  right: 0;
}
@media (min-width: 800px) {
  .page_navigation .wp-pagenavi .nextpostslink.nextpostslink:hover::before,
  .page_navigation .wp-pagenavi .previouspostslink.nextpostslink:hover::before {
    right: -0.5rem;
  }
}
.page_navigation .wp-pagenavi .list_back {
  margin-left: 5.8rem;
  margin-right: 58px;
}
.page_navigation .wp-pagenavi .list_back > a {
  font-weight: 5.8rem;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon {
  display: inline-block;
  padding-left: 2.4rem;
  position: relative;
}
.page_navigation .wp-pagenavi .list_back > a > .list_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../img/news/list_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.page_navigation > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4.5rem 0 5rem;
}
.page_navigation > ul .link_page,
.page_navigation > ul .current_page {
  font-size: 1.6rem;
  font-weight: 500;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  box-sizing: border-box;
  margin: 0 0.5rem;
}
.page_navigation > ul .link_page:not(.current_page),
.page_navigation > ul .current_page:not(.current_page) {
  background-color: #f3f3f3;
}
@media (min-width: 800px) {
  .page_navigation > ul .link_page:not(.current_page):hover,
  .page_navigation > ul .current_page:not(.current_page):hover {
    color: #fff;
    background-color: #000;
  }
}
.page_navigation > ul .link_page.current_page,
.page_navigation > ul .current_page.current_page {
  background-color: #000;
  color: #fff;
}

/*==================================
  Contact_reset
==================================*/
main#Contact {
  /*------ Reset CSS ------*/
}
main#Contact input {
  -webkit-appearance: none;
}
main#Contact input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
main#Contact input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=radio]:checked + label {
  background: #ff0000;
}
main#Contact input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=checkbox]:checked + label {
  background: #ff0000;
}
main#Contact input::placeholder {
  color: #b7b7b7;
}
main#Contact input:-ms-input-placeholder {
  color: #b7b7b7;
}
main#Contact input::-webkit-input-placeholder {
  color: #b7b7b7;
}
main#Contact button,
main#Contact input[type=button],
main#Contact input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact {
  /*------ Reset END ------*/
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/
#Top {
  /*=============================
  	section
  =============================*/
}
#Top section {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
#Top section .inner {
  margin: 0 auto;
}
#Top {
  /*=============================
  	.section-rinkoh
  =============================*/
}
#Top .section-rinkoh {
  width: 100%;
  padding: 0;
  height: 600vh;
  box-sizing: border-box;
}
#Top .section-rinkoh .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
#Top .section-rinkoh .sticky .group-logo {
  width: 43px;
  padding: 0 9px;
  position: absolute;
  top: 0;
  right: 0;
}
#Top .section-rinkoh .sticky .group-logo .photo {
  height: 2532px;
  animation: scroll 30s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-904px);
  }
}
#Top .section-rinkoh .sticky .group-logo .photo img {
  margin: 0 0 60px 0;
  width: 43px;
}
#Top .section-rinkoh .scene-container {
  overflow: hidden;
  padding: 0;
  width: 100%;
  height: calc(100vh - 112px);
  position: absolute;
  top: 56px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
#Top .section-rinkoh .scene-container.active {
  opacity: 1;
  pointer-events: visible;
}
#Top .section-rinkoh .scene-container .stage-pos {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#Top .section-rinkoh .scene-container .layouto-area {
  display: flex;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0 61px 0 0;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .photo {
  width: 100%;
  height: 100vh;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .photo.add-pos-05 img {
  object-position: right;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .title {
  position: absolute;
  left: 30px;
  top: 30px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .title.add-size-01 {
  width: 40px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .title.add-size-02 {
  width: 40px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .title.add-size-03 {
  width: 97px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .title.add-size-04 {
  width: 133px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .title.add-size-05 {
  width: 96px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .title.add-size-06 {
  width: 133px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos {
  position: absolute;
  left: 30px;
  bottom: 140px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos .rinkoh-logo {
  padding-bottom: 20px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos .rinkoh-logo.add-size-01 {
  width: 152px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos .rinkoh-logo.add-size-02 {
  width: 174px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos .rinkoh-logo.add-size-03 {
  width: 178px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos .rinkoh-logo.add-size-04 {
  width: 267px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos .rinkoh-logo.add-size-05 {
  width: 215px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos .rinkoh-logo.add-size-06 {
  width: 245px;
}
#Top .section-rinkoh .scene-container .layouto-area .photo-area .layout-pos .text {
  font-size: 12px;
  color: #fff;
  line-height: 2;
}
#Top {
  /*=============================
  	.section-about
  =============================*/
}
#Top .section-about {
  background-color: #f6f6f6;
  padding-bottom: 225px;
  margin-bottom: 50px;
  /*.about-layout-layout
  =============================*/
}
#Top .section-about .about-layout-layout {
  display: flex;
  flex-direction: column;
}
#Top .section-about .about-layout-layout .photo-layout {
  order: 2;
  position: relative;
}
#Top .section-about .about-layout-layout .photo-layout .photo {
  position: absolute;
  width: 125%;
  max-width: 530px;
  top: -75px;
  left: -120px;
}
#Top .section-about .about-layout-layout .article-layout {
  order: 1;
}
#Top .section-about .about-layout-layout .article-layout .text-container {
  padding-bottom: 30px;
}
#Top .section-about .about-layout-layout .article-layout .text-container .text {
  font-size: 14px;
  line-height: 2;
}
#Top .section-about .about-layout-layout .article-layout .button-container {
  text-align: right;
}
#Top {
  /*=============================
  	.section-group
  =============================*/
}
#Top .section-group .group-lists-container .group-lists {
  display: flex;
  flex-direction: column;
}
#Top .section-group .group-lists-container .group-lists .item a {
  display: block;
  padding: 20px 15px;
}
#Top .section-group .group-lists-container .group-lists .item a .photo-area {
  padding-bottom: 16px;
}
#Top .section-group .group-lists-container .group-lists .item a .photo-area .photo {
  width: 100%;
}
#Top .section-group .group-lists-container .group-lists .item a .photo-area .photo img {
  width: 100%;
}
#Top .section-group .group-lists-container .group-lists .item a .article-area .title {
  font-size: 16px;
  padding-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-right: 1.75em;
}
#Top .section-group .group-lists-container .group-lists .item a .article-area .title::after {
  position: absolute;
  right: 0;
  top: 1px;
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(/images/common/icon-ext-link.svg);
}
#Top .section-group .group-lists-container .group-lists .item a .article-area .text {
  font-size: 14px;
  line-height: 2;
}
#Top {
  /*=============================
  	.section-news
  =============================*/
}
#Top .section-news {
  background-color: #f6f6f6;
  /*=============================
  	.news-container
  =============================*/
}
#Top .section-news .news-container {
  margin: 0 auto;
  /*=============================
  	.category-lists-container
  =============================*/
}
#Top .section-news .news-container .category-lists-container {
  padding-bottom: 30px;
}
#Top .section-news .news-container .category-lists-container .category-lists {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
}
#Top .section-news .news-container .category-lists-container .category-lists .item a {
  text-align: center;
  padding: 4px 12px;
  font-size: 12px;
  display: inline-block;
  background-color: #fff;
  border: solid 1px #dcdcdc;
  border-radius: 3px;
}
#Top .section-news .news-container {
  /*=============================
  	.news-lists-container
  =============================*/
}
#Top .section-news .news-container .news-lists-container {
  padding-bottom: 24px;
}
#Top .section-news .news-container .news-lists-container .news-lists .item {
  border-bottom: solid 1px #dcdcdc;
}
#Top .section-news .news-container .news-lists-container .news-lists .item a {
  display: block;
  padding: 20px 10px;
}
#Top .section-news .news-container .news-lists-container .news-lists .item a .news-meta {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
  gap: 10px;
}
#Top .section-news .news-container .news-lists-container .news-lists .item a .news-meta .news-date {
  font-size: 15px;
}
#Top .section-news .news-container .news-lists-container .news-lists .item a .news-meta .news-category {
  position: relative;
  top: 2px;
  font-size: 10px;
  line-height: 1;
  background-color: #dcdcdc;
  width: 100px;
  text-align: center;
  padding: 5px 0;
  border-radius: 3px;
}
#Top .section-news .news-container {
  /*=============================
  	.button-container
  =============================*/
}
#Top .section-news .news-container .button-container {
  text-align: right;
}
#Top {
  /*=============================
  	.section-recruit
  =============================*/
}
#Top .section-recruit {
  position: relative;
  padding-top: 40px;
  padding-bottom: 0;
}
#Top .section-recruit::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-color: #f6f6f6;
}
#Top .section-recruit {
  /*=============================
  	.inner
  =============================*/
}
#Top .section-recruit .inner {
  margin: 0 auto;
  max-width: 880px;
}
#Top .section-recruit {
  /*=============================
  	.recruit-banner-container
  =============================*/
}
#Top .section-recruit .recruit-banner-container .recruit-banner {
  background-color: #00a357;
  padding: 24px;
  box-sizing: border-box;
}
#Top .section-recruit .recruit-banner-container .recruit-banner .title-layout {
  padding-bottom: 20px;
}
#Top .section-recruit .recruit-banner-container .recruit-banner .title-layout span {
  display: block;
  color: #fff;
}
#Top .section-recruit .recruit-banner-container .recruit-banner .title-layout .en {
  font-size: 54px;
  padding-bottom: 16px;
}
#Top .section-recruit .recruit-banner-container .recruit-banner .title-layout .jp {
  font-size: 14px;
}
#Top .section-recruit .recruit-banner-container .recruit-banner .text-layout .text {
  font-size: 15px;
  line-height: 2;
  color: #fff;
  position: relative;
  top: 4px;
}
#Top .section-recruit {
  /*=============================
  	.recruit-button-container
  =============================*/
}
#Top .section-recruit .recruit-button-container {
  width: 100%;
  padding-bottom: 80px;
  position: relative;
}
#Top .section-recruit .recruit-button-container .recruit-button a {
  border: solid 1px #00a357;
  background-color: #31be5c;
  display: block;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
  position: relative;
}
#Top .section-recruit .recruit-button-container .recruit-button a .recruit-title span {
  display: block;
  color: #fff;
}
#Top .section-recruit .recruit-button-container .recruit-button a .recruit-title .title {
  font-size: 18px;
}
#Top .section-recruit .recruit-button-container .recruit-button a .recruit-title .text {
  display: none;
}
#Top .section-recruit .recruit-button-container .recruit-button a .arrow-button {
  position: absolute;
  right: 30px;
  top: calc(50% - 15px);
}
#Top .section-recruit .recruit-button-container .recruit-button a:nth-last-child(1) {
  border-right: solid 2px #31b15c;
}
#Top .section-recruit .recruit-button-container .provision-container {
  background-color: #31be5c;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
}
#Top .section-recruit .recruit-button-container .provision-container .text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
#Top .section-recruit {
  /*=============================
  	.zeb-banner-container
  =============================*/
}
#Top .section-recruit .zeb-banner-container {
  margin: 0 -20px;
  padding: 30px 20px 60px;
  background-color: #005b34;
}
#Top .section-recruit .zeb-banner-container img {
  width: 100%;
}
#Top .section-recruit .zeb-banner-container a {
  display: block;
}
#Top {
  /*=============================
  	.footer
  =============================*/
}
#Top .footer {
  margin-top: 0;
}

/*==================================
  News
==================================*/
#News {
  overflow: hidden;
  /*=============================
  	.meta-container
  =============================*/
}
#News .meta-container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  gap: 8px;
}
#News .meta-container .meta-lists {
  display: flex;
  gap: 8px;
}
#News .meta-container .meta-lists .meta-date {
  font-size: 14px;
}
#News .meta-container .meta-lists .meta-category .category-label {
  position: relative;
  top: -3px;
  font-size: 10px;
  border: solid #dcdcdc 1px;
  display: inline-block;
  border-radius: 4px;
  padding: 4px 8px;
  line-height: 1;
}
#News .meta-container .logo-area {
  position: relative;
  top: -2px;
}
#News .meta-container .logo-area .logo {
  width: 110px;
}
#News {
  /*=============================
  	.section-news
  =============================*/
}
#News .section-news {
  padding-left: 20px;
  padding-right: 20px;
  /*=============================
  	.news-container
  =============================*/
}
#News .section-news .news-container {
  width: 100%;
  /*=============================
  	.category-lists-container
  =============================*/
}
#News .section-news .news-container .category-lists-container {
  padding-bottom: 48px;
}
#News .section-news .news-container {
  /*=============================
  	.news-lists-container
  =============================*/
}
#News .section-news .news-container .news-lists-container {
  padding-bottom: 0;
}
#News .section-news .news-container .news-lists-container .news-lists {
  border-top: solid 1px #dcdcdc;
}
#News .section-news .news-container .news-lists-container .news-lists .item a {
  padding: 34px 10px;
}
#News .section-news .news-container .news-lists-container .news-lists .item a .news-meta .news-date {
  font-size: 15px;
  color: #31b15c;
}
#News .section-news .news-container .news-lists-container .news-lists .item a .news-meta .news-category {
  background-color: #fff;
  border: solid 1px #dcdcdc;
}
#News .section-news {
  /*=============================
  	.blog-inner(/detail/)
  =============================*/
}
#News .section-news.add-detail-pd {
  padding-top: 40px;
}
#News .section-news.add-detail-pd .blog-inner .blog-title-container {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: solid 1px #dcdcdc;
  position: relative;
}
#News .section-news.add-detail-pd .blog-inner .blog-title-container .blog-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
#News .section-news.add-detail-pd .blog-inner .blog-title-container::before {
  position: absolute;
  z-index: -1;
  left: 0;
  top: -32px;
  content: "";
  width: 34px;
  height: 61px;
  background-image: url(/images/news/icon-news-arrow.svg);
}
#News .section-news.add-detail-pd .blog-inner p {
  font-size: 15px;
  line-height: 2;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
#News .section-news.add-detail-pd .blog-inner img {
  width: 100%;
  display: block;
}
#News .section-news.add-detail-pd .blog-inner ul {
  padding-left: 1em;
}
#News .section-news.add-detail-pd .blog-inner ul li {
  font-size: 15px;
  line-height: 2;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
#News .section-news.add-detail-pd .blog-inner ul li::before {
  content: "・";
  display: inline-block;
  width: 1em;
}
#News {
  /*=================================
  	.page_navigation
  =================================*/
}
#News .page_navigation {
  padding-top: 40px;
  padding-bottom: 50px;
  width: 100%;
}
#News .page_navigation .navigation {
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
}
#News .page_navigation .wp-pagenavi {
  width: 100%;
  margin: 0;
}
#News .page_navigation .screen-reader-text {
  display: none;
}
#News .page_navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* ========================
  矢印
  ======================== */
}
#News .page_navigation .nav-links .prev,
#News .page_navigation .nav-links .next {
  position: absolute;
  padding: 0 !important;
  border: none !important;
  color: #737373;
}
#News .page_navigation .nav-links .prev .page-icon-arrow,
#News .page_navigation .nav-links .next .page-icon-arrow {
  position: relative;
  top: -2px;
  display: block;
  width: 24px;
  height: 13px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#News .page_navigation .nav-links .prev,
#News .page_navigation .nav-links .next {
  /* hover（共通） */
}
#News .page_navigation .nav-links .prev:hover,
#News .page_navigation .nav-links .next:hover {
  opacity: 0.8;
}
#News .page_navigation .nav-links {
  /* 左 */
}
#News .page_navigation .nav-links .prev {
  left: 20px;
}
#News .page_navigation .nav-links .prev:hover .page-icon-arrow {
  transform: translateX(-6px);
}
#News .page_navigation .nav-links {
  /* 右 */
}
#News .page_navigation .nav-links .next {
  right: 20px;
}
#News .page_navigation .nav-links .next:hover .page-icon-arrow {
  transform: translateX(6px);
}
#News .page_navigation .nav-links {
  /* ========================
  ページ番号
  ======================== */
}
#News .page_navigation .nav-links .page-numbers {
  font-size: 15px;
  color: #4f4f4f;
  border: solid 1px #c2c2c2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  /* dots */
}
#News .page_navigation .nav-links .page-numbers.dots {
  position: relative;
  top: 1px;
  color: #737373;
  padding: 0;
  border: none;
}
#News .page_navigation .nav-links .page-numbers.dots:hover {
  background: none;
  color: #4f4f4f;
}
#News .page_navigation .nav-links .page-numbers.current {
  margin: 0 12px;
  color: #fff;
  background-color: #31be5c;
  border-radius: 0;
  border: solid 1px #31be5c;
  box-sizing: content-box;
}
#News .page_navigation .nav-links .page-numbers:not(.prev):not(.next):not(.dots):not(.current):hover {
  color: #fff;
  background-color: #31be5c;
}

/*==================================
  News
==================================*/
#About {
  overflow: hidden;
  /*=============================
    .swiper-container
  =============================*/
  /*=============================
  	.section-message
  =============================*/
}
#About .section-message {
  padding: 40px 20px;
}
#About .section-message .inner {
  margin: 0 auto;
}
#About .section-message .ceo-photo-container {
  padding-bottom: 40px;
  margin: 0 -20px;
}
#About .section-message .ceo-photo-container .ceo-visual {
  padding-bottom: 10px;
}
#About .section-message .ceo-photo-container .ceo-info-container {
  text-align: right;
  padding-right: 11.8%;
}
#About .section-message .ceo-photo-container .ceo-info-container .company-name {
  font-size: 12px;
  margin-bottom: 4px;
}
#About .section-message .ceo-photo-container .ceo-info-container .ceo-name {
  padding-top: 0;
  font-size: 15px;
}
#About .section-message .sub-section {
  margin: 0 auto 50px auto;
  max-width: 680px;
}
#About .section-message .sub-section .message-title-container {
  padding-bottom: 30px;
}
#About .section-message .sub-section .message-title-container.is-pd {
  padding-bottom: 0;
}
#About .section-message .sub-section .message-title-container .message-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #00A357;
  padding-bottom: 30px;
}
#About .section-message .sub-section .message-title-container .catch-text {
  font-size: 20px;
  font-weight: 600;
}
#About .section-message .sub-section .message-text {
  font-size: 15px;
  line-height: 3;
}
#About .section-message .sub-section .message-text.align-r {
  font-size: 12px;
  text-align: right;
  color: #6D6D6D;
}
#About .section-message .ceo-name {
  padding-top: 40px;
  text-align: right;
}
#About {
  /*=============================
  	.section-company
  =============================*/
}
#About .section-company {
  background-color: #f6f6f6;
  padding: 40px 20px;
}
#About .section-company .inner {
  max-width: 1000px;
  margin: 0 auto;
}
#About .section-company .company-container .company-inner {
  margin: 0 auto;
}
#About .section-company .company-container .company-table {
  border-top: 1px solid #dcdcdc;
  border-collapse: collapse;
  width: 100%;
}
#About .section-company .company-container .company-table th, #About .section-company .company-container .company-table td {
  padding: 8px;
  border-bottom: solid #dcdcdc 1px;
  display: flex;
  font-size: 15px;
  box-sizing: border-box;
}
#About .section-company .company-container .company-table th {
  text-align: left;
  width: 100%;
  background-color: #f6f6f6;
}
#About .section-company .company-container .company-table td {
  width: 100%;
  background-color: #fff;
}
#About {
  /*=============================
  	.section-group
  =============================*/
}
#About .section-group .title-container {
  padding-bottom: 40px;
}
#About {
  /*=============================
  	.section-corporate
  =============================*/
}
#About .section-corporate {
  padding: 80px 40px;
  background-image: url(/images/about/sp/sp-corporate-bg.jpg);
  background-size: cover;
  background-position: center top;
}
#About .section-corporate .inner {
  margin: 0 auto;
}
#About .section-corporate .title-container {
  padding-bottom: 50px;
}
#About .section-corporate .title-container .title .en {
  color: #fff;
}
#About .section-corporate .title-container .title .jp {
  color: #fff;
}
#About .section-corporate .corporate-container .corporate-title {
  text-align: center;
  width: 85%;
  margin: 0 auto;
}
#About {
  /*=============================
  	.section-cred
  =============================*/
}
#About .section-cred {
  background-color: #e8f5e9;
  padding: 40px 20px;
}
#About .section-cred .title-container {
  padding-bottom: 40px;
}
#About .section-cred .white-board {
  background-color: #fff;
  padding: 20px;
}
#About .section-cred .white-board .cred-lists li {
  line-height: 1.3;
  font-size: 15px;
  padding: 16px 8px;
  border-bottom: solid 1px #dcdcdc;
  padding-left: 2.5em;
  text-indent: -2em;
}
#About .section-cred .white-board .cred-lists li:nth-child(1) {
  padding-top: 0;
}
#About .section-cred .white-board .cred-lists li .num {
  display: inline-block;
  padding-right: 4px;
}
#About {
  /*=============================
  	.section-slogan
  =============================*/
}
#About .section-slogan {
  background-color: #e8f5e9;
  padding: 40px 20px;
}
#About .section-slogan .title-container {
  padding-bottom: 20px;
}
#About .section-slogan .white-board {
  background-color: #fff;
  padding: 20px;
}
#About .section-slogan .white-board .white-board-photo {
  text-align: center;
  padding-bottom: 20px;
}
#About .section-slogan .white-board .white-board-photo .photo {
  display: inline-block;
  width: 100%;
  max-width: 260px;
}
#About .section-slogan .white-board .white-board-text .text {
  font-size: 15px;
  line-height: 2;
}
#About {
  /*=============================
  	.section-symbol
  =============================*/
}
#About .section-symbol {
  background-color: #e8f5e9;
  padding: 40px 20px;
}
#About .section-symbol .title-container {
  padding-bottom: 20px;
}
#About .section-symbol .white-board {
  background-color: #fff;
  padding: 20px;
}
#About .section-symbol .white-board .white-board-photo {
  text-align: center;
  padding-bottom: 20px;
}
#About .section-symbol .white-board .white-board-photo .photo {
  display: inline-block;
  width: 100%;
  max-width: 260px;
}
#About .section-symbol .white-board .white-board-text .text {
  font-size: 15px;
  line-height: 2;
}
#About {
  /*=============================
  	.section-vision
  =============================*/
}
#About .section-vision {
  background-color: #e8f5e9;
  padding: 40px 20px;
}
#About .section-vision .title-container {
  padding-bottom: 20px;
}
#About .section-vision .white-board {
  background-color: #fff;
  padding: 20px;
}
#About .section-vision .white-board .white-board-photo {
  text-align: center;
  padding-bottom: 20px;
}
#About .section-vision .white-board .white-board-photo .photo {
  display: inline-block;
  width: 100%;
}
#About .section-vision .white-board .white-board-text .text {
  font-size: 15px;
  line-height: 2;
}
#About {
  /*=============================
  	.section-history
  =============================*/
}
#About .section-group {
  padding: 40px 20px;
}
#About {
  /*=============================
  	.section-history
  =============================*/
}
#About .section-history {
  padding: 40px 20px;
}
#About .section-history .title-container {
  padding-bottom: 20px;
}
#About .section-history .history-table {
  width: 100%;
  border-top: solid 1px #dcdcdc;
}
#About .section-history .history-table td, #About .section-history .history-table th {
  text-align: left;
  vertical-align: middle;
  display: flex;
}
#About .section-history .history-table th {
  padding-top: 18px;
  padding-bottom: 12px;
}
#About .section-history .history-table th .year-text {
  font-size: 32px;
  color: #31b15c;
  display: inline-block;
  line-height: 1;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
}
#About .section-history .history-table th .text {
  font-size: 14px;
  display: inline-block;
  font-weight: 400;
  line-height: 1;
  padding-top: 15px;
}
#About .section-history .history-table td {
  border-bottom: solid 1px #dcdcdc;
  padding-bottom: 20px;
}
#About .section-history .history-table td .lists li {
  font-size: 15px;
  position: relative;
  line-height: 1.3;
  padding-left: 18px;
}
#About .section-history .history-table td .lists li:nth-child(n+2) {
  margin-top: 8px;
}
#About .section-history .history-table td .lists li::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  background-color: #31b15c;
}
#About {
  /*=============================
  	.button-container
  =============================*/
}
#About .button-container {
  padding-top: 40px;
}