@charset "UTF-8";

:root {
  --main-color: #2b6796;
  --sub-color: #e7161a;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;
  background: #f8f2e9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



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

@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;*/
  color: #8fc31f;
}
img{
  max-width: 100%;
  width: auto;
}

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

.img_fit{
  position: relative;
}
.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;
}
.img_fit img.company_gallery_item_bottom {
    object-position: bottom;
}

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:1536px){
  .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;
}


.hdr1{
  background-color: #f8f2e9!important;
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mv_box1{
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.mv_box2{
  width: 100%;
}

.mv_logo{
  
}
.mv_logo img{
  width: 120px;
}

.mv_sns{
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.mv_sns a{
  width: 25px;
  margin-left: 8px;
  margin-right: 8px;
}

.mv_tel{
  text-align: center;
  margin-top: 20px; 
}
.mv_tel_p1{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 20px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1;
}
.mv_tel_p1:before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-image: url('/system_panel/uploads/images/phone-flip-solid.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  
}
.mv_tel_p2{
  font-size: 14px;
  font-weight: 700;
  margin-top: 10px;
}


/* MVテキスト */
.mv_txt{
  margin-top: 20px;
  text-align: center;
}
.mv_txt_h1{
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5789;
  text-align: center;
}
.mv_txt_h1:after{
  content: "";
  display: block;
  height: 1px;
  background: #000;
  margin-top: 15px;
}

.mv_img_scroll{
  border-radius: 50px 0 0 0;
  overflow: hidden;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 380px;
  
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (max-width:767px){
  
  
  .mv_box1,
  .mv_box2{
    display: contents;
  }
  .mv_logo{
    order: 1;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .mv_img_scroll{
    order: 2;
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    overflow: auto;
  }
  
  .mv_img.img_fit{
    /*aspect-ratio: 3 / 2;*/
    /*height: 380px;*/
  }
  .mv_img.img_fit:before{
    padding-top: 0;
  }
  .mv_img.img_fit img{
    object-fit: initial;
    font-family: none;
    position: static;
    width: auto;
    max-width: none;
    height: 380px;
  }
  
  .mv_txt{
    order: 3;
    width: 100%;
  }
  .mv_txt_h1:after{
    margin-top: 25px;
  }
  .mv_sns{
    order: 4;
    width: 100%;
  }
  .mv_tel{
    order: 5;
    width: 100%;
  }
  
}
@media (min-width:768px){

  /* MV */
  .mv{
  }

  .mv_box1{
    width: 34.375%;
    width: 44%;
  }
  .mv_box2{
    width: 65.625%;
    width: 56%;
  }
  
  .mv_logo{
    
  }
  .mv_logo img{
    width: 170px;
  }
  .mv_txt{
    margin-top: 20px;
  }
  .mv_txt_h1{
    font-size: 18px;
  }
  
  .mv_sns{
    margin-top: 20px;
  }
  .mv_sns a{
    width: 25px;
  }
  .mv_tel{
    margin-top: 20px; 
  }
  .mv_tel_p1{
    font-size: 24px;
  }
  .mv_tel_p1:before{
    width: 25px;
    height: 25px;
  }
  .mv_tel_p2{
    font-size: 14px;
    margin-top: 10px;
  }

  .mv_img_scroll{
    border-radius: 100px 0 0 0;
  }
  .mv_img.img_fit:before{
    padding-top: 350px;
  }
  
  
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_logo img{
    width: 210px;
  }
  
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_h1{
    font-size: 22px;
  }

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

  /* MV */
  .mv{
  }
  .mv_box1{
    width: 34.375%;
  }
  .mv_box2{
    width: 65.625%;
  }
  
  .mv_img_scroll{
    border-radius: 150px 0 0 0;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt{
    margin-top: 40px;
  }
  .mv_txt_h1{
    font-size: 22px;
  }
  .mv_sns{
    margin-top: 30px;
  }
  .mv_sns a{
    width: 37px;
    margin-left: 13px;
    margin-right: 13px;
  }
}

@media (min-width:1470px){
  
  .mv_logo img{
    width: 300px;
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }
}
@media (min-width:1536px){
  
  .mv_logo{
    
  }
  .mv_logo img{
    
  }
  
  .mv_img.img_fit:before{
    padding-top: 640px;
  }
  
  /* MVテキスト */
  .mv_txt{
    margin-top: 90px;
  }
  .mv_txt_h1{
    font-size: 28px;
  }
  
  .mv_sns{
    margin-top: 45px;
  }
  
  .mv_tel{
    margin-top: 50px;
  }
  .mv_tel_p1{
    font-size: 24px;
  }
  .mv_tel_p2{
    font-size: 14px;
    margin-top: 10px;
  }
}

@media (min-width:1720px){
  
  .mv_logo{
    
  }
  .mv_logo img{
    width: 433px;
  }
  .mv_img.img_fit:before{
    padding-top: 840px;
  }
  
  .mv_txt_h1{
    font-size: 34px;
  }
}

@media (min-width:1920px){
  
  .mv_txt_h1{
    font-size: 38px;
  }
  
}



/*******************************
*　サイドバー
********************************/

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

/* バナー */
.sidebar_bn{
  display: block;
  background: #8fc31f;
  padding: 3px 0 3px 3px;
  border-radius: 20px 0 0 20px;
  transition: 0.2s all;
}
.sidebar_bn img{
  width: 40px;
  
}
.sidebar_bn:hover{
  transform: scale(1.05);
  filter: brightness(1.05);
  background: #eb6100;
}
.sidebar_bn:hover img{
  
}


@media (max-width:767px){
  .sidebar{
    display: none;
  }
}
@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;
  }

}


/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.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{
  width: 250px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 29px;
  background: #eb6100;
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  /*content: "→";*/
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  
  background-image: url('/system_panel/uploads/images/right-long-solid_wh.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 8px;
}
.office.read_more a:after,
.about_point_item_title_outer .read_more a:after{
  background-image: url('/system_panel/uploads/images/right-long-solid_or.png');
}
.lineup.read_more a:after{
  background: none;
  width: auto;
  height: auto;
}



.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
  background: #8fc31f;
}
.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;
  }
  
  /**/
  .content_desc.sp_center{
    text-align: center;
  }

}
@media (min-width:768px) and (max-width:1023px){
  /**/
  .content_desc.tb_center{
    text-align: center;
  }
}
@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: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 285px;
    font-size: 15px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 18px;
  }
  .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;
  }

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

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

  /* コンテナ */
  .container.wide{
    max-width: 1620px;
    padding-left: 50px;
    padding-right: 50px;
  }

}

