@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "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;
  margin-top: 0!important;
}
#gt-nvframe{
  display: none; 
}

#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: 30px;
  padding: 10px;
}
.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;
}

.hdr_lang {
  width: 150px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  background: #fff;
  color: #181818;
  border-radius: 5px;
  padding: 8px 21px 8px 13px;
  position: relative;
  transition: all .2s;
  border: 1px solid #181818;
  margin-right: 0;
  margin-left: auto;
  margin-top: 0;
}
.hdr_lang_select{
  display: none;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  right: 0;
  background: #333;
  color: #FFF;
  padding: 5px 0;
  transition: 0.2s all;
}
.hdr_lang:hover{
  border: 1px solid #1c1c1c;
  background: #ccc;
  color: #181818;
}
.hdr_lang:hover .hdr_lang_select{
  display: block;
}
.hdr_lang_select p{
  padding: 5px 10px;
  cursor: pointer;
}
@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
        padding: 16px 20px;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .insta_box{
    display: block;
  }

  .hdr_menu_box{
    display: none;
  }

  .hdr_lang{
    width: 110px;
    font-size: 15px;
    margin-top: 0;
    z-index: 2;
    margin-right: 30px;
  }
  
  .hdr_logo img{
        height: 21px;
  }
  
  .hdr_outer{
    display: flex;
    align-items: center;
  }
   .insta_logo{
     text-align: center;
    display: block;
    position: relative;
  }
  .insta_logo:after{
    content: "";
    display: block;
    width: 65px;
    aspect-ratio:81 / 88;
    height: 88px;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/insta_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: all .2s;
  }
  .insta_logo img{
    position: relative;
    z-index: 1;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 30px 14px 20px;
  }

  .hdr_outer{
    display: flex;
  }
  .insta_box{

  }
  .insta_logo{

  }
  .hdr_menu_box{

  }
  .hdr_menu_box a{

  }


  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    align-items: center;
    background: rgba(255,255,255,0.8);
    padding: 13px 86px 40px 57px;
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }
  .header.slim .hdr_menu_box a:after{
    transform: translateY(-50%) translateX(-50%) scale(0.9);
  }
  .header.slim .hdr_menu_box a:hover:after{
    transform: translateY(-50%) translateX(-50%) scale(1.1);
  }


  /* TELボタン */
  .hdr_tel{

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

  .hdr_outer{
    display: flex;
    padding-top: 22px;
  }
  .insta_box{

  }
  .insta_logo{
    display: block;
    position: relative;
  }
  .insta_logo:after{
    content: "";
    display: block;
    width: 81px;
    height: 88px;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/insta_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: all .2s;
  }
  .hdr_menu_box a img,
  .insta_logo img{
    position: relative;
    z-index: 1;
  }
  .hdr_menu_box{
    margin-left: 71px;
    margin-top: 7px;
  }
  .hdr_menu_box a{
    display: block;
    position: relative;
    width: 60px;
    display: block;
  }
  .hdr_menu_box a:after{
    content: "";
    display: block;
    width: 121px;
    height: 113px;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/menu_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    transition: all .2s;
  }
  .insta_logo:hover:after,
  .hdr_menu_box a:hover:after{
    transform: translateY(-50%) translateX(-50%) scale(1.07);

  }
  .hdr_menu_box a:hover:after{
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/or.png);
  }

  .hdr_lang {
    display: flex;
    align-items: center;
    width: 250px;
    margin-top: 0;
    margin-right: 30px;
  }

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

  .header{
    --logo-height: 41px;
    padding: 44px 30px 44px 30px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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



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

  .header{
    --logo-height: 41px;
    padding: 44px 86px 44px 57px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv:before{
  content: "";
  display: block;
  width: 19.53%;;
  aspect-ratio: 375 / 516;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/mv_left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.mv:after{
  content: "";
  display: block;
  width: 15.26%;;
  aspect-ratio: 293 / 545;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/mv_right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top:0;
  right: 0;
}

.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

/* 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_inner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 50px - 54px);
  height: 65vh;
  padding-inline:20px;
}
.mv_inner:before{
  content: "";
  display: block;
  width: 1197px;
  aspect-ratio:1197 / 110;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/mv_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 52%;
  transform:translateX(-50%);
}
.mv_inner:after{
  content: "";
  display: block;
  width: 1241px;
  aspect-ratio:1241 / 184;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/op.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 59%;
  transform:translateX(-50%);
}
.mv_img_box{
  position: relative;
}
.mv_img_box:before{
  content: "";
  display: block;
  width: 150px;
  aspect-ratio:373 / 262;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/mv_logo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -100px;
  right:0;
}
.mv_img{

}
.mv_bura{
  width: 8.1%;
  aspect-ratio:96 / 154;
  position: absolute;
  left: 14.86%;
  top: 39.52%;
}
.mv_bura img{
  transform-origin: top center;
  animation: bura 1s ease-in-out infinite;
}

@keyframes bura {
  0% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(20deg);
  }
}

.mv_kuruma{
  width: 16.61%;;
  aspect-ratio:319 / 129;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/mv_ku_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 10.26%;
  bottom: 13.814%;;
}
.mv_kuruma_1{
  width: 53.29%;
  top: -48%;
  position: absolute;
  left: 25%;
}

/* スライダーの場合 */
.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{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }
  .mv_inner{
    height: 80vh;
  }

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

  }
  .mv_txt_p2{

  }

  .mv_img_box:before{
    width: 200px;
    bottom: -70px;
  }
}
@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{

  }

  .mv_inner{
    height: 100vh;
  }

  .mv_img_box:before{
    width: 300px;
    bottom: -70px;
  }
}
@media (min-width:1200px){

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

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

  }
  .mv_txt_p2{

  }


  .mv_img_box:before{
    width: 373px;
    bottom: -70px;
  }
}
@media (min-width:1470px){

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

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

}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_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;
}

.pg_header_tt{
  width: 100%;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}


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

  .pg_header_title_txt{

  }

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

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

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

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

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

}


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

.footer{
  background: #bae4a3;
  margin-top: 150px;
  position: relative;
  padding-top: 61px;
}
.footer:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 87;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/ftr_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -85px;
  left: 50%;
  transform:translateX(-50%);
}

.cara1{
  width: 167px;
  aspect-ratio: 167 / 153;
  top: -169px;
  left: calc(50% - 554px);
  z-index: 2;
}
.cara1.sub{
  width: 478px;
  aspect-ratio: 478 / 127;
  top: -169px;
  left: calc(50% - 554px);
  z-index: 2;
}
.cara2{
  width: 205px;
  aspect-ratio: 205 / 266;
  top: -330px;
  right: calc(50% - 479px);
  z-index: -1;
}

.cara2.neko{
  width: 24.94%;
  aspect-ratio: 479 / 196;
  top: -31%;
  right: calc(50% - 41%);
  z-index: 2;
}

.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;
  padding: 8px 0;
  margin-top: 40px;
}

/* 追尾スマホメニュー */
.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 #ef7f1a;
}
.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 #ef7f1a;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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


.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid #000;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .content_desc{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75em;
  margin-top: 34px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.025em;
}
.ftr_contact_tt{

}
.ftr_contact_tt_en{
  font-size:40px;;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Darumadrop One", sans-serif;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.ftr_contact_tt_ja{
  display: flex;
  align-items: center;
  font-size:16px;;
  font-weight: 600;
  letter-spacing: 0.075em;;
  margin-top: 30px;
}
.ftr_contact_tt_ja:before{
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background: #000;
  margin-right: 27px;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 30px;
}
.link_1{
  aspect-ratio: 567 / 72;
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  border: none;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/link1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  text-align: left;
}
.link_1:after{
  content: "▶︎";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.link_1:hover{
  color: #FFF;
  transform: scale(1.02);
}
.ftr_tel{
  margin-top: 15px;
  display: block;
  transition: all .2s;
}
.ftr_tel:hover{
  transform: scale(1.03);
}

.ftr_1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 40px;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.76em;
  margin-top: 26px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

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

}
@media (max-width:767px){
  .pg_header{
    height: 190px;
  }

  body{
    padding-bottom: 56px;
  }

  .mv_inner:before{
    width: 365px;
  }
  .mv_inner:after{
    width: 400px;
    left: 200px;
    bottom: 37px;
  }
  .mv_kuruma{
    width: 45.61%;
    bottom: 12.814%;
    left: -0.74%;
    bottom: 116px;
    left: -69px;
  }
  .mv_img_box{
    margin-bottom: 100px;
  }
  .mv_img_box:before{
    width: 190px;
    bottom: -150px;
  }

  .footer:before{
    width: 1000px;
    top: -34px;
  }
  .cara1{
    width: 80px;
    aspect-ratio: 167 / 153;
    top: -75px;
    left: 0;
  }
  .cara2 {
    width: 180px;
    aspect-ratio: 205 / 266;
    top: -143px;
    right: 10px;
    z-index: -1;
  }

  .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_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }

  .cara1.sub{
    width: 250px;
    aspect-ratio: 478 / 127;
    top: -73px;
    left: calc(50% - 154px);
    z-index: 2;
  }
  .cara2.neko{
    width: 80px;
    aspect-ratio: 479 / 196;
    top: -50px;
    right: calc(50% - 185px);
    z-index: 2;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 323px;
  }
  .cara1{
    width: 167px;
    aspect-ratio: 167 / 153;
    top: -169px;
    left: calc(50% - 354px);
    z-index: 2;
  }
  .cara2{
    width: 393px;
    width: 25.46%;
    aspect-ratio: 393 / 266;
    top: -330px;
    top: -27%;
    right: calc(50% - 303px);
    z-index: -1;
  }

  .ftr_contact_box{
    padding-bottom: 53px;
  }
  .ftr_contact_box1{
    width: 43.67%;
  }
  .ftr_contact_tt{

  }
  .ftr_contact_tt_en{
    font-size:50px;;
  }
  .ftr_contact_tt_ja{
    margin-top: 24px;
  }
  .ftr_contact_box2{
    width: 51.35%;
    margin-top: 0;
  }
  .link_1{
    font-size: 18px;
    padding: 16px 36px;
  }
  .link_1:after{
    right: 40px;
  }
  .ftr_tel{

  }
  .ftr_copy{
    margin-top: 79px;
  }

  .ftr_1{
    padding-top: 75px;
  }
  .ftr_1_box1{
    width: 35.68%;
  }
  .ftr_logo{

  }
  .ftr_add{
    font-size: 17px;
    font-weight: 600;
    line-height: 1.76em;
  }
  .ftr_1_box2{
    width: 57.64%;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
  }
  .ftr_link{
    width: 50%;
    font-size: 17px;
    font-weight: 600;
  }

  .cara1.sub{
    width: 478px;
    aspect-ratio: 478 / 127;
    top: -169px;
    left:0;
    z-index: 2;
  }
  .cara2.neko{
    width: 24.94%;
    aspect-ratio: 479 / 196;
    top: -20%;
    right: calc(50% - 41%);
    z-index: 2;
  }

  .mv_kuruma{
    left: 1.26%;
    bottom: 13.814%;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 323px;
  }
  .cara1{
    width: 167px;
    aspect-ratio: 167 / 153;
    top: -169px;
    left: calc(50% - 554px);
    z-index: 2;
  }
  .cara2{
    width: 393px;
    width: 25.46%;
    aspect-ratio: 393 / 266;
    top: -330px;
    top: -34%;
    right: calc(50% - 503px);
    z-index: -1;
  }

  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 25.67%;
    width: 37.38%;
  }
  .ftr_contact_tt{

  }
  .ftr_contact_tt_en{

  }
  .ftr_contact_tt_ja{

  }
  .ftr_contact_box2{
    width: 51.35%;
  }
  .link_1{

  }
  .ftr_tel{

  }

  .ftr_1_box1{
    width: 25.68%;
  }
  .cara1.sub{
    width: 478px;
    aspect-ratio: 478 / 127;
    top: -169px;
    left:0;
    z-index: 2;
  }
  .cara2.neko{
    width: 24.94%;
    aspect-ratio: 479 / 196;
    top: -24%;
    right: calc(50% - 41%);
    z-index: 2;
  }

  .mv_kuruma{
    left: 10.26%;
    bottom: 13.814%;
  }
}
@media (min-width:1200px){
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_tt{

  }
  .ftr_contact_tt_en{

  }
  .ftr_contact_tt_ja{

  }
  .ftr_contact_box2{

  }
  .link_1{

  }
  .ftr_tel{

  }
  .ftr_link{
    width: 189px;
  }  
  .ftr_link:nth-child(3n + 2){
    width: 160px;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 22px;
  }

  .cara2{
    width: 393px;
    width: 20.46%;
    aspect-ratio: 393 / 266;
    top: -330px;
    top: -34%;
    right: calc(50% - 404px);
    z-index: -1;
  }

  .ftr_1_box2{
    width: 48.64%;
    padding-top: 61px;
  }

  .cara1.sub{
    width: 478px;
    aspect-ratio: 478 / 127;
    top: -169px;
    left: calc(50% - 554px);
    z-index: 2;
  }
  .cara2.neko{
    width: 24.94%;
    aspect-ratio: 479 / 196;
    top: -24%;
    right: calc(50% - 41%);
    z-index: 2;
  }
}
@media (min-width:1470px){
  /*  .cara1.sub{
      width: 250px;
      aspect-ratio: 478 / 127;
      top: -73px;
      left: calc(50% - 154px);
    }*/

  .cara2.neko{
    width: 24.94%;
    aspect-ratio: 479 / 196;
    top: -31%;
    right: calc(50% - 41%);
    z-index: 2;
  }

  .cara2{
    width: 393px;
    width: 20.46%;
    aspect-ratio: 393 / 266;
    top: -330px;
    top: -41%;
    right: calc(50% - 664px);
    z-index: -1;
  }
}
@media (min-width:1536px){

}
@media (min-width:1720px){
  .cara2{
    width: 393px;
    width: 20.46%;
    aspect-ratio: 393 / 266;
    top: -330px;
    top: -39%;
    right: calc(50% - 664px);
    z-index: -1;
  }
}

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


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

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

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

}


/* テーブル用 */
.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 #1b2a74;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #1b2a74;
  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;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  max-width: 368px;
  aspect-ratio:368 / 72;
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  border: none;;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/read_more.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  text-align: left;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "▶︎";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  transform: scale(1.02);
}
.read_more a:hover:after{
  margin-right: -5px;
}


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

/* 文章 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  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;
  }

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

  .anchor{
    top: -150px;
  }

  /* ページネーション */
  .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{
    min-width: 285px;
    font-size: 18px;
    padding: 16px 32px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 29px;
  }

  /* 見出し */



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

  }


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

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .pg_product .webgene-pagination{
    margin-top: 13px;
  }
  .pg_blog .webgene-pagination{
    margin-top: 47px;
  }
  .pg_work .webgene-pagination{
    margin-top: 43px;
  }

  .posts_list .webgene-pagination{
    margin-top: 80px;
  }


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


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


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

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



/*******************************
*　HOME
********************************/
.out_btm{
  content: "";
  display: block;
  width: 1920px;;
  aspect-ratio:1920 / 239;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec2_btm.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -50px;;
  left: 50%;
  transform:  translateX(-50%);
}

.pg_home{

}
.pg_home .section.sec1{
  padding-top: 154px;
  padding-bottom: 150px;
  position: relative;
}
.pg_home .section.sec1:before{
  content: "";
  display: block;
  width: 19.21%;
  aspect-ratio:369 / 743;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec1_side_pos1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50px;
  left: 0;
  display: none;
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width: 18.38%;
  aspect-ratio:353 / 366;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec1_side_pos2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 26px;
  right: calc(50% - 764px);
}
.pg_home .section.sec2{
  background: #bae4a3;
  position: relative;
}
.pg_home .section.sec2:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 254;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/home_sec2_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -214px;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec3{
  position: relative;
  padding-top: 80px;
}
.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 1566px;
  aspect-ratio:1566 / 236;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec3_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50px;
  left: 51.5%;
  transform:translateX(-50%);
}
.pg_home .section.sec3:after{
  content: "";
  display: block;
  width: 8.9%;
  aspect-ratio:171 / 719;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec3_side_pos1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 85%;
  left: calc(50% - 966px);
  transform: translateY(-50%);
}
.pg_home .section.sec4{
  position: relative;
  padding-bottom: 130px;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 24.94%;
  aspect-ratio:479 / 354;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec4_left_pos.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 80px;
  left: calc(50% - 957px);
}
.pg_home .section.sec4:after{
  content: "";
  display: block;
  width: 52.34%;
  aspect-ratio:1005 / 85;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec4_btm.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -28px;
  left: 54.5%;
  transform:translateX(-50%);
  display: none;
}
.pg_home .section.sec5{
  background: #bae4a3;
  position: relative;
  padding-bottom: 80px;
}
.pg_home .section.sec5:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 198;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/s.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -190px;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec6{
  background: #bae4a3;
  position: relative;
}
.pg_home .section.sec6:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 250;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec6_btm.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -136px;
  left: 50%;
  transform:translateX(-50%);
}
.pg_home .section.sec7{
  position: relative;
}
.pg_home .section.sec7:before{
  content: "";
  display: block;
  width: 315px;
  aspect-ratio:315 / 122;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/bb.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -149px;
  left: 36%;
  transform:translateX(-50%);
}
.pg_home .section.sec7:after{
  content: "";
  display: block;
  width: 190px;
  aspect-ratio:190 / 196;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/cc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -124px;
  right: calc(50% - 782px);
}
.pg_home .section.sec8{

}

