@charset "UTF-8";


main {
  font-family: "Shippori Antique B1", sans-serif;
  font-weight: 400;
  font-style: normal;
  

}

/* 一番下のロゴが表示されてしまうのを回避 */
main {
  background-color: #fff;
}

section {
/* overflow-x: hidden; */ /* AOS.js 右側余白回避 */
}




/*■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■*/
/*  共通使用                                                            */      
/*■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■*/

/* ------------------------------------------------------------- */
/* StyleSection _  .mask_wrap  テキストをベタ塗りで表示          */
/*  【 移動可能 】                                               */
/* ------------------------------------------------------------- */
.mask_wrap{
  display: table;
  overflow: hidden;
}
.mask-wrap .mask{
  display: table;
  position: relative;
  margin-bottom: .25em;
  left: -100%;
  overflow: hidden;
}
.mask-wrap .mask-bg{
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; 
}



/* ------------------------------------------------------------- */
/* StyleSection _ bottom info                                    */
/*  【 移動可能 】                                               */
/* ------------------------------------------------------------- */

/* ========== スクロースして最下部でアニメーション 表示 ========== */
#targetElement {
  opacity: 0;      /* 初期状態では非表示 */
  transition: opacity 2s ease-in-out;
}
#targetElement.show {
  opacity: 1;
}

footer#targetElement {
  z-index: -2;
  height: 75vh;
  position: fixed;
  bottom: 0;

  /*===== Footer 内表示 =====*/
  .blk1 {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .blk1_1 {
    position: absolute;
    top: 50%;
    left: 50%;
    
    width: 800px;
    height: 500px;
    margin: -250px 0 0 -400px; /* 完全に中央に配置するため wheig と htidth の margin を半分の負の数に設定 */
  }
}


@media screen and (min-width: 1051px) {
  /* スライドして背景だけが残る感じにするためのカバー */
  #footer-cover {
    height: 80vh;
    width: 100%;
    min-height: 980px;
  }
}

@media screen and (max-width: 1050px) {
  /* スライドして背景だけが残る感じにするためのカバー */
  #footer-cover {
    height: 70vh;
    width: 100%;
  }

  footer#targetElement {
    .blk1_1 {
      position: absolute;
      top: 50%;
      left: 50%;
    
      width: 400px;
      height: 300px;
      margin: -150px 0 0 -200px; /* 完全に中央に配置するため wheig と htidth の margin を半分の負の数に設定 */
   }
 }
}


/* ------------------------------------------------------------- */
/* StyleSection _ .marquee  TEXT LOOP                            */
/* ------------------------------------------------------------- */
.marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  
  width:100%;
  margin: 1px 0;
  border-top: 1px solid #21823F;
  border-bottom: 1px solid #21823F;

  .text {
    display: inline-block;
    padding-right: 0.5em;
    animation: marquee 20s linear infinite;
    
    color: #21823F;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1em;
  }
  
  .text2 {
    display: inline-block;
    padding-right: 0.5em;
    animation: marquee 20s linear infinite;
    
    color: #21823F;
    font-size: 5em;
    font-weight: 900;
    letter-spacing: 0.5em;
  } 
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/*■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■*/
/*  StyleSetting_ #portfolio                                            */      
/*■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■〓■*/

#portfolio {
  .sec_info1 , .sec_info2 , .sec_info3 {
    background-color: #fff;
  }
}


#portfolio .sec99 {
  position: relative;
  height: 380px;
  background: url(../images/ttl/portfolio_ttlbg_pc.webp) bottom center no-repeat;
  background-size: 100%;
}
#portfolio .sec99 h2 {
  font-size:1.5em;
}

@media screen and (max-width: 1050px) {
  #portfolio .sec99 {
    height: 480px;
    background: url(../images/ttl/portfolio_ttlbg_sp.webp) bottom center no-repeat;
    background-size: 100%;
    
  }
}


/* ////////// .flex_cont ////////// */
.flex_cont {
    display: flex;                   /* フレックスボックスで要素を横並びにする */
    justify-content: space-between;  /* 要素の間にスペースを均等に配置 */
    width: 100%;
    margin: 0 auto;                  /* コンテナを中央に配置 */
}

