@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: 500;
  text-align: left;
  color: #222222;
  word-break: break-word;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #222222;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

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

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

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

*, *:after, *:before {
  box-sizing: border-box;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  p, dt, dd, li, th, td,
  input, button, textarea, select {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 100rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
.l-wrap.-l {
  max-width: 121rem;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 3rem);
  }
}

.l-container {
  position: relative;
  overflow: hidden;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

/* ボタン
--------------------------------*/
.c-btn-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.c-btn-box .c-btn_link {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #53A552;
  border: 3px solid #53A552;
  background-color: #fff;
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.16);
  width: 40rem;
  height: 8.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn-box .c-btn_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-btn-box .c-btn_link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link {
    line-height: 1.5;
    width: 32.3rem;
    height: 6rem;
    font-size: 1.6rem;
    border: 1px solid #53A552;
  }
}
.c-btn-box .c-btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4rem;
  width: 1rem;
  height: 2rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #53A552;
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link::before {
    right: 1.5rem;
  }
}
.c-btn-box .c-btn_link span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link span {
    font-size: 1.4rem;
  }
}
.c-btn-box .c-btn_link.-green {
  background-color: #53A552;
  color: #fff;
}
.c-btn-box .c-btn_link.-green::before {
  background-color: #fff;
}
.c-btn-box .c-btn_link.-blue {
  border: 3px solid #133293;
  color: #133293;
}
.c-btn-box .c-btn_link.-blue::before {
  background-color: #133293;
}
.c-btn-box .c-btn_link.-blue02 {
  height: 7rem;
  background-color: #071956;
  border: none;
  color: #fff;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link.-blue02 {
    height: 5rem;
    font-size: 1.6rem;
  }
}
.c-btn-box .c-btn_link.-blue02::before {
  background-color: #fff;
  width: 0.8rem;
  height: 1.4rem;
  right: 2.2rem;
}
.c-btn-box .c-btn_link.-s {
  width: 28rem;
  height: 6rem;
  font-size: 1.8rem;
  border: 2px solid #53A552;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link.-s {
    width: 24rem;
    font-size: 1.6rem;
  }
}
.c-btn-box .c-btn_link.-s::before {
  width: 0.6rem;
  height: 1.2rem;
  right: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link.-s::before {
    right: 1rem;
  }
}
.c-btn-box .c-btn_link.-s span {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link.-s span {
    font-size: 1.2rem;
  }
}
.c-btn-box .c-btn_link.-l {
  width: 50rem;
  height: 7rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link.-l {
    width: 32.3rem;
    height: 5rem;
    padding-right: 1rem;
  }
}
.c-btn-box .c-btn_link.-l::before {
  right: 3rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box .c-btn_link.-l::before {
    right: 2.2rem;
    width: 0.7rem;
    height: 1.4rem;
  }
}

/* タイトル
--------------------------------*/
.c-secttl {
  text-align: center;
  color: #133293;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-secttl {
    font-size: 2rem;
  }
}
.c-secttl.-white {
  color: #fff;
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  padding: 2rem 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .is-fixed .l-header {
    background-color: transparent;
  }
}
.l-header .l-wrap {
  max-width: 116.6rem;
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header_left .logo {
  width: 19.8rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo {
    width: 13.2rem;
  }
}
.l-header_right {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.l-header_right .list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.l-header_right .list_item a {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .l-header_right .list_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header_right .list_item a:hover {
    opacity: 0.7;
  }
}
.l-header_right .list_item a.-blank {
  padding-right: 2rem;
  position: relative;
}
.l-header_right .list_item a.-blank::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: url(../img/common/icon_blank.svg) no-repeat center center/contain;
}
.l-header_right .c-btn-box {
  gap: 3rem;
}
.l-header_right .c-btn-box .c-btn_link {
  width: 32rem;
  height: 5.5rem;
  font-size: 1.8rem;
  letter-spacing: 0;
  padding-right: 2rem;
}
.l-header_right .c-btn-box .c-btn_link::before {
  right: 2rem;
  width: 0.7rem;
  height: 1.4rem;
}

.menu-trigger {
  width: 4rem;
  height: 2rem;
  position: fixed;
  top: 2.5rem;
  right: 1.6rem;
  z-index: 999999;
  cursor: pointer;
}
.menu-trigger span {
  background-color: #222222;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  border-radius: 0.3rem;
  transition: 0.3s;
}
.is-fixed .menu-trigger span {
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}
.menu-trigger span:nth-child(2) {
  top: 1rem;
}
.is-fixed .menu-trigger span:nth-child(2) {
  opacity: 0;
}
.menu-trigger span:nth-child(3) {
  top: 2rem;
}
.is-fixed .menu-trigger span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
}

