@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #2b6796;
  --sub-color: #f5e800;
  --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: "Cardo", 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', 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;*/
  letter-spacing: inherit;
}
p{

}
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: var(--main-color);
}
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: 60px;
}
.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){
  .header{
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    padding: 9px;
  }
  .hdr_logo{
    position: relative;
    z-index: 2;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_sub_btns{
    display: none;
  }
  .hdr_outer .hdr_sns_items{
    display: none;
  }
  .hdr_contact_link{
    display: none;
  }

  .mv{
    padding-top: 75px;
  }
  .mv_schroll{
    display: none;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 14px 0;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  .hdr_outer{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .hdr_sns_items{
    margin-left: 14px;
  }
  .hdr_sns_item{
    margin-left: 10px;
  }
  .hdr_sub_btns{
    display: flex;
    align-items: center;
    margin-left: 17px;
  }
  .hdr_sub_btn{
    width: 120px;
    height: 68px;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25em;
    color: #181818;
    text-shadow    :
      2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
      2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
      2px  0px 1px #ffffff,
      0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
      0px -2px 1px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;

  }
  .hdr_sub_btn p{
    letter-spacing: 0;
  }
  .hdr_sub_btn.no1{
    background: #8fc31f;
    border: 1px solid #8fc31f;
  }
  .hdr_sub_btn.no1:hover{
    background: #fff;
  }
  .hdr_sub_btn.no2{
    background: #fff100;
    border: 1px solid #fff100;
  }
  .hdr_sub_btn.no2:hover{
    background: #fff;
  }
  .hdr_contact_link{
    text-align: center;
    width: 160px;
    background: #13b5b1;
    color: #fff;
    border-radius:23px;
    font-size: 16px;
    font-weight: 400;
    padding: 11px 0;
    margin-left: 15px;
  }
  .hdr_contact_link:hover{
    background: #8fc31f;
    color: #FFF;
  }
  .hdr_contact_link p{
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hdr_contact_link p:before{
    content:"\f0e0";
    font-family: "fontAwesome";
    font-weight: 900;
    line-height: 1;
    font-size: 16px;
    margin-right: 5px;
  }



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

  /* ヘッダースリム */
  .header.slim{
    background:rgba(0,85,141,0.9);
    padding: 5px 14px;
  }
  .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;
  }

  .mv_schroll{
    display: block;
    width: 5.2%;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 300;
    font-family: "Outfit", sans-serif;
    line-height: 1;
    color: #fff;
    position: absolute;
    z-index: 1;
    bottom: 40px;
    left: 0;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .mv_schroll:after{
    content: "";
    display: block;
    width: 6px;
    height: 125px;
    background-image: url(https://sugaharaelectric.co.jp/system_panel/uploads/images/arr.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 30px;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 85px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_outer{

  }
  .hdr_sns_items{

  }
  .hdr_sns_item{

  }
  .hdr_sub_btns{

  }
  .hdr_sub_btn{

  }
  .hdr_contact_link{

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

  .header{
    --logo-height: 85px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_outer{

  }
  .hdr_sns_items{

  }
  .hdr_sns_item{

  }
  .hdr_sub_btns{

  }
  .hdr_sub_btn{

  }
  .hdr_contact_link{

  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  padding-inline:5.2%;
}
.mv:before{
  content: "";
  display: block;
  width: 89.32%;
  height: 113.43%;
  background: #00558d;
  clip-path: polygon(0 0, 0% 92%, 100% 0);
  position: absolute;
  top: 0;
  left: 0;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv_img img{
  border-radius: 20px;
}

/* 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_txt_box{
  width: 100%;
  color: #fff;
  text-shadow: 0.616px 0.788px 4.5px rgba(24, 24, 24, 0.5);
  position: absolute;
  top: 55%;
  left:0;
  transform: translateY(-50%);
  z-index: 2;
  padding-left: 16px;
}
.mv_txt_no1{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}
.mv_txt_no2{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.56em;
}
.mv_txt_no2 p{
  letter-spacing: 0.025em;
}
.mv_txt_no2 p strong{
  font-size: 1.26em;
  font-weight: inherit;
}
.mv_txt_no2 em{
  display: inline-block;
  font-style: normal;
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

  /* MV */
  .mv{
    padding-top: 98px;
  }
  .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_txt_box{
    padding-left: 30px;
  }
  .mv_txt_no1{
    font-size: 50px;
  }
  .mv_txt_no2{
    font-size: 30px;
  }

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


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

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

  }
  .mv_txt_p2{

  }


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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 91px);
  }

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

  }
  .mv_txt_p2{

  }

  .mv_txt_box{

  }
  .mv_txt_no1{
    font-size: 68px;
  }
  .mv_txt_no2{
    font-size: 46px;
  }
}
@media (min-width:1470px){
  .mv_txt_box{
    padding-left: 100px;
  }
}
@media (min-width:1536px){
  .mv_txt_box{
    padding-left: 100px;
  }
}
@media (min-width:1720px){
  .mv_txt_box{
    padding-left: 0;
  }
}


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

/* サイドバー */
.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: 60px;
  position: relative;
  z-index: 1;
  padding-inline: 5.2%;
  padding-top: 80px;
}
.pg_header:after{
  content: "";
  display: block;
  width: 482px;
  height: 292px;
  background: #00558d;
  clip-path: polygon(0 0, 0% 92%, 100% 0);
  position: absolute;
  top: 0;
  left: 0;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_img:before{
  padding-top: 150px;
}
.pg_header_img img{
  border-radius: 20px;
}
.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_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:375px) and (max-width: 389px){

}
@media (min-width:390px) and (max-width: 413px){

  .pg_header:after {
    width: 125vw;
    height: 77vw;
    clip-path: polygon(0 0, 0% 92%, 100% 0);
  }

}
@media (min-width:414px) and (max-width: 429px){
  .pg_header:after {
    width: 120vw;
    height: 71vw;
    clip-path: polygon(0 0, 0% 95%, 100% 0);
  }
}
@media (min-width:430px) and (max-width: 540px){
  .pg_header:after {
    width: 120vw;
    height: 71vw;
    clip-path: polygon(0 0, 0% 92%, 100% 0);
  }
}

@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
    padding-top: 97px;
  }
  .pg_header_img:before{
    padding-top: 400px;
  }
  .pg_header:after{
    width: 1535px;
    height: 800px;
    clip-path: polygon(0 0, 0% 107%, 100% 0);
    position: absolute;
    top: 0;
    left: calc(50% - 961px);
  }

  .pg_header_title_txt{

  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 100px;
    padding-top: 97px;
  }
  .pg_header_img:before{
    padding-top: 400px;
  }

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 140px;
    padding-top: 97px;
  }
  .pg_header_img:before{
    padding-top: 580px;
  }

  .pg_header_title_txt{

  }

  .pg_header:after{
    content: "";
    display: block;
    width: 1715px;
    height: 959px;
    background: #00558d;
    clip-path: polygon(0 0, 0% 99.8%, 100% 0);
    position: absolute;
    top: 0;
    left: calc(50% - 960px);
  }
}
@media (min-width:1470px){

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

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

}


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

