@charset "UTF-8";
/* Scss Document */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 62.5%;
  height: 100%;
}

/* IE表示用のCSS　*/
_:-ms-input-placeholder, :root {
  font-family: Meiryo, sans-serif;
}

body {
  font-size: 1.6em;
  color: #111;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  font-size: 1.4em;
}

.wrapper {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.inner {
  min-height: 1px;
  max-width: 1024px;
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: 7rem 0;
}

@media (max-width: 640px) {
  .inner {
    width: 93%;
    padding: 5rem 0;
  }
}

.inner_small {
  max-width: 720px;
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: 7rem 0;
}

@media (max-width: 640px) {
  .inner_small {
    width: 93%;
    padding: 3rem 0;
  }
}

.inner_small_box {
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 3rem 1.2rem;
}

.inner_small_box:not(:first-of-type) {
  margin: 7rem 0 0 0;
}

@media (max-width: 640px) {
  .inner_small_box:not(:first-of-type) {
    margin: 5rem 0 0 0;
  }
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0.6;
}

.heading {
  text-align: center;
  line-height: 1.5;
  font-size: 2.4rem;
  position: relative;
  margin: 1.6rem 0 4rem 0;
}

.heading:before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FD662E;
}

@media (max-width: 768px) {
  .heading {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .heading {
    font-size: 1.6rem;
  }
}

.heading_lower_page {
  text-align: center;
  line-height: 1.5;
  font-size: 3.2rem;
  position: relative;
  margin: 1.6rem 0 4rem 0;
}

@media (max-width: 640px) {
  .heading_lower_page {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .heading_lower_page {
    font-size: 2rem;
  }
}

.heading_lower_page:before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #FD662E;
}

@media (max-width: 640px) {
  .heading_lower_page:before {
    width: 60px;
  }
}

.inner_text {
  line-height: 1.7;
  font-size: 1.4rem;
}

.img_hover {
  overflow: hidden;
  background: #000;
}

.img_hover img {
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.img_hover img:hover {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.left_bar {
  border-left: 3px solid #2BA246;
  padding: 0 0 0 1rem;
  font-size: 2.4rem;
  margin: 7rem 0 3rem 0;
}

@media (max-width: 640px) {
  .left_bar {
    font-size: 1.8rem;
    margin: 3rem 0 4rem 0;
  }
}

.underline {
  border-bottom: 2px solid #2BA246;
  width: 100%;
  padding: 0 0 1rem 0;
  margin: 5rem 0 0 0;
}

.breadcrumb {
  height: 54px;
  background-color: #E1F7E8;
  position: absolute;
  width: 100%;
}

@media (max-width: 640px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb_list {
  max-width: 1024px;
  width: calc(100% - 4rem);
  margin: 0 auto;
  list-style: none;
  font-size: 1.4rem;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
}

.breadcrumb_list a {
  color: #111;
}

.breadcrumb_list a:hover {
  opacity: 0.6;
}

.breadcrumb_list li {
  display: inline;
}

.breadcrumb_list li:after {
  content: ">";
  padding: 0 3px;
}

.breadcrumb_list li:last-child:after {
  content: "";
}

.lower_main_img {
  max-width: 720px;
  margin: 4rem auto 7rem;
}

@media (max-width: 640px) {
  .lower_main_img {
    margin: 3rem 0 4rem 0;
  }
}

.img_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 4rem 0 0 0;
}

@media (max-width: 768px) {
  .img_flex {
    display: block;
    margin: 3rem 0 0 0;
  }
}

.img_flex_img {
  width: 50%;
}

@media (max-width: 768px) {
  .img_flex_img {
    width: 100%;
  }
}

.logo_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5rem 0 0 0;
}

@media (max-width: 768px) {
  .logo_flex {
    display: block;
    margin: 3rem 0 0 0;
  }
}

.logo_flex_carelogo {
  width: 200px;
  margin: 0 3rem 0 0;
}

@media (max-width: 768px) {
  .logo_flex_carelogo {
    margin: 4rem auto 3rem auto;
  }
}

.floating {
  width: 40px;
  height: 40px;
  position: fixed;
  display: none;
  right: 30px;
  bottom: 10px;
  background: #FD662E;
  border-radius: 50%;
}

.floating a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}

.floating a::after {
  content: "▲";
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 12px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.floating:hover {
  opacity: 0.6;
}

/* Scss Document */
/*_______ハンバーガーmenu________*/
.hamburger {
  display: none;
  height: 53px;
  /*__________navの中身______________*/
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
  }
}

.hamburger .menu {
  height: 20px;
  position: fixed;
  right: 10px;
  top: 14px;
  width: 30px;
  z-index: 99;
}

.hamburger .menu__line {
  background: #111;
  display: block;
  height: 2px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
}

.hamburger .menu__line--center {
  top: 9px;
}

.hamburger .menu__line--bottom {
  bottom: 0;
}

.hamburger .menu__line--top.active {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #111;
  height: 3px;
}

.hamburger .menu__line--center.active {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.hamburger .menu__line--bottom.active {
  bottom: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  background: #111;
  height: 3px;
}

.hamburger .gnav {
  background-color: #2BA246;
  display: none;
  height: calc(100% - 53px);
  position: fixed;
  width: 100%;
  z-index: 98;
  font-size: 1.4rem;
}

.hamburger .gnav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  width: 100%;
}

.hamburger .gnav__menu {
  width: 100%;
  display: -ms-grid;
  display: grid;
}

.hamburger .gnav__menu__item {
  font-weight: bold;
  padding: 3rem 0 0 5rem;
  color: #fff;
}

.hamburger .gnav__menu__item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.hamburger .gnav__menu__item ul {
  margin: 2.5rem 0 0 0;
}

.hamburger .gnav__menu__item_nest {
  font-weight: normal;
  margin: 0 0 2rem 0;
}

@media (max-width: 640px) {
  .hamburger .gnav__menu__item_nest {
    margin: 1rem 0;
  }
}

.hamburger .gnav__menu__item_nest a {
  display: block;
  width: 100%;
}

.hamburger .gnav__menu__item_nest a img {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin: 0 0 0 0.5rem;
}

.hamburger .gnav__menu__item a {
  color: #fff;
  margin: 0 0 2rem 0;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.hamburger .gnav__menu__item a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.8rem;
    padding: 1rem 2rem;
  }
}

