@charset "UTF-8";
/*
*
* Copyright (c) 2016, AD Line Inc. All rights reserved.
* Data : 2016.04.20
*
*/
/* Googleフォント　Noto Sans,Robot,Open Sans */
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css2?family=Bowlby+One&display=swap);
/* アイコンフォント　Font Awesome 6.5.2 */
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css);
/*****************************************************

 SCSS用
 
*****************************************************/
@media (max-width: 767px) {
  a[href^="tel:"] {
    /* スマートフォンでのみ電話番号リンクを有効にするCSS */
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*****************************************************

 Common - Layout
 
*****************************************************/
html {
  font-size: 10px;
}

body {
  position: relative;
  width: auto;
  height: auto;
  background: #FFF;
  z-index: 0;
  color: #333333;
  font-size: 1.6rem;
  font-family: 'Noto Sans Japanese','Noto Sans', "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif , serif;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.5px;
  background: url("../images/common/bg_texture01.png");
  min-width: 1400px;
}

@media screen and (max-width: 896px) {
  body {
    font-size: 1.4rem;
    min-width: 100%;
  }
}
/* PC/SP 表示・非表示
----------------------------------------------------*/
/*PCでは表示しない*/
@media screen and (min-width: 897px) {
  .pc_none {
    display: none !important;
  }
}
/*SPでは表示しない*/
@media screen and (max-width: 896px) {
  .sp_none {
    display: none !important;
  }
}
/*　inner
----------------------------------------------------*/
.inner {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 896px) {
  .inner {
    width: 90%;
    min-width: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}
/*****************************************************

 Common - Parts
 
*****************************************************/
/*　共通見出し
----------------------------------------------------*/
.h2_title {
  margin: 0 0 56px 0;
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8.0rem;
  line-height: 1;
}
.h2_title .jp {
  display: block;
  color: #59671e;
  font-weight: 600;
  font-size: 1.8rem;
}

.title_box {
  display: flex;
}
.title_box .caption_title {
  padding: 10px 0 0 40px;
}
.title_box .caption_title_center {
  margin: 0 auto;
  padding: 10px 0 0 0;
  text-align: center;
}

/* SP */
@media screen and (max-width: 896px) {
  .h2_title {
    margin: 0 0 24px 0;
    font-size: 3.6rem;
    line-height: 1;
  }
  .h2_title .jp {
    display: block;
    color: #59671e;
    font-weight: 600;
    font-size: 1.4rem;
  }

  .title_box {
    display: flex;
    flex-direction: column;
  }
  .title_box .caption_title {
    padding: 0px 0 0 0;
  }
  .title_box .caption_title_center {
    margin: 0 auto;
    padding: 0px 0 0 0;
    text-align: left;
  }
}
/* max-width:896px */
.h2_title_w {
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8.0rem;
  line-height: 1;
  color: #fff;
}
.h2_title_w .jp {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
}

/* SP */
@media screen and (max-width: 896px) {
  .h2_title_w {
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .h2_title_w .jp {
    font-size: 1.4rem;
  }
}
/* max-width:896px */
/* SP */
/* max-width:896px */
/*　リンク
----------------------------------------------------*/
a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 770px) {
  a:hover {
    opacity: 1.0;
  }
}
.fa-arrow-circle-right {
  color: #889e0a;
}

/*　ボタン
----------------------------------------------------*/
.btn_xxxx a {
  background: #004DA0;
  border-radius: 30px;
  position: relative;
  display: flex;
  align-items: center;
  margin: 56px auto 0;
  max-width: 220px;
  padding: 12px 20px;
  color: #FFE20D;
  transition: 0.2s ease-in-out;
  font-weight: 500;
  text-decoration: none;
}
.btn_xxxx a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn_xxxx a:hover {
  background: #659CCE;
}
.btn_xxxx a:hover:after {
  right: 1.4rem;
}

/* SP */
@media screen and (max-width: 896px) {
  .btn_xxxx a {
    box-sizing: border-box;
    margin: 24px auto 0;
    max-width: 80%;
  }
}
/* max-width:896px */
/*アイコンありボタン*/
.btn_arrow a {
  display: block;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 8px;
  color: #004DA0;
  border-bottom: 2px solid #004DA0;
}
.btn_arrow a:active {
  color: #919191;
}
.btn_arrow a .arrow {
  position: absolute;
  top: 40%;
  right: 16px;
}

/* SP */
@media screen and (max-width: 896px) {
  .btn_arrow a .arrow {
    right: 8px;
  }
}
/* max-width:896px */
/*　テーブル
----------------------------------------------------*/
/*　tbl_type01
----------------------------------------------------*/
.tbl_type01 {
  width: 60%;
}
.tbl_type01 tr {
  color: #333333;
}
.tbl_type01 tr th {
  width: 203px;
  width: 19%;
  padding: 20px;
  font-weight: 700;
  box-sizing: border-box;
  border-bottom: dashed 2px #666666;
  vertical-align: top;
}
.tbl_type01 tr td {
  width: calc(100% - 203px);
  width: calc(100% - 19%);
  padding: 20px;
  box-sizing: border-box;
  border-bottom: dashed 2px #666666;
}
.tbl_type01 tr td a {
  color: #333333;
}
.tbl_type01 tr td ul li {
  text-indent: 4px;
  margin: 8px 0 8px 0;
}
.tbl_type01 tr td ul li a {
  text-indent: 0;
}
.tbl_type01 tr td ul li::before {
  content: '-';
  margin-right: 4px;
}
.tbl_type01 tr td .indent {
  display: block;
  text-indent: -1.6rem;
  margin-left: 1.6rem;
}

@media screen and (min-width: 897px) {
  .tbl_type01 tr td ul.col_box li {
    width: 31.5%;
    height: auto;
    margin: 0 0 0 1.8%;
  }
  .tbl_type01 tr td ul.col_box li:nth-child(3n+1) {
    /*margin-left: 0;*/
  }
  .tbl_type01.border_top tr:first-child th {
    border-top: solid 2px #394a56;
  }
  .tbl_type01.border_top tr:first-child td {
    border-top: solid 1px #8c8c8c;
  }
}
@media screen and (max-width: 896px) {
  .tbl_type01 {
    width: 100%;
    -webkit-text-stroke: 2px #FFFFFF;
    paint-order: stroke;
  }
  .tbl_type01 tr th {
    display: block;
    width: 10%;
    min-width: 0;
    padding: 16px 0 4px;
    white-space: nowrap;
    border-bottom: none;
  }
  .tbl_type01 tr td {
    display: block;
    width: 100%;
    padding: 0px 0 16px 0;
  }
  .tbl_type01 tr td ul.col_box li {
    width: 46%;
    height: auto;
    margin: 0 0 0 4%;
  }
  .tbl_type01 tr td ul.col_box li:nth-child(2n+1) {
    /*margin-left: 0;*/
  }
  .tbl_type01 tr td .indent {
    display: block;
    text-indent: -1.2rem;
    margin-left: 1.2rem;
  }
}
/*　tbl_type02
----------------------------------------------------*/
.tbl_type02 {
  width: 100%;
}
.tbl_type02 tr {
  color: #333333;
}
.tbl_type02 tr th {
  width: 203px;
  width: 19%;
  padding: 20px;
  font-weight: 700;
  box-sizing: border-box;
  border-bottom: dashed 2px #666666;
  vertical-align: top;
}
.tbl_type02 tr td {
  width: calc(100% - 203px);
  width: calc(100% - 19%);
  padding: 20px;
  box-sizing: border-box;
  border-bottom: dashed 2px #666666;
}
.tbl_type02 tr td a {
  color: #333333;
}
.tbl_type02 tr td ul li {
  text-indent: 4px;
  margin: 8px 0 8px 0;
}
.tbl_type02 tr td ul li a {
  text-indent: 0;
}
.tbl_type02 tr td ul li::before {
  content: '-';
  margin-right: 4px;
}
.tbl_type02 tr td .indent {
  display: block;
  text-indent: -1.6rem;
  margin-left: 1.6rem;
}

@media screen and (min-width: 897px) {
  .tbl_type02 tr td ul.col_box li {
    width: 31.5%;
    height: auto;
    margin: 0 0 0 1.8%;
  }
  .tbl_type02 tr td ul.col_box li:nth-child(3n+1) {
    /*margin-left: 0;*/
  }
  .tbl_type02.border_top tr:first-child th {
    border-top: solid 2px #394a56;
  }
  .tbl_type02.border_top tr:first-child td {
    border-top: solid 1px #8c8c8c;
  }
}
@media screen and (max-width: 896px) {
  .tbl_type02 tr th {
    display: block;
    width: 10%;
    min-width: 0;
    padding: 16px 0 4px;
    white-space: nowrap;
    border-bottom: none;
  }
  .tbl_type02 tr td {
    display: block;
    width: 100%;
    padding: 0px 0 16px 8px;
  }
  .tbl_type02 tr td ul.col_box li {
    width: 46%;
    height: auto;
    margin: 0 0 0 4%;
  }
  .tbl_type02 tr td ul.col_box li:nth-child(2n+1) {
    /*margin-left: 0;*/
  }
  .tbl_type02 tr td .indent {
    display: block;
    text-indent: -1.2rem;
    margin-left: 1.2rem;
  }
}
/*　インデント
----------------------------------------------------*/
.indent {
  text-indent: -1.6rem;
  margin-left: 1.6rem;
}

/*　リスト
----------------------------------------------------*/
/* ページトップ
----------------------------------------------------*/
/* トピックパス
----------------------------------------------------*/
/*****************************************************

 Template - Header
 
*****************************************************/
/* global_header
----------------------------------------------------*/
.global_header {
  width: 100%;
  min-width: 1040px;
  max-height: 120px;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.cover_header {
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.5) 85%, transparent 100%);
  z-index: 3;
  position: fixed;
  top: -100px;
}

@media screen and (max-width: 896px) {
  .global_header {
    min-width: 0;
    max-height: 48px;
  }

  .cover_header {
    width: 100%;
    height: 56px;
    background: linear-gradient(180deg, white 0%, white 25%, white 35%, transparent 100%);
    top: -100px;
  }
}
/* header_contents
----------------------------------------------------*/
.header_contents {
  width: 100%;
  height: 80px;
  background: #004d09;
  display: flex;
  align-items: center;
}
.header_contents .header_title {
  margin: 2.3% 0% 0 1%;
  width: 30%;
  height: auto;
}
.header_contents .header_title .title_logo {
  width: 100%;
  /* max-width: 398px; */
  height: 100%;
  /* max-height: 120px; */
  display: flex;
  align-items: center;
}
.header_contents .header_title .title_logo a {
  display: block;
  width: 50%;
  height: 0;
  padding-bottom: 20.1%;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/common/logo_header.png) no-repeat;
  background-size: contain;
  transition: 0.3s;
}

@media screen and (max-width: 1450px) {
  .header_contents .inner {
    width: 100%;
    min-width: 1130px;
  }
}
@media screen and (max-width: 896px) {
  .header_contents {
    height: 48px;
  }
  .header_contents .inner {
    width: 100%;
    min-width: 0;
  }
  .header_contents .header_title {
    margin: 4% 0% 0 2%;
    width: 58%;
    height: auto;
  }
  .header_contents .header_title .title_logo {
    width: 220px;
    height: auto;
  }
}
/* global_nav
------------------------------------*/
.global_nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
  /*filter: drop-shadow(0px 0px 2px #f2f2f2);*/
}

