@charset "UTF-8";

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
button,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

main,
article,
aside,
figure,
figcaption,
footer,
header,
nav,
section {
  display: block;
}

main {
  font-family: "Helvetica Neue", "Helvetica", Arial, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

html {
  font-size: 100%;
}

body {
  background-color: #fff;
  color: #000;
}

a {
  color: #000;
  text-decoration: none;
  display: block;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

._margin_top-100 {
  margin-top: 60px !important;
}

@media screen and (min-width: 768px) {
  ._margin_top-100 {
    margin-top: 100px !important;
  }
}

._margin_top-60 {
  margin-top: 40px !important;
}

@media screen and (min-width: 768px) {
  ._margin_top-60 {
    margin-top: 60px !important;
  }
}

._margin_top-40 {
  margin-top: 25px !important;
}

@media screen and (min-width: 768px) {
  ._margin_top-40 {
    margin-top: 40px !important;
  }
}

._margin_top-20 {
  margin-top: 15px !important;
}

@media screen and (min-width: 768px) {
  ._margin_top-20 {
    margin-top: 20px !important;
  }
}

._margin_top-10 {
  margin-top: 10px !important;
}
._margin_top-0 {
  margin-top: 0 !important;
}

@media screen and (min-width: 768px) {
  ._margin_top-10 {
    margin-top: 10px !important;
  }
}

._margin_bottom-100 {
  margin-bottom: 60px !important;
}

@media screen and (min-width: 768px) {
  ._margin_bottom-100 {
    margin-bottom: 100px !important;
  }
}

._margin_bottom-60 {
  margin-bottom: 40px !important;
}

@media screen and (min-width: 768px) {
  ._margin_bottom-60 {
    margin-bottom: 60px !important;
  }
}

._margin_bottom-40 {
  margin-bottom: 25px !important;
}

@media screen and (min-width: 768px) {
  ._margin_bottom-40 {
    margin-bottom: 40px !important;
  }
}

._margin_bottom-20 {
  margin-bottom: 15px !important;
}

@media screen and (min-width: 768px) {
  ._margin_bottom-20 {
    margin-bottom: 20px !important;
  }
}

._margin_bottom-10 {
  margin-bottom: 10px !important;
}

@media screen and (min-width: 768px) {
  ._margin_bottom-10 {
    margin-bottom: 10px !important;
  }
}

._margin_bottom-0 {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 768px) {
  ._margin_bottom-0 {
    margin-bottom: 0 !important;
  }
}

.only_sp {
  display: block !important;
}

.only_pc {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .only_pc {
    display: block !important;
  }

  .only_sp {
    display: none !important;
  }
}

._text_align-center {
  text-align: center;
}

._text_align-left {
  text-align: left;
}

._text_align-right {
  text-align: right;
}

._font_weight-bold {
  font-weight: bold;
}

.list_disc {
  padding-left: 1.5rem;;
}

.list_disc li {
  list-style-type: disc;
}

.list_number {
  padding-left: 1.5rem;;
}

.list_number li {
  list-style-type: decimal;
}

/* header */
.header {
  width: 100%;
  position: fixed;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
}

.header_inner {
  position: relative;
  display: -webkit-flex;
  display: flex;
}

.header_logo {
  max-width: 180px;
  margin: 18px;
}

@media screen and (min-width: 768px) {
  .header_logo {
    max-width: 250px;
    margin: 20px;
  }
}

.header_menu_pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .header_menu_pc {
    margin-left: auto;
    display: block;
    width: 600px;
  }
}

.header_menu_pc_list {
  display: -webkit-flex;
  display: flex;
}

@media screen and (min-width: 768px) {
  .header_menu_pc_list {
    margin: 15px 0;
    padding: 0;
  }

  .header_menu_pc_list li {
    position: relative;
    line-height: 50px;
    font-size: 1.1rem;
    text-align: center;
    border-left: 2px solid #e2e2e2;
    flex: 1;
  }

  .header_menu_pc_list li:first-child {
    border-left: none;
  }

  .header_menu_pc_list li a:after {
    position: absolute;
    bottom: 1px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #2166c3;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
  }

  .header_menu_pc_list li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

/* ハンバーガーボタン　*/
@media screen and (min-width: 768px) {
  .header_menu_sp {
    display: none;
  }
}

.hamburger {
  display: block;
  position: absolute;
  z-index: 101;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.header_menu_sp {
  display: none;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
}

nav.header_menu_sp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  margin-bottom: 40px;
}

nav.header_menu_sp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}

nav.header_menu_sp ul li:last-child {
  padding-bottom: 0;
}

nav.header_menu_sp ul li:hover {
  background: #ddd;
}

nav.header_menu_sp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  font-size: 1.4rem;

  text-decoration: none;
}