@media (max-width: 640px) {
  .logo {
    font-size: 1.6rem;
  }
}

.logo span {
  display: block;
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
  font-weight: normal;
}

@media (max-width: 768px) {
  .logo span {
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .logo span {
    font-size: 1.2rem;
  }
}

.logo a {
  color: #2BA246;
}

@media (max-width: 768px) {
  .logo_pc {
    display: none;
  }
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}

@media (max-width: 640px) {
  header {
    display: block;
  }
}

@media (max-width: 768px) {
  header {
    height: 50px;
  }
}

header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 640px) {
  header .inner {
    display: block;
  }
}

header .inner .navigation {
  z-index: 999;
  font-size: 1.4rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  header .inner .navigation {
    display: none;
  }
}

header .inner .navigation .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .inner .navigation .nav_list li {
  position: relative;
  list-style: none;
}

header .inner .navigation .nav_list li img {
  width: 15px;
  margin: 0 0.5rem 0 0;
}

header .inner .navigation .nav_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 160px;
  color: #111;
  background: #fff;
  text-decoration: none;
  padding: 3rem 1rem;
  line-height: 1.4;
}

header .inner .navigation .nav_list li .nest_list {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 160px;
}

header .inner .navigation .nav_list li .nest_list_icon img {
  margin: -3px 0 0 0.5rem;
}

header .inner .navigation .nav_list li .nest_list_icon:hover img {
  display: none;
  width: 15px;
  height: 15px;
}

header .inner .navigation .nav_list li .nest_list a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 1rem;
  width: 100%;
}

header .inner .navigation .nav_list li .icon_hover {
  display: none;
}