.gnavi {
  padding: 10rem 0 6rem;
  background-color: #fff;
  width: 29rem;
  position: fixed;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 99999;
  transform: translateX(29rem);
  overflow-y: scroll;
  transition: 0.3s;
}
.is-fixed .gnavi {
  transform: translate(0);
}
.gnavi_inner .list_item {
  border-bottom: 1px solid #C3C3C3;
}
.gnavi_inner .list_item:nth-child(1) {
  border-top: 1px solid #C3C3C3;
}
.gnavi_inner .list_item a {
  text-align: center;
  display: block;
  padding: 1.5rem 0;
  font-size: 1.6rem;
}
.gnavi_inner .list_item a.-blank {
  position: relative;
}
.gnavi_inner .list_item a.-blank::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7.6rem;
  width: 1.1rem;
  height: 1.1rem;
  background: url(../img/common/icon_blank.svg) no-repeat center center/contain;
}
.gnavi_inner .c-btn-box {
  margin-top: 4.5rem;
}
.gnavi_inner .c-btn-box .c-btn_link.-s {
  font-size: 1.4rem;
  padding-right: 1rem;
  height: 5rem;
  letter-spacing: 0.1em;
  width: 25rem;
}
.gnavi_inner .logo {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 20rem;
}

.l-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 99;
  background-color: rgba(34, 34, 34, 0.5);
  opacity: 0;
  visibility: hidden;
}
.is-fixed .l-overlay {
  pointer-events: none;
  opacity: 1;
  visibility: visible;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  background-color: #191919;
  padding: 2rem 0;
}
.l-footer .l-wrap {
  max-width: 116rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer .l-wrap {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .l-wrap .copyright {
    margin-top: 1rem;
  }
}
.l-footer .l-wrap .copyright small {
  color: #fff;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer .l-wrap .copyright small {
    font-size: 1.1rem;
  }
}
.l-footer .l-wrap .link a {
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .l-footer .l-wrap .link a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .l-wrap .link a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .l-wrap .link a {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
.page-top {
  position: fixed;
  right: 5rem;
  bottom: 5rem;
  z-index: 99;
  width: 4rem;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.page-top.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .page-top {
    right: 2.6rem;
    bottom: 8.6rem;
    width: 3.2rem;
  }
}
.page-top a {
  display: block;
}
@media screen and (min-width: 768px) {
  .page-top a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .page-top a:hover {
    opacity: 0.7;
  }
}

/* 現場レポート
---------------------------------------------------------------------------- */
.c-news-list .list_item {
  border-bottom: 1px solid #C3C3C3;
}
.c-news-list .list_item a {
  display: flex;
  align-items: center;
  padding: 2rem 0 1.7rem;
}
@media screen and (min-width: 768px) {
  .c-news-list .list_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-news-list .list_item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-news-list .list_item a {
    display: block;
    padding: 1.5rem 0 1.3rem;
  }
}
.c-news-list .list_item_info {
  width: 32rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-news-list .list_item_info {
    width: 100%;
  }
}
.c-news-list .list_item_date {
  width: 11.5rem;
  color: #888888;
  font-weight: 600;
  padding-left: 0.3rem;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-news-list .list_item_date {
    font-size: 1.2rem;
    width: 8rem;
    padding-left: 0;
  }
}
.c-news-list .list_item_category {
  background-color: #4E9FAE;
  width: 17rem;
  height: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  border-radius: 0.2rem;
  font-weight: 700;
  padding-top: 0.1rem;
}
@media screen and (max-width: 767px) {
  .c-news-list .list_item_category {
    width: 14rem;
    font-size: 1.2rem;
  }
}
.c-news-list .list_item_category.-brown {
  background-color: #AE5D4E;
}
.c-news-list .list_item_ttl {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  line-height: 1.4;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-news-list .list_item_ttl {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

/* お問い合わせ
---------------------------------------------------------------------------- */
.p-cta {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-cta {
    padding: 4.5rem 0 8rem;
  }
}
.p-cta .txt {
  margin-top: 3rem;
  text-align: center;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-cta .txt {
    margin-top: 2rem;
  }
}
.p-cta .notes {
  font-size: 1.2rem;
  text-align: center;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #6F6F6F;
}
@media screen and (max-width: 767px) {
  .p-cta .notes {
    margin-top: 1rem;
  }
}
.p-cta .c-btn-box {
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-cta .c-btn-box {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta .c-btn-box .c-btn {
    width: calc(100% - 2rem);
  }
}
.p-cta .c-btn-box .c-btn_link {
  width: 40rem;
  height: 7rem;
  border: 2px solid #133293;
  letter-spacing: 0.1em;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-cta .c-btn-box .c-btn_link {
    width: 100%;
    height: 5rem;
    font-size: 1.6rem;
  }
}
.p-cta .c-btn-box .c-btn_link::before {
  width: 1.1rem;
  height: 1.1rem;
  right: 2rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/icon_blank.svg);
  background-color: #133293;
}

/* 下層 ページタイトル
---------------------------------------------------------------------------- */
.p-heading-01 .breadcrumb {
  background-color: #E8ECF5;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .breadcrumb {
    padding: 0;
  }
}
.p-heading-01 .breadcrumb .l-wrap {
  max-width: 116.6rem;
}
.p-heading-01 .breadcrumb .list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .breadcrumb .list {
    display: none;
  }
}
.p-heading-01 .breadcrumb .list_item {
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
.p-heading-01 .breadcrumb .list_item_link {
  margin-right: 3rem;
  color: #133293;
  text-decoration: underline;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-heading-01 .breadcrumb .list_item_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-heading-01 .breadcrumb .list_item_link:hover {
    opacity: 0.7;
  }
}
.p-heading-01 .breadcrumb .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -2rem;
  width: 0.9rem;
  height: 0.9rem;
  background: url(../img/common/arrow_right_02.svg) no-repeat center center/contain;
}
.p-heading-01 .ttl {
  background: url(../img/common/bg_heading.png) no-repeat center center/cover;
  height: 24rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .ttl {
    font-size: 2.5rem;
    height: 10rem;
    background: url(../img/common/bg_heading_sp.png) no-repeat center center/cover;
  }
}
.p-heading-01.-not .txt {
  margin-top: 4.5rem;
  text-align: center;
  font-size: 1.8rem;
  font-family: YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-heading-01.-not .txt {
    font-size: 1.4rem;
    text-align: left;
    margin-left: 2.6rem;
    margin-right: 2.6rem;
  }
}
.p-heading-01.-not .btn {
  margin: 3.2rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-heading-01.-not .btn {
    margin: 5.5rem 2.6rem 8rem;
  }
}
.p-heading-01.-not .btn_link {
  margin: 0 auto;
  width: 40rem;
  height: 8rem;
  background-color: #071956;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.16);
  letter-spacing: 0.1em;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-heading-01.-not .btn_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .p-heading-01.-not .btn_link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-heading-01.-not .btn_link {
    width: 100%;
    height: 5rem;
    font-size: 1.6rem;
  }
}
.p-heading-01.-not .btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4.2rem;
  width: 1.1rem;
  height: 2.1rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-heading-01.-not .btn_link::before {
    right: 2.2rem;
    width: 0.8rem;
    height: 1.5rem;
  }
}/*# sourceMappingURL=common.css.map */