.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;
  font-weight: 500;
  text-align: center;
  background: #00558d;
  color: #fff;
  padding: 8px 0;
  margin-top: 40px;
}
.ftr_copy p{
  letter-spacing: 0;
}
.ftr_copy a:hover{
  color: var(--sub-color);
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid #00558d;
}
.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 #00558d;
}
.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;
  right: 10px;
  bottom: 60px;
  z-index: 2;
}
.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{
  background: #00558d;
  padding-bottom: 30px;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box1{
  width: 100%;
  color: #fff;
  padding-top: 40px;
  text-align: center;
}
.ftr_contact_box1_tt{

}
.ftr_contact_box1_tt1.home_sec2_slide_tt2{
  font-size: 28px;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0;
}
.ftr_contact_box1_tt2.tt2_ja{
  font-size: 16px;
  letter-spacing: 0;
}
.ftr_contact_box1 .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  margin-top: 37px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.link_items{
  margin-top: 40px;
}
.link_0{
  width: 100%;
  max-width: 585px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding: 21px 25px;
  margin-inline:auto;
  transition: all .2s;
}
.link_0.line p,
.link_0.mail p{
  display: flex;
  align-items: center;
  letter-spacing: 0.075em;
}
.link_0.line p:before{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/line.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.link_0.mail p:before{
  content: "\f0e0";
  font-family: "fontAwesome";
  font-size: 20px;
  margin-right: 5px;
}
.link_0.item1:hover{
  background:#fff100;
  color: #181818;
}
.link_0.item1:hover:before{
  background: #181818;
}
.link_0.item1:hover:after{
  color: #181818;

}
.link_0.item1:hover{
  border: 1px solid #fff;
}
.link_0.line:hover{
  background: #fff100;
}
.link_0:hover{
  transform: none;
}
.link_0:hover{
  background: #fff100;
}

.link_0.item1{
  background: #fff;
  border: 1px solid transparent;
  color: #181818;
  position: relative
}
.link_0.item1:before{
  content: "";
  display: block;
  width: 2px;
  max-height: 46px;
  height: 100%;
  background: #183663;
  position: absolute;
  top: 50%;
  right:12.3%;
  transform: translateY(-50%);
}
.link_0.item1:after{
  content: "▶";
  display: block;
  font-size: 17px;
  color: #183663;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.link_0.item2{
  border: 1px solid #fff;
  border-left: none;
  border-right: none;
  color: #fff;
  padding: 12px 21px 12px 25px;
}
.link_0.item2:hover{
  background: #fff;
  color: #000;
}
.link_0.item2:hover{
  color: #181818;
}
.link_0 + .link_0{
  margin-top: 19px;
}
.link_0 .tel{
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 40px;
}
.ftr_contact_box2_inner{

}
.ftr_contact_box2_img:before{
  padding-top: 81.01%;
}

.ftr_1{
  text-align: center;
  padding-top: 50px;
}
.ftr_lgo{

}
.ftr_name{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top:30px;
}
.ftr_add{
  font-size: 16px;
  font-weight: 500;
  line-height: 2em;
}
.ftr_add p{
  letter-spacing: 0;
}
.ftr_links{
  margin-top: 40px;
}
.ftr_link{

}
.ftr_bnrs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ftr_bnr{

}
.ftr_bnr:hover{
  transform: scale(1.02);
  /*filter: brightness(1.2);*/
}

@media (min-width:375px){

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

  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_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
  }
  .ftr_contact_box2_item{
    margin-top: 30px;
  }
  .link_0.item2{
    flex-wrap: wrap;
    justify-content: center;
  }
  .link_0 .tel{
    font-size: 28px;
    width: 100%;
    margin-top: 10px;
  }

  .ftr_lgo{
    display: block;
    width: 150px;
    margin-inline: auto;
  }
  .ftr_links{
    display: none;
  }
  .ftr_bnrs{
    margin-top: 30px;
  }
  .ftr_bnr + .ftr_bnr{
    margin-top: 10px;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    padding-top: 54px;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 80px;
  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{
    text-align: center;
  }
  .link_items{
    margin-top: 78px;
  }
  .link_0{

  }
  .link_0.line,
  .link_0.mail{
    font-size: 24px;
  }
  .link_0 .tel{
    font-size: 28px;
  }
  .ftr_contact_box2{
    margin-top: 60px;
  }
  .ftr_contact_box2_inner{

  }
  .ftr_contact_box2_img:before{

  }

  .ftr_1{
    padding-top: 100px;
  }
  .ftr_lgo{

  }
  .ftr_name{
    font-size: 20px;
    margin-top: 42px;
  }
  .ftr_add{
    font-size: 18px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 42px;
  }
  .ftr_link{
    font-size: 16px;
    font-weight: 500;
    width: 20%;
    text-align: center;
  }
  .ftr_link:nth-child(n+6){
    margin-top: 10px;
  }
  .ftr_link p{
    letter-spacing: 0;
  }
  .ftr_bnrs{
    margin-top: 55px;
  }
  .ftr_bnr{
    margin: 0 10px;
  }
  .ftr_copy{
    margin-top: 100px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
}
@media (min-width:1200px){
  .ftr_contact_wrap{
    padding: 0;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 61.51%;
    text-align: left;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1.home_sec2_slide_tt2{
    font-size: 90px;
  }
  .ftr_contact_box1_tt2.tt2_ja{

  }
  .ftr_contact_box1 .content_desc{
    font-size: 18px;
    text-align: justify;
  }
  .link_items{

  }
  .link_0{
    max-width: 585px;
    margin-left: 0;
  }
  .link_0 .tel{
    font-size: 36px;
  }
  .link_0.item1{
    font-size: 20px;
  }
  .link_0.item2{
    font-size: 20px;
  }
  .ftr_contact_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .ftr_contact_box2_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .ftr_contact_box2_img:before{
    padding-top: 636px;
  }

  .ftr_1{

  }
  .ftr_lgo{

  }
  .ftr_name{

  }
  .ftr_add{

  }
  .ftr_links{

  }
  .ftr_link{
    width: auto;
    text-align: left;
    margin: 0 10px;
  }
  .ftr_link:nth-child(n+6){
    margin-top:0;
  }
  .ftr_bnrs{

  }
  .ftr_bnr{
    margin: 0 18px;
  }
}
@media (min-width:1470px){
  .ftr_link{
    width: auto;
    text-align: left;
    margin: 0 24px;
  }
}
@media (min-width:1536px){

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

}

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


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

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

.section.bg_blue{
  background: #00558d;
}
.section.bg_gray{
  background: #eeeeee;
}

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

}


/* テーブル用 */
.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: #FFF;
  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 #00558d;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #00558d;
  color: #fff;
}
.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;
}
.gjs-dashed .anchor{
  background: #CCC;
  height: 10px;
  top: 0;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  max-width: 220px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #00558d;
  background: #fff;
  border-radius: 22.5px;
  color: #181818;
  padding: 12px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  display: none;
}
.read_more a:hover{
  color: #FFF;
  background: #00558d;
}
.home_sec6_wrap .read_more a:hover{
  color: #FFF;
  border: 1px solid #FFF;
  background: #00558d;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2.wh{
  color: #fff;
}
.tt2_en{
  font-size: 34px;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #000000;
  letter-spacing: 0.075em;
}
.tt2_en em{
  display: inline-block;
  font-style: normal;
}
.tt2.wh .tt2_en{
  color: #fff;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
  letter-spacing: 0;
}
.tt2_ja.medium{
  font-size: 18px;
}
.tt2_ja.large{
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.tt2_sub{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-align: center;
  margin-top: 20px;
}
.tt2_sub em{
  display: inline-block;
  font-style: normal;
}
.tt2_sub2{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.4;
  text-align: center;
  margin-top: 40px;
}
.tt2_sub2 em{
  display: inline-block;
  font-style: normal;
}

/* 概要 */
.cmn_about{

}
* + .cmn_about{
  margin-top: 30px;
}
.cmn_about .tt2{
  margin-bottom: 30px;
}
.cmn_about.wh{
  color: #FFF;
}
.cmn_about_ttl{
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.666;
  text-align: center;
  margin-bottom: 20px;
}
.cmn_about_ttl em{
  display: inline-block;
  font-style: normal;
}
.cmn_about_txt{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: justify;
}
.cmn_about_txt + .cmn_about_txt{
  margin-top: 1.8em;
}
.cmn_about_txt.notice{
  color: #dd0404;
  text-indent: -1em;
  padding-left: 1em;
}
.cmn_about_txt.notice.bk{
  color: #181818;
}

.cmn_about_ttl.left{
  text-align: left;
}
.cmn_about_txt.left{
  text-align: justify;
}

.cmn_about_ttl_box{
  margin-bottom: 15px;
}
.cmn_about_ttl_box .cmn_about_ttl{
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.cmn_about_ttl2{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}
* + .cmn_about_ttl2{
  margin-top: 10px;
}

.cmn_about_bn {
  margin-top: 30px;
}

/* 文章 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: justify;
}

/* swiper */
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



@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;
  }

  .tt2_en{
    letter-spacing: 0.02em;
  }
  .cmn_about_bn{
    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{
    max-width: 220px;
    font-size: 16px;
    padding: 12px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 18px;
  }

  /* 見出し */


  /* 概要 */
  .cmn_about{

  }
  * + .cmn_about{
    margin-top: 40px;
  }
  .cmn_about .tt2{
    margin-bottom: 40px;
  }
  .cmn_about_ttl{
    font-size: 30px;
    text-align: center;
    margin-bottom: 32px;
  }
  .cmn_about_ttl2{
    font-size: 24px;
  }
  * + .cmn_about_ttl2{
    margin-top: 20px;
  }
  .cmn_about_txt{
    /*font-size: 18px;*/
    /*line-height: 2;*/
    /*text-align: center;*/
  }

  .cmn_about_ttl_box{
    margin-bottom: 25px;
  }

  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{

  }

  .tt2_en{
    font-size: 50px;
  }
  .tt2_ja{

  }
  .tt2_ja.medium{
    font-size: 20px;
  }
  .tt2_ja.large{
    font-size: 30px;
  }
  .tt2_sub{
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
  }

  .tt2_sub2{
    font-size: 26px;
    margin-top: 40px;
  }


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

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


  .tt2_sub{
    font-size: 21px;
    text-align: center;
    margin-top: 20px;
  }

  .cmn_about .tt2{
    margin-bottom: 50px;
  }

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


  /* 文章 */
  .cmn_txt{
    font-size: 18px;
    line-height: 2;
  }

  /* 概要 */
  .cmn_about{

  }
  .cmn_about_ttl{
    font-size: 36px;
    text-align: center;
    margin-bottom: 32px;
  }
  .cmn_about_ttl2{
    font-size: 26px;
  }
  .cmn_about_txt{
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }


  .table_rows_th{
    width: 285px;
  }
  .table_rows_td{

  }

  .tt2_en{
    font-size: 72px;
  }
  .tt2_ja{

  }
  .tt2_ja.medium{
    font-size: 20px;
  }
  .tt2_ja.large{
    font-size: 30px;
  }

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


}

@media (min-width:1470px){

  .tt2_ja.medium{
    font-size: 24px;
  }
  .tt2_ja.large{
    font-size: 38px;
  }

  /* 概要 */
  .cmn_about{

  }
  * + .cmn_about{
    margin-top: 65px;
  }
  .cmn_about .tt2{
    margin-bottom: 75px;
  }
  .cmn_about_ttl{
    font-size: 48px;
    margin-bottom: 32px;
  }
  .cmn_about_ttl2{
    font-size: 38px;
  }
  .cmn_about_txt{
    font-size: 18px;
  }

  .cmn_about_ttl.large{
    font-size: 58px;
    line-height: 1.379;
  }

  .cmn_about_ttl_box{
    margin-bottom: 45px;
  }
}
@media (min-width:1536px){

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

}

@media (min-width: 1470px) {
  .cmn_about_ttl_box .cmn_about_ttl {
    font-size: 45px;
  }
}
@media (min-width: 1720px) {
  .cmn_about_ttl_box .cmn_about_ttl {
    font-size: 48px;
    margin-bottom: 32px;
  }
}



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

}
.pg_home .section.sec1{
  padding-top: 60px;
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{
  background: #f5f5f5;
}
.pg_home .section.sec6{
  background: #00558d;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){
  /*sec6*/
  .insta_box .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 140px;
  }
  .pg_home .section.sec2{
    padding-top: 117px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 87px;
    padding-bottom: 112px;
  }
  .pg_home .section.sec5{
    padding: 87px 0 109px;
  }
  .pg_home .section.sec6{
    padding: 61px 0px 74px;
  }
  .pg_home .section.sec7{
    padding-top: 140px;
  }
  .pg_home .section.sec8{
    padding-top: 84px;
  }

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


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


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


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


}

/*メイン*/
/*sec1*/
.home_sec2_img_box{
  position: relative;
  z-index: 1;
}
.home_sec1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.home_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.sec_tt{
  font-size: 20px;
  font-weight: 300;
  line-height: 1.66em;
}
.sec_tt p{
  letter-spacing: 0;
}
.home_sec1_box1 .sec_tt{

}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  text-align: justify;
}
.content_desc p{
  letter-spacing: 0;
}
.home_sec1_box1 .content_desc{
  margin-top: 20px;
}
.content_block:nth-child(n+2){
  margin-top: 20px;
}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.home_sec1_box2_img:before{
  padding-top: 73.84%;
}

/*sec2*/
.home_sec2_wrap .tt2{
  margin-bottom: 10px;
}
.sec_sub_tt{
  text-align: center;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.63em;
}
.sec_sub_tt p{
  letter-spacing: 0.075em;
}
.content_desc.center{
  margin-top: 27px;
}
.content_desc.center p{
  letter-spacing: 0.075em;
}

/*sec2*/
.home_sec2_img_box{
  position: relative;
  margin-top: 40px;
}
.home_sec2_img:before{
  padding-top:1450px;
}
.home_sec2_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.home_sec2_inner_box{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
}
.home_sec2_inner_item{
  width: 100%;
  background: rgba(255,255,255,0.7);
  border: 1px solid #cbd4d8;
  padding: 28px 23px;
}
.home_sec2_inner_tt{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00558d;
  padding-bottom: 10px;
}
.home_sec2_inner_item_num{
  font-size: 40px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #00558d;
  width: 80px;
}
.home_sec2_inner_item_h3{
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56em;
  letter-spacing: 0.05em;
}
.home_sec2_inner_item .content_desc{
  margin-top: 20px;
}