header .inner .navigation .nav_list li:hover > a {
  color: #fff;
  opacity: 1;
  background: #2BA246;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

header .inner .navigation .nav_list li:hover > a .icon {
  display: none;
}

header .inner .navigation .nav_list li:hover > a .icon_hover {
  display: inline-block;
}

header .inner .navigation .nav_list li ul li {
  overflow: hidden;
  height: 0;
}

header .inner .navigation .nav_list li:hover > ul > li {
  overflow: visible;
  height: auto;
}

/* Scss Document */
.main_img {
  width: 100%;
  position: relative;
}

.main_img_pc, .main_img_sp {
  opacity: 0.85;
}

.main_img_pc_text {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1024px;
  width: calc(100% - 4rem);
  z-index: 100;
}

@media (max-width: 768px) {
  .main_img_pc_text {
    top: 40%;
  }
}

@media (max-width: 640px) {
  .main_img_pc_text {
    top: 55%;
    width: 93%;
  }
}

.main_img_pc_text_top {
  font-size: 2vw;
  font-weight: bold;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
  .main_img_pc_text_top {
    font-size: 4.2vw;
  }
}

.main_img_pc_text_circle {
  background-color: #2BA246;
  margin: 0 2rem 0 0;
  padding: 2% 1%;
  display: inline-block;
  border-radius: 50%;
}

@media (max-width: 640px) {
  .main_img_pc_text_circle {
    margin: 0 .5rem 0 0;
  }
}

.main_img_pc_text_circle:first-child {
  margin: 0 2rem;
}

@media (max-width: 640px) {
  .main_img_pc_text_circle:first-child {
    margin: 0 .5rem;
  }
}

@media (max-width: 640px) {
  .main_img_pc_text_circle {
    padding: 1.5rem 1rem;
  }
}

.main_img_pc_text_sb {
  border: solid #fff 3px;
  padding: 1.5rem;
  font-size: 1.2vw;
  font-weight: bold;
  line-height: 1.7;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  margin: 2% 0 0 0;
  display: inline-block;
}

@media (max-width: 768px) {
  .main_img_pc_text_sb {
    padding: 1.2rem;
  }
}

@media (max-width: 640px) {
  .main_img_pc_text_sb {
    border: solid #fff 2px;
    margin: 3% 0 0 0;
  }
}

.main_img_sp {
  display: none;
}

@media (max-width: 640px) {
  .main_img_sp {
    display: block;
  }
}

@media (max-width: 640px) {
  .main_img_pc {
    display: none;
  }
}

/* IE表示用のCSS　*/
_:-ms-input-placeholder, :root .main_img_pc_text_circle {
  line-height: 1.4;
}

.service h2 {
  display: none;
}

.service .service_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 2項目化でpadding属性追加 */
  padding-left: 100px;
  padding-right: 100px;
}

@media (max-width: 640px) {
  .service .service_flex {
    display: block;
    /* 2項目化でpadding属性追加（スマホ版は解除） */
    padding-left: 0px;
    padding-right: 0px;
  }
}

.service .service_box {
  /* width: calc(100% / 3); */
  width: calc(100% / 2);
  color: #111;
}

.service .service_box:not(:last-child) {
  margin: 0 3rem 0 0;
}

@media (max-width: 640px) {
  .service .service_box {
    width: 100%;
    margin: 0 0 4rem 0;
  }
}

h3.heading {
  font-size: 2rem;
}

.service_text {
  margin: 3rem 0 0 0;
}

.news {
  background-color: #E1F7E8;
}

.news_box {
  margin: 5rem 0 2.3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 640px) {
  .news_box {
    display: block;
  }
}

@media (max-width: 640px) {
  .news_box {
    margin: 2.3rem 0;
  }
}

.news_box time {
  background-color: #2BA246;
  color: #fff;
  height: 26px;
  padding: 0.5rem 1.4rem;
  letter-spacing: 0.2rem;
}

.news_box .news_text {
  margin: 0 0 0 3rem;
  color: #111;
  line-height: 1.7;
  width: 60%;
  display: block;
}

@media (max-width: 640px) {
  .news_box .news_text {
    margin: 1.2rem 0 0 0;
    width: 100%;
  }
}

.border_bottom {
  border-bottom: solid #ddd 1px;
  padding: 0 0 1rem 0;
}

.more {
  margin: 3rem 0 1rem 0;
}