@media screen and (max-width: 1430px) {
  .global_nav {
    margin-right: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .global_nav {
    margin-right: 12px;
  }
}
/* pc_nav_contents
----------------------------------------------------*/
.pc_nav_contents {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 0;
}
.pc_nav_contents .header_menu_list {
  display: flex;
  height: 80px;
  align-items: center;
}
.pc_nav_contents .header_menu_list li {
  margin-left: 48px;
  height: 100%;
}
.pc_nav_contents .header_menu_list li:first-child {
  margin-left: 0;
}
.pc_nav_contents .header_menu_list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  padding: 32px 0 24px;
  box-sizing: border-box;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
}
.pc_nav_contents .header_menu_list li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background: #FFE20D;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.pc_nav_contents .header_menu_list li a:hover {
  opacity: 1.0;
}
.pc_nav_contents .header_menu_list li a:hover::after {
  transform-origin: right top;
  transform: scale(1, 1);
}
.pc_nav_contents .header_menu_list li.active a::after {
  transform: scale(1, 1);
}
.pc_nav_contents .header_menu_list li.tel {
  padding: 0 24px;
  background-color: #333;
}
.pc_nav_contents .header_menu_list li.tel a {
  display: flex;
  padding: 16px 0 10px;
}
.pc_nav_contents .header_menu_list li.tel i {
  display: block;
  font-size: 4rem;
  padding: 6px 16px 10px 0px;
  color: #869919;
}
.pc_nav_contents .header_menu_list li.tel span {
  display: inline;
  font-size: 2.4rem;
}
.pc_nav_contents .header_contact_list {
  margin-left: 48px;
  display: block;
  width: 250px;
  height: 80px;
}
.pc_nav_contents .header_contact_list li {
  height: 50%;
}
.pc_nav_contents .header_contact_list li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 2.2rem;
  line-height: 1.8;
  font-weight: 900;
  text-align: center;
}
.pc_nav_contents .header_contact_list li a i {
  margin-right: 6px;
}

