@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #194fb1;
  --sub-color: #e7161a;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Montserrat", sans-serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

}
@media (min-width:1470px){

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

}
@media (min-width:1720px){

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


/* ******************************
   
   ****************************** */

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/
.header{
  /*  --logo-height: 30px;*/
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  /*  height: var(--logo-height);*/
  transition: 0.2s all;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

}
@media (max-width:767px){

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 100px;
  }
  .header{
    /*    --logo-height: 50px;*/

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
  }
  .hdr_outer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .hdr_contact_btn{
    width: 110px;
    display: block;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-en);
    line-height: 1;
    border: 1px solid transparent;
    padding: 26px 0;
  }
  .hdr_contact_btn p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0;
  }
  .hdr_contact_btn p:before{
    content: "";
    display: block;
    width: 31px;
    aspect-ratio:31 / 23;
    background-image: url(/system_panel/uploads/images/mail_wh.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-bottom: 10px;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
  }
  .hdr_contact_btn:hover p:before{
    background-image: url(/system_panel/uploads/images/mail_bl.png);
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 180px;*/
  }

  /* ヘッダースリム */
  .header.slim{
    background: #fff;

  }
  .header.slim .hdr_logo img{
    /*    height: calc(var(--logo-height) * 0.8);*/
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }


}
@media (min-width:1024px){

  .header{
    /*    --logo-height: 50px;*/
    padding-left: 57px;
  }

  /* ロゴ */
  .hdr_logo img{
    width: 200px;
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

  .hdr_contact_btn{
    margin-left: 20px;
  }

}
@media (min-width:1200px){

  .header{
    /*    --logo-height: 75px;*/
    padding-left: 30px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    /*width: 420px;*/

  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

}
@media (min-width:1440px){
  .header{
    /*    --logo-height: 50px;*/
    padding-left: 57px;
  }
  .hdr_logo img{
    /*width: 420px;*/
    width: auto;
  }
  .hdr_contact_btn{
    margin-left: 42px;
  }
}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}
.mv:after{
  content: "";
  display: block;
  width: 100%;
  height: 64.4%;
  background: #f2f2f2;
  position: absolute;
  left: 0;
  bottom: 0;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

.mv_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.mv_box1_tt{
  font-size: 24px;
  font-weight: 700;
  line-height: 1.83em;
}
.mv_box1_tt p{
  display: inline-block;
  position: relative;
  letter-spacing: 0;
}
.mv_box1_tt p:after{
  content: "";
  display: block;
  background: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 13px;
}
.mv_box1_desc{
  font-size: 18px;
  font-weight: 700;
  line-height: 2em;
  margin-top: 30px;
}
.mv_box2{
  width: 66.77%;
  margin-left: auto;
  margin-top: 30px;;
  z-index: 1;
}
.mv_img_items{

}
.mv_img_item{

}
.mv_img_item_img:before{

}
.mv .mv_box2 .swiper-slide{
  width: 250px!important;
}
.mv_pages{
  margin-top: 9px; 
}
.mv_pages .swiper-pagination{
  display: flex;
  align-items: flex-end;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  width: 80px;
  height: 6px;
  margin: 0 2px;
  border-radius: 0;
}

.mv_scroll{
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-en);
  height: 160px;
  position: absolute;
  left: 6.25%;
  bottom: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 1;
}
.mv_scroll:before{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-left: 2px dashed #000;
  position: absolute;
  left: 0;
  top: 0;
}
.mv_scroll p{
  letter-spacing: 0;
  padding-left: 8px;
}



/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

.mv .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  background: #b3b3b3;
  border-radius:0;
  width: 40px;
  height: 4px;
  border: none;
  margin-left: 0;
}
.mv .swiper-pagination-bullet{
  opacity: 1;
}
.mv .swiper-pagination-bullet-active{
  background: #194fb1!important;
}