.more .more_btn {
  color: #2BA246;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.more .more_btn img {
  width: 18px;
  height: 18px;
  margin: 0 0 0 0.8rem;
}

.more .more_btn:hover {
  text-decoration: underline;
}

.business .business_hd {
  text-align: center;
  font-size: 3rem;
}

.business .business_hd span {
  color: #FD662E;
  display: block;
  margin: 1rem 0 0 0;
}

@media (max-width: 768px) {
  .business .business_hd {
    font-size: 2rem;
  }
}

.business_text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
  margin: 2.6rem 0 0 0;
}

@media (max-width: 640px) {
  .business_text {
    font-size: 1.6rem;
  }
}

.business .business_box {
  display: block;
  color: #111;
  text-align: center;
  padding: 5rem 0 0 0;
}

@media (max-width: 640px) {
  .business .business_box {
    text-align: left;
  }
}

.business .business_box .heading {
  font-size: 2rem;
  position: relative;
}

.business .business_box .heading::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/link_icon_black.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
  margin: 0 0 0 1rem;
}

@media (max-width: 768px) {
  .business .business_box .heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .business .business_box .heading {
    font-size: 1.6rem;
  }
}

.information {
  background-color: #eee;
}

.information_text {
  font-size: 1.8rem;
  line-height: 1.7;
  margin: 5rem 1.5rem 0 1.5rem;
}

@media (max-width: 640px) {
  .information_text {
    font-size: 1.6rem;
    margin: 2.5rem 0;
  }
}

.information_box {
  text-align: center;
}

@media (max-width: 640px) {
  .information_box {
    text-align: left;
  }
}

.information_box .information_link {
  margin: 5rem 1rem 0;
  display: inline-block;
  color: #2BA246;
}

.information_box .information_link::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/link_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
  margin: 0 0 0 0.5rem;
}

.information_box .information_link2 {
  margin: 5rem 1rem 0;
  display: inline-block;
  color: #000000;
}

@media (max-width: 640px) {
  .information_box .information_link {
    font-size: 1.4rem;
    margin: 2.5rem 0 0;
  }

  .information_box .information_link2 {
    font-size: 1.4rem;
    margin: 2.5rem 0 0;
  }
}

.information_box .information_link:hover {
  text-decoration: underline;
}

.information_icon {
  width: 20px;
}

.information_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem 0 1.5rem 0;
}

.information_list dt {
  width: 100px;
  background-color: #2BA246;
  text-align: center;
  color: #fff;
  height: 26px;
  padding: 0.5rem;
  font-size: 1.4rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 640px) {
  .information_list dt {
    font-size: 1.2rem;
  }
}

.information_list dd {
  width: 60%;
  margin: 0 0 0 3rem;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 640px) {
  .information_list dd {
    font-size: 1.4rem;
  }
}

.care_state__heading {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .care_state__heading {
    font-size: 1.6rem;
  }
}

.care_state_list {
  list-style: none;
  margin: 0 0 0 5rem;
  font-size: 1.6rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .care_state_list {
    font-size: 1.4rem;
    margin: 3rem 0 0 3rem;
  }
}

.care_state_list li {
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.care_state_list li::before {
  position: relative;
  top: -2px;
  left: -18px;
  display: inline-block;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 100%;
  background: #FD662E;
}

.use_link a {
  color: #2BA246;
  text-decoration: none;
}

.use_link a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/user_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
  margin: 0 0 0 0.5rem;
}

.use_link a:hover {
  text-decoration: underline;
}

.example_list {
  margin: 0 0 0 5rem;
}

@media (max-width: 768px) {
  .example_list {
    font-size: 1.6rem;
    margin: 3rem 0 0 3rem;
  }
}

.example_list li {
  margin: 0 0 1.5rem 0;
}

.timeline {
  list-style: none;
  font-size: 1.6rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .timeline {
    font-size: 1.4rem;
  }
}

.timeline_content {
  border-left: 3px solid #2BA246;
  position: relative;
  padding: 0 0 4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 640px) {
  .timeline_content {
    display: block;
  }
}

@media (max-width: 640px) {
  .timeline_content {
    padding: 0 0 2rem 3rem;
  }
}

