@charset "utf-8";
/* CSS Document */
*, ::before, ::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  z-index: 0;
  font-feature-settings: "pkna"1;
  overflow-x: hidden;
}
a {
  text-decoration: none;
    transition : .6s;
}
a:hover {
  opacity: .6;
    transition : .6s;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: "palt";
  line-height: 1.65;
}
p {
  margin-bottom: 0;
}
pre {
  margin-bottom: 0;
}
dl {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
ol {
  margin-bottom: 0;
  list-style: decimal;
  padding-left: 1em;
}
img {
  max-width: 100%;
}
/*-----------------------------------------------------------------

ハンバーガーメニュー

-----------------------------------------------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #000000;
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.6rem;
    border-bottom: 1px solid #FFFFFF;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 45%;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("images/mv01.png");
}

.slider-item02 {
    background:url("images/mv02.png");
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
    display: none;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  position: relative;
  z-index: 3;
    text-align:center;
  margin:-50px 0 0 0;/*ドットの位置*/
}

.slick-dots li {
    display: none;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#fff;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/***********************************
フェードイン
************************************/
.fadeInUpTrigger,
.fadeInDownTrigger,
.fadeInUpTriggerOnce{
    opacity:0;
}

/*--------------------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  background: #000000;
  width: 100%;
  height: 120px;
  z-index: 99;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  padding: 0 0 0 2vw;
}
.header_r {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l_inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.h_logo {
  display: flex;
  justify-content: flex-end;
  gap: 3vw;
  width: 100%;
  padding: 1rem;
  align-items: center;
}
.gnav ul {
  display: flex;
  justify-content: space-between;
  gap: 3vw;
  padding: 1rem 0;
}
.gnav li {
  color: #57aa52;
  font-size: max(0.9vw, 1.6rem);
  font-weight: 700;
  width: calc(100% / 5);
  white-space: nowrap;
}
.contact_btn {
  background: #57aa52;
  color: #FFFFFF;
  font-size: max(0.9vw, 1.6rem);
  text-align: center;
  width: 16rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3vw;
  padding: 4.8rem 0;
}
.contact_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contact_btn2 {
  color: #FFFFFF;
  font-size: max(1vw, 1.8rem);
  text-align: center;
  font-weight: 700;
  padding: 3% 1%;
}
.contact_btn2 a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #57aa52;
  padding: 1.5rem 3rem;
  border-radius: 30px;
  max-width: 350px;
  margin: 0 auto;
}
.mv {
  margin-top: 120px;
}
section {
  padding: 3% 0;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.item {
  width: calc(100% / 3);
  position: relative;
}
.item p {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  font-size: max(1.2vw, 1.8rem);
  font-weight: 600;
  color: #57aa52;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.gallery {
  width: calc(100% / 5);
}
.mt5 {
  margin-top: 5%;
}
.flow {
  background: #3c3f48;
  position: relative;
  padding: 3% 0 0 5vw;
}
.flow_txt {
  position: absolute;
  left: 3rem;
  top: 15rem;
}
.flow_ttl {
  padding-left: 10rem;
  font-size: max(1.2vw, 1.8rem);
  color: #57aa52;
  margin-bottom: 3%;
  font-weight: 600;
}
.flow_ttl2 {
  padding-left: 10rem;
  font-size: max(2vw, 2rem);
  color: #57aa52;
  margin-bottom: 3%;
  font-weight: 600;
    text-align: center;
}
.flow_inner {
  background: #000000;
  padding: 3vw;
  margin-left: auto;
  max-width: calc(100% - 20rem);
}
.flow_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3%;
  gap: 5rem;
}
.flow_img {
  max-width: calc(100% / 4 - 3rem);
  position: relative;
  color: #57aa52;
}
.flow_img p {
  font-size: max(0.9vw, 1.6rem);
  text-align: center;
  padding: 1vw;
  font-weight: 600;
}
.flow_img::before {
  content: "▶";
  position: absolute;
  right: -2.6vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem
}
.flow_img:last-child::before {
  display: none;
}
.btn {
  text-align: center;
  color: #FFFFFF;
  font-size: max(1vw, 1.6rem);
  margin: 3rem auto;
}
.btn a {
  border: solid 1px #FFFFFF;
  border-radius: 30px;
  padding: 1rem 5rem;
}
.info_inner {
  max-width: calc(1600px + 6%);
  padding: 0 3%;
  margin: 0 auto;
}
.flex-2 {
  width: 48%;
  padding: 1%;
}
.alc {
  align-items: center;
}
.info_list {
  padding-bottom: 3%;
}
.info_list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #57aa52;
  font-size: max(0.9vw, 1.6rem);
}
.info_list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.info_list dt {
  width: 20%;
}
.info_list dd {
  width: 75%;
}
.green a {
  border: solid 1px #57aa52 !important;
  color: #57aa52 !important
}
#footer {
  background: #000000;
  padding: 3% 0 0;
}
.footer_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14vw;
  padding: 0 3% 3%;
}
.f_logo {
  max-width: 28%;
}
.f_logo p {
  padding: 1rem 0;
  font-size: max(0.6vw, 1.4rem);
  color: #FFFFFF;
  text-align: center;
}
.footer_content {
  max-width: 68%;
}
.f_icon {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.copy {
  padding: 2rem 0;
  text-align: center;
  font-size: 1.6rem;
  color: #FFFFFF;
  background: #57aa52;
}
#form p
{
    font-size: max(0.9vw , 1.6rem);
    margin-bottom: 5%;
    line-height: 2;
}
.tc
{
    text-align: center;
}
.tel
{
    font-size: max(2vw , 2rem);
    color: #57aa52;
    margin-bottom: 5%;
    font-weight: 700;
}
.red
{
    color: #FF0000;
}
/*--------------------------------------------------------------------------

下層ページ

--------------------------------------------------------------------------*/
.h2_ttl_flow
{
    background: url("images/h2_ttl_flow.png") no-repeat center / cover;
    padding: max(12vw , 8rem) 0 max(12vw , 8rem);
    font-size: max(3vw , 3rem);
    text-align: center;
    color: #57aa52;
    font-weight: 700;
    margin-top: 120px;
}
.h2_ttl_works
{
    background: url("images/h2_ttl_flow.png") no-repeat center / cover;
    padding: max(12vw , 8rem) 0 max(12vw , 8rem);
    font-size: max(3vw , 3rem);
    text-align: center;
    color: #57aa52;
    font-weight: 700;
    margin-top: 120px;
}
.h2_ttl_company
{
    background: url("images/h2_ttl_company.png") no-repeat center / cover;
    padding: max(12vw , 8rem) 0 max(12vw , 8rem);
    font-size: max(3vw , 3rem);
    text-align: center;
    color: #57aa52;
    font-weight: 700;
    margin-top: 120px;
}
.flow_wrap
{
    border: 1px solid #57aa52;
    padding: 3%;
    max-width: 80%;
    margin: 0 auto 6rem;
    position: relative;
    color: #FFFFFF;
}
.flow_wrap::before
{
    content: "▼";
    font-size: 3rem;
    color: #57aa52;
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
}
.flow_wrap:last-child::before
{
    display: none;
}
.flow_wrap_ttl
{
    background: url("images/flow_ttl_bg.png") no-repeat center / contain;
    font-size: max(1.2vw , 2rem);
    font-weight: 700;
    padding: 2rem 0;
    margin-bottom: 3%;
    text-align: center;
}
.flow_wrap p
{
    font-size: max(0.9vw , 1.6rem);
}
.flex-2_txt
{
    width: 58%;
}
.flex-2_img
{
    width: 38%;
}
.h3_ttl {
  font-size: max(2vw, 2rem);
  color: #57aa52;
  margin-bottom: 5%;
  font-weight: 600;
    text-align: center;
}
.wrap
{
    max-width: calc(1200px + 6%);
    margin: 0 auto;
    padding: 3%;
}
.qu
{
    font-size: max(1vw , 1.8rem);
    font-weight: 600;
    margin-bottom: 5%;
    color: #57aa52;
}
.an
{
    color: #FFFFFF;
    font-size: max(1vw , 1.8rem);
    padding-bottom: 5%;
    margin-bottom: 5%;
    border-bottom: 1px solid #57aa52;
}
.faq
{
    background: #3c3f48;
}
/*********************************
問い合わせフォーム
***********************************/
.box_con06 {
  max-width: 900px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .box_con06 {
    width: 95%;
  }
}
.box_con06 form {
  width: 100%;
}
.box_con06 form ul {
  width: 100%;
}
.box_con06 form ul li {
  position: relative;
  overflow: hidden;
  margin: .5em 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  .box_con06 form ul li {
    display: -webkit-flex;
    display: flex;
  }
}
@media print {
  .box_con06 form ul li {
    display: -webkit-flex;
    display: flex;
  }
}
.ie8 .box_con06 form ul li {
  display: -webkit-flex;
  display: flex;
}
.box_con06 form ul li .title {
  position: relative;
  width: 30%;
  font-weight: normal;
  padding: 1em;
  position: relative;
  color: #1c2e53;
}
@media only screen and (min-width: 769px) {
  .box_con06 form ul li .title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 3px solid #1c2e53;
  }
}
@media print {
  .box_con06 form ul li .title {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border-bottom: 3px solid #1c2e53;
  }
}
.ie8 .box_con06 form ul li .title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 3px solid #1c2e53;
}
@media only screen and (max-width: 768px) {
  .box_con06 form ul li .title {
    text-align: center;
    width: 100%;
    display: block;
    padding: .8em .2em;
    color: #fff;
    background: #57aa52;
  }
}
.box_con06 form ul li .title em {
  position: relative;
  z-index: 1;
    font-weight: 700;
}
.box_con06 form ul li .title span {
  background: #cd6f55;
  padding: 0 .3em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con06 form ul li .box_det {
  width: 70%;
  position: relative;
  padding: 1em;
  border-bottom: 3px solid #d7d7d7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    font-size: max(0.9vw , 1.6rem);
}
@media only screen and (max-width: 768px) {
  .box_con06 form ul li .box_det {
    padding: 1.5em .5em;
    display: block;
    width: 100%;
  }
}
.box_con06 form ul li .box_br {
  display: block;
}
.box_con06 form ul li select, .box_con06 form ul li textarea, .box_con06 form ul li .wide {
  width: 100%;
  height: 3em;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    background: #ececec;
}
.box_con06 form ul li textarea {
  height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 150%;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}

.box_check {
  text-align: center;
  margin: 1em auto;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: .3em;
}

.btn {
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #57aa52;
  padding: .5em 4em;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.box_con06 .formTable p
{
    margin-bottom: 0!important;
}
address,caption,cite,code,dfn,em,strong,th,var {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,th {
  text-align: left;
}
q:before,q:after {
  content: '';
}
object,embed {
  vertical-align: top;
}
hr,legend {
  display: none;
}
h1,h2,h3,h4,h5,h6 {
  font-size: 100%;
}
img,abbr,acronym,fieldset {
  border: 0;
}
li {
  list-style-type: none;
}
sup {
  vertical-align: super;
  font-size: 0.5em;
}
img {
  vertical-align: top;
}
i {
  font-style: normal;
}
.works .wrap
{
    max-width: 1648px;
    margin: 0 auto;
}
.worksflex-2
{
    width: 50%
}
.works .flex
{
    margin-bottom: 5%;
}
.worksflex-3
{
    width: calc(100% / 3);
}

/*--------------------------------------------------------------------------

PC

--------------------------------------------------------------------------*/
@media only screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
  .tab-only {
    display: none !important;
  }
    .tab-sp-only
    {
        display: none;
    }
}
/*--------------------------------------------------------------------------

tablet

--------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: none !important;
  }
    .h_logo {
  margin-right: 120px;
}
    .flow_img::before {
  right: -5vw;
  top: 45%;
}
    .mv {
  margin-top: 70px;
      height: 50vh;
}
    .slider-item {
    width: 100%;
    height:50vh;
}
    .h2_ttl_flow
{
    margin-top: 70px;
}
.h2_ttl_works
{
    margin-top: 70px;
}
.h2_ttl_company
{
    margin-top: 70px;
}
}
/*--------------------------------------------------------------------------

sp

--------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .pc-tab-only {
    display: none !important;
  }
  .tab-only {
    display: none !important;
  }
    
    #header {
  height: 70px;
       
}
    .mv {
  margin-top: 70px;
      height: 50vh;
}
    .slider-item {
    width: 100%;
    height:50vh;
}
    .slider-item01 {
    background:url("images/sp_mv01.png");
}

.slider-item02 {
    background:url("images/sp_mv02.png");
}
    
    .logo {
  width: 57%;
}
    .h_logo {
  gap: 6vw;
  width: 60%;
  padding: 1rem;
  align-items: center;
  margin-right: 60px;
}
  .item {
    width: 90%;
    margin: 3% auto;
  }
  .gallery {
    width: 80%;
    flex-shrink: 0;
  }
  .box {
    overflow-x: scroll;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    margin-bottom: 30px;
    scrollbar-color: #57aa52 #c8c8c8;
    scrollbar-width: thin;
  }
  .gallery_section .flex {
    flex-wrap: nowrap;
  }
  .flow_ttl {
    padding-left: 4rem;
    margin-top: 8rem;
    margin-bottom: 10rem;
  }
  .flow_txt {
    left: 3rem;
    top: 4rem;
  }
  .flow_inner {
    max-width: calc(100% - 3rem);
    padding: 3rem;
  }
  .flow_flex {
    flex-wrap: wrap;
      margin-top: -6rem;
  }
  .flow_img::before {
    content: "▼";
    position: absolute;
    right: 45%;
    top: auto;
    bottom: -4rem;
    transform: translateY(0%);
    font-size: 3rem;
  }
    .flow_img {
  max-width: 100%;
}
    .flex-2 {
  width: 100%;
  padding: 3% 0;
}
    .info_list dt {
  width: 100%;
}
    .info_list dd {
  width: 100%;
}
    .f_logo {
  max-width: 54%;
}
    #footer {
  background: #000000;
  padding: 6% 0 0;
}
    .flex-2_img {
  width: 100%;
        padding: 1rem;
}
    .flex-2_txt {
  width: 100%;
        padding: 1rem;
}
    .flow_ttl2 {
  padding-left: 0rem;

}
    .flow_wrap {
  max-width: 100%;
}
    .sp100
    {
        width: 100%!important;
    }
    .h2_ttl_flow
{
    margin-top: 70px;
}
.h2_ttl_works
{
    margin-top: 70px;
}
.h2_ttl_company
{
    margin-top: 70px;
}
}