.section.yellow{
  background: #fef8b3;
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}
.section.yellow:before,
.section.yellow:after{
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  pointer-events: none;
}
.section.yellow:before{
  top: 0;
  height: 589px;
  background-position: center top;
  background: url(/system_panel/uploads/images/20250603140944893038.png)no-repeat top center/contain;
}
.section.yellow:after{
  bottom: 0;
  height: 481px;
  background-position: center bottom;
  background: url(/system_panel/uploads/images/20250603140944489337.png)no-repeat bottom center/contain;
}



/*******************************
*　HOME
********************************/
.pg_home{
  position: relative;
  z-index: 1;
}
.pg_home .section{
  position: relative;
  z-index: 0;
}
.pg_home .section.sec1{
  padding-top: 50px;
  padding-bottom: 130px;
  z-index: 1;
}
.pg_home .section.sec2{
  
}
.pg_home .section.sec2.yellow:before{
  top: -100px;
}
.pg_home .section.sec2.yellow:after{
  bottom: -80px;
}
.pg_home .section.sec3{
  padding-top: 90px;
  padding-bottom: 100px;
  z-index: 1;
}
.pg_home .section.sec4{
}
.pg_home .section.sec4.yellow:before{
  top: -100px;
}
.pg_home .section.sec4.yellow:after{
  bottom: -80px;
}
.pg_home .section.sec5{
  padding-top: 100px;
  padding-bottom: 150px;
}
.pg_home .section.sec6{
  
}
.pg_home .section.sec6.yellow:before{
  top: -100px;
}
.pg_home .section.sec6.yellow:after{
  bottom: -80px;
}

/* イラスト */
.home_sec_illust1,
.home_sec_illust2,
.home_sec_illust3{
  position: relative;
  z-index: 1;
}