.timeline_content:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #2BA246;
  position: absolute;
  left: -7px;
  top: 0;
  border-radius: 100%;
}

.timeline_content_data {
  font-weight: bold;
  display: inline-block;
  margin: 0 3rem 0 5rem;
}

@media (max-width: 640px) {
  .timeline_content_data {
    display: block;
    margin: 0;
  }
}

.colorchange {
  color: #2BA246;
}

.colorchange_bk {
  color: #111;
  display: block;
}

.greeting_flex {
  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;
}

@media (max-width: 640px) {
  .greeting_flex {
    display: block;
  }
}

@media (max-width: 640px) {
  .greeting_flex {
    font-size: 1.4rem;
    text-align: left;
  }
}

.greeting_flex_img {
  min-width: 132px;
  margin: 0 0 3rem 5rem;
}

@media (max-width: 640px) {
  .greeting_flex_img {
    width: 132px;
    margin: 0 auto 2rem auto;
  }
}

.president_name {
  margin: 3rem 0 0 0;
  line-height: 1.7;
  font-size: 1.4rem;
  text-align: right;
}

.president_name span {
  display: inline-block;
  text-align: left;
}

.overview_list {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .overview_list {
    font-size: 1.4rem;
  }
}

.overview_list_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 1px #eee;
  padding: 2rem;
}

.overview_list_box:last-child {
  border-bottom: solid 1px #eee;
}

.overview_list_box dt {
  width: 30%;
}

.overview_list_box dd {
  width: 70%;
}

.access_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 640px) {
  .access_flex {
    display: block;
  }
}

.access_flex_list {
  width: 50%;
  margin: 0 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1.7rem;
  list-style: none;
}

@media (max-width: 640px) {
  .access_flex_list {
    width: 100%;
  }
}

.access_flex_list li {
  position: relative;
  margin: 0 0 1rem 0;
}

.access_flex_list li:before {
  display: inline-block;
  vertical-align: middle;
  content: "";
  width: 1em;
  height: 1em;
  background: #111;
  border-radius: 50%;
  margin-right: 8px;
}

.access_flex .access_map {
  width: 50%;
}

@media (max-width: 640px) {
  .access_flex .access_map {
    width: 100%;
    margin: 3rem 0 7rem 0;
  }
}

.links {
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .links {
    padding: 0 0 0 2rem;
  }
}

.links .col2 li {
  width: calc(50% - 8px);
}

.links .col3 li {
  width: calc(33.33333% - 8px);
}

.links .col4 li {
  width: calc(25% - 8px);
}

@media (max-width: 768px) {
  .links .col2 li, .links .col3 li, .links .col4 li {
    width: calc(100% - 8px);
  }
}

.links .link_list li {
  display: inline-block;
  margin: 3rem 0 0 0;
  vertical-align: top;
  padding-right: 0.25rem;
}

@media (max-width: 640px) {
  .links .link_list li {
    margin: 2.2rem 0 0 0;
    font-size: 1.4rem;
  }
}

.links .link_list li::before {
  position: relative;
  top: -2px;
  left: -8px;
  display: inline-block;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 100%;
  background: #2BA246;
}

.links .link_list li::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../img/link_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
  margin: 1px 0 0 0.5rem;
}

.links_heading {
  margin: 4.5rem 0 3rem 0;
  font-size: 2rem;
}

@media (max-width: 640px) {
  .links_heading {
    font-size: 1.8rem;
  }
}

.links a {
  color: #2BA246;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}

.link_caution {
  font-weight: bold;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .link_caution {
    font-size: 1.4rem;
  }
}

.link_caution_list {
  margin: 0 0 4rem 2rem;
}

@media (max-width: 768px) {
  .link_caution_list {
    font-size: 1.4rem;
  }
}

.link_caution_list li {
  margin: 0 0 1rem 0;
}

.link_caution_list span {
  color: #2BA246;
}

.link_bana_img {
  width: 223px;
  margin: 2rem 0 0 0;
}

.acrobatreader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3rem 0 0 0;
}

.acrobatreader_text {
  font-size: 1.2rem;
  line-height: 1.7;
}

.acrobatreader_img {
  width: 88px;
  margin: 0 2rem 0 0;
}