.header_menu_sp_contact {
  margin: 0 auto;
  width: 50%;
  max-width: 350px;
  transition: .4s all;
  margin-bottom: 20px;
  background: #fd7e00;
  border-radius: 0.5rem;
}

.header_menu_sp_contact:hover {
  background: #ff9c38;
}

.header_menu_sp_contact a span:after {
  content: "\f0e0";
  font-family: Fontawesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
}

.header_menu_sp_tel {
  margin: 0 auto;
  width: 50%;
  max-width: 350px;
  transition: .4s all;
  margin-bottom: 20px;
  background: #008cff;
  border-radius: 0.5rem;
}

.header_menu_sp_tel:hover {
  background: #3ea8ff;
}

.header_menu_sp_tel a span:after {
  content: "\f095";
  font-family: Fontawesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
}

.header_menu_sp_contact a {
  color: #fff;
  font-size: 1.2rem;
  padding: 15px 30px;
}

.header_menu_sp_tel a {
  color: #fff;
  font-size: 1rem;
  padding: 18px 10px;
}

nav.header_menu_sp.active {
  display: block;
}

/* ハンバーガーボタンここまで　*/

/* footer */
footer {
  background-color: #1D2B3B;
  color: #fff;
}

footer a {
  color: #fff;
}

.footer_wrap {
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .footer_info {
    display: flex;
  }
}

.footer_logo_wrapper {
  display: flex;
  justify-content: space-around;
}

@media screen and (min-width: 768px) {
  .footer_logo_wrapper {
    width: 50%;
    padding: 20px 0;
  }
}

.footer_logo {
  max-width: 160px;
  text-align: center;
}

.banner_yt {
  display: inline-block;
  max-width: 60px;
  margin-top: 30px;
}

.footer_address {
  font-size: 0.8rem;
  padding-left: 10px;
  line-height: 2rem;
}

.footer_address_tel {
  display: flex;
}

.footer_menu {
  display: none;
  font-size: 1rem;
  line-height: 1.7rem;
}

@media screen and (min-width: 768px) {
  .footer_menu {
    display: flex;
    width: 50%;
    padding: 20px 0;
  }

  .footer_menu_list {
    width: 50%;
    text-align: center;
  }

  .footer_menu_list li {
    padding: 5px 0;
  }
}

.copy_right {
  margin-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1rem;
}

/* footer ここまで */

/* TOP body */
.main_visual {
  position: relative;
  min-height: 400px;
}

.main_visual_text {
  position: absolute;
  top: 35%;
  left: 25%;
  z-index: 2;
  color: #fff;
  text-shadow: #000 1px 1px;
}