[class*="home_sec_illust"] [class*="parts"]{
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
}

.home_sec_illust1 .parts1{
  width: calc(486px * 0.3);
  aspect-ratio: 486 / 215;
  background-image: url('/system_panel/uploads/images/reason_illust1.png');
  top: -95px;
  left: 0;
}
.home_sec_illust1 .parts2{
  width: calc(313px * 0.3);
  aspect-ratio: 312 / 313;
  background-image: url('/system_panel/uploads/images/reason_illust2.png');
  top: -105px;
  right: 0;
}
.home_sec_illust2 .parts1{
  width: calc(609px * 0.2);
  aspect-ratio: 609 / 374;
  background-image: url('/system_panel/uploads/images/works_illust1.png');
  top: -85px;
  left: 10px;
}
.home_sec_illust2 .parts2{
  width: calc(626px * 0.2);
  aspect-ratio: 626 / 280;
  background-image: url('/system_panel/uploads/images/works_illust2.png');
  top: -60px;
  right: 10px;
}

.home_sec_illust3 .parts1{
  width: calc(280px * 0.3);
  aspect-ratio: 280 / 207;
  background-image: url('/system_panel/uploads/images/spiceup_illust1.png');
  top: -100px;
  left: 0;
}
.home_sec_illust3 .parts2{
  width: calc(208px * 0.3);
  aspect-ratio: 208 / 156;
  background-image: url('/system_panel/uploads/images/spiceup_illust2.png');
  top: -115px;
  right: 4px;
}
.home_sec_illust3 .parts3{
  width: calc(223px * 0.3);
  aspect-ratio: 223 / 145;
  background-image: url('/system_panel/uploads/images/spiceup_illust3.png');
  top: 35px;
  right: -5px;
}