@media (max-width: 640px) {
  .acrobatreader {
    display: none;
  }
}

.pager {
  text-align: center;
  margin: 10rem 0 0 0;
}

.pager .pagination li {
  display: inline-block;
  width: 38px;
  height: 38px;
  text-align: center;
  position: relative;
}

.pager .pagination li a {
  color: #2BA246;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pager .pagination li a.active {
  color: #fff;
  background: #2BA246;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.pager .pagination li a:hover {
  color: #fff;
  background: #2BA246;
}

.data_link {
  margin: 5rem 0 0 0;
  padding: 0 0 0 1rem;
}

@media (max-width: 640px) {
  .data_link {
    margin: 3rem 0 0 0;
  }
}

.data_link a {
  color: #2BA246;
  display: inline-block;
  width: 280px;
  margin: 0 0 2rem 0;
}

.data_link a::before {
  position: relative;
  top: 0px;
  left: -8px;
  width: 10px;
  height: 10px;
  display: inline-block;
  content: "";
  background: #2BA246;
}

.data_link a::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../img/link_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
  margin: 1px 0 0 0.5rem;
}

.data_link a:hover {
  text-decoration: underline;
}

/* Scss Document */
.jp_map {
  list-style-type: none;
  position: relative;
  height: 600px;
  margin: 7rem 0 0 0;
}

@media (max-width: 768px) {
  .jp_map {
    display: none;
  }
}

.pref_list {
  display: none;
}

@media (max-width: 768px) {
  .pref_list {
    display: block;
  }
}

.pref_list_img_sp {
  display: none;
}

@media (max-width: 768px) {
  .pref_list_img_sp {
    display: block;
    margin: 3rem 0 4rem 0;
  }
}

@media (max-width: 768px) {
  .pdding_0 {
    padding: 0;
  }
}

.cp_ipselect {
  overflow: hidden;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .cp_ipselect {
    display: block;
  }
}

.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.cp_ipselect select::-ms-expand {
  display: none;
}

.cp_ipselect.cp_sl03 {
  position: relative;
  border-radius: 2px;
  border: 2px solid #111;
  background: #ffffff;
}

.cp_ipselect.cp_sl03::before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2BA246;
  pointer-events: none;
}

.cp_ipselect.cp_sl03 select {
  padding: 0.8rem 3.8rem 0.8rem 0.8rem;
}

.jp_map li {
  width: 46px;
  height: 46px;
  background-color: #2BA246;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.jp_map li:hover {
  opacity: 0.6;
}

.jp_map li.inactive {
  background-color: #ccc;
  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;
  color: #fff;
}

.jp_map li.inactive:hover {
  opacity: 1;
}

.jp_map li:nth-child(1) {
  /*北海道*/
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
}

.jp_map li:nth-child(2) {
  /*青森*/
  position: absolute;
  top: 108px;
  right: 0;
  width: 100px;
}

.jp_map li:nth-child(3) {
  /*岩手*/
  position: absolute;
  top: 162px;
  right: 0;
}

.jp_map li:nth-child(4) {
  /*宮城*/
  position: absolute;
  top: 216px;
  right: 0;
}

.jp_map li:nth-child(5) {
  /*秋田*/
  position: absolute;
  top: 162px;
  right: 54px;
}

.jp_map li:nth-child(6) {
  /*山形*/
  position: absolute;
  top: 216px;
  right: 54px;
}

.jp_map li:nth-child(7) {
  /*福島*/
  position: absolute;
  width: 100px;
  top: 270px;
  right: 0;
}

.jp_map li:nth-child(8) {
  /*茨城*/
  position: absolute;
  top: 378px;
  right: 0;
}

.jp_map li:nth-child(9) {
  /*栃木*/
  position: absolute;
  top: 324px;
  right: 0;
}

.jp_map li:nth-child(10) {
  /*群馬*/
  position: absolute;
  top: 324px;
  right: 54px;
}

.jp_map li:nth-child(11) {
  /*埼玉*/
  position: absolute;
  top: 378px;
  right: 54px;
}