@media (max-width:767px){
  .pg_home .section.sec2:before{
    width: 650px;
    top: -60px;
  }
  .pg_home .section.sec4:after{
    width: 350px;
    bottom: -50px;
  }
  .pg_home .section.sec5:before{
    width: 850px;
    top: -80px;
  }
  .pg_home .section.sec6:after{
    width: 700px;
    bottom: -29px;
  }
  .pg_home .section.sec7:before{
    width: 160px;
    aspect-ratio: 315 / 122;
    bottom: -50px;
    left: 50%;
    display: none;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 300px;
    padding-bottom: 350px;
  }
  .pg_home .section.sec1:before{
    content: "";
    display: block;
    width: 19.21%;
    top: 50px;
    left: 0;
  }
  .pg_home .section.sec2{
    padding-bottom: 141px;
  }
  .pg_home .section.sec2:before{
    width: 1000px;
    top: -80px;
  }
  .pg_home .section.sec3{
    padding-top: 124px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
    padding-bottom: 269px;
  }
  .pg_home .section.sec5{
    padding: 122px 0;
  }
  .pg_home .section.sec6{
    padding-top: 108px;
  }
  .pg_home .section.sec7{
    padding-top: 235px;
  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec1:before{
    content: "";
    display: block;
    width: 19.21%;
    top: 50px;
    left: 0;
    display: none;
  }
  .pg_home .section.sec2:before{
    width: 1200px;
    top: -110px;
    width: 100%;
    top: -7%;
  }

}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 300px;
    padding-bottom: 350px;
  }
  .pg_home .section.sec1:before{
    content: "";
    display: block;
    width: 19.21%;
    top: -107px;
    left: 0;
    display: none;
  }
  .pg_home .section.sec2{
    padding-bottom: 141px;
  }
  .pg_home .section.sec2:before{
    width: 1200px;
    top: -110px;
    width: 100%;
    top: -12%;
  }
  .pg_home .section.sec3{
    padding-top: 124px;
  }
  .pg_home .section.sec4{
    padding-top: 120px;
    padding-bottom: 269px;
  }
  .pg_home .section.sec5{
    padding: 122px 0;
  }
  .pg_home .section.sec6{
    padding-top: 108px;
  }
  .pg_home .section.sec7{
    padding-top: 235px;
  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1470px){
  .pg_home .section.sec1{
    padding-top: 154px;
    padding-bottom: 350px;
  }
  .pg_home .section.sec2:before{
    width: 1920px;
    top: -214px;
    width: 100%;
    top: -15%;
  }

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


}

/*イラスト*/
.hosi{
  display: none;
  width: 58px;
  aspect-ratio:58 / 57;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/hosi.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.illust{
  position: absolute;
}
.home_sec1_pos{
  width: 18.43%;
  aspect-ratio:354 / 743;
  position: absolute;
  left: 0;
  top: -10%;
}
.home_sec1_pos_bg{
  width: 100%;
  aspect-ratio:354 / 743;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/c.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;

}
.home_sec1_pos_no1{
  width: 55.93%;
  top: 6%;
  right: -3%;
  z-index: -1;
}

.sec2_pos1{
  width: 276px;;
  aspect-ratio:276 / 337;
  top: -348px;
  left: calc(50% - 528px);
  z-index: 0;
}
.sec2_pos2{
  width: 196px;;
  aspect-ratio:196 / 249;
  top: -268px;
  right: calc(50% - 691px);
  z-index: -1;
}
.sec2_pos2 img{
  animation: sec2_pos2_move 2.5s ease-in-out infinite;
}



@keyframes sec2_pos2_move {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-100%, 100%);
  }
  100% {
    transform: translate(0, 0);
  }
}

.home_sec2_pos.no1{
  width: 41.45%;
  top: -14%;
  left: 10%;
}
.home_sec2_pos.no2{
  width: 49.68%;
  bottom: -7%;
  left: -20%;
  z-index: 1;
}

.sec3_pos1{
  width: 221px;;
  aspect-ratio:221 / 149;
  bottom: -34px;
  left: calc(50% - 643px);
  z-index: 0;
}
.sec3_pos2{
  width: 100px;;
  aspect-ratio:100 / 149;
  bottom: -35px;
  right: calc(50% - 512px);
  z-index: 0;
}

.sec3_pos1 img,
.sec3_pos2 img{
  animation: sec3_pos2_move 2.5s ease-in-out infinite;
}

@keyframes sec3_pos2_move {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(50%, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

.sec4_pos{
  width:39.01%;
  aspect-ratio:749 / 708;
  top: 150px;
  right: -30px;
}
.sec6_pos{
  width: 12rem;
  aspect-ratio:192 / 166;
  top: -9.2rem;
  right: 4.5rem;
  z-index: 2;
}
.sec6_pos img{
  transform-origin: center center;
  animation: bura 1s ease-in-out infinite;
}


.sec7_pos1{
  width: 6.3125rem;
  aspect-ratio: 389 / 405;
  top: 4.8rem;
  left: calc(50% - 12rem);
  z-index: 2;
}
.sec7_pos2{
  width: 5.375rem;
  aspect-ratio: 214 / 166;
  top: 4rem;
  right: calc(50% - 9.5rem);
  z-index: 2;
}
.sec7_pos3{

  position: absolute;

  bottom: -190px;
  left: calc(50% - 966px);
}
.cara_bg{
  width: 236px;;
  aspect-ratio: 236 / 594;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec7_left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cara{
  content: "";
  display: block;
  width: 162px;;
  aspect-ratio: 162 / 179;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec7_left_img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
  bottom: 111px;
  left: 189px;
}


/*main*/
/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
  position: relative;
}
.home_sec1_box1 .hosi{
  bottom: -40px;
  right: 0;
}
.home_sec1_box1_txt{
  text-align: center;
  font-size: clamp(6.25rem, 5.875rem + 1.88vw, 8.125rem);
  font-weight: 400;
  font-family: "Crafty Girls", cursive;
  line-height: 1;
}
.home_sec1_box1_txt p{
  letter-spacing: 0;
}
.home_sec1_box2{
  width: 100%;
  margin-top: 20px;
}
.arcth_desc{
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25em;
}
.arcth_top{

}
.arcth_btm{
  margin-top: 20px;
}


/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_box1{
  width: 100%;
  position: relative;
  z-index: 2;
  order: 2;
  margin-top: 40px;
}
.home_sec2_box1 .name{
  text-align: right;
}

.home_sec2_fukidasi{
  width: 201px;
  aspect-ratio:201 / 74;
  text-align: center;
  position: relative;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/fukiodasi.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_sec2_fukidasi.lg{
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/lg-fuki.png);
  width:273px;
  aspect-ratio:273 / 74;
}
.home_sec2_fukidasi_h2{
  font-size: 16px;
  font-weight: 800;
  padding-bottom: 10px;
}
.wh{
  color: #fff;
}
.tt_en{
  font-size: clamp(3.75rem, 2.625rem + 5.63vw, 9.375rem);
  font-size: clamp(3.125rem, 1.875rem + 6.25vw, 9.375rem);
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Darumadrop One", sans-serif;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.tt_en.lg{
  font-size: clamp(6.25rem, 3.75rem + 12.5vw, 18.75rem);
  letter-spacing: -0.07em;
}
.tt_en.bl{
  color: #1b2a74;
}
.tt_en.sm{
  font-size: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem);
}
.tt_en.xl{
  font-size: clamp(2.5rem, -0.125rem + 13.13vw, 15.625rem);
  letter-spacing: -0.09em;
}
.tt_en.girl{
  font-size: clamp(3.75rem, 2.875rem + 4.38vw, 8.125rem);
  font-family: "Crafty Girls", cursive;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.tt_en.hdr{
  font-size: clamp(2.5rem, 0.537rem + 9.81vw, 12.313rem);
}
.sec_tt{
  font-size: 20px;
  font-weight: 800;
  line-height: 1.78em;
}
.sec_tt.center{
  text-align: center;
}
.sec_tt p{
  letter-spacing: 0.075em;
}
.home_sec2_box1 .sec_tt{
  margin-top: 20px;
}
.content_desc{
  font-size: 16px;
  font-weight: 600;
  line-height: 2.5em;
}
.home_sec2_box1 .content_desc{
  margin-top: 20px;
}
.home_sec2_box1 .read_more{

}
.home_sec2_box2{
  width: 100%;
  order: 1;
}
.home_sec2_box2_inner{
  display: flex;
  gap:0 13px;
}
.home_sec2_box2_item{
  width: 33.333%;
  position: relative;
}
.home_sec2_box2_item:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;

}
.home_sec2_box2_item:nth-child(1):before{
  width: 49.68%;;
  aspect-ratio:157 / 446;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item1_il.png);
  bottom: -8%;
  left: -21%;
  z-index: 2;
  display: none;
}
.home_sec2_box2_item:nth-child(2):before{
  width: 41.45%;;
  aspect-ratio:131 / 287;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item2_il.png);
  top: -16%;
  left: 8%;
  display: none;
}
.home_sec2_box2_item:nth-child(even){
  margin-top: 50px;
}
.home_sec2_box2_item_img{

}
.home_sec2_box2_item_img:nth-child(n+2){
  margin-top: 13px;
}
.home_sec2_box2_item_img img{
  border-radius: 30px;
}
.home_sec2_box2_item_img:before{
  padding-top: 118.6%;
}

/*sec3*/
.fukidasi_tt{
  text-align: center;
  position: relative;
}
.fukidasi_tt .home_sec2_fukidasi{

}
.home_sec2_fukidasi.center{
  margin-inline:auto;
}

.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  gap:50px 0;
  margin-top: 40px;
}
.home_sec3_item{
  width: 100%;
}
.home_sec3_item_img{
  outline: 10px solid #1b2a74;
  border-radius: 30px;
}
.home_sec3_item_img:before{
  padding-top: 74.32%;
}
.home_sec3_item_img img{
  border-radius: 30px;
}
.home_sec3_item_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  margin-top: 20px;
}
.home_sec3_item .content_desc{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.944em;
}
.home_sec3_item .read_more{

}

/*sec4*/
.home_sec4_wrap .fukidasi_tt{
  margin-bottom: 40px;
}
/* 2枚センター寄せの調整 */
.works_list.swiper{
  /*  margin-right: -580px;*/
}
.works_list.swiper .webgene-item{
  width: 300px;
  height: auto;
}
.works_list.swiper .webgene-item .img:before{
  padding-top: 80.35%;
}
.works_list.swiper .webgene-item .img img{
  border-radius: 30px;
}
.sw_nav{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.sw_nav .citrus-button-next{
  width: 40px;
  order: 3;
}
.sw_nav .citrus-button-prev{
  width: 40px;
  order: 1;
}
.sw_nav .swiper-pagination{
  width: auto;
  order: 2;
  margin-inline:30px;
  margin-top: 0;
}
.sw_nav .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  aspect-ratio:1;
  border: 1px solid #1b2a74!important;
  background: #fff;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin-inline:8px;
  border: 1px solid #1b2a74!important;
}

.sw_nav .swiper-pagination-bullet-active {
  background-color: #1b2a74;
}

/*sec5*/
.maru{
  display: none;
  width: 62px;
  aspect-ratio: 62 / 62;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/maru.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
}
.neji{
  display: none;
  width: 88px;
  aspect-ratio: 88 / 82;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/neji.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
}
.home_sec5_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  position: relative;
  padding-top: 25px;
}
.home_sec5_box:before{
  content: "";
  display: block;
  position: absolute;
  inset: -40px -230px -45px;
  background:
    url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_top.png) top center / contain no-repeat,
    url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_right.png) right center / contain no-repeat,
    url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_btm.png) bottom center / contain no-repeat,
    url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_left.png) left center / contain no-repeat;
  pointer-events: none;
}
.home_sec5_box1{
  width: 100%;
}
.home_sec5_box2{
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.yure{
  width: 2.1875rem;
  aspect-ratio: 35 / 33;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/yure.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -3rem;
  right: -1rem;
  z-index: 1;
}
.home_sec5_box2_img{
  border-radius: 30px;
  outline: 10px solid #1b2a74;
  transform: rotate(-5deg);
}
.home_sec5_box2_img img{
  border-radius: 30px; 
}
.home_sec5_box2_img:before{
  padding-top: 72.01%;
}
.home_sec5_box3{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.home_sec5_box3 .sec_tt{
  position: relative;
}
.home_sec5_box3 .content_desc{
  line-height: 2.222em;
  margin-top: 20px;
}

/*sec6*/
.home_sec6_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.home_sec6_box1{
  width: 100%;
  margin-top: 30px;
  order: 2;
}
.home_sec6_box1 .fukidasi_tt{
  position: relative;
  z-index: 2;
}
.home_sec6_box1 .tt_en{
  margin-top: 15px;
  text-align: left;
}
.home_sec6_box1 .sec_tt{
  margin-top: 30px;
}
.home_sec6_box1 .content_desc{
  margin-top: 34px;
}
.home_sec6_box1 .read_more{

}
.home_sec6_box2{
  width: 100%;
  position: relative;
  order: 1;
}
.home_sec6_box2:before{
  content: "";
  width: 11.875rem;
  aspect-ratio: 190 / 196;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec6_pos2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  left: -2.5rem;
  bottom: -4rem;
}
.home_sec6_box2_img{

}
.home_sec6_box2_img img{
  border-radius: 30px;
}
.home_sec6_box2_img:before{
  padding-top: 79.55%;
}
.home_sec6_box2 .name{
  text-align: right;
  margin-top: 20px;
}

/*sec7*/
.home_sec7_wrap .fukidasi_tt{
  margin-bottom: 40px;
}
.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: 80%;
}
.news_list .webgene-item .img{
  border-radius: 15px;
}
.news_list .webgene-item .img img{
  border-radius: 15px;
}
.news_list .webgene-item .box2{
  margin-top: 16px;
}
.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;
}

/*sec7*/