/*sec3*/
.home_sec3_items{

}
.home_sec3_item{
  display:flex;
  flex-wrap: wrap;
}
.home_sec3_item:nth-child(n+2){
  margin-top: 50px;
  ;
}
.home_sec3_item_box1{
  width: 100%;
}
.home_sec3_item_box1_inner{

}
.home_sec3_item_box1_img:before{
  padding-top: 56.25%;
}
.home_sec3_item_box2{
  width: 100%;
  position: relative;
  padding-top: 40px;
}
.home_sec3_item_box2_num{
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  top: 20px;
}
.home_sec3_item:nth-child(odd) .home_sec3_item_box2_num{
  left: 20px;
}
.home_sec3_item:nth-child(even) .home_sec3_item_box2_num{
  right: 20px;
}
.home_sec3_item_box2_tt{
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.home_sec3_item_box2_sub{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.home_sec3_item_box2 .content_desc{
  margin-top: 20px;
}
.home_sec3_item_box2 .read_more{

}

/*sec4*/
.home_sec4_wrap{

}
.home_sec4_wrap .tt2{
  margin-bottom: 11px;
}
.home_sec4_img{
  margin-top: 40px;
}
.home_sec4_img:before{
  padding-top: 52.25%;
}
.home_sec3_item_box2_tt.sm{

}
.home_sec4_wrap .home_sec3_item_box2_tt{
  text-align: center;
  margin-top: 14px;
}
.home_sec4_wrap .content_desc.btm{
  margin-top: 17px;
}

/*insta*/
.insta_box{
  margin-top: 40px;
}
.insta_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.insta_box .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.insta_box .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.insta_box .webgene-item a{

}
.insta_box .webgene-item .img_fit:before{
  padding-top: 132%;
}
.insta_box .webgene-item .img_fit img{
  border-radius: 20px;
}
.insta_box video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}

/*column*/
.home_sec7_wrap{
  padding-inline:15px;
}
.news_list{

}
.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:nth-child(n+3){
  margin-top: 20px;
}
.news_list .webgene-item a{

}
.news_list .webgene-item .img:before{
  padding-top: 74.85%;
}
.news_list .webgene-item .img img{
  border-radius: 20px;
}
.news_list .webgene-item .box2{
  margin-top: 6px;
}
.news_list .webgene-item .category{
  display: inline-block;
  text-align: center;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.news_list .webgene-item .category{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  background: #00558d;
  color: #fff;
  border-radius: 14px;
  display: inline-block;
  padding: 4px 18px;
}
.news_list .webgene-item .date{
  font-size: 14px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
  ;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-top: 12px;
}

/*sec8*/
.home_sec8_wrap{

}
.home_sec8_wrap .home_sec1_box1{

}
.home_sec8_wrap .home_sec1_box2{

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

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

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

  .home_sec3_item:nth-child(odd) .home_sec3_item_box2_num{
    left: 0;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box2_num{
    left: 0;
    right: auto;
  }


  .news_list .webgene-item .date{
    margin-top: 5px;
  }

  .home_sec7_wrap .news_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap .tt2{
    margin-bottom: 40px;
  }
  .home_sec1_box{

  }
  .home_sec1_box1{
    margin-top: 30px;
  }
  .sec_tt{
    font-size: 28px;
  }
  .home_sec1_box1 .sec_tt{

  }
  .content_desc{
    font-size: 18px;
  }
  .home_sec1_box1 .content_desc{
    margin-top: 30px;
  }
  .content_block:nth-child(n+2) {
    margin-top: 37px;
  }
  .home_sec1_box2{

  }
  .home_sec1_box2_img:before{

  }

  /*sec2*/
  .sec_sub_tt{
    font-size: 28px;
  }
  .content_desc.center{

  }
  /*sec2*/
  .home_sec2_img_box{
    margin-top: 44px;
  }
  .home_sec2_img:before{
    padding-top: 1400px;
  }
  .home_sec2_inner{

  }
  .home_sec2_inner_box{
    gap:50px 42px;
  }
  .home_sec2_inner_item{
    width: calc(50% - 28px);
  }
  .home_sec2_inner_tt{
    padding-bottom: 24px;
  }
  .home_sec2_inner_item_num{
    font-size: 50px;
    width: 80px;
  }
  .home_sec2_inner_item_h3{
    font-size: 19px;
    margin-right: -20px;
  }
  .home_sec2_inner_item .content_desc{
    padding-inline: 8px;
  }

  /*sec3*/
  .home_sec3_items{

  }
  .home_sec3_item{

  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 50px;
  }
  .home_sec3_item_box1{

  }
  .home_sec3_item_box1_inner{

  }
  .home_sec3_item_box1_img:before{

  }
  .home_sec3_item_box2{
    padding-top: 75px;
  }
  .home_sec3_item_box2_num{
    font-size: 26px;
  }
  .home_sec3_item_box2_tt{
    font-size: 32px;
  }
  .home_sec3_item_box2_sub{
    font-size: 20px;
    margin-top: 30px;
  }
  .home_sec3_item_box2 .content_desc{
    margin-top: 15px;
  }
  .home_sec3_item_box2 .read_more{
    margin-top: 25px;
  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_img:before{

  }
  .home_sec3_item_box2_tt.sm{

  }
  .home_sec4_wrap .home_sec3_item_box2_tt{

  }
  .home_sec4_wrap .read_more{
    margin-top: 27px;
  }

  /*insta*/
  .insta_box{
    margin-top: 60px;
  }
  .insta_box .webgene-blog{
    margin-inline:-10px;
  }
  .insta_box .webgene-item{
    width: 33.333%;
    padding-inline:10px;
  }
  .insta_box .webgene-item:nth-child(n+3){
    margin-top:0;
  }
  .insta_box .webgene-item:nth-child(n+4){
    margin-top: 20px;
    ;
  }
  .insta_box .webgene-item a{

  }
  .insta_box .webgene-item .img_fit:before{
    padding-top: 132%;
  }

  /*sec6*/
  .home_sec6_wrap{

  }
  .home_sec6_wrap .read_more{
    margin-top: 48px;
  }

  /*colum*/
  .home_sec7_wrap{
    padding-inline:25px;
  }
  .home_sec7_wrap .tt2{
    margin-bottom: 40px;
  }
  .news_list .webgene-item .meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width:1024px){
  /*sec2*/
  .home_sec2_img:before{
    padding-top: 1200px;
  }
  .home_sec2_inner_item_num{
    width: 105px;
  }
  .home_sec2_inner_item_h3{
    font-size: 28px;
  }

  /*column*/
  .news_list .webgene-blog{
    margin-inline:-15px;
  }
  .news_list .webgene-item{
    width: 33.333%;
    padding-inline:15px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 20px;
    ;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_box{

  }
  .home_sec1_box1{
    width: 49.01%;
    order: 1;
    margin-top: 0;
  }
  .sec_tt{
    font-size: 36px;
  }
  .home_sec1_box1 .sec_tt{

  }
  .content_desc{
    line-height: 2;
  }
  .home_sec1_box1 .content_desc{
    margin-top: 52px;
  }
  .content_block:nth-child(n+2){

  }
  .home_sec1_box2{
    width: 42.76%;
    padding-top: 20px;
    order: 2;
  }
  .home_sec1_box2_img:before{

  }

  /*sec2*/
  .sec_sub_tt{
    font-size: 38px;
  }
  .content_desc.center{
    text-align: center;
  }

  /*sec2*/
  .home_sec2_img_box{

  }
  .home_sec2_img:before{
    padding-top: 681px;
  }
  .home_sec2_inner{

  }
  .home_sec2_inner_box{
    gap:0 42px;
  }
  .home_sec2_inner_item{
    width: calc(33.333% - 28px);
  }
  .home_sec2_inner_tt{

  }
  .home_sec2_inner_item_num{
    font-size: 68px;
  }
  .home_sec2_inner_item_h3{
    font-size: 19px;
  }
  .home_sec2_inner_item .content_desc{

  }

  /*sec3*/
  .home_sec3_items{

  }
  .home_sec3_item{

  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(odd) .home_sec3_item_box1{
    order: 1;
  }
  .home_sec3_item:nth-child(odd) .home_sec3_item_box2{
    order: 2;
    padding-left: 50px;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box1{
    order: 2;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box2{
    order: 1;
    padding-right: 50px;
  }
  .home_sec3_item_box1{
    width: 49.86%;
  }
  .home_sec3_item:nth-child(odd) .home_sec3_item_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box1_inner{
    margin-right:var(--margin-for-device-side-w);
  }
  .home_sec3_item_box1_inner{

  }
  .home_sec3_item_box1_img:before{
    padding-top: 538px;
  }
  .home_sec3_item_box2{
    width: 50%;
  }
  .home_sec3_item_box2_num{
    font-size: 32px;
  }
  .home_sec3_item_box2_tt{
    font-size: 34px;
  }
  .home_sec3_item_box2_sub{
    font-size: 24px;
    margin-top: 44px;
  }
  .home_sec3_item_box2 .content_desc{

  }
  .home_sec3_item_box2 .read_more{

  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_img:before{

  }
  .home_sec3_item_box2_tt.sm{
    font-size: 34px;
  }
  .home_sec4_wrap .home_sec3_item_box2_tt{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_wrap .home_sec1_box1{
    order: 2;
  }
  .home_sec5_wrap .home_sec1_box2{
    order: 1;
  }
  .home_sec5_wrap .read_more{
    margin-top: 50px;
  }

  /*insta*/
  .insta_box{

  }
  .insta_box .webgene-blog{

  }
  .insta_box .webgene-item{
    width: 20%;
  }
  .insta_box .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .insta_box .webgene-item a{

  }
  .insta_box .webgene-item .img_fit:before{
    padding-top: 132%;
  }

  /*column*/
  .news_list .webgene-item{
    width: 20%;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }

  /*sec8*/
  .home_sec8_wrap{

  }
  .home_sec8_wrap .home_sec1_box1{
    order: 2;
  }
  .home_sec8_wrap .home_sec1_box2{
    order: 1;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .sec_tt{
    font-size: 40px;
  }

  /*sec3*/
  .home_sec3_item:nth-child(odd) .home_sec3_item_box2{
    order: 2;
    padding-left: 100px;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box2{
    order: 1;
    padding-right: 100px;
  }
}
@media (min-width:1720px){
  /*sec1*/
  .sec_tt{
    font-size: 48px;
  }
  /*sec2*/
  .home_sec2_inner_item_h3{
    font-size: 32px;
  }
  /*sec3*/
  .home_sec3_item_box2_tt{
    font-size: 38px;
  }
  .home_sec3_item:nth-child(odd) .home_sec3_item_box2{
    order: 2;
    padding-left: 175px;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box2{
    order: 1;
    padding-right: 175px;
  }
}




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

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

}
.pg_customer .section.sec1{
  padding-bottom: 50px;
}
.pg_customer .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_customer .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_customer .section.sec4{

}
.pg_customer .section.sec5{
  padding-top: 35px;
}
.pg_customer .section.sec6{
  padding-top: 50px;
}
.pg_customer .section.sec7{
  padding-top: 50px;
}


@media (max-width:374px){

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

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

  .pg_customer .section.sec3{
    padding-bottom: 20px;
  }
  .pg_customer .section.sec5{
    padding-top: 0;
  }
  .pg_customer .section.sec6{
    padding-top: 0;
  }
  .pg_customer .section.sec7{
    padding-top: 0;
  }
}
@media (min-width:768px){

  .pg_customer{

  }
  .pg_customer .section.sec1{
    padding-bottom: 140px;
  }
  .pg_customer .section.sec2{
    padding-top: 60px;
    padding-bottom: 120px;
  }
  .pg_customer .section.sec3{
    padding-top: 135px;
    padding-bottom: 85px;
  }
  .pg_customer .section.sec4{

  }
  .pg_customer .section.sec5{
    padding-top: 35px;
  }
  .pg_customer .section.sec6{
    padding-top: 100px;
  }
  .pg_customer .section.sec7{
    padding-top: 80px;
  }

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


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

  .pg_customer{

  }
  .pg_customer .section.sec1{
    padding-bottom: 140px;
  }
  .pg_customer .section.sec2{
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .pg_customer .section.sec3{
    padding-top: 135px;
    padding-bottom: 85px;
  }
  .pg_customer .section.sec4{

  }
  .pg_customer .section.sec5{
    padding-top: 35px;
  }
  .pg_customer .section.sec6{
    padding-top: 100px;
  }
  .pg_customer .section.sec7{
    padding-top: 80px;
  }

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


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


}

/* メイン部分 */


/* おすすめ */
.customer_reco{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
* + .customer_reco{
  margin-top: 45px;
}
.customer_reco_box1{
  width: 100%;
  order: 3;
  margin-top: 20px;
}
.customer_reco_box2{
  width: 100%;
  margin-top: 0;
  order: 2;
}

.customer_reco_ttl{
  order: 1;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  background: #daeff9;
  padding: 5px 10px 7px;
  border-radius: 5px;
  margin-bottom: 15px;
}
.customer_reco_ttl em{
  display: inline-block;
  font-style: normal;
}
.customer_reco_ttl_sub{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 5px;
}
.customer_reco_ttl.color2{
  background: #262626;
  color: #FFF;
}


.customer_reco_list{

}
* + .customer_reco_list{
  margin-top: 30px;
}
.customer_reco_list_item + .customer_reco_list_item{
  margin-top: 11px;
}
.customer_reco_list_item{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  background: #FFF;
  min-height: 60px;
  padding: 5px 10px 5px 50px;
  position: relative;
  z-index: 1;
}
.customer_reco_list_item:before{
  content: "";
  width: 30px;
  aspect-ratio: 60 / 65;
  background-image: url('https://sugaharaelectric.co.jp/system_panel/uploads/images/reco_icon1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
.customer_reco_list_item strong{
  color: #dd0404;
  font-weight: inherit;
}
.customer_reco_list_item em{
  display: inline-block;
  font-style: normal;
  font-weight: inherit;
}

.customer_reco_list.color2{

}
.customer_reco_list.color2 .customer_reco_list_item{
  background: #daeff9;
  border-radius: 10px;
}
.customer_reco_list.color3{

}
.customer_reco_list.color3 .customer_reco_list_item{
  background: #FFF;
  border: 1px solid #00558d;
  border-radius: 0;
}

.customer_reco_list.col2b{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.customer_reco_list.col2b .customer_reco_list_item{
  width: calc((100% - 10px) / 2);
}
.customer_reco_list.col2b .customer_reco_list_item + .customer_reco_list_item{
  margin-top: 0;
}

.customer_reco_img{

}
.customer_reco_img.img_fit:before{
  padding-top: 73.529%;
}

.customer_reco_img2{

}
.customer_reco_img2.img_fit:before{
  padding-top: 73.84%;
}

.customer_reco.business{

}
.customer_reco.business .customer_reco_img.img_fit:before{
  padding-top: 76.923%;
}


/* 理由 */
.customer_reason{

}
.customer_reason_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.customer_reason_row + .customer_reason_row{
  margin-top: 30px;
}

.customer_reason_box1{
  width: 100%;
}
.customer_reason_box2{
  width: 100%;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.customer_reason_num{
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 0;
}
.customer_reason_ttl{
  font-size: 23px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.57;
  margin-bottom: 15px;
}
.customer_reason_txt{
  text-align: justify;
}
.customer_reason_img{
  /*height: 200px;*/
}
.customer_reason_img.img_fit:before{
  padding-top: 56.250%;
}

/* HOW TO USE */
.customer_howto_wrap{
  padding: 50px 0;
  position: relative;
  z-index: 1;
}
.customer_howto_wrap:before{
  content: "";
  background: #eeeeee;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
}
.customer_howto{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.customer_howto_item{
  width: 100%;
  border: 1px solid #d6d6d6;
  background: #FFF;
  padding: 15px 15px 15px;
}
.customer_howto_item_head{
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #00558d;
}
.customer_howto_item_head_num{
  width: 80px;
  font-size: 50px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #00558d;
}
.customer_howto_item_head_ttl{
  width: calc(100% - 80px);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5625;
}
.customer_howto_item_head_ttl strong{
  font-weight: inherit;
  color: #dd0404;
}
.customer_howto_item_head_ttl em{
  display: inline-block;
  font-style: normal;
}
.customer_howto_item_txt{
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.05em;
  text-align: justify;
}

.customer_howto.col2 .customer_howto_item_head_ttl{
  font-weight: 500;
  line-height: 1.5625;
}

/* 続けやすい価格 */
.customer_reasonable{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:  20px 70px;
}
* + .customer_reasonable{
  margin-top: 30px;
}
.customer_reasonable_item{
  width: 100%;
}
.customer_reasonable_img{
  margin-bottom: 12px;
}
.customer_reasonable_img.img_fit:before{
  padding-top: 68.478%;
}
.customer_reasonable_ttl1{
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.4;
  color: #dd0404;
  margin-bottom: 10px;
}
.customer_reasonable_ttl2{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.4;
  margin-bottom: 5px;
}

.customer_reasonable_ttl2 em{
  display: inline-block;
  font-size: 0.75em;
  font-style: normal;
}
.customer_reasonable_ttl2 u{
  display: inline-block;
  font-style: normal;
  text-decoration: none;
}
.customer_reasonable_txt{
  text-align: justify;
}

.customer_reasonable_msg{
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5333;
  text-align: center;
  border: 1px solid #000000;
  padding: 15px 10px 20px;
  margin-top: 40px;
}
* + .customer_reasonable_msg{
  margin-top: 30px;
}
.customer_reasonable_msg em{
  font-style: normal;
  display: inline-block;
}

/* 比較表 */
.customer_hikaku{

}
* + .customer_hikaku{
  margin-top: 30px;
}
.customer_hikaku_head{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 15px;
}
.customer_hikaku_tbl{
  text-align: center;
}

/* ポイント */
.customer_point{

}
* + .customer_point{
  margin-top: 40px;
}
.customer_point_ttl{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #00558d;
  color: #FFF;
  text-align: center;
  padding: 10px 5px;
  margin-bottom: 15px;
}
.customer_point_ttl em{
  display: inline-block;
  font-style: normal;
}
.customer_point_ttl2{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 5px;
  margin-bottom: 10px;
}
.customer_point_msg{
  text-align: justify;
}


/* FLOW */
.customer_flow{

}
* + .customer_flow{
  margin-top: 40px;
}
.customer_flow_row{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.customer_flow_row + .customer_flow_row{
  margin-top: 30px;
}
.customer_flow_box1{
  width: 100%;
  position: relative;
  z-index: 2;
}
.customer_flow_box2{
  width: 100%;
  /*min-height: 380px;*/
  margin-top: 50px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 0px;
  background: #f0f8fb;
  position: relative;
  z-index: 1;
}
.customer_flow_box2:after{
  content: "";
  background: #f0f8fb;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
}
.customer_flow_img{

}
.customer_flow_img.img_fit:before{
  padding-top: 61.538%;
}
.customer_flow_step{
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.075em;
  line-height: 1;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  margin-left: 0;
  position: absolute;
  z-index: 1;
  top: -10px;
  transform: translate(0, -100%);
}

.customer_flow_ttl{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.4;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #bfbfbf;
}
.customer_flow_txt{
  text-align: justify;
}

/* お問い合わせ */
.customer_flow_contact{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 35px;
}
* + .customer_flow_contact{
  margin-top: 25px;
}
.customer_flow_contact_a{
  width: 100%;
  text-align: center;
  transition: 0.2s all;
}
.customer_flow_contact_a:hover{
  transform: scale(1.02);
  filter: brightness(1.2);
}
.customer_flow_contact_a img{
  width: 250px;
}

@media (max-width:767px){

  .customer_howto.col2 .customer_howto_item_head_ttl{
    font-size: 18px;
  }

  .js-scrollable .customer_hikaku_tbl{
    width: 650px;
  }
}
@media (min-width:768px){

  /* おすすめ */
  .customer_reco{
  }
  * + .customer_reco{
    margin-top: 45px;
  }
  .customer_reco_box1{
    /*width: 50.98%;*/
  }
  .customer_reco_box2{
    /*width: 44.73%;*/
    /*margin-top: 30px;*/
  }

  .customer_reco_ttl{
    font-size: 24px;
    padding: 8px 10px 10px;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  .customer_reco_ttl_sub{
    font-size: 26px;
    margin-bottom: 10px;
  }
  .customer_reco_list{

  }
  * + .customer_reco_list{
    margin-top: 40px;
  }
  .customer_reco_list_item + .customer_reco_list_item{
    margin-top: 11px;
  }
  .customer_reco_list_item{
    font-size: 18px;
    min-height: 64px;
    padding: 5px 10px 5px 70px;
  }
  .customer_reco_list_item:before{
    width: 40px;
    top: 50%;
    left: 15px;
  }


  /* 理由 */
  .customer_reason{

  }
  .customer_reason_row{
  }
  .customer_reason_row + .customer_reason_row{
    margin-top: 50px;
  }
  .customer_reason_box1{
    /*width: 50%;*/
  }
  .customer_reason_box2{
    /*width: 49.01%;*/
    padding-top: 60px;
  }
  .customer_reason_num{
    font-size: 26px;
    top: 20px;
  }
  .customer_reason_ttl{
    font-size: 28px;
    margin-bottom: 20px;
  }
  .customer_reason_img{
    /*height: 540px;*/
  }

  /* HOW TO USE */
  .customer_howto_wrap{
    padding: 70px 0;
  }
  .customer_howto{
    gap: 20px 20px;
    justify-content: center;
  }
  .customer_howto_item{
    width: calc((100% - 20px) / 2);
    width: 100%;
    padding: 15px 20px 15px;
  }
  .customer_howto_item_head{
    /*padding-bottom: 22px;*/
    /*margin-bottom: 22px;*/
  }
  .customer_howto_item_head_num{
    /*width: 100px;*/
    /*font-size: 68px;*/
    font-size: 54px;
  }
  .customer_howto_item_head_ttl{
    /*width: calc(100% - 100px);*/
    font-size: 24px;
  }
  .customer_howto_item_txt{
    /*font-size: 17px;*/
    /*line-height: 2.11;*/
  }


  /* 続けやすい価格 */
  .customer_reasonable{
    gap:  20px 20px;
  }
  * + .customer_reasonable{
    margin-top: 35px;
  }
  .customer_reasonable_item{
    width: calc((100% - 20px) / 2);
  }
  .customer_reasonable_img{
    margin-bottom: 12px;
  }
  .customer_reasonable_ttl1{
    font-size: 28px;
    margin-bottom: 10px;
  }
  .customer_reasonable_ttl2{
    font-size: 20px;
    margin-bottom: 5px;
  }

  .customer_reasonable_msg{
    font-size: 22px;
    padding: 22px 30px;
    margin-top: 50px;
  }
  * + .customer_reasonable_msg{
    margin-top: 30px;
  }

  /* 比較表 */
  .customer_hikaku{

  }
  * + .customer_hikaku{
    margin-top: 45px;
  }
  .customer_hikaku_head{
    font-size: 26px;
    margin-bottom: 15px;
  }
  .customer_hikaku_tbl{
  }

  /* ポイント */
  .customer_point{

  }
  * + .customer_point{
    margin-top: 50px;
  }
  .customer_point_ttl{
    font-size: 22px;
    padding: 13px 5px;
    margin-bottom: 20px;
  }
  .customer_point_ttl2{
    font-size: 22px;
    padding-top: 5px;
    margin-bottom: 15px;
  }
  .customer_point_msg{
    /*text-align: center;*/
  }


  /* FLOW */
  .customer_flow{

  }
  * + .customer_flow{
    margin-top: 80px;
  }
  .customer_flow_row{
  }
  .customer_flow_row + .customer_flow_row{
    margin-top: 50px;
  }
  .customer_flow_box1{
    /*width: 42.76%;*/
  }
  .customer_flow_box2{
    /*width: 55.26%;*/
    /*min-height: 380px;*/
    margin-top: 62px;
    padding-top: 25px;
    /*padding-left: 65px;*/
  }
  .customer_flow_box2:after{
    /*left: auto;*/
    /*right: 100%;*/
    /*width: 56.54%;*/
  }
  .customer_flow_step{
    font-size: 32px;
    /*margin-left: -65px;*/
    top: -10px;
  }
  .customer_flow_ttl{
    font-size: 26px;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }

  /* お問い合わせ */
  .customer_flow_contact{
    flex-wrap: nowrap;
    gap: 20px 35px;
  }
  * + .customer_flow_contact{
    margin-top: 25px;
  }
  .customer_flow_contact_a{
    width: auto;
  }
  .customer_flow_contact_a img{
    width: 100%;
  }

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

  /* おすすめ */
  .customer_reco{
  }
  * + .customer_reco{
    margin-top: 45px;
  }
  .customer_reco_box1{
    width: 50.98%;
    order: 2;
    margin-top: 0;
  }
  .customer_reco_box2{
    width: 44.73%;
    order: 3;
  }
  .customer_reco_ttl{
    font-size: 26px;
    padding: 11px 10px 13px;
    margin-bottom: 25px;
  }
  .customer_reco_ttl_sub{
    font-size: 28px;
    margin-bottom: 10px;
  }

  .customer_reco_list_item{
    /*font-size: 18px;*/
    /*min-height: 74px;*/
    /*padding: 5px 10px 5px 70px;*/
  }
  .customer_reco_list_item:before{
    /*width: 60px;*/
    /*left: 25px;*/
  }

  .customer_reco_list.col2{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
  }
  .customer_reco_list.col2 .customer_reco_list_item{
    width: calc((100% - 20px) / 2);
  }
  .customer_reco_list.col2  .customer_reco_list_item + .customer_reco_list_item{
    margin-top: 0;
  }

  .customer_reco_list.col2b{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
  }
  .customer_reco_list.col2b .customer_reco_list_item{
    width: calc((100% - 20px) / 2);
  }

  /* 理由 */
  .customer_reason{

  }
  .customer_reason_row{
  }
  .customer_reason_row + .customer_reason_row{
    margin-top: 0;
  }
  .customer_reason_box1{
    width: 50%;
  }
  .customer_reason_box2{
    width: 49.01%;
    padding-top: 75px;
  }
  .customer_reason_num{
    /*font-size: 32px;*/
    top: 22px;
    left: auto;
  }
  .customer_reason_ttl{
    /*font-size: 38px;*/
    /*margin-bottom: 30px;*/
  }
  .customer_reason_img{
  }
  .customer_reason_img.img_fit:before{
    padding-top: 0;
    height: 450px;
  }

  .customer_reason_row:nth-child(odd) .customer_reason_box1{

  }
  .customer_reason_row:nth-child(odd) .customer_reason_box2{
    padding-left: 30px;
  }
  .customer_reason_row:nth-child(odd) .customer_reason_num{
    left: 0;
  }
  .customer_reason_row:nth-child(odd) .customer_reason_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .customer_reason_row:nth-child(even) .customer_reason_box1{
    order: 2;
  }
  .customer_reason_row:nth-child(even) .customer_reason_box2{
    order: 1;
    padding-right: 30px;
  }
  .customer_reason_row:nth-child(even) .customer_reason_num{
    right: 0;
  }
  .customer_reason_row:nth-child(even) .customer_reason_img{
    margin-right: var(--margin-for-device-side-w);
  }

  /* HOW TO USE */
  .customer_howto{
    gap: 20px 20px;
  }
  .customer_howto_item{
    width: calc((100% - 40px) / 3);
    /*padding: 30px 30px 30px;*/
  }
  .customer_howto_item_head{
    /*padding-bottom: 22px;*/
    /*margin-bottom: 22px;*/
  }
  .customer_howto_item_head_num{
    width: 70px;
    font-size: 50px;
  }
  .customer_howto_item_head_ttl{
    width: calc(100% - 70px);
    font-size: 20px;
  }
  .customer_howto.col2 .customer_howto_item_head_ttl{
    line-height: 1.78;
  }
  .customer_howto_item_txt{
    /*font-size: 17px;*/
    /*line-height: 2.11;*/
  }


  .customer_howto.col2{
    justify-content: flex-start;
    gap: 20px 30px;
  }
  .customer_howto.col2 .customer_howto_item{
    width: calc((100% - 30px) / 2);

  }
  .customer_howto.col2 .customer_howto_item_head_ttl{
    font-size: 20px;
  }

  /* 続けやすい価格 */
  .customer_reasonable{
    gap:  20px 20px;
  }
  * + .customer_reasonable{
    margin-top: 45px;
  }
  .customer_reasonable_item{
    width: calc((100% - 40px) / 3);
  }
  .customer_reasonable_img{
    margin-bottom: 12px;
  }
  .customer_reasonable_ttl1{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .customer_reasonable_ttl2{
    font-size: 18px;
    margin-bottom: 5px;
  }

  /* ポイント */
  .customer_point{

  }
  * + .customer_point{
    /*margin-top: 80px;*/
  }
  .customer_point_ttl{
    /*font-size: 28px;*/
    /*padding: 13px 5px;*/
    /*margin-bottom: 20px;*/
  }
  .customer_point_msg{
    text-align: center;
  }

  /* FLOW */
  .customer_flow{

  }
  * + .customer_flow{
    margin-top: 80px;
  }
  .customer_flow_row{
  }
  .customer_flow_row + .customer_flow_row{
    margin-top: 50px;
  }
  .customer_flow_box1{
    width: 42.76%;
  }
  .customer_flow_box2{
    width: 55.26%;
    min-height: 380px;
    margin-top: 62px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .customer_flow_box2:after{
    left: auto;
    right: 100%;
    width: 56.54%;
  }
  .customer_flow_step{
    font-size: 32px;
    margin-left: -30px;
    top: -10px;
  }
  .customer_flow_ttl{
    font-size: 24px;
    padding-bottom: 25px;
    margin-bottom: 20px;
  }

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

  /* 理由 */
  .customer_reason_box1{
    width: 50%;
  }
  .customer_reason_box2{
    width: 49.01%;
    padding-top: 75px;
  }
  .customer_reason_num{
    font-size: 28px;
    top: 22px;
  }
  .customer_reason_ttl{
    font-size: 32px;
    margin-bottom: 30px;
  }
  .customer_reason_img.img_fit:before{
    height: 540px;
  }

  .customer_reason_row:nth-child(odd) .customer_reason_box2{
    padding-left: 50px;
  }
  .customer_reason_row:nth-child(even) .customer_reason_box2{
    padding-right: 50px;
  }


  .customer_reasonable_msg{
    font-size: 30px;
    padding: 22px 30px;
    margin-top: 72px;
  }
  * + .customer_reasonable_msg{
    margin-top: 30px;
  }

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

  /* おすすめ */
  .customer_reco{
  }
  * + .customer_reco{
    margin-top: 45px;
  }
  .customer_reco_box1{
    width: 50.98%;
  }
  .customer_reco_box2{
    width: 44.73%;
  }
  .customer_reco.business{

  }
  .customer_reco.business .customer_reco_box1{
    width: 53.94%;
  }
  .customer_reco.business .customer_reco_box2{
    width: 42.76%;
  }

  .customer_reco_ttl{
    font-size: 32px;
    padding: 11px 10px 13px;
    margin-bottom: 25px;
  }
  .customer_reco_ttl_sub{
    font-size: 36px;
    margin-bottom: 15px;
  }
  .customer_reco_list_item{
    font-size: 21px;
    min-height: 74px;
    padding: 5px 10px 5px 115px;
  }
  .customer_reco_list_item:before{
    width: 60px;
    left: 25px;
  }

  .customer_reco_list.col2{
    gap: 20px 30px;
  }
  .customer_reco_list.col2 .customer_reco_list_item{
    width: calc((100% - 30px) / 2);
  }

  .customer_reco_list.col2b{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
  }
  .customer_reco_list.col2b .customer_reco_list_item{
    width: calc((100% - 30px) / 2);
    min-height: 84px;
    font-size: 26px;
    padding-left: 135px;
    /*padding-top: 10px;*/
    /*padding-bottom: 10px;*/
  }

  /* 理由 */
  .customer_reason_box1{
    width: 50%;
  }
  .customer_reason_box2{
    width: 49.01%;
    padding-top: 75px;
  }
  .customer_reason_num{
    font-size: 32px;
    top: 22px;
  }
  .customer_reason_ttl{
    font-size: 38px;
    margin-bottom: 30px;
  }
  .customer_reason_img.img_fit:before{
    height: 540px;
  }

  .customer_reason_row:nth-child(odd) .customer_reason_box2{
    padding-left: 80px;
  }
  .customer_reason_row:nth-child(even) .customer_reason_box2{
    padding-right: 80px;
  }

  /* HOW TO USE */
  .customer_howto_wrap{
    padding: 100px 0;
  }
  .customer_howto{
    gap: 20px 30px;
  }
  .customer_howto_item{
    width: calc((100% - 60px) / 3);
    padding: 30px 30px 30px;
  }
  .customer_howto_item_head{
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .customer_howto_item_head_num{
    width: 100px;
    font-size: 68px;
  }
  .customer_howto_item_head_ttl{
    width: calc(100% - 100px);
    font-size: 28px;
  }
  .customer_howto_item_txt{
    font-size: 17px;
    line-height: 2.11;
  }

  .customer_howto.col2 .customer_howto_item{
    min-height: 400px;
  }
  .customer_howto.col2 .customer_howto_item_head_ttl{
    font-size: 25px;
  }

  /* 続けやすい価格 */
  .customer_reasonable{
    gap:  20px 30px;
  }
  * + .customer_reasonable{
    margin-top: 45px;
  }
  .customer_reasonable_item{
    width: calc((100% - 60px) / 3);
  }
  .customer_reasonable_img{
    margin-bottom: 12px;
  }
  .customer_reasonable_ttl1{
    font-size: 32px;
    margin-bottom: 20px;
  }
  .customer_reasonable_ttl2{
    font-size: 22px;
    margin-bottom: 5px;
  }

  /* ポイント */
  .customer_point{

  }
  * + .customer_point{
    margin-top: 80px;
  }
  .customer_point_ttl{
    font-size: 28px;
    padding: 13px 5px;
    margin-bottom: 20px;
  }
  .customer_point_ttl2{
    font-size: 28px;
    padding-top: 5px;
    margin-bottom: 15px;
  }
  .customer_point_msg{
    text-align: center;
  }

  /* FLOW */
  .customer_flow{

  }
  * + .customer_flow{
    margin-top: 80px;
  }
  .customer_flow_row{
  }
  .customer_flow_row + .customer_flow_row{
    margin-top: 50px;
  }
  .customer_flow_box1{
    width: 42.76%;
  }
  .customer_flow_box2{
    width: 55.26%;
    min-height: 380px;
    margin-top: 62px;
    padding-top: 42px;
    padding-left: 65px;
  }
  .customer_flow_box2:after{
    left: auto;
    right: 100%;
    width: 56.54%;
  }
  .customer_flow_step{
    font-size: 42px;
    margin-left: -65px;
    top: -10px;
  }
  .customer_flow_ttl{
    font-size: 32px;
    padding-bottom: 25px;
    margin-bottom: 20px;
  }

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

  /* 理由 */
  .customer_reason_row:nth-child(odd) .customer_reason_box2{
    padding-left: 160px;
  }
  .customer_reason_row:nth-child(even) .customer_reason_box2{
    padding-right: 160px;
  }

  /* HOW TO USE */
  .customer_howto_wrap{
    margin-top: 40px;
  }
  .customer_howto{
    gap: 20px 40px;
  }
  .customer_howto_item{
    width: calc((100% - 80px) / 3);
    padding: 30px 30px 30px;
  }
  .customer_howto_item_head{
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .customer_howto_item_head_num{
    width: 100px;
    font-size: 68px;
  }
  .customer_howto_item_head_ttl{
    width: calc(100% - 100px);
    font-size: 32px;
  }
  .customer_howto_item_txt{
  }

  .customer_howto.col2 .customer_howto_item_head{
    min-height: 100px;
  }
  .customer_howto.col2 .customer_howto_item_head_ttl{
    font-size: 28px;
  }

  /* 続けやすい価格 */
  .customer_reasonable{
    gap:  20px 70px;
  }
  * + .customer_reasonable{
    margin-top: 45px;
  }
  .customer_reasonable_item{
    width: calc((100% - 140px) / 3);
  }
  .customer_reasonable_img{
    margin-bottom: 12px;
  }
  .customer_reasonable_ttl1{
    font-size: 40px;
    margin-bottom: 20px;
  }
  .customer_reasonable_ttl2{
    font-size: 24px;
    margin-bottom: 5px;
  }
}




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

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

}
.pg_product .section.sec1{

}
.pg_product .section.sec1 .tt2 + .product_cat_nav{
  margin-top: 50px;
}
.pg_product .section.sec2{
  padding-top: 50px;
}
.pg_product .section.sec3{

}
.pg_product .section.sec4{

}
.pg_product .section.sec5{
  padding-top: 50px;
}
.pg_product .section.sec5 .tt2{
  /*margin-bottom: 50px;*/
}
.pg_product .section.sec5 .product_feature_row{
  margin-top: 50px;
}
.pg_product .section.sec6{

}
.pg_product .section.sec6 .tt2{
  /*margin-bottom: 70px;*/
}
.pg_product .section.sec7{
  padding-top: 50px;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_product .section.sec1{

  }
  .pg_product .section.sec2{
    padding-top: 0;
  }
  .pg_product .section.sec3{
    padding-top: 0;
  }
  .pg_product .section.sec4{
    padding-top: 0;
  }
  .pg_product .section.sec5{
    padding-top: 0;
  }
  .pg_product .section.sec6{
    padding-top: 0;
  }
  .pg_product .section.sec7{
    padding-top: 0;
  }
}
@media (min-width:768px){

  .pg_product .section.sec1{

  }
  .pg_product .section.sec1 .tt2 + .product_cat_nav{
    margin-top: 100px;
  }
  .pg_product .section.sec2{
    padding-top: 85px;
  }
  .pg_product .section.sec3{

  }
  .pg_product .section.sec4{

  }
  .pg_product .section.sec5{
    padding-top: 110px;
  }
  .pg_product .section.sec5 .tt2{
    margin-bottom: 50px;
  }
  .pg_product .section.sec6{

  }
  .pg_product .section.sec6 .tt2{
    margin-bottom: 70px;
  }
  .pg_product .section.sec7{
    padding-top: 105px;
  }

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


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

  .pg_product .section.sec1{

  }
  .pg_product .section.sec1 .tt2 + .product_cat_nav{
    margin-top: 100px;
  }
  .pg_product .section.sec2{
    padding-top: 85px;
  }
  .pg_product .section.sec3{

  }
  .pg_product .section.sec4{

  }
  .pg_product .section.sec5{
    padding-top: 110px;
  }
  .pg_product .section.sec5 .tt2{
    margin-bottom: 50px;
  }
  .pg_product .section.sec5 .product_feature_row{
    margin-top: 140px;
  }
  .pg_product .section.sec6{
    padding-top: 115px;
  }
  .pg_product .section.sec6 .tt2{
    margin-bottom: 70px;
  }
  .pg_product .section.sec7{
    padding-top: 105px;
  }

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


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


}

/* メイン部分 */

/* ナビ */
.product_cat_nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
.product_cat_nav_item{
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 10px) / 2);
  min-height: 45px;
  padding: 9px 10px 12px;
  background: #e3f6fb;
  border: 1px solid #00558d;
  border-radius: 34px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
}
.product_cat_nav.wh .product_cat_nav_item{
  background: #FFF;
}

.cmn_about + .product_cat_nav{
  margin-top: 45px;
}

/* ABOUT */
.product_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
* + .product_about{
  margin-top: 40px;
}
.product_about_box1{
  width: 100%;
}
.product_about_box2{
  width: 100%;
  padding-top: 20px;
}
.product_about_box_w{
  width: 100%;
  margin-top: 30px;
}
.product_about_img_wrap{
  border: 1px solid #00558d;
  padding: 10px 10px;
}
.product_about_img{

}
.product_about_img.img_fit:before{
  padding-top: 72.131%;
}

.product_about .cmn_about_ttl{
  letter-spacing: 0;
  margin-bottom: 20px;
}

.product_about_desc{

}
.product_about_desc + .product_about_desc{
  margin-top: 40px;
}
.product_about_desc_img{

}
.product_about_desc_img_txt{

}
.product_about_desc_imgs{
  display: flex;
  justify-content: space-between;
  gap: 15px 10px;
  padding: 0 10px;
}
.product_about_desc_imgs_item{
  width: calc((100% - 10px) / 2);
}


/* 特徴 */
.product_feature_row{

}
.product_feature_row + .product_feature_row{
  margin-top: 50px;
}
.product_feature_row .customer_point_ttl{
  margin-bottom: 20px;
}
.product_feature_spec{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_feature_spec_box1{
  width: 100%;
}
.product_feature_spec_box2{
  width: 100%;
  margin-top: 20px;
}

.product_feature_spec + .cmn_about_txt{
  margin-top: 30px;
}


.product_feature_spec_list1{
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.product_feature_spec_list1_item{
  width: 100%;
  background: #daeff9;
  border-radius: 10px;
  padding: 13px 20px;
}
.product_feature_spec_list1_txt1{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.product_feature_spec_list1_item.color1 .product_feature_spec_list1_txt1{
  color: #009746;
}
.product_feature_spec_list1_item.color2 .product_feature_spec_list1_txt1{
  color: #2b2563;
}
.product_feature_spec_list1_item.color3 .product_feature_spec_list1_txt1{
  color: #dd452b;
}
.product_feature_spec_list1_item.color4 .product_feature_spec_list1_txt1{
  color: #5d4b97;
}
.product_feature_spec_list1_item.color5 .product_feature_spec_list1_txt1{
  color: #e36d6e;
}
.product_feature_spec_list1_txt2{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.666;

}
* + .product_feature_spec_list1_txt2{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #bfbfbf;
}

.product_feature_spec_list2{
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.product_feature_spec_list2_item{
  display: flex;
  align-items: center;
  width: 100%;
  background: #daeff9;
  padding: 10px 15px;
}
.product_feature_spec_list2_txt1{
  width: 100px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.product_feature_spec_list2_txt2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(100% - 100px);
  min-height: 42px;
  padding: 5px 0 5px 15px;
  font-size: 15px;
  line-height: 1.666;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
}
.product_feature_spec_list2_txt2:before{
  content: "";
  width: 1px;
  background: #bfbfbf;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;

}

.product_feature_spec_img1{

}
.product_feature_spec_img2{
  border: 1px solid #00558d;
  text-align: center;
}

/* 特徴（ポイント） */
.product_feature_point{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.product_feature_point_item{
  width: 100%;
  /*width: calc((100% - 80px) / 3);*/
}
.gjs-dashed .product_feature_point_item{
  border: 10px solid #CCC;
}
.product_feature_point_img{
  aspect-ratio: 48 / 36;
  border: 1px solid #00558d;
  padding: 14px 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.product_feature_point_img img{
  border: 14px solid #FFF;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_feature_point_txt1{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 10px;
}
.product_feature_point_txt2{
  padding: 0 12px;
  margin-top: 3px;
  text-align: justify;
}

.product_feature_point.col2{
  gap: 20px 40px;
}
.product_feature_point.col2 .product_feature_point_item{
  width: calc((100% - 40px) / 2);
  width: 100%;
}
.product_feature_point.col2 .product_feature_point_img{
  aspect-ratio: 74 / 49;
}
.product_feature_point.col3{
  gap: 20px 40px;
}
.product_feature_point.col3 .product_feature_point_item{
  width: calc((100% - 80px) / 3);
  width: 100%;
}


/* 設置事例 */
.product_works_txt{
  margin-top: 20px;
}

@media (max-width:767px){

  .js-scrollable .product_about_desc_img{
    width: 650px;
  }

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

  /* ナビ */
  .product_cat_nav{
    gap: 10px 15px;
  }
  .product_cat_nav_item{
    width: calc((100% - 45px) / 4);
    min-height: 54px;
    border-radius: 34px;
    font-size: 16px;
  }

  .product_cat_nav.col5{
    gap: 10px 10px;
  }
  .product_cat_nav.col5 .product_cat_nav_item{
    width: calc((100% - 40px) / 3);

  }

  /* ABOUT */
  .product_about{

  }
  * + .product_about{
    margin-top: 80px;
  }
  .product_about_box1{
    /*width: 49.01%;*/
  }
  .product_about_box2{
    /*width: 42.76%;*/
    padding-top: 20px;
  }
  .product_about_img_wrap{
    padding: 20px 20px;
  }
  .product_about .cmn_about_ttl{
    margin-bottom: 30px;
  }

  .product_about_desc_imgs{
    gap: 15px 20px;
    padding: 0 15px;
  }
  .product_about_desc_imgs_item{
    width: calc((100% - 20px) / 2);
  }


  /* 特徴 */
  .product_feature_row{

  }
  .product_feature_row + .product_feature_row{
    margin-top: 100px;
  }
  .pg_product .section.sec6 .product_feature_row + .product_feature_row{
    margin-top: 75px;
  }
  .product_feature_row .customer_point_ttl{
    margin-bottom: 30px;
  }
  .product_feature_spec{
  }
  .product_feature_spec_box1{
    /*width: 49.01%;*/
  }
  .product_feature_spec_box2{
    /*width: 47.69%;*/
    /*margin-top: 0;*/
  }

  .product_feature_spec_list1{
    gap: 5px 10px;
  }
  .product_feature_spec_list1_item{
    width: 100%;
    padding: 13px 20px;
  }
  .product_feature_spec_list1_txt1{
    font-size: 21px;
  }
  .product_feature_spec_list1_txt2{
    font-size: 18px;
  }
  * + .product_feature_spec_list1_txt2{
    margin-top: 12px;
  }

  .product_feature_spec_list2{
    gap: 5px 10px;
  }
  .product_feature_spec_list2_item{
    padding: 10px 30px;
  }
  .product_feature_spec_list2_txt1{
    width: 178px;
    font-size: 18px;
  }
  .product_feature_spec_list2_txt2{
    width: calc(100% - 178px);
    min-height: 42px;
    padding: 5px 0 5px 30px;
    font-size: 18px;
  }
  .product_feature_spec_list2_txt2:before{
    width: 1px;
    top: 0;
    bottom: 0;
    left: 0;
  }


  /* 特徴（ポイント） */
  .product_feature_point{
    gap: 20px 40px;
  }
  .product_feature_point_item{
    width: calc((100% - 80px) / 3);
  }
  .product_feature_point_img{
    padding: 14px 14px;
    text-align: center;
  }
  .product_feature_point_txt1{
    font-size: 18px;
    margin-top: 16px;
  }
  .product_feature_point_txt2{
    padding: 0 12px;
  }

  .product_feature_point.col2{
    gap: 20px 20px;
  }
  .product_feature_point.col2 .product_feature_point_item{
    width: calc((100% - 40px) / 2);
  }
  .product_feature_point.col3{
    gap: 20px 20px;
  }
  .product_feature_point.col3 .product_feature_point_item{
    width: calc((100% - 80px) / 3);
  }
  
  

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



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

  /* ナビ */
  .product_cat_nav{
    gap: 15px 26px;
  }
  .product_cat_nav_item{
    width: calc((100% - 78px) / 4);
    min-height: 68px;
    border-radius: 34px;
    font-size: 18px;
  }

  .cmn_about + .product_cat_nav{
    margin-top: 65px;
  }

  .product_cat_nav.slim{

  }
  .product_cat_nav.slim .product_cat_nav_item{
    font-size: 16px;
    min-height: 45px;
  }
  .product_cat_nav.col5{
    gap: 10px 18px;
  }
  .product_cat_nav.col5 .product_cat_nav_item{
    width: calc((100% - 72px) / 3);

  }
  .product_cat_nav.col7{
    gap: 10px 18px;
  }
  .product_cat_nav.col7 .product_cat_nav_item{
    width: calc((100% - 108px) / 7);

  }

  /* ABOUT */
  .product_about{

  }
  * + .product_about{
    margin-top: 80px;
  }
  .product_about_box1{
    width: 49.01%;
  }
  .product_about_box2{
    width: 42.76%;
    padding-top: 20px;
  }
  .product_about_img_wrap{
    padding: 20px 20px;
  }
  .product_about .cmn_about_ttl{
    margin-bottom: 55px;
  }

  .product_about_desc_imgs{
    gap: 15px 50px;
    padding: 0 30px;
  }
  .product_about_desc_imgs_item{
    width: calc((100% - 50px) / 2);
  }

  /* 特徴 */
  .product_feature_row{

  }
  .product_feature_row + .product_feature_row{
    margin-top: 100px;
  }
  .product_feature_row .customer_point_ttl{
    margin-bottom: 50px;
  }
  .product_feature_spec{
  }
  .product_feature_spec_box1{
    width: 49.01%;
  }
  .product_feature_spec_box2{
    width: 47.69%;
    margin-top: 0;
  }

  .product_feature_spec_list1{
    gap: 5px 10px;
  }
  .product_feature_spec_list1_item{
    width: 100%;
    padding: 13px 20px;
  }
  .product_feature_spec_list1_txt1{
    font-size: 21px;
  }
  .product_feature_spec_list1_txt2{
    font-size: 18px;
  }
  * + .product_feature_spec_list1_txt2{
    margin-top: 12px;
  }

  .product_feature_spec_list2{
    gap: 5px 10px;
  }
  .product_feature_spec_list2_item{
    padding: 10px 30px;
  }
  .product_feature_spec_list2_txt1{
    width: 178px;
    font-size: 18px;
  }
  .product_feature_spec_list2_txt2{
    width: calc(100% - 178px);
    min-height: 42px;
    padding: 5px 0 5px 30px;
    font-size: 18px;
  }
  .product_feature_spec_list2_txt2:before{
    width: 1px;
    top: 0;
    bottom: 0;
    left: 0;
  }

  .product_feature_spec + .cmn_about_txt{
    margin-top: 60px;
  }



  /* 特徴（ポイント） */
  .product_feature_point{
    gap: 20px 40px;
  }
  .product_feature_point_item{
    width: calc((100% - 80px) / 3);
  }
  .product_feature_point_img{
    padding: 14px 14px;
    text-align: center;
  }
  .product_feature_point_txt1{
    font-size: 21px;
    margin-top: 16px;
  }
  .product_feature_point_txt2{
    padding: 0 12px;
  }

  .product_feature_point.col2{
    gap: 20px 40px;
  }
  .product_feature_point.col2 .product_feature_point_item{
    width: calc((100% - 40px) / 2);
  }
  .product_feature_point.col3{
    gap: 20px 40px;
  }
  .product_feature_point.col3 .product_feature_point_item{
    width: calc((100% - 80px) / 3);
  }
}
@media (min-width:1470px){

  .product_about_desc_imgs{
    gap: 10px 50px;
    padding: 0 30px;
  }
  .product_about_desc_imgs_item{
    width: calc((100% - 50px) / 2);
  }

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

  .product_about_desc_imgs{
    gap: 10px 120px;
    padding: 0 75px;
  }
  .product_about_desc_imgs_item{
    width: calc((100% - 120px) / 2);
  }

}



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

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

}
.pg_equipment .section.sec1{

}
.pg_equipment .section.sec2{
  padding-top: 0;
}

@media (max-width:374px){

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

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

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

  .pg_equipment .section.sec1{

  }
  .pg_equipment .section.sec2{
    padding-top: 70px;
  }

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


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

  .pg_equipment .section.sec2{
    padding-top: 70px;
  }

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


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


}

/* メイン部分 */


/* 設備 */
.equipment_rows{

}
.equipment_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.equipment_row + .equipment_row{
  margin-top: 50px;
}
.equipment_row .anchor{
  width: 100%;
}

.equipment_row .customer_point_ttl{
  width: 100%;
  margin-bottom: 20px;
}
.equipment_row .cmn_about_ttl{
  letter-spacing: 0;
}
.equipment_row_box1{
  width: 100%;
}
.equipment_row_box2{
  width: 100%;
  margin-top: 10px;
}
.equipment_img_wrap{
  padding: 40px;
  border: 1px solid #00558d;
}
.equipment_img{

}
.equipment_img.img_fit:before{
  padding-top: 73.68%;
}



@media (max-width:767px){

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

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


  /* 設備 */
  .equipment_rows{

  }
  .equipment_row{
  }
  .equipment_row + .equipment_row{
    margin-top: 150px;
  }
  .equipment_row .customer_point_ttl{
    margin-bottom: 40px;
  }
  .equipment_row_box1{
    width: 49.01%;
  }
  .equipment_row_box2{
    width: 42.76%;
    margin-top: 15px;
  }
  .equipment_img_wrap{
    padding: 40px;
  }
  .equipment_row:nth-child(odd) .equipment_row_box1{

  }
  .equipment_row:nth-child(odd) .equipment_row_box2{

  }
  .equipment_row:nth-child(even) .equipment_row_box1{
    order: 2;
  }
  .equipment_row:nth-child(even) .equipment_row_box2{
    order: 1;
  }

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


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


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


}

@media (min-width: 1470px) {
  .equipment_row .cmn_about_ttl{
    font-size: 44px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1720px) {
  .equipment_row .cmn_about_ttl{
    font-size: 48px;
  }
}



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

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

}
.pg_agent .section.sec1{

}
.pg_agent .section.sec2{
  padding-top: 0;
}
.pg_agent .section.sec3{
  padding-top: 0;
}
.pg_agent .section.sec4{
  padding-top: 0;
}
.pg_agent .section.sec4 * + .agent_nayami{
  margin-top: 50px;
}


@media (max-width:374px){

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

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

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

  .pg_agent .section.sec2{
    padding-top: 90px;
  }
  .pg_agent .section.sec3{
    padding-top: 85px;
  }
  .pg_agent .section.sec4{
    padding-top: 85px;
  }

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


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

  .pg_agent .section.sec2 .tt2{
    margin-bottom: 75px;
  }

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

  .pg_agent .section.sec4 * + .agent_nayami{
    margin-top: 170px;
  }

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


}

/* メイン部分 */


/* 悩み */
.agent_nayami{

}
* + .agent_nayami{
  margin-top: 80px;
}

/* おすすめ業種 */
.agent_osusume{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}
.tt2 + .agent_osusume{
  /*margin-top: 30px;*/
}
.agent_osusume_item{
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 10px) / 2);
  min-height: 50px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  background: #daeff9;
  border-radius: 10px;
}

/* メリット */
.agent_merit{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;

}
.agent_merit_item{
  width: 100%;
  padding: 10px 15px 15px;
  border: 1px solid #00558d;
}
.agent_merit_item_ttl{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 5px 5px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  background: #00558d;
  color: #FFF;
}
.agent_merit_item_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-align: justify;
  margin-top: 10px;
}

.agent_merit.col3 .agent_merit_item_txt{
  text-align: justify;
}

/* サポート */
.agent_support{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
* + .agent_support{
  margin-top: 40px;
}
.agent_support_item{
  width: 100%;
}
.agent_support_item_ttl{
  font-size: 18px;
  border-bottom: 2px solid;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.agent_support_item_txt{
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: justify;
}

@media (max-width:767px){

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

  .agent_nayami .customer_reco_list{
    margin-top: 30px;
  }

  /* おすすめ業種 */
  .agent_osusume{
    gap: 15px 15px;
  }
  .tt2 + .agent_osusume{
    margin-top: 30px;
  }
  .agent_osusume_item{
    width: calc((100% - 30px) / 3);
    min-height: 64px;
    font-size: 20px;
  }

  /* メリット */
  .agent_merit{
    gap: 20px 20px;
  }
  .agent_merit_item{
    width: calc((100% - 20px) / 2);
    padding: 10px 15px 15px;
  }
  .agent_merit_item_ttl{
    min-height: 56px;
    font-size: 20px;
  }
  .agent_merit_item_txt{
    font-size: 16px;
    text-align: center;
    margin-top: 15px;
  }

  /* サポート */
  .agent_support{
    gap: 40px 30px;
  }
  * + .agent_support{
    margin-top: 45px;
  }
  .agent_support_item{
    width: calc((100% - 30px) / 2);

  }
  .agent_support_item_ttl{
    font-size: 20px;
    border-bottom: 3px solid;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .agent_support_item_txt{
  }


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




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

  /* メリット */
  .agent_merit{
    gap: 20px 20px;
  }
  .agent_merit_item{
    padding: 10px 20px 25px;
  }
  .agent_merit_item_ttl{
    min-height: 62px;
    font-size: 24px;
  }
  .agent_merit_item_txt{
    font-size: 18px;
    margin-top: 22px;
  }

  .agent_merit.col2{
    gap: 20px 30px;
  }
  .agent_merit.col2 .agent_merit_item{
    width: calc((100% - 30px) / 2);
  }
  .agent_merit.col3{
    gap: 30px 40px;
  }
  .agent_merit.col3 .agent_merit_item{
    width: calc((100% - 80px) / 3);
    padding: 10px 10px 25px;
  }
  .agent_merit.col3 .agent_merit_item_txt{
    padding: 0 10px;
  }

  /* サポート */
  .agent_support{
    gap: 65px 50px;
  }
  * + .agent_support{
    margin-top: 45px;
  }
  .agent_support_item{
    width: calc((100% - 50px) / 2);

  }
  .agent_support_item_ttl{
    font-size: 24px;
    border-bottom: 3px solid;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .agent_support_item_txt{
  }

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

  /* おすすめ業種 */
  .agent_osusume{
    gap: 20px 40px;
  }
  .tt2 + .agent_osusume{
    margin-top: 50px;
  }
  .agent_osusume_item{
    width: calc((100% - 80px) / 3);
    min-height: 74px;
    font-size: 21px;
  }

  /* サポート */
  .agent_support{
    gap: 65px 80px;
  }
  * + .agent_support{
    margin-top: 45px;
  }
  .agent_support_item{
    width: calc((100% - 80px) / 2);

  }
  .agent_support_item_ttl{
    font-size: 24px;
    border-bottom: 3px solid;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .agent_support_item_txt{
  }

  .agent_merit.col3 .agent_merit_item{
    min-height: 265px;
  }
}
@media (min-width:1720px){

  .agent_merit_item_txt{
    text-align: center;
  }

  /* サポート */
  .agent_support{
    gap: 65px 160px;
  }
  * + .agent_support{
    margin-top: 45px;
  }
  .agent_support_item{
    width: calc((100% - 160px) / 2);

  }
}



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


/* メイン部分 */

/* お客様の声 */
.product_voice{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_voice_box1{
  width: 100%;
}
.product_voice_box2{
  width: 100%;
  margin-top: 20px;
}
.product_voice_img_wrap{
  padding: 10px;
  border: 1px solid #00558d;
}
.product_voice_img {
  
}
.product_voice_img.img_fit:before{
  padding-top: 64.28%;
}

@media (max-width:767px){

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

  /* お客様の声 */
  .product_voice{
    
  }
  .product_voice_box1{
    /*width: 49.01%;*/
  }
  .product_voice_box2{
    /*width: 49.01%;*/
  }
  .product_voice_img_wrap{
    padding: 20px;
  }
  
}
@media (min-width:1024px){

  /* お客様の声 */
  .product_voice{
    
  }
  .product_voice_box1{
    width: 49.01%;
  }
  .product_voice_box2{
    width: 49.01%;
    margin-top: 0;
  }
  .product_voice_img_wrap{
    padding: 20px;
  }

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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@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{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


/*******************************
*　会社概要
********************************/

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #a6a6a6;
  padding: 10px 10px;
  font-weight: 500;
}
.company_tbl .table_rows_th{
  background: #def2ff;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
  line-height: 1.875em;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

.gmap{
  margin-top: 30px;
}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
}
@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #a6a6a6;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #a6a6a6;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }


  /* ギャラリー */
  .company_gallery_items{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .company_gallery_items{
    margin-top: 40px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }

  .gmap{
    margin-top: 49px;
  }
  .access_map iframe{
    height: 380px;
  }
}
@media (min-width:1024px){


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 20px 50px 20px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding-left: 54px;
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 60px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }

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


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


}



/* カテゴリNav */
.cmn_cat_nav{

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav .webgene-item a:after{
  content: "→";
  font-size: 10px;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav .webgene-item a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 .webgene-item a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 .webgene-item a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 .webgene-item a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp .webgene-item{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp .webgene-item{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp .webgene-item{
    font-size: 10px;
  }

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav .webgene-item{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav .webgene-item a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav .webgene-item a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav.col2 .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3 .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 .webgene-item{
    width: 25%;
  }
  .cmn_cat_nav.col5 .webgene-item{
    width: 20%;
  }

}


/*******************************
*　記事一覧
********************************/
.pg_column .tt2{
  margin-bottom: 40px;
}
/* 一覧（サムネあり） */
.news_list_thumb{

}
* + .news_list_thumb{
  margin-top: 50px;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.news_list_thumb .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list_thumb .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.news_list_thumb .webgene-item{

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #2850a1;
  color: #FFF;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

  /* 一覧（サムネあり） */
  .pg_column .tt2{
    margin-bottom: 83px;
  }

  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .news_list_thumb .webgene-item{

  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 10px;
  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 13px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 15px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{

  }

  .news_list .webgene-item .category{
    width: 100%;
    ;
    width: auto;
  }
}
@media (min-width:1024px){

  /* 一覧（サムネあり） */


  /* 3カラム */
  .news_list_thumb.col3 .webgene-item{
    width: 33.333%;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    margin-top: 15px;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

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

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 25px;
  }

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
  }


  .news_list.kasou{

  }
  .pg_column .posts_layout_box1{
    width: 75.98%;
  }
  .pg_column .posts_layout_box2{
    width:19.73%;
  }
  .news_list.kasou .webgene-blog{
    margin-inline:-25.5px;
  }
  .news_list.kasou .webgene-item{
    width: 33.333%;
    padding-inline:25.5px;
  }
  .news_list.kasou .webgene-item:nth-child(n+4){
    margin-top: 57px;
  }
  .news_list .webgene-item .category{
    width: auto;
  }


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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 30px;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #00558d;
  color: #FFF;
  padding: 13px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 5px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

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

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

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }
}
@media (min-width:768px){

  .pg_news{
    padding-top: 50px;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 34px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }


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

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.34%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


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

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

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

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

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

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


}




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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@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{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}


#opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
}

.opening__text {
  color: var(--main-color);
  font-size: clamp(30px, 5vw, 80px);
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
}

.opening__text.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.gjs-dashed #opening {
  position: static;
  height: 500px;
}
.gjs-dashed .opening__text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease, transform 1.2s ease;
}