@charset "UTF-8";
/*----------------------
     setting
---------------------------------------- */
/*----------------------
     parts
---------------------------------------- */
.mb10 {
  margin-bottom: 1.6rem;
}

@media (max-width: 767px) {
  .mb10 {
    margin-bottom: 0.8rem;
  }
}

.mb20 {
  margin-bottom: 3.2rem;
}

@media (max-width: 767px) {
  .mb20 {
    margin-bottom: 1.6rem;
  }
}

.mb30 {
  margin-bottom: 4.8rem;
}

@media (max-width: 767px) {
  .mb30 {
    margin-bottom: 2.4rem;
  }
}

.mb40 {
  margin-bottom: 6.4rem;
}

@media (max-width: 767px) {
  .mb40 {
    margin-bottom: 3.2rem;
  }
}

.mb50 {
  margin-bottom: 8rem;
}

@media (max-width: 767px) {
  .mb50 {
    margin-bottom: 4rem;
  }
}

.mb60 {
  margin-bottom: 9.6rem;
}

@media (max-width: 767px) {
  .mb60 {
    margin-bottom: 4.8rem;
  }
}

.mb70 {
  margin-bottom: 11.2rem;
}

@media (max-width: 767px) {
  .mb70 {
    margin-bottom: 5.6rem;
  }
}

.mb80 {
  margin-bottom: 12.8rem;
}

@media (max-width: 767px) {
  .mb80 {
    margin-bottom: 6.4rem;
  }
}

.mb90 {
  margin-bottom: 14.4rem;
}

@media (max-width: 767px) {
  .mb90 {
    margin-bottom: 7.2rem;
  }
}

.mb100 {
  margin-bottom: 16rem;
}

@media (max-width: 767px) {
  .mb100 {
    margin-bottom: 8rem;
  }
}

.mt10 {
  margin-top: 1.6rem;
}

.mt20 {
  margin-top: 3.2rem;
}

.mt30 {
  margin-top: 4.8rem;
}

.mt40 {
  margin-top: 6.4rem;
}

.mt50 {
  margin-top: 8rem;
}

.mt60 {
  margin-top: 9.6rem;
}

.mt70 {
  margin-top: 11.2rem;
}

.mt80 {
  margin-top: 12.8rem;
}

.mt90 {
  margin-top: 14.4rem;
}

.mt100 {
  margin-top: 16rem;
}

.base_text {
  line-height: 1.6;
}

.btn_base {
  display: block;
  padding: 1em;
  text-align: center;
}

.btn_border {
  border: 1px solid #fff;
}

.btn_border_u {
  border-bottom: 1px solid #276768;
}

.btn_bg {
  background: rgba(39, 103, 104, 0.05);
  color: #276768;
}

.btn_send {
  background: #276768;
  color: #fff;
  width: 40%;
  min-width: 20rem;
  letter-spacing: 0.5em;
}

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

.btn_arrow:after {
  content: "→";
  padding-left: 0.5em;
}

.btn_arrow:before {
  content: "←";
  padding-right: 0.5em;
  opacity: 0;
}

.col_half {
  width: 50%;
}

@media (max-width: 767px) {
  .col_half {
    width: 100%;
  }
}

.parts_box {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 767px) {
  .parts_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.parts_mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -0.5em;
}

.parts_mark:before {
  content: attr(data-icon);
  font-size: 3rem;
  color: #276768;
}

.parts_button_wrap {
  padding: 3rem 0;
  text-align: center;
}

@media (max-width: 767px) {
  .parts_button_transition, .parts_button_send {
    padding: 1em 0.8em;
    width: 46vw;
    min-width: 46vw;
  }
}

.parts_font_serif {
  font-family: 'BIZ UDPMincho', serif;;
}

.parts_font_biz {
  font-family: 'BIZ UDPGothic','Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック', YuGothic, 'メイリオ', Meiryo, 'Arimo', sans-serif;
}