@media (max-width:374px){

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

}
@media (max-width:767px){
  .sec2_pos1{
    width: 120px;
    aspect-ratio: 276 / 337;
    top: -130px;
    left: 20px;
    z-index: 0;
  }
  .sec2_pos2{
    width: 64px;
    aspect-ratio: 196 / 249;
    top: -130px;
    right: 26px;
  }
  @keyframes sec2_pos2_move {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, 100%);
    }
    100% {
      transform: translate(0, 0);
    }
  }

  .sec4_pos{
    width: 300px;
    aspect-ratio: 749 / 708;
    top: 10px;
    right: -128px;
  }

  .home_sec1_pos_bg{
    width: 100px;
  }
  .home_sec2_pos.no2{
    width: 60px;
    top: -80px;
    right: 0;
    left: auto;
  }
  .sec3_pos1 {
    width: 70px;
    aspect-ratio: 221 / 149;
    bottom: 50px;
    left: calc(50% - 174px);
    z-index: 0;
  }
  .sec3_pos2 {
    width: 40px;
    aspect-ratio: 100 / 149;
    bottom: 50px;
    right: calc(50% - 160px);
    z-index: 0;
  }
  .sec6_pos{
    width: 7rem;
    aspect-ratio: 192 / 166;
    top: -5.2rem;
    right: 0.5rem;
  }
  .home_sec1_pos{
    top: 2%;
  }
  .home_sec1_pos_no1{
    width: 80px;
    top: 0%;
    right: -80px;
    z-index: -1;
  }

  .sec7_pos1{
    width: 7.3125rem;
    aspect-ratio: 389 / 405;
    top: 3.8rem;
    left: calc(50% - 12rem);
  }

  .sec_tt p{
    letter-spacing: 0; 
  }
  .home_sec6_box1 .home_sec2_fukidasi{
    margin-left: 0;
  }

  .home_sec2_box1 .content_desc{
    line-height: 1.875em;
  }
}
@media (min-width:768px){
  /*イラスト*/
  .home_sec2_box2_item:nth-child(1):before{
    width: 49.68%;;
    aspect-ratio:157 / 446;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item1_il.png);
    bottom: -2%;
    left: -21%;
    z-index: 2;
  }
  .sec2_pos1{
    width: 200px;
    aspect-ratio: 276 / 337;
    top: -200px;
    left: calc(50% - 374px);
  }
  .sec2_pos2{
    width: 120px;
    aspect-ratio: 196 / 249;
    top: -130px;
    right: calc(50% - 350px);
    z-index: -1;
  }
  .sec3_pos1{
    width: 150px;
    aspect-ratio: 221 / 149;
    bottom: -34px;
    left: calc(50% - 376px);
    z-index: 0;
  }
  .sec3_pos2{
    width: 70px;
    aspect-ratio: 100 / 149;
    bottom: -35px;
    right: calc(50% - 350px);
    z-index: 0;
  }
  .sec4_pos{
    width:39.01%;
    aspect-ratio:749 / 708;
    top: 200px;
  }
  .sec7_pos1{
    width: 13.3125rem;
    aspect-ratio: 389 / 405;
    top: 0.8rem;
    left: calc(50% - 24rem);
    z-index: 2;
  }
  .sec7_pos2{
    width: 9.375rem;
    aspect-ratio: 214 / 166;
    top: 3rem;
    right: calc(50% - 14.5rem);
    z-index: 2;
  }
  .home_sec1_pos{
    top: 0%;
  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{

  }
  .home_sec1_box1 .hosi{
    bottom: 0;
    right: 50px;
  }
  .home_sec1_box1_txt{

  }
  .home_sec1_box2{
    width: 75%;
    margin-top: 30px;
    margin-inline:auto;
  }
  .arcth_desc{
    font-size: 18px;
  }
  .arcth_top{

  }
  .arcth_mid{

  }
  .arcth_btm{

  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    margin-top: 30px;
  }
  .home_sec2_fukidasi{

  }
  .home_sec2_fukidasi_h2{
    font-size: 18px;
  }
  .tt_en{

  }
  .tt_en.lg{

  }
  .home_sec2_box1 .tt_en{
    margin-top: -30px;
  }
  .sec_tt{
    font-size: 20px;
  }
  .home_sec2_box1 .sec_tt{
    margin-top: 45px;
  } 
  .content_desc{
    font-size: 18px;
  }
  .home_sec2_box1 .content_desc{
    margin-top: 39px;
  }
  .home_sec2_box1 .read_more{

  }
  .home_sec2_box2{

  }
  .home_sec2_box2_inner{

  }
  .home_sec2_box2_item{

  }
  .home_sec2_box2_item:nth-child(even){
    margin-top: 131px;
  }
  .home_sec2_box2_item_img{

  }
  .home_sec2_box2_item_img img{

  }
  .home_sec2_box2_item_img:before{

  }

  /*sec3*/
  .home_sec3_items{
    margin-top: 50px;
  }
  .home_sec3_item{

  }
  .home_sec3_item_img{

  }
  .home_sec3_item_img:before{

  }
  .home_sec3_item_img img{

  }
  .home_sec3_item_tt{
    font-size: 24px;
    margin-top: 33px;
  }
  .home_sec3_item .content_desc{
    font-size: 18px;
    margin-top: 10px;
  }
  .home_sec3_item .read_more{
    margin-top: 22px;
  }

  /*sec4*/
  .home_sec4_wrap{
    position: relative;
  }
  .home_sec4_wrap .fukidasi_tt{
    margin-bottom: 74px;
  }
  /* 2枚センター寄せの調整 */
  /*.works_list.swiper{
    margin-right: -370px;
  }
    .works_list.swiper .webgene-item{
      width: 350px;
    }*/
  .sw_nav .swiper-pagination-bullet{
    width: 23px;
    height: 23px;
  }
  .sw_nav .citrus-button-prev,
  .sw_nav .citrus-button-next{
    width: 78px;
  }
  .home_sec4_wrap .hosi{
    bottom: 0;
    left: calc(50% - 419px);
  }
  .home_sec4_wrap .kuru{
    bottom: -21px;
    right: calc(50% - 587px);
  }

  /*sec5*/
  .home_sec5_box{

  }
  /*sec5*/
  .home_sec5_box:before{
    inset: -60px -230px -45px;
    background:
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_top.png) top center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_right.png) right center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_btm.png) bottom center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_left.png) left center / contain no-repeat;
    pointer-events: none;
  }
  .home_sec5_box1{

  }
  .home_sec5_box1 .fukidasi_tt .tt_en{
    margin-top: -19px;
  }
  .home_sec5_box2{
    margin-top: 50px;;
  }
  .home_sec5_box2_img{

  }
  .home_sec5_box2_img img{

  }
  .home_sec5_box2_img:before{

  }
  .home_sec5_box3{
    margin-top: 60px;
  }
  .home_sec5_box3 .sec_tt{

  }
  .home_sec5_box3 .content_desc{
    margin-top: 35px;
  }
  .home_sec5_box1 .read_more{
    margin-top: 45px;
  }

  /*sec6*/
  .home_sec6_wrap{

  }
  .home_sec6_box1{
    margin-top: 40px;
  }
  .home_sec6_box1 .fukidasi_tt{
    padding-right: 300px;
  }
  .home_sec6_box1 .tt_en{

  }
  .home_sec6_box1 .sec_tt{
    margin-top: 30px;
  }
  .home_sec6_box1 .content_desc{

  }
  .home_sec6_box1 .read_more{

  }
  .home_sec6_box2{

  }
  .home_sec6_box2_img{

  }
  .home_sec6_box2_img img{

  }
  .home_sec6_box2_img:before{

  }

  /*sec7*/
  .home_sec7_wrap .fukidasi_tt{
    margin-bottom: 46px;
  }
  .home_sec7_wrap .read_more{
    margin-top: 45px;
  }
  .home_sec7_wrap .kuru2{
    right: auto;
    left: calc(50% - 780px);
    bottom: auto;
    top: 71px;
  }

}
@media (min-width:1024px){
  /*イラスト*/
  .sec2_pos1{
    width: 276px;;
    aspect-ratio:276 / 337;
    top: -348px;
    left: calc(50% - 528px);
    z-index: 0;
  }
  .home_sec1_box1 .hosi{
    bottom: 0;
    right: 139px;
  }
  .sec3_pos1{
    width: 221px;;
    aspect-ratio:221 / 149;
    bottom: -34px;
    left: calc(50% - 450px);
    z-index: 0;
  }
  .sec3_pos2{
    width: 100px;;
    aspect-ratio:100 / 149;
    bottom: -35px;
    right: calc(50% - 450px);
    z-index: 0;
  }
  .sec4_pos{
    width:39.01%;
    aspect-ratio:749 / 708;
    top: 50px;
  }
  .sec7_pos1{
    width: 18.3125rem;
    aspect-ratio:389 / 405;
    top: -2.2rem;
    left: calc(50% - 30rem);
    z-index: 2;
  }
  .sec7_pos2{
    width: 11.375rem;
    aspect-ratio: 214 / 166;
    top: 2rem;
    right: calc(50% - 18.5rem);
    z-index: 2;
  }
  .sec2_pos2 {
    width: 196px;
    width: 10.2%;
    aspect-ratio: 196 / 249;
    top: -8.5%;
    right: calc(50% - 35.5%);
    z-index: -1;
  }

  /*sec1*/
  .home_sec1_box1{
    width: 36.5%;
  }
  .home_sec1_box2{
    width: 63.2%;
    margin-top: 0;
    margin-inline:0;
  }
  .arcth_top p,
  .arcth_btm p{
    letter-spacing: 0.075em;
  }
  .arcth_top p:nth-child(1){

  }
  .arcth_top p:nth-child(2){
    padding-left: 30px;
  }
  .arcth_top p:nth-child(3){
    padding-left: 52px;
  }
  .arcth_top p:nth-child(4){
    padding-left: 63px;
  }
  .arcth_mid{

  }
  .arcth_btm{
    margin-top: 43px;
  }
  .arcth_btm p:nth-child(1){
    padding-left: 79px;
  }
  .arcth_btm p:nth-child(2){
    padding-left: 80px;
  }
  .arcth_btm p:nth-child(3){
    padding-left: 78px;
  }
  .arcth_btm p:nth-child(4){
    padding-left: 72px;
  }
  .arcth_btm p:nth-child(5){
    padding-left: 64px;
  }
  .arcth_btm p:nth-child(6){
    padding-left: 50px;
  }
  .arcth_btm p:nth-child(7){
    padding-left: 30px;
  }

  .home_sec2_box1 .name{
    padding-right: 13px;
  }

  /*sec2*/
  .home_sec2_box1 .tt_en{
    margin-top: -40px;
  }

  /*sec4*/
  .sw_nav .swiper-pagination{
    margin-inline:80px;
  }

  /*sec5*/
  .home_sec5_box:before{
    inset: -65px -201px -46px;
    background:
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_top.png) top center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_right.png) right center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_btm.png) bottom center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_left.png) left center / contain no-repeat;
    pointer-events: none;
  }

  /*sec6*/
  .home_sec6_box1 .fukidasi_tt{
    padding-right: 470px;
  }

  /*sec7*/
  .news_list .webgene-blog{
    margin-inline:-20px;
  }
  .news_list .webgene-item{
    width: 33.333%;
    padding-inline:20px;
  }
  .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){
  /*イラスト*/
  .hosi,
  .maru,
  .neji{
    display: block; 
  }
  .home_sec2_box2_item:nth-child(1):before{
    width: 49.68%;;
    aspect-ratio:157 / 446;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item1_il.png);
    bottom: -8%;
    left: -21%;
    z-index: 2;
  }
  .home_sec1_pos{
    top: 0%;
  }
  .sec2_pos1{
    width: 276px;;
    aspect-ratio:276 / 337;
    top: -348px;
    left: calc(50% - 528px);
    z-index: 0;
  }
  .sec2_pos2{
    width: 196px;;
    width: 10.2%;
    aspect-ratio:196 / 249;
    top: -16.5%;
    right: calc(50% - 35.5%);
    z-index: -1;
  }
  .sec3_pos1{
    width: 221px;;
    aspect-ratio:221 / 149;
    bottom: -34px;
    left: calc(50% - 643px);
    z-index: 0;
  }
  .sec3_pos2{
    width: 100px;;
    aspect-ratio:100 / 149;
    bottom: -35px;
    right: calc(50% - 512px);
    z-index: 0;
  }
  .sec4_pos{
    width:39.01%;
    aspect-ratio:749 / 708;
    top: -10px;
  }
  .sec7_pos1{
    width: 24.3125rem;
    aspect-ratio:389 / 405;
    top: -8.2rem;
    left: calc(50% - 43rem);
    z-index: 2;
  }
  .sec7_pos2{
    width: 11.375rem;
    aspect-ratio: 214 / 166;
    top: 1rem;
    right: calc(50% - 18.5rem);
    z-index: 2;
  }
  .sec2_pos2 {
    width: 196px;
    width: 10.2%;
    aspect-ratio: 196 / 249;
    top: -16.5%;
    right: calc(50% - 35.5%);
    z-index: -1;
  }


  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 42.79%;
  }
  .home_sec1_box1_txt{

  }
  .home_sec1_box2{
    width: 57.2%;
    margin-top: 0;
  }
  .arcth_desc{
    font-size: 20px;
    text-align: justify;
  }
  .arcth_desc p{
    margin: 0;
  }

  .arcth_desc .arc_line{
    display: block;
    white-space: unset;
    line-height: 2.25em;
  }
  .home_sec2_box1 .read_more{
    margin-top: 0;
  }



  .arcth_desc .arc_gap{
    height: auto;
  }

  /*
  .arcth_desc .arc_char{
    display: inline;
  }*/

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 49.01%;
    order: 1;
    margin-top: 0;
  }
  .home_sec2_fukidasi{

  }
  .home_sec2_fukidasi_h2{

  }
  .tt_en{

  }
  .tt_en.hdr{
    margin-top: -45px;
  }
  .tt_en.lg{

  }
  .home_sec2_box1 .tt_en{
    margin-top: -73px;
  }
  .sec_tt{
    font-size: 28px;
  }
  .content_desc{

  }
  .home_sec2_box1 .content_desc{

  }
  .home_sec2_box1 .read_more{

  }
  .home_sec2_box2{
    width: 44.73%;
    padding-top: 11px;
    order: 2;
  }
  .home_sec2_box2_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_sec2_box2_item{
    min-width: 316px;
    width: 316px;
  }
  .home_sec2_box2_item_img{

  }
  .home_sec2_box2_item_img img{

  }
  .home_sec2_box2_item_img:before{

  }

  /*sec3*/
  .fukidasi_tt .tt_en{
    margin-top: -22px;
  }

  .home_sec3_items{
    gap:0 40px;
  }
  .home_sec3_item{
    width: calc(50% - 20px); 
  }
  .home_sec3_item_img{

  }
  .home_sec3_item_img:before{

  }
  .home_sec3_item_img img{

  }
  .home_sec3_item_tt{
    font-size: 35px;
  }
  .home_sec3_item .content_desc{

  }
  .home_sec3_item .read_more{

  }

  /*sec4*/
  /* 2枚センター寄せの調整 */
  .works_list.swiper{
    margin-right: -580px;
  }
  .works_list.swiper .webgene-item{
    width: 560px;
  }

  /*sec5*/
  .home_sec5_box{

  }
  .home_sec5_box:before{
    inset: -70px -120px -65px;
    background:
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_top.png) top center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_right.png) right center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_btm.png) bottom center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_left.png) left center / contain no-repeat;
    pointer-events: none;
  }
  .home_sec5_box1{
    width: 30.26%;
  }
  .home_sec5_box2{
    width: 28.94%;
    margin-top: 0;
  }
  .home_sec5_box2_img{

  }
  .home_sec5_box2_img img{

  }
  .home_sec5_box2_img:before{

  }
  .home_sec5_box3{
    width: 32.23%;
    margin-top: -50px;
  }
  .home_sec5_box3 .sec_tt{

  }
  .home_sec5_box3 .content_desc{

  }

  /*sec6*/
  .home_sec6_wrap{

  }
  .home_sec6_box1{
    width: 49.01%;
    order: 1;
    margin-top: 0;
  }
  .home_sec6_box1 .fukidasi_tt{
    padding-right: 98px;
  }
  .home_sec6_box1 .tt_en{
    margin-top: 15px;
  }
  .home_sec6_box1 .sec_tt{
    margin-top: 59px;
  }
  .home_sec6_box1 .content_desc{

  }
  .home_sec6_box1 .read_more{

  }
  .home_sec6_box2{
    width: 44.73%;
    order: 2;
  }
  .home_sec6_box2_img{

  }
  .home_sec6_box2_img img{

  }
  .home_sec6_box2_img:before{

  }
  .pg_home .section.sec6 .neji{
    top: 50px;
    left: calc(50% - 998px);
  }
  .pg_home .section.sec6 .maru{
    left: calc(50% - 968px);
    bottom: 62px;
  }
  .sec6_side{
    content: "";
    display: block;
    width: 229px;
    aspect-ratio:229  / 613;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec6_side.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 85px;
    left: calc(50% - 955px);
  }

  /*sec7*/
  .home_sec7_wrap{
    position: relative;
  }
  .home_sec7_wrap:after{
    content: "";
    display: block;
    width: 272px;
    aspect-ratio:272  / 606;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec7_right.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 241px;
    right: calc(50% - 955px);
  }
  .neji2{
    content: "";
    width: 5rem;
    aspect-ratio: 80 / 77;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/po1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 309px;
    left: calc(50% - 49rem);
  }
  .pg_home .section.sec7 .maru{
    top: 250px;
    right: calc(50% - 37rem);
  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    width: 25%;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
}
@media (min-width:1470px){
  .home_sec1_pos{
    top: -10%;
  }

  .sec4_pos{
    width:39.01%;
    aspect-ratio:749 / 708;
    top: -30px;
  }
  .sec7_pos2{
    width: 13.375rem;
    aspect-ratio: 214 / 166;
    top: 1rem;
    right: calc(50% - 21.5rem);
    z-index: 2;
  }
  .sec2_pos2{
    width: 196px;;
    width: 10.2%;
    aspect-ratio:196 / 249;
    top: -21.5%;
    right: calc(50% - 35.5%);
    z-index: -1;
  }


  /*sec5*/
  .home_sec5_box:before{
    inset: -90px -120px -78px;
    background:
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_top.png) top center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_right.png) right center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_btm.png) bottom center / contain no-repeat,
      url(https://h2kikaku.co.jp/system_panel/uploads/images/wh_left.png) left center / contain no-repeat;
    pointer-events: none;
  }
  .home_sec5_wrap .maru{
    left: 50px;
    top: 99px;
  }
  .home_sec5_wrap .neji{
    right: 50px;
    top: 107px;
  }
  .home_sec5_wrap .hosi{
    bottom: 31px;
    z-index: 1;
    left: 59%;
    transform: translateX(-50%);
  }
}
@media (min-width:1720px){
  .sec4_pos{
    width:39.01%;
    aspect-ratio:749 / 708;
    top: -59px;
  }
  .sec7_pos2{
    width: 13.375rem;
    aspect-ratio: 214 / 166;
    top: 2rem;
    right: calc(50% - 21.5rem);
    z-index: 2;
  }

  /*sec5*/
  .home_sec5_box:before{
    inset: -100px -120px -78px;
  }
}