.flex_inner {
    display: flex;                   /* フレックスボックスで要素を横並びにする */
    justify-content: space-between;  /* 要素の間にスペースを均等に配置 */
    width: 100%;
    margin: 0 auto;                  /* コンテナを中央に配置 */
}

h3 span {
  color: #21823f;
  font-size:1em;
}


/* ////////// .sec_info1 ////////// */
.sec_info1 {
  .flex_cont {
    max-width: 1200px;
  }
  
  .blk1 {
    padding: 40px 0;
  }

  .left, .right {
    padding: 20px;
    text-align: center;
    box-sizing: border-box; /* パディングを含めたサイズを計算 */
    
    padding: 20px;
  }
  .left {
    width: 50%;

    h3 {
      font-size: 3em;
    }
    p {
      color: #21823f;
      font-size: 1.6em;
    }
    li {
      list-style: none;
      font-size: 1.2em;
      text-indent: 0.5em;
      margin-bottom: 12px;
    }
  }
  .right {
    width: 50%;
 
    img {
      margin-top:60px;
      width: 70%;
    }
  }
}


@media screen and (max-width: 1050px) {
  .sec_info1 {

    .flex_cont {
      display: block;
    }

    .blk1 {
      padding: 20px 0;
    }

    .left {
      width: 100%;

      h3 {
        font-size: 2.4em;
      }
      p {
        color: #21823f;
        font-size: 1.2em;
      }
      li {
        font-size: 1.2em;
        line-height:1.2em;
        margin-bottom: 12px;
      }
    }
    .right {
      width: 100%;
   
      img {
        margin-top: 0;
        width: 90%;
      }
    }
  }
}


/* ////////// .sec_info2 ////////// */
.sec_info2 {

  padding-top: 80px;
  background-color: #fff;

  text-align: center;

  .ttl1 {
    height:140px;
    margin: 0 auto;
    p {
      text-align:center;
      font-size:1.8em;
    }
    h3 {
      text-align:center;
      font-size:3em;
      letter-spacing:0.2em;
    }
  }

  .blk1 {
    padding: 20px 0;
    
    h4 {
      color: #21823f;
      border-bottom: solid 2px #ccc;
      font-size:1.8em;
      padding-top:30px;
      padding-bottom:20px;
      
      text-align:center;
    }
    p {
      padding:20px 0;
      font-size:1.3em;
      line-height:1.5em;
      text-indent: 0.5em;
    }
  }

}
@media screen and (min-width: 1051px) {
  .sec_info2 {
    .flex_cont {
      max-width: 1200px;
    }
    .left, .mid, .right {
      padding: 20px;
      text-align: center;
      box-sizing: border-box; /* パッティングを含めたサイズを計算 */
      
      padding:20px;
    }
    .left {
      width: 33.3%;
    }
    .mid {
      width: 33.3%;
     }
    .right {
      width: 33.3%;
    }
  }
}


@media screen and (max-width: 1050px) {
  .sec_info2 {
  
    .flex_cont {
      display:block;
    }

    .ttl1 {
      height:60px;
      p {
        font-size:1em;
      }
      h3 {
        font-size:2em;
        letter-spacing:0.3em;
      }
    }

    .flex_cont {
      max-width: 1200px;
    }
    
    .blk1 {
      margin-top:30px;
      
      img {
        width:100%;
      }
      
      h4 {
        text-align:center;
        font-size:1.4em;
        padding-top:12px;
        padding-bottom:20px;
        
        width:96%;
        margin: 0 auto;
      }
      p {
        padding:20px 0;
        font-size:1.4em;
        line-height:1em;
      }
    }
    .left, .mid, .right {
      text-align: center;
      padding-top:30px;
    }
    .left {
    }
    .mid {
     }
    .right {
      padding-bottom:30px;
    }
  }
}