@media (min-width:768px){
  
  /* セクション設定 */
  .pg_home .section.sec1{
    padding-top: 50px;
    padding-bottom: 250px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec2.yellow:before{
    top: -200px;
  }
  .pg_home .section.sec2.yellow:after{
    bottom: -150px;
  }
  .pg_home .section.sec3{
    padding-top: 90px;
    padding-bottom: 215px;
  }
  .pg_home .section.sec4{
  }
  .pg_home .section.sec4.yellow:before{
    top: -200px;
  }
  .pg_home .section.sec4.yellow:after{
    bottom: -150px;
  }
  .pg_home .section.sec5{
    padding-top: 150px;
    padding-bottom: 200px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec6.yellow:before{
    top: -200px;
  }
  .pg_home .section.sec6.yellow:after{
    bottom: -150px;
  }
  
  /* イラスト */
  .home_sec_illust1 .parts1{
    width: 486px;
    width: calc(486px * 0.6);
    top: -185px;
    left: 0;
  }
  .home_sec_illust1 .parts2{
    width: calc(313px * 0.6);
    top: -205px;
    right: 0;
  }
  .home_sec_illust2 .parts1{
    width: calc(609px * 0.5);
    top: -200px;
    left: 15px;
  }
  .home_sec_illust2 .parts2{
    width: calc(626px * 0.5);
    top: -175px;
    right: 15px;
  }

  .home_sec_illust3 .parts1{
    width: calc(280px * 0.6);
    top: -165px;
    left: 0;
  }
  .home_sec_illust3 .parts2{
    width: calc(208px * 0.6);
    top: -245px;
    right: 4px;
  }
  .home_sec_illust3 .parts3{
    width: calc(223px * 0.6);
    top: 30px;
    right: 0;
  }

}
@media (min-width:1024px){
  
  .pg_home .section.sec6.yellow:after{
    bottom: -230px;
  }
  
}
@media (min-width:1200px){
  
  .pg_home .section.sec6.yellow:after{
    bottom: -275px;
  }
  
}
@media (min-width:1470px){
  
  /* セクション設定 */
  .pg_home .section.sec1{
    padding-top: 50px;
    padding-bottom: 250px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec2.yellow:before{
    top: -313px;
  }
  .pg_home .section.sec2.yellow:after{
    bottom: -236px;
  }
  .pg_home .section.sec3{
    padding-top: 90px;
    padding-bottom: 415px;
  }
  .pg_home .section.sec4{
  }
  .pg_home .section.sec4.yellow:before{
    top: -435px;
  }
  .pg_home .section.sec4.yellow:after{
    bottom: -275px;
  }
  .pg_home .section.sec5{
    padding-top: 235px;
    padding-bottom: 285px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec6.yellow:before{
    top: -255px;
  }
  .pg_home .section.sec6.yellow:after{
    bottom: -300px;
  }
  
  /* イラスト */
  .home_sec_illust1 .parts1{
    width: 486px;
    width: calc(486px * 0.7);
    top: -185px;
    left: 0;
  }
  .home_sec_illust1 .parts2{
    width: calc(313px * 0.7);
    top: -110px;
    right: 0;
  }
  .home_sec_illust2 .parts1{
    width: calc(609px * 0.7);
    top: -344px;
    left: 194px;
  }
  .home_sec_illust2 .parts2{
    width: calc(626px * 0.7);
    top: -320px;
    right: 202px;
  }

  .home_sec_illust3 .parts1{
    width: calc(280px * 0.7);
    top: -150px;
    left: 0;
  }
  .home_sec_illust3 .parts2{
    width: calc(208px * 0.7);
    top: -278px;
    right: 4px;
  }
  .home_sec_illust3 .parts3{
    width: calc(223px * 0.7);
    top: 106px;
    right: 94px;
  }
  
}
@media (min-width:1536px){
 
  .pg_home .section.sec6.yellow:after{
    bottom: -380px;
  }
}
@media (min-width:1720px){
  
  /* イラスト */
  .home_sec_illust1 .parts1{
    width: 486px;
    width: calc(486px * 1);
    top: -185px;
    left: 0;
  }
  .home_sec_illust1 .parts2{
    width: calc(313px * 1);
    top: -110px;
    right: 0;
  }
  .home_sec_illust2 .parts1{
    width: calc(609px * 1);
    top: -344px;
    left: 194px;
  }
  .home_sec_illust2 .parts2{
    width: calc(626px * 1);
    top: -320px;
    right: 202px;
  }

  .home_sec_illust3 .parts1{
    width: calc(280px * 1);
    top: -150px;
    left: 0;
  }
  .home_sec_illust3 .parts2{
    width: calc(208px * 1);
    top: -278px;
    right: 4px;
  }
  .home_sec_illust3 .parts3{
    width: calc(223px * 1);
    top: 106px;
    right: 94px;
  }
  
}


/* コンセプト */

.home_concept_head{
  
}
.home_concept_head .sec_title{
  
}
.home_concept_head .sec_title_en{
  font-size: 65px;
}


.home_concept{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
* + .home_concept{
  margin-top: 0;
}
.home_concept_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_concept_box2{
  width: 100%;
  order: 1;
  padding-top: 28.38%;
}
.home_concept_box3{
  width: 100%;
  order: 3;
}

.home_concept_title{
  font-size: 50px;
  font-weight: 900;
  line-height: 1.3125;
  color: #fea449;
}
.home_concept_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6875;
  text-align: justify;
  margin-top: 20px;
}
.home_concept_img{
  position: relative;
  z-index: 1;
  
}
.home_concept_img_main{
  border-radius: 0 30px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home_concept_img_main.img_fit:before{
  padding-top: 59.35%;
}
.home_concept_img_sub{
  position: absolute;
  z-index: 2;
}
.home_concept_img_sub.pos1{
  width: 55.225%;
  bottom: calc(100% - 24px);
  left: -5px;
}
.home_concept_img_sub.pos1_01{
  width: 49.225%;
  bottom: calc(100% - 24px);
  left: -5px;
}
.home_concept_img_sub.pos2{
  width: 19.096%;
  bottom: calc(100% - 40px);
  right: 34px;
}

.home_concept_box3 .read_more{
  margin-top: 30px;
}


/* 選ばれる理由(タイトル) */
.home_reason_head{
  text-align: center;
  margin-bottom: 40px;
}
.home_reason_head_title1{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}
.home_reason_head_title2{
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
}


/* 選ばれる理由 */
.home_reason{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_reason_item{
  width: 100%;
  padding: 0 5px;
}
.home_reason_item:nth-child(n+2){
  margin-top: 50px;
}
.home_reason_item_inner{
  position: relative;
  z-index: 1;
}
.home_reason_item_img{
  overflow: hidden;
}
.home_reason_item_img.img_fit:before{
  padding-top: 75%;
}
.home_reason_item:nth-child(3n+1) .home_reason_item_img{
  border-radius: 30px 0 0 0;
}
.home_reason_item:nth-child(3n+2) .home_reason_item_img{
  border-radius: 0 0 30px 0;
}
.home_reason_item:nth-child(3n) .home_reason_item_img{
  border-radius: 0 30px 0 0;
}

.home_reason_item_num{
  font-size: 50px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #548d25;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  
  text-shadow    : 
       3px  3px 1px #ffffff,
      -3px  3px 1px #ffffff,
       3px -3px 1px #ffffff,
      -3px -3px 1px #ffffff,
       3px  0px 1px #ffffff,
       0px  3px 1px #ffffff,
      -3px  0px 1px #ffffff,
       0px -3px 1px #ffffff;  
}
.home_reason_item_num p{
  letter-spacing: 0;
}

.home_reason_item_title{
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  border-radius: 10px;
  background: #FFF;
  padding: 6px 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.home_reason_item_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}
.home_reason_item_txt p{
  letter-spacing: 0.070em;
}

/* トレーラーハウスについて */
.home_about_head{
  text-align: center;
  margin-bottom: 50px;
}
.home_about_head_en{
  
}
.home_about_head_ja{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  color: #fea449;
  margin-top: 6px;
}

.home_about{
  display: flex;
  flex-wrap: wrap;
  margin: 0 0;
}
.home_about_item{
  width: 100%;
  padding: 0 0;
}
.home_about_item:nth-child(n+2){
  margin-top: 30px;
}
.home_about_item_inner{
  position: relative;
  z-index: 1;
}
.home_about_item_cover{
  position: relative;
  z-index: 1;
  border-bottom: 10px solid #6fbab6;
  overflow: hidden;
}

.home_about_item:nth-child(4n+1) .home_about_item_cover{
  border-color: #6fbab6;
}
.home_about_item:nth-child(4n+2) .home_about_item_cover{
  border-color: #fff45c;
}
.home_about_item:nth-child(4n+3) .home_about_item_cover{
  border-color: #88abda;
}
.home_about_item:nth-child(4n) .home_about_item_cover{
  border-color: #f19ec2;
}

.home_about_item:nth-child(4n+1) .home_about_item_cover{
  border-radius: 30px 0 0 0;
}
.home_about_item:nth-child(4n+2) .home_about_item_cover{
  border-radius: 0 30px 0 0;
}
.home_about_item:nth-child(4n+3) .home_about_item_cover{
  border-radius: 30px 0 0 0;
}
.home_about_item:nth-child(4n) .home_about_item_cover{
  border-radius: 0 30px 0 0;
}


.home_about_item_cover_a{
  display: block;
  position: relative;
  z-index: 1;
}
.home_about_item_cover_a:after{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background-image: url(/system_panel/uploads/images/icon_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.2s all;
}
.home_about_item_cover_a:hover:after{
  margin-right: -5px;
}

.home_about_item_cover_img{
  overflow: hidden;
}
.home_about_item_cover_img img{
  transition: 0.2s all;
}
.home_about_item_cover_a:hover .home_about_item_cover_img img{
  transform: scale(1.05);
}
.home_about_item_cover_img:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0,0,0,0.3);
  pointer-events: none;
}
.home_about_item_cover_img.img_fit:before{
  padding-top: 56.57%;
}
.home_about_item_cover_title{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #FFF;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10px;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  
  text-shadow: 2.5px 4.33px 5px rgba(24, 24, 24, 1);
}
.home_about_item_cover_title_num{
  font-size: 30px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 10px;
}
.home_about_item_cover_title_num:after{
  content: "";
  display: block;
  height: 2px;
  background: #FFF;
  margin-top: 10px;
}
.home_about_item_cover_title_txt{
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.home_about_item_title{
  margin-top: -28px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}
.home_about_item_title_en{
  font-size: 50px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fea449;
  text-shadow: 0px 1px 0.75px rgba(24, 24, 24);
}
.home_about_item_title_ja{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.home_about_item_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6875;
  text-align: justify;
}

/* SPICE UP */
.home_spiceup{
  position: relative;
  z-index: 1;
  min-height: 600px;
  padding: 50px 20px 200px 20px;
}
.home_spiceup_msg{
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.home_spiceup_bg{
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 30px;
  overflow: hidden;
}
.home_spiceup_bg:before{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.home_spiceup_bg img{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home_spiceup_img{
  width: 160px;
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: -20px;
}
.home_spiceup_img img{
  
}
.home_spiceup_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.4;
  line-height: 1.875;
  text-align: justify;
  position: relative;
  z-index: 1;
  color: #FFF;
  text-shadow: 2.5px 4.33px 25px rgba(24, 24, 24, 1);
}
.home_spiceup .read_more{
  margin-top: 20px;
}


.top_open_img {
  object-fit: contain;
}


/* コピー用 */
@media (max-width:374px){

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

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

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  

  /* コンセプト */
  .home_concept_head .sec_title_en{
    font-size: 78px;
  }
  .home_concept{
  }
  * + .home_concept{
    margin-top: 30px;
  }
  
  /*.home_concept_box1{
    width: 44.73%;
    order: 1;
    margin-top: 0;
  }
  .home_concept_box2{
    width: 50.98%;
    order: 2;
    padding-top: 0;
  }
  .home_concept_box3{
    width: 44.73%;
    order: 3;
  }
  */
  .home_concept_title{
    font-size: 70px;
  }
  .home_concept_txt{
    font-size: 16px;
    margin-top: 20px;
  }
  .home_concept_img{
  }
  .home_concept_img_main{
    border-radius: 0 50px 0 0;
  }
  .home_concept_img_sub{
    
  }
  .home_concept_img_sub.pos1{
    /*width: 55.225%;*/
    bottom: calc(100% - 24px);
    left: -5px;
  }
  .home_concept_img_sub.pos2{
    /*width: 19.096%;*/
    bottom: calc(100% - 40px);
    right: 34px;
  }

  .home_concept_box3 .read_more{
    margin-top: 30px;
  }


  /* 選ばれる理由(タイトル) */
  .home_reason_head{
    font-size: 30px;
    margin-bottom: 50px;
  }
  .home_reason_head_title1{
    font-size: 1em;
  }
  .home_reason_head_title2{
    font-size: 1.7894em;
  }


  /* 選ばれる理由 */
  .home_reason{
    margin: 0 -15px;
    justify-content: center;
  }
  .home_reason_item{
    width: 33.333%;
    width: 50%;
    padding: 0 15px;
  }
  .home_reason_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_reason_item:nth-child(3n+1){
    
  }
  .home_reason_item:nth-child(3n+2){
    margin-top: 65px;
  }
  .home_reason_item:nth-child(3n) {
    /*margin-top: 130px;*/
    margin-top: 65px;
  }
  .home_reason_item:nth-child(3n+1) .home_reason_item_img{
    border-radius: 50px 0 0 0;
  }
  .home_reason_item:nth-child(3n+2) .home_reason_item_img{
    border-radius: 0 0 50px 0;
  }
  .home_reason_item:nth-child(3n) .home_reason_item_img{
    border-radius: 0 50px 0 0;
  }
  .home_reason_item_inner{
  }
  .home_reason_item_num{
    font-size: 60px;
  }
  .home_reason_item_title{
    font-size: 18px;
    padding: 10px 10px;
    margin-top: 10px;
    margin-bottom: 18px;
  }
  .home_reason_item_txt{
    font-size: 16px;
  }
  
  
  /* トレーラーハウスについて */
  .home_about_head{
    margin-bottom: 60px;
  }
  .home_about_head_en{

  }
  .home_about_head_ja{
    font-size: 40px;
    margin-top: 6px;
  }
  .home_about{
  }
  .home_about_item{
    width: 100%;
  }
  .home_about_item:nth-child(n+2){
    margin-top: 50px;
  }
  
  .home_about_item_cover_a:after{
    bottom: 20px;
    right: 42px;
    width: 30px;
    height: 30px;
  }
  
  .home_about_item_cover_title{
    top: 50%;
    left: 10px;
    right: 10px;
  }
  .home_about_item_cover_title_num{
    font-size: 50px;
    margin-bottom: 10px;
  }
  .home_about_item_cover_title_num:after{
    margin-top: 10px;
  }
  .home_about_item_cover_title_txt{
    font-size: 20px;
  }
  .home_about_item_title{
    margin-top: -33px;
    margin-bottom: 20px;
  }
  .home_about_item_title_en{
    font-size: 60px;
  }
  .home_about_item_title_ja{
    font-size: 20px;
  }
  .home_about_item_txt{
    font-size: 16px;
    padding-right: 20px;
  }
  

  /* SPICE UP */
  .home_spiceup{
    min-height: 600px;
    padding: 50px 30px 150px 30px;
  }
  .home_spiceup_msg{
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .home_spiceup_bg{
    border-radius: 50px;
  }
  .home_spiceup_img{
    width: 220px;
    right: 10px;
    bottom: -32px;
  }
  .home_spiceup_txt{
    font-size: 20px;
    line-height: 2.4;
  }
  .home_spiceup .read_more{
    margin-top: 40px;
  }

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

  /* コンセプト */
  .home_concept_head .sec_title_en{
    font-size: 100px;
  }
  * + .home_concept{
    margin-top: 50px;
  }
  
  .home_concept{
    /*align-items: flex-end;*/
    align-items: center;
  }
  .home_concept_box1{
    width: 44.73%;
    order: 1;
    margin-top: 0;
  }
  .home_concept_box2{
    width: 50.98%;
    order: 2;
    padding-top: 0;
  }
  .home_concept_box3{
    width: 44.73%;
    order: 3;
  }

  .home_concept_title{
    font-size: 60px;
  }
  .home_concept_txt{
    margin-top: 32px;
  }
  .home_concept_img_sub{
    
  }
  .home_concept_img_sub.pos1{
  }
  .home_concept_img_sub.pos2{
  }

  .home_concept_box3 .read_more{
    /*margin-top: 50px;*/
  }

  /* 選ばれる理由(タイトル) */
  .home_reason_head{
    font-size: 38px;
    margin-bottom: 75px;
  }

  /* 選ばれる理由 */
  .home_reason{
    margin: 0 -20px;
  }
  .home_reason_item{
    width: 33.333%;
    padding: 0 20px;
  }
  .home_reason_item:nth-child(3n+1){
    
  }
  .home_reason_item:nth-child(3n+2){
    margin-top: 65px;
  }
  .home_reason_item:nth-child(3n) {
    margin-top: 130px;
  }
  .home_reason_item_inner{
  }
  .home_reason_item_num{
    font-size: 79px;
  }
  .home_reason_item_title{
    font-size: 18px;
    padding: 10px 18px 11px 18px;
  }
  
  
  /* トレーラーハウスについて */
  .home_about_head{
    
  }
  .home_about_head_en{
    
  }
  .home_about_head_ja{
    font-size: 50px;
  }
  
  .home_about{
  }
  .home_about_item{
    width: 50%;
    padding: 0 0;
  }
  .home_about_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_about_item:nth-child(n+3){
    margin-top: 50px;
  }
  
  .home_about_item:nth-child(4n+1) .home_about_item_cover{
    border-radius: 50px 0 0 0;
  }
  .home_about_item:nth-child(4n+2) .home_about_item_cover{
    border-radius: 00;
  }
  .home_about_item:nth-child(4n+3) .home_about_item_cover{
    border-radius: 0;
  }
  .home_about_item:nth-child(4n) .home_about_item_cover{
    border-radius: 0 50px 0 0;
  }

  
  /* SPICE UP */
  .home_spiceup{
    padding: 70px 275px 70px 60px;
  }
  .home_spiceup_msg{
    /*font-size: 38px;*/
    /*margin-top: 50px;*/
    /*margin-bottom: 30px;*/
  }
  .home_spiceup_bg{
    border-radius: 50px;
  }
  .home_spiceup_img{
    width: 300px;
    right: 10px;
    bottom: -32px;
  }
  .home_spiceup_txt{
    font-size: 20px;
    line-height: 2.4;
  }
  
}
@media (min-width:1200px){

  /* コンセプト */
  .home_concept_head .sec_title_en{
    font-size: 130px;
  }
  * + .home_concept{
    margin-top: 90px;
  }
  .home_concept{
    align-items: flex-end;
  }
  .home_concept_title{
    font-size: 70px;
  }
  
  
  /* 選ばれる理由 */
  .home_reason{
    margin: 0 -20px;
  }
  .home_reason_item{
    width: 33.333%;
    padding: 0 20px;
  }
  .home_reason_item_num{
    font-size: 79px;
  }
  .home_reason_item_title{
    font-size: 18px;
    padding: 10px 18px 11px 18px;
  }
  
  /* トレーラーハウスについて */
  .home_about_head{
    margin-bottom: 60px;
  }
  .home_about_head_en{

  }
  .home_about_head_ja{
    /*font-size: 80px;*/
  }
  .home_about{
  }
  .home_about_item{
    width: 50%;
    padding: 0 0;
  }
  .home_about_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_about_item:nth-child(n+3){
    margin-top: 50px;
  }
  .home_about_item_cover_title{
  }
  .home_about_item_cover_title_num{
    font-size: 50px;
  }
  .home_about_item_cover_title_txt{
    font-size: 20px;
  }
  .home_about_item_title{
    margin-top: -44px;
    margin-bottom: 20px;
  }
  .home_about_item_title_en{
    font-size: 80px;
  }
  .home_about_item_title_ja{
    font-size: 24px;
  }
  .home_about_item_txt{
    padding-right: 50px;
  }
  
  /* SPICE UP */
  .home_spiceup{
    min-height: 600px;
    padding: 100px 460px 50px 60px;
  }
  .home_spiceup_msg{
    font-size: 38px;
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .home_spiceup_bg{
    border-radius: 50px;
  }
  .home_spiceup_img{
    width: 448px;
    right: 10px;
    bottom: -32px;
  }
  .home_spiceup_txt{
    font-size: 20px;
    line-height: 2.4;
  }
  .home_spiceup .read_more{
    margin-top: 40px;
  }

  .top_open_img {
    width: 70%;
  }

  .top_open_wrapper {
    gap: 24px;
  }


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

  /* コンセプト */
  .home_concept_head .sec_title_en{
    font-size: 150px;
  }
  * + .home_concept{
    margin-top: 90px;
  }
  .home_concept{
    align-items: flex-end;
  }

  .home_concept_title{
    font-size: 80px;
  }
  .home_concept_txt{
    font-size: 16px;
    margin-top: 32px;
  }
 
  .home_concept_img_sub.pos1{
    /*width: 55.225%;*/
    bottom: calc(100% - 24px);
    left: -5px;
  }
  .home_concept_img_sub.pos2{
    /*width: 19.096%;*/
    bottom: calc(100% - 40px);
    right: 34px;
  }

  .home_concept_box3 .read_more{
    margin-top: 50px;
  }
  
  /* 選ばれる理由 */
  .home_reason_item_num{
    /*font-size: 79px;*/
  }
  .home_reason_item_title{
    font-size: 20px;
  }

  /* トレーラーハウスについて */
  .home_about_head{
    margin-bottom: 60px;
  }
  .home_about_head_en{

  }
  .home_about_head_ja{
    font-size: 80px;
  }
  
  
  .home_about{
  }
  .home_about_item{
    width: 50%;
    padding: 0 0;
  }
  .home_about_item:nth-child(n+3){
    margin-top: 45px;
  }
  .home_about_item_cover_title{
  }
  .home_about_item_cover_title_num{
    font-size: 50px;
  }
  .home_about_item_cover_title_txt{
    font-size: 20px;
  }
  .home_about_item_title{
    margin-top: -44px;
    margin-bottom: 20px;
  }
  .home_about_item_title_en{
    font-size: 80px;
  }
  .home_about_item_title_ja{
    font-size: 24px;
  }
  .home_about_item_txt{
    padding-right: 50px;
  }

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

  /* 選ばれる理由 */
  .home_reason_item_title{
  }
  
  
  

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

  .home_concept_head .sec_title_en{
    font-size: 178px;
  }
  
  /* 選ばれる理由 */
  .home_reason_item_title{
    font-size: 24px;
  }

  .home_about_item_title{
  }
}





/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}

@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }


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


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


}