/*******************************
*　artist
********************************/

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

}
.pg_artist .section.sec1{
  position: relative;
  padding-bottom: 150px;
}
.pg_artist .section.sec1:after{
  content: "";
  display: block;
  width: 190px;
  aspect-ratio: 190 / 196;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/slime.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 120px;
  right: calc(50% - 1046px);
}
.pg_artist .section.sec2{
  background: #bae4a3;
  position:relative;
}
.pg_artist .section.sec2:before{
  content: "";
  display: block;
  width: 100%;;
  aspect-ratio: 1920 / 263;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/artist_sec2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
}
.pg_artist .section.sec2:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 203;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/artist_sec2_btm.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -203px;
  left: 50%;
  transform: translateX(-50%);
}
.pg_artist .section.sec3{
  padding-top: 150px;
}
.pg_artist .section.sec4{

}
.pg_artist .section.sec5{

}
.pg_artist .section.sec6{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_artist .section.sec2:before{
    width: 110%;
    top: -1%;
  }
  .pg_artist .section.sec2:after{
    width: 1000px;
    bottom: -80px;
  }
}
@media (min-width:768px){
  .pg_artist{

  }
  .pg_artist .section.sec1{
    padding-bottom: 150px;
  }
  .pg_artist .section.sec2{
    padding-bottom: 35px;
  }
  .pg_artist .section.sec2:before{
    width: 1920px;;
    top: -250px;
  }
  .pg_artist .section.sec3{
    padding-top: 289px;
  }
  .pg_artist .section.sec4{

  }
  .pg_artist .section.sec5{

  }
  .pg_artist .section.sec6{

  }

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


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

  }
  .pg_artist .section.sec1{
    padding-bottom: 200px;
  }
  .pg_artist .section.sec2{

  }
  .pg_artist .section.sec2:before{
    width: 1920px;;
    top: -7%;
  }
  .pg_artist .section.sec3{
    padding-top: 289px;
    position: relative;
  }
  .pg_artist .section.sec3:before{
    content: "";
    display: block;
    width: 16.87%;
    aspect-ratio: 324 / 662;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/artist_sec3_left.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 52%;
    left: calc(50% - 962px);
    z-index: -1;
  }
  .pg_artist .section.sec3:after{
    content: "";
    display: block;
    width: 24.58%;
    aspect-ratio: 472 / 757;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/artist_sec3_right.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 33%;
    right: calc(50% - 965px);
    z-index: -1;
  }
  .pg_artist .section.sec4{

  }
  .pg_artist .section.sec5{

  }
  .pg_artist .section.sec6{

  }

}
@media (min-width:1470px){
  .pg_artist .section.sec2:before{
    width: 100%;;
    top: -3.5%;
  }
  .body_artist .pg_artist .section.sec2:before{
    width: 100%;;
    top: -5.2%;
  }

}
@media (min-width:1720px){
  .body_artist .pg_artist .section.sec2:before{
    width: 100%;;
    top: -6.2%;
  }

}
/*イラスト*/
.pg_signProduce .section.sec2 .artist_cara1{
  display: none;
}
.home_sec6_wrap.artist1 .home_sec6_box2:before{
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/artist1.png);
  width: 366px;;
  aspect-ratio:366 / 380;
  z-index: 2;
  left: -4rem;
  bottom: -10.5rem;
  display: none;
}
.artist_type1{
  width: 366px;;
  aspect-ratio:366 / 380;
  z-index: 2;
  left: -4rem;
  bottom: -10.5rem;
}
.artist_cara1{
  width: 20.36%;
  aspect-ratio:391 / 308;
  top: -5.5%;
  left: 10.42%;
  z-index: -1;
}
.artist_cara2{
  width: 13.07%;
  aspect-ratio:251 / 287;
  bottom: -7%;
  right: 11.45%;
  z-index: 1;
}
.artist_cara2:before{
  content: "";
  display: block;
  width: 39.04%;
  aspect-ratio: 98 / 130;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/artist_cara2_fuki.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -30%;
  right: -10%;
  display: none;
}
.artist_cara2_2{
  width: 39.04%;
  aspect-ratio: 98 / 130;
  top: -30%;
  right: -10%;
}

.kuru{
  display: none;
  width: 109px;
  aspect-ratio: 109 / 55;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/kuru.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
}
.kuru2{
  display: none;
  width: 80px;
  aspect-ratio: 80 / 77;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/kuru2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
}

/* メイン部分 */
.home_sec6_wrap.artist1{

}
.home_sec6_wrap.artist1 .home_sec6_box1{

}
.home_sec6_wrap.artist1 .home_sec6_box1 .sec_tt{
  margin-top: 16px;
}
.home_sec6_wrap.artist1 .home_sec6_box1 .tt_en + .tt_en{
  margin-top: 0;
}
.home_sec6_wrap.artist1 .home_sec6_box2{

}
.artist_sec2_wrap .content_desc.center{
  line-height: 2.22em;
  margin-top: 30px;
}

.artist_sec2_links{
  display: flex;
  flex-wrap: wrap;
  gap:20px 0;
  margin-top: 40px;
}
.artist_sec2_link{
  width: 100%;
}
.artist_sec2_link a{
  max-width: 368px;
  aspect-ratio: 368 / 72;
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  border: none;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/read_more.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  text-align: left;
}
.artist_sec2_link a:after{
  content: "▶︎";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.artist_sec2_link a:hover{
  color: #FFF;
  transform: scale(1.02);
}

/*sec2*/
.artist_sec2_items{
  margin-top: 70px;
}
.artist_sec2_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff;
  position: relative;
  padding: 50px 0;
}
.artist_sec2_item:after{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  display: none;
}
.artist_sec2_item .illust{

}
/*.artist_sec2_item:nth-child(1):after*/
.artist_sec2_item .i1{
  /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item1.png);*/
  width: 195px;
  aspect-ratio:195 / 131;
  top: -61px;
  right: -118px;
}
/*.artist_sec2_item:nth-child(2):after*/
.artist_sec2_item .i2{
  /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item2.png);*/
  width: 213px;
  aspect-ratio:213 / 163;
  top: -159px;
  left: -186px;
}
/*.artist_sec2_item:nth-child(3):after*/
.artist_sec2_item .i3{
  /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item3.png);*/
  width: 292px;
  aspect-ratio:292 / 375;
  top: -169px;
  right: -190px;
}
/*.artist_sec2_item:nth-child(4):after*/
.artist_sec2_item .i4{
  /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item4.png);*/
  width: 418px;
  aspect-ratio:418 / 171;
  top: -134px;
  left: -187px;
}
.artist_sec2_item:nth-child(n+2){
  margin-top: 100px;
}
.artist_sec2_item:before {
  content: "";
  display: block;
  position: absolute;
  inset: -29px -220px -20px;
  background: 
    url(https://h2kikaku.co.jp/system_panel/uploads/images/top.png) top center / contain no-repeat,
    url(https://h2kikaku.co.jp/system_panel/uploads/images/right_new.png) right center / contain no-repeat,
    url(https://h2kikaku.co.jp/system_panel/uploads/images/btm.png) bottom center / contain no-repeat,
    url(https://h2kikaku.co.jp/system_panel/uploads/images/left_new.png) left center / contain no-repeat;
  pointer-events: none;
}
.artist_sec2_item:nth-child(3):before{
  z-index: 1;
}
.artist_sec2_item .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
  background: #fff;
}
.artist_sec2_item_left{
  width: 100%;
  position: relative;
  z-index: 1;
}
.artist_sec2_item:nth-child(odd) .artist_sec2_item_left{
  transform: rotate(-5deg);
}
.artist_sec2_item:nth-child(even) .artist_sec2_item_left{
  transform: rotate(5deg);
}
.artist_sec2_item_left:before{
  content: "";
  display: block;
  width: 2.1875rem;
  aspect-ratio: 35 / 33;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.artist_sec2_item:nth-child(odd) .artist_sec2_item_left:before{
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/left_yure.png);
  top: -3rem;
  left: -2rem;
}
.artist_sec2_item:nth-child(even) .artist_sec2_item_left:before{
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/yure.png);
  top: -3rem;
  right: -2rem;
}
.artist_sec2_item_left_img{
  outline: 10px solid #1b2a74;
  border-radius: 30px;
}
.artist_sec2_item_left_img img{
  border-radius: 30px;
}
.artist_sec2_item_left_img:before{
  padding-top: 89.31%;
}
.artist_sec2_item_right{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.artist_sec2_item_tt{

}
.artist_sec2_item_tt1{
  font-size: 16px;
  font-weight: 800;
}
.artist_sec2_item_tt2{
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: "Darumadrop One", sans-serif;
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #1b2a74;
  margin-top: 14px;
}
.artist_sec2_item_right .sec_tt{
  margin-top: 20px;
}
.artist_sec2_item_right .content_desc{
  line-height: 2.22em;
  margin-top: 20px;
}

/*sec3*/
.artist_sec3_wrap .fukidasi_tt{
  margin-bottom: 30px;
}
.story_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.story_list .story_list_box1{
  width: 100%;
}
.story_list .story_list_box2{
  width: 100%;
  margin-top: 20px;
}
.story_list .story_list_box2 .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  gap:16px 10px;
}
.story_list .story_list_box2 .webgene-item{
  width: calc(50% - 5px);
}
.story_list .story_list_box2 .webgene-item:first-child{
  display: none;
}
.story_list .webgene-item .img{
  border-radius: 15px; 
}
.story_list .webgene-item .img img{
  border-radius: 15px; 
}
.story_list .story_list_box1 .webgene-item .img:before{
  padding-top: 85.85%;
}
.story_list .story_list_box2 .webgene-item .img:before{
  padding-top: 75%;
}
.story_list .webgene-item .box2{
  margin-top: 8px;
}
.story_list .webgene-item .title{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5em;
}

/*sec4*/
.sign_sec4_wrap{

}
.sign_sec4_wrap .sec_tt{
  margin-top: 20px;
}
.sign_sec4_wrap .content_desc.center{
  margin-top: 20px;
}
@media (max-width:767px){
  .artist_cara1{
    width: 180px;
    aspect-ratio: 391 / 308;
    top: -106px;
  }
  .artist_cara2{
    width: 30.07%;
    width: 120px;
    aspect-ratio: 251 / 287;
    bottom: -1%;
    right: 11.45%;
  }

  .artist_type1{
    width: 150px;
    aspect-ratio: 366 / 380;
    z-index: 2;
    left: 0;
    bottom: -2rem;
  }

  /*  .artist_sec2_item:nth-child(1):after{
  
      width: 100px;
      aspect-ratio: 195 / 131;
      top: -32px;
      right: 0;
    }
    .artist_sec2_item:nth-child(2):after{
  
      width: 170px;
      aspect-ratio: 170 / 95;
      top: -100px;
      left: 0;
    }
    .artist_sec2_item:nth-child(3):after{
  
      width: 180px;
      aspect-ratio: 292 / 375;
      top: -130px;
      right: 0;
    }
    .artist_sec2_item:nth-child(4):after{
      width: 250px;
      aspect-ratio: 418 / 171;
      top: -100px;
      left: 0;
      z-index: 1;
    }*/

  .artist_sec2_item .i1{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item1.png);*/
    width: 100px;
    aspect-ratio:195 / 131;
    top: -61px;
    right: 0;
  }
  /*.artist_sec2_item:nth-child(2):after*/
  .artist_sec2_item .i2{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item2.png);*/
    width: 100px;
    aspect-ratio: 213 / 163;
    top: -70px;
    left: 0;
  }
  /*.artist_sec2_item:nth-child(3):after*/
  .artist_sec2_item .i3{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item3.png);*/
    width: 150px;
    aspect-ratio: 292 / 375;
    top: -100px;
    right: 0;
  }
  /*.artist_sec2_item:nth-child(4):after*/
  .artist_sec2_item .i4{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item4.png);*/
    width: 200px;
    aspect-ratio: 418 / 171;
    top: -80px;
    left: 0;
    z-index: 1;
  }

  .artist_sec2_item:before{

    /*    background: 
        url(https://h2kikaku.co.jp/system_panel/uploads/images/top.png) top center / contain no-repeat,
        url(https://h2kikaku.co.jp/system_panel/uploads/images/btm.png) bottom center / contain no-repeat;*/
    inset: -29px -299px -14px;
  }
  .artist_sec2_item:after{
    /*    content: "";
        display: block;
        width: 100vw;
        height: 100%;
        background: #fff;
        position: absolute;
        top: 0;
          margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      z-index: 0;*/
  }

  .home_sec6_wrap.artist1 .home_sec6_box2:before{
    width: 130px;
    aspect-ratio: 366 / 380;
    z-index: 2;
    left: 0rem;
    bottom: -1.5rem;
  }
}
@media (min-width:768px){
  .haikei{
    width: 1893px;
    aspect-ratio:1882 / 2558;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/nn.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 39%;
    left: 49%;
    transform: translateY(-50%) translateX(-50%);
  }

  .artist_cara1{
    width: 20.36%;
    aspect-ratio:391 / 308;
    top: -2.2%;
    left: 10.42%;
    z-index: -1;
  }
  .artist_cara2{
    width: 20.07%;
    aspect-ratio: 251 / 287;
    bottom: -2%;
    right: 11.45%;
    z-index: 1;
  }

  .o1{
    width:253px;
    aspect-ratio:253 / 261;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/o1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 180px;
    right: calc(50% - 928px);
    z-index: 1;
  }


  .artist_type1{
    width: 250px;
    left: 0;
    bottom: -1.5rem;
  }

  /*  .artist_sec2_item:nth-child(1):after{
      width: 195px;
      top: -61px;
      right: 0;
    }
    .artist_sec2_item:nth-child(2):after{
      width: 170px;
      aspect-ratio:170 / 95;
      top: -100px;
      left: 0;
    }
    .artist_sec2_item:nth-child(3):after{ 
      width: 292px;
      aspect-ratio:292 / 375;
      top: -169px;
      right: -70px;
    }
    .artist_sec2_item:nth-child(4):after{
      width: 418px;
      aspect-ratio:418 / 171;
      top: -134px;
      left: 0;
      z-index: 1;
    }*/

  .artist_sec2_item .i1{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item1.png);*/
    width: 195px;
    aspect-ratio:195 / 131;
    top: -61px;
    right: 0;
  }
  /*.artist_sec2_item:nth-child(2):after*/
  .artist_sec2_item .i2{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item2.png);*/
    width: 213px;
    aspect-ratio:213 / 163;
    top: -159px;
    left: 0;
  }
  /*.artist_sec2_item:nth-child(3):after*/
  .artist_sec2_item .i3{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item3.png);*/
    width: 292px;
    aspect-ratio:292 / 375;
    top: -169px;
    right: 0;
  }
  /*.artist_sec2_item:nth-child(4):after*/
  .artist_sec2_item .i4{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item4.png);*/
    width: 370px;
    aspect-ratio:418 / 171;
    top: -134px;
    left: 0;
    z-index: 1;
  }

  .home_sec6_wrap.artist1 .home_sec6_box2:before{
    width: 300px;
    bottom: -10.5rem;
    left: -2rem;
    bottom: -2.5rem;
  }

  .home_sec6_wrap.artist1 .home_sec6_box1{
    position: relative;
  }
  .home_sec6_wrap.artist1 .neji{
    top: 210px;
    right: 19px;
  }

  /*sec2*/
  .artist_sec2_links{
    gap:30px 17px;
    margin-top: 65px;
  }
  .artist_sec2_link{
    width: calc(50% - 8.5px);
  }
  .artist_sec2_link a{
    font-size: 18px;
    padding: 16px 36px;
    margin-inline:auto;
  }
  .artist_sec2_link a:after{

  }
  .artist_sec2_wrap .content_desc.center{
    margin-top: 55px;
  }
  .artist_sec2_wrap .maru{
    top: 21px;
    right: calc(50% - 430px);
  }

  .artist_sec2_items{
    margin-top: 100px;
  }
  .artist_sec2_item{
    padding: 80px 0;
  }
  .artist_sec2_item:before {
    content: "";
    display: block;
    position: absolute;
    inset: -35px -280px -28px;
  }
  .artist_sec2_item:nth-child(n+2){
    margin-top: 100px;
  }
  .artist_sec2_item_left{

  }
  .artist_sec2_item_left_img{

  }
  .artist_sec2_item_left_img img{

  }
  .artist_sec2_item_left_img:before{

  }
  .artist_sec2_item_right{
    margin-top: 60px;
  }
  .artist_sec2_item_tt{

  }
  .artist_sec2_item_tt1{
    font-size: 18px;
  }
  .artist_sec2_item_tt2{
    font-size: 70px;
  }
  .artist_sec2_item_right .sec_tt{
    margin-top: 30px;
  }
  .artist_sec2_item_right .content_desc{
    margin-top: 26px;
  }

  /*sec3*/
  .artist_sec3_wrap .fukidasi_tt{
    margin-bottom: 52px;
  }
  .artist_sec3_wrap .fukidasi_tt .kuru{
    left: calc(50% - 800px);
  }
  .artist_sec3_wrap .fukidasi_tt .kuru2{
    right:0;
    top: -32px;
  }
  .story_list{

  }
  .story_list .story_list_box1{

  }
  .story_list .story_list_box2{
    margin-top: 30px;
  }
  .story_list .story_list_box2 .webgene-blog{
    gap:33px;
  }
  .story_list .story_list_box2 .webgene-item{
    width: calc(50% - 16.5px);
  }
  .story_list .webgene-item .img{

  }
  .story_list .webgene-item .img img{

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

  }
  .story_list .webgene-item .box2{

  }
  .story_list .webgene-item .title{

  }

  /*sec4*/
  .sign_sec4_wrap{

  }
  .sign_sec4_wrap .sec_tt{
    margin-top: 26px;
  }
  .sign_sec4_wrap .content_desc.center{
    margin-top: 32px;
  }
}
@media (min-width:1024px){
  .artist_cara1{
    width: 20.36%;
    aspect-ratio:391 / 308;
    top: -2.5%;
    left: 10.42%;
    z-index: -1;
  }
  .artist_cara2{
    width: 18.07%;
    aspect-ratio:251 / 287;
    bottom: -2%;
    right: 11.45%;
    z-index: 1;
  }

  .artist_type1{
    width: 366px;
    left: 0;
    bottom: -1.5rem;
  }

  .home_sec6_wrap.artist1 .home_sec6_box2:before{
    width: 300px;
    bottom: -10.5rem;
    left: -2rem;
    bottom: -2.5rem;
  }


  .pg_mystory .section.sec1 .home_sec6_box1 .kuru2{

  }
}
@media (min-width:1200px){
  .kuru,
  .kuru2{
    display: block;
  }

  .artist_cara1{
    width: 20.36%;
    aspect-ratio:391 / 308;
    top: -5.5%;
    left: 10.42%;
    z-index: -1;
  }
  .artist_cara2{
    width: 13.07%;
    aspect-ratio:251 / 287;
    bottom: -7%;
    right: 11.45%;
    z-index: 1;
  }


  .home_sec6_wrap.artist1 .home_sec6_box1 .content_desc{
    margin-top: 40px;
  }
  .home_sec6_wrap.artist1 .home_sec6_box2{
    padding-top: 20px;
  }
  .home_sec6_wrap.artist1 .home_sec6_box2:before{
    width: 366px;
    left: -4rem;
    bottom: -10.5rem;
    display: none;
  }
  .artist_type1{
    width: 366px;
    left: -4rem;
    bottom: -10.5rem;
  }

  /*sec2*/
  .artist_sec2_wrap .tt_en{
    margin-top: -60px;
  }
  .content_desc.center{
    text-align: center;
  }

  .artist_sec2_item:nth-child(1) .neji{
    right: calc(50% - 520px);
  }
  .artist_sec2_item:nth-child(1) .kuru{
    left: calc(50% - 488px);
    top: 160px;
  }
  .artist_sec2_item:nth-child(2) .neji{
    right: calc(50% - 480px);
    top: 100px;
  }
  .artist_sec2_item:nth-child(2) .maru{
    top: 224px;
    left: calc(50% - 504px);
  }
  .pg_signProduce .section.sec2 .artist_sec2_item:nth-child(2) .maru{
    left: calc(50% - 554px);
  }
  .artist_sec2_item:nth-child(3) .kuru{
    top: 191px;
    left: calc(50% - 529px);
  }
  .artist_sec2_item:nth-child(3) .kuru2{
    right: calc(50% - 481px);
    top: 57px;
  }
  .artist_sec2_item:nth-child(3) .kuru.m1{
    left: auto;
    right: calc(50% - 1050px);
    bottom: -160px;
    top: auto;
  }
  .pg_artist .section.sec2 .artist_sec2_item:nth-child(3) .kuru2{
    right: calc(50% - 481px);
    top: 58px;
    bottom: auto;
  }
  .artist_sec2_item:nth-child(4) .neji{
    top: -158px;
    right: calc(50% - 378px);
  }
  .artist_sec2_item:nth-child(4) .hosi{
    left: calc(50% - 457px);
    bottom: -71px;
  }
  .hosi.z1{
    top: 6857px;
    right: calc(50% - 800px);
  }

  .artist_sec2_link a:after{

  }

  .artist_sec2_item{
    padding: 30px 0;
  }
  .artist_sec2_item:before {
    content: "";
    display: block;
    position: absolute;
    inset: -30px -205px -28px;
  }
  .artist_sec2_item:nth-child(n+2){
    margin-top: 145px;
  }
  .artist_sec2_item:nth-child(odd) .artist_sec2_item_left{
    order: 1;
    transform: rotate(-5deg);
    margin-left: 28px;
  }
  .artist_sec2_item:nth-child(odd) .artist_sec2_item_right{
    order: 2;
  }
  .artist_sec2_item:nth-child(even) .artist_sec2_item_left{
    order: 2;
    transform: rotate(5deg);
    margin-right: 28px;
  }
  .artist_sec2_item:nth-child(even) .artist_sec2_item_right{
    order: 1;
  }
  .artist_sec2_item_left{
    width: 41.5%;
    margin-top: 24px;
  }
  .artist_sec2_item_left_img{

  }
  .artist_sec2_item_left_img img{

  }
  .artist_sec2_item_left_img:before{

  }
  .artist_sec2_item_right{
    width: 48.64%;
    margin-top: 0;
  }
  .artist_sec2_item_tt{

  }
  .artist_sec2_item_tt1{

  }
  .artist_sec2_item_tt2{

  }
  .artist_sec2_item_right .sec_tt{

  }
  .artist_sec2_item_right .content_desc{

  }

  /*sec3*/
  .story_list{

  }
  .story_list .story_list_box1{
    width: 38.15%;
  }
  .story_list .story_list_box2{
    width: 59.86%;
    margin-top: 0;
  }
  .story_list .story_list_box2 .webgene-blog{
    gap: 19px 32px;
  }
  .story_list .story_list_box2 .webgene-item{
    width: calc(33.333% - 21.33px);
  }
  .story_list .webgene-item .img{

  }
  .story_list .webgene-item .img img{

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

  }
  .story_list .webgene-item .box2{

  }
  .story_list .webgene-item .title{

  }
}
@media (min-width:1470px){
  /*  .artist_sec2_item:nth-child(1):after{
      width: 195px;
      top: -61px;
      right: -118px;
    }
    .artist_sec2_item:nth-child(2):after{
      width: 170px;
      aspect-ratio:170 / 95;
      top: -100px;
      left: -186px;
    }
    .artist_sec2_item:nth-child(3):after{ 
      width: 292px;
      aspect-ratio:292 / 375;
      top: -169px;
      right: -190px;
    }
    .artist_sec2_item:nth-child(4):after{
      width: 418px;
      aspect-ratio:418 / 171;
      top: -134px;
      left: -187px;
    }*/

  .artist_sec2_item .i1{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item1.png);*/
    width: 195px;
    aspect-ratio:195 / 131;
    top: -61px;
    right: -118px;
  }
  /*.artist_sec2_item:nth-child(2):after*/
  .artist_sec2_item .i2{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item2.png);*/
    width: 213px;
    aspect-ratio:213 / 163;
    top: -159px;
    left: -186px;
  }
  /*.artist_sec2_item:nth-child(3):after*/
  .artist_sec2_item .i3{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item3.png);*/
    width: 292px;
    aspect-ratio:292 / 375;
    top: -169px;
    right: -190px;
  }
  /*.artist_sec2_item:nth-child(4):after*/
  .artist_sec2_item .i4{
    /*  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/item4.png);*/
    width: 418px;
    aspect-ratio:418 / 171;
    top: -134px;
    left: -187px;
  }

  .artist_sec2_links{
    gap:0 17px;
  }
  .artist_sec2_link{
    width: calc(25% - 12.75px);
  }
  .artist_sec2_link a{
    margin-inline:0;
  }

  .artist_sec2_item {
    padding: 50px 0;
  }
  .artist_sec2_item:before {
    content: "";
    display: block;
    position: absolute;
    inset: -35px -205px -28px;
  }
}
@media (min-width:1720px){

  .artist_sec3_wrap .fukidasi_tt .kuru2{
    right: calc(50% - 403px);
    top: -32px;
  }
  .pg_artist .section.sec3 .artist_sec3_wrap .fukidasi_tt .kuru2{
    right: calc(50% - 403px);
    top: -32px;
    bottom: auto;
  }
}