.jp_map li:nth-child(12) {
  /*千葉*/
  position: absolute;
  top: 432px;
  right: 0;
  height: 100px;
}

.jp_map li:nth-child(13) {
  /*東京*/
  position: absolute;
  top: 432px;
  right: 54px;
}

.jp_map li:nth-child(14) {
  /*神奈川*/
  position: absolute;
  top: 486px;
  right: 54px;
}

.jp_map li:nth-child(15) {
  /*新潟*/
  position: absolute;
  top: 270px;
  right: 108px;
}

.jp_map li:nth-child(16) {
  /*富山*/
  position: absolute;
  top: 270px;
  right: 162px;
}

.jp_map li:nth-child(17) {
  /*石川*/
  position: absolute;
  top: 270px;
  right: 216px;
}

.jp_map li:nth-child(18) {
  /*福井*/
  position: absolute;
  top: 324px;
  right: 216px;
}

.jp_map li:nth-child(19) {
  /*山梨*/
  position: absolute;
  top: 432px;
  right: 108px;
}

.jp_map li:nth-child(20) {
  /*長野*/
  position: absolute;
  height: 100px;
  top: 324px;
  right: 108px;
}

.jp_map li:nth-child(21) {
  /*岐阜*/
  position: absolute;
  height: 100px;
  top: 324px;
  right: 162px;
}

.jp_map li:nth-child(22) {
  /*静岡*/
  position: absolute;
  top: 486px;
  right: 108px;
}

.jp_map li:nth-child(23) {
  /*愛知*/
  position: absolute;
  top: 432px;
  right: 162px;
}

.jp_map li:nth-child(24) {
  /*三重*/
  position: absolute;
  top: 432px;
  right: 216px;
}

.jp_map li:nth-child(25) {
  /*滋賀*/
  position: absolute;
  top: 378px;
  right: 216px;
}

.jp_map li:nth-child(26) {
  /*京都*/
  position: absolute;
  top: 378px;
  right: 270px;
}

.jp_map li:nth-child(27) {
  /*大阪*/
  position: absolute;
  top: 432px;
  right: 324px;
}

.jp_map li:nth-child(28) {
  /*兵庫*/
  position: absolute;
  top: 378px;
  right: 324px;
}

.jp_map li:nth-child(29) {
  /*奈良*/
  position: absolute;
  top: 432px;
  right: 270px;
}

.jp_map li:nth-child(30) {
  /*和歌山*/
  position: absolute;
  width: 100px;
  top: 486px;
  right: 270px;
}

.jp_map li:nth-child(31) {
  /*鳥取*/
  position: absolute;
  top: 378px;
  right: 378px;
}

.jp_map li:nth-child(32) {
  /*島根*/
  position: absolute;
  top: 378px;
  right: 432px;
}

.jp_map li:nth-child(33) {
  /*岡山*/
  position: absolute;
  top: 432px;
  right: 378px;
}

.jp_map li:nth-child(34) {
  /*広島*/
  position: absolute;
  top: 432px;
  right: 432px;
}

.jp_map li:nth-child(35) {
  /*山口*/
  position: absolute;
  height: 100px;
  top: 378px;
  right: 486px;
}

.jp_map li:nth-child(36) {
  /*徳島*/
  position: absolute;
  top: 540px;
  right: 432px;
}

.jp_map li:nth-child(37) {
  /*香川*/
  position: absolute;
  top: 486px;
  right: 432px;
}

.jp_map li:nth-child(38) {
  /*愛媛*/
  position: absolute;
  top: 486px;
  right: 486px;
}

.jp_map li:nth-child(39) {
  /*高知*/
  position: absolute;
  top: 540px;
  right: 486px;
}

.jp_map li:nth-child(40) {
  /*福岡*/
  position: absolute;
  top: 378px;
  right: 594px;
}

.jp_map li:nth-child(41) {
  /*佐賀*/
  position: absolute;
  top: 378px;
  right: 646px;
}

.jp_map li:nth-child(42) {
  /*長崎*/
  position: absolute;
  top: 432px;
  right: 646px;
}

.jp_map li:nth-child(43) {
  /*熊本*/
  position: absolute;
  height: 100px;
  top: 432px;
  right: 594px;
}