.main_visual_text p:first-child {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.main_visual_text p:nth-child(2) {
  font-size: 1rem;
  line-height: 1.8;
}

/* @media screen and (max-width: 1200px) { */
  .main_visual_text {
    top: 110px;
    left: 20px;
  }
/* } */

@media screen and (min-width: 1200px) {
  .main_visual_text {
    top: 120px;
    left: 30px;
  }

  .main_visual_text p:first-child {
    font-size: 2rem;
  }
  
  .main_visual_text p:nth-child(2) {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .main_visual .mv_sp {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .main_visual .mv_pc {
    display: none;
  }
  .main_visual_text {
    top: 110px;
    left: 20px;
  }

  .main_visual_text p:first-child {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .main_visual_text p:nth-child(2) {
    font-size: 1em;
  }
}

@media screen and (min-width: 768px) {
  .main_visual .mv_pc {
    display: block;
    width: 100%;
  }

  .main_visual .mv_sp {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .main_visual_text {
    top: 60px;
    left: 20px;
  }
}
.wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .wrapper {
    margin: 0 auto;
    /* max-width: 1200px; */
  }
}

.top_philosophy {
  padding: 20px;
  background: #2166c3;
  color: #fff;
  text-align: center;
}


.philosophy_wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

/* .top_philosophy h2 {
  font-size: 2rem;
  line-height: 1.3;
  padding-bottom: 20px;
}

.top_philosophy p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: bold;
  padding-bottom: 20px;
} */
.top_philosophy p {
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .top_philosophy p {
    font-size: 1.6rem;
  }
}
.top_philosophy p::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 80%;
  max-width: 600px;
  height: 3px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 3px;
}

.top_message {
  padding: 40px 20px;
  background-color: #F6F8FA;
}

@media screen and (min-width: 768px) {
  .top_message {
    padding: 60px;
  }
}

.top_message h2,
.top_company h2,
.top_recruit h2,
.top_news h2,
.top_works h2,
.top_contact h2 {
  font-size: 2rem;
  line-height: 0.8;
  font-weight: normal;
  padding-bottom: 20px;
  text-align: center;
}

.top_message h2 span,
.top_company h2 span,
.top_recruit h2 span,
.top_news h2 span,
.top_works h2 span,
.top_contact h2 span {
  font-size: 1rem;
}

.top_company h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: normal;
  text-align: center;
}

.message_wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

@media screen and (min-width: 768px) {
  .message_box {
    display: flex;
    align-items: stretch;
  }
}
.message_box .message_box_img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .message_box .message_box_img {
    width: 55%;
    margin: 0 -5% 0 0;
  }
}
.message_box .message_box_text {
  font-size: 1rem;
  line-height: 1.8;
  width: 80%;
  margin: -25px auto 0;
  padding: 10px;
  position: relative;
  background: #FFF;
  box-shadow: 0px 0px 4px gray;
}
.message_box .message_box_name {
  font-size: 1.1rem;
  display: block;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .message_box .message_box_text {
    width: 55%;
    text-align: left;
    margin: 5% 0 5% -5%;
    padding: 40px;
  }
}
.top_company {
  padding: 40px 20px;
}

@media screen and (min-width: 768px) {
  .top_company {
    padding: 60px;
  }
}

.company_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.top_company {
  position: relative;
  padding: 40px 20px;
  background: url(/img/top/bg_company.jpg) no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
}

.top_works {
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .top_works {
    padding: 60px 40px;
  }
}

.top_works {
  max-width: 1200px;
  margin: 0 auto;
}

.works-list {
  position: relative;
}

.works-list .works-list-item {
  margin: 0 5px;
  text-align: center;
}

.prev-arrow img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {  
  .slide-arrow {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {  
  .works-list {
    padding: 0 40px;
  }
  .slide-arrow {
    max-width: 32px;
    max-height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    border: 2px solid #13181E;
    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;
    font-weight: 700;
    background-color: transparent;
    -webkit-transition: 0.2s all ease-in-out;
    transition: 0.2s all ease-in-out;
    font-size: 22px;
    cursor: pointer;
  }
  .prev-arrow {
    position: absolute;
    top: 40%;
    left: 0;
  }
  .next-arrow {
    position: absolute;
    top: 40%;
    right: 0;
  }
}

.top_recruit {
  position: relative;
  padding: 40px 20px;
  background: url(/img/top/bg_recruit.jpg) no-repeat center bottom;
  background-size: cover;
}

.top_recruit::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}

.recruit_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  text-align: center;
  color: #FFF;
}

.recruit_subtitle {
  font-size: 1.5rem;
}

.recruit_text {
  font-size: 1rem;
}

.todetail_btn {
  margin-top: 30px;
}

.todetail_btn a {
  color: #fff;
  background-color: #2166c3;
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

.todetail_btn a span:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 3.5px solid transparent;
  border-width: 3.5px;
  border-left: 8px solid #fff;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.top_news {
  padding: 40px 15px;
  background-color: #F6F8FA;
}

@media screen and (min-width: 768px) {
  .top_news {
    padding: 60px;
  }
}

.news_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.top_contact {
  position: relative;
  padding: 40px 20px;
  background: url(/img/top/bg_contact.jpg) no-repeat center bottom;
  background-size: cover;
}

.top_contact::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  .top_contact {
    padding: 60px;
  }
}

.contact_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  text-align: center;
  color: #FFF;
}

.top_contact h2 {}

.contact_btn {
  margin: 20px;
}

.contact_btn a {
  color: #fff;
  background-color: #F9790C;
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

.contact_btn a span:before {
  content: "\f0e0";
  font-family: Fontawesome;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 15px;
}

.contact_btn a span:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 3.5px solid transparent;
  border-width: 3.5px;
  border-left: 8px solid #fff;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.contact_telephone {
  font-size: 1.75rem;
  margin-top: 10px;
}

.contact_telephone a {
  font-size: 1.75rem;
  line-height: 1.3;
  color: #fff;
  display: inline;
}

.contact_time {
  font-size: 0.8rem;
  line-height: 1.3;
}


/* TOP body ここまで */





.col_box_3_item {
  margin: 20px auto 0;
}