/*******************************
*　看板
********************************/

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

}
.pg_signProduce .section.sec1{
  position: relative;
}
.pg_signProduce .section.sec1:after{
  content: "";
  display: block;
  width: 190px;
  aspect-ratio: 190 / 196;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/slime.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 120px;
  right: calc(50% - 1046px);
}
.pg_signProduce .section.sec2{

}
.pg_signProduce .section.sec2:before{
  aspect-ratio:1920 / 300;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec2_top.png); 
}
.pg_signProduce.pg_artist .section.sec2:after{
  bottom: -141px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.pg_signProduce .section.sec3{

}
.pg_signProduce .section.sec4{

}
.pg_signProduce .section.sec5{

}
.pg_signProduce .section.sec6{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_signProduce.pg_artist .section.sec1{
    padding-bottom: 25px;
  }
  .pg_signProduce.pg_artist .section.sec2:before{
    top: -50px;
  }
  .pg_signProduce.pg_artist .section.sec2:after{
    bottom: -70px;
  }
}
@media (min-width:768px){
  .pg_signProduce{

  }
  .pg_signProduce .section.sec1{
    padding-bottom: 75px;
  }
  .pg_signProduce .section.sec2{

  }
  .pg_signProduce.pg_artist .section.sec2:before{
    width: 1000px;
    top: -1.2%;
  }
  .pg_signProduce .section.sec3{

  }
  .pg_signProduce .section.sec4{

  }
  .pg_signProduce .section.sec5{

  }
  .pg_signProduce .section.sec6{

  }

}
@media (min-width:1024px){
  .pg_signProduce.pg_artist .section.sec2:before{
    width: 1300px;
    top: -1.2%;
  }

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

  }
  .pg_signProduce .section.sec1{

  }
  .pg_signProduce .section.sec2{

  }
  .pg_signProduce.pg_artist .section.sec2:before{
    width: 1400px;
    top: -2%;
  }
  .pg_signProduce .section.sec3{
    padding-top: 222px;
  }
  .pg_signProduce .section.sec4{

  }
  .pg_signProduce .section.sec5{

  }
  .pg_signProduce .section.sec6{

  }

}
@media (min-width:1470px){
  .pg_artist .section.sec2:before{
    top: -2.2%;
  }

  .pg_signProduce.pg_artist .section.sec2:before{
    width: 1920px;
    top: -2.2%;
  }

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


}
/*イラスト*/
.sign1{
  width: 433px;
  width: 150px;;
  aspect-ratio: 433 / 206;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.sign2{
  width: 241px;
  width: 15.85%;
  aspect-ratio: 241 / 148;
  bottom: 0;
  left: calc(50% - 300px);
  z-index: -1;
}
.sign_sec2_1{
  width: 79px;
  aspect-ratio: 79 / 118;
  bottom: -26px;
  left: calc(50% - 499px);
  z-index: 0;
}
.sign_sec2_1 img,
.sign_sec2_2 img{
  animation: sec3_pos2_move 2.5s ease-in-out infinite;
}
.sign_sec2_2{
  width: 168px;
  aspect-ratio: 168 / 113;
  bottom: -24px;
  right: calc(50% - 554px);
  z-index: 0;

}
.visual_pos{
  width: 134px;
  aspect-ratio: 134 / 152;
  bottom: -24px;
  right: calc(50% - 148px);
  z-index: 0;

} 
/*.sign_sec4_wrap .artist_sec2_item:nth-child(1):after{
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos1.png);
  width: 241px;
  aspect-ratio:241 / 372;
  right: auto;
  left: calc(50% - 772px);
  top: -328px;
  display: block!important;
  
}*/
.sign_sec4_wrap .artist_sec2_item .p1{
  width: 241px;
  width: 21.71%;
  aspect-ratio:241 / 372;
  right: auto;
  left: calc(50% - 772px);
  top: -328px;
}
.sign_sec4_wrap .artist_sec2_item .p1 img{
  transform-origin: bottom center;
  animation: bura 1s ease-in-out infinite;
}
/*.sign_sec4_wrap .artist_sec2_item:nth-child(2):after{
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos2.png);
  width: 126px;
  aspect-ratio:126 / 122;
  right: auto;
  right: calc(50% - 705px);
  top: auto;
  left: auto;
  bottom: -50px;
   display: block!important;
}*/
.sign_sec4_wrap .artist_sec2_item .p2{
  width: 126px;
  width: 11.35%;
  aspect-ratio:126 / 122;
  right: auto;
  right: calc(50% - 705px);
  top: auto;
  left: auto;
  bottom: -50px;
}
.sign_sec4_wrap .artist_sec2_item .p2 img{
  /*  transform-origin: bottom center;
    animation: bura 1s ease-in-out infinite;*/
}
.sign_sec4_wrap .artist_sec2_item:nth-child(3):after{
  display: none;
}
.sign_sec4_wrap .artist_sec2_item:nth-child(4):after{
  display: none;
}

.illust.bg{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.sign_csec2_cara1{
  width: 377px;
  width: 19.63%;
  aspect-ratio:377 / 617;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos1.png);
  z-index: 1;
  top: 0;
  left: calc(50% - 969px);
}
.sign_csec2_cara2{
  width: 203px;
  aspect-ratio:203 / 209;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos2.png);
  top: 780px;
  right: calc(50% - 800px);
  z-index: 1;
}
.sign_csec2_cara3{
  width: 253px;
  aspect-ratio:253 / 261;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos3.png);
  top: 1257px;
  left: calc(50% - 876px);
  z-index: 1;
}
.sign_csec2_cara3 .inner_cara{
  right: 0;
  bottom: 205px;
}
.sign_csec2_cara4 .inner_cara img{
  transform-origin: top center;
  animation: bura 1s ease-in-out infinite;
}
.sign_csec2_cara4{
  width: 344px;
  aspect-ratio:344 / 532;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos4-2.png);
  top: 1577px;
  right: calc(50% - 962px);
  z-index: 1;
}
.sign_csec2_cara4 .inner_cara{
  left: -34px;
  bottom: -154px;
}
.sign_csec2_cara5{
  width: 387px;
  aspect-ratio:387 / 435;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos5-2.png);
  top: 3572px;
  left: calc(50% - 964px);
  z-index: 1;
}
.sign_csec2_cara5 .inner_cara{
  right: 0;
  bottom: 0;
  top: -71px;
}
.sign_csec2_cara5 .inner_cara img{
  transform-origin: bottom center;
  animation: bura 1s ease-in-out infinite;
}
.sign_csec2_cara6{
  width: 400px;
  aspect-ratio:400 / 584;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos6-2.png);
  top: 4051px;
  right: calc(50% - 960px);
  z-index: 1;
}
.sign_csec2_cara6 .inner_cara{
  left: 0;
  bottom: 0;
  top: -94px;
}
.sign_csec2_cara7{
  width: 465px;
  aspect-ratio:465 / 730;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos7.png);
  bottom: 3067px;
  left: calc(50% - 963px);
  z-index: 0;
}
.sign_csec2_cara8{
  width: 253px;
  aspect-ratio:253 / 261;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_csec2_cara8.png);
  top: auto;
  right: calc(50% - 896px);
  bottom: 2860px;
  z-index: 1;
}
.sign_csec2_cara9{
  width: 179px;
  aspect-ratio:179 / 261;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_csec2_cara9.png);
  bottom: 500px;
  left: calc(50% - 963px);
  z-index: 0;
}


/* メイン部分 */
/*sec1*/
.head_outer{
  position: relative;
  padding-bottom: 150px;
}
.home_sec6_wrap.sign{

}
.home_sec6_wrap.sign .home_sec6_box1{

}
.home_sec6_wrap.sign .home_sec6_box2{

}
.home_sec6_wrap.sign .home_sec6_box2:before{
  display: none;
}

/*sec2*/
.artist_sec2_links.col2{

}
.artist_sec2_links.col2 .artist_sec2_link{

}
.artist_sec2_links.col2 .artist_sec2_link a{
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/btn3.png);
  aspect-ratio:540 / 72;
}