/* ////////// .sec_info3 ////////// */
.sec_info3 {

  text-align:center;
  background-color:#fff;
  
  .ttl1 {
    height:140px;
    margin: 0 auto;
    p {
      text-align:center;
      font-size:1.8em;
    }
    h3 {
      text-align:center;
      font-size:3em;
      letter-spacing:0.2em;
    }
  }
  
  .blk1 {
    margin-top:40px;

  }

  /* Block 設定 */
  .blk1_l, .blk1_r, .blk2_l, .blk2_r {
    background-color:#000;
  }
    

  /* 一番内側のブロック */
  .inner_blk {
    width:100%;
    height:200px;
    background-color:#fff;

    h4,p {
      margin-top:12px;
      width:100%;
      text-align:center;
      font-size:1.6em;
    }
  }
}


@media screen and (min-width: 1051px) {
  .sec_info3 {
    .flex_cont {
      max-width: 1200px;
    }
    
    .l_cont, .r_cont {
      width: 50%;
    }

    .l_inner, .r_inner {
      width: 50%;
      text-align: center;
      box-sizing: border-box; /* パディングを含めたサイズを計算 */
    }
 
    /* PC Innerのスペース調整 */
    .blk1_l, .blk1_r {
      padding-top:30px;
      padding-bottom:15px;
    }
    .blk2_l, .blk2_r {
      padding-top:15px;
      padding-bottom:30px;
    }
    
    /* PC 左右パッティング */
    .blk1_l,   .blk2_l {
      .l_inner {
        padding-left:30px;
        padding-right:15px;
      }
      .r_inner {
        padding-left:15px;
        padding-right:15px;
      }
    }
    .blk1_r, .blk2_r {
      .l_inner {
        padding-left:15px;
        padding-right:15px;
      }
      .r_inner {
        padding-left:15px;
        padding-right:30px;
      }
    }
  }
}

@media screen and (max-width: 1050px) {
  .sec_info3 {

    /* SP タイトル設定 */
    .ttl1 {
      height:60px;
      margin: 0 auto;
      p {
        font-size:1em;
      }
      h3 {
        font-size:2em;
        letter-spacing:0;
      }
    }

    .flex_cont {
      display:block;
      max-width: 1200px;
      }
      
    .blk1 {
    }

    /* 縦並びのスペース調整 */
    .blk1_l {
      padding-top:20px;
      padding-bottom:10px;
    }
    .blk1_r, .blk2_l{
      padding-top:10px;
      padding-bottom:10px;
    }
    .blk2_r {
      padding-top:10px;
      padding-bottom:20px;
    }


    .l_cont, .r_cont {
      width: 100%;
    }

    .l_inner, .r_inner {
      width: 50%;
      text-align: center;
      box-sizing: border-box; /* パディングを含めたサイズを計算 */
    }

    /* SP 左右のマージン設定 */
    .blk1_l, .blk1_r, .blk2_l, .blk2_r  {
      .l_inner {
        padding-left:6px;
        padding-right:0px;
      }
      .r_inner {
        padding-left:0px;
        padding-right:6px;
      }
    }

    /* inner内 SPレイアウト */
    .inner_blk {
      width:90%;
      height:120px;

      img {
        width:24%;
      }
      h4, p {
        margin-top:0;
        font-size: 1.2em;
      }
    }
  }
}

/* ////////// .sec_info4 ////////// */
.sec_info4 {

  padding-top: 60px;

  background-color:#fff;
  border-bottom: 1px solid #ccc;
  

  /* タイトル設定 */
  .ttl1 {
    height:140px;
    margin: 0 auto;
    p {
      text-align:center;
      font-size:1.8em;
    }
    h3 {
      text-align:center;
      font-size:3em;
      letter-spacing:0.2em;
    }
  }

  .blk1 {
    margin-top:20px;
    
    max-width:1200px;
    padding:40px 0;

    margin: 0 auto;
    
    h4 {
      text-align:center;
      font-size:1.6em;
    } 
    h5 {
      font-size:1em;
    }

    p.txt1 {
      text-align:center;
      font-size:1.4em;
    }
    
    .dmo_1 {
      width:100%;
      .img_cont {
        padding:30px 0;
        text-align: center;
        img{
         width:70%;
         border: 2px solid #ccc;
         box-shadow: 2px 2px 8px gray;
        }
      }
      
      .txt_cont {
        dl {
          margin: 0 auto;
          width:70%;
        }
        dt {
          font-size:1.3em;
        }
        dd {
          padding:0 30px;
          font-size:1.2em;
        }
      }
    }
    
    
    nav {
      display: flex;
      margin-top:60px;
    }
    ul {
     margin: 0 auto;
    }
    li{
      display: inline-block;
    }
    .btn2 {
      margin-left:60px;
    }
  }
}