.sp_nav_contents {
  display: none;
}

@media screen and (max-width: 1450px) {
  .pc_nav_contents .header_menu_list li {
    margin-left: 24px;
  }
  .pc_nav_contents .header_contact_list {
    margin-left: 24px;
    display: block;
    width: 180px;
    height: 80px;
  }
  .pc_nav_contents .header_contact_list li {
    height: 50%;
  }
  .pc_nav_contents .header_contact_list li.tel a {
    font-size: 4rem;
    line-height: 2.2;
  }
  .pc_nav_contents .header_contact_list li.mail a {
    font-size: 1.8rem;
    line-height: 2.2;
  }
}
/* sp_nav_contents
----------------------------------------------------*/
@media screen and (max-width: 896px) {
  .pc_nav_contents {
    display: none;
  }

  .sp_nav_contents {
    display: block;
    margin-left: auto;
  }
  .sp_nav_contents p.menu {
    /*margin-right:16px;*/
  }
  .sp_nav_contents p.menu a {
    color: #fdb921;
    font-size: 2.4rem;
    line-height: 1;
  }

  .mm-menu {
    background: #fff !important;
    border-color: #fdb921 !important;
    font-family: "Bowlby One", sans-serif !important;
    font-weight: 400;
    font-style: normal;
  }
  .mm-menu .mm-panels {
    background: #474747 !important;
  }
  .mm-menu .mm-navbar {
    background: #fdb921;
    font-family: "Bowlby One", sans-serif !important;
    font-weight: 400;
    font-style: normal;
  }
  .mm-menu .mm-navbar .mm-navbar__title {
    color: #fff !important;
    font-family: "Bowlby One", sans-serif !important;
    font-weight: 400;
    font-style: normal;
  }
  .mm-menu .mm-listitem a {
    color: #fdb921 !important;
    padding: 20px;
  }
  .mm-menu .tel {
    color: #00568c !important;
    font-weight: 900;
  }
  .mm-menu .address {
    font-family: "Noto Sans JP", sans-serif !important;
    font-weight: 800;
    color: #FFF;
  }
  .mm-menu .top_cover_contents {
    padding: 16px;
  }
}
/* トップページ・スライド
----------------------------------------------------*/
/* slider_area
----------------------------------------------------*/
.slider_area {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider_area .main_cover_logo {
  position: absolute;
  width: auto;
  height: auto;
  padding: 60px 0 0;
}
.slider_area .main_cover_logo img {
  width: auto;
  height: 50vh;
}

.main_cover {
  width: 100%;
  z-index: -1;
}
.main_cover li {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
.main_cover li:nth-of-type(1) {
  background: url("../images/home/top_slider_01.jpg") center/cover no-repeat;
}
.main_cover li:nth-of-type(2) {
  background: url("../images/home/top_slider_02.jpg") center/cover no-repeat;
}
.main_cover li:nth-of-type(3) {
  background: url("../images/home/top_slider_03.jpg") center/cover no-repeat;
}

@media screen and (max-width: 896px) {
  .slider_area {
    position: relative;
    height: 45vh;
  }
  .slider_area .main_cover_logo {
    padding: 40px 0 0 0;
  }
  .slider_area .main_cover_logo img {
    width: auto;
    height: 24vh;
  }

  .main_cover li {
    height: 45vh;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .main_cover li p {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: left;
  }
}
/* 下層ページ・メインビジュアル
----------------------------------------------------*/
/* mainvisual
----------------------------------------------------*/
.mainvisual {
  width: 100%;
  height: 560px;
  position: relative;
}
.mainvisual.about {
  background: url("../images/about/bg_cover_about.jpg") no-repeat top left/cover;
}
.mainvisual.works {
  background: url("../images/works/bg_cover_works.jpg") no-repeat top left/cover;
}
.mainvisual.recruit {
  background: url("../images/recruit/bg_cover_recruit.jpg") no-repeat top left/cover;
}
.mainvisual .inner {
  width: 100%;
  max-width: 1400px;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.mainvisual .page_title {
  position: relative;
  text-align: center;
}
.mainvisual .page_title .en {
  display: block;
  color: #FFF;
  font-size: clamp(3rem, 4.5vw, 9rem);
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
.mainvisual .page_title .jp {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 896px) {
  .mainvisual {
    margin-top: 48px;
    height: 20vh;
    background-position: center center;
  }
  .mainvisual .inner {
    width: 95%;
    height: 9vh;
  }
  .mainvisual .page_title {
    min-height: 0;
  }
}
/*****************************************************

 Template - Footer
 
*****************************************************/
.global_footer {
  background: #004d09;
  padding: 56px 10%;
  color: #fff;
}

.footer_contact_box {
  display: flex;
  box-sizing: border-box;
}

.footer_left {
  width: 35%;
}

.footer_right {
  width: 65%;
  text-align: right;
}
.footer_right .copyright {
  padding: 16px 0 0;
}

.footer_link {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 16px 0;
}
.footer_link li {
  padding: 0 0 0 42px;
  font-size: 2.0rem;
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.footer_link li a {
  font-size: 2.4rem;
  color: #fff;
}

/* SP */
@media screen and (max-width: 896px) {
  .global_footer {
    padding: 32px 4%;
  }

  .footer_contact_box {
    display: flex;
    flex-wrap: wrap;
  }

  .footer_left {
    width: 100%;
    text-align: center;
  }
  .footer_left img {
    width: 80%;
    height: auto;
  }

  .footer_right {
    width: 100%;
    text-align: center;
  }
  .footer_right .copyright {
    padding: 16px 0 0;
  }

  .footer_link {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    height: auto;
    padding: 16px 0;
  }
  .footer_link li {
    padding: 0;
    font-size: 1.6rem;
    width: 26%;
    text-align: center;
  }
  .footer_link li a {
    width: 100%;
    font-size: 1.6rem;
  }
  .footer_link li:nth-child(4) {
    width: 10%;
  }
  .footer_link li:last-child {
    width: 100%;
    text-align: center;
    padding: 10px 0 0;
  }
}
/* max-width:896px */
/*****************************************************

 Page - Home
 
*****************************************************/
/* top_concept
----------------------------------------------------*/
.top_concept {
  box-sizing: border-box;
  padding: 13% 10%;
  background: url("../images/home/top_bg_concept.png") center bottom/cover no-repeat;
  min-height: 850px;
}

.top_concept_text {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 2;
}
.top_concept_text .top_concept_title {
  margin: 0 0 40px;
  font-size: 6rem;
}

/* SP */
@media screen and (max-width: 896px) {
  .top_concept {
    box-sizing: border-box;
    padding: 40px 4%;
    background: url("../images/home/top_bg_concept_sp.png") center bottom/cover no-repeat;
    min-height: 850px;
  }

  .top_concept_text {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.8;
  }
  .top_concept_text .top_concept_title {
    margin: 0 0 20px;
    font-size: 2.6rem;
    line-height: 1.4;
  }
}
/* max-width:896px */
/* top_works
----------------------------------------------------*/
.top_works {
  position: relative;
  padding: 80px 10%;
}

.top_work_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 40px 0;
}
.top_work_menu .top_works_character {
  position: absolute;
  top: 58px;
  right: 8%;
  z-index: 0;
}
.top_work_menu .top_works_character img {
  width: 85%;
  height: auto;
}
.top_work_menu .top_work_menu_list {
  position: relative;
  box-sizing: border-box;
  width: 18.5%;
  height: auto;
  padding: 24px;
  background-color: #fff;
  text-align: center;
  z-index: 1;
}
.top_work_menu .top_work_menu_list:hover {
  background-color: #ffe471;
  opacity: 1;
}
.top_work_menu .top_work_menu_list img {
  width: 100%;
  height: auto;
}

/* SP */
@media screen and (max-width: 896px) {
  .top_works {
    position: relative;
    padding: 40px 4%;
  }
  .top_works .top_works_character {
    position: absolute;
    bottom: 50px;
    right: 40px;
    width: 40%;
  }
  .top_works .top_works_character img {
    width: 100%;
  }

  .top_work_menu {
    flex-wrap: wrap;
    margin: 24px 0 0;
  }
  .top_work_menu .top_work_menu_list {
    position: relative;
    box-sizing: border-box;
    width: 48%;
    height: auto;
    padding: 10px;
    margin: 2% 0;
  }
  .top_work_menu .top_work_menu_list img {
    width: 100%;
    height: auto;
  }
}
/* max-width:896px */
/* top_other_contents
----------------------------------------------------*/
.top_other_contents {
  position: relative;
}
.top_other_contents .top_other_contents_box {
  display: flex;
  flex-wrap: wrap;
    /*.top_instagram {
      position: relative;
      box-sizing: border-box;
      width: 50%;
    }
    
    .top_map {
      position: relative;
      box-sizing: border-box;
      width: 50%;
      
      @media (max-width: 896px){
        .top_map_container {
          width: 100%;

          iframe {
            height: 300px;
          }
        }
      }
    }*/
}
.top_other_contents .top_other_contents_box .h2_title_w {
  position: absolute;
  bottom: 4%;
  left: 4%;
}
.top_other_contents .top_other_contents_box .top_about {
  position: relative;
  box-sizing: border-box;
  width: 50%;
  height: 450px;
  background: url("../images/home/top_about_bg.jpg") center center/cover no-repeat;
  border: 20px solid #869919;
  border-right: 10px solid #869919;
}
.top_other_contents .top_other_contents_box .top_recruit {
  position: relative;
  box-sizing: border-box;
  width: 50%;
  height: 450px;
  background: url("../images/home/top_recruit_bg.jpg") center center/cover no-repeat;
  border: 20px solid #869919;
  border-left: 10px solid #869919;
}

/* SP */
@media screen and (max-width: 896px) {
  .top_other_contents {
    position: relative;
  }
  .top_other_contents .top_other_contents_box {
    display: flex;
    flex-wrap: wrap;
      /*.top_instagram {
        position: relative;
        box-sizing: border-box;
        width: 100%;
      }

      .top_map {
        position: relative;
        box-sizing: border-box;
        width: 100%;

        @media (max-width: 896px){
          .top_map_container {
            width: 100%;

            iframe {
              height: 250px;
            }
          }
        }
      }*/
  }
  .top_other_contents .top_other_contents_box .h2_title_w {
    position: absolute;
    bottom: 4%;
    left: 4%;
  }
  .top_other_contents .top_other_contents_box .top_about {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 250px;
    background: url("../images/home/top_about_bg.jpg") center center/cover no-repeat;
    border: 10px solid #869919;
    border-bottom: 5px solid #869919;
  }
  .top_other_contents .top_other_contents_box .top_recruit {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 250px;
    background: url("../images/home/top_recruit_bg.jpg") center center/cover no-repeat;
    border: 10px solid #869919;
    border-top: 5px solid #869919;
  }
}
/* max-width:896px */
.top_sns {
  display: flex;
  align-items: stretch;
  /* --- Instagram --- */
  /* --- Map --- */
}
.top_sns > div {
  width: 50%;
}
.top_sns .top_instagram {
  /*padding-right: 10px;*/
  display: flex;
  flex-direction: column;
  padding-right: 0;
}
.top_sns .top_instagram #sb_instagram {
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}
.top_sns .top_instagram #sb_instagram .sb_instagram_header {
  display: none;
}
.top_sns .top_instagram #sb_instagram .sbi_images {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 !important;
}
.top_sns .top_instagram #sb_instagram .sbi_images .sbi_item {
  aspect-ratio: 1 / 1;
}
.top_sns .top_instagram #sb_instagram .sbi_images .sbi_item .sbi_photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_sns .top_instagram #sb_instagram #sbi_images {
  padding: 0px !important;
}
.top_sns .top_map {
  padding-left: 0;
  display: flex;
}
.top_sns .top_map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* SP */
@media screen and (max-width: 896px) {
  .top_sns {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    /* --- Map --- */
  }
  .top_sns > div {
    width: 100%;
  }
  .top_sns .top_map iframe {
    width: 100%;
    height: 300px;
    border: 0;
  }
}
/* max-width:896px */
/* top_contact
----------------------------------------------------*/
.top_contact {
  position: relative;
  padding: 80px 10%;
}
.top_contact .title_box {
  align-items: center;
}
.top_contact .phone {
  margin: 24px 0 0;
  font-family: "Bowlby One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6.0rem;
}
.top_contact .phone a {
  color: #333;
}
.top_contact .phone i {
  color: #869919;
}