@media screen and (min-width: 768px) {
  .col_box_3 {
    width: 100%;
    display: -webkit-flex;
    display: flex;
  }

  .col_box_3_item {
    width: 33.3%;
    padding-right: 10px;
  }

  .col_box_3_item:nth-child(3n) {
    padding-right: 0;
  }
}

.col_box_sp3 {
  margin: 20px auto 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col_box_sp3_item {
  width: 31%;
  margin-top: 20px;
}

.col_box_sp3_item:nth-child(3n) {
  padding-right: 0;
}

.col_box_2 {
  width: 100%;
}

.col_box_2_item {
  margin: 20px auto 0;
}

@media screen and (min-width: 768px) {
  .col_box_2 {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
  }

  .col_box_2_item {
    width: 48%;
  }
}

.col_box_sp2 {
  margin: 20px auto 0;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col_box_sp2_item {
  width: 48%;
  margin-top: 20px;
}

.box_message {
  width: 100%;
}

.box_message::after {
  content: '';
  display: block;
  clear: both;
}

.box_message_pic {
  width: 30%;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.box_message_text {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .box_message {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
  }

  .box_message::after {
    content: none;
  }

  .box_message_pic {
    float: none;
  }

  .box_message_text {
    padding-left: 50px;
  }
}

/* article */
.article_contents {
  padding-top: 66px;
}

@media screen and (min-width: 768px) {
  .article_contents {
    padding-top: 80px;
  }
}

.article_mv {
  position: relative;
  width: 100%;
  height: 180px;
  background-image: url(/img/service/mv_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.article_mv_company {
  background-image: url(/img/company/mv_bg.jpg);
}
@media screen and (min-width: 900px) {
  .article_mv_company {
    background-color: #4e4e4e;
    background-image: url(/img/company/mv_bg.jpg);
    background-size: 900px;
  }
}

.article_title {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 768px) {
  .article_mv {
    height: 235px;
  }

  .article_title {
    font-size: 2.2rem;
    line-height: 0.8;
  }
}

.article_body {
  width: 95%;
  max-width: 1080px;
  min-height: 300px;
  margin: 50px auto;
}

.article_h2 {
  display: table;
  width: auto;
  margin: 30px auto 25px;
  padding: 0 0 10px;
  border-bottom: 1px solid #2166c3;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.article_h3 {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000;
  font-weight: bold;
  margin: 30px auto 15px;
}

.module_box {
  background-color: #EEF3F8;
  padding: 20px;
  margin-bottom: 40px;
}

.module_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.module_table tr th,
.module_table tr td {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px 15px;
}

.module_table tr th {
  background-color: #f2f2f2;
}

.module_map {
  width: 100%;
}

.link_btn_circle {
  position: relative;
}
.link_btn_circle a {
  display: block;
  background-color: #fff;
  overflow: hidden;
  border-radius: 100%;
  transition: .3s;
}
.link_btn_circle a:hover{
  background-color: #000;
  transition: .3s;
}
.link_btn_circle a img {
  border-radius: 50%;
  vertical-align: bottom;
}
.link_btn_circle a img:hover{
  opacity: 0.7;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: .3s;
}
.link_btn_circle a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}

.box_circle {
  position: relative;
}
.box_circle img {
  border-radius: 50%;
  vertical-align: bottom;
}
.box_circle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}
/* article ここまで */

/* 事業内容 ここから */
.service_message {
  position: relative;
  padding: 40px 20px;
  background: url(/img/recruit/bg_recruit.jpg) no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
}
.service_message::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
}
.service_message_title {
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 15px;
}
.service_message_title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 80%;
  max-width: 600px;
  height: 3px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 3px;
}
.service_message_text {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}
#service .col_box_3_item {
  width: 66%;
}
@media screen and (min-width: 768px) {
  #service .col_box_3_item {
    margin: auto 2%;
  }
}
.service_construction {
  background: #F6F6F6;
  padding: 14px;
}
/* 事業内容 ここまで */

/* 実績紹介 ここから */
.modaal-gallery-control {
  bottom: -60px!important;
}
/* 実績紹介 ここまで */

/* 採用情報 ここから */
.recruit_message {
  position: relative;
  padding: 40px 20px;
  background: url(/img/recruit/bg_recruit.jpg) no-repeat center bottom;
  background-size: cover;
  background-attachment: fixed;
}
.recruit_message::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.3;
}
.recruit_message_title {
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 15px;
}
.recruit_message_title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  display: inline-block;
  width: 80%;
  max-width: 600px;
  height: 3px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 3px;
}
.recruit_message_text {
  font-size: 1rem;
  line-height: 1.8;
  color: #fff;
  position: relative;
  z-index: 3;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}