.jp_map li:nth-child(44) {
  /*大分*/
  position: absolute;
  top: 378px;
  right: 540px;
}

.jp_map li:nth-child(45) {
  /*宮崎*/
  position: absolute;
  height: 100px;
  top: 432px;
  right: 540px;
}

.jp_map li:nth-child(46) {
  /*鹿児島*/
  position: absolute;
  width: 100px;
  top: 540px;
  right: 540px;
}

.jp_map li:nth-child(47) {
  /*沖縄*/
  position: absolute;
  height: 100px;
  top: 594px;
  right: 646px;
}

.jp_map li a {
  color: #fff;
  text-decoration: none;
  display: block;
  height: 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;
}

.corp_pref_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 640px) {
  .corp_pref_flex {
    display: block;
  }
}

.corp_pref_text_sp {
  display: none;
}

@media (max-width: 768px) {
  .corp_pref_text_sp {
    display: block;
  }
}

@media (max-width: 768px) {
  .corp_pref_text {
    display: none;
  }
}

.corp_pref_box {
  width: 48%;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  padding: 3rem;
  margin: 0 0 2rem 0;
  font-size: 1.4rem;
  line-height: 1.7;
}

.corp_pref_box ul {
  margin: 0 0 0 2rem;
}

@media (max-width: 640px) {
  .corp_pref_box {
    width: 100%;
    padding: 2rem;
  }
}

.corp_pref_box .corp_box_heading {
  font-size: 1.8rem;
}

.corp_pref_box .corp_box_address {
  font-style: normal;
  margin: 2rem 0 0 0;
}

.corp_pref_box .corp_box_vehicle {
  margin: 2rem 0 0 0;
}

.corp_pref_box a {
  color: #2BA246;
  display: inline-block;
  margin: 2rem 0 0 0;
}

.corp_pref_box a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

.corp_pref_box a:link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/link_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: text-bottom;
  margin: 1px 0 0 0.5rem;
}

.corp_pref_box .corp_box_comment {
  margin: 2rem 0 0 0;
}

/* Scss Document */
footer {
  background-color: #2BA246;
  color: #fff;
}

footer .footer_inner {
  max-width: 1024px;
  width: calc(100% - 4rem);
  margin: 0 auto;
  padding: 7rem 0 2rem 0;
}

@media (max-width: 640px) {
  footer .footer_inner {
    width: 93%;
    padding: 5rem 0 2rem 0;
  }
}

footer .footer_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 2.3rem;
}

@media (max-width: 640px) {
  footer .footer_flex {
    display: block;
  }
}

footer .footer_address {
  margin: 0 2rem 0 0;
  width: 33%;
}

footer .footer_address p {
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 640px) {
  footer .footer_address p {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  footer .footer_address {
    width: 100%;
  }
}

footer address {
  margin: 1.5rem 0 0 0;
  font-size: 1.2rem;
  font-style: normal;
}

@media (max-width: 640px) {
  footer address {
    font-size: 1rem;
  }
}

footer .footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 63%;
  font-size: 1.4rem;
}

@media (max-width: 640px) {
  footer .footer_nav {
    display: block;
  }
}

@media (max-width: 768px) {
  footer .footer_nav {
    display: none;
  }
}

footer .footer_nav_list {
  margin: 0 1.2rem 0 0;
}

footer .footer_nav_list_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer_nav_list img {
  width: 14px;
  height: 14px;
  display: inline-block;
  margin: 0 0 0 0.5rem;
}

footer .footer_nav_list:last-child {
  margin: 0;
}

footer .footer_nav_list li {
  list-style: none;
  margin: 0 0 1.5rem 0;
}

footer .footer_nav_list li a {
  color: #fff;
}

footer .footer_nav_list li a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

footer .footer_nav_list_top {
  font-weight: bold;
  margin: 0;
}

footer .copyright {
  text-align: center;
  margin: 7rem 0 0 0;
  font-size: 1.4rem;
}

@media (max-width: 640px) {
  footer .copyright {
    margin: 3rem 0 0 0;
    font-size: 1rem;
    text-align: left;
  }
}
/*# sourceMappingURL=style.css.map */