@media (min-width:768px){

  /* MV */
  .mv{
    padding-top: 100px;
    padding-bottom: 100px;;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_box1{
    width: 60%;
    width: 45%;
    padding-left: 6.25%;
    padding-top: 50px;
  }
  .mv_box1_tt{
    font-size: 40px;
    font-size: 32px;
    line-height: 2em;
  }
  .mv_box1_tt p{

  }
  .mv_box1_desc{
    font-size: 20px;
    margin-top: 45px;
  }
  .mv_box2{
    width: 66.77%;
    width: 54.77%;
    margin-left: auto;
    margin-top: 30px;;
  }
  .mv_img_items{

  }
  .mv_img_item{

  }
  .mv_img_item_img:before{
    padding-top: 400px;
  }
  .mv .mv_box2 .swiper-slide{
    width: 400px!important;
  }

  mv .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 80px;
    height: 6px;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
    padding-bottom: 100px;;
  }

  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 600px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_box1{
    width: 33.17%;
  }
  .mv_box1_tt{
    font-size: 30px;
    line-height: 1.83em;
  }
  .mv_box1_tt p{

  }
  .mv_box1_tt p:after{
    bottom: 5px;
  }
  .mv_box1_desc{
    font-size: 18px;
  }
  .mv_box2{
    width: 66.77%;
    margin-top: 0;
  }
  .mv_img_items{

  }
  .mv_img_item{

  }
  .mv_img_item_img:before{
    padding-top: 600px;
  }
  .mv .mv_box2 .swiper-slide{
    width: 500px!important;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
    padding-bottom: 0;
  }
  .mv:before{
    content: "";
    display: block;
    padding-top: calc(100vh - 200px);
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

  .mv_box1{

  }
  .mv_box1_tt{
    font-size: 40px;
  }
  .mv_box1_tt p{

  }
  .mv_box1_tt p:after{
    bottom: 13px;
  }
  .mv_box1_desc{
    font-size: 20px;
  }
  .mv_box2{

  }
  .mv_img_items{

  }
  .mv_img_item{

  }
  .mv_img_item_img:before{
    padding-top: 650px;
  }
  .mv .mv_box2 .swiper-slide{
    width: 800px!important;
  }
}
@media (min-width:1440px){
  .mv_box1_tt{
    font-size: 40px;
  }
}
@media (min-width:1536px){
  .mv_box1_tt{
    font-size: 50px;
  }
}
@media (min-width:1720px){
  .mv_box1_tt{
    font-size: 60px;
  }
}

@media (max-width:1024px){
  .home_slide .simply-scroll{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .pg_ordermade .section.sec2:after{
    width: 54.86%;
    top: 18%;
  }
}
/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


}
@media (min-width:1024px){

}
@media (min-width:1200px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.pg_header_box{
  border-bottom: 1px solid #000;
  padding: 40px 0 20px;
}
.pg_header_txt1{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}
.pg_header_txt2{
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
  margin-top: 8px;
}


.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}




@media (min-width:768px){
  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_box{
    padding: 66px 0 40px;
  }
  .pg_header_txt1{
    font-size: 40px;
  }
  .pg_header_txt2{

  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_box{

  }
  .pg_header_txt1{
    font-size: 48px;
  }
  .pg_header_txt2{

  }

}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

}



/*******************************
*　フッター
********************************/

.footer{
  margin-top: 50px;
}

.ftr1{
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1{

}
.ftr1_box2{

}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}


.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #fff;
  padding: 12px 0;
  margin-top: 50px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid var(--main-color);
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_img{

}
.ftr_contact_img:before{
  padding-top: 303px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .home_contents5_tt_en{
  color: #fff;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 30px;
}
.ftr_contact_box2_inner{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tel{
  color: #fff;
}
.ftr_contact_box2_item_tel1{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-en);
  position: relative;
}
.ftr_contact_box2_item_tel1:before{
  content: "";
  display: block;
  width: 25px;
  aspect-ratio: 25 / 32;
  background-image: url(https://s-9831762.smooooth.jp/system_panel/uploads/images/phone.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}

.ftr_contact_box2_item_tel2{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.ftr_contact_box2_item{

}
.link_1{
  display: block;
  width: 100%;
  max-width: 380px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 15px 0;
}
.link_1 p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.link_1 p:before{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio: 27 / 20;
  background-image: url(/system_panel/uploads/images/mail_wh.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  margin-right: 7px;
  margin-right: 15px;
}
.link_1:hover{
  background: #fff;
  color: #000;
}
.link_1:hover p:before{
  background-image: url(/system_panel/uploads/images/mail_bk.png);
}

.ftr_1{
  background: var(--main-color);
  color: #fff;
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{
  margin-bottom: 28px;
  display: block;
}
.ftr_1_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.25em;
}
.ftr_1_add{

}
.ftr_1_add_item{
  display: flex;
  align-items: center;
}
.ftr_1_add_txt1{
  position: relative;
  padding-right: 10px;
}
.ftr_1_add_txt1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_1_add_txt2{
  padding-left: 10px;
}
.ftr_1_add_txt2 a:hover{
  color: #ddd;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.ftr_link:before{

}
.ftr_link:after{

}
@media (min-width:375px){

}
@media (max-width:767px){
  .mv{
    height: calc(100vh - 58px);

  }
  .mv:before{
    content: "";
    display: block;
    /*    padding-top: calc(100vh - 58px - 54px);*/
  }
  .mv_box1{
    align-content: center;
    left: 6.25%;
  }
  .mv_box2{
    width: 82.77%;
  }
  .mv_box1_tt{
    font-size: 32px;
  }
  .home_contents5_box2 .mv_box1_tt{
    font-size: 24px;
  }
  .mv_box1_tt p:after{
    bottom: 4px;
  }

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }

  .ftr_contact_box1 .home_contents5_tt_en{
    text-align: center;
    font-size: 30px;
  }
  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 24px;
  }
  .ftr_contact_box2_item + .ftr_contact_box2_item{
    margin-top: 20px;
  }
  .ftr_contact_img:before{
    padding-top: 400px;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_1_add{
    width: 290px;
    margin: 0 auto;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  .ftr_contact_wrap{

  }
  .ftr_contact_img{

  }
  .ftr_contact_img:before{

  }
  .ftr_contact_img:after{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1 .home_contents5_tt_en{
    font-size: 60px;
  }
  .ftr_contact_box2{
    margin-top: 40px;;
  }
  .ftr_contact_box2_inner{

  }
  .ftr_contact_box2_item{
    width: 55.1%;
  }
  .ftr_contact_box2_item:first-child{
    width: 44.12%;
  }
  .ftr_contact_box2_item_tel{

  }
  .ftr_contact_box2_item_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .ftr_contact_box2_item{
    position: relative;
  }
  .ftr_contact_box2_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .link_1{
    font-size: 15px;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
  .ftr_contact_box2_item:before,
  .ftr_contact_box2_item:last-child:after{
    height: 80px;
  }

  .ftr_1{
    padding-top: 80px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 41.98%;
  }
  .ftr_logo{

  }
  .ftr_1_add_txt{

  }
  .ftr_1_add{

  }
  .ftr_1_add_item{

  }
  .ftr_1_add_txt1{

  }
  .ftr_1_add_txt2{

  }
  .ftr_1_box2{
    width: 49.72%;
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: #000;
    padding: 40px;
    position: relative;
  }

  .ftr_links{
    width: 100%;
    margin-bottom: 16px;
  }
  .ftr_link{
    font-size: 13px;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #000;
    width: 100%;
    padding-bottom: 5px;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 16px;
  }
  .ftr_link p{
    display: flex;
    align-items: center;
    letter-spacing: 0.025em;

  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background-image: url(/system_panel/uploads/images/circle_sm.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
    min-width: 22px;
  }
  .ftr_link:before{

  }
  .ftr_link:after{

  }

  .ftr_copy{
    margin-top: 71px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_img{

  }
  .ftr_contact_img:before{

  }
  .ftr_contact_img:after{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 100%;
  }
  .ftr_contact_box1 .home_contents5_tt_en{
    font-size: 90px;
    margin-top: -14px;
  }
  .ftr_contact_box2{
    width: 100%;
    margin-top: 50px;;
  }
  .ftr_contact_box2_inner{

  }
  .ftr_contact_box2_item{

  }
  .ftr_contact_box2_item_tel{

  }
  .ftr_contact_box2_item_tel1{
    font-size: 36px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .ftr_contact_box2_item{

  }
  .link_1{
    font-size:15px;
    display: block;
    width: 100%;
    max-width: 300px;
  }
  .ftr_contact_box2_item:before,
  .ftr_contact_box2_item:last-child:after{
    height: 100px;
  }

  .ftr_1{

  }
  .ftr_1_box{
    align-items: flex-start;
  }
  .ftr_1_box1{
    width: 33.98%;
  }
  .ftr_logo{

  }
  .ftr_1_add_txt{

  }
  .ftr_1_add{

  }
  .ftr_1_add_item{

  }
  .ftr_1_add_txt1{

  }
  .ftr_1_add_txt2{

  }
  .ftr_1_box2{
    width: 60.72%;
  }
  .ftr_links{
    width: 49%;
    margin-bottom: 18px;
  }
  .ftr_link{

  }
  .ftr_link p{
    margin-right: -16px;
  }
  .ftr_link:before{

  }
  .ftr_link:after{

  }
}
@media (min-width:1200px){
  .ftr_contact_box1{
    width: 41.11%;
  }
  .ftr_contact_box1 .home_contents5_tt_en{
    font-size: 90px;
  }
  .ftr_contact_box2{
    width: 58.75%;
    margin-top: 0;
  }
  .ftr_contact_box2_item:before,
  .ftr_contact_box2_item:last-child:after{
    height: 160px;
  }


}
@media (min-width:768px) and  (max-width:1023px){
  .md_none{
    display: none;
  }
}
@media (min-width:1024px) and  (max-width:1439px){
  .md_none{
     display: block;
  }
  .md_block,
  .ftr_links:last-child{
    display: none;
  }
  
  .ftr_links:nth-child(2) .ftr_link:nth-child(2){
    margin-top: 0;
  }
}
@media (min-width:1440px){
  .md_none{
     display: none;
  }
  .ftr_links{
    width: 28.4%;
  }
  .link_1{
    display: block;
    width: 100%;
    max-width: 380px;
    font-size:18px;
  }
  .ftr_1_box1{
    width: 25.98%;
  }

  .ftr_links{
    width: 28.4%;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 16px;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 18px;
  }

  .ftr_1_box2:before{
    content: "";
    display: block;
    border-right: 1px dashed #b3b3b3;
    height:124px;
    position: absolute;
    left: 33.333%;
    top: 50%;
    transform: translateY(-50%);
  }
  .ftr_1_box2:after{
    content: "";
    display: block;
    border-right: 1px dashed #b3b3b3;
    height:124px;
    position: absolute;
    right: 33.333%;
    top: 50%;
    transform: translateY(-50%);
  }

}
@media (min-width:1536px){
  .ftr_1_box2{
    width: 70.72%;
  }
}
@media (min-width:1720px){
  .ftr_1_box2{
    width: 60.72%;
  }
      .ftr_link{
    font-size: 16px;
    }
}
/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  background: none;
  /*border-radius: 27px;*/
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  border-bottom: 2px solid #000000;
  padding-bottom: 12px;
}
.read_more a.rd{
  border-bottom: 1px solid #b21d43;
}
.read_more a p{
  letter-spacing: 0.025em;
}
.read_more a:hover{
  background: none;
}
.read_more a:after{
  display: none;
}
.read_more a:hover .circle{
  right: -10px;
}
.read_more.no_bdr a{
  border-bottom: 0;
}
.read_more.no_bdr a .circle{
  background-image: url(/system_panel/uploads/images/under.png);
}
.read_more.no_bdr a:hover{
  border-bottom: 0;
  color: #b21d43;
}
.circle{
  width: 30px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: 0.2s all;
  position: relative;
  right: -5px;
}
.read_more a:hover{
  color: #b21d43;;
  background: none;
  border-bottom: 2px solid #b21d43;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

  .read_more a{
    min-width: 200px;
    margin: 5px;
  }
}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: center;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: auto;
    font-size: 16px;
    margin: 5px;
  }
  .read_more a:after{
    display: none;
  }
  .circle{

  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }


}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  .read_more.left{
    justify-content: flex-start;
  }
  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

}
@media (min-width:1200px){


}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }

}

.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{

}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
  background-color: var(--main-color);
}



/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{
  position: relative;
  padding-top: 50px;
  background: #f2f2f2;
}
.pg_home .section.sec1:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 833;;
  background-image: url(/system_panel/uploads/images/bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec2{
  background: #f2f2f2;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec3{
  position: relative;
  overflow: hidden;
  padding: 0;
}
/*.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  z-index: 3;
}
.pg_home .section.sec3:after{
    content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 3;
}*/
.pg_home .section.sec4{
  position: relative;
  background: #f2f2f2;
  padding-top: 20px;
  padding-bottom: 40px;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
}
.pg_home .section.sec5{
  padding-top: 50px;
}
.pg_home .section.sec6{
  padding-top: 50px;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 100px;

  }
  .pg_home .section.sec1:before{
    content: "";
    display: block;
    width: 2700px;
  }
  .pg_home .section.sec2{
    padding-top: 109px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{
    padding-bottom: 111px;
  }
  .pg_home .section.sec4:before{
    height: 488px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec1:before{
    content: "";
    display: block;
    width: 2600px;
  }
  .pg_home .section.sec6{
    padding-top: 180px;
  }

}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 140px;

  }
  .pg_home .section.sec1:before{
    content: "";
    display: block;
    width: 1920px;
  }
  .pg_home .section.sec2{
    padding-top: 109px;
    padding-bottom: 200px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{
    padding-bottom: 111px;
  }
  .pg_home .section.sec5{
    padding-top: 145px;
  }
  .pg_home .section.sec6{
    padding-top: 230px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/*メイン*/

/*aboutus*/
.home_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  position: relative;
  z-index: 1;
}
.home_contents1_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_contents1_box1_media{

}
.home_contents1_box1_media:before{
  padding-top: 56.25%;
}
.home_contents1_box1_media iframe{
  border: none;
  width: 100%;
}
.home_contents1_box2{
  width: 100%;
  order: 1;
}
.sec_en1{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  border-bottom: 1px solid #fff;
  padding-bottom: 2px;
}
.sec_en1 p{
  letter-spacing: 0;
}
.sec_ja1{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 20px;
}
.sec_sub_tt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
}
.sec_sub_tt p{
  display: inline-block;
  letter-spacing: 0.025em;
  padding: 0 5px 0 7px;
}
.sec_sub_tt1{
  font-size: 18px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec_sub_tt1 p{
  background: #fff;
  color: var(--main-color);
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}

/*強み*/
.home_contents1_inner{
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 20px 5px;
  margin-top: 40px;
}
.home_contents1_inner_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #000000;
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}
.home_contents1_inner_tt:before{
  content: "";
  display: block;
  width: 10px;
  aspect-ratio:1;
  border-radius: 50%;
  background: #b21d43;
  margin-right: 11px;
}
.home_contents1_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.home_contents1_item{
  width: 100%;
  position: relative;
}
.home_contents1_item:nth-child(n+2){
  margin-top: 30px;;
}
.home_contents1_item_inner{

}
.home_contents1_item_sub{
  display: flex;
  align-items: center;
  color: var(--main-color);
  font-family: var(--font-en);
}
.home_contents1_item_sub_txt1{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.home_contents1_item_sub_txt2{
  font-size: 14px;
  font-weight: 600;

  letter-spacing: 0;
}
.sec_sub_tt2{
  font-size: 17px;
  margin-top: 20px;
}
.sec_sub_tt2 p{
  background: var(--main-color);
  color: #fff;
}
.home_contents1_item .content_desc{

}

/*注文住宅*/
.home_contents2_wrap{
  display:contents;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents2_wrap:nth-child(n+2){
  margin-top: 50px;
}
.home_contents2_box1{
  width: 100%;
}
.home_contents2_box1_tt{
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
}
.home_contents2_box1_tt_inr{
  border-left: 5px solid var(--main-color);
  padding-left: 21px;
}
.home_contents2_box1_tt_ja{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
}
.home_contents2_box1_tt_en{
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
  margin-top: 15px;
}
.sec_sub_tt3{
  color: #000;
  margin-top: 20px;
}
.sec_sub_tt3 p{
  background: #fff;
}
.sec_sub_tt3 p:nth-child(n+2){
  margin-top: 15px;
}
.home_contents2_box1 .content_desc{

}
.home_contents2_box1 .read_more{
  margin-top: 54px;
}
.home_contents2_box1 .read_more a{

}
.home_contents2_box2{
  width: 100%;
}
.home_contents2_box2_img:before{
  padding-top: 75%;
}
.home_contents2_box2_img{
  margin-top: 20px;;
}

/*事業用・公共建築*/
.home_slide .simply-scroll{
  height: 888px;;
}
.home_contents3_img{

}
.home_contents3_img:before{
  padding-top: 1000px;
  /*  padding-top: 1200px;*/
}
.home_contents3_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.home_contents3_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.home_contents3_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents3_box1{
  width: 100%;
  color: #fff;
}
.home_contents3_box1_en{
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.home_contents3_box1_tt{
  display: flex;
  align-items: flex-end;
  margin-top: 24px;
}
.home_contents3_box1_tt1{

}
.home_contents3_box1_tt2{
  font-size:16px;
  font-weight: 700;
  letter-spacing: 0;
}
.sec_sub_tt4{
  margin-top: 20px;
}
.sec_sub_tt4 p{
  background: #fff;
  color: #000;
}
.sec_sub_tt4 p:nth-child(n+2){
  margin-top: 16px;
}
.home_contents3_box1 .content_desc{

}
.home_contents3_box1 .read_more{

}
.home_contents3_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.home_contents3_box2:before{
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
  z-index: 3;
}
.home_contents3_box2:after{
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: -150px;
  left: 0;
  pointer-events: none;
  background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 3;
}
.home_slide{
  width: 100%;
}
.home_contents3_box2_item .img_fit:before{
  padding-top: 87.5%;
}
.home_contents3_box2_item {
  width: 200px;
  margin-right: 10px;
}
.simply-scroll .simply-scroll-list{
  display: flex;
}

/*works*/
.home_contents4_wrap{

}
.sec_lg_tt{
  text-align: center;
  position: relative;
}
.sec_lg_tt_en{
  font-size: clamp(3.75rem, 0.75rem + 15vw, 18.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-en);
  color: rgba(255,255,255,0.1);
}
.sec_lg_tt_ja{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff;
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.home_contents4_box{
  margin-top: -40px;
}
.home_contents4_box .webgene-blog{

}
.works_slide .simply-scroll .simply-scroll-clip{
  height: auto;
}
.works_slide .simply-scroll .simply-scroll-list{
  display: flex;
  flex-wrap: nowrap;
}
.works_slide .simply-scroll{
  height: auto;  
}
.home_contents4_box .webgene-item{
  width: 200px;
  min-width: 200px;
  margin-right: 5px;
}
.home_contents4_box .webgene-item a{

}
.home_contents4_box .webgene-item .img:before{
  padding-top: 70%;
}
.home_contents4_box .webgene-item .meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.home_contents4_box .webgene-item .date{
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font-en);
  color: var(--main-color);
  letter-spacing: 0;
  margin-right: 15px;
}
.home_contents4_box .webgene-item .category{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 2px 10px;
  margin-top: 5px;
}
.home_contents4_box .webgene-item .title{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 7px;
}
.home_contents4_box .webgene-item .box2{
  background: #fff;
  padding: 24px 10px;
}

/*施工実績*/
.home_contents5_wrap{
  position: relative;
}
.home_contents5_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 100px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.home_contents5_tt{

}
.home_contents5_tt_en{
  font-size: 50px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
.home_contents5_wrap .home_contents1_inner_tt{
  border-bottom: none;
  margin-top: 10px;
}
.home_contents5_tt{

}
.home_contents5_tt_en{

}
.home_contents5_tt_ja{

}
.home_contents5_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.home_contents5_box1{
  width: 36%;
  order: 1;
}
.home_contents5_box1_img:before{
  padding-top: 100%;
}
.home_contents5_box2{
  width: 100%;
  order: 3;
}
.home_contents5_box2 .mv_box1_tt{

}
.home_contents5_box2 .sec_sub_tt{
  margin-top: 20px;
}
.home_contents5_box2 .sec_sub_tt p{
  background: var(--main-color);
  color: #fff;
}
.home_contents5_box2 .sec_sub_tt p:nth-child(n+2){
  margin-top: 5px;
}
.home_contents5_box2 .content_desc{

}
.home_contents5_box2 .read_more{

}
.home_contents5_box3{
  width: 45%;
  order: 2;
}
.home_contents5_box3_img1{
  width: 95.94%;
  margin-top: -10.8em;
  margin-left: -5.5em;
}
.home_contents5_box3_img1:before{
  padding-top: 100%;
}
.home_contents5_box3_img2{

}
.home_contents5_box3_img2:before{
  padding-top: 96%;
}

/*お知らせ*/
.home_contents6_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents6_box1{
  width: 100%;
}
.home_contents6_box1 .home_contents3_box1_en{
  color: var(--main-color);
}
.home_contents6_box1 .home_contents2_box1_tt_ja{
  margin-top: 13px;
}
.home_contents6_box1 .content_desc{

}
.home_contents6_box1 .read_more{

}
.home_contents6_box2{
  width: 100%;
  margin-top: 30px;
}
.home_contents6_box2_inner{

}
.news_list .webgene-blog{

}
.news_list .webgene-item{
  width: 50%;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 0;
}
.news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #000;
  position: relative
}
.news_list .webgene-item:last-child a{
  border-bottom: 1px solid #000;
}
.news_list .webgene-item a:after{
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1;
  background-image: url(/system_panel/uploads/images/circle.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.news_list .webgene-item a:hover{

}
.news_list .webgene-item a:hover:after{
  right: 10px;
}
.news_list .webgene-item .box1{
  width: 100%;
}
.news_list .webgene-item .box1 .img:before{
  padding-top: 75%;
}
.news_list .webgene-item .box2{
  width: 100%;
}
.news_list .webgene-item .box2 .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news_list .webgene-item .box2 .date{
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--main-color);
  letter-spacing: 0;
}

.news_list .webgene-item .box2 .category{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 2px 10px;
}
.news_list .webgene-item .box2 .title{
  font-size: 16px;
  font-weight: 700;
  line-height: 2.22em;
  margin-top: 15px;
}

.home_contents3_box1 .read_more a{
  border-bottom: 2px solid #fff;
}
.home_contents3_box1 .read_more a:hover{
  border-bottom: 2px solid #b21d43;
  color: #b21d43;
}

.home_contents5_wrap .home_contents1_inner_tt{
  font-size:17px;
}
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .home_contents1_item:first-child{
    padding-bottom: 30px;
  }
  .home_contents1_item:nth-child(n+2){
    margin-top: 0;
    padding: 30px 0;
    border-top: 1px dashed #b3b3b3;
  }

  .home_contents3_box1_tt{
    display: block; 
  }

  .simply-scroll .simply-scroll-clip{
    height: auto;
  }

  .sec_sub_tt{
    font-size: 16px;

  }
  .home_contents2_box1 .sec_sub_tt,
  .home_contents1_item .sec_sub_tt{
    font-size: 18px;
  }
  .home_contents3_wrap .sec_sub_tt{
    font-size: 15px;
  }
  .sec_sub_tt p{
    letter-spacing: 0;
  }

  .home_contents4_box{
    margin-top: -12px;
  }

  .home_contents5_wrap:before{
    top: 53px;
  }
  .home_contents5_box3_img1{
    width: 65.94%;
    margin-top: -3.8em;
    margin-left: -3.5em;
  }

  .home_slide .simply-scroll{
    height: auto;
  }

  .news_list .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-5px;
  }
  .news_list .webgene-item{
    width: 50%;
    padding-inline:5px;
  }
  .news_list .webgene-item a{
    padding-bottom: 30px;
  }
  .news_list .webgene-item a:after{
    width: 20px;
    top: auto;
    right: 10px;
    bottom: 5px;
    transform: none;
  }
  /*.news_list .webgene-item:last-child a{
    border-bottom: 0;
  }*/
  /*.news_list .webgene-item:nth-child(n+3) a{
    border-top: 0;
  }*/
  .news_list .webgene-item:nth-child(even) a{
    border-bottom: 1px solid #000; 
  }
  .news_list .webgene-item .box2{
    margin-top: 10px;
  }
  .news_list .webgene-item .box2 .date{
    width: 100%;
    margin-bottom:10px;
    order: 1;
  }
  .news_list .webgene-item .box2 .category{
    order: 2;
  }

  .home_contents2_box1_tt_ja{
    line-height: 1.4em;
  }

  .home_contents3_box2{
    margin-top: 40px;
  }

  .home_contents4_box .webgene-item .date{
    width: 100%;
  }
  .home_contents4_box .webgene-item .title{
    font-size: 16px;
  }
  .home_contents4_box .webgene-item .category{
    font-size: 12px;
  }
  .home_contents1_item_sub_txt1{
    margin-right: 10px;
  }
  .page_hdr_box2 .sec_sub_tt5 p{
    padding: 8px 14px 3px;
  }
  .home_contents1_inner_tt:before{
    margin-right: 0;
    margin-right: 5px;
    min-width: 10px;
  }
  .home_contents1_inner_tt{
    font-size: 17px;
  }

  .home_contents5_box2{
    margin-top: 20px;
  }

  .home_contents3_box2_item{
    width: 120px;
    min-width: 120px;
  }
}
@media (min-width:768px){
  /*aboutus*/
  .home_contents1_wrap{

  }
  .home_contents1_box1{
    margin-top: 30px;
  }
  .home_contents1_box1_media{

  }
  .home_contents1_box1_media:before{

  }
  .home_contents1_box1_media iframe{

  }
  .home_contents1_box2{

  }
  .sec_en1{

  }
  .sec_ja1{
    font-size: 36px;
    margin-top: 44px;
  }
  .sec_sub_tt{

  }
  .sec_sub_tt p{

  }
  .sec_sub_tt1{
    font-size: 20px;
    margin-top: 31px;
  }
  .home_contents1_box2 .content_desc{
    margin-top: 46px;
  }

  /*強み*/
  .home_contents1_inner{
    padding: 30px 10px;
    margin-top: 70px;
  }
  .home_contents1_inner_tt{
    font-size: 20px;
  }
  .home_contents1_items{
    justify-content: center;
    justify-content: space-between;
    margin-top: 57px;
  }
  .home_contents1_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_contents1_item:after{
    content: "";
    display: block;
    border-right: 1px dashed #b3b3b3;
    height: 280px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .home_contents1_item:last-child:after{
    display: none;
  }
  .home_contents1_item:nth-child(2):after{
    display: none;
  }
  .home_contents1_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents1_item:nth-child(n+3){
    margin-top: 50px;
  }
  .home_contents1_item_inner{
    padding-inline:15px;
  }
  .home_contents1_item_sub{

  }
  .home_contents1_item_sub_txt1{
    font-size: 30px;
    margin-right: 15px;
  }
  .home_contents1_item_sub_txt2{

  }
  .sec_sub_tt2{
    margin-top: 25px;
  }
  .sec_sub_tt2 p{

  }
  .home_contents1_item .content_desc{
    margin-top: 23px;
  }

  /*注文住宅*/
  .home_contents2_wrap{

  }
  .home_contents2_wrap:nth-child(n+2){
    margin-top: 100px;
  }
  .home_contents2_box1{

  }
  .home_contents2_box1_tt{
    padding-bottom: 21px;
  }
  .home_contents2_box1_tt_inr{

  }
  .home_contents2_box1_tt_ja{
    font-size: 30px;
  }
  .home_contents2_box1_tt_en{
    font-size: 14px;
  }
  .sec_sub_tt3{
    font-size: 22px;
    margin-top: 40px;
  }
  .sec_sub_tt3 p{

  }
  .home_contents2_box1 .content_desc{
    margin-top: 46px;
  }
  .home_contents2_box1 .read_more{

  }
  .home_contents2_box1 .read_more a{
    margin-right: 50px;
  }
  .home_contents2_box2{

  }
  .home_contents2_box2_img:before{

  }
  .home_contents2_box2_img{
    margin-top: 30px;;
  }

  /*事業用・公共建築*/
  .home_contents3_img{

  }
  .home_contents3_img:before{
    padding-top:1100px;
  }
  .home_contents3_img:after{
  }
  .home_contents3_outer{

  }
  .home_contents3_wrap{

  }
  .home_contents3_box1{

  }
  .home_contents3_box1_en{

  }
  .home_contents3_box1_tt{

  }
  .home_contents3_box1_tt1{

  }
  .home_contents3_box1_tt2{
    font-size: 20px;
  }
  .sec_sub_tt4{
    margin-top: 40px;
  }
  .sec_sub_tt4 p{

  }
  .home_contents3_box1 .content_desc{
    margin-top: 40px;
  }
  .home_contents3_box1 .read_more{
    margin-top: 50px;
  }
  .home_contents3_box1 .read_more a {
    margin-right: 50px;
  }
  .home_contents3_box2{
    margin-top: 30px;
  }

  .home_contents3_box2_item {
    width: 200px;
    margin-top: 10px;
  }
  .home_contents3_box2_item:nth-child(n+2){
    margin-top: 10px;
  }
  .home_slide {
    width: 100%;
  }

  /*works*/
  .home_contents4_wrap{

  }
  .sec_lg_tt{

  }
  .sec_lg_tt_en{

  }
  .sec_lg_tt_ja{
    font-size: 28px;
  }
  .home_contents4_box{
    margin-top: -30px;
  }
  .home_contents4_box .webgene-blog{

  }
  .home_contents4_box .webgene-item{

  }
  .home_contents4_box .webgene-item{
    width: 400px;
    min-width: 400px;
    margin-right: 10px;
  }
  .home_contents4_box .webgene-item a{

  }
  .home_contents4_box .webgene-item .img:before{

  }
  .home_contents4_box .webgene-item .date{

  }
  .home_contents4_box .webgene-item .category{
    margin-top: 0;
  }
  .home_contents4_box .webgene-item .title{
    font-size: 20px;
  }
  .home_contents4_box .webgene-item .box2{
    padding: 24px 20px;
  }

  /*施工実績*/
  .home_contents5_wrap:before{
    top: 62px;
    height: 100%;;
  }
  .home_contents5_tt{

  }
  .home_contents5_tt_en{

  }
  .home_contents5_tt_ja{

  }
  .home_contents5_box{
    margin-top: 60px;
  }
  .home_contents5_box1{
    width: 40%;
  }
  .home_contents5_box1_img:before{

  }
  .home_contents5_box2{

  }
  .home_contents5_box2 .mv_box1_tt{

  }
  .home_contents5_box2 .sec_sub_tt{
    font-size: 30px;
    margin-top: 30px;
  }
  .home_contents5_box2 .sec_sub_tt{

  }
  .home_contents5_box2 .sec_sub_tt p{

  }
  .home_contents5_box2 .sec_sub_tt p:nth-child(n+2){
    margin-top: 10px;
  }
  .home_contents5_box2 .content_desc{
    margin-top: 46px;
  }
  .home_contents5_box2 .read_more{

  }
  .home_contents5_box3{
    width: 40%;
  }
  .home_contents5_box3_img1{

  }
  .home_contents5_box3_img1:before{

  }
  .home_contents5_box3_img2{

  }
  .home_contents5_box3_img2:before{

  }

  .home_contents5_tt{

  }
  .home_contents5_tt_en{
    font-size: 100px;
  }

  /*お知らせ*/
  .home_contents6_wrap{

  }
  .home_contents6_box1{

  }
  .home_contents6_box1 .home_contents3_box1_en{

  }
  .home_contents6_box1 .home_contents2_box1_tt_ja{
    font-size: 40px;
  }
  .home_contents6_box1 .content_desc{
    margin-top: 46px;
  }
  .home_contents6_box1 .read_more{
    margin-top: 47px;
  }
  .home_contents6_box2{
    margin-top: 40px;
  }
  .home_contents6_box2_inner{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    width: 100%;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item a{
    padding: 20px 20px;
  }
  .news_list .webgene-item .box1{
    width: 21.27%;
  }
  .news_list .webgene-item .box1 .img:before{

  }
  .news_list .webgene-item .box2{
    width: 75.12%;

  }
  .news_list .webgene-item .box2 .meta{

  }
  .news_list .webgene-item .box2 .date{
    margin-right: 14px;
    order: 1;
  }
  .news_list .webgene-item .box2 .category{
    order: 2;
  }
  .news_list .webgene-item .box2 .title{
    font-size: 18px;
  }

  .home_contents3_outer .simply-scroll .simply-scroll-clip{
    height: auto;
  }
  .home_contents3_outer .simply-scroll-clip{
    height: auto;
  }
  .home_contents3_outer .home_slide .simply-scroll{
    height: auto;
  }

  .home_contents5_wrap .home_contents1_inner_tt{
    font-size:18px;
  }

  .pg_reform .section.sec3 .home_contents3_outer{
    top: 50%;
  }
  .pg_reform .section.sec3 .home_contents3_outer .home_contents3_box1{
    padding-top: 0;
  }
}
@media (min-width:1024px){
  .home_contents3_img:before{
    padding-top:1000px;
  }

  .home_contents4_box .webgene-item{
    width: 400px;
    min-width: 400px;
  }


  .home_contents6_box1{
    width: 22.5%;
  }
  .home_contents6_box2{
    width: 65.78%;
  }
  .home_contents3_outer .simply-scroll .simply-scroll-clip{
    height: auto;
  }
  .home_contents3_outer .simply-scroll-clip{
    height: auto;
  }
  .home_contents3_outer .home_slide .simply-scroll{
    height: auto;
  }
}
@media (min-width:1200px){
  /*aboutus*/
  .home_contents1_wrap{

  }
  .home_contents1_box1{
    width:41.77%;
    order: 1;
    margin-top: 0;
  }
  .home_contents1_box1_media{

  }
  .home_contents1_box1_media:before{

  }
  .home_contents1_box1_media iframe{

  }
  .home_contents1_box2{
    width:52.63%;
    order: 2;
  }
  .sec_en1{

  }
  .sec_ja1{
    font-size: 40px;
  }
  .sec_sub_tt{

  }
  .sec_sub_tt p{

  }
  .sec_sub_tt1{

  }
  .home_contents1_box2 .content_desc{
    margin-top: 46px;
  }

  /*強み*/
  .home_contents1_inner{
    padding: 34px 10px;
    margin-top: 96px;
  }
  .home_contents1_inner_tt{

  }
  .home_contents1_items{
    margin-inline:-15px;
  }
  .home_contents1_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .home_contents1_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_contents1_item_inner{

  }
  .home_contents1_item_sub{

  }
  .home_contents1_item_sub_txt1{

  }
  .home_contents1_item_sub_txt2{

  }
  .sec_sub_tt2{
    font-size: 18px;
  }
  .sec_sub_tt2 p{

  }
  .home_contents1_item .content_desc{

  }
  .home_contents1_item:nth-child(2):after{
    display: block;
  }

  /*注文住宅*/
  .home_contents2_wrap{
    display: flex;
  }
  .home_contents2_wrap:nth-child(n+2){
    margin-top: 164px;
  }
  .home_contents2_wrap:nth-child(odd) .home_contents2_box1{
    order: 1;
  }
  .home_contents2_wrap:nth-child(odd) .home_contents2_box2{
    order: 2;
  }
  .home_contents2_wrap:nth-child(even) .home_contents2_box1{
    order: 2;
  }
  .home_contents2_wrap:nth-child(even) .home_contents2_box2{
    order: 1;
  }
  .home_contents2_box1{
    width: 42.1%;
  }
  .home_contents2_box1_tt{

  }
  .home_contents2_box1_tt_inr{

  }
  .home_contents2_box1_tt_ja{
    font-size: 30px;
  }
  .home_contents2_box1_tt_en{
    font-size: 14px;
  }
  .sec_sub_tt3{
    font-size: 24px;
    margin-top: 76px;
  }
  .sec_sub_tt3 p{

  }
  .home_contents2_box1 .content_desc{
    margin-top: 46px;
  }
  .home_contents2_box1 .read_more{

  }
  .home_contents2_box1 .read_more a{

  }
  .home_contents2_box2{
    width: 52.63%;

  }
  .home_contents2_box2_img{
    margin-top: 0;
  }
  .home_contents2_box2_img:before{

  }

  /*事業用・公共建築*/
  .home_contents3_img{

  }
  .home_contents3_img:before{
    padding-top: 888px;
  }
  .home_contents3_img:after{
  }
  .home_contents3_outer{

  }
  .home_contents3_wrap{

  }
  .home_contents3_box1{
    width: 43.76%;
    padding-top: 26px;
  }
  .home_contents3_box1_en{
    font-size: 24px;
  }
  .home_contents3_box1_tt{

  }
  .home_contents3_box1_tt1{

  }
  .home_contents3_box1_tt2{
    font-size: 15px;
  }
  .sec_sub_tt4{
    font-size: 22px;
    margin-top: 60px;
  }
  .sec_sub_tt4 p{

  }
  .home_contents3_box1 .content_desc{

  }
  .home_contents3_box1 .read_more{

  }
  .home_contents3_box2{
    width: 52.63%;
    margin-top: -106px;
  }
  .home_contents3_box2_item {
    width: 280px;
    margin-right: 0;
  }
  .home_slide {
    width: 48.37%;

  }
  .simply-scroll .simply-scroll-list{
    display: block;
  }

  /*works*/
  .home_contents4_wrap{

  }
  .sec_lg_tt{

  }
  .sec_lg_tt_en{

  }
  .sec_lg_tt_ja{
    font-size: 40px;
  }
  .home_contents4_box{
    margin-top: -40px;
  }
  .home_contents4_box .webgene-blog{

  }
  .home_contents4_box .webgene-item{

  }
  .home_contents4_box .webgene-item{
    width: 500px;
    min-width: 500px;
    margin-right: 20px;
  }
  .home_contents4_box .webgene-item a{

  }
  .home_contents4_box .webgene-item .img:before{

  }
  .home_contents4_box .webgene-item .date{

  }
  .home_contents4_box .webgene-item .category{

  }
  .home_contents4_box .webgene-item .title{

  }

  /*施工実績*/
  .home_contents5_wrap:before{
    margin-left: 0;
    left: 41.44%;
    top: 15%;
    height: 100%;
  }
  .home_contents5_tt{

  }
  .home_contents5_tt_en{

  }
  .home_contents5_tt_ja{

  }
  .home_contents5_box{

  }
  .home_contents5_box1{
    width: 19.73%;
    order: 1;
  }
  .home_contents5_box1_img{
    margin-left: var( --margin-for-device-side-w);
  }
  .home_contents5_box1_img:before{

  }
  .home_contents5_box2{
    width: 41.5%;
    padding-top: 22px;
    order: 2;
  }
  .home_contents5_box2 .mv_box1_tt{
    font-size: 48px;
  }
  .home_contents5_box2 .sec_sub_tt{
    font-size: 24px;
  }
  .home_contents5_box2 .sec_sub_tt p{

  }
  .home_contents5_box2 .content_desc{
    padding-right: 16%;
  }
  .home_contents5_box2 .read_more{
    margin-top: 53px;
  }
  .home_contents5_box3{
    width: 23.98%;
    margin-top: -13.5em;
    order: 3;
  }
  .home_contents5_box3_img1{
    margin-top: -10.8em;
    margin-left: -5.5em;
  }
  .home_contents5_box3_img1:before{

  }
  .home_contents5_box3_img2{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_contents5_box3_img2:before{

  }

  .home_contents5_tt{

  }
  .home_contents5_tt_en{
    font-size: 120px;
  }

  /*お知らせ*/
  .home_contents6_wrap{

  }
  .home_contents6_box1{

  }
  .home_contents6_box1 .home_contents3_box1_en{

  }
  .home_contents6_box1 .home_contents2_box1_tt_ja{
    font-size: 50px;
  }
  .home_contents6_box1 .content_desc{

  }
  .home_contents6_box1 .read_more{

  }
  .home_contents6_box2{
    margin-top: 0;
  }
  .home_contents6_box2_inner{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{
    padding: 38px 20px;
  }
  .news_list .webgene-item .box1{

  }
  .news_list .webgene-item .box1 .img:before{

  }
  .news_list .webgene-item .box2{
    padding-top: 7px;
  }
  .news_list .webgene-item .box2 .meta{

  }
  .news_list .webgene-item .box2 .date{

  }
  .news_list .webgene-item .box2 .category{

  }
  .news_list .webgene-item .box2 .title{

  }
  .home_contents3_outer{
    top: 57%;
  }
  .home_contents3_outer .simply-scroll .simply-scroll-clip{
    height: auto;
  }
  .home_contents3_outer .simply-scroll-clip{
    height: auto;
  }
  .home_contents3_outer .simply-scroll .simply-scroll-clip{
    height: 888px;;
  }
  .home_contents3_outer .simply-scroll-clip{
    height: 888px;;
  }
  .home_contents3_outer .home_slide .simply-scroll{
    height: 888px;;
  }
}
@media (min-width:1470px){
  /*強み*/
  .home_contents1_inner{
    padding: 34px 40px;
  }
  .home_contents1_items{
    margin-inline:-47.5px;
  }
  .home_contents1_item{
    width: 33.333%;
    padding-inline:47.5px;
  }
  .sec_sub_tt2{
    font-size: 20px;
  }
  .sec_sub_tt3{
    font-size: 30px;
  }
  .sec_sub_tt4{
    font-size: 26px;
  }
  .home_contents3_box2_item {
    width: 300px;
  }
  .home_contents3_box1_tt2{
    font-size: 20px;
  }

  /*works*/
  .home_contents4_box{
    margin-top: -40px;
  }
  .home_contents5_box2 .sec_sub_tt{
    font-size: 30px;
  }

  .home_contents3_outer{
    top: 57%; 
  }
  .home_contents3_outer .simply-scroll .simply-scroll-clip{
    height: 888px;;
  }
  .home_contents3_outer .simply-scroll-clip{
    height: 888px;;
  }
  .home_contents3_outer .home_slide .simply-scroll{
    height: 888px;;
  }
}
@media (min-width:1720px){
  .sec_sub_tt2{
    font-size: 24px;
  }

  .home_contents2_box1_tt_ja{
    font-size: 40px;
  }

  .home_contents3_box2{
    margin-right: -100px;
  }
  .home_contents3_box2_item {
    width: 400px;
  }

  .sec_ja1{
    font-size: 48px;
  }
  .sec_sub_tt4{
    font-size: 30px;
  }

  /*works*/
  .home_contents4_box{
    margin-top: -80px;
  }

  .home_contents5_box3{
    width: 25.98%;
  }
}
@media (max-width:1199px){
  .home_contents2_wrap{
    display: flex;
  }
  .home_contents2_box1{
    width: 100%;
    display: contents;
    order: 1;
  }
  .home_contents2_box2{
    width: 100%;
    display: contents;
    order: 2;
  }
  .home_contents2_box1_tt{
    width: 100%;
    order: 1;
  }
  .sec_sub_tt3{
    order: 3;
  }
  .home_contents2_box1 .content_desc{
    order: 4;
  }
  .home_contents2_box1 .read_more{
    order: 5;
  }
  .home_contents2_box2_img{
    width: 100%;
    order: 1;
  }

}



/*******************************
*　注文
********************************/

/* セクション設定 */
.pg_ordermade{

}
.pg_ordermade .section.sec1{

}
.pg_ordermade .section.sec2{
  background: var(--main-color);
  color: #fff;
  position: relative;
  padding: 80px 0;
}
.pg_ordermade .section.sec2:after{
  content: "";
  display: block;
  width: 47.86%;;
  aspect-ratio:919 / 586;
  background-image: url(/system_panel/uploads/images/house.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20%;
  right: 0;
}
.pg_ordermade .section.sec3{
  background: #f2f2f2;
  padding-bottom: 50px;
}
.pg_ordermade .section.sec4{
  position: relative;
  background: #f2f2f2;
}
.pg_ordermade .section.sec4:before{
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
}
.pg_ordermade .section.sec4:after{
  content: "";
  display: block;
  width: 100%;
  height: 150%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_ordermade{

  }
  .pg_ordermade .section.sec1{
    padding-bottom: 100px;
  }
  .pg_ordermade .section.sec2{
    padding: 50px 0;
  }
  .pg_ordermade .section.sec2:after{
    top: 20%;
  }
  .pg_ordermade .section.sec3{
    background: #f2f2f2;
    padding-bottom: 100px;
  }
  .pg_ordermade .section.sec4:before{
    height: 488px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){
  .pg_ordermade{

  }
  .pg_ordermade .section.sec1{
    padding-bottom: 140px;
  }
  .pg_ordermade .section.sec2{
    padding: 85px 0 139px;
  }
  .pg_ordermade .section.sec2:after{
    top: 5%;
  }
  .pg_ordermade .section.sec3{
    background: #f2f2f2;
    padding-bottom: 165px;
    padding-top: 160px;
  }
  .pg_ordermade .section.sec4{
    padding-top: 20px;
  }
}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */

/*見出し*/
.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.page_hdr_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 19%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.page_hdr_box1{
  width: 100%;
}
.page_hdr_box1_inner{
  display: flex;
  flex-wrap: wrap;
}
.page_hdr_box1_img{

}
.page_hdr_box1_img.img1{
  width: 62.5%;
}
.page_hdr_box1_img.img1:before{
  padding-top: 60%;
}
.page_hdr_box1_img.img2{
  width: 37.5%;
}
.page_hdr_box1_img.img2:before{
  padding-top: 100%;
}
.page_hdr_box1_img.img3{
  width: 37.5%;
}
.page_hdr_box1_img.img3:before{
  padding-top: 100%;
}
.page_hdr_box1_img.img4{
  width: 62.5%;
}
.page_hdr_box1_img.img4:before{
  padding-top: 60%;
}
.page_hdr_box2{
  width: 100%;
}
.page_hdr_box2 .sec_sub_tt1{

}
.page_hdr_box2 .sec_sub_tt1 p{
  background: var(--main-color);
  color: #fff;
}
.page_hdr_box2 .sec_sub_tt1 p:nth-child(n+2){
  margin-top: 10px;
}
.page_hdr_box2 .sec_sub_tt5{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--main-color);
  margin-top: 20px;
}
.page_hdr_box2 .sec_sub_tt5 p{
  background: #fff;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  padding: 15px 14px;
}
.page_hdr_box2 .sec_sub_tt5 strong{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.025em;;
}
.page_hdr_box2 .content_desc{

}
.content_block:nth-child(n+2){
  margin-top: 16px;
}

/*想い*/
.ordermade_contents1_wrap{

}
.ordermade_contents1_hdr{

}
.ordermade_contents1_hdr_tt{
  position: relative;
}
.ordermade_contents1_hdr_tt_en{
  font-size: clamp(3.125rem, 1.875rem + 6.25vw, 9.375rem);
  font-size: clamp(2.125rem, 0.675rem + 7.25vw, 9.375rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-en);
  color: rgba(255,255,255,0.1);
}
.ordermade_contents1_hdr_tt_ja{
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}
.ordermade_contents1_hdr_tt_ja:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 10px;
}
.ordermade_contents1_hdr .content_desc{

}
.ordermade_contents1_wrap .content_desc p{
  letter-spacing: 0.025em;
}

.ordermade_contents1_wrap .home_contents1_inner{
  color: #000;
  margin-top: 80px;
}

/*「理想」を「カタチ」に。*/
.ordermade_contents2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ordermade_contents2_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.ordermade_contents2_wrap .home_contents1_inner_tt{

}
.ordermade_contents2_box1 .sec_ja1{

}
.ordermade_contents2_box1 .content_desc{

}
.ordermade_contents2_box2{
  width: 100%;
  order: 1;
}
.ordermade_contents2_box2_img:before{
  padding-top: 50%;
}

/*繰り返し*/
.ordermade_contents3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ordermade_contents3_item{

}
.ordermade_contents3_item.full:last-child{
  margin-top: 0;
}
.ordermade_contents3_item.full{

}
.ordermade_contents3_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 5px solid var(--main-color);
  background: #fff;
}
.ordermade_contents3_box1{
  width: 100%;
}
.ordermade_contents3_box1_img:before{
  padding-top: 75%;
}
.ordermade_contents3_box2{
  width: 100%;
}
.ordermade_contents3_box2_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.025em;
  border-bottom: 1px solid #000000;
  padding-bottom: 16px;
}
.ordermade_contents3_box2_tt strong{
  font-size: 14px;
  font-weight: 700;
}
.ordermade_contents3_item.full .ordermade_contents3_box2_tt{
  font-size: 24px;
}
.ordermade_contents3_box2 .sec_sub_tt5{
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}
.ordermade_contents3_box2 .sec_sub_tt5 p{
  color: var(--main-color);
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  padding: 5px 5px;
  padding: 5px 12px;
}
.ordermade_contents3_box2 .content_desc{

}
@media (max-width:767px){
  .ordermade_contents3_item:nth-child(n+2){
    margin-top: 30px;
  }
  .ordermade_contents3_box2{
    padding: 20px 16px;
  }
  .ordermade_contents3_box2 .sec_sub_tt5{
    font-size: 17px;
  }

  .page_hdr_box2 .sec_sub_tt5 p{
    line-height: 1.6em;
  }
}
@media (min-width:768px){
  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{

  }
  .page_hdr_box1_inner{

  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img.img1{

  }
  .page_hdr_box1_img.img1:before{

  }
  .page_hdr_box1_img.img2{

  }
  .page_hdr_box1_img.img2:before{

  }
  .page_hdr_box1_img.img3{

  }
  .page_hdr_box1_img.img3:before{

  }
  .page_hdr_box1_img.img4{

  }
  .page_hdr_box1_img.img4:before{

  }
  .page_hdr_box2{

  }
  .page_hdr_box2 .sec_sub_tt1{
    font-size: 40px;
  }
  .page_hdr_box2 .sec_sub_tt1 p:nth-child(n+2){
    margin-top: 23px;
  }
  .page_hdr_box2 .sec_sub_tt5{
    font-size: 18px;
    margin-top: 37px;
  }
  .page_hdr_box2 .sec_sub_tt5 p{

  }
  .page_hdr_box2 .sec_sub_tt5 strong{
    font-size: 20px;
  }
  .page_hdr_box2 .content_desc{
    margin-top: 45px;
  }
  .content_block:nth-child(n+2){
    margin-top: 36px;
  }

  /*想い*/
  .ordermade_contents1_wrap{

  }
  .ordermade_contents1_hdr{

  }
  .ordermade_contents1_hdr_tt{

  }
  .ordermade_contents1_hdr_tt_en{

  }
  .ordermade_contents1_hdr_tt_ja{
    font-size: 30px;
  }
  .ordermade_contents1_hdr .content_desc{
    margin-top: 0;
  }

  .ordermade_contents1_wrap .home_contents1_inner{
    margin-top: 200px;
  }

  /*「理想」を「カタチ」に。*/
  .ordermade_contents2_wrap{

  }
  .ordermade_contents2_box1{
    order: 2;
    margin-top: 30px;
  }
  .ordermade_contents2_wrap .home_contents1_inner_tt{

  }
  .ordermade_contents2_box1 .sec_ja1{
    margin-top: 24px;
  }
  .ordermade_contents2_box1 .content_desc{

  }
  .ordermade_contents2_box2{
    order: 1;
  }
  .ordermade_contents2_box2_img:before{

  }

  /*繰り返し*/
  .ordermade_contents3_items{
    margin-inline:-15px;
    margin-top: 70px;
  }
  .ordermade_contents3_item{
    width: 50%;
    padding-inline:15px;
  }
  .ordermade_contents3_item:nth-child(n+2){
    margin-top: 41px;
  }
  .ordermade_contents3_item:nth-child(n+5){
    margin-top: 20px;
  }
  .ordermade_contents3_item.full{
    width: 100%;

  }
  .ordermade_contents3_item_inner{
    height: 100%;
  }
  .ordermade_contents3_item .ordermade_contents3_item_inner{
    padding: 20px;
  }
  .ordermade_contents3_item.full .ordermade_contents3_item_inner{
    padding: 36px 40px;
  }
  .ordermade_contents3_box1{
    width: 100%;
  }
  .ordermade_contents3_item.full .ordermade_contents3_box1{
    width: 100%;
  }
  .ordermade_contents3_box1_img:before{

  }
  .ordermade_contents3_box2{
    width: 100%;
    margin-top: 20px;
  }
  .ordermade_contents3_item.full .ordermade_contents3_box2{
    width: 100%;
    margin-top: 30px;;
  }
  .ordermade_contents3_box2_tt{
    font-size: 22px;
    padding-bottom: 9px;
  }
  .ordermade_contents3_item.full .ordermade_contents3_box2_tt{
    padding-bottom: 23px;
  }
  .ordermade_contents3_box2_tt strong{
    font-size: 16px;
    font-weight: 700;
  }
  .ordermade_contents3_item.full .ordermade_contents3_box2_tt{
    font-size: 24px;
  }
  .ordermade_contents3_box2 .sec_sub_tt5{
    margin-top: 29px;
  }
  .ordermade_contents3_box2 .sec_sub_tt5 p{

  }
  .ordermade_contents3_box2 .content_desc{
    margin-top: 14px;
  }
  .ordermade_contents3_item.full .ordermade_contents3_box2 .content_desc{
    margin-top: 20px;
  }

  .pg_ordermade .section.sec3 .home_contents1_inner_tt{
    font-size: 18px;
  }

  .ordermade_contents3_item:nth-child(4){
    margin-bottom: 21px;
  }
}
@media (min-width:1024px){
  .ordermade_contents3_item.full .ordermade_contents3_box1{
    width: 33.333%;
  }
  .ordermade_contents3_item.full .ordermade_contents3_box2{
    width: 64.23%;
    margin-top: 0;
  }

}
@media (min-width:1200px){
  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_wrap:before{
    top: 19%;
    left: 13.48%;
    margin-left: 0;
  }
  .page_hdr_box1{
    width: 39.47%;
    padding-top: 30px;
  }
  .page_hdr_box1_inner{
    margin-left: var(--margin-for-device-side-w)
  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img.img1{

  }
  .page_hdr_box1_img.img1:before{

  }
  .page_hdr_box1_img.img2{

  }
  .page_hdr_box1_img.img2:before{

  }
  .page_hdr_box1_img.img3{

  }
  .page_hdr_box1_img.img3:before{

  }
  .page_hdr_box1_img.img4{

  }
  .page_hdr_box1_img.img4:before{

  }
  .page_hdr_box2{
    width: 55.26%;
  }
  .page_hdr_box2 .sec_sub_tt1{
    font-size: 40px;
  }
  .page_hdr_box2 .sec_sub_tt5{
    font-size: 18px;
  }
  .page_hdr_box2 .sec_sub_tt5 p{

  }
  .page_hdr_box2 .sec_sub_tt5 strong{
    font-size: 20px;
  }
  .page_hdr_box2 .content_desc{

  }

  /*想い*/
  .ordermade_contents1_wrap{

  }
  .ordermade_contents1_hdr{
    width: 52.96%;
  }
  .ordermade_contents1_hdr_tt{

  }
  .ordermade_contents1_hdr_tt_en{
    margin-left: -51px;
  }
  .ordermade_contents1_hdr_tt_ja{
    font-size: 40px;
  }
  .ordermade_contents1_hdr .content_desc{

  }

  .ordermade_contents1_wrap .home_contents1_inner{
    padding: 34px 40px 57px;
    margin-top: 50px;
  }

  /*「理想」を「カタチ」に。*/
  .ordermade_contents2_wrap{

  }
  .ordermade_contents2_box1{
    width: 56.9%;
    order: 1;
    margin-top: 0;
  }
  .ordermade_contents2_wrap .home_contents1_inner_tt{

  }
  .ordermade_contents2_box1 .sec_ja1{

  }
  .ordermade_contents2_box1 .content_desc{

  }
  .ordermade_contents2_box2{
    width: 39.47%;
    padding-top: 6px;
    order: 2;
  }
  .ordermade_contents2_box2_img:before{

  }

  /*繰り返し*/
  .ordermade_contents3_items{
    margin-top: 97px;
  }
  .ordermade_contents3_item{
    width: 50%;
  }
  .ordermade_contents3_item.full{
    width: 100%;
  }
  .ordermade_contents3_item_inner{

  }
  .ordermade_contents3_box1{
    width: 28.36%;
  }
  .ordermade_contents3_box1_img:before{

  }
  .ordermade_contents3_box2{
    width: 67.37%;
    padding-top: 5px;
    margin-top: 0;
  }
  .ordermade_contents3_item.full .ordermade_contents3_box2{
    padding-top: 0;
  }
  .ordermade_contents3_box2_tt{
    font-size: 24px;
  }
  .ordermade_contents3_item.full .ordermade_contents3_box2_tt{
    font-size: 30px;
  }
  .ordermade_contents3_box2 .sec_sub_tt5{

  }
  .ordermade_contents3_box2 .sec_sub_tt5 p{

  }
  .ordermade_contents3_box2 .content_desc{

  }

  .pg_ordermade .section.sec3 .home_contents1_inner_tt{
    font-size: 20px;
  }
}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/*******************************
*　リフォーム
********************************/

/* セクション設定 */
.pg_reform{

}
.pg_reform .section.sec1{

}
.pg_reform .section.sec2{

}
.pg_reform.pg_ordermade .section.sec2:after{
  width: 39.58%;;
  aspect-ratio:760 / 644;
  background-image: url(/system_panel/uploads/images/house2.png);
}
.pg_reform .section.sec3{
  padding-top: 50px;
}

/*カテゴリ*/
.reform_cate_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-top: 40px;
}
.reform_cate_item{
  padding: 0 5px;
  margin: 5px 0;
}
.reform_cate_item a{
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  color: #000;
  padding: 13px 19px 13px 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
}
.reform_cate_item a:hover{
  color:  #b21d43;
}
.reform_cate_item p{
  letter-spacing: 0.025em;
  margin-right: 10px;
}
.reform_cate_item .circle{
  background-image:url(/system_panel/uploads/images/circle3.png);
  width: 24px;
}

/*project*/
.reform_oroject_box{
  position: relative;
}
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  /* セクション設定 */
  .pg_reform{

  }
  .pg_reform .section.sec1{

  }
  .pg_reform .section.sec2{

  }
  .pg_reform .section.sec3{
    padding-top: 100px;
  }

  /*カテゴリ*/
  .reform_cate_items{
    margin-top: 70px;
  }
  .reform_cate_item a{
    font-size: 16px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){

  /* セクション設定 */
  .pg_reform{

  }
  .pg_reform .section.sec1{
    padding-bottom: 140px;
  }
  .pg_reform .section.sec2{

  }
  .pg_reform .section.sec3{
    padding-top: 155px;    
  }

  /*カテゴリ*/
  .reform_cate_items{
    margin-top: 94px;
  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */
.pg_reform .page_hdr_wrap:before{
  height: 120%;
}
.mente_service_select {
  width: 100%;
  padding: 10px;
}
.reform_cate_items_sp{
  display: none;
}

.reform_oroject_box{
  margin-top: 40px;
}
.reform_oroject_box .home_contents3_wrap{
  padding: 0 16px;
}
.reform_oroject_box .home_contents3_img:before{
  padding-top: 950px;
}
.reform_oroject_box .home_contents3_box2:before{
  display: none;
}
.reform_oroject_box .home_contents3_box2:after{
  display: none;
}
.reform_oroject_box .home_contents3_box2{
  display: block;
}
.reform_project_img.img1{
  width: 62.5%;
  margin-top: -3.5em;
  margin-left: -5.5em;
}
.reform_project_img.img1:before{
  padding-top: 88%;
}
.reform_project_img.img2{
  width: 100%;
}
.reform_project_img.img2:before{
  padding-top: 75%;
}
.reform_oroject_box .home_contents3_box1{
  order: 2;
  margin-top: 40px;
}
.reform_oroject_box .home_contents3_box2{
  width: 70%;
  order: 1;
  margin-left: auto;
}
@media (max-width:767px){
  .reform_cate_items{
    display: none;
  }
  .reform_cate_items_sp{
    margin-top: 50px;
  }
}
@media (min-width:768px){

  .ordermade_contents1_wrap.reform .home_contents1_inner{
    padding: 34px 5px 19px;
  }
  .home_contents1_items.reform{
    position: relative;
    margin-top: 17px;
  }
  .home_contents1_items.reform:before{
    content: "";
    display:block;
    width: 91.2%;
    border-bottom: 1px dashed #b3b3b3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .home_contents1_items.reform .home_contents1_item{
    width: 50%;
    padding-top: 39px;
    padding-bottom: 39px;
  }
  .home_contents1_items.reform .home_contents1_item:nth-child(even):after{
    display: none;
  }
  .home_contents1_items.reform .home_contents1_item:after{
    height: 220px;
  }

  .reform_oroject_box{
    margin-top: 80px;
  }
  .reform_oroject_box .home_contents3_wrap{
    padding: 0 40px;
  }
  .reform_oroject_box .home_contents3_img:before{
    padding-top: 980px;
  }
  .pg_reform .section.sec3 .ordermade_contents3_items{
    margin-top: 64px;
  }
  .reform_oroject_box .home_contents3_box1{
    margin-top: 30px;
  }
  .reform_oroject_box .home_contents3_box2{
    width: 70%;
    margin-left: auto;
  }
  .reform_project_img.img1{
    width: 62.5%;
    margin-top: -7.5em;
    margin-left: -5.5em;
  }

  .pg_ordermade.pg_reform .section.sec4:before{
    height: 185px;
  }

  .pg_ordermade.pg_reform .section.sec4:before{
    height: 488px;
  }
}
@media (min-width:1024px){
  .reform_oroject_box .home_contents3_img:before{
    padding-top: 980px;
  }
  .reform_oroject_box .home_contents3_box2{
    width: 50%;
  }

  .ordermade_contents1_wrap.reform .home_contents1_inner{
    padding: 34px 40px 19px;
  }
}
@media (min-width:1200px){
  .ordermade_contents1_wrap.reform .home_contents1_inner{
    padding: 34px 40px 19px;
  }
  .home_contents1_items.reform .home_contents1_inner{
    padding: 34px 46px 57px;
  }
  .home_contents1_items.reform .home_contents1_item{
    width: 50%;
  }
  .home_contents1_items.reform .home_contents1_item:nth-child(even) .home_contents1_item_inner{
    padding-left: 0;
  }
  .home_contents1_items.reform .home_contents1_item:nth-child(n+3){

  }

  .reform_oroject_box .home_contents3_img:before{
    padding-top: 567px;
  }
  .pg_reform .section.sec3 .ordermade_contents3_items{
    margin-top: 64px;
  }

  .reform_oroject_box{
    margin-top: 100px;
  }
  .reform_oroject_box .home_contents3_wrap{
    padding: 0 40px;
  }
  .reform_oroject_box .home_contents3_box1{
    width: 58.08%;
    order: 1;
    margin-top: 0;
  }
  .reform_oroject_box .home_contents3_box2{
    width: 29.41%;
    margin-right: 0;
    margin-top: 0;
    margin-left: 0;
    order: 2;
  }
}
@media (min-width:1470px){


}
@media (min-width:1720px){
  .reform_oroject_box .home_contents3_wrap{
    padding: 0 80px;
  }
  .reform_oroject_box .home_contents3_box2{
    margin-right: 0;
    margin-top: 0;
  }

}


/*******************************
*　事業用
********************************/

/* セクション設定 */
.pg_corporate{

}
.pg_corporate .section.sec1{
  position: relative;
  background: #1a1a1a;
  padding-bottom: 50px;
}
.pg_corporate .section.sec2{
  position: relative;
  padding-top: 50px;
}
.pg_corporate .section.sec2:after{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 50px;;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.pg_corporate .section.sec3{
  background: #194fb1;
  padding: 50px 0;
  margin-top: 50px;
}
.pg_corporate .section.sec4{
  background: #f2f2f2;
  padding-bottom: 50px;
}
.pg_corporate .section.sec5{
  position: relative;
  padding-top: 10px;
}
.pg_corporate .section.sec5:before{
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
}
.pg_corporate .section.sec5:after{
  content: "";
  display: block;
  width: 100%;
  height: 150%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .corporate_slide_item{
    float: left;
    min-width: 300px;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_corporate{

  }
  .pg_corporate .section.sec1{
    padding-bottom: 80px;
  }
  .pg_corporate .section.sec2{
    padding-top: 100px;
  }
  .pg_corporate .section.sec2:after{
    top: 360px;
  }
  .pg_corporate .section.sec3{
    padding: 84px 0px;
    margin-top: 80px;
  }
  .pg_corporate .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_corporate .section.sec5:before{
    height: 488px;
  }
}
@media (min-width:1024px){
  .pg_corporate .section.sec2:after{
    top: 360px;
  }

}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_corporate{

  }
  .pg_corporate .section.sec1{
    padding-bottom: 100px;
  }
  .pg_corporate .section.sec2{
    padding-top: 142px;
  }
  .pg_corporate .section.sec2:after{
    margin-left: 0;
    top: 360px;
    left: 21.09%;
  }
  .pg_corporate .section.sec3{
    padding: 84px 0 101px;
    margin-top: 110px;
  }
  .pg_corporate .section.sec4{
    padding-top: 155px;
    padding-bottom: 160px;
  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */

/*流れる文字*/
.infiniteslide_wrap{
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 5;
}
.flowing_letters{
  font-size: clamp(3.75rem, 0.75rem + 15vw, 18.75rem);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: rgba(255,255,255,0.05);

}
.flowing_letters p{
  white-space: nowrap;
  letter-spacing: 0;
}

.corporate_hdr_img{

}
.corporate_hdr_img:before{
  padding-top: 700px;
}
.corporate_hdr_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.corporate_slide_box .simply-scroll .simply-scroll-clip{
  height: auto;
}

.corporate_hdr_wrap{

}
.corporate_hdr_outer{
  width: 100%;
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.corporate_hdr_top{

}
.corporate_hdr_top .sec_sub_tt4 p{
  background: #fff;
}
.corporate_hdr_top .content_desc{
  color: #fff;
}
.corporate_hdr_btm{

}
.corporate_slide_box{
  margin-top: 40px;
}
.corporate_slide{

}
.gjs-dashed .corporate_slide{
  display: flex;
  flex-wrap: wrap;
}
.corporate_slide_item{
  width: 200px;
  margin-right: 20px;
}
.corporate_slide_item .img_fit:before{
  padding-top: 80%;
}
.corporate_slide_box .simply-scroll .simply-scroll-list{
  display: flex;
  flex-wrap: nowrap;
}

/*朝倉工務店が手がける事業用・公共建築*/
.corporate_contents2_item:nth-child(n+2){
  margin-top: 50px;
}
.home_contents1_inner_tt{

}
.corporate_contents1_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.corporate_contents1_item{
  width: 100%;
}
.corporate_contents1_item:nth-child(n+2){
  margin-top: 30px;;
}
.corporate_contents1_item_inner{

}
.corporate_contents1_item_img:before{
  padding-top: 68.08%;
}
.corporate_contents1_item_box{

}
.corporate_contents1_item_tt{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 18px;
}
.corporate_contents1_item_box .content_desc{
  margin-top: 11px;
}

.corporate_contents3_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.corporate_contents3_box1{
  width: 100%;
}
.corporate_contents3_box1_img{

}
.corporate_contents3_box1_img:before{
  padding-top: 60%;
}
.corporate_contents3_box2{
  width: 100%;
  margin-top: 20px;
}
.corporate_contents3_box2 .sec_sub_tt{

}
.corporate_contents3_box2 .sec_sub_tt p{
  background: #fff;
}
.corporate_contents3_box2 .content_desc{

}

/*.テーブル*/
.corporate_contents2_item_tbl_outer{
  background: #fff;
  margin-top: 50px;
}
.corporate_contents2_item_tbl_tt{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.025em;
  background: #194fb1;
  color: #fff;
  text-align: center;
  padding: 11px;
}
.corporate_contents2_item_tbl{
  padding: 30px 16px;;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  position: relative;
}
.smoke{
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 99%);
  pointer-events: none;
}
.corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th{
  background: #f2f2f2;
  font-weight: 700;
  padding: 15px 15px;
}
.corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:first-child{
  width: 250px;
}
.corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:nth-child(2){
  width: 400px;
}
.corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:nth-child(3){
  width: 200px;
}

.gjs-dashed .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:first-child{
  width: auto;
}
.gjs-dashed .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:nth-child(2){
  width: auto;
}
.gjs-dashed .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:nth-child(3){
  width: auto;
}
.corporate_contents2_item_tbl .table_rows_th,
.corporate_contents2_item_tbl .table_rows_td{
  text-align: center;
  font-size: 15px;
}
.corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_th,
.corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_td{
  padding: 18.5px 15px;
}
.corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_th{
  background: #f2f2f2;
  font-weight: 700;
}
.corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_td{
  font-weight: 500;
  background: #fff;
}
.corporate_contents2_item_tbl .table_rows{
  min-width: 1000px;
  max-height: 250px; /* 5行目くらいで隠れる高さに調整 */
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}
/*.corporate_contents2_item_tbl .table_rows:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(to top, white 60%, rgba(255,255,255,0));
  pointer-events: none;
  transition: opacity 0.3s;
}*/
/*.corporate_contents2_item_tbl .table_rows.open {
  max-height: none;
}

.corporate_contents2_item_tbl .table_rows.open::after {
  opacity: 0;
}*/

/*改修・改築にも対応しています。*/
.corporate_contents3_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.corporate_contents3_box1{
  width: 100%;
}
.corporate_contents3_box1 .ordermade_contents1_hdr_tt{

}
.corporate_contents3_box1 .ordermade_contents1_hdr_tt_ja{
  letter-spacing: 0.025em;
  margin-right: -16px;
  color: #fff;
}
.corporate_contents3_box1 .content_desc{
  color: #fff;
  margin-top: 0;
}
.corporate_contents3_box2{
  width: 100%;
}
.corporate_contents3_items{

}
.corporate_contents3_item{

}
.corporate_contents3_item_inner{

}
.corporate_contents3_item_child{

}
.corporate_contents3_item_child:nth-child(n+2){
  margin-top: 20px;
}
.corporate_contents3_item_child_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
  background: #020303;
  color: #fff;
  text-align: center;
  padding: 6px;
}
.corporate_contents3_item_child_tt strong{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.corporate_contents3_item_child_inner{

}
.corporate_contents3_item_child_img{

}

.corporate_contents3_box2_nav{
  width: 117px;
  position: relative;
  margin-top: 33px;
}
.corporate_contents3_box2_nav .slide-prev,
.corporate_contents3_box2_nav .slide-next{
  width: 50px;
  aspect-ratio:1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.corporate_contents3_box2_nav .slide-prev{
  left: 0;
  background-image: url(/system_panel/uploads/images/wh_prev.png);
}
.corporate_contents3_box2_nav .slide-next{
  right: 0;
  background-image: url(/system_panel/uploads/images/wh_next.png);

}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  background: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
  margin: 0 7px;
  display: inline-block;
}
.corporate_contents3_box2_nav .swiper-pagination-bullet{
  opacity: 1;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  width: 20px;
  aspect-ratio:1;
  background: #fff!important;;
}
.corporate_contents3_box2_nav .swiper-pagination-bullet-active{
  background: none!important;
  border: 1px solid #fff;
}

/*強み*/
.ordermade_contents1_wrap.corporate{

}
.ordermade_contents1_wrap.corporate .ordermade_contents2_box1{

}
.ordermade_contents1_wrap.corporate .ordermade_contents2_box2{

}
.ordermade_contents1_wrap.corporate .home_contents1_items{
  margin-top: 0
}



/*アコーディオン*/
/* 高さアニメーション＆グラデ */
.corporate_contents2_item_tbl .js-scrollable {
  transition: height .4s ease;
  overflow-y: hidden!important;
  /* すでに position:relative; overflow:auto; が入っている想定 */
}

/* 折りたたみ時のみ、下端から上に向かう白グラ */
.corporate_contents2_item_tbl .js-scrollable.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 80px; /* ぼかしの厚みはお好みで */
  background: linear-gradient(to top, #fff 60%, rgba(255,255,255,0));
  pointer-events: none;
}

/* 展開時はスクロールヒント非表示（任意） */
.corporate_contents2_item_tbl .js-scrollable.is-expanded + .scroll-hint-icon-wrap {
  display: none;
}

/* もっと見るボタンの体裁（任意） */
.corporate_contents2_item_tbl .read_more .showMore {
  cursor: pointer;
  display: flex;
  padding: 8px 16px;
}
/* 折りたたみ時の白グラ */
.js-scrollable.is-collapsed::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:80px;
  background:linear-gradient(to top, #fff 60%, rgba(255,255,255,0));
  pointer-events:none;
  transition:opacity .3s;
}
.js-scrollable.is-expanded::after{ opacity:0; }

/* ボタンのテキストは擬似要素で。read_more 側はクラス付けない */
.corporate_contents2_item_tbl .read_more .showMore p::before{
  content:"もっと見る";
}
.corporate_contents2_item_tbl .js-scrollable.is-expanded ~ .read_more .showMore p::before{
  content:"閉じる";
}
.corporate_contents2_item_tbl .read_more.is-open .circle{
  background-image: url(//system_panel/uploads/images/up.png);
}
@media (max-width:767px){

  /*見出し*/
  .corporate_hdr_outer{
    top: 50%;
  }
  .corporate_hdr_outer .simply-scroll{
    height: auto;
  }

  .pg_corporate .section.sec2:after{
    top: 250px;
  }
  .corporate_contents3_box2_nav{
    margin: 30px auto 0; 
  }

  .corporate_contents3_box1 .content_desc{
    margin-top: 20px;
  }
  .ordermade_contents1_wrap.corporate .home_contents1_inner{

  }
  .ordermade_contents1_wrap.corporate .home_contents1_inner{
    padding: 30px 16px;
    margin-top: 40px;
  }
}
@media (min-width:768px){

  /*見出し*/
  /*流れる文字*/
  .flowing_letters{

  }
  .flowing_letters p{

  }

  .corporate_hdr_img{

  }
  .corporate_hdr_img:before{
    padding-top: 800px;
  }
  .corporate_hdr_img:after{

  }


  .corporate_hdr_wrap{

  }
  .corporate_hdr_top{

  }
  .corporate_hdr_top .sec_sub_tt4{
    font-size: 32px;
  }
  .corporate_hdr_top .sec_sub_tt4 p{

  }
  .corporate_hdr_top .content_desc{
    margin-top: 45px;
  }
  .corporate_hdr_btm{

  }
  .corporate_slide_box{
    margin-top: 50px;
  }
  .corporate_slide{

  }
  .corporate_slide_item{
    width: 400px;
  }
  .corporate_slide_item .img_fit:before{

  }

  /*朝倉工務店が手がける事業用・公共建築*/
  .corporate_contents2_item:nth-child(n+2){
    margin-top: 100px;
  }
  .home_contents1_inner_tt{
    font-size: 30px;
  }
  .pg_home .section.sec1 .home_contents1_inner_tt{
    font-size: 20px;
    font-weight: 600;
  }
  .corporate_contents1_items{
    margin-inline:-27.5px;
    margin-top: 40px;
  }
  .corporate_contents1_item{
    width: 50%;
    padding-inline:27.5px;
  }

  .corporate_contents1_item:nth-child(n+2){
    margin-top: 0;
  }
  .corporate_contents1_item:nth-child(n+3){
    margin-top: 40px;;
  }
  .corporate_contents1_item_inner{

  }
  .corporate_contents1_item_img:before{

  }
  .corporate_contents1_item_box{

  }
  .corporate_contents1_item_tt{
    font-size: 24px;
  }
  .corporate_contents1_item_box .content_desc{

  }

  .corporate_contents3_box{
    margin-top: 60px;
  }
  .corporate_contents3_box1{

  }
  .corporate_contents3_box1_img{

  }
  .corporate_contents3_box1_img:before{

  }
  .corporate_contents3_box2{
    margin-top: 30px;
  }
  .corporate_contents3_box2 .sec_sub_tt{
    font-size: 24px;
  }
  .corporate_contents3_box2 .sec_sub_tt p{

  }
  .corporate_contents3_box2 .content_desc{

  }

  /*.テーブル*/
  .corporate_contents2_item_tbl_outer{
    margin-top: 100px;
  }
  .corporate_contents2_item_tbl_tt{
    font-size: 24px;
  }
  .corporate_contents2_item_tbl{
    padding: 40px 80px;;
  }
  .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th{

  }
  .corporate_contents2_item_tbl .table_rows_th,
  .corporate_contents2_item_tbl .table_rows_td{

  }

  .corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_th,
  .corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_td{

  }
  .corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_th{

  }
  .corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_td{

  }
  .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:first-child{
    width: 200px;
  }
  .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:nth-child(2){
    width: 600px;
  }
  .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:nth-child(3){
    width: 200px;
  }

  /*改修・改築にも対応しています。*/
  .corporate_contents3_wrap{

  }
  .corporate_contents3_box1{

  }
  .corporate_contents3_box1 .ordermade_contents1_hdr_tt{

  }
  .corporate_contents3_box1 .content_desc{

  }
  .corporate_contents3_box2{
    margin-top: 40px;
  }
  .corporate_contents3_box2 {

  }
  .corporate_contents3_item{

  }
  .corporate_contents3_box2 .swiper-slide{
    width: 420px;
  }
  .corporate_contents3_item_inner{

  }
  .corporate_contents3_item_child{

  }
  .corporate_contents3_item_child_tt{
    font-size: 20px;
  }
  .corporate_contents3_item_child_tt strong{
    font-size: 14px;
  }
  .corporate_contents3_item_child_inner{

  }
  .corporate_contents3_item_child_img{

  }

  .pg_corporate .section.sec4 .home_contents1_inner_tt{
    font-size: 20px;
  }
  .ordermade_contents1_wrap.corporate .home_contents1_items{
    margin-top: 0
  }
  .ordermade_contents1_wrap.corporate .home_contents1_item:after{
    height: 240px;
  }
  .ordermade_contents1_wrap.corporate .home_contents1_inner{
    margin-top:70px;
  }
}
@media (min-width:1024px){
  /*見出し*/
  .corporate_hdr_top .sec_sub_tt4{
    font-size: 40px;
  }

}
@media (min-width:1200px){
  /*見出し*/
  /*流れる文字*/
  .flowing_letters{

  }
  .flowing_letters p{

  }

  .corporate_hdr_img{

  }
  .corporate_hdr_img:before{
    padding-top: 932px;
  }
  .corporate_hdr_img:after{

  }

  .corporate_hdr_wrap{

  }
  .corporate_hdr_top{

  }
  .corporate_hdr_top .sec_sub_tt4{
    font-size: 40px;
  }
  .corporate_hdr_top .sec_sub_tt4 p{

  }
  .corporate_hdr_top .content_desc{
    margin-top: 45px;
  }
  .corporate_hdr_btm{

  }
  .corporate_slide_box{
    margin-top: 80px;
  }
  .corporate_slide{

  }
  .corporate_slide_item{
    width: 500px;
    min-width: 500px;
    margin-right: 40px;
  }
  .corporate_slide_item .img_fit:before{

  }

  /*朝倉工務店が手がける事業用・公共建築*/
  .corporate_contents2_item:nth-child(n+2){
    margin-top: 135px;
  }
  .corporate_contents2_item .home_contents1_inner_tt{
    font-size: 36px;
  }
  .corporate_contents1_items{
    margin-top: 60px;
  }
  .corporate_contents1_item{
    width: 33.333%;
  }
  .corporate_contents1_item:nth-child(n+3){
    margin-top: 0;
  }
  .corporate_contents1_item:nth-child(n+4){
    margin-top: 60px;;
  }
  .corporate_contents1_item_inner{

  }
  .corporate_contents1_item_img:before{

  }
  .corporate_contents1_item_box{

  }
  .corporate_contents1_item_tt{
    font-size: 30px;
  }
  .corporate_contents1_item_box .content_desc{

  }
  .ordermade_contents1_wrap .home_contents1_inner_tt{
    font-size: 24px;
  }

  .corporate_contents3_box{
    margin-top: 60px;
  }
  .corporate_contents3_box1{
    width: 32.89%;
  }
  .corporate_contents3_box1_img{

  }
  .corporate_contents3_box1_img:before{

  }
  .corporate_contents3_box2{
    width: 63.48%;
    margin-top: 0;
  }
  .corporate_contents3_box2 .sec_sub_tt{
    font-size: 24px;
  }
  .corporate_contents3_box2 .sec_sub_tt p{

  }
  .corporate_contents3_box2 .content_desc{

  }

  /*.テーブル*/
  .corporate_contents2_item .corporate_contents3_box1{
    width: 32.89%;
  }
  .corporate_contents2_item .corporate_contents3_box2{
    width: 63.48%;
    padding-top: 0;
  }
  .corporate_contents2_item_tbl_outer{
    margin-top: 160px;
  }
  .corporate_contents2_item_tbl_tt{
    font-size: 30px;
  }
  .corporate_contents2_item_tbl{

  }
  .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th{

  }
  .corporate_contents2_item_tbl .table_rows_th,
  .corporate_contents2_item_tbl .table_rows_td{

  }
  .corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_th,
  .corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_td{

  }
  .corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_th{

  }
  .corporate_contents2_item_tbl .table_rows_tr:nth-child(n+2) .table_rows_td{

  }
  .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:first-child{
    width: 350px;
  }
  .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:nth-child(2){
    width: auto;
  }
  .corporate_contents2_item_tbl .table_rows_tr:first-child .table_rows_th:nth-child(3){
    width: 309px;
  }

  /*改修・改築にも対応しています。*/
  .corporate_contents3_wrap{

  }
  .corporate_contents3_box1{
    width: 38.48%;
  }
  .corporate_contents3_box1 .ordermade_contents1_hdr_tt{

  }
  .corporate_contents3_box1 .ordermade_contents1_hdr_tt_ja{
    white-space: nowrap;
  }
  .corporate_contents3_box1 .content_desc{
    margin-top: 20px;
  }
  .corporate_contents3_box2{
    width: 53.94%;
    padding-top: 53px;
  }
  .corporate_contents3_box2_inner{
    margin-right: calc(50% - 50vw);
  }
  .corporate_contents3_items{

  }
  .corporate_contents3_item{

  }
  .corporate_contents3_item_inner{

  }
  .corporate_contents3_item_child{

  }
  .corporate_contents3_item_child_tt{

  }
  .corporate_contents3_item_child_tt strong{

  }
  .corporate_contents3_item_child_inner{

  }
  .corporate_contents3_item_child_img{

  }

  /*強み*/
  .ordermade_contents1_wrap.corporate{

  }
  .ordermade_contents1_wrap.corporate .ordermade_contents2_box1{
    order: 2;
  }
  .ordermade_contents1_wrap.corporate .ordermade_contents2_box2{
    order: 1;
  }
  .pg_corporate .section.sec4 .home_contents1_inner_tt{
    font-size: 20px;
  }
  .ordermade_contents1_wrap.corporate .home_contents1_items{
    margin-top: 49px;
  }
  .ordermade_contents1_wrap.corporate .home_contents1_inner{
    padding: 1px 57px 51px 44px;
    margin-top: 100px;
  }
}
@media (min-width:1470px){


}
@media (min-width:1720px){
  .corporate_contents3_box1 .content_desc{
    margin-top: 0;
  }

}

@media (max-width:1199px){

  .pg_ordermade .section.sec2:after{
    width: 54.86%;
    top: 18%;
  }
  .pg_reform.pg_ordermade .section.sec2:after{
    width: 48.58%;
    top: 15%;
  }
}