/* 採用情報 ここまで */

/* FAQよくある質問 ここから */
.qa-list dl {
  position: relative;
  margin: 30px 0 0;
  cursor: pointer;
  border: 1px solid #DDD;
}

.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list dl::after {
  position: absolute;
  top: 27px;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.qa-list .open::after {
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  font-weight: bold;
  background: #DDD;
}

.qa-list dl dt::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  content: 'Q.';
  color: #3285bf;
}

.qa-list dl dd::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: 'A.';
  font-weight: bold;
  color: #3285bf;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .qa-list dl {
    margin: 10px 0 0;
  }

  .qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }

  .qa-list dl dt {
    padding: 16px 16px 16px 50px;
    font-size: 14px;
  }

  .qa-list dl dt::before {
    font-size: 14px;
    top: 20px;
    left: 20px;
  }

  .qa-list dl dd::before {
    font-size: 14px;
    left: 20px;
    margin-top: 5px;
  }

  .qa-list dl dd {
    margin: 0;
    padding: 16px 16px 16px 50px;
    font-size: 14px;
  }

  .qa-list dl dd p {
    margin: 30px 0 0;
  }

  .qa-list dl dd p:first-child {
    margin-top: 0;
  }
}
/* FAQよくある質問 ここまで */

/* お問い合わせフォーム */
.form_wrap {
  max-width: 800px;
  margin: 40px auto;
}
.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 30%;
  padding-top: 15px;
}

.cf7__list dt p {
  font-weight: bold;
}

.cf7__list dd {
  width: 70%;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
  font-weight: normal;
}

.cf7__required {
  background: #BE1D1D;
}

.cf7__optional {
  background: #878D8E;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  background: #F4F4F4;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: '';
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #F4F4F4;
  color: #a5a5a5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: '';
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  padding-left: 72px;
  text-align: center;
}

input[type="submit"] {
  width: 260px;
  height: 60px;
  background-color: #F9790C;
  color: #fff;
  border: 2px solid #F9790C;
  transition: opacity .6s;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50px;
}

input[type="submit"]:hover {
  background-color: #fff;
  color: #F9790C;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {

  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  input[type="submit"] {
    width: 180px;
    height: 56px;
  }

}

/* お問合せ ここまで */

/* 新着情報 ここから */
.news_tab .news_tab_list {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.news_tab .news_tab_list li:not(:last-child) {
  border-right: 2px solid #fff;
}

.news_tab .news_tab_list li span {
  display: block;
  background-color: #e8e8e8;
  font-weight: bold;
  color: #000;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
}

.news_tab .news_tab_list li.active span,.news_tab .news_tab_list li span:hover {
  background-color: #000;
  color: #e8e8e8;
}

.tab_contents_item {
  display: none;
}

.tab_contents_item.show {
  display: block;
}

.news_list {
  border: 4px solid #f2f2f2;
  background-color: #ffffff;
}

.news_list li {
  padding: 5px;
  margin: 5px 45px 5px 0;
  border-bottom: 2px solid #f2f2f2;
}

.news_list li:last-child {
  border-bottom: none;
}

.news_list_item a time.date {
  color: #000;
  font-size: 1.1rem;
  line-height: 1;
  display: inline-block;
  width: 140px;
}

.news_list_item a span.cat,.article-info .article-cat {
  background-color: #2166c3;
  color: #e8e8e8;
  padding: 8px 10px 4px;
  border-radius: 5px;
  font-size: 1.1rem;
  line-height: 1;
}

.news_list_item a span.title {
  color: #000;
  font-size: 1.1rem;
  line-height: 2;
  margin-left: 20px;
}

.article-main {
  border-top: 2px solid #666666;
  padding: 20px 0;
  border-bottom: 2px solid #666666;
}

.article-main p {
  margin-bottom: 30px;
}

.article-info {
  display: flex;
  justify-content: left;
  margin-bottom: 10px;
}

.article-info .article-cat {

}
.article-info .article-date {
  margin-left: 20px;
}

.article-main ul {
  margin-left: 1.5rem;
}

.article-main ul li {
  list-style: disc;
}

.article-main a {
  text-decoration: underline;
  color: canvastext;
}

blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}

blockquote:before{
  display: inline-block;
  position: absolute;
  top: 13px;
  left: 15px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #cfcfcf;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.nav-single ul {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}
/* 新着情報 ここまで */