.visible {
  opacity: 0;
  -webkit-transform: translate(0, 30%);
          transform: translate(0, 30%);
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.effect {
  -webkit-animation-name: imgbrightness;
          animation-name: imgbrightness;
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@-webkit-keyframes imgbrightness {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes imgbrightness {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*----------------------
     page top
---------------------------------------- */
.page_top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.page_top span {
  display: block;
  width: 6rem;
  height: 6rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.page_top span:hover {
  opacity: 0.7;
}

.page_top.upMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

.page_top.downMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
}

/*----------------------
     html base
---------------------------------------- */
html {
  height: 100%;
  font-size: 10px;
  /* 1rem = 10px */
  background: #fff;
}

body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  color: #000;
  line-height: 1;
  background-color: #F8F8F8;
  font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック', YuGothic, 'メイリオ', Meiryo, 'Arimo', sans-serif;
  font-weight: 400;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 1s;
  transition: all 1s;
}

a:hover {
  opacity: 0.7;
}

button, input, textarea {
  font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック', YuGothic, 'メイリオ', Meiryo, 'Arimo', sans-serif;
}

input[type=text], textarea, select {
  padding: 1em 1.5em;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  width: 100%;
  background: #fff;
}

textarea {
  height: 10em;
}

button {
  cursor: pointer;
}

.input_normal {
  width: 100% !important;
}

.input_xsmall {
  width: 15% !important;
}

.input_small {
  width: 25% !important;
}

.input_xhalf {
  width: 40% !important;
}

.input_half {
  width: 50% !important;
}

.input_xmiddle {
  width: 65% !important;
}

.input_middle {
  width: 75% !important;
}

@media (max-width: 767px) {
  .input_small {
    width: 40% !important;
  }
}

/*----------------------
     html body
---------------------------------------- */
html,
body {
  width: 100%;
}

img {
  width: 100%;
}

@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

.hide {
  display: none !important;
}

.ellipsis {
  display: inline-block !important;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
}

/*----------------------
     header footer
---------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  background: #fff;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

.header_wrap {
  width: 100%;
  height: 9.6rem;
  position: relative;
}

.header.minimum {
  border-bottom: 1px solid #eeeeef;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header_contents {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}

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

.header_logo img {
  width: 26rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header_logo {
    margin-left: 0.5em;
  }
}

@media (max-width: 767px) {
  .header {
    height: 6.4rem;
  }
  .header_wrap, .header_contents {
    height: 6.4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_logo {
    max-width: 50%;
    margin-left: 0.5em;
  }
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header_nav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header_nav_cell {
  width: 16rem;
  color: #000;
  height: 9.6rem;
  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;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

.header_nav_cell .icon {
  width: 1.4rem;
  margin-right: 0.5em;
}

.header_nav_cell.md_text {
  width: auto;
  padding: 1em 1em;
}

.header_nav_cell.md_inquiry {
  width: 28rem;
  background: #333435;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  margin-left: 1em;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header_nav_cell {
    font-size: 1.2rem;
    width: 4em;
  }
  .header_nav_cell.pipeline:after {
    padding: 0 0.2em;
  }
  .header_nav_cell.md_text {
    width: auto;
    padding: 1em 0.4em;
  }
  .header_nav_cell.md_icon {
    display: none;
  }
  .header_nav_cell.md_inquiry {
    width: 14rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .header_nav_cell {
    height: 6.4rem;
    color: #fff;
  }
  .header_nav_cell.pipeline:after {
    content: "";
    display: none;
  }
  .header_nav_cell.md_text {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header_nav_cell.md_inquiry {
    margin-top: 1.6rem;
    margin-left: 0;
  }
  .header_nav_cell.md_sp_inquiry {
    width: 25vw;
    background: #333435;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header_nav_cell.md_sp_inquiry .icon_letter {
    width: 2rem;
    margin-right: 0;
  }
  .header_nav_cell.md_sp_inquiry span {
    display: inline-block;
    margin-top: 0.4rem;
  }
}

.footer {
  background: #333435;
  color: #fff;
  overflow: hidden;
}

.footer_wrap {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  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;
  padding: 4rem 2.4rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer_wrap {
    padding: 4rem 4.8rem;
  }
}

@media (max-width: 767px) {
  .footer_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer .footer_logo {
  width: 100%;
  max-width: 34rem;
  padding-left: 2rem;
}

.footer .footer_contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #276768;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 44rem;
  padding: 2em 1em;
}

.footer .footer_link {
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer .footer_logo {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .footer .footer_logo {
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 26rem;
    margin-bottom: 2.4rem;
  }
  .footer .footer_contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #276768;
    color: #fff;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 26rem;
    padding: 1em 0.5em;
  }
}

.footer .footer_in {
  color: #fff;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 2.4rem;
}

.footer .footer_in .footer_icon {
  text-align: center;
  margin: 2.4rem;
}

@media (max-width: 767px) {
  .footer .footer_in {
    padding: 0 0 0.8rem;
  }
  .footer .footer_in .footer_icon {
    margin: .8rem;
  }
}

.footer .footer_nav {
  margin: 2.4rem;
  border: 1px solid #DCE2E5;
  border-left: none;
  border-right: none;
  padding: 4rem 0;
}

.footer .footer_nav_wrap {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.footer .footer_nav dt {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.footer .footer_nav .footer_nav_list {
  -webkit-column-count: 3;
          column-count: 3;
  -webkit-column-width: 10rem;
          column-width: 10rem;
  -webkit-column-gap: 1px;
          column-gap: 1px;
  -webkit-column-fill: balance;
          column-fill: balance;
  padding: 0 1.6rem;
}

.footer .footer_nav .footer_nav_list li {
  padding: 1em 0 1em 0;
}

.footer .footer_nav .footer_nav_list a {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: underline;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer .footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer_nav .group {
    width: 100%;
    margin-bottom: 1.6rem;
  }
  .footer .footer_nav dt {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .footer .footer_nav .footer_nav_list {
    -webkit-column-count: auto;
            column-count: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer .footer_nav .footer_nav_list li {
    padding: 0.5em;
    text-align: left;
  }
  .footer .footer_nav .footer_nav_list li:nth-of-type(n+1):nth-child(-n+3), .footer .footer_nav .footer_nav_list li:nth-of-type(n+4):nth-child(-n+6), .footer .footer_nav .footer_nav_list li:nth-of-type(n+7):nth-child(-n+9) {
    width: auto;
  }
  .footer .footer_nav .footer_nav_list a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: underline;
  }
}

@media (max-width: 767px) {
  .footer .footer_nav {
    padding: 2rem 0;
  }
  .footer .footer_nav dt {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .footer .footer_nav .group:not(:last-child) {
    margin-bottom: 2.4rem;
  }
  .footer .footer_nav .footer_nav_list {
    -webkit-column-count: 2;
            column-count: 2;
  }
  .footer .footer_nav .footer_nav_list li {
    padding: 0.5em 0;
    text-align: left;
  }
  .footer .footer_nav .footer_nav_list a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: underline;
  }
}

.footer_address {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.footer_copy_right {
  width: 100%;
  padding: 2rem 2.4rem 4rem;
  color: #fff;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer_copy_right small {
  display: inline-block;
  margin-right: 2em;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer_copy_right {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .footer_copy_right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.2rem;
  }
  .footer_copy_right small {
    margin-right: 0;
    margin-bottom: 0.8rem;
  }
}

.footer_icon img {
  width: 4.1rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer_wrap {
    padding-bottom: 0;
  }
  .footer .footer_contact {
    width: 40%;
  }
  .footer_logo {
    width: 30vw;
    margin-bottom: 1.6rem;
  }
  .footer .footer_nav {
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .footer_logo {
    width: 80vw;
    margin-bottom: 1.6rem;
  }
  .footer_tel {
    font-size: 1.4rem;
  }
  .footer .footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer_nav_wrap {
    width: 100%;
    text-align: center;
  }
}

/*----------------------
     humb menu
---------------------------------------- */
@media (max-width: 767px) {
  .sp_open_btn {
    position: fixed;
    z-index: 510;
    top: 10px;
    right: 6px;
    cursor: pointer;
    width: 5rem;
    height: 5rem;
    margin: 0.6rem 0;
  }
  .sp_open_btn span {
    display: inline-block;
    position: absolute;
    left: 1.4rem;
    height: 0.3rem;
    border-radius: 2px;
    background: #000;
    width: 45%;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  .sp_open_btn span:nth-child(1) {
    top: 15px;
  }
  .sp_open_btn span:nth-child(2) {
    top: 23px;
  }
  .sp_open_btn span:nth-child(3) {
    top: 31px;
  }
  .sp_open_btn.active span {
    background: #fff;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .sp_open_btn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .sp_open_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_open_btn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

@media (max-width: 767px) {
  .sp_nav {
    position: fixed;
    z-index: 500;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .sp_nav.panel_active {
    right: 0;
    width: 100%;
  }
  .sp_nav.header_nav_wrap {
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), color-stop(30%, rgba(0, 0, 0, 0)), color-stop(30%, #000), to(#000));
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 30%, #000 30%, #000 100%);
  }
  .sp_nav.header_nav_wrap .header_nav {
    width: 70%;
    z-index: 500;
    background: black;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sp_nav.header_nav_wrap .header_nav li {
    width: 100%;
  }
  .sp_nav.header_nav_wrap .header_nav_cell {
    width: 100%;
  }
  .sp_nav.header_nav_wrap .header_nav .md_text {
    margin: 0;
  }
}

.icon_letter {
  width: 2rem;
  margin-right: 0.5em;
}

/*----------------------
     unit
---------------------------------------- */
.footer_company_more {
  background: url(../images/common/bg_sub_footer.png) no-repeat scroll center center;
  background-size: cover;
  padding: 10rem 0;
  text-align: center;
  margin-top: 10rem;
  color: #fff;
}

.footer_company_more .heading {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer_company_more {
    margin-top: 2.4rem;
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  .footer_company_more {
    padding: 2.4rem 0;
    margin-top: 2.4rem;
  }
  .footer_company_more .heading {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}

.footer_company_more .company_link {
  background: rgba(0, 96, 97, 0.7);
  padding: 1.1rem;
  margin: 2rem;
  width: 50%;
  max-width: 47rem;
}

.footer_company_more .company_link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer_company_more .company_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #fff;
  color: #fff;
  padding: 1.5em;
  text-align: center;
  font-size: 2.0rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer_company_more .company_link {
    width: 40%;
  }
}

@media (max-width: 767px) {
  .footer_company_more .company_link {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.6rem;
    margin-bottom: 0;
  }
  .footer_company_more .company_link_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer_company_more .company_link a {
    padding: 0.5em;
    font-size: 1.6rem;
  }
}

.breadcrumb {
  background: rgba(51, 52, 53, 0.05);
  overflow: hidden;
}

.breadcrumb .breadcrumb_list {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  color: #05080A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 1024px) {
  .breadcrumb .breadcrumb_list {
    margin-top: calc(6.4rem * 0.5);
    margin-bottom: calc(6.4rem * 0.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .breadcrumb .breadcrumb_list {
    margin-top: calc(6rem * 0.5);
    margin-bottom: calc(6rem * 0.5);
  }
}

@media (max-width: 767px) {
  .breadcrumb .breadcrumb_list {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.breadcrumb .breadcrumb_list li {
  font-size: 1.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb .breadcrumb_list li:not(:last-child):after {
  content: url(../images/common/icon_arrow_right_breadcrumb.png);
  margin-left: 0.5em;
}

.breadcrumb .breadcrumb_list li:not(last-child) {
  margin-right: 0.5em;
}

.breadcrumb .breadcrumb_list a {
  color: #05080A;
}

.breadcrumb .breadcrumb_list a:hover {
  text-decoration: underline;
}

.breadcrumb .breadcrumb_list_item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media (max-width: 1023px) {
  .breadcrumb {
    padding: 0 1em;
  }
}

.icon_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1em;
}

.icon_list li:before {
  content: attr(data-icon);
}

.form_message {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  text-align: left;
}

.form_message_inline {
  font-size: 1.4rem;
  padding: .5rem .75rem;
}

.success {
  color: #18603a;
  background-color: #d5f1de;
  border-color: #c4ebd1;
}

.error {
  color: #772b35;
  background-color: #fadddd;
  border-color: #f8cfcf;
}

.container {
  text-align: center;
  overflow: hidden;
}

.container_wrap {
  width: 100%;
  position: relative;
  background-color: #F8F8F8;
}

@media (min-width: 1024px) {
  .contents_section {
    margin-top: calc(6.4rem * 2);
    margin-bottom: calc(6.4rem * 2);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contents_section {
    margin-top: calc(6rem * 2);
    margin-bottom: calc(6rem * 2);
  }
}

@media (max-width: 767px) {
  .contents_section {
    margin-top: calc(4rem * 2);
    margin-bottom: calc(4rem * 2);
  }
}

.contetns_heading {
  color: #fff;
  font-size: 3.8rem;
  font-weight: 400;
}

.h1_caption {
  color: #fff;
  font-family: 'Poppins','Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック', YuGothic, 'メイリオ', Meiryo, 'Arimo', sans-serif;
  text-decoration: underline;
  margin-bottom: 1.6rem;
}

.news_list li,
.news_info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #DCE2E5;
  padding-bottom: 2em;
  margin-bottom: 2em;
}

.news_list .icon_category,
.news_info .icon_category {
  border: 1px solid #276768;
  color: #276768;
  font-size: 1.2rem;
  padding: 0.2em 0.5em 0.4em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1em;
}

.news_list .news_title,
.news_info .news_title {
  text-align: left;
}

.news_list .news_date,
.news_info .news_date {
  color: rgba(5, 8, 10, 0.35);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1em;
}

@media (max-width: 767px) {
  .news_list li,
  .news_info li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 1em;
    margin-bottom: 1em;
  }
  .news_list .news_date,
  .news_info .news_date {
    font-size: 1.4rem;
  }
  .news_list .icon_category,
  .news_info .icon_category {
    font-size: 1.0rem;
  }
  .news_list .news_title,
  .news_info .news_title {
    font-size: 1.4rem;
    margin-top: .5em;
    text-align: left;
  }
}

.news_more_btn {
  margin-left: auto;
  margin-right: auto;
  width: 24rem;
}

@media (min-width: 1024px) {
  .pagination {
    margin-top: calc(6.4rem * 1.5);
    margin-bottom: calc(6.4rem * 1.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pagination {
    margin-top: calc(6rem * 1.5);
    margin-bottom: calc(6rem * 1.5);
  }
}

@media (max-width: 767px) {
  .pagination {
    margin-top: calc(4rem * 1.5);
    margin-bottom: calc(4rem * 1.5);
  }
}

.pagination .pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination .pager .pager_count {
  background: rgba(39, 103, 104, 0.05);
  color: #276768;
  margin: 1px;
}

.pagination .pager .pager_count a {
  color: #276768;
  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;
  font-size: 1.8rem;
  width: 6rem;
  height: 6.7rem;
}

.pagination .pager .pager_count.active {
  background: #276768;
  color: #fff;
}

.pagination .pager .pager_count.active a {
  color: #fff;
}

@media (max-width: 767px) {
  .pagination .page {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .pagination .page .page_prev {
    margin-left: 0;
  }
}

/*
    index page
*/
.index .mv_wrap {
  background: url(../images/index/mv1.png) no-repeat scroll center center;
  background-size: cover;
  position: relative;
}

.index .mv {
  height: 70rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #fff;
}

.index .mv_heading {
  font-size: 3.6rem;
}

.index .mv_caption {
  font-size: 1.6rem;
}

.index .mv_recruit {
  position: absolute;
  bottom: 4rem;
  right: 8rem;
}

.index .mv_recruit a {
  color: #fff;
}

.index .mv_recruit a .text {
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .index .mv .description {
    padding: 1em;
  }
  .index .mv_recruit {
    bottom: 4rem;
    right: 4rem;
  }
}

@media (max-width: 767px) {
  .index .mv {
    height: calc(100vh - 64px);
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10vh 3.2rem;
  }
  .index .mv_heading {
    font-size: 2.4rem;
  }
  .index .mv_caption {
    font-size: 1.4rem;
  }
  .index .mv_recruit {
    position: absolute;
    bottom: 2rem;
    right: 0;
    width: 100%;
    text-align: center;
  }
  .index .mv_recruit a {
    display: inline-block;
    width: 50%;
    color: #fff;
    font-size: 1.2rem;
  }
  .index .mv_recruit a .text {
    text-align: center;
  }
}

.index .business_section {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
}

.index .business_section .description {
  background: #276768;
  color: #fff;
  width: 46%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.index .business_section .description_in {
  width: 100%;
  max-width: 50rem;
  margin-right: 10rem;
}

.index .business_section .description_in .title {
  text-align: center;
  margin-bottom: 3.2rem;
}

.index .business_section .description_in .title img {
  width: 100%;
  max-width: 30rem;
}

.index .business_section .description_in .link_btn {
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  width: 40%;
  min-width: 24rem;
  font-size: 1.8rem;
}

@media (min-width: 1024px) {
  .index .business_section .description_in .link_btn {
    margin-top: calc(6.4rem * 0.5);
    margin-bottom: calc(6.4rem * 0.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .index .business_section .description_in .link_btn {
    margin-top: calc(6rem * 0.5);
    margin-bottom: calc(6rem * 0.5);
  }
}

@media (max-width: 767px) {
  .index .business_section .description_in .link_btn {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.index .business_section .decoration {
  width: 54%;
}

.index .business_section .decoration:before {
  display: block;
  content: "";
  border-style: solid;
  border-width: 48px 0 0 48px;
  border-color: transparent transparent transparent #1C4F50;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .index .business_section .business_in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .index .business_section .business_in .image {
    display: none;
  }
  .index .business_section .description {
    background: #276768;
    color: #fff;
    width: 46%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .index .business_section .description_in {
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .index .business_section .description_in .title {
    margin-bottom: 0;
  }
  .index .business_section .description_in .link_btn {
    margin-bottom: 0;
  }
}

@media (max-width: 1023px) {
  .index .business_section .description, .index .business_section .decoration {
    width: 100%;
  }
  .index .business_section .description {
    padding: 3.6rem 2.4rem;
  }
  .index .business_section .decoration:before {
    display: none;
  }
  .index .business_section .description_in {
    margin-right: 0;
  }
  .index .business_section .description_in .title img {
    max-width: 24rem;
  }
  .index .business_section .description_in .caption {
    font-size: 1.4rem;
  }
  .index .business_section .description_in .link_btn {
    width: 40%;
    min-width: 24rem;
    font-size: 1.6rem;
  }
}

.index .business_contents {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
  padding: 6rem;
  margin-top: -4em;
  position: relative;
  z-index: 2;
}

.index .business_contents .fl_logo {
  width: 20rem;
}

.index .business_contents .flp_logo {
  height: 2rem;
  margin: 0.2rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .index .business_contents {
    margin-top: 0;
  }
  .index .business_contents .business_contents_list_block {
    width: 45%;
  }
  .index .business_contents .business_contents_detail_block {
    width: 55%;
  }
  .index .business_contents .business_contents_detail_block .name {
    max-width: 40%;
  }
}

@media (max-width: 767px) {
  .index .business_contents {
    padding: 2.4rem 1.6rem;
  }
}

.index .business_contents .business_contents_list {
  counter-reset: section;
  position: relative;
  margin-right: 4rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .index .business_contents .business_contents_list {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media (max-width: 767px) {
  .index .business_contents .business_contents_list {
    margin-right: 0;
  }
}

.index .business_contents .business_contents_list li {
  cursor: pointer;
  color: #276768;
  padding: 2em 1em;
  text-align: center;
  border-bottom: 1px solid #276768;
  position: relative;
  display: inline-block !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  width: 100% !important;
}

.index .business_contents .business_contents_list li:before {
  counter-increment: section;
  content: "0" counter(section);
  position: absolute;
  top: 16px;
  left: 10px;
  font-size: 1.3rem;
  font-family: 'Poppins','Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック', YuGothic, 'メイリオ', Meiryo, 'Arimo', sans-serif;
  color: rgba(39, 103, 104, 0.47);
}

.index .business_contents .business_contents_list li:hover {
  background: rgba(39, 102, 104, 0.05);
}

.index .business_contents .business_contents_list li.active {
  background: rgba(39, 102, 104, 0.05);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .index .business_contents .business_contents_list li {
    padding: 1em;
  }
}

@media (max-width: 767px) {
  .index .business_contents .business_contents_list li {
    font-size: 1.2rem;
    padding: 1em 0.5em;
  }
  .index .business_contents .business_contents_list li:before {
    display: none;
  }
}

.index .business_contents .business_contents_list .slick-slide {
  float: none;
}

.index .business_contents .business_contents_list .slick-list {
  width: 100% !important;
  max-width: 50rem !important;
}

.index .business_contents .business_contents_list .slick-track {
  -webkit-column-count: 2;
          column-count: 2;
  width: 100% !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .index .business_contents .business_contents_list .slick-track {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.index .business_contents .business_contents_detail {
  position: relative;
}

.index .business_contents .business_contents_detail li.active {
  display: block;
}

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

.index .business_contents .business_contents_info .category {
  font-size: 1.4rem;
  color: #05080A;
}

.index .business_contents .business_contents_info .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.index .business_contents .business_contents_info .name p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 4rem;
}

.index .business_contents .business_contents_info .name img {
  width: auto;
  height: auto;
}

.index .business_contents .business_contents_info .name .flp_logo_index {
  height: 2rem;
}

@media (max-width: 767px) {
  .index .business_contents .business_contents_info {
    margin-top: 2.4rem;
  }
  .index .business_contents .business_contents_info .name {
    max-width: 70%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .index .business_contents .business_contents_info .name p {
    margin-left: 1.6rem;
  }
  .index .business_contents .business_contents_info .name.max_w {
    width: 100%;
    max-width: 100%;
  }
}

.index .business_contents .business_contents_description .text {
  text-align: left;
}

.index .business_contents .business_contents_description .link {
  text-align: right;
}

.index .business_contents .business_contents_description .contents_link {
  color: #276768;
  display: inline-block;
  width: 22rem;
}

@media (max-width: 767px) {
  .index .business_contents .business_contents_description {
    font-size: 1.4rem;
  }
}

.index .group_section {
  background: url(../images/index/bg_fishlandgroup.png) no-repeat scroll center center;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.index .group_section .group_contents {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

@media (min-width: 1024px) {
  .index .group_section .group_contents {
    margin-top: calc(6.4rem * 2);
    margin-bottom: calc(6.4rem * 2);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .index .group_section .group_contents {
    margin-top: calc(6rem * 2);
    margin-bottom: calc(6rem * 2);
  }
}

@media (max-width: 767px) {
  .index .group_section .group_contents {
    margin-top: calc(4rem * 2);
    margin-bottom: calc(4rem * 2);
  }
}

.index .group_section .group_contents_in {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 2.4rem;
}

.index .group_section .group_contents_in a {
  display: block;
  background-color: rgba(255, 255, 255, 0.8);
  width: 44rem;
  height: 18rem;
  overflow: hidden;
}

.index .group_section .group_contents_in a img {
  width: 24rem;
}

.index .group_section .group_contents_in a p {
  margin-top: -4rem;
}

.index .group_section .title_group {
  font-family: 'Poppins','Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック', YuGothic, 'メイリオ', Meiryo, 'Arimo', sans-serif;
  font-size: 7.2rem;
}

.index .group_section .subtitle_group {
  font-size: 2rem;
  border-bottom: 1px solid #fff;
  padding: 0 0 0.1rem 0;
  display: inline-block;
}

@media (max-width: 767px) {
  .index .group_section .title_group {
    font-size: 3.6rem;
  }
  .index .group_section .subtitle_group {
    font-size: 1.6rem;
  }
  .index .group_section .group_contents_in a {
    width: 96%;
    margin: 0 auto;
    height: 18rem;
  }
  .index .group_section .group_contents_in a:last-child {
    margin-top: 1rem;
  }
}

.index .news_section .title_news {
  font-size: 5.3rem;
  color: #276768;
  font-weight: 400;
}

.index .news_section .subtitle_news {
  font-size: 2rem;
}

.index .news_section .news_contents {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
  padding: 6rem;
  position: relative;
}

@media (max-width: 767px) {
  .index .news_section .title_news {
    font-size: 3.2rem;
  }
  .index .news_section .subtitle_news {
    font-size: 1.4rem;
  }
  .index .news_section .news_contents {
    padding: 3.2rem 2.4rem;
  }
}

.business {
  counter-reset: section;
}

.business .mv_wrap {
  background: url(../images/business/mv_business.png) no-repeat scroll center bottom;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 24rem;
}

@media (max-width: 767px) {
  .business .mv_wrap {
    min-height: 16rem;
  }
}

.business .contents_nav {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  max-width: 80rem;
}

@media (min-width: 1024px) {
  .business .contents_nav_wrap {
    margin-top: calc(6.4rem * 1);
    margin-bottom: calc(6.4rem * 1);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .business .contents_nav_wrap {
    margin-top: calc(6rem * 1);
    margin-bottom: calc(6rem * 1);
  }
}

@media (max-width: 767px) {
  .business .contents_nav_wrap {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

.business .contents_nav .contents_nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
  margin-left: 1em;
  margin-right: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px dotted #276768;
}

.business .contents_nav .contents_nav_item:before {
  content: url(../images/common/icon_arrow_lower.png);
  display: inline-block;
  margin-right: 0.2em;
}

.business .contents_nav .contents_nav_item a {
  color: #276768;
}

.business .item_section {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  -webkit-box-shadow: 0px 3px 55px rgba(0, 0, 0, 0.07);
          box-shadow: 0px 3px 55px rgba(0, 0, 0, 0.07);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1024px) {
  .business .item_section {
    margin-top: calc(6.4rem * 1);
    margin-bottom: calc(6.4rem * 1);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .business .item_section {
    margin-top: calc(6rem * 1);
    margin-bottom: calc(6rem * 1);
  }
}

@media (max-width: 767px) {
  .business .item_section {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

.business .item_section .item_image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.business .item_section .item_name_wrap, .business .item_section .detail {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.business .item_section .item_name {
  background: rgba(39, 103, 104, 0.85);
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem 3rem;
  width: auto;
  z-index: 2;
}

.business .item_section .item_name_wrap {
  display: inline-block;
  margin-top: -7rem;
}

.business .item_section .item_name:before {
  counter-increment: section;
  content: "0" counter(section);
  font-size: 1.4rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: block;
  width: 2em;
}

.business .item_section .item_name .name {
  font-size: 3rem;
  border-left: 1px solid rgba(220, 226, 229, 0.26);
  padding: 0 0.5em;
}

.business .item_section .item_name .category {
  font-size: 1.4rem;
  padding: 0 0.5em 0 1em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .business .item_section .item_name_wrap {
    display: block;
    margin-top: -8.8rem;
  }
  .business .item_section .item_name_wrap_single {
    margin-top: -7rem;
  }
  .business .item_section .item_name .category {
    display: block;
    padding-left: 0;
    padding-top: 0.3em;
  }
}

.business .item_section .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6rem 0;
}

.business .item_section .detail .line_title {
  border-left: 5px solid #276768;
  padding: 0.2em 0.5em;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.business .item_section .detail .business_list .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #DCE2E5;
  padding: 0.5em;
}

.business .item_section .detail .business_list .group:first-of-type {
  border-top: 1px solid #DCE2E5;
}

.business .item_section .detail .business_list dt {
  width: 30%;
}

.business .item_section .detail .business_list .d_group {
  width: 70%;
}

.business .item_section .detail .business_list dd {
  display: block;
  padding: 0.4em 0;
}

.business .item_section .detail .detail_description {
  width: 75%;
  padding: 0 7rem;
  border-right: 1px solid #DCE2E5;
}

.business .item_section .detail .detail_description .image {
  text-align: left;
  margin-bottom: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business .item_section .detail .detail_description .image img {
  width: auto;
}

.business .item_section .detail .detail_description .image .flp_logo {
  height: auto;
  margin-left: 4rem;
}

.business .item_section .detail .detail_description .image .reha_logo {
  margin-left: 4rem;
}

.business .item_section .detail .detail_description .text {
  line-height: 2;
}

.business .item_section .detail .detail_description_single {
  width: 100%;
  border-right: none;
}

.business .item_section .detail .detail_link {
  width: 25%;
  padding: 0 7rem;
  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;
}

.business .item_section .detail .offical_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #276768;
  padding: 0.5em;
  border-bottom: 1px solid #276768;
}

.business .item_section .detail .offical_link:after {
  content: url(../images/common/icon_external.png);
  margin-left: 0.5em;
}

@media (max-width: 1023px) {
  .business .item_section .detail {
    padding: 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business .item_section .detail .detail_description,
  .business .item_section .detail .detail_link {
    width: 100%;
    margin-bottom: 1.6rem;
    padding: 0 4rem;
  }
  .business .item_section .detail .detail_description {
    padding-right: 0;
    padding-left: 0;
    border-right: none;
  }
  .business .item_section .detail .business_list dt {
    width: 40%;
  }
  .business .item_section .detail .business_list .d_group {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .business .item_section .detail .detail_description .flp_logo {
    height: 1.6rem;
    margin-left: 0.8rem;
  }
  .business .item_section .detail .business_list .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business .item_section .detail .business_list dt {
    width: 100%;
    font-weight: 700;
    margin-bottom: 0.8rem;
  }
  .business .item_section .detail .business_list .d_group {
    font-size: 1.4rem;
    width: 100%;
  }
  .business .item_section .detail .solar_list .group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .business .item_section .detail .solar_list dt {
    font-weight: 400;
    margin-bottom: 0rem;
  }
}

.news .mv_wrap {
  background: url(../images/news/mv_news.png) no-repeat scroll center bottom;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 24rem;
}

@media (max-width: 767px) {
  .news .mv_wrap {
    min-height: 16rem;
  }
}

.news .info_section {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 92rem;
  background: #fff;
  padding: 7.6rem 10rem;
}

@media (min-width: 1024px) {
  .news .info_section {
    margin-top: calc(6.4rem * 1.5);
    margin-bottom: calc(6.4rem * 1.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news .info_section {
    margin-top: calc(6rem * 1.5);
    margin-bottom: calc(6rem * 1.5);
  }
}

@media (max-width: 767px) {
  .news .info_section {
    margin-top: calc(4rem * 1.5);
    margin-bottom: calc(4rem * 1.5);
  }
}

@media (max-width: 1023px) {
  .news .info_section {
    padding: 2.4rem 5vw;
  }
}

.news .detail_thumbnail > div > div {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news .detail_thumbnail .thumbnail_img {
  width: 10% !important;
  margin: 1.6rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  .news .detail_thumbnail {
    margin-bottom: 2.4rem;
  }
  .news .detail_thumbnail .thumbnail_img {
    width: 20% !important;
  }
}

.news .category_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}

.news .category_wrap .icon_category {
  padding: 0.4em 1.5em 0.8em;
}

.news .category_wrap .publish_date {
  font-family: 'Poppins','Noto Sans JP','ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', '游ゴシック', YuGothic, 'メイリオ', Meiryo, 'Arimo', sans-serif;
  font-size: 1.6rem;
  color: rgba(5, 8, 10, 0.35);
}

.news .title {
  text-align: left;
  border-left: 8px solid #276768;
  margin-bottom: 7rem;
}

.news .title h2 {
  font-size: 2.8rem;
  line-height: 1.6;
  padding-left: 1.2em;
}

@media (max-width: 767px) {
  .news .title {
    margin-bottom: 2.4rem;
  }
  .news .title h2 {
    font-size: 2rem;
    line-height: 1.6;
    padding-left: 1em;
  }
}

.news .images {
  padding-bottom: 7rem;
  margin-bottom: 7rem;
  border-bottom: 1px solid #CECECE;
}

@media (max-width: 767px) {
  .news .images {
    margin-bottom: 2.4rem;
  }
}

.news .comment {
  text-align: left;
  margin-bottom: 7rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid #CECECE;
}

@media (max-width: 767px) {
  .news .comment {
    margin-bottom: 2.4rem;
    padding-bottom: 2.4rem;
  }
}

.news .pamphlet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.4rem;
}

.news .pamphlet a {
  display: inline-block;
  padding: 0.5em;
  margin-right: 0.5em;
  color: #276768;
  border-bottom: 1px dotted #276768;
}

@media (max-width: 767px) {
  .news .pamphlet {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news .pamphlet .pamphlet_title {
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 1.6rem;
  }
}

.news .link {
  text-align: left;
}

.news .link a {
  display: inline-block;
  padding: 0.5em;
  margin-right: 0.5em;
  color: #276768;
  border-bottom: 1px dotted #276768;
}

.news .detail_nav {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 92rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 7rem;
}

.news .detail_nav .detail_nav_btn {
  background: rgba(39, 103, 104, 0.05);
  width: 19rem;
}

.news .detail_nav .detail_nav_btn a {
  color: #276768;
  padding: 1em 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
}

.news .detail_nav .detail_nav_btn a span {
  display: inline;
}

.news .detail_nav .detail_nav_btn a:before {
  content: url(../images/common/icon_arrow_left.png);
  opacity: 0;
  margin-top: 4px;
}

.news .detail_nav .detail_nav_btn a:after {
  content: url(../images/common/icon_arrow_right.png);
  opacity: 0;
  margin-top: 4px;
}

.news .detail_nav .detail_nav_btn.prev_nav a:before,
.news .detail_nav .detail_nav_btn.next_nav a:after {
  opacity: 1;
}

.news .detail_nav .detail_nav_btn.hidden_btn {
  opacity: 0;
}

@media (max-width: 767px) {
  .news .detail_nav .detail_nav_btn a {
    font-size: 1.4rem;
    padding: 1em 1em;
  }
}

.news .news_contents {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 7.7rem 12rem;
}

@media (min-width: 1024px) {
  .news .news_contents {
    margin-top: calc(6.4rem * 1.5);
    margin-bottom: calc(6.4rem * 1.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news .news_contents {
    margin-top: calc(6rem * 1.5);
    margin-bottom: calc(6rem * 1.5);
  }
}

@media (max-width: 767px) {
  .news .news_contents {
    margin-top: calc(4rem * 1.5);
    margin-bottom: calc(4rem * 1.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news .news_contents {
    padding: 2.4rem;
  }
}

@media (max-width: 767px) {
  .news .news_contents {
    padding: 2.4rem 5vw;
  }
}

.news .news_list li:first-child {
  border-top: 1px solid #DCE2E5;
  padding-top: 2em;
}

.news .category {
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 1023px) {
  .news .category {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.news .page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news .page p {
  margin-left: 1em;
}

.news .page_prev, .news .page_next {
  color: rgba(39, 103, 104, 0.35);
}

.news .page_per {
  color: #276768;
}

.news .page a {
  color: #276768;
}

@media (max-width: 1023px) {
  .news .page {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.news .category_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.news .category_list li:not(:last-child) {
  margin-right: 1.2rem;
}

.news .category_list a {
  color: #276768;
  background: rgba(39, 103, 104, 0.05);
  display: block;
  padding: 2rem;
  width: 12rem;
  text-align: center;
  border: 1px solid rgba(39, 103, 104, 0);
}

.news .category_list a:hover {
  border: 1px solid #276768;
}

.news .category_list .active a {
  color: #fff;
  background: #276768;
  border: 1px solid #276768;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news .category_list {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 2.4rem;
  }
}

@media (max-width: 767px) {
  .news .category_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 2.4rem;
  }
  .news .category_list li:not(:last-child) {
    margin-right: 0.8rem;
  }
  .news .category_list a {
    font-size: 1.2rem;
    padding: 0.8rem 0.6em;
    width: auto;
  }
}

.privacypolicy .mv_wrap {
  background: url(../images/privacypolicy/mv_privacypolicy.png) no-repeat scroll center bottom;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 24rem;
}

@media (max-width: 767px) {
  .privacypolicy .mv_wrap {
    min-height: 16rem;
  }
}

.privacypolicy .pp_contents {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
  padding: 6rem;
  position: relative;
  text-align: left;
}

@media (min-width: 1024px) {
  .privacypolicy .pp_contents {
    margin-top: calc(6.4rem * 1);
    margin-bottom: calc(6.4rem * 1);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .privacypolicy .pp_contents {
    margin-top: calc(6rem * 1);
    margin-bottom: calc(6rem * 1);
  }
}

@media (max-width: 767px) {
  .privacypolicy .pp_contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

@media (min-width: 1024px) {
  .privacypolicy .pp_contents dl {
    margin-top: calc(6.4rem * 1);
    margin-bottom: calc(6.4rem * 1);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .privacypolicy .pp_contents dl {
    margin-top: calc(6rem * 1);
    margin-bottom: calc(6rem * 1);
  }
}

@media (max-width: 767px) {
  .privacypolicy .pp_contents dl {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

.privacypolicy .pp_contents dt {
  margin-bottom: 0.8rem;
}

.privacypolicy .pp_contents dd {
  margin-bottom: 2.4rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .privacypolicy .pp_contents {
    font-size: 1.4rem;
    padding: 2.4rem 5vw;
  }
}

.message .mv_wrap {
  width: 100%;
  max-width: 1560px;
  margin-left: auto;
  margin-right: auto;
  min-height: 60rem;
  background-size: contain;
}

.message .container {
  background-color: rgba(255, 255, 255, 0.79);
}

.message .message_contents {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 9.6rem;
}

@media (min-width: 1024px) {
  .message .message_contents {
    margin-top: calc(6.4rem * 1.5);
    margin-bottom: calc(6.4rem * 1.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .message .message_contents {
    margin-top: calc(6rem * 1.5);
    margin-bottom: calc(6rem * 1.5);
  }
}

@media (max-width: 767px) {
  .message .message_contents {
    margin-top: calc(4rem * 1.5);
    margin-bottom: calc(4rem * 1.5);
  }
}

.message .message_contents:first-of-type {
  border-bottom: 1px solid #DFDFCF;
}

.message h2, .message h3 {
  font-weight: 400;
}

.message h3 {
  font-size: 2.4rem;
}

.message .contents1,
.message .contents2 {
  width: 50%;
  text-align: left;
}

.message .contents1 {
  font-size: 5rem;
  padding: 0 8rem;
}

.message .contents2 {
  padding: 0 4rem;
}

.message .contents3 {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.message .contents_text {
  line-height: 2;
}

.message .sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
}

.message .footer_company_more {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .message .message_contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 2.4rem;
  }
}

@media (max-width: 1023px) and (min-width: 1024px) {
  .message .message_contents {
    margin-top: calc(6.4rem * 1);
    margin-bottom: calc(6.4rem * 1);
  }
}

@media (max-width: 1023px) and (min-width: 768px) and (max-width: 1023px) {
  .message .message_contents {
    margin-top: calc(6rem * 1);
    margin-bottom: calc(6rem * 1);
  }
}

@media (max-width: 1023px) and (max-width: 767px) {
  .message .message_contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

@media (max-width: 1023px) {
  .message .contents1, .message .contents2, .message .contents3 {
    width: 100%;
    padding: 0 10vw;
  }
  .message .contents1 {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }
  .message h3 {
    font-size: 1.8rem;
  }
  .message .contents_text {
    font-size: 1.4rem;
  }
  .message .sign {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.2rem;
    margin-bottom: 2.4rem;
  }
  .message .sign .image {
    width: 40%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .message .mv_wrap {
    min-height: 29.5rem;
  }
}

@media (max-width: 767px) {
  .message .mv_wrap {
    background: url(../images/message/mv_message.png) no-repeat scroll center bottom;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 24rem;
    background-position: top left;
    background-size: cover;
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .message .mv_wrap {
    min-height: 16rem;
  }
}

@media (max-width: 767px) {
  .message .mv_wrap .mv_title {
    width: 50%;
    margin-right: 0;
    margin-left: auto;
    color: #fff;
  }
  .message .mv_wrap .mv_title h1 {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.6;
  }
}

.company .mv_wrap {
  background: url(../images/company/mv_company.png) no-repeat scroll center bottom;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 24rem;
  min-height: 48rem;
  position: relative;
}

@media (max-width: 767px) {
  .company .mv_wrap {
    min-height: 16rem;
  }
}

.company .mv_caption {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 1.3rem;
  text-align: right;
  padding: 1em;
}

@media (max-width: 767px) {
  .company .mv_caption {
    font-size: 1rem;
    padding: 0.5em;
  }
}

.company .container {
  background-color: rgba(255, 255, 255, 0.79);
}

.company .company_contents {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .company .company_contents {
    margin-top: calc(6.4rem * 1.5);
    margin-bottom: calc(6.4rem * 1.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .company .company_contents {
    margin-top: calc(6rem * 1.5);
    margin-bottom: calc(6rem * 1.5);
  }
}

@media (max-width: 767px) {
  .company .company_contents {
    margin-top: calc(4rem * 1.5);
    margin-bottom: calc(4rem * 1.5);
  }
}

.company .company_contents .title {
  text-align: left;
  border-left: 8px solid #276768;
  margin-bottom: 4.2rem;
}

.company .company_contents .title h2 {
  font-size: 2.8rem;
  line-height: 1.6;
  padding-left: 1.2em;
  font-weight: 400;
  color: #276768;
}

@media (max-width: 767px) {
  .company .company_contents .title {
    margin-bottom: 2.4rem;
  }
  .company .company_contents .title h2 {
    font-size: 2rem;
    line-height: 1.6;
    padding-left: 1em;
  }
}

.company .company_contents .sub_title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #276768;
  text-align: left;
  margin-bottom: 4.2rem;
}

.company .company_contents .company_list .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3.2rem 0;
  text-align: left;
  border-bottom: 1px solid #DCE2E5;
}

.company .company_contents .company_list .group:first-of-type {
  border-top: 1px solid #DCE2E5;
}

.company .company_contents .company_list .group dt {
  width: 30%;
}

.company .company_contents .company_list .group dd {
  width: 70%;
}

.company .company_contents .history_list {
  position: relative;
}

.company .company_contents .history_list_wrap {
  height: 60vh;
  overflow-y: scroll;
}

.company .company_contents .history_list:before {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(39, 103, 104, 0.3)), color-stop(99%, rgba(39, 103, 104, 0.3)), to(#fff));
  background: linear-gradient(to bottom, rgba(39, 103, 104, 0.3) 0, rgba(39, 103, 104, 0.3) 99%, #fff 100%);
  background-color: rgba(39, 103, 104, 0.3);
  position: absolute;
  top: 4rem;
  left: calc(2.4rem + 1.5rem);
  width: 1px;
  height: calc( 100% + 1rem);
}

.company .company_contents .history_list .group {
  border-bottom: 1px dashed #909EA5;
  padding-left: 2.4rem;
}

.company .company_contents .history_list .group dt {
  font-size: 2rem;
  font-weight: 700;
  width: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.company .company_contents .history_list .group dt p {
  text-align: center;
}

.company .company_contents .history_list .group dt span {
  color: #6D6D6D;
  font-size: 1.4rem;
  font-weight: 400;
}

.company .company_contents .history_list .group dt:before {
  content: "・";
  font-size: 3.2rem;
  color: #276768;
  display: block;
  margin-top: -0.2em;
}

.company .company_contents .history_list .group dd {
  line-height: 1.6;
  margin-top: -0.2em;
  width: 85%;
}

.company .company_contents .company_text {
  text-align: center;
  font-size: 2.4rem;
}

@media (min-width: 1024px) {
  .company .company_contents .company_text {
    margin-top: calc(6.4rem * 1.5);
    margin-bottom: calc(6.4rem * 1.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .company .company_contents .company_text {
    margin-top: calc(6rem * 1.5);
    margin-bottom: calc(6rem * 1.5);
  }
}

@media (max-width: 767px) {
  .company .company_contents .company_text {
    margin-top: calc(4rem * 1.5);
    margin-bottom: calc(4rem * 1.5);
  }
}

@media (max-width: 1023px) {
  .company .company_contents {
    padding: 0 5vw;
  }
  .company .company_contents .history_list dd {
    padding-left: 1em;
  }
}

@media (max-width: 767px) {
  .company .company_contents .company_list dt, .company .company_contents .company_list dd {
    line-height: 1.4;
    margin-top: -0.2em;
    font-size: 1.4rem;
  }
  .company .company_contents .history_list {
    position: relative;
  }
  .company .company_contents .history_list:before {
    top: 4rem;
    left: calc(0rem + 1.5rem);
  }
  .company .company_contents .history_list .group {
    border-bottom: 1px dashed #909EA5;
    padding-left: 0rem;
  }
  .company .company_contents .history_list .group dt {
    font-size: 1.8rem;
    width: 30%;
  }
  .company .company_contents .history_list .group dd {
    line-height: 1.6;
    margin-top: -0.2em;
    width: 65%;
    font-size: 1.4rem;
  }
  .company .company_contents .company_text {
    font-size: 1.8rem;
  }
}

.company .footer_company_more {
  margin-top: 0;
}

.contact .mv_wrap {
  background: url(../images/contact/mv_contact.png) no-repeat scroll center bottom;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 24rem;
}

@media (max-width: 767px) {
  .contact .mv_wrap {
    min-height: 16rem;
  }
}

.contact .container {
  background-color: rgba(255, 255, 255, 0.79);
}

.contact .contact_contents {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  -webkit-box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
          box-shadow: 0 3px 30px rgba(0, 0, 0, 0.07);
  padding: 6rem 12rem;
  position: relative;
}

@media (min-width: 1024px) {
  .contact .contact_contents {
    margin-top: calc(6.4rem * 1.5);
    margin-bottom: calc(6.4rem * 1.5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contact .contact_contents {
    margin-top: calc(6rem * 1.5);
    margin-bottom: calc(6rem * 1.5);
  }
}

@media (max-width: 767px) {
  .contact .contact_contents {
    margin-top: calc(4rem * 1.5);
    margin-bottom: calc(4rem * 1.5);
  }
}

.contact .contact_text {
  margin-bottom: 3.2rem;
}

.contact .contact_list {
  margin-bottom: 4rem;
}

.contact .contact_list .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #DCE2E5;
  padding-bottom: 2.4rem;
}

.contact .contact_list dt {
  width: 30%;
  text-align: left;
}

.contact .contact_list dd {
  width: 70%;
  text-align: left;
}

.contact .contact_list .required:after {
  content: "必須";
  font-size: 1.1rem;
  display: inline-block;
  padding: 0.2em 0.5em 0.4em;
  color: #fff;
  background-color: #d44848;
  border-radius: 4px;
  margin-left: 1em;
}

.contact .submit_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .contact .contact_contents {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.4rem 5vw;
    position: relative;
  }
}

@media (max-width: 767px) and (min-width: 1024px) {
  .contact .contact_contents {
    margin-top: calc(6.4rem * 1);
    margin-bottom: calc(6.4rem * 1);
  }
}

@media (max-width: 767px) and (min-width: 768px) and (max-width: 1023px) {
  .contact .contact_contents {
    margin-top: calc(6rem * 1);
    margin-bottom: calc(6rem * 1);
  }
}

@media (max-width: 767px) and (max-width: 767px) {
  .contact .contact_contents {
    margin-top: calc(4rem * 1);
    margin-bottom: calc(4rem * 1);
  }
}

@media (max-width: 767px) {
  .contact .contact_list .group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .contact_list .group dt, .contact .contact_list .group dd {
    width: 100%;
  }
  .contact .contact_list .group dt {
    margin-bottom: 0.8em;
  }
}

.contact .footer_company_more {
  margin-top: 0;
}