.sign_sec2_wrap{
  background: #fff; 
  position: relative;
  padding-top: 53px;
}
.sign_sec2_wrap:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 181;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec2_mid.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.sign_sec2_wrap:after{
  content: "";
  display: block;
  width: 1520px;
  height: 100%;
  background: #fff;
  position: absolute;
  top:0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 1;
}
.sign_sec2_btm{
  width: 1920px;
  aspect-ratio: 1920 / 283;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec2_btm.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.sign_sec2_wrap{
  margin-top:50px;
}
.sign_sec2_tt{
  position: relative;
  z-index: 2;
}
.sign_sec2_ja{
  font-size: 16px;
  font-weight: 800;
}
.tt_en.mid{
  font-size: clamp(2.5rem, 1.375rem + 5.63vw, 8.125rem);
}
.sign_sec2_wrap .sec_tt{
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.sign_sec2_wrap .content_desc.center{
  line-height: 2.22em;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.sign_visual{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 38px;
  position: relative;
  z-index: 2;
}
.sign_visual_box{
  position: relative;
  z-index: 1;
}
.sign_visual_box.left{
  margin-right: -115px;
}
.sign_visual_box.right{
  margin-left: -123px;
}
.sign_visual_btn{
  display: block;
  width: 250px;
  background: #ff7800;
  color: #fff;
  text-align: center;
  border-radius: 22.5px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 0;
  position: relative;
  border: 1px solid transparent;
}
.sign_visual_btn:after{
  content: "▶︎";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.sign_visual_btn:hover{
  background: #fff;
  color: #ff7800;
  border: 1px solid #ff7800;
}
.sign_visual_img{
  width:66.12%;
  position: relative;
}

.sign_sec2_items{
  display:flex;
  flex-wrap:wrap;
  gap:40px 0;
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.sign_sec2_item{
  border-radius: 15px;
  outline: 7px solid #1b2a74;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/bg2.jpg);
  background-repeat: repeat;
  padding: 30px 10px;
}
.sign_sec2_item_img img{
  border-radius: 15px;
}
.sign_sec2_item_img:before{
  padding-top: 97.5%;
}
.sign_sec2_item_tt{
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}
.sign_sec3_wrap .sign_sec2_item_tt{
  font-weight: 800;
}
.sign_sec2_item .content_desc{
  line-height: 1.944em;
  margin-top: 17px;
}

.sign_sec4_wrap{
  padding-top: 50px;
}
@media (max-width:767px){
  /*イラスト*/
  .sign2{
    width: 110px;
    aspect-ratio: 241 / 148;
    bottom: 0;
    left: calc(50% - 20px);
  }
  .visual_pos{
    width: 65px;
    right: calc(50% - 58px);
  }

  .sign_sec4_wrap .artist_sec2_item .p1{
    width: 21.71%;
    aspect-ratio: 241 / 372;
    right: auto;
    left: 0;
    top: -8%;
  }
  .sign_sec4_wrap .artist_sec2_item .p2{
    width: 21.35%;
    aspect-ratio: 126 / 122;
    right: auto;
    right: 0;
    top: auto;
    left: auto;
    bottom: -50px;
  }


  .sign_visual_box{
    padding-top: 5px;
  }
  .sign_visual_btn {
    display: block;
    width: 86px;
    background: #ff7800;
    color: #fff;
    text-align: center;
    border-radius: 22.5px;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 0;
    position: relative;
  }
  .sign_visual_btn:after{
    display: none;
  }
  .sign_visual_img{
    width: 62.12%;
  }
  .sign_visual_btn:nth-child(n+2){
    margin-top: 8px;
  }
  .sign_visual_box.right .sign_visual_btn:nth-child(3){
    width: 110px
  }

  .sign_sec2_wrap:before{
    width: 600px;
    top: -10px;
  }
}
@media (min-width:768px){
  .sign_sec4_wrap .artist_sec2_item:nth-child(1):after{
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos1.png);
    width: 150px;
    aspect-ratio:241 / 372;
    right: auto;
    left: 0;
    top: -100px;
  }
  .sign_sec4_wrap .artist_sec2_item:nth-child(2):after {
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos2.png);
    width: 126px;
    aspect-ratio: 126 / 122;
    right: auto;
    right:0;
    top: auto;
    left: auto;
    bottom: -50px;
  }

  .sign_sec4_wrap .artist_sec2_item .p1{
    width: 241px;
    width: 14.71%;
    left: 0;
    top: -7%;
  }
  .sign_sec4_wrap .artist_sec2_item .p2{
    width: 126px;
    width: 11.35%;
    right: 0;
    bottom: -50px;
  }

  .sign1{
    width: 433px;
    width: 28.48%;
    aspect-ratio: 433 / 206;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .sign2{
    width: 241px;
    width: 15.85%;
    aspect-ratio: 241 / 148;
    bottom: 0;
    left: calc(50% - 100px);
    z-index: -1;
  }

  /*sec1*/
  .head_outer{
    padding-bottom: 160px;
  }
  .home_sec6_wrap.sign{

  }
  .home_sec6_wrap.sign .home_sec6_box1{

  }
  .home_sec6_wrap.sign .home_sec6_box2{

  }

  /*sec2*/
  .artist_sec2_links.col2{

  }
  .artist_sec2_links.col2 .artist_sec2_link{

  }
  .artist_sec2_links.col2 .artist_sec2_link a{

  }

  .sign_sec2_wrap{
    margin-top: 118px;
  }
  .sign_sec2_tt{

  }
  .sign_sec2_ja{
    font-size: 18px;
  }
  .tt_en.sm{

  }
  .sign_sec2_wrap .sec_tt{
    margin-top: 31px;
  }
  .sign_sec2_wrap .content_desc.center{
    margin-top: 33px;
  }
  .sign_visual{

  }
  .sign_visual_box{
    padding-top: 20px;
  }
  .sign_visual_box.left{
    margin-right: -115px;
  }
  .sign_visual_box.right{
    margin-left: -123px;
  }
  .sign_visual_btn{
    width: 170px;
    font-size: 12px;
    padding: 5px 0;
  }
  .sign_visual_btn:nth-child(n+2){
    margin-top: 25px;
  }
  .sign_visual_img{
    width:66.12%;
  }

  .sign_visual_btn:before{
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .sign_visual_box.left .sign_visual_btn:nth-child(1):before{

  }
  .sign_visual_box.left .sign_visual_btn:nth-child(2):before{

  }
  .sign_visual_box.left .sign_visual_btn:nth-child(3):before{

  }
  .sign_visual_box.left .sign_visual_btn:nth-child(4):before{

  }
  .sign_visual_box.left .sign_visual_btn:nth-child(5):before{

  }

  .sign_visual_box.right .sign_visual_btn:nth-child(1):before{

  }
  .sign_visual_box.right .sign_visual_btn:nth-child(2):before{

  }
  .sign_visual_box.right .sign_visual_btn:nth-child(3):before{

  }
  .sign_visual_box.right .sign_visual_btn:nth-child(4):before{

  }
  .sign_visual_box.right .sign_visual_btn:nth-child(5):before{

  }

  .sign_sec2_items{
    gap: 50px 30px;
    margin-top: 100px;
  }
  .sign_sec2_item{
    width: calc(50% - 15px);
  }
  .sign_sec2_item_img img{

  }
  .sign_sec2_item_img:before{

  }
  .sign_sec2_item_tt{
    font-size: 24px;
    margin-top: 17px;
  }
  .sign_sec2_item .content_desc{

  }

  .sign_sec2_btm{
    bottom: -109px;
  }

  .sign_sec4_wrap{
    padding-top: 100px;
  }
}
@media (min-width:1024px){
  .sign2{
    width: 241px;
    width: 15.85%;
    aspect-ratio: 241 / 148;
    bottom: 0;
    left: calc(50% - 300px);
    z-index: -1;
  }

  .sign_sec4_wrap .artist_sec2_item:nth-child(1):after{
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos1.png);
    width: 150px;
    aspect-ratio:241 / 372;
    right: auto;
    left: 0;
    top: -100px;
  }
  .sign_sec4_wrap .artist_sec2_item:nth-child(2):after {
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos2.png);
    width: 126px;
    aspect-ratio: 126 / 122;
    right: auto;
    right:0;
    top: auto;
    left: auto;
    bottom: -50px;
  }

  .sign_csec2_cara1{
    width: 377px;
    width: 19.63%;
    aspect-ratio:377 / 617;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos1.png);
    z-index: 1;
    top: 0;
    left:0;
  }
  .sign_sec2_2 {
    width: 168px;
    aspect-ratio: 168 / 113;
    bottom: -24px;
    right:0;
    z-index: 0;
  }

  .sign_visual_btn{
    width: 220px;
    font-size: 14px;
    padding: 13px 0;
  }
}
@media (min-width:1200px){
  .sign_sec4_wrap .artist_sec2_item:nth-child(1):after{
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos1.png);
    width: 241px;
    aspect-ratio:241 / 372;
    right: auto;
    left: 0;
    top: -328px;
  }
  .sign_sec4_wrap .artist_sec2_item:nth-child(2):after {
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos2.png);
    width: 126px;
    aspect-ratio: 126 / 122;
    right: auto;
    right:0;
    top: auto;
    left: auto;
    bottom: -50px;
  }

  .sign_sec2_2 {
    width: 168px;
    aspect-ratio: 168 / 113;
    bottom: -24px;
    right:0;
    z-index: 0;
  }

  .sign_sec4_wrap .artist_sec2_item .p1{
    width: 241px;
    width: 15.71%;
    left: 0;
    top: -200px;
  }
  .sign_sec4_wrap .artist_sec2_item .p2{
    width: 126px;
    width: 11.35%;
    right: 0;
    bottom: -50px;
  }

  .pg_signProduce .section.sec2 .hosi.top{
    right: calc(50% - 529px);
    top: 112px;
  }
  .pg_signProduce .section.sec2 .kuru2.top{
    bottom: auto;
    right: calc(50% - 880px);
    top: -32px;
  }
  /*  .pg_signProduce .section.sec2 .kuru2.h{
          top: 800px;
                  right: calc(50% - 780px);
    }
    .pg_signProduce .section.sec2 .hosi.f{
      
    }*/

  /*背景*/
  .sign_sec3_wrap .neji,
  .sign_sec3_wrap .neji2,
  .sign_sec3_wrap .kuru,
  .sign_sec3_wrap .kuru2,
  .sign_sec3_wrap .hosi,
  .sign_sec3_wrap .maru{
    z-index: 2;
  }
  .neji.a{
    top: -45px;
    right: calc(50% - 742px);
  }
  .kuru.b{
    left: calc(50% - 782px);
    top: 218px;
  }
  .kuru.c{
    top: 1211px;
    left: calc(50% - 800px);
  }
  .kuru2.d{
    top: 800px;
    right: calc(50% - 777px);
    bottom: auto;
  }
  .hosi.e{
    top: 2500px;
    left: calc(50% - 810px);
  }
  .hosi.f{
    bottom: 587px;
    left: calc(50% - 798px);
  }
  .maru.g{
    bottom: 250px;
    right: calc(50% - 700px);
  }
  .maru.j{
    bottom: 2235px;
    right: calc(50% - 721px);
  }
  .kuru2{
    bottom: -112px;
    right: calc(50% - 50px);
  }
  .kuru.i{
    top: auto;
    right: calc(50% - 810px);
    bottom: 800px;
  }


  /*sec1*/
  .home_sec6_wrap.sign .home_sec6_box1 .neji{
    right: calc(50% - 690px);
    top: 189px;
  }
  .home_sec6_wrap.sign .home_sec6_box2 .maru{
    bottom: -109px;
    left: 300px;
  }
  .home_sec6_wrap.sign .home_sec6_box2 .kuru2{
    left: calc(50% - 500px);
    bottom: 38px;
  }

  .head_outer{
    padding-bottom: 226px;
  }
  .home_sec6_wrap.sign{

  }
  .home_sec6_wrap .tt_en.girl + .tt_en.girl{
    margin-top: 0;
  }
  .home_sec6_wrap.sign .home_sec6_box1{
    order: 2;
  }
  .home_sec6_wrap.sign .home_sec6_box1 .sec_tt{
    margin-top: 10px;
  }
  .home_sec6_wrap.sign .home_sec6_box2{
    order: 1;
    padding-top: 17px;
  }

  /*sec2*/
  .artist_sec2_links.col2{
    justify-content: center;
    gap: 0 34px;
  }
  .artist_sec2_links.col2 .artist_sec2_link{
    width: 540px;
  }
  .artist_sec2_links.col2 .artist_sec2_link a{
    max-width: 540px;
  }

  .sign_sec2_wrap{

  }
  .sign_sec2_tt{

  }
  .sign_sec2_ja{

  }
  .tt_en.sm{

  }
  .sign_sec2_wrap .sec_tt{

  }
  .sign_sec2_wrap .content_desc.center{

  }
  .sign_visual{

  }
  .sign_visual_box{
    width: 22.52%;
    padding-top: 33px;
  }
  .sign_visual_box.left{
    margin-right: -54px;
  }
  .sign_visual_box.right{
    margin-left: -74px;
  }
  .sign_visual_btn{
    width: 250px;
  }
  .sign_visual_btn:nth-child(n+2){
    margin-top: 35px;
  }
  .sign_visual_img{
    width:66.12%;
  }

  .sign_sec2_items{
    margin-top: 130px;
  }
  .sign_sec2_item{
    padding: 44px 62px 36px;
  }
  .sign_sec2_item_img img{

  }
  .sign_sec2_item_img:before{

  }
  .sign_sec2_item_tt{
    font-size: 35px;
  }
  .sign_sec2_item .content_desc{

  }

  /*sec4*/
  .sign_sec4_wrap{
    padding-top: 196px;
  }
}
@media (min-width:1470px){
  .sign_sec2_2 {
    width: 168px;
    aspect-ratio: 168 / 113;
    bottom: -24px;
    right: calc(50% - 554px);
    z-index: 0;
  }

  .sign_sec4_wrap .artist_sec2_item:nth-child(1):after{
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos1.png);
    width: 241px;
    aspect-ratio:241 / 372;
    right: auto;
    left: calc(50% - 772px);
    top: -328px;
  }
  .sign_sec4_wrap .artist_sec2_item:nth-child(2):after {
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sign_sec4_pos2.png);
    width: 126px;
    aspect-ratio: 126 / 122;
    right: auto;
    right: calc(50% - 705px);
    top: auto;
    left: auto;
    bottom: -50px;
  }

  .sign_sec4_wrap .artist_sec2_item .p1{
    width: 241px;
    width: 21.71%;
    left: calc(50% - 772px);
    top: -328px;
  }
  .sign_sec4_wrap .artist_sec2_item .p2{
    width: 126px;
    width: 11.35%;
    right: calc(50% - 705px);
    bottom: -50px;
  }

  .sign_csec2_cara1{
    width: 377px;
    width: 19.63%;
    aspect-ratio:377 / 617;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/signpos1.png);
    z-index: 1;
    top: 0;
    left: calc(50% - 800px);
  }

  .home_sec6_wrap.sign .home_sec6_box2 .maru{
    bottom: -109px;
    left: 559px;
  }
}
@media (min-width:1720px){
  .sign_csec2_cara1{
    width: 377px;
    width: 19.63%;
    left: calc(50% - 969px);
  }

}



/*******************************
*　作家紹介
********************************/

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

}
.pg_mystory .section.sec1{
  padding-bottom:150px;
  position: relative;
}
.pg_mystory .section.sec2{
  background: #bae4a3;
  position: relative;
}
.pg_mystory .section.sec2:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 80;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/single_sec2_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -79px;
  left: 50%;
  transform: translateX(-50%);
}
.pg_mystory .section.sec2:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 203;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/story_btm_.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
}
.pg_mystory .section.sec3{
  position: relative;
}
.pg_mystory .section.sec3:before{
  content: "";
  display: block;
  width: 978px;
  aspect-ratio: 978 / 282;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/story-btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 150px;
  left: calc(50% - 818px);
}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}

/*背景*/
.sec2-po1{

}
.sec2-po2{

}
.sec2-po3{

}
.sec2-po4{

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

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

}
@media (max-width:767px){
  .pg_mystory .section.sec2{
    padding-bottom: 0;
  }
  .pg_mystory .section.sec2:before{
    width: 1000px;
    top: -20px;
  }
}
@media (min-width:768px){
  /*背景*/
  .chara{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
  }
  .ps1{
    width: 126px;
    aspect-ratio:126 / 196;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec_pos1.png);
    right: calc(50% - 961px);
    bottom: 195px;
  }
  .ps2{
    width: 330px;
    aspect-ratio:330 / 369;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec2-po1.png);
    left: calc(50% - 958px);
    top: 62px;
  }
  .ps3{
    width: 253px;
    aspect-ratio:253 / 261;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec2-po2.png);
    top: 350px;
    right: calc(50% - 950px);
  }
  .ps4{
    width: 518px;
    aspect-ratio:518 / 869;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec2-po4.png);
    top: 2300px;
    left: calc(50% - 966px);
  }
  .ps5{
    width: 253px;
    aspect-ratio:253 / 261;
    background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/sec2-po2.png);
    top: 1920px;
    right: calc(50% - 910px);
  }

  .pg_mystory{

  }
  .pg_mystory .section.sec1{
    padding-bottom: 233px;
  }
  .pg_mystory .section.sec2{

  }
  .pg_mystory .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  }
  .pg_mystory .section.sec1{
    padding-bottom: 233px;
  }
  .pg_mystory .section.sec2{

  }
  .pg_mystory .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/*イラスト*/