/* SP */
@media screen and (max-width: 896px) {
  .top_contact {
    padding: 40px 4%;
  }
  .top_contact .title_box {
    align-items: flex-start;
  }
  .top_contact .phone {
    margin: 24px 0 0;
    font-size: 2.4rem;
  }
}
/* max-width:896px */
/*****************************************************

 Page - about
 
*****************************************************/
/* about_message
----------------------------------------------------*/
.about_message {
  position: relative;
  padding: 80px 10%;
  background: url("../images/about/bg_about_message.jpg") center/cover no-repeat fixed;
}
.about_message .message_box {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 40px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.5);
}

.photo_box {
  display: flex;
  width: 100%;
}
.photo_box figure {
  width: 25%;
  height: auto;
}
.photo_box figure img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* SP */
@media screen and (max-width: 896px) {
  .about_message {
    padding: 40px 4%;
  }
  .about_message .message_box {
    padding: 24px;
    border-radius: 20px;
  }

  .photo_box {
    flex-wrap: wrap;
  }
  .photo_box figure {
    width: 50%;
    height: auto;
  }
}
/* max-width:896px */
/* about_history_company
----------------------------------------------------*/
.about_history_company {
  position: relative;
  padding: 80px 10%;
  background: url("../images/about/bg_about_history.png") bottom right/cover no-repeat;
}

