@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
@font-face {
  font-family: "line-rg";
  src: url("../font/LINESeedJP_A_OTF_Rg.woff") format("woff");
}

@font-face {
  font-family: "line-bd";
  src: url("../font/LINESeedJP_A_OTF_Bd.woff") format("woff");
}

@font-face {
  font-family: "line-eb";
  src: url("../font/LINESeedJP_A_OTF_Eb.woff") format("woff");
}

@font-face {
  font-family: "line-th";
  src: url("../font/LINESeedJP_A_OTF_Th.woff") format("woff");
}

/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_up.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn.delay {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.oneTxt {
  visibility: hidden;
}

.oneTxt.is-ready {
  visibility: visible;
}

.oneTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  background: #fff;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: calc(100% - 100px);
  height: 70px;
  padding: 0 50px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 99;
}

.header .logo {
  width: 175px;
  position: relative;
}

.header .logo .link {
  position: absolute;
  inset: 0;
}

.header .navi_wrap .hamburger_icon {
  display: none;
  position: relative;
  z-index: 99;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.header .navi_wrap .hamburger_icon.active span:nth-of-type(1) {
  top: 18px;
  left: 10px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 60%;
}

.header .navi_wrap .hamburger_icon.active span:nth-of-type(2) {
  opacity: 0;
}

.header .navi_wrap .hamburger_icon.active span:nth-of-type(3) {
  top: 30px;
  left: 10px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

.header .navi_wrap .hamburger_icon span {
  display: inline-block;
  width: 60%;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 10px;
  height: 2px;
  border-radius: 2px;
  background: #333;
}

.header .navi_wrap .hamburger_icon span:nth-last-of-type(1) {
  top: 15px;
}

.header .navi_wrap .hamburger_icon span:nth-last-of-type(2) {
  top: 23px;
}

.header .navi_wrap .hamburger_icon span:nth-last-of-type(3) {
  top: 31px;
}

.header .navi_wrap .navi .navi_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navi_wrap .navi .navi_container .navi_container_item {
  margin-right: 30px;
}

.header .navi_wrap .navi .navi_container .navi_container_item:last-child {
  margin-right: 0;
}

.header .navi_wrap .navi .navi_container .navi_container_item:last-child .link {
  display: block;
}

.header .navi_wrap .navi .navi_container .navi_container_item .link {
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.header .navi_wrap .navi .navi_container .navi_container_item.navi_container_contact .link {
  color: #fff;
  background: #FF9300;
  padding: 10px 25px;
  border: 2px solid #FF9300;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header .navi_wrap .navi .navi_container .navi_container_item.navi_container_contact .link:hover {
  background: #fff;
  color: #FF9300;
}

@media (max-width: 767px) {
  .header {
    width: calc(100% - 30px);
    padding: 0 15px;
  }
  .header .navi_wrap .hamburger_icon {
    display: block;
  }
  .header .navi_wrap .navi {
    width: 100%;
    height: 50vh;
    background-color: #fff;
    position: fixed;
    z-index: 98;
    top: 70px;
    right: -150%;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .header .navi_wrap .navi.panelactive {
    right: 0;
  }
  .header .navi_wrap .navi .navi_container {
    height: 100%;
    -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;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .header .navi_wrap .navi .navi_container .navi_container_item {
    margin-right: 0;
  }
  .header .navi_wrap .navi .navi_container .navi_container_item.navi_container_contact .link {
    color: #333;
    background-color: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  background: #00895E;
  padding: 80px 0 20px;
}

.footer .f_inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.footer .f_inner .logo {
  width: 340px;
  margin: auto;
}

.footer .f_inner .f_content {
  margin-top: 65px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}

.footer .f_inner .f_content .left_content {
  color: #fff;
}

.footer .f_inner .f_content .left_content .address {
  line-height: 1.4rem;
}

.footer .f_inner .f_content .left_content .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-top: 15px;
}

.footer .f_inner .f_content .left_content .tel:last-child {
  margin-top: 5px;
}

.footer .f_inner .f_content .left_content .tel span {
  display: block;
  font-size: 14px;
  color: #00784A;
  font-weight: 300;
  padding: 1.5px 6px;
  border-radius: 30px;
  background: #fff;
}

.footer .f_inner .f_content .right_content {
  position: relative;
}

.footer .f_inner .f_content .right_content::before {
  content: '';
  width: 1px;
  height: calc(100% + 20px);
  background: #fff;
  position: absolute;
  top: -10px;
  left: -50px;
}

.footer .f_inner .f_content .right_content .btns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(min(100%, 340px), 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 10px 20px;
}

.footer .f_inner .f_content .right_content .btns .btn {
  max-width: 350px;
  padding: 10px 30px;
  border: 1px solid #fff;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
}

.footer .f_inner .f_content .right_content .btns .btn .link {
  position: absolute;
  inset: 0;
}

.footer .f_inner .f_content .right_content .btns .btn .icon {
  width: 25px;
}

.footer .f_inner .f_content .right_content .btns .btn .text {
  color: #fff;
}

.footer .f_inner .copyRight {
  text-align: center;
  color: #fff;
  margin-top: 80px;
  font-size: 10px;
}

@media (max-width: 767px) {
  .footer {
    padding: 50px 0 20px;
  }
  .footer .f_inner .logo {
    width: 240px;
  }
  .footer .f_inner .f_content {
    margin-top: 45px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
  .footer .f_inner .f_content .right_content::before {
    display: none;
  }
  .footer .f_inner .f_content .right_content .btns .btn {
    padding: 10px 20px;
  }
  .footer .f_inner .copyRight {
    margin-top: 50px;
  }
}

/* ---------------------------------------------------------
    sidebar
--------------------------------------------------------- */
.sidebar {
  width: 330px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  -webkit-transition: right 0.35s ease;
  transition: right 0.35s ease;
}

.sidebar .link {
  position: absolute;
  inset: 0;
}

.sidebar.hide {
  right: -330px;
}

main {
  margin-bottom: 160px;
}

@media (max-width: 767px) {
  main {
    margin-bottom: 100px;
  }
}

/* ---------------------------------------------------------
    pageVisual
--------------------------------------------------------- */
.sect_pageVisual {
  width: 100%;
  height: 380px;
  background: url(../images/company/page_visual.jpg) no-repeat center/cover;
}

.sect_pageVisual .pageVisual {
  position: relative;
}

.sect_pageVisual .pageVisual .sect_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 180px;
}

.sect_pageVisual .pageVisual .sect_title::before {
  content: '';
  width: 40px;
  height: 2px;
  background: #00784a;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 1;
}

.sect_pageVisual .pageVisual .sect_title::after {
  content: '';
  width: 232px;
  height: 2px;
  background: #00784a;
  position: absolute;
  right: 0;
  bottom: 5px;
  z-index: 1;
}

.sect_pageVisual .pageVisual .sect_title .en {
  font-size: 72px;
  font-weight: 600;
  color: #00895e;
}

.sect_pageVisual .pageVisual .sect_title .ja {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  margin-left: 45px;
}

@media (max-width: 767px) {
  .sect_pageVisual {
    height: 280px;
  }
  .sect_pageVisual .pageVisual {
    position: relative;
  }
  .sect_pageVisual .pageVisual .sect_title {
    gap: 10px;
    top: 150px;
  }
  .sect_pageVisual .pageVisual .sect_title::before {
    width: 40px;
  }
  .sect_pageVisual .pageVisual .sect_title::after {
    width: 145px;
  }
  .sect_pageVisual .pageVisual .sect_title .en {
    font-size: 52px;
  }
  .sect_pageVisual .pageVisual .sect_title .ja {
    font-size: 14px;
  }
}

/* ---------------------------------------------------------
    message
--------------------------------------------------------- */
.sect_message {
  margin-top: 80px;
  position: relative;
}

.sect_message .sect_photo {
  max-width: 600px;
  width: 45vw;
  position: absolute;
  top: 80px;
  right: 0;
}

.sect_message .message {
  max-width: 550px;
}

.sect_message .message .sect_title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  background: #00895e;
  padding: 1px 30px 12px;
}

.sect_message .message .photo {
  display: none;
}

.sect_message .message .sub_title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 24px;
  font-weight: 600;
  margin-top: 25px;
}

.sect_message .message .sentence {
  line-height: 2rem;
  margin-top: 25px;
}

.sect_message .message .name {
  margin-top: 25px;
  text-align: right;
}

@media (max-width: 1023px) {
  .sect_message .sect_photo {
    display: none;
  }
  .sect_message .message {
    margin: auto;
    max-width: 800px;
  }
  .sect_message .message .photo {
    display: block;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .sect_message {
    margin-top: 50px;
  }
  .sect_message .message .sect_title {
    font-size: 24px;
    padding: 1px 20px 8px;
  }
  .sect_message .message .sub_title {
    font-size: 20px;
    line-height: 1.6rem;
  }
  .sect_message .message .sentence {
    margin-top: 25px;
  }
  .sect_message .message .contents {
    gap: 40px;
  }
}

/* ---------------------------------------------------------
    overview
--------------------------------------------------------- */
.sect_overview {
  margin-top: 180px;
}

.sect_overview .overview .sect_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
}

.sect_overview .overview .sect_title::before {
  content: '';
  width: 26px;
  height: 2px;
  background: #00784a;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 1;
}

.sect_overview .overview .sect_title::after {
  content: '';
  width: 82px;
  height: 2px;
  background: #00784a;
  position: absolute;
  right: 0;
  bottom: 5px;
  z-index: 1;
}

.sect_overview .overview .sect_title .en {
  font-size: 40px;
  font-weight: 600;
  color: #00895e;
}

.sect_overview .overview .sect_title .ja {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  margin-left: 30px;
}

.sect_overview .overview .job_list {
  max-width: 960px;
  width: 100%;
  list-style: none;
  margin: 55px auto 0;
  padding: 0;
}

.sect_overview .overview .job_list .job_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 0;
  border-bottom: 1px solid #333;
}

.sect_overview .overview .job_list .job_row:last-child {
  border-bottom: 0;
}

.sect_overview .overview .job_list .job_row .job_row_head {
  width: 250px;
  padding-right: 25px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  white-space: nowrap;
}

.sect_overview .overview .job_list .job_row .job_row_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
  line-height: 2;
}

@media (max-width: 767px) {
  .sect_overview {
    margin-top: 120px;
  }
  .sect_overview .overview .sect_title::after {
    width: 60px;
  }
  .sect_overview .overview .sect_title .en {
    font-size: 32px;
  }
  .sect_overview .overview .sect_title .ja {
    font-size: 14px;
  }
  .sect_overview .overview .job_list {
    margin: 30px auto 0;
  }
  .sect_overview .overview .job_list .job_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 25px 10px;
    gap: 10px;
  }
  .sect_overview .overview .job_list .job_row .job_row_head {
    width: auto;
    font-size: 18px;
  }
  .sect_overview .overview .job_list .job_row .job_row_body {
    font-size: 16px;
    line-height: 1.6rem;
  }
}