.story_cara{
  top: -155px;
  left: calc(50% - 753px);
}
.story_cara1{
  width: 84px;
  aspect-ratio:84 / 117;
}
.story_cara2{
  width: 123px;
  aspect-ratio:123 / 206;
  left: 88px;
  top: -42px;
  z-index: -1;
}
.story_sec2_pos3{
  width: 519px;
  aspect-ratio:519 / 266;
  right: calc(50% - 753px);
  top: -307px;
  z-index: 1;
}
.home_sec6_wrap.story .home_sec6_box1 .neji{
  top: 190px;
  left: 630px;
}
.home_sec6_wrap.story .home_sec6_box2:before{
  display: none;
}

.roots_pos1{
  width: 134px;
  aspect-ratio:134 / 116;
  left: 34px;
  top: -94px;
  z-index: 2;
}
.artist_sec2_items.vol1 .roots_pos1 img,
.artist_sec2_items.vol1 .roots_pos2 img{
  transform-origin: bottom center;
  animation: bura 1s ease-in-out infinite;
}
.artist_sec2_items.vol1 .roots_pos2{
  z-index: 2;
}
.roots_pos2{
  width: 104px;
  aspect-ratio:104 / 152;
  right: 36px;
  top: -146px;
  z-index: 1;
}
.artist_sec2_items.story .artist_sec2_item:nth-child(2):after{
  display: none;
}

.artist_sec2_items.vol2 .roots_pos1{
  width: 170px;
  width: 25%;
  aspect-ratio:170 / 95;
  left: 0;
  top: -94px;
  top: -19%;
  z-index: 2;
  animation: fullmove 2.5s ease-in-out infinite;
}
.artist_sec2_items.vol2 .roots_pos1 img{
  /*  animation: fullmove 2.5s ease-in-out infinite;*/
}
@keyframes fullmove {
  0% {
    left:0;
  }
  50% {
    left:75%;
  }
  100% {
    left:0;
  }
}
.artist_sec2_items.vol2 .roots_pos2{
  width: 311px;
  aspect-ratio:418 / 171;
  left: auto;
  top: -94px;
  z-index: 2;
  right: 132px;
}
.artist_sec2_btm .wine{
  width: 14.34%;
  right: 10px;
  bottom: -80px;
}
.artist_sec2_btm .wine img{
  /*  transform-origin: center center;
    animation: bura 1s ease-in-out infinite;*/
}

.megane{
  right: 11%;
  bottom: auto;
  top: 252px;
}
.megane img{
  transform-origin: center center;
  animation: bura 1s ease-in-out infinite;
}

/* メイン部分 */
/*sec1*/
.home_sec6_wrap.story{

}
.home_sec6_wrap.story .home_sec6_box1{
  position: relative;
}
.home_sec6_wrap.story .sec_tt{

}
.home_sec6_wrap.story .content_desc{

}
.home_sec6_wrap.story .home_sec6_box2{

}

/*sec2*/
.artist_sec2_items.story .artist_sec2_item:before{
  display: none;
}
.artist_sec2_items.story .artist_sec2_item{
  background: none;
}
.artist_sec2_items.story .artist_sec2_item:nth-child(1):after{
  display: none;
}
.bg_wh_txt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 20px;
  font-weight: 700;
}
.bg_wh_txt p{
  background: #fff;
  border-radius: 21px;
  letter-spacing: 0.075em;
  padding: 0 17px;
}
.bg_wh_txt p:first-child{
  padding: 0 17px;
}
.bg_wh_txt p:nth-child(n+2){
  margin-top: 13px;
}
.bg_wh_txt p:nth-child(2){
  padding-left: 30px;
}
.sec_tt.lg,
.artist_sec2_items.story .sec_tt{
  font-size: 18px;
  line-height: 1.625em;
}
.artist_sec2_items.story .artist_sec2_item_left_img:before{
  padding-top: 76.92%;
}

.number{
  display:flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /*  margin: 30px 0;*/
}
.artist_sec2_item_right.wide{
  width: 100%;
}
.artist_sec2_btm{
  margin-top: 50px;
  margin-bottom: 49px;
  position: relative;
}
@media (max-width:767px){
  /*イラスト*/
  .story_cara{
    top: -71px;
    left: calc(50% - 150px);
  }
  .story_cara1{
    width: 49px;
  }
  .story_cara2{
    width: 72px;
  }
  .megane{
    right: 0;
    bottom: auto;
    top: 250px;
    width: 36%;
  }

  .artist_sec2_btm .wine{
    width: 113px;
    right: 0;
    bottom: -98px;
    left: auto;
  }

  .artist_sec2_items.vol2 .roots_pos1{
    width: 100px;
    aspect-ratio: 170 / 95;
    left: 30px;
    top: -60px;
    z-index: 2;
  }
  .artist_sec2_items.vol2 .roots_pos2{
    width: 180px;
    aspect-ratio: 418 / 171;
    left: auto;
    top: -65px;
    z-index: 2;
    right: 132px;
  }

  .pg_mystory .section.sec2 .artist_sec2_items.vol1{
    margin-top: 30px;
  }
  .pg_mystory .section.sec2 .artist_sec2_items.vol2{
    margin-top: 110px;
  }
  .artist_sec2_items.story .artist_sec2_item{
    padding-bottom: 30px;
  }
  .artist_sec2_items.story .artist_sec2_item:nth-child(n+2){
    margin-top: 30px;
  }

  .roots_pos1{
    width: 80px;
    aspect-ratio: 134 / 116;
    left: 20px;
    top: -50px;
    z-index: 2;
  }
  .roots_pos2{
    width: 70px;
    aspect-ratio: 104 / 152;
    right: 36px;
    top: -85px;
    z-index: 2;
  }

  .pg_mystory .section.sec2


  /*sec2*/
  .bg_wh_txt{
    font-size: 16px;
  }
  .bg_wh_txt p{
    letter-spacing: 0;

  }
  .bg_wh_txt p:first-child{
    padding-inline:4px;
    text-indent: -1.1em;
    padding-left: 1.1em;
  }
  .bg_wh_txt p:nth-child(2){
    padding-left: 20px;
  }

  .artist_sec2_items{
    margin-top: 120px;
  }
}
@media (min-width:768px){
  /*イラスト*/
  .story_cara{
    top: -155px;
    left: 0;
  }
  .story_sec2_pos3{
    right:0;
    width: 400px;
    top: -227px;
  }
  .megane{
    right: 11%;
    bottom: auto;
    top: 220px;
  }


  /*sec1*/
  .home_sec6_wrap.story{

  }
  .home_sec6_wrap.story .home_sec6_box1{

  }
  .home_sec6_wrap.story .sec_tt{
    margin-top: 13px;
  }
  .home_sec6_wrap.story .content_desc{

  }
  .home_sec6_wrap.story .home_sec6_box2{

  }

  /*sec2*/
  .bg_wh_txt{
    font-size: 24px;
  }
  .bg_wh_txt p:first-child{
    padding: 0 17px;
  }
  .bg_wh_txt p:nth-child(2){
    padding-left: 45px;
  }
  .artist_sec2_items.story{
    margin-top: 24px;
    margin-bottom: 16px;
  }
  .artist_sec2_items.story .sec_tt{
    font-size: 28px;
  }
  .artist_sec2_items.story .artist_sec2_item_right .content_desc{
    margin-top: 38px;
  }

  .artist_sec2_btm{
    margin-top: 80px;
    margin-bottom: 130px
  }
  .artist_sec2_items.story .artist_sec2_item:nth-child(n+2) {
    margin-top: 20px;
  }
  .artist_sec2_btm .wine{
    width: 14.34%;
    right: 10px;
    bottom: -120px;
  }

  /*  .original_num{
      width: 100%;
      max-width: 900px;
    }*/
}
@media (min-width:1024px){
  .artist_sec2_items.vol2 .roots_pos1{
    width: 170px;
    width: 25%;
    aspect-ratio:170 / 95;
    left: 0;
    top: -94px;
    top: -13%;
  }

  /*  .number{
          margin: 80px 0;
    }*/

}
@media (min-width:1200px){
  .artist_sec2_items.vol1 .artist_sec2_item:nth-child(1) .neji{
    right: calc(50% - 348px);
    top: -234px;
  }
  .megane{
    right: 11%;
    bottom: auto;
    top: 252px;
  }
  .pg_mystory .section.sec3 .neji{
    right: calc(50% - 748px);
    top: 120px;
  }

  .artist_sec2_items.vol2 .roots_pos1{
    width: 170px;
    width: 25%;
    aspect-ratio:170 / 95;
    left: 0;
    top: -94px;
    top: -16%;
  }

  .my1{
    top: 0;
    right: calc(50% - 434px);
  }

  /*sec1*/
  .home_sec6_wrap.story{

  }
  .home_sec6_wrap.story .home_sec6_box1{

  }
  .home_sec6_wrap.story .sec_tt{

  }
  .home_sec6_wrap.story .content_desc{
    margin-top: 42px;
  }
  .home_sec6_wrap.story .home_sec6_box2{
    padding-top: 18px;
  }

  /*sec2*/
  .bg_wh_txt{
    font-size: 22px;
  }
  .bg_wh_txt p:nth-child(2){
    padding-left: 49px;
  }
  .artist_sec2_items.story .sec_tt{
    font-size: 28px;
  }
  .artist_sec2_items.story .artist_sec2_item_left{
    width: 42.76%;
  }
  .artist_sec2_items.story .artist_sec2_item:nth-child(odd) .artist_sec2_item_left{
    transform: rotate(-3.5deg);
    margin-left: 51px;
  }
  .artist_sec2_items.story .artist_sec2_item:nth-child(even) .artist_sec2_item_left{
    transform: rotate(3.5deg);
    margin-right: 51px;
  }

  .artist_sec2_items.story .artist_sec2_item:nth-child(n+2){
    margin-top: 20px;
  }

  .artist_sec2_btm{
    margin-top: 103px;
    margin-bottom: 160px;
  }
  .artist_sec2_btm .wine{
    width: 14.34%;
    right: 10px;
    bottom: -150px;
  }

  .pg_mystory .section.sec3 .artist_sec2_links.col2{
    gap:0 30px;
  }

  .num_left{
    margin-right: -37px;
    margin-top: -36px;
  }
  .num_right{
    margin-left: -33px;
    margin-top: -36px;
  }
}
@media (min-width:1470px){
  /*イラスト*/
  .story_cara{
    top: -155px;
    left: calc(50% - 753px);
  }
  .story_sec2_pos3{
    width: 519px;
    right: calc(50% - 753px);
    top: -307px;
  }

  .artist_sec2_btm{
    margin-top: 103px;
    margin-bottom: 49px;
  }
  .artist_sec2_btm .wine{
    width: 10.34%;
    right: 10px;
    bottom: -80px;
  }

  .artist_sec2_items.vol2 .roots_pos1{
    width: 170px;
    width: 25%;
    aspect-ratio:170 / 95;
    left: 0;
    top: -94px;
    top: -19%;
  }

  /*sec2*/
  .bg_wh_txt{
    font-size: 22px;
  }
  .sec_tt.lg,
  .artist_sec2_items.story .sec_tt{
    font-size: 34px;
  }
}
@media (min-width:1720px){
  /*sec2*/
  .bg_wh_txt{
    font-size: 28px;
  }

  .sec_tt.lg,
  .artist_sec2_items.story .sec_tt{
    font-size: 40px;
  }

  .artist_sec2_btm .wine{
    width: 14.34%;
    right: 10px;
    bottom: -80px;
  }
}



/*******************************
*　商品
********************************/

/* セクション設定 */
.pg_product{
  position: relative;
}
.pg_product:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio:1920 / 1932;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/product_b.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 43%;
  left: 0;
}
.pg_product:after{

}
.pg_product .section.sec1{
  position: relative;
  margin-top: 60px;
}
.pg_product .section.sec1:before{

}



@media (max-width:374px){

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

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

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

  }
  .pg_product:before{
    top: 80%;
    left: 0;
  }
  .pg_product .section.sec1{
    margin-top: 150px;
  }
  .pg_product .section.sec2{

  }

}
@media (min-width:1024px){
  .pg_product:before{
    top: 75%;
    left: 0;
  }

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

  }
  .pg_product:before{
    top: 55%;
    left: 0;
  }
  .pg_product .section.sec1{
    margin-top: 20px;
  }

  .pg_product .section.sec2{

  }

}
@media (min-width:1470px){
  .pg_product:before{
    top: 43%;
    left: 0;
  }

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


}

/*イラスト*/
.product_cara{
  top: -5.7rem;
  left: 50%;
  transform:translateX(-50%);
}
.product_cara2{
  width: 22.53%;
  bottom: 0rem;
  right: 2rem;
}
.product_h1_cara{
  bottom: -8rem;
  left: -6rem;
}
.product_h1_cara img{
  transform-origin: top right;
  animation: bura 1s ease-in-out infinite;
}
.product_h1_cara2{
  width: 6.1%;
  right: 10%;
  top: auto;
  bottom: 23%;
}
.product_h1_cara2 img{
  transform-origin: bottom center;
  animation: bura 1s ease-in-out infinite;
}

/* メイン部分 */
.h1_outer{
  display: inline-block;
  position: relative
}