/* SP */
@media screen and (max-width: 896px) {
  .about_history_company {
    position: relative;
    padding: 40px 4%;
    background: url("../images/about/bg_about_history.png") bottom right/cover no-repeat;
    background-size: 360%;
  }
}
/* max-width:896px */
.about_history_flow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
.about_history_flow ul {
  padding: 0;
}
.about_history_flow li {
  list-style-type: none;
}
.about_history_flow dd {
  margin-left: 0;
}

/* SP */
@media screen and (max-width: 896px) {
  .about_history_flow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
  }
  .about_history_flow ul {
    padding: 0;
  }
  .about_history_flow li {
    list-style-type: none;
  }
  .about_history_flow dd {
    margin-left: 0;
  }
}
/* max-width:896px */
.flow {
  position: relative;
}
.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #fdb921;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 32px;
}
.flow > li dl {
  padding-left: 120px;
  position: relative;
  display: flex;
}
.flow > li dl::before {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #333;
  border-radius: 50%;
  left: -4px;
}
.flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
  width: 100px;
  border-bottom: 2px dashed #666;
  position: absolute;
  left: 5px;
}
.flow > li dl dt {
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

/* SP */
@media screen and (max-width: 896px) {
  .flow > li:not(:last-child) {
    margin-bottom: 16px;
  }
  .flow > li dl {
    padding-left: 30px;
    flex-wrap: wrap;
  }
  .flow > li dl::after {
    width: 20px;
  }
  .flow > li dl dt {
    font-size: 1.4rem;
    width: 100%;
    padding: 6px 0 0;
  }
  .flow > li dl dd {
    width: 100%;
  }
}
/* max-width:896px */
.about_company {
  margin: 160px 0 80px;
}

/* SP */
@media screen and (max-width: 896px) {
  .about_company {
    margin: 80px 0 400px;
  }
}
/* max-width:896px */
/*****************************************************

 Page - works
 
*****************************************************/
/* works共通レイアウト
----------------------------------------------------*/
.works_layout_bg {
  background: #b6d366;
  padding: 150px 10%;
  clip-path: polygon(0 0%, 100% 3%, 100% 97%, 0 100%);
}
.works_layout_bg .h2_title {
  font-size: 6rem;
}
.works_layout_bg .col_box {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.works_layout_bg .col_box .col_left {
  width: 48%;
  height: auto;
  margin: 0 7% 0 0;
}
.works_layout_bg .col_box .col_left:first-child {
  margin-top: 0;
}
.works_layout_bg .col_box .col_right {
  width: 45%;
  height: auto;
  margin: 0 0 0 0;
}
.works_layout_bg .col_box .col_right figure {
  width: 100%;
  height: auto;
}
.works_layout_bg .col_box .col_right img {
  width: 100%;
  height: auto;
  border: 20px solid #869919;
  box-sizing: border-box;
}
.works_layout_bg .col_box .col_right:first-child {
  margin-top: 0;
}

/* SP */
@media screen and (max-width: 896px) {
  .works_layout_bg {
    padding: 46px 4%;
    clip-path: polygon(0 0%, 100% 3%, 100% 97%, 0 100%);
  }
  .works_layout_bg .h2_title {
    font-size: 3.6rem;
  }
  .works_layout_bg .col_box .col_left {
    width: 100%;
    margin: 0;
  }
  .works_layout_bg .col_box .col_right {
    width: 100%;
    height: auto;
    margin: 24px 0 0 0;
  }
  .works_layout_bg .col_box .col_right img {
    border: 10px solid #869919;
  }
}
/* max-width:896px */
.works_layout {
  padding: 80px 10%;
}
.works_layout .h2_title {
  font-size: 6rem;
}
.works_layout .col_box {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.works_layout .col_box .col_left {
  width: 45%;
  height: auto;
  margin: 0 0 0 0;
}
.works_layout .col_box .col_left figure {
  width: 100%;
  height: auto;
}
.works_layout .col_box .col_left img {
  width: 100%;
  height: auto;
  border: 20px solid #869919;
  box-sizing: border-box;
}
.works_layout .col_box .col_left:first-child {
  margin-top: 0;
}
.works_layout .col_box .col_right {
  width: 46%;
  height: auto;
  margin: 0 0 0 9%;
}
.works_layout .col_box .col_right:first-child {
  margin-top: 0;
}

/* SP */
@media screen and (max-width: 896px) {
  .works_layout {
    padding: 24px 4%;
  }
  .works_layout .h2_title {
    font-size: 3.6rem;
  }
  .works_layout .col_box {
    flex-direction: column-reverse;
  }
  .works_layout .col_box .col_left {
    width: 100%;
    margin: 0;
  }
  .works_layout .col_box .col_left img {
    border: 10px solid #869919;
  }
  .works_layout .col_box .col_right {
    width: 100%;
    margin: 0 0 24px;
  }
}
/* max-width:896px */
/* worksメニュー部分
----------------------------------------------------*/
.works_menu_caption {
  margin-bottom: 60px;
  text-align: center;
}

/* works_roadside
----------------------------------------------------*/
.works_roadside_list {
  position: relative;
  width: auto;
  margin: auto;
}
.works_roadside_list:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border-left: 2px dashed #666;
  transform: translateX(-50%);
}
.works_roadside_list li {
  position: relative;
  width: 60%;
  height: auto;
  background: #FFF;
  border-radius: 30px;
  margin: 25px auto;
  padding: 4px 20px;
  text-align: center;
  font-weight: 900;
  font-size: 1.8rem;
}

/* works_character
----------------------------------------------------*/
.works_character01 {
  position: absolute;
  bottom: -65px;
  right: 29%;
  z-index: 0;
}
.works_character01 img {
  border: none;
}

.works_character02 {
  position: absolute;
  top: 315px;
  right: -5%;
  z-index: 0;
}
.works_character02 img {
  border: none;
}

/* SP */
@media screen and (max-width: 896px) {
  .works_character01 {
    position: absolute;
    width: 18%;
    bottom: 0%;
    right: 70%;
    z-index: 0;
  }
  .works_character01 img {
    width: 100%;
  }

  .works_character02 {
    position: absolute;
    width: 18%;
    top: 30%;
    right: 75%;
    z-index: 0;
  }
  .works_character02 img {
    width: 100%;
  }
}
/* max-width:896px */
/*****************************************************

 Page - recruit
 
*****************************************************/
/* recruit_message
----------------------------------------------------*/
.recruit_message {
  position: relative;
  padding: 80px 10%;
  text-align: center;
}
.recruit_message .recruit_title {
  margin: 0 0 40px;
  font-size: 6rem;
  font-weight: 900;
}
.recruit_message .recruit_character {
  position: absolute;
  bottom: -4px;
  right: 7%;
  z-index: 0;
}
.recruit_message .recruit_character img {
  width: 85%;
  height: auto;
}

/* SP */
@media screen and (max-width: 896px) {
  .recruit_message {
    padding: 40px 4% 0;
    text-align: left;
  }
  .recruit_message .recruit_title {
    margin: 0 0 24px;
    font-size: 3rem;
  }
  .recruit_message .recruit_character {
    position: relative;
    width: 50%;
    height: auto;
    bottom: -8px;
    left: 0;
    right: 0;
    margin: 16px auto 0;
  }
  .recruit_message .recruit_character img {
    width: 100%;
    height: auto;
  }
}
/* max-width:896px */
/* recruit_message
----------------------------------------------------*/
.recruit_job {
  position: relative;
  padding: 0 10%;
}
.recruit_job .recruit_job_box {
  position: relative;
  padding: 80px;
  border-radius: 40px;
  background-color: #fff;
}
.recruit_job .recruit_job_box .recruit_job_contact {
  margin: 40px 0 0;
  text-align: center;
}

/* SP */
@media screen and (max-width: 896px) {
  .recruit_job {
    position: relative;
    padding: 0 4%;
  }
  .recruit_job .recruit_job_box {
    margin: 0 0;
    padding: 24px;
    border-radius: 24px;
  }
  .recruit_job .recruit_job_box .recruit_job_contact {
    margin: 24px 0 0;
    text-align: left;
  }
}
/* max-width:896px */