/* ---------------------------------------------------------
    history
--------------------------------------------------------- */
.sect_history {
  margin-top: 80px;
}

.sect_history .history .sect_title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
}

.sect_history .history .sect_title::before {
  content: '';
  width: 26px;
  height: 2px;
  background: #00784a;
  position: absolute;
  left: 0;
  bottom: 5px;
  z-index: 1;
}

.sect_history .history .sect_title::after {
  content: '';
  width: 38px;
  height: 2px;
  background: #00784a;
  position: absolute;
  right: 0;
  bottom: 5px;
  z-index: 1;
}

.sect_history .history .sect_title .en {
  font-size: 40px;
  font-weight: 600;
  color: #00895e;
}

.sect_history .history .sect_title .ja {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 600;
  margin-left: 30px;
}

.sect_history .history .history_list {
  margin-top: 60px;
  padding: 0 0 0 100px;
}

.sect_history .history .history_list .history_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
  padding: 10px 0;
}

.sect_history .history .history_list .history_item .history_date {
  min-width: 150px;
  text-align: right;
  white-space: nowrap;
  line-height: 1.6rem;
}

.sect_history .history .history_list .history_item .history_line {
  width: 1px;
  border-left: 1px dashed #707070;
  /* liごとに高さを合わせて縦線を伸ばす */
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.sect_history .history .history_list .history_item .history_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6rem;
}

@media (max-width: 767px) {
  .sect_history {
    margin-top: 50px;
  }
  .sect_history .history .sect_title::after {
    width: 26px;
  }
  .sect_history .history .sect_title .en {
    font-size: 32px;
  }
  .sect_history .history .sect_title .ja {
    font-size: 14px;
  }
  .sect_history .history .history_list {
    margin-top: 45px;
    padding: 0;
  }
  .sect_history .history .history_list .history_item {
    gap: 20px;
    padding: 10px 0;
  }
  .sect_history .history .history_list .history_item .history_date {
    min-width: 130px;
    font-size: 14px;
  }
  .sect_history .history .history_list .history_item .history_content {
    font-size: 14px;
  }
}
/*# sourceMappingURL=company.css.map */