.product_list{

}
.product_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
}
.product_list .webgene-item{
  width: 100%;
}
.product_list .webgene-item .img{
  border-radius: 30px;
}
.product_list .webgene-item .img img{
  border-radius: 30px;
}
.product_list .webgene-item .img:before{
  padding-top: 82.3%;
}
.product_list .webgene-item .title{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.link_2{
  max-width: 368px;
  aspect-ratio: 368 / 72;
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  border: none;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/read_more.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 16px 20px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  text-align: left;
}
.link_2:after{
  content: "▶︎";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
@media (max-width:767px){
  .product_h1_cara{
    bottom: -5rem;
    left: -3.5rem;
    width: 4rem;
  }
  .product_h1_cara2{
    width: 11.1%;
    right: 10%;
    top: auto;
    bottom: 53%;
  }
}
@media (min-width:768px){
  /*イラスト*/
  .product_cara2{
    width: 14.53%;
    bottom: -10rem;
    right: 10rem;
  }

  /* メイン部分 */
  .product_list{

  }
  .product_list .webgene-blog{
    gap: 87px 30px;
  }
  .product_list .webgene-item{
    width: calc(50% - 15px);
  }
  .product_list .webgene-item .img:before{

  }
  .product_list .webgene-item .title{
    font-size: 22px;
    margin-top: 24px;
  }
  .link_2{
    margin-top: 23px;
  }
}
@media (min-width:1024px){
  /*イラスト*/
  .product_cara2{
    width: 14.53%;
    bottom: -10rem;
    right: 10rem;
  }

}
@media (min-width:1200px){
  /*イラスト*/
  .product_cara2{
    width: 14.53%;
    bottom: -10rem;
    right: 10rem;
  }

  /* メイン部分 */
  .product_list{

  }
  .product_list .webgene-blog{

  }
  .product_list .webgene-item{
    width: calc(33.333% - 20px);
  }
  .product_list .webgene-item .img:before{

  }
  .product_list .webgene-item .title{
    font-size: 25px;
  }
  .link_2{

  }

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


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


}



/*******************************
*　blog
********************************/
/*イラスト*/
.blogPg .sec7_pos1{
  width: 13.8125em;
  aspect-ratio: 214 / 166;
  top: 6rem;
  right: auto;
  left: calc(50% - 32rem);
  z-index: 2;
}
.pg_blog{
  position: relative;
}
.pg_blog.list{

}
.pg_blog.list:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 1319;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/blog_bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 33.7%;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
.pg_blog.detail:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 841;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/blog_detail_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 41.7%;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
/* セクション設定 */
.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){
  .pg_blog.list .section.sec1{
    padding-top: 0; 
  }

  .blogPg .sec7_pos1{
    width: 4.8125em;
    aspect-ratio: 214 / 166;
    top: 4.5rem;
    right: auto;
    left: calc(50% - 9rem);
    z-index: 2;
  }
  .blogPg .sec7_pos2{
    width: 4.375rem;
    aspect-ratio: 214 / 166;
    top: 4rem;
    right: calc(50% - 7rem);
    z-index: 2;
  }

  .pg_blog.list .product_cara2{
    bottom: 21rem;
  }
  .pg_blog.detail .product_cara2{
    bottom: -4rem;
  }
}
@media (min-width:768px){
  .blogPg .sec7_pos1{
    width: 7.8125em;
    aspect-ratio: 214 / 166;
    top: 5rem;
    right: auto;
    left: calc(50% - 15rem);
    z-index: 2;
  }
  .blogPg .sec7_pos2{
    width: 7.375rem;
    aspect-ratio: 214 / 166;
    top: 4rem;
    right: calc(50% - 12.5rem);
    z-index: 2;
  }
  .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){
  .blogPg .sec7_pos1{
    width: 9.8125em;
    aspect-ratio: 214 / 166;
    top: 4rem;
    right: auto;
    left: calc(50% - 19rem);
    z-index: 2;
  }
  .blogPg .sec7_pos2{
    width: 9.375rem;
    aspect-ratio: 214 / 166;
    top: 4rem;
    right: calc(50% - 15.5rem);
    z-index: 2;
  }

}
@media (min-width:1200px){
  .blogPg .sec7_pos1{
    width: 12.8125em;
    aspect-ratio: 214 / 166;
    top: 3rem;
    right: auto;
    left: calc(50% - 24rem);
    z-index: 2;
  }
  .blogPg .sec7_pos2{
    width: 9.375rem;
    aspect-ratio: 214 / 166;
    top: 3rem;
    right: calc(50% - 17.5rem);
    z-index: 2;
  }
  .pg_blog.list .product_cara2{
    width: 14.53%;
    bottom: -9rem;
    right: 13rem;
  }
  .pg_blog.detail .product_cara2{
    bottom: -10rem;
    right: 28rem;
  }

  .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){
  .blogPg .sec7_pos1{
    width: 13.8125em;
    aspect-ratio: 214 / 166;
    top: 4rem;
    right: auto;
    left: calc(50% - 28rem);
    z-index: 2;
  }
  .blogPg .sec7_pos2{
    width: 13.375rem;
    aspect-ratio: 214 / 166;
    top: 2rem;
    right: calc(50% - 23.5rem);
    z-index: 2;
  }

}
@media (min-width:1720px){
  .blogPg .sec7_pos1{
    width: 13.8125em;
    aspect-ratio: 214 / 166;
    top: 6rem;
    right: auto;
    left: calc(50% - 32rem);
    z-index: 2;
  }
  .blogPg .sec7_pos2{
    width: 13.375rem;
    aspect-ratio: 214 / 166;
    top: 4rem;
    right: calc(50% - 24.5rem);
    z-index: 2;
  }

}

/* メイン部分 */

@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_work{
  position: relative;
  /*  overflow: hidden;*/
}
.pg_work:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 1396;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/work_bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 17.7%;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
.pg_work:after{
  content: "";
  display: block;
  width: 665px;
  aspect-ratio: 665 / 125;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/e.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -12.7%;
  left: 37%;
  transform:translateX(-50%);
  pointer-events: none;
  z-index: -1;
}
.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){
  .pg_work:before{
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_work:before{
    content: "";
    display: block;
    width: 1920px;;
  }
  .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){
  .pg_work:before{
    content: "";
    display: block;
    width: 1920px;;
  }

}
@media (min-width:1200px){
  .pg_work:before{
    content: "";
    display: block;
    width: 100%;
  }
  .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){


}

/*イラスト*/
.work_head_pos{
  width: 24.13%;
  aspect-ratio: 329 / 343;
  top: 50%;
  left: calc(50% - 47%);
}
.work_head_pos1{

}

/* メイン部分 */
.work_cate{

}
.work_cate .webgene-blog{

}
.work_cate .webgene-item{

}
.work_cate .webgene-item a{
  max-width: 368px;
  aspect-ratio: 368 / 72;
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  border: none;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/read_more.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  text-align: left;
}
.work_cate .webgene-item a:after{
  content: "▶︎";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.work_cate .webgene-item a:hover{
  color: #FFF;
  transform: scale(1.02);
}

.works_list.kasou{
  margin-top: 40px;
}
.works_list.kasou .webgene-blog{
  display:flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.works_list.kasou .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.works_list.kasou .webgene-item:nth-child(n+3){
  margin-top: 20px;;
}
.works_list.kasou .webgene-item a{

}
.works_list.kasou .webgene-item .img:before{
  padding-top: 75%;
}
.works_list.kasou .webgene-item .img img{
  border-radius: 30px;
}
.works_list.kasou .webgene-item .box2{
  margin-top: 17px;
}
.works_list.kasou .webgene-item .category{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
  background: #fecb2e;
  text-align: center;
  padding: 3px 11px;
}
.works_list.kasou .webgene-item .title{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75em;
  margin-top: 5px;
}
@media (max-width:767px){
  .work_cate{
    display: none;
  }
  .works_list.kasou .webgene-item .category{
    padding: 3px 5px;
    font-size: 12px;
  }
}
@media (min-width:768px){
  /*イラスト*/
  .work_head_pos{
    width: 17.13%;
    aspect-ratio:329 / 343;
    top: 36%;
    left: calc(50% - 36%);
  }


  .work_cate{

  }
  .work_cate .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    gap:16px;
  }
  .work_cate .webgene-item{
    width: calc(50% - 8px);
  }
  .work_cate .webgene-item a{
    font-size: 18px;
    padding: 16px 37px;
    margin-inline:auto;
  }
  .work_cate .webgene-item a:after{
    right: 37px;
  }

  .works_list.kasou{
    margin-top: 82px;
  }
  .works_list.kasou .webgene-blog{
    margin-inline:-13px;
  }
  .works_list.kasou .webgene-item{
    padding-inline:13px;
  }
  .works_list.kasou .webgene-item:nth-child(n+3){
    margin-top: 30px;;
  }
  .works_list.kasou .webgene-item a{

  }
  .works_list.kasou .webgene-item .img:before{

  }
  .works_list.kasou .webgene-item .img img{

  }
  .works_list.kasou .webgene-item .category{

  }
  .works_list.kasou .webgene-item .title{

  }
}
@media (min-width:1024px){
  /*イラスト*/
  .work_head_pos{
    width: 17.13%;
    aspect-ratio:329 / 343;
    top: 36%;
    left: calc(50% - 36%);
  }

}
@media (min-width:1200px){
  /*イラスト*/
  .work_head_pos{
    width: 17.13%;
    aspect-ratio:329 / 343;
    top: 14%;
    left: calc(50% - 36%);
  }

  .work_cate{

  }
  .work_cate .webgene-blog{
    gap: 8px 16px;
  }
  .work_cate .webgene-item{
    width: calc(25% - 12px);
  }
  .work_cate .webgene-item a{
    font-size: 15px;
    margin-inline:0;
  }

  .works_list.kasou{
    margin-top: 77px;
  }
  .works_list.kasou .webgene-blog{

  }
  .works_list.kasou .webgene-item{
    width: 25%;
  }
  .works_list.kasou .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .works_list.kasou .webgene-item:nth-child(n+5){
    margin-top: 57px;
  }
  .works_list.kasou .webgene-item a{

  }
  .works_list.kasou .webgene-item .img:before{

  }
  .works_list.kasou .webgene-item .img img{

  }
  .works_list.kasou .webgene-item .category{

  }
  .works_list.kasou .webgene-item .title{

  }

}
@media (min-width:1470px){
  .work_cate .webgene-item a{
    font-size: 18px;
  }

}
@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{
  position: relative;
}
.pg_company:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 3009;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/news.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 8.8%;
  left: 0;
  pointer-events: none;
}
.pg_company .section.sec1{
  position: relative;
}
.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{
    margin-top: 60px;
  }
  .pg_company .section.sec2{
    padding-top: 96px;
  }

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


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


}
@media (min-width:1470px){
  .pg_company .section.sec1{
    margin-top: 24px;
  }

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


}

/*イラスト*/
.company_cara{
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
}
.body_company .cara1{
  display: none;
}

.compnay_cara2{
  content: "";
  display: block;
  width: 13.12%;
  aspect-ratio:252 / 632;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/compnay1_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 23%;
  left: calc(50% - 962px);
  left: 0;
  transition: all .2s;
}
.compnay_cara2_1{
  width:64.28%;
  top: 34%;
  right: -47%;

}
.compnay_cara2_1 img{
  transform-origin: bottom left;
  animation: bura 1s ease-in-out infinite;
}
.compnay_cara3{
  width: 17.86%;
  top: 35%;
  right: 10%;
}
.compnay_cara3 img{
  transform-origin: center center;
  animation: bura 1s ease-in-out infinite;
}
.compnay_cara4{
  content: "";
  display: block;
  width: 15.88%;
  aspect-ratio:305 / 297;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/compnay3_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 92.5%;
  left: 0;
}
.compnay_cara4_1{
  width: 53.61%;
  top: -29%;
  right: -12%;
}
.compnay_cara4_1 img{
  transform-origin: bottom left;
  animation: bura 1s ease-in-out infinite;
}

/* メイン部分 */


/* 会社概要 */
.company_tbl{
  position: relative;
  z-index: 1;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #888888;
  padding: 10px 10px;
  font-weight: 500;
}
.company_tbl .table_rows_th{
  background: #d4daf4;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}
.company_tbl .table_rows_td p{
  letter-spacing: 0.025em;
}

/* マップ */
.company_map{

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

/* ギャラリー */
.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: 74.9%;
}
.company_gallery_item_img.img_fit img{
  border-radius: 15px;
}


/*sec2*/
.pg_company .section.sec2 .fukidasi_tt{
  margin-bottom: 40px;
}
@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    width: 100%;
    display: block;
    border: 1px solid #888888;
    border-bottom: 0;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #888888;
  }

  .compnay_cara2{
    width: 13.12%;
    top: 41%;
    left: calc(50% - 962px);
    left: 0;
    transition: all .2s;
  }
  .compnay_cara2_1{
    width: 114.28%;
    top: 8%;
    right: -47%;
  }
  .compnay_cara3{
    width: 17.86%;
    top: 42%;
    right: 3%;
  }
  .compnay_cara4{
    width: 15.88%;
    top: 101.5%;
    left: 0;
  }
  .compnay_cara4_1{
    width: 85.61%;
    top: -29%;
    right: -50%;
  }
}
@media (min-width:768px){

  /*イラスト*/
  .company_cara{
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 16rem;
  }
  .compnay_cara2{
    width: 13.12%;
    top: 43%;
    left: calc(50% - 962px);
    left: 0;
    transition: all .2s;
  }
  .compnay_cara2_1{

  }
  .compnay_cara3{
    width: 17.86%;
    top: 46%;
    right: 10%;
  }
  .compnay_cara4{
    width: 15.88%;
    top: 97.5%;
    left: 0;
  }

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 18px;
    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;
  }

  .gmap{
    margin-top: 60px;
  }
  .access_map iframe{
    height: 450px;
  }


  /* ギャラリー */
  .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;
  }


  /*sec2*/
  .pg_company .section.sec2 .fukidasi_tt{
    margin-bottom: 70px;
  }
}
@media (min-width:1024px){
  /*イラスト*/
  .company_cara{
    top: -7rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40rem;
  }
  .compnay_cara2{
    width: 13.12%;
    top: 50%;
    left: calc(50% - 962px);
    left: 0;
    transition: all .2s;
  }
  .compnay_cara3{
    width: 17.86%;
    top: 50%;
    right: 10%;
  }
  .compnay_cara4{
    width: 15.88%;
    top: 98.5%;
    left: 0;
  }

}
@media (min-width:1200px){
  .compnay_cara2{
    width: 13.12%;
    top: 39%;
    left: calc(50% - 962px);
    left: 0;
    transition: all .2s;
  }
  .compnay_cara3{
    width: 17.86%;
    top: 42%;
    right: 10%;
  }
  .compnay_cara4{
    width: 15.88%;
    top: 98.5%;
    left: 0;
  }
  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 15px 18px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding-left: 19px;
  }

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

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


}
@media (min-width:1720px){
  .compnay_cara2{
    width: 13.12%;
    top: 33%;
    left: calc(50% - 962px);
    left: 0;
    transition: all .2s;
  }
  .compnay_cara3{
    width: 17.86%;
    top: 44%;
    right: 10%;
  }
  .compnay_cara4{
    width: 15.88%;
    top: 93.5%;
    left: 0;
  }

}



/* カテゴリ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%;
  }

}


/*******************************
*　記事一覧
********************************/

/* 一覧（サムネあり） */
.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){

  /* 一覧（サムネあり） */
  .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{

  }

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



}
@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: #1b2a74;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.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: 33px;
  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;
}

.news_list.kasou .webgene-item .box2{
  margin-top: 20px;
}
.news_list.kasou .webgene-item .img:before{
  padding-top: 74.85%;
}
.news_list.kasou .webgene-item .category{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
  background: #fecb2e;
  text-align: center;
  padding: 3px 11px;
}
.news_list.kasou .webgene-item .title{
  margin-top: 5px;
}


.news_detail{
  border-bottom: 1px solid #383838;
  padding-bottom: 30px;
}
.news_detail .webgene-item{

}
.news_detail .webgene-item .category{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: inline-block;
  background: #fecb2e;
  text-align: center;
  padding: 3px 11px;
}
.news_detail .webgene-item .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #383838;
  padding-bottom: 10px;
  margin-top: 5px;
}
.news_detail .webgene-item .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875em;
  padding-top: 30px;
}
/* コピー用 */
@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: 126px;
  }

  .posts_cat_item a{
    font-size: 12px;
  }

  /* 詳細 */
  .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;
  }

  .news_detail{
    padding-bottom: 54px;
  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .category{

  }
  .news_detail .webgene-item .title{
    font-size: 20px;
  }
  .news_detail .webgene-item .post_content{

  }
  .pg_blog .read_more{
    margin-top: 57px;
  }
}
@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{

  }

  .posts_cat_item a{
    font-size: 16px;
  }

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

  .pg_news{
    padding-top: 100px;
  }

  .posts_layout_box1{
    width: 75.98%;
  }
  .posts_layout_box2{
    width: 19.73%;
    margin-top: 0;
  }

  .news_list.kasou .webgene-blog{
    margin-inline:-26.5px;
  }
  .news_list.kasou .webgene-item{
    width: 33.333%;
    padding-inline:26.5px;
  }
  .news_list.kasou .webgene-item:nth-child(n+4){
    margin-top: 52px;
  }
}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_work{
  position: relative;
}
.pg_work.detail:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920 / 1277;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/worksDetail_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 8.7%;
  left: 0;
  pointer-events: none;
}
.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: 67.39%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
.gallery_main .img.img_fit,
.gallery_main .img.img_fit img{
  border-radius: 30px;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 67.85%;
}
.gallery_thumb .img.img_fit img{
  border-radius: 15px;
}

.gallery_slide_prev i,
.gallery_slide_next i{
  display: none;
}
.gallery_slide_prev,
.gallery_slide_next{
  width: 60px;
  aspect-ratio:1;
  background: #1b2a74;
  border-radius: 50%;
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 27px;
}
.gallery_slide_prev.swiper-button-lock,
.gallery_slide_next.swiper-button-lock{
  display: none; 
}
.gallery_slide_prev{
  left: 0;
}
.gallery_slide_prev:before{
  content:"\f053";
  font-family: "fontAwesome";
}
.gallery_slide_next{
  right:0;
}
.gallery_slide_next:after{
  content:"\f054";
  font-family: "fontAwesome";
}

.worksdetail .post_content{
  background: #fff;
  border-radius: 30px;
  border: 3px solid #bae4a3;
  padding: 16px;
  margin-top: 30px;
}
.worksdetail .title{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #0d0d0d;
  padding-bottom: 10px;
}
.worksdetail .post_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2em;
  padding-top: 15px;
}

/* 詳細 */
.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{
    padding: 0 60px;
  }
  .gallery_box1{
    width: 100%;
  }
  .gallery_box2{
    width: 100%;
    margin-top: 0;

    position: relative;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    margin-top: 11px;
  }

  /* サムネ */
  .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;
  }

  .worksdetail .post_content{
    padding: 44px 60px 80px;
    margin-top: 80px;
  }
  .worksdetail .title{
    font-size: 30px;
    padding-bottom: 40px;
  }
  .worksdetail .post_txt{

  }
}
@media (min-width:1024px){
  .gallery_wrap{
    padding: 0 95px;
  }

  /* 詳細 */
  .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){


}





/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 15px 15px 15px 20px;
  background: #d4daf4;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 55px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 600;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #e66129;
}
.formBtn.formSend {
  max-width: 368px;
  aspect-ratio: 368 / 72;
  width: 100%;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  border: none;
  background-color: #fff;
  background-image: url(https://h2kikaku.co.jp/system_panel/uploads/images/contact_btn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 16px 20px;
  margin: 5px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.formBtn.formSend:after{
  content: "▶︎";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  color: #FFF;
  transform: scale(1.02);
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 27px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .formBtn.formSend{
    font-size: 18px;
    padding: 16px 38px;
  }
  .formBtn.formSend:after{
    right: 35px;
  }

  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #e66129;
  letter-spacing: 0.04em;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 47px
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

.privacy_item_box{
  padding: 28px 43px 30px 27px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 58px;
}
@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .pg_company:before{
    width: 1920px;
    top: 53%;
  }

  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 155px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .privacyLabel {
    font-size: 15px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    font-size: 19px;
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 20px;
  }



  .contact_info_bg {
    padding: 18px 10px;
  }

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }

  .privacy_item_box{
    padding: 30px 10px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
    margin-top: 30px;
  }
}


/*******************************
*　
********************************/
.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){


}