@media screen and (max-width: 1050px) {
  .sec_info4 {
  

  
    /* SP タイトル設定 */
    .ttl1 {
      height:60px;
      p {
        font-size:1em;
      }
      h3 {
        font-size:2em;
      }
    }
    
    .blk1 {
    
      .btn2 {
        margin-left:12px;
      }

    .dmo_1 {
      width:100%;
      .img_cont {
        padding:30px 0;
        text-align: center;
        img{
         width:70%;
         border: 2px solid #ccc;
         box-shadow: 2px 2px 8px gray;
        }
      }
      
      .txt_cont {
        dl {
          margin: 0 auto;
          width:98%;
        }
        dt {
          font-size:1.3em;
        }
        dd {
          padding:0 30px;
          font-size:1.2em;
        }
      }
    }


    }
  }
}


/* ////////// .sec_info5 ////////// */
.sec_info5 {

  background-color: #fff;

  h3{
    margin-top:40px;
    font-size:3em;
    text-align:center;
    letter-spacing: 0.4em;
  }
  .blk1 {
    width:1140px;
    margin: 0 auto;   /* 水平方向の中央揃え */
    
    .txt1{
      font-size:1.2em;
      text-align:center;
    }
  }

  .blk2 {
    margin-top:40px;
  }

  table{
    border-collapse:collapse;
    margin:0 auto;
  }
  
  th , td {
    border-top:1px solid #666;
    padding:12px 30px 12px 30px;
  }
  th{
    font-size:1.4em;
    width:30%;
  }
  td{
    font-size:1.2em;
    width:70%;

  }
  tr:last-child td,
  tr:last-child th{
    border-bottom:1px solid #666;  
  }
}

@media screen and (max-width: 1050px) {
  .sec_info5 {

    h3{
      font-size:2em;
      letter-spacing: 0.015em;
    }
    .blk1 {
      width:100%;
      margin: 0 0; 
    }
    .blk2 {
      margin-top:40px;
    }

    table{
      margin: 0 0;
    }
    
    th , td {
      border-top:1px solid #666;
      padding:4px;
    }
    th{
      font-size:1.2em;
      width:28%;
    }
    td{
      font-size:1em;
      width:72%;
    }
  }

}




/* ------------------------------------------------------------- */
/* StyleSection _ button                                         */
/* ------------------------------------------------------------- */
button {
  background:#1AAB8A;
  color:#fff;
  border:none;
  position:relative;
  padding:0 2em;
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
  
  width:400px;
  height:80px;
  font-size:1.6em;
}
button:hover{
  background:#fff;
  color:#1AAB8A;
}
button:before,button:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #1AAB8A;
  transition:400ms ease all;
}
button:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
button:hover:before,button:hover:after{
  width:100%;
  transition:800ms ease all;
}
@media screen and (max-width: 1050px) {

  button{
    height:60px;
    font-size:1.2em;
    width:100%;
  }
}



/* ------------------------------------------------------------- */
/* StyleSection _ .mid3 ( 共通設定 )                             */
/* ------------------------------------------------------------- */
.mid3 {
  position: relative;
  
  height:800px;
  width:100%;
  background-color:#0D220D; 

   .blk1 {
    position: relative;

    width: 92%;
    height: 80%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);

    border-radius: 50px 50px 0 0; 
    background-color: #fff;
  }

  .blk2 {
    h3 {
      text-align: center;
      padding: 20px 100px;
      font-size: 2.6em;
    }
    p {
      text-align: center;
      padding: 0 150px;
      font-size: 1.6em;
    }
  }
  
  .marquee {
    position: absolute;
    bottom: 10px;
  }
}

@media screen and (max-width: 780px) {
  .mid3 {
    .blk2 {
      h3 {
        margin-top: 50px;
        padding: 0 8px;
        font-size: 2em;
      }
      p {
        margin-top: 40px;
        padding: 0 15px;
        font-size: 1.4em;
      }
    }
  }

}





