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

#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;
}
.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;
  justify-content: flex-end;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

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


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px;
  }


  .hdr1 {
    justify-content: center;
  }

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

  .hdr_left a{
    display: block;
    margin: 0 auto;
    width: 160px;
  }

  .mv_pos4{
    width: 44.42%;
    aspect-ratio: 661 / 532;
    left: 27.27%;
    top: 0%;
  }
  .mv_pos6{
    width: 11.25%;
    aspect-ratio: 120 / 231;
    right: 19.79%;
    top: 21.4%;
  }

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

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

    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding:0;
  }

  .hdr_left{
    width: 310px;
    aspect-ratio:355 / 172;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hdr_left:before{
    content: "";
    display: block;
    width: 100%;
    aspect-ratio:355 / 172;
    background-image: url(/system_panel/uploads/images/hdr_left_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
  }
  .hdr_left a{
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 27px;
    margin-right: 17px;
  }
  .hdr_right{
    width: 330px;
    aspect-ratio:351 / 199;
    position: relative;
  }
  .hdr_right:after{
    content: "";
    display: block;
    width: 100%;
    aspect-ratio:351 / 199;
    background-image: url(/system_panel/uploads/images/hdr_right_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -4px;
    right: 0;
  }
  .hdr_right a{
    position: relative;
    z-index: 1;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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

  .hdr_right .hdr_right_inner{
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-right: 45px;
  }
  .hdr_right .hdr_contact img.on{
    display: none;
  }
  .hdr_right .hdr_contact:hover img.off{
    display: none;
  }
  .hdr_right .hdr_contact:hover img.on{
    display: block;
  }
}
@media (min-width:1024px){

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_left{
    width: 355px;
  }
  .hdr_right{
    width: 351px;
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.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_slider{

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

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

/*写真*/
.pos{
  position: absolute;
  z-index: 1;
}
.mv_pos1{
  width: 19.73%;;
  aspect-ratio:379 / 325;
  left: -6.9%;
  top: 22%;
}
.mv_pos2{
  width: 12.96%;;
  aspect-ratio:249 / 452;
  left: 13.02%;
  bottom: 11.33%;
}
.mv_pos3{
  width: 8.22%;
  aspect-ratio:158 / 271;
  left: 33.22%;
  bottom: 28.33%;
}
.mv_pos4{
  width: 34.42%;
  aspect-ratio:661 / 532;
  left: 34.27%;
  top: 9%;
}
.mv_pos5{
  width: 19.94%;
  aspect-ratio:383 / 337;
  left: 47.23%;
  bottom: 1.13%;
}
.mv_pos6{
  width: 6.25%;
  aspect-ratio:120 / 231;

  right: 19.79%;
  top: 34.4%;
}
.mv_pos7{
  width: 12.18%;
  aspect-ratio:234 / 494;
  right: 9.68%;
  top: 0;
}

@media (min-width:768px){

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

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

  }
  .mv_txt_p2{

  }

  /*写真*/ 
  .mv_pos7{
    width: 12.18%;
    aspect-ratio:234 / 494;
    right: 9.68%;
    top: 23%;
  }
}
@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_pos7{
    width: 12.18%;
    aspect-ratio:234 / 494;
    right: 9.68%;
    top: 15%;
  }
}
@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_pos7{
    width: 12.18%;
    aspect-ratio:234 / 494;
    right: 9.68%;
    top: 0;
  }
}
@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:0;
  position: relative;
  z-index: 1;
}
.pg_header:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 150;
  background-image: url(/system_panel/uploads/images/20260618203441640660.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform:translateX(-50%);
}
.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;
}


.page_head{
  background: #f7f1d9;
  padding-top: 100px;
  position: relative;
}
.page_head_tt{
  text-align: center;
}
.page_head_desc{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  margin-top: 30px;
}


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

  .pg_header_title_txt{

  }

  .page_head{
    padding-top: 85px;
  }
  .page_head_tt{

  }
  .page_head_desc{
    font-size: 28px;
    margin-top: 60px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 0;
  }
  .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{

  }

  .page_head{

  }
  .page_head_tt{

  }
  .page_head_desc{
    font-size: 40px;
  }

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

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

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

}


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

.footer{
  margin-top: 100px;
  position: relative;
  z-index: 2;
}
.body_home .footer{
  margin-top: 100px;
}

.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{
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: #34bd63;
  color: #fff;
  text-shadow: 0.616px 0.788px 1.6px rgba(24, 24, 24, 0.8);
  padding: 10px 0;
  position: relative;
  z-index: 2;
}

/* 追尾スマホメニュー */
.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 #f25204;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #087d3c;
  color: #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: #f25204;
  color: #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: #ecdf00;
}
.pagetop a i{
  font-size: 40px;
}


.footer_inner{
  position: relative;
}
.obj_outer{
  position: relative;
  z-index: 0;
}
.obj_outer:before{
  content: "";
  display: block;
  width: 9.16%;;
  aspect-ratio: 1;
  background-image: url(/system_panel/uploads/images/taiyou.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 110px;
  right: 26.04%;
}
.obj1{

}
.obj2{
  position: absolute;
  bottom: -240px;
  left: 50%;
  transform:translateX(-50%);
  width: 1920px;
  aspect-ratio:1920 / 613;
}
.ftr_human{
  position: absolute;
  top: 60px;
  right:0;
  width:43.333%;;
  aspect-ratio:832 / 532;
  z-index: 2;
}
/*.obj3{
  position: absolute;
  width: 1920px;
  aspect-ratio:1920 / 472;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
}*/
.ftr_box1{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: -150px;
}
.ftr_box1:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 508;
  background-image: url(/system_panel/uploads/images/obj4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -124px;
  left: 50%;
  transform:translateX(-50%);
}
.ftr_box1:after{
  content: "";
  display: block;
  width: 33.222%;;
  aspect-ratio:638 / 192;
  background-image: url(/system_panel/uploads/images/ftr_tree.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -50px;
  left: calc(50% - 900px);
}
.ftr_logo{
  position: relative
}
.ftr_box2{
  position: relative;
  padding-top: 20px;
}
.ftr_box2:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/ftr_pattern.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.ftr_box2_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ftr_box2_left{
  width: 100%;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 30px 16px 21px;
}
.ftr_box2_logo{

}
.ftr_box2_name{
  font-size: 24px;
  font-weight: 700;
  margin-top: 6px;
}
.ftr_add{
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}
.ftr_box2_tel{
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  margin-top: 16px;
}
.link_2{
  display: block;
  width: 100%;
  max-width: 410px;
  /*border: 2px solid #08843f;*/
  border-radius: 32.5px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  margin-inline:auto;
  margin-top: 29px;
  padding: 16px 0;
}
.ftr_box2_sns{
  margin-top: 16px;
}
.ftr_box2_right{
  width: 100%;
  margin-top: 30px;;
}
.ftr_box2_right .access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 20px;
}
.ftr_links_outer{
  position: relative;
}
.ftr_links_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/ftr_pattern.jpg);
  background-repeat: repeat;
  position: absolute;
  top: -1px;
  left: 0;
}
.ftr_img_box{
  position: relative;
}
.ftr_img_box:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/ftr_pattern.jpg);
  background-repeat: repeat;
  position: absolute;
  top: -1px;
  left: 0;
}
.ftr_img{
  width: 73.48%;;
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 1411 / 901;
  margin-left: auto;
}
.ftr_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/ftr_img_mask.png);
}
.ftr_img_obj{
  width:39.21%;;
  aspect-ratio:753 / 626;
  background-image: url(/system_panel/uploads/images/ftr_img_obj.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(50% - 965px);
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .pg_header:after{
    width: 700px;
  }
  .page_head_tt img{
    height: 80px;
  }

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

  .footer_inner{
    display: none; 
  }

  .obj2{
    width: 500px;
    bottom: 0;
  }
  .ftr_box1:before{
    width: 1000px;
    top: 0;
  }
  .ftr_logo{
    width: 180px;
    display: block;
    margin-inline: auto;
  }
  .ftr_box1{
    margin-top: -100px;
    padding-top: 60px;
  }
  .ftr_box1:before{
    top: -10px;
  }

  .ftr_links_outer{
    display: none;
  }

  .ftr_img_box{
    padding-top: 30px;
  }
  .ftr_img_obj{
    left: calc(50% - 210px);
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }
  .body_home .footer{
    margin-top: 0;
  }

  .footer_inner{
    width: 100%;
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform:translateX(-50%);
  }
  .obj_outer:before{
    width: 9.16%;;
    top: 0px;
    right: 26.04%;
  }
  .obj1{

  }
  .obj2{

  }
  .obj3{

  }
  .ftr_box1{

  }
  .ftr_logo{

  }
  .ftr_box2{
    padding-top: 74px;
  }
  .ftr_box2_inner{

  }
  .ftr_box2_left{

  }
  .ftr_box2_logo{

  }
  .ftr_box2_name{
    font-size: 30px;
  }
  .ftr_add{
    font-size: 20px;
  }
  .ftr_box2_tel{
    font-size: 26px;
  }
  .link_2{
    font-size: 18px;
  }
  .ftr_box2_sns{

  }
  .ftr_box2_right{
    margin-top: 40px;;
  }
  .ftr_box2_right .access_map iframe{
    height: 450px; 
  }

  .ftr_links_outer{
    position: relative;
    padding-top: 50px;
  }
  .ftr_links{
    background: #fff;
    border: 1px solid #134805;
    border-radius: 29px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 16px;
    position: relative;
    z-index: 1;
  }
  .ftr_link{
    text-align: center;
    width: 20%;
    font-size: 18px;
    font-weight: 600;
    font-family: var(--font-ja);
  }

  .ftr_img_box{
    margin-top: -20px;
  }
  .ftr_img{

  }
  .ftr_img img{

  }
  .ftr_img_obj{
    width:39.21%;;
    bottom: 0;
    left: calc(50% - 400px);
  }

  .ftr_copy{
    font-size: 20px;
    bottom: auto;
    padding: 46px 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 263px;
  }
  .body_home .footer{
    margin-top: 88px;
  }

  .ftr_links{
    justify-content: space-between;
    padding: 14px 10px;
  }
  .ftr_link{
    text-align: left;
    width: auto; 
  }

  .ftr_img_box{
    margin-top: -67px;
  }
  .ftr_img_obj{
    width:39.21%;;
    bottom: 0;
    left: calc(50% - 600px);
  }
}
@media (min-width:1200px){
  .footer_inner{

  }
  .obj_outer:before{
    width: 9.16%;;
    top: 110px;
    right: 26.04%;
  }
  .obj1{

  }
  .obj2{

  }
  .obj3{

  }
  .ftr_box1{

  }
  .ftr_logo{

  }
  .ftr_box2{

  }
  .ftr_box2_inner{

  }
  .ftr_box2_left{
    width: 38.48%;
  }
  .ftr_box2_logo{

  }
  .ftr_box2_name{
    font-size: 34px;
  }
  .ftr_add{

  }
  .ftr_box2_tel{
    font-size: 38px;
  }
  .link_2{

  }
  .ftr_box2_sns{

  }
  .ftr_box2_right{
    width: 57.36%;
    margin-top: 0;
  }
  .ftr_box2_right .access_map iframe{

  }

  .ftr_links{
    justify-content: space-between;
    padding: 14px 75px;
  }
  .ftr_link{
    font-size: 18px;
  }

  .ftr_img_box{

  }
  .ftr_img{

  }
  .ftr_img img{

  }
  .ftr_img_obj{
    width:753px;;
    bottom: 0;
    left: calc(50% - 965px);
  }

  .ftr_copy{
    font-size: 20px;
  }
}
@media (min-width:1470px){

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

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

}

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


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

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

/* コンテナ */
.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 #134805;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #134805;
  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{
  width: 100%;
  max-width: 410px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #8fc31f;
  border-radius: 32.5px;
  color: #181818;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "\f138";
  font-family: 'FontAwesome';
  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;
  background: #f4993a;
  background: #0e6375;
}
.read_more a:hover:after{
  margin-right: -5px;
}

.read_more.or a{
  max-width: 280px;
  background: #f4993a;
}
.read_more.or a:hover{
  background: #0e6375;
  background: #8fc31f;
  color: #FFF;
}
.read_more.wh a{
  max-width: 460px;
  background: #fff;
  color: #181818;
}
.read_more.wh a:hover{
  color: #FFF;
  background: #f4993a;
  background: #0e6375;
}



/* 見出し */
.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;
  }
  .body_model .anchor{
    top: -200px;
  }

  /* ページネーション */
  .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{
    font-size: 18px;
    padding: 21px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 25px;
    font-size: 21px;
  }

  /* 見出し */



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

  }


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

  /* ページネーション */
  .webgene-pagination{
    margin-top: 44px;
  }
  .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
********************************/
.pg_home{

}
.pg_home .section.sec1{
  background: #f7f1d9;
}
.pg_home .section.sec2{
  padding-top: 168px;
  padding-bottom: 230px;
  position: relative;
  z-index: 2;
}
.pg_home .section.sec3{
  padding-top: 194px;
  position: relative;
  z-index: 2;
}
.pg_home .section.sec4{
  position: relative;
  z-index: 2;
  padding-bottom: 203px;
}
.pg_home .section.sec5{
  position: relative;
  z-index: 2;
}
.pg_home .section.sec5:before{
  content: "";
  display: block;
  width: 100vw;
  height: 120%;
  background-image: url(/system_panel/uploads/images/io8.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 194px;
    padding-bottom: 210px;
  }
  .pg_home .section.sec3{
    padding-top: 194px;
  }
  .pg_home .section.sec4{
    padding-top: 180px;
    padding-bottom: 269px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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

  }
  .pg_home .section.sec2{
    padding-top: 194px;
    padding-bottom: 210px;
  }
  .pg_home .section.sec3{
    padding-top: 194px;
  }
  .pg_home .section.sec4{
    padding-top: 50px;
    padding-bottom: 269px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}

/*イラスト・背景*/
/*うすみどり背景*/
.right_gr_bg{
  position: relative;
}
.right_gr_bg:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/n1.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.tree{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.tree1{
  width: 82px;;
  aspect-ratio:82 / 136;
  background-image: url(/system_panel/uploads/images/tree1.png);
  top: 165px;
  left: calc(50% - 541px);
}
.tree2{
  width: 270px;
  aspect-ratio:270 / 394;
  background-image: url(/system_panel/uploads/images/tree2.png);
  top: 450px;
  left: calc(50% - 753px);
}
.tree3{
  width: 398px;
  aspect-ratio:398 / 407;
  background-image: url(/system_panel/uploads/images/tree3.png);
  top: 484px;
  right: calc(50% - 972px);
}
.human_block{
  width: 597px;
  position: absolute;
  right: calc(50% - 960px);
  top: auto;
  z-index: -1;
  bottom: 211px;
}

.tree.side{
  width: 597px;
  aspect-ratio:597 / 392;
  background-image: url(/system_panel/uploads/images/t1.png);
  top: auto;
  right: auto;
  bottom: auto;
}

.p1{
  width: 14.84%;
  aspect-ratio:285 / 294;
  left: 2%;
  top: -197px;
}
.p2{
  width: 10.88%;
  aspect-ratio:209 / 414;
  right: 20.2%;
  top: -132px;
}
.p3{
  width: 9.2%;
  aspect-ratio:178 / 383;
  right: 50%;
  top: 268px;
  z-index: 2;
}
.p4{
  width: 216px;
  aspect-ratio:216 / 302;
  left: 10.42%;
  top: 40px;
  z-index: 2;
}
.p5{
  width: 336px;
  aspect-ratio:336 / 249;
  right: 13.69%;
  top: 41px;
  z-index: 2;
}
.p6{
  width: 202px;
  width: 33.83%;
  aspect-ratio:202 / 346;
  right:33.5%;
  top: 96px;
  z-index: 2;
}
.p7{
  width: 366px;
  aspect-ratio: 366 / 237;
  right: 46.5%;
  top: 97px;
  z-index: 2;
}
.p8{
  width: 353px;;
  aspect-ratio: 353 / 245;
  right: 10.42%;;
  top: 150px;
  z-index: 2;
}
.p9{
  width: 145px;;
  aspect-ratio: 145 / 87;
  left: 0;
  top: -87px;
  z-index: 2;
}
.p10{
  width: 129px;;
  aspect-ratio: 129 / 77;
  right: 0;
  top:-77px;
  z-index: 2;
}

.switch_sec{
  position: relative;
  top: 0;
}
.switch_sec:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.switch_sec.no1{
  margin-top: -118px;
}
.switch_sec.no1:before{
  width: 1920px;
  height: 400px;
  aspect-ratio:1920 / 400;
  background-image: url(/system_panel/uploads/images/switch11.png);
  top: 0;
  z-index: 2;
}
.switch_sec.no2{
  top: -240px;
}
.switch_sec.no2:before{
  width: 1920px;
  height: 624px;
  aspect-ratio:1920 / 624;
  background-image: url(/system_panel/uploads/images/io.png);
  top: 0;
  z-index: 2;
}
.switch_sec.no3{
  top: -50px;
  width: 100%;
  z-index: 2;
}
.switch_sec.no3:before{
  width: 1920px;
  height: 594px;
  aspect-ratio:1920 / 594;
  background-image: url(/system_panel/uploads/images/io5.png);
  top: 0;
  z-index: 2;
}
.switch_sec.no4{
  top: -445px;
}
.switch_sec.no4:before{
  width: 1920px;
  height: 496px;
  aspect-ratio:1920 / 496;
  background-image: url(/system_panel/uploads/images/i9.png);
  top: 0;
  z-index: 2;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .p1{
    width: 37.84%;
    aspect-ratio: 285 / 294;
    left: 11.71%;
    top: 151px;
  }
  .p2{
    width: 24.88%;
    aspect-ratio: 209 / 414;
    right: 20.2%;
    top: 130px;
  }
  .p3 {
    width: 20.2%;
    aspect-ratio: 178 / 383;
    right: auto;
    top: 268px;
  }
  .p4{
    width: 131px;
    aspect-ratio: 216 / 302;
    left: 10.42%;
    top: 40px;
    z-index: 2;
  }
  .p5{
    width: 200px;
    aspect-ratio: 336 / 249;
    right: 0;
    top: 120px;
  }
  .p6{
    width: 33.83%;
    aspect-ratio: 202 / 346;
    right: 0;
    top: 10px;
    z-index: 2;
  }
  .p7{
    width: 180px;
  }
  .p8{
    width: 150px;
    aspect-ratio: 353 / 245;
    right: 0;
    top: 50px;
  }
  .p9{
    width: 80px;;
    aspect-ratio: 145 / 87;
    left: 0;
    top: -48px;
    z-index: 2;
  }
  .p10{
    width: 80px;
    aspect-ratio: 129 / 77;
    right: 0;
    top: -47px;
    z-index: 2;
  }


  .switch_sec.no3{
    top: -50px;
  }
  .switch_sec.no3:before{
    width: 1200px;
    height: auto;
  }

  .switch_sec.no4{
    top: -230px;
  }
  .switch_sec.no4:before{
    width: 1000px;
    height: auto;
  }

  .human_block{
    width: 250px;
    bottom: 0;
    right: 0;
  }
  .tree.side{
    display: none;
  }



}
@media (min-width:768px){
  .human_block{
    width: 597px;
    position: absolute;
    right: -150px;
    top: auto;
    z-index: -1;
    bottom: 140px;
  }

  .p1{
    width: 26.84%;
    top: 88px;
  }
  .p2{
    width: 14.88%;
    top: 89px;
  }
  .p3{
    width: 14.2%;
    aspect-ratio:178 / 383;
    z-index: 2;
    right: 85%;
  }
  .p5{
    width: 250px;
    aspect-ratio: 336 / 249;
    right: 0;
    top: 80px;
    z-index: 2;
  }
  .p7{
    width: 300px;
    aspect-ratio: 366 / 237;
    right: 38%;
    top: 230px;
    z-index: 2;
  }
  .p8{
    width: 270px;
    aspect-ratio: 353 / 245;
    right: 0;;
    top: 150px;
    z-index: 2;
  }


  .switch_sec.no3{
    top: -100px;
    width: 100%;
    z-index: 2;
  }
}
@media (min-width:1024px){
  .human_block{
    width: 597px;
    position: absolute;
    right: -150px;
    top: auto;
    z-index: -1;
    bottom: 50px;
  }

  .p1{
    width: 14.84%;
    top: 30px;;
  }
  .p2{
    width: 10.88%;
    top: 50px;
  }
  .p3{
    width: 9.2%;
    aspect-ratio:178 / 383;
    z-index: 2;
    right: 50%;
  }
  .p5{
    width: 336px;
    aspect-ratio:336 / 249;
    right: 13.69%;
    top: 41px;
    z-index: 2;
  }
  .p7{
    width: 310px;
    aspect-ratio: 366 / 237;
    right: 29%;
    top: 97px;
    z-index: 2;
  }
  .p8{
    width: 300px;;
    aspect-ratio: 353 / 245;
    right: 0;;
    top: 150px;
    z-index: 2;
  }

  .switch_sec.no3{
    top: -50px;
    width: 100%;
    z-index: 2;
  }
}
@media (min-width:1200px){
  .human_block{
    width: 597px;
    position: absolute;
    right: -200px;
    top: auto;
    z-index: -1;
    bottom: 107px;
  }

  .switch_sec.no3{
    top: 600px;
    width: 100%;
    z-index: -1;
  }

  .p1{
    width: 14.84%;
    top: -84px;
  }
  .p2{
    width: 10.88%;
    top: 0;
  }
  .p3{
    width: 9.2%;
    aspect-ratio:178 / 383;
    z-index: 2;
  }
  .p7{
    width: 366px;
    aspect-ratio: 366 / 237;
    right: 46.5%;
    top: 97px;
    z-index: 2;
  }
  .p8{
    width: 353px;;
    aspect-ratio: 353 / 245;
    right: 10.42%;;
    top: 150px;
    z-index: 2;
  }

}
@media (min-width:1536px){
  .human_block{
    width: 597px;
    right: calc(50% - 960px);
    bottom: 211px;
  }

  .p1{
    width: 14.84%;
    top: -100px;
  }
  .p2{
    width: 10.88%;
    top: 0;
  }
  .p3{
    width: 9.2%;
    aspect-ratio:178 / 383;
    z-index: 2;
  }
  .p6{
    width: 202px;
    width: 33.83%;
    aspect-ratio:202 / 346;
    right:33.5%;
    top: 176px;
    z-index: 2;
  }

  .p7{
    width: 366px;
    aspect-ratio: 366 / 237;
    right: 46.5%;
    top: 97px;
    z-index: 2;
  }
  .p8{
    width: 353px;;
    aspect-ratio: 353 / 245;
    right: 10.42%;;
    top: 150px;
    z-index: 2;
  }

}
@media (min-width:1720px){
  .human_block{
    width: 597px;
    right: calc(50% - 960px);
    bottom: 211px;
  }

  .p1{
    width: 18.75%;
    top: -191px;
  }
  .p2{
    width: 13.75%;
    top: -132px;
    right: 168px;
  }
  .p3{
    width: 9.2%;
    aspect-ratio:178 / 383;
    z-index: 2;
  }
  .p6{
    width: 202px;
    width: 33.83%;
    aspect-ratio:202 / 346;
    right:33.5%;
    top: 96px;
    z-index: 2;
  }

}


/*main*/
/*sec1*/
.home_sec1_top{
  position: relative;
  z-index: 3;

  height: auto;
  margin-top: -154px;
  padding-bottom: 395px;
}
.home_sec1_top:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 564;
  background-image: url(/system_panel/uploads/images/home_sec1_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
}
.home_sec1_top:after{
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  background: #f7f1d9;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.h_sec1_pos1{
  width: 31.56%;
  aspect-ratio:606 / 431;
  right: 0;
  top: 0;
}

.home_sec1_wrap{
  position: relative;
  z-index: 1;
  padding-top: 260px;
}
.home_sec1_img{
  text-align: center;
}
.home_sec1_desc{
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.92em;
  margin-top: 40px;
}
.content_block:nth-child(n+2){
  margin-top: 20px;
}

/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: -170px;
}
.home_sec2_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_sec2_box1.wh{
  color: #FFF;
}

.tt_img{

}
.sub_tt{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.home_sec2_box1 .sub_tt{
  margin-top: 20px;
}
.content_desc{

}
.home_sec2_box1 .content_desc{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8em;
  margin-top: 20px;
}
.home_sec2_box2{
  width: 100%;
  order: 1;
}
.home_sec2_box2_img{
  aspect-ratio: 826 / 647;
}
.home_sec2_box2_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/bg_1.png);
}
.onmask{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.onmask img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}


/*sec3*/
.home_sec2_wrap.riverse{

}
.home_sec2_wrap.no2:before{
  content: "";
  display: block;
  width: 100vw;
  height: 120%;
  background-image: url(/system_panel/uploads/images/io2.jpg);
  background-repeat: repeat;
  position: absolute;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  top: 80%;
  transform: translateY(-50%);
  z-index: -1;
}
.home_sec2_wrap.no2 .home_sec2_box1{

}
.home_sec2_wrap.no2 .home_sec2_box2{

}
.home_sec2_wrap.no2 .home_sec2_box2_img{
  aspect-ratio: 743 / 736;
}
.home_sec2_wrap.no2 .home_sec2_box2_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/no2.png);
}
.home_sec2_wrap.no3 .home_sec2_box2_img{
  aspect-ratio: 835 / 642;
}
.home_sec2_wrap.no3 .home_sec2_box2_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/no3.png);
}

/*sec4*/
.home_sec2_wrap.no3{
  margin-top: 56px;
}
.home_sec2_wrap.no3:before{
  content: "";
  display: block;
  width: 100vw;
  height: 120%;
  background-image: url(/system_panel/uploads/images/oi7.jpg);
  background-repeat: repeat;
  position: absolute;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  top: 80%;
  transform: translateY(-50%);
  z-index: -1;
}

/*sec5*/
.home_op_items{
  display: flex;
  flex-wrap: wrap;
    gap: 130px 0;
}
.home_op_item{
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.home_op_item:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_op_item:nth-child(1):before{
  width: 467px;
  width: 96.09%;
  aspect-ratio:467 / 470;
  background-image: url(/system_panel/uploads/images/i1.png);
}
.home_op_item:nth-child(2):before{
  width: 95.88%;
  aspect-ratio:466 / 474;
  background-image: url(/system_panel/uploads/images/i2.png);
}
.home_op_item:nth-child(3):before{
  width: 518px;
  width: 106.58%;
  aspect-ratio:518 / 474;
  background-image: url(/system_panel/uploads/images/i3.png);
}
.home_op_item_icon{
  width: 60.9%;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-inline:auto;
}
.home_op_item_tt{
  text-align: center;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.home_op_item_tt_img{
  position: relative;
  z-index: 1;
}
.home_op_item_tt_h2{
  font-size: 17px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.link_2{
  display: block;
  width: 100%;
  max-width: 280px;
  background: #f4993a;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  margin: 12px auto 0;
  position: relative;
  padding: 17px 0;
}
.link_2:after{
  content: "\f138";
  font-family: 'FontAwesome';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.link_2:hover{
  color: #FFF;
  background: #8fc31f;
  /*background: #0e6375;*/
}

/*sec6*/
.home_info_wrap{
  position: relative;
  z-index: 1;
  margin-top: 100px;
}
.home_info_items{
  display: flex;
  flex-wrap: wrap;

}
.home_info_item{
  width: 100%;
}
.home_info_item + .home_info_item{
  margin-top: 50px;;
}
.home_info_item .news_list{
  margin-top: 30px;
  position: relative;
}
.home_info_item.news .webgene-blog{
  margin-inline:-5px;
}
.home_info_item .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.home_info_item .webgene-item{
  width: 50%;

}
.home_info_item.news .webgene-item{
  padding-inline:5px;
}
.home_info_item.news .webgene-item .img:before{
  padding-top: 80%;
}
.home_info_item .webgene-item .img img{
  border-radius: 20px;
}
.home_info_item.news .webgene-item .title{
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.777em;
}
.home_info_item.insta .webgene-blog{
  margin-inline:-5px;
}
.home_info_item.insta .webgene-item{
  padding-inline:5px;
}
.home_info_item.insta .webgene-item .img:before{
  padding-top:133.18%;
}
.home_info_item_tt{
  text-align: center;
}
.home_info_item .read_more{

}
.home_info_item.news .webgene-item .box2{
  margin-top: 13px;
}

/*sec6*/
.home_access_wrap{
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.home_access_tt{
  text-align: center;
}
.home_access_items{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: 30px;
}
.home_access_item{
  width: 100%;
  background: #f7f1d9;
  border-radius: 50px;
}
.home_access_item + .home_access_item{
  margin-top: 30px;
}
.home_access_item.access{
  padding: 30px 16px;
}
.home_access_item.map{
  padding: 3px;
}
.home_access_item_child{

}
.home_access_item_child + .home_access_item_child{
  margin-top: 40px;
}
.home_access_item_child_tt{
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  border-bottom: 1px solid #e1694e;
  padding-bottom: 10px;
  color: #e1694e;
}
.home_access_item_child_txt{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.777em;
  letter-spacing: 0;
}
.home_access_item_child_txt .maru:before{
  content: "●";
  color: #e1694e;
}
.home_access_item .gmap{

}
.home_access_item .gmap .access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
  border-radius: 50px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .tt_img img{
    height: 80px;
  }
  .home_access_tt img{
    height: 40px;
  }
  .home_op_item_tt_img img{
    height: 28px;
  }
  .home_op_item_tt{
    margin-top: 9px;
  }

  .home_sec1_wrap{
    padding-top: 180px;
  }
  .home_sec1_top{
    margin-top: -54px;
  }
  .home_sec1_top:before{
    width: 700px;
  }
  .home_sec1_top:after{
    height: 88%;
  }
  .h_sec1_pos1{
    width: 43.56%;
    top: 3%;
  }

  .link_2{
    font-size: 15px;
    max-width: 230px;
    padding: 7px 0;
  }

  .home_sec1_desc{
    font-size: 15px;
  }
  .home_sec1_desc p{
    letter-spacing: 0;
  }

  .home_access_item.map{
    padding: 5px 3px 0;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_top{
    padding-bottom: 395px;
  }
  .h_sec1_pos1{
    width: 31.56%;
    top:6%;
  }
  .home_sec1_wrap{
    padding-top: 260px;
  }
  .home_sec1_img{

  }
  .home_sec1_desc{
    text-align: center;
    font-size: 20px;
    margin-top: 64px;
  }
  .content_block:nth-child(n+2){
    margin-top: 49px;
  }

  /*sec2*/
  .home_sec2_wrap{
    margin-top: -170px;
  }
  .home_sec2_box1{
    margin-top: 30px;
  }
  .tt_img{

  }
  .sub_tt{
    font-size: 30px;
  }
  .home_sec2_box1 .sub_tt{
    margin-top: 40px;
  }
  .content_desc{

  }
  .home_sec2_box1 .content_desc{
    font-size: 18px;
    margin-top: 30px;
  }
  .home_sec2_box1 .read_more{
    margin-top: 50px;
  }
  .home_sec2_box2{

  }
  .home_sec2_box2_img{

  }
  .home_sec2_box2_img img{

  }

  /*sec3*/
  .home_sec2_wrap.riverse{

  }
  .home_sec2_wrap.no2 .home_sec2_box1{

  }
  .home_sec2_wrap.no2 .home_sec2_box2{

  }
  .home_sec2_wrap.no2 .home_sec2_box2_img img{

  }

  /*sec5*/
  .home_op_items{
    justify-content: center;
    gap:90px 20px;
  }
  .home_op_item{
    width: calc(50% - 10px);
  }
  .home_op_item_icon{

  }
  .home_op_item_tt{

  }
  .home_op_item_tt_img{

  }
  .home_op_item_tt_h2{
    font-size: 20px;
  }
  .link_2{
    max-width: 230px;
    padding: 7px 0;
    font-size: 16px;
  }

  /*sec6*/
  .home_info_wrap{
    margin-top: 180px;
  }
  .home_info_items{

  }
  .home_info_item{

  }
  .home_info_item + .home_info_item{
    margin-top: 50px;;
  }
  .home_info_item .news_list{
    margin-top: 48px;
  }
  .home_info_item .webgene-blog{
    display: flex;
    flex-wrap: wrap;
  }
  .home_info_item .webgene-item{
    width: 50%;
  }
  .home_info_item.news .webgene-blog{
    margin-inline:-13px;
  }
  .home_info_item.news .webgene-item{
    padding-inline:13px;
  }
  .home_info_item.news .webgene-item .title{
    font-size: 18px;
  }
  .home_info_item.insta .webgene-blog{
    margin-inline:-8.5px;
  }
  .home_info_item.insta .webgene-item{
    width: 33.333%;
    padding-inline:8.5px;
  }
  .home_info_item_tt{

  }
  .home_info_item .read_more{

  }

  .home_access_wrap{
    position: relative;
    z-index: 1;
    margin-top: 142px;
  }
  .home_access_tt{

  }
  .home_access_items{
    margin-top: 47px;
  }
  .home_access_item{

  }
  .home_access_item + .home_access_item{
    margin-top: 50px;
  }
  .home_access_item.access{
    padding: 45px 48px;
  }

  .home_access_item_child{

  }
  .home_access_item_child + .home_access_item_child{
    margin-top: 51px;
  }
  .home_access_item_child_tt{
    font-size: 18px;
  }
  .home_access_item_child_txt{
    font-size: 18px;
  }
  .home_access_item .gmap{

  }
  .home_access_item .gmap .access_map iframe{
    height: 482px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .h_sec1_pos1{
    width: 31.56%;
    top: 4%;
  }

  /*sec5*/
  .home_op_items{
    justify-content: center;
    gap:120px 30px;
  }
  .home_op_item{
    width: calc(50% - 15px);
  }
  .link_2{
    max-width: 280px;
    padding: 14px 0 15px;
  }

}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_top{
    padding-bottom: 395px;
  }
  .h_sec1_pos1{
    width: 31.56%;
    top: 8%;
  }
  .home_sec1_wrap{
    padding-top: 260px;
  }
  .home_sec1_img{

  }
  .home_sec1_desc{
    font-size: 25px;
  }
  .content_block:nth-child(n+2){

  }

  /*sec2*/
  .home_sec2_wrap{
    margin-top: -170px;
  }
  .home_sec2_box1{
    width: 42.76%;
    margin-top: 0;
    order: 1;
  }
  .tt_img{

  }
  .sub_tt{
    font-size: 42px;
  }
  .home_sec2_box1 .sub_tt{
    margin-top: 60px;
  }
  .content_desc{

  }
  .home_sec2_box1 .content_desc{
    font-size: 20px;
    margin-top: 39px;
  }
  .home_sec2_box2{
    width: 55.26%;
    padding-top: 19px;
    order: 2;
  }
  .home_sec2_box2_img{

  }
  .home_sec2_box2_img img{

  }

  /*sec3*/
  .home_sec2_wrap.riverse{

  }
  .home_sec2_wrap.no2 .home_sec2_box1{
    width: 44.73%;
    order: 2;
    padding-top: 61px;
  }
  .home_sec2_wrap.no2 .home_sec2_box2{
    width: 49.01%;
    order: 1;
  }
  .home_sec2_wrap.no2 .home_sec2_box2_img img{

  }

  /*sec4*/
  .home_sec2_wrap.no3{
    margin-top: 56px;
  }
  .home_sec2_wrap.no3 .home_sec2_box1{

  }
  .home_sec2_wrap.no3 .home_sec2_box2{
    padding-top: 49px;
  }

  /*sec5*/
  .home_op_items{
    justify-content: flex-start;
    gap:0 20px;
  }
  .home_op_item{
    width: calc(33.333% - 20px);
  }
  .home_op_item_icon{

  }
  .home_op_item_tt{
    margin-top: 5px;
  }
  .home_op_item_tt_img{

  }
  .home_op_item_tt_h2{

  }
  .link_2{
    max-width: 230px;
    font-size: 16px;
    padding: 9px 0;
  }

  /*sec6*/
  .home_info_wrap{
    margin-top: 230px;
  }
  .home_info_items{
    margin-inline:-46px;
  }
  .home_info_item{
    width: 50%;
    padding-inline:46px;
  }
  .home_info_item + .home_info_item{
    margin-top: 0;
  }
  .home_info_item.news .webgene-blog{

  }
  .home_info_item.news .webgene-item{

  }
  .home_info_item.insta .webgene-blog{

  }
  .home_info_item.insta .webgene-item{

  }
  .home_info_item_tt{

  }
  .home_info_item .read_more{

  }

  .home_access_wrap{
    position: relative;
    z-index: 1;
  }
  .home_access_tt{

  }
  .home_access_items{
    gap:0 30px;
  }
  .home_access_item{
    width: calc(50% - 15px);
  }
  .home_access_item + .home_access_item{
    margin-top: 0;
  }
  .home_access_item_child{

  }
  .home_access_item_child_tt{

  }
  .home_access_item_child_txt{

  }
  .home_access_item .gmap{
    height: 100%;
  }
  .home_access_item .access_map{
    height: 100%;
  }
  .home_access_item .gmap .access_map iframe{
    height: 100%;
  }

  .home_info_wrap .news_list .webgene-item{
    width: 50%;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .h_sec1_pos1{
    width: 31.56%;
    top: 3%;
  }

  /*sec5*/
  .link_2{
    max-width: 280px;
    font-size: 18px;
    padding: 17px 0;
  }



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

  /*sec1*/
  .h_sec1_pos1{
    width: 31.56%;
    top: 1%;
  }

  /*sec5*/
  .home_op_item_tt{
    margin-top: 22px;
  }
}




/*******************************
*　あそぶ
********************************/

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

}
.pg_asobu .section.sec1{

}
.pg_asobu .section.sec2{
  position: relative;
  z-index: 1;
  padding-bottom: 200px;
}
.pg_asobu .section.sec2:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/asobu_sec2_bg.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  z-index: -1;
}
.pg_asobu .section.sec3{
  position: relative;
  z-index: 1;
  padding-bottom: 220px;
}
.pg_asobu .section.sec3:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/io9.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  z-index: -1;
}
.pg_asobu .section.sec4{
  position: relative;
  padding-bottom: 200px;
}
.pg_asobu .section.sec4:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/be.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  z-index: -1;
}
.pg_asobu .section.sec5{
  position: relative;
  z-index: 2;
}
.pg_asobu .section.sec5:before{
  content: "";
  display: block;
  width: 100vw;
  height: 3000px;
  background-image: url(/system_panel/uploads/images/io8.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.pg_asobu .section.sec6{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_asobu .section.sec5:before{
    height: 2500px;
  }
}
@media (min-width:768px){
  .pg_asobu{

  }
  .pg_asobu .section.sec1{

  }
  .pg_asobu .section.sec2{
    padding-top: 150px;
    padding-bottom: 409px;
    z-index: 1;
  }
  .pg_asobu .section.sec3{
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 430px;
  }
  .pg_asobu .section.sec4{
    padding-bottom: 200px;
  }
  .pg_asobu .section.sec5{
    padding-top: 77px;
  }
  .pg_asobu .section.sec6{

  }

}
@media (min-width:1024px){
  .pg_asobu .section.sec2{
    padding-bottom: 580px;
    z-index: -1;
  }
  .pg_asobu .section.sec3{
    padding-bottom: 500px;
  }
  .pg_asobu .section.sec4{
    padding-bottom: 300px;
  }

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

  }
  .pg_asobu .section.sec1{

  }
  .pg_asobu .section.sec2{
    padding-bottom: 0;
    padding-top: 50px;
    z-index: 1;
  }
  .pg_asobu .section.sec3{
    margin-top: 80px;
    padding-bottom: 330px;
  }
  .pg_asobu .section.sec4{
    padding-bottom: 50px;
  }
  .pg_asobu .section.sec5{

  }
  .pg_asobu .section.sec6{

  }

}
@media (min-width:1470px){
  .pg_asobu .section.sec3{
    margin-top: 131px;
    padding-bottom: 50px;
  }
  .pg_asobu .section.sec4{
    padding-top: 100px;
  }

}
@media (min-width:1720px){
  .pg_asobu .section.sec4{
    padding-top: 50px;
  }

}

/*イラスト・背景*/
.a1{
  width: 353px;;
  width: 18.38%;
  aspect-ratio:353 / 309;
  top: -3.5%;
  left: 7.5%;
  z-index: 1;
}
.a2{
  width: 700px;
  width: 36.4%;
  aspect-ratio:700 / 490;
  top: -21%;
  right: 1.1%;
  z-index: 1;
}
.a3{
  width: 208px;
  width: 100px;
  aspect-ratio: 208 / 257;
  top: auto;
  bottom: 200px;
  left: 10.5%;
  z-index: 0;
}
.a4{
  width: 100px;
  aspect-ratio: 152 / 248;
  top: auto;
  bottom: 150px;
  right: 0;
  z-index: 1;
}
.a5{
  width: 150px;
  aspect-ratio: 198 / 211;
  top: -42px;
  right: 0;
  z-index: 1;
}
.a6{
  width: 80px;
  aspect-ratio: 148 / 333;
  top: auto;
  bottom: 149px;
  right: 8%;
  z-index: 1;
  display: none;
}
.a7{
  width: 100px;
  aspect-ratio: 219 / 281;
  top: auto;
  bottom: 50px;
  left: 0;
  z-index: 1;
}
.a8{
  width: 150px;
  aspect-ratio: 303 / 343;
  top: auto;
  bottom: 0;
  right: 0;
  z-index: 3;
}
.a9{
  width: 360px;
  aspect-ratio: 360 / 178;
  top: auto;
  bottom: auto;
  left: 0;
  z-index: 3;
  top: 8.5%;
}
.a10{
  width: 163px;
  aspect-ratio: 163 / 292;
  top: auto;
  bottom: 150px;
  right: 20px;
  z-index: 3;
}
.a11{
  width: 30.21%;;
  aspect-ratio: 263 / 272;
  top: auto;
  bottom: 22%;
  left: 0;
  z-index: 3;
}
.a12{
  width: 275px;
  width: 18.09%;
  aspect-ratio: 275 / 323;
  top: auto;
  bottom: 211px;
  right: 0;
  z-index: 1;
}
.a20{
  width: 275px;
  /*  width: 12.5%;*/
  aspect-ratio: 240 / 254;
  top: auto;
  bottom: 404px;
  right: -30px;
  z-index: 1;
}

.tree.t_1{
  width: 94px;
  aspect-ratio: 94 / 230;
  top: 98px;
  left: calc(50% - 800px);
  z-index: 3;
}
.tree.t_2{
  width: 94px;
  aspect-ratio: 94 / 232;
  top: 227px;
  right: calc(50% - 850px);
  z-index: 3;
}
.tree.t_3{
  width: 91px;
  aspect-ratio: 91 / 194;
  top: 42.5%;
  right: 48%;
  z-index: 3;
}
.tree.t_4{
  width: 353px;
  aspect-ratio: 355 / 196;
  top: 36%;
  right: calc(50% - 960px);
  z-index: 3;
}
.tree.t_5{
  width: 425px;
  aspect-ratio: 425 / 382;
  top: 42.5%;
  left: calc(50% - 960px);
  z-index: 2;
}
.tree.t_6{
  width: 353px;
  aspect-ratio: 308 / 352;
  top: 6%;
  right: calc(50% - 1007px);
  z-index: 2;
}

.tori_1{
  width: 26.76%;;
  aspect-ratio: 182 / 140;
  top: -12.85%;
  left: 0;
  z-index: 3;
}
.person1{
  width: 17.79%;;
  aspect-ratio: 124 / 221;
  top: -10%;
  left: 0;
  z-index: 3;
}
.obj1{
  width: 18.96%;;
  aspect-ratio: 124 / 172;
  top: 3%;
  left: 0;
  z-index: 3;
}
.obj2_2{
  width: 31.49%;;
  aspect-ratio:206 / 216;
  top: -21%;
  right: -14%;
  z-index: 3;
}

.switch_sec.a01{

}
.switch_sec.a01 .bg{
  width: 1920px;
  aspect-ratio: 1920 / 665;
  background-image: url(/system_panel/uploads/images/a-bg1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.switch_sec.a02{
  top: 0;
}
.switch_sec.a02 .bg{
  width: 700px;
  aspect-ratio: 1920 / 585;
  background-image: url(/system_panel/uploads/images/gh.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.switch_sec.a03{
  top: 0;
}
.switch_sec.a03 .bg{
  width: 1920px;
  height: 475px;
  aspect-ratio: 1920 / 475;
  background-image: url(/system_panel/uploads/images/bbg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.switch_sec.a04{
  top: 149px;
}
.switch_sec.a04 .bg{
  width: 1920px;
  height: 416px;
  aspect-ratio: 1920 / 416;
  background-image: url(/system_panel/uploads/images/a04.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}


@media (max-width:767px){
  /*イラスト・背景*/
  .a1{
    width: 120px;;
    aspect-ratio:353 / 309;
    top: -3.5%;
    left: 0;
    z-index: 1;
  }
  .a2{
    width: 200px;
    aspect-ratio: 700 / 490;
    top: -19px;
    right: -1.1%;
    z-index: 1;
  }
  .a9{
    width: 240px;
    aspect-ratio: 360 / 178;
    top: auto;
    bottom: auto;
    left: 0;
    z-index: 3;
    top: 24.5%;
  }
  .a10{
    width: 100px;
    aspect-ratio: 163 / 292;
    top: auto;
    bottom: 0;
    right: auto;
    z-index: 3;
    left: 20px;
  }
  .a12 {
    width: 150px;
    /* width: 18.09%; */
    aspect-ratio: 275 / 323;
    top: auto;
    bottom: 167px;
    right: auto;
    z-index: 1;
    left: 20px;
  }

  .tree.t_3{
    width: 50px;
    aspect-ratio: 91 / 194;
    top: 53.5%;
    right: 5%;
    z-index: 3;
  }

  .switch_sec.a01{

    top: 151px;
  }
  .switch_sec.a01 .bg{
    width: 1200px;
    bottom: 49px;
  }
  .switch_sec.a02{
    top: 1px;
  }
  .switch_sec.a03 .bg{
    width: 800px;
    height: auto;
  }
}
@media (min-width:768px){
  /*イラスト・背景*/
  .a1{
    width: 353px;;
    width: 18.38%;
    aspect-ratio:353 / 309;
    top: -3.5%;
    left: 0;
    z-index: 1;
  }
  .a2{
    width: 700px;
    width: 34.4%;
    aspect-ratio: 700 / 490;
    top: -7%;
    right: -1.1%;
    z-index: 1;
  }
  .a3{
    width: 200px;
    aspect-ratio: 208 / 257;
    top: auto;
    bottom: 150px;
    left: 50px;
    z-index: 0;
  }
  .a4{
    width: 152px;
    aspect-ratio: 152 / 248;
    top: auto;
    bottom: -8px;
    right: 150px;
    z-index: 2;
  }
  .a5{
    width: 198px;
    aspect-ratio: 198 / 211;
    top: -42px;
    right:0;
    z-index: 1;
  }
  .a6{
    width: 148px;
    aspect-ratio: 148 / 333;
    top: auto;
    bottom: 290px;
    right: 8%;
    z-index: 1;
  }
  .a7{
    width: 219px;
    aspect-ratio: 219 / 281;
    top: auto;
    bottom: 50px;
    left: 0;
    z-index: 1;
  }
  .a8{
    width: 303px;
    aspect-ratio: 303 / 343;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 3;
  }
  .a11{
    width: 18.21%;
    aspect-ratio: 263 / 272;
    top: auto;
    bottom: 35%;
    left:0;
    z-index: 3;
  }
  .a12{
    width: 275px;
    width: 25.09%;
    aspect-ratio: 275 / 323;
    top: auto;
    bottom: 211px;
    right: 0;
    z-index: 1;
  }

  .obj1{
    width: 18.96%;;
    aspect-ratio: 124 / 172;
    top: 3%;
    left: 0;
    z-index: 3;
  }

  .person1{
    width: 17.79%;;
    aspect-ratio: 124 / 221;
    top: -10%;
    left:0;
    z-index: 3;
  }

  .switch_sec.a01 .bg{
    width: 1100px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .switch_sec.a02 .bg{
    width: 1500px;
  }
  .switch_sec.a03{
    top: 0;
  }
}
@media (min-width:1024px){
  /*イラスト・背景*/
  .a1{
    width: 353px;;
    width: 18.38%;
    aspect-ratio:353 / 309;
    top: -3.5%;
    left: 0;
    z-index: 1;
  }
  .a2{
    width: 700px;
    width: 36.4%;
    aspect-ratio:700 / 490;
    top: -21%;
    right: -1.1%;
    z-index: 1;
  }
  .a3{
    width: 150px;
    aspect-ratio: 208 / 257;
    top: auto;
    bottom: 227px;
    left: 0;
    z-index: 0;
  }
  .a4{
    width: 152px;
    aspect-ratio:152 / 248;
    top: auto;
    bottom: 50px;
    right:0;
    z-index: 2;
  }
  .a5{
    width: 198px;
    aspect-ratio: 198 / 211;
    top: -42px;
    right: -63px;
    z-index: 1;
  }
  .a6{
    width: 148px;
    aspect-ratio: 148 / 333;
    top: auto;
    bottom: 500px;
    right: 8%;
    z-index: 1;
  }
  .a7{
    width: 220px;
    aspect-ratio: 219 / 281;
    top: auto;
    bottom: 150px;
    left: 0;
    z-index: 0;
  }
  .a11{
    width: 18.21%;
    aspect-ratio: 263 / 272;
    top: auto;
    bottom: 35%;
    left:0;
    z-index: 3;
  }
  .a12{
    width: 275px;
    width: 18.09%;
    aspect-ratio: 275 / 323;
    top: auto;
    bottom: 211px;
    right: 0;
    z-index: 1;
  }

  .obj1{
    width: 18.96%;;
    aspect-ratio: 124 / 172;
    top: 3%;
    left: 0;
    z-index: 3;
  }

  .switch_sec.a01 .bg{
    width: 1100px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .switch_sec.a02 .bg{
    width: 1920px;
  }
  .switch_sec.a03{
    top: 0;
  }
  .switch_sec.a04{
    top: 0;
  }
}
@media (min-width:1200px){
  /*イラスト・背景*/
  .a1{
    width: 353px;;
    width: 18.38%;
    aspect-ratio:353 / 309;
    top: -3.5%;
    left: 7.5%;
    z-index: 1;
  }
  .a2{
    width: 700px;
    width: 36.4%;
    aspect-ratio:700 / 490;
    top: -21%;
    right: -1.1%;
    z-index: 1;
  }
  .a3{
    width: 208px;
    width: 10.83%;
    aspect-ratio:208 / 257;
    top: auto;
    bottom: 250px;
    left: 0;
    z-index: 0;
  }
  .a4{
    width: 152px;
    aspect-ratio:152 / 248;
    top: auto;
    bottom: 113px;
    right: calc(50% - 365px);
    z-index: 2;
  }
  .a6{
    width: 148px;
    aspect-ratio: 148 / 333;
    top: auto;
    bottom: 158px;
    right: 8%;
    z-index: 1;
  }
  .a7{
    width: 180px;
    aspect-ratio: 219 / 281;
    top: auto;
    bottom: 50px;
    left: 0;
    z-index: 0;
  }
  .a8{
    width: 180px;
    aspect-ratio: 303 / 343;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 1;
  }
  .a11{
    width: 40.21%;;
    aspect-ratio: 263 / 272;
    top: auto;
    bottom: 22%;
    left: -25%;
    z-index: 3;
  }

  .person1{
    width: 17.79%;;
    aspect-ratio: 124 / 221;
    top: -10%;
    left: -13%;
    z-index: 3;
  }
  .obj1{
    width: 18.96%;;
    aspect-ratio: 124 / 172;
    top: 3%;
    left: -19.64%;
    z-index: 3;
  }

  .switch_sec.a01 .bg{
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .switch_sec.a02{
    top: 133px;
  }
  .switch_sec.a03{
    top: 370px;
  }
  .switch_sec.a04{
    top: 212px;
  }
}
@media (min-width:1470px){
  /*イラスト・背景*/
  .a1{
    width: 353px;;
    width: 18.38%;
    aspect-ratio:353 / 309;
    top: -22px;
    left: 7.5%;
    z-index: 1;
  }
  .a2{
    width: 700px;
    width: 36.4%;
    aspect-ratio:700 / 490;
    top: -100px;
    right: 1.1%;
    z-index: 1;
  }
  .a3{
    width: 208px;
    width: 10.83%;
    aspect-ratio:208 / 257;
    top: auto;
    bottom: 376px;
    left: 0;
    z-index: 0;
  }
  .a6{
    width: 148px;
    aspect-ratio: 148 / 333;
    top: auto;
    bottom: 30%;
    right: 8%;
    z-index: 1;
  }
  .a7{
    width: 219px;
    aspect-ratio: 219 / 281;
    top: auto;
    bottom: 98px;
    left: -27px;

    z-index: 0;
  }
  .a8{
    width: 303px;
    aspect-ratio: 303 / 343;
    top: auto;
    bottom: 50px;
    right: 0;
    z-index: 2;
  }
  .a20{
    width: 240px;
    /*  width: 12.5%;*/
    aspect-ratio: 240 / 254;
    top: auto;
    bottom: 404px;
    right: -30px;
    z-index: 1;
  }

  .switch_sec.a01 .bg{
    width: 1920px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .switch_sec.a03{
    top: 150px;
  }
  .switch_sec.a04{
    top: 220px;
  }
}
@media (min-width:1720px){
  .a3{
    width: 208px;
    width: 10.83%;
    aspect-ratio:208 / 257;
    top: auto;
    bottom: 376px;
    left: 10.5%;
    z-index: 0;
  }
  .a8{
    width: 303px;
    aspect-ratio: 303 / 343;
    top: auto;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
  .a20{
    width: 275px;
    /*  width: 12.5%;*/
    aspect-ratio: 240 / 254;
    top: auto;
    bottom: 404px;
    right: -30px;
    z-index: 1;
  }

  .switch_sec.a01 .bg{
    width: 1920px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  .switch_sec.a03{
    top: 80px;
  }
  .switch_sec.a04{
    top: 149px;
  }
}



/* メイン部分 */
.pg_asobu .page_head{
  padding-bottom: 170px;
}

/*sec2*/
.asobu_sec2_tt{
  text-align: center;
  position: relative;
  z-index: 1;
}
.asobu_sec2_tt_illust{
  width: calc(152px * var(--page-head-illust-resize));
  position: absolute;
  z-index: 1;
  right: -30px;
  top: 85%;
}
.asobu_sec2_items{
  margin-top: 62px;
  z-index: 3;
  position: relative;
}
.asobu_sec2_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.asobu_sec2_item:nth-child(n+2){
  margin-top: 31px;
}
.asobu_sec2_box1{
  width: 100%;
  position: relative;
}
.asobu_sec2_box1_img{

}
.asobu_sec2_box1_img.mask{

}
.asobu_sec2_box1_img.mask img{

}
.asobu_sec2_box1_img.mask1{
  aspect-ratio:682 / 572;
}
.asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask1.png);
}
.asobu_sec2_box1_img.mask2{
  aspect-ratio:682 / 625;
}
.asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask2.png);
}
.asobu_sec2_box1_img.mask3{
  width: 79.41%;
  aspect-ratio:540 / 478;
}
.asobu_sec2_box1_img.mask3 img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask3.png);
}
.asobu_sec2_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  color: #fff;
}
.asobu_sec2_box2_tt{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.asobu_sec2_box2_illust{
  width: calc(185px * var(--page-head-illust-resize));
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;  
}
.asobu_sec2_box2 .content_desc{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.92em;
  text-align:justify;
  margin-top: 20px;
}
.asobu_sec2_box2 .content_desc p{
  letter-spacing: 0.075em;
}
.asobu_sec2_box2 .content_block{

}
.asobu_sec2_box1_img_outer{
  position: relative;
}

/*sec3*/
.asobu_trail_wrap{

}
.asobu_trail_tt{
  text-align: center;
}
.asobu_trail_wrap .asobu_sec2_item{

}
.asobu_trail_wrap .asobu_sec2_item .asobu_sec2_box1{

}
.asobu_trail_wrap .asobu_sec2_item .asobu_sec2_box2{

}
.asobu_trail_wrap .asobu_sec2_box1_img.mask1{
  aspect-ratio:686 / 561;
}
.asobu_trail_wrap .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/o1.png);
}
.asobu_trail_wrap .asobu_sec2_box1_img.mask2{
  width: 60.51%;
  aspect-ratio: 469 / 397;
  margin-left: auto;
}
.asobu_trail_wrap .asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/o2.png);
}
.asobu_trail_wrap .asobu_sec2_box1_img.mask3{
  width: 100%;
  aspect-ratio: 790 / 703;
  margin-left: 0;
  margin-top: 0;
}
.asobu_trail_wrap .asobu_sec2_box1_img.mask3 img{
  -webkit-mask-image: url(/system_panel/uploads/images/o3.png);
}

/*sec4*/
.asobu_craft_tt{
  text-align: center;
}
.asobu_craft_wrap .asobu_sec2_box1{

}
.asobu_craft_wrap .asobu_sec2_box2{

}
.asobu_craft_wrap .asobu_sec2_box1 .asobu_sec2_box1_img.mask2{
  width: 50.56%;
}
.asobu_craft_wrap .asobu_sec2_box1_img.mask1{
  aspect-ratio:654 / 499;
}
.asobu_craft_wrap .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/m-1.png);
}
.asobu_craft_wrap .asobu_sec2_box1_img.mask2{
  width: 60.51%;
  aspect-ratio: 334 / 401;
  margin-top: 0;
  margin-left: 92px;
}
.asobu_craft_wrap .asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/m-2.png);
}
@media (max-width:767px){
  .asobu_sec2_box1_img.mask3{
    margin-top: 20px;
  }

  .asobu_sec2_tt_illust{
    right: -20px;
    top: 350px;
  }

  .asobu_sec2_box2_illust{
    bottom: 100%;
    left: auto;
    right: 0;
  }
}
@media (min-width:768px){
  .pg_asobu .page_head{
    padding-bottom: 400px;
  }

  .asobu_sec2_box2_illust{
    width: calc(185px * var(--page-head-illust-resize));
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: auto; 
    right: 0;
  }

  /*sec2*/
  .asobu_sec2_tt{

  }
  .asobu_sec2_tt_illust{
    right: -36px;
    top: 80%;
  }
  .asobu_sec2_items{
    margin-top: 107px;
  }
  .asobu_sec2_item{

  }
  .asobu_sec2_item:nth-child(n+2){
    margin-top: 31px;
  }
  .asobu_sec2_box1{

  }
  .asobu_sec2_box1_img{

  }
  .asobu_sec2_box1_img.mask{

  }
  .asobu_sec2_box1_img.mask img{

  }
  .asobu_sec2_box2{

  }
  .asobu_sec2_box2_tt{
    font-size: 28px;
  }
  .asobu_sec2_box2 .content_desc{
    font-size: 18px;
    margin-top: 30px;
  }
  .asobu_sec2_box2 .content_block{

  }

  /*sec3*/
  .asobu_trail_wrap{

  }
  .asobu_trail_tt{
    text-align: center;
  }
  .asobu_trail_wrap .asobu_sec2_item{

  }
  .asobu_trail_wrap .asobu_sec2_item .asobu_sec2_box1{

  }
  .asobu_trail_wrap .asobu_sec2_item .asobu_sec2_box2{

  }
  .asobu_trail_wrap .asobu_sec2_box1_img.mask1{

  }
  .asobu_trail_wrap .asobu_sec2_box1_img.mask2{
    margin-right: -54px;
  }
  .asobu_trail_wrap .asobu_sec2_box1_img.mask3{

  }

  /*sec4*/
  .asobu_craft_tt{
    text-align: center;
  }
  .asobu_craft_wrap .asobu_sec2_box1{

  }
  .asobu_craft_wrap .asobu_sec2_box2{

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


}
@media (min-width:1200px){
  .pg_asobu .page_head{
    padding-bottom: 400px;
  }

  .asobu_sec2_box2_illust{
    width: calc(185px * var(--page-head-illust-resize));
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 0;
    right: auto  
  }

  /*sec2*/
  .asobu_sec2_tt{

  }
  .asobu_sec2_tt_illust{
    right: 18px;
    top: 80%;
  }
  .asobu_sec2_items{
    margin-top: 107px;
  }
  .asobu_sec2_item{

  }
  .asobu_sec2_item:nth-child(n+2){
    margin-top: 31px;
  }
  .asobu_sec2_item:nth-child(odd) .asobu_sec2_box1{
    order: 1;
  }
  .asobu_sec2_item:nth-child(odd) .asobu_sec2_box2{
    order: 2;
  }
  .asobu_sec2_item:nth-child(even) .asobu_sec2_box1{
    order: 2;
  }
  .asobu_sec2_item:nth-child(even) .asobu_sec2_box2{
    order: 1;
  }
  .asobu_sec2_box1{
    width: 44.73%;;

  }
  .asobu_sec2_item.no2 .asobu_sec2_box1{
    margin-top: 0px;
  }
  .asobu_sec2_item.no1 .asobu_sec2_box1{
    padding-top: 120px;
  }
  .asobu_sec2_box1_img{

  }
  .asobu_sec2_box1_img.mask{

  }
  .asobu_sec2_box1_img.mask img{

  }
  .asobu_sec2_box1_img.mask3{
    margin-top: 45px;
    margin-left: -54px;
  }
  .asobu_sec2_box2{
    width: 49.01%;
  }
  .asobu_sec2_box2_tt{
    font-size: 42px;
  }
  .asobu_sec2_box2 .content_desc{
    font-size: 25px;
    margin-top: 43px;
  }
  .asobu_sec2_box2 .content_block{

  }
  .asobu_sec2_box2 .read_more{
    margin-top: 47px;
  }
  .asobu_sec2_box2 .read_more a + a{
    margin-top: 43px;
  }

  /*sec3*/
  .asobu_trail_wrap{

  }
  .asobu_trail_tt{
    text-align: center;
  }
  .asobu_trail_wrap .asobu_sec2_item{

  }
  .asobu_trail_wrap .asobu_sec2_item:nth-child(n+2){
    margin-top: 80px;
  }
  .asobu_trail_wrap .asobu_sec2_item:nth-child(odd) .asobu_sec2_box1{ 
    order: 2;
    padding-top: 0;
  }
  .asobu_trail_wrap .asobu_sec2_item:nth-child(odd) .asobu_sec2_box2{
    order: 1;
    padding-top: 10px;
  }
  .asobu_trail_wrap .asobu_sec2_item:nth-child(even) .asobu_sec2_box1{
    width: 50.98%;
    order: 1;
    margin-top: -93px;
  }
  .asobu_trail_wrap .asobu_sec2_item:nth-child(even) .asobu_sec2_box2{
    width: 38.48%;
    order: 2;
  }

  .asobu_trail_wrap .asobu_sec2_item:nth-child(even) .asobu_sec2_box2 .content_desc{
    margin-top: 58px;
  }
  .asobu_trail_wrap .asobu_sec2_item .asobu_sec2_box1{

  }
  .asobu_trail_wrap .asobu_sec2_item .asobu_sec2_box2{

  }

  /*sec4*/
  .asobu_craft_tt{
    text-align: center;
  }
  .asobu_craft_wrap .asobu_sec2_items{
    margin-top: 50px;
  }
  .asobu_craft_wrap .asobu_sec2_item:nth-child(odd) .asobu_sec2_box1{
    width: 43.42%;
    order: 2;
    margin-right: 92px;
  }
  .asobu_craft_wrap .asobu_sec2_item:nth-child(odd) .asobu_sec2_box2{
    width: 38.48%;
    order: 1;
    padding-top: 64px;
  }
}
@media (min-width:1470px){
  .pg_asobu .page_head{
    padding-bottom: 400px;
  }

  .asobu_sec2_box2_tt{
    margin-right: -20px; 
  }

  /*sec2*/
  .asobu_sec2_item.no2 .asobu_sec2_box1{
    margin-top: -50px;
  }
  .asobu_sec2_box1_img.mask3{
    margin-top: 45px;
    margin-left: -254px;
  }

  .switch_sec.a01{
    top: 140px;
  }
}
@media (min-width:1720px){
  .pg_asobu .page_head{
    padding-bottom: 250px;
  }

  .asobu_sec2_item.no2 .asobu_sec2_box1{
    margin-top: -250px;
  }

  /*sec3*/
  .asobu_trail_wrap .asobu_sec2_item:nth-child(n+2){
    margin-top: 31px;
  }
}




/*******************************
*　まなぶ
********************************/

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

}
.pg_manabu .section.sec1{

}
.pg_manabu .section.sec2{
  position: relative;
  z-index: 2;

  padding-bottom: 250px;
}
.pg_manabu .section.sec2:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url(/system_panel/uploads/images/ye_b.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_manabu .section.sec3{
  position: relative;
  padding-bottom: 0;
}
.pg_manabu .section.sec3:before{
  content: "";
  display: block;
  width: 100vw;
  height: 150%;
  background-image: url(/system_panel/uploads/images/or.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_manabu .section.sec4{
  position: relative;
  z-index: 2;
}
.pg_manabu .section.sec4:before{
  content: "";
  display: block;
  width: 100vw;
  height: 2700px;
  background-image: url(/system_panel/uploads/images/io8.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.pg_manabu .section.sec5{

}
.pg_manabu .section.sec6{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_manabu .section.sec3{
    padding-bottom: 210px;
    padding-top: 0;
  }
}
@media (min-width:768px){
  .pg_manabu{

  }
  .pg_manabu .section.sec1{

  }
  .pg_manabu .section.sec2{
    padding-bottom: 300px;
  }
  .pg_manabu .section.sec3{

  }
  .pg_manabu .section.sec4{

  }
  .pg_manabu .section.sec5{

  }
  .pg_manabu .section.sec6{

  }

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


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

  }
  .pg_manabu .section.sec1{

  }
  .pg_manabu .section.sec2{
    padding-bottom: 0;
  }
  .pg_manabu .section.sec3{

  }
  .pg_manabu .section.sec4{

  }
  .pg_manabu .section.sec5{

  }
  .pg_manabu .section.sec6{

  }

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


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


}


/*イラスト・背景*/
.switch_sec.m01{
  top: 0;

  margin-top: 80px;
}
.switch_sec.m01 .bg{
  width:2500px;
  height: 540px;
  aspect-ratio: 1920 / 540;
  background-image: url(/system_panel/uploads/images/n1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}



.switch_sec.m03{
  top: 0;
}
.switch_sec.m03.sp{
  z-index: 2;
}
.switch_sec.m03 .bg{
  width:1920px;
  height: 400px;
  aspect-ratio: 1920 / 400;
  background-image: url(/system_panel/uploads/images/m03.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.switch_sec.m04{
  top: 0;
}
.switch_sec.m04 .bg{
  width:1920px;
  height: 387px;
  aspect-ratio: 1920 / 387;
  background-image: url(/system_panel/uploads/images/jh.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.ma1{
  width: 354px;
  aspect-ratio:354 /516;
  left: calc(50% - 818px);
  top: 253px;
}
.ma2{
  width: 549px;
  aspect-ratio:549 / 570;
  right: calc(50% - 970px);
  top: 61px;
}
.ma1 .bg{

}
.ma2 .bg{
  position: relative;
  z-index: 1;
}
.ma_pos1{
  width: 143px;
  aspect-ratio:143 / 256;
  left: auto;
  top: auto;
  right: -45px;
  bottom: 113px;
  z-index: 1;
}
.ma_pos2{
  width: 206px;
  aspect-ratio:206 / 337;
  bottom: 137px;
  left: 90px;
  z-index: 0;
}
.ma_pos3{
  width: 318px;
  aspect-ratio:318 / 243;
  left: auto;
  top: auto;
  bottom: 29%;
  z-index: 1;
  left: calc(50% - 780px);
}
.ma_pos4{
  width: 209px;
  aspect-ratio:209 / 183;
  bottom: 48%;
  left: auto;
  z-index: 0;
  right: calc(50% - 745px);
}
.ma_pos5{
  width: 209px;
  width: 20.06%;
  aspect-ratio:305 / 443;
  bottom: 68%;
  right: 1%;
}

.ma_pos6{
  width: 209px;
  width: 51.69%;
  aspect-ratio:336 / 249;
  bottom: -5%;
  right: 0;
}
.ma_pos7{
  width: 209px;
  width: 37.38%;
  aspect-ratio:243 / 252;
  top: -28%;
  right: -14%;
}
.ma_pos8{
  width: 209px;
  width: 33.84%;
  aspect-ratio:220 / 337;
  top: -39%;
  right: 3%;
  z-index: -1;
}
.ma_pos9{
  width: 246px;
  width: 12.81%;
  aspect-ratio:246 / 326;
  bottom: 118px;
  left: 10.42%;
  z-index: -1;
}
.manabu_mirai_tt{
  position: relative;
}
.manabu_mirai_tt .tori{
  width: 129px;
  width: 17.67%;
  aspect-ratio:129 / 77;
  top: -31%;
  right: 1%;
  z-index: -1;
}

.m_t1{
  width: 470px;
  aspect-ratio:470 / 410;
  top: 0;
  top: 18.8%;
  left: calc(50% - 970px);
}
.m_t2{
  width: 295px;
  aspect-ratio:295 / 352;
  top: 39.5%;
  right: calc(50% - 963px);
  z-index: -1;
}
.m_t3{
  width: 184px;
  aspect-ratio:184 / 205;
  top: 49.5%;
  right: calc(50% - 111px);
  z-index: -1;
}
.m_t4{
  width: 449px;
  aspect-ratio:449 / 133;
  top: 65%;
  right: calc(50% - 257px);
  z-index: -1;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .ma1{
    width: 50px;
    aspect-ratio: 354 / 516;
    left: 50px;
    top: -50px;
  }
  .ma2 {
    width: 100px;
    aspect-ratio: 549 / 570;
    right: 0;
    top: 0;
  }
  .ma_pos1{
    width: 80px;
    aspect-ratio: 143 / 256;
    left: auto;
    top: 0;
    right: 0;
    bottom: auto;
    z-index: 1;
  }
  .ma_pos2{
    width: 80px;
    aspect-ratio: 206 / 337;
    bottom: 20px;
    left: 0;
    z-index: 0;
  }
  .ma_pos5{
    width: 150px;
    /* width: 20.06%; */
    aspect-ratio: 305 / 443;
    bottom: auto;
    right: 1%;
    top: -100px;
  }
  .ma_pos6{
    width: 37.69%;
    aspect-ratio: 336 / 249;
    bottom: 3%;
  }
  .ma_pos7{
    width: 37.38%;
    aspect-ratio: 243 / 252;
    top: -16%;
    right: 0;
  }
  .ma_pos8{
    width: 33.84%;
    aspect-ratio: 220 / 337;
    top: -38%;
    left: 13%;
    right: auto;
    z-index: -1;
  }
  .ma_pos9{
    width: 130px;
    aspect-ratio: 246 / 326;
    bottom: 80px;
    left: 10.42%;
    z-index: -1;
  }

  .m_t3{
    width: 80px;
    aspect-ratio: 184 / 205;
    top: 51.5%;
    right: auto;
    z-index: -1;
  }
  .m_t4{
    width: 180px;
    aspect-ratio: 449 / 133;
    top: 73%;
    right: auto;
    z-index: -1;
  }

  .manabu_mirai_tt img{
    height: 80px;
  }
  .manabu_mirai_tt .tori{
    right: 12%;
  }
  .manabu_mirai_tt .tori img{
    height: auto;
  }

  .switch_sec.m04 .bg{
    width: 1100px;
    height: auto;
    bottom: 0;
  }
}
@media (min-width:768px){
  /*イラスト・背景*/
  .switch_sec.m01{
    top: 0;
    margin-top: 95px;
  }
  .switch_sec.m01 .bg{
    width:1920px;
    bottom: -135px;;
  }

  .ma1{
    width: 114px;
    aspect-ratio: 354 / 516;
    left: 0;
    top: 421px;

  }
  .ma2{
    width: 150px;
    aspect-ratio: 549 / 570;
    right: 0;
    top: 372px;
  }
  .ma1 .bg{

  }
  .ma2 .bg{

  }
  .ma_pos1{

  }
  .ma_pos2{
    width: 131px;
    aspect-ratio: 206 / 337;
    bottom: 20px;
    left: 0;
    z-index: 0;
  }
  .ma_pos5{
    width: 209px;
    width: 20.06%;
    aspect-ratio:305 / 443;
    bottom: 86%;
    right: 1%;
  }
  .ma_pos8{
    width: 209px;
    width: 23.84%;
    aspect-ratio: 220 / 337;
    top: -42%;
    right: -5%;
    z-index: -1;
  }
  .ma_pos9{
    width: 246px;
    width: 18.81%;
    aspect-ratio: 246 / 326;
    bottom: 97px;
    left: 0;
    z-index: -1;
  }

  .m_t3{
    width: 133px;
    aspect-ratio: 184 / 205;
    top: 47.5%;
    right: auto;
    z-index: -1;
  }
  .m_t4{
    width: 250px;
    aspect-ratio: 449 / 133;
    top: 60%;
    right: auto;
    z-index: -1;
  }
}
@media (min-width:1024px){
  .ma1{
    width: 354px;
    aspect-ratio:354 /516;
    left: calc(50% - 735px);
    top: 253px;
  }
  .ma2{
    width: 200px;
    aspect-ratio: 549 / 570;
    right: 0;
    top: 350px;
  }
  .ma_pos2{
    width: 160px;
    aspect-ratio: 206 / 337;
    bottom: 26px;
    left: 90px;
    z-index: 0;
  }
  .ma_pos5{
    width: 209px;
    width: 20.06%;
    aspect-ratio:305 / 443;
    bottom: 82%;
    right: 1%;
  }
  .ma_pos6{
    width: 209px;
    width: 45.69%;
    aspect-ratio:336 / 249;
    bottom: -5%;
    right: 0;
  }
  .ma_pos8{
    width: 209px;
    width: 33.84%;
    aspect-ratio: 220 / 337;
    top: -17%;
    right: -5%;
    z-index: -1;
  }
  .ma_pos9{
    width: 246px;
    width: 12.81%;
    aspect-ratio:246 / 326;
    bottom: 118px;
    left: 0;
    z-index: -1;
  }

  .m_t3{
    width: 184px;
    aspect-ratio:184 / 205;
    top: 49.5%;
    right: auto;
    z-index: -1;
  }
  .m_t4{
    width: 449px;
    aspect-ratio:449 / 133;
    top: 61%;
    right:auto;
    z-index: -1;
  }
}
@media (min-width:1200px){
  /*イラスト・背景*/
  .switch_sec.m01{
    /* top: -256px;*/
    margin-top: 180px;
  }
  .switch_sec.m01 .bg{
    bottom: -87px;
  }
  .switch_sec.m03{
    margin-top: 16px;
  }
  .switch_sec.m04{
    margin-top: 0;
  }

  .ma1{
    width: 354px;
    aspect-ratio:354 /516;
    left: calc(50% - 818px);
    top: 253px;
  }
  .ma2{
    width: 350px;
    aspect-ratio:549 / 570;
    right: calc(50% - 770px);
    top: 250px;
  }
  .ma_pos2{
    width: 168px;
    aspect-ratio: 206 / 337;
    bottom: 44px;
    left: 63px;
    z-index: 0;
  }
  .ma1 .bg{

  }
  .ma2 .bg{

  }
  .ma_pos1{

  }
  .ma_pos2{

  }
  .ma_pos3{
    width: 318px;
    aspect-ratio: 318 / 243;
    left: auto;
    top: auto;
    bottom: 24%;
    z-index: 1;
    left: calc(50% - 700px);
  }
  .ma_pos5{
    width: 209px;
    width: 20.06%;
    aspect-ratio:305 / 443;
    bottom: 68%;
    right: 1%;
  }
  .ma_pos6{
    width: 209px;
    width: 51.69%;
    aspect-ratio:336 / 249;
    bottom: -5%;
    right: 0;
  }
  .ma_pos8{
    width: 209px;
    width: 33.84%;
    aspect-ratio:220 / 337;
    top: -48%;
    right: 3%;
    z-index: -1;
  }


  .m_t3{
    width: 184px;
    aspect-ratio:184 / 205;
    top: 52.5%;
    right: calc(50% - 111px);
    z-index: -1;
  }
  .m_t4{
    width: 350px;
    aspect-ratio: 449 / 133;
    top: 69%;
    right: calc(50% - 257px);
    z-index: -1;
  }
}
@media (min-width:1536px){
  /*イラスト・背景*/
  .switch_sec.m01{
    /* top: -256px;*/
    margin-top: 95px;
  }

  .ma2{
    width: 549px;
    aspect-ratio:549 / 570;
    right: calc(50% - 970px);
    top: 61px;
  }
  .ma_pos2{
    width: 206px;
    aspect-ratio:206 / 337;
    bottom: 137px;
    left: 90px;
    z-index: 0;
  }
  .ma_pos3{
    width: 318px;
    aspect-ratio:318 / 243;
    left: auto;
    top: auto;
    bottom: 29%;
    z-index: 1;
    left: calc(50% - 780px);
  }

  .m_t3{
    width: 184px;
    aspect-ratio:184 / 205;
    top: 49.5%;
    right: calc(50% - 111px);
    z-index: -1;
  }
  .m_t4{
    width: 449px;
    aspect-ratio:449 / 133;
    top: 69%;
    right: calc(50% - 257px);
    z-index: -1;
  }

  .ma_pos9{
    width: 246px;
    width: 12.81%;
    aspect-ratio:246 / 326;
    bottom: 118px;
    left: 5.42%;
    z-index: -1;
  }
}
@media (min-width:1720px){
  .m_t4{
    width: 449px;
    aspect-ratio:449 / 133;
    top: 65%;
    right: calc(50% - 257px);
    z-index: -1;
  }

  .ma_pos9{
    width: 246px;
    width: 12.81%;
    aspect-ratio:246 / 326;
    bottom: 118px;
    left: 10.42%;
    z-index: -1;
  }
}

/* メイン部分 */
.page_head.manabu{
  padding-bottom: 0;
}
.manabu_hd_tt{
  font-size: 40px;
  font-weight: 900;
  text-align: center;
  color: #956134;
}
.content_desc{

}
.page_head .content_desc{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6em;
  margin-top: 40px;
}

.switch_img_box{

}
.page_head_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:20px 0;
  position: relative;
  z-index: 2;
}
.page_head_item{
  width: 100%;
}
.page_head_item_img{

}
.page_head_item_img img{

}
.page_head_item_img.mask1 {
  aspect-ratio: 457 / 403;
}
.page_head_item_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/pr_mask.png);
}
.page_head_item_img.mask2 {
  aspect-ratio: 460 / 390;
}
.page_head_item_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/bl_mask.png);
}
.page_head_item_img.mask3 {
  aspect-ratio: 459 / 455;
}
.page_head_item_img.mask3 img{
  -webkit-mask-image: url(/system_panel/uploads/images/ye_mask.png);
}

.page_head_items_outer{
  position: relative;
}

/*sec2*/
.t-l{
  width: 129px;
  width: 8.4%;
  aspect-ratio:129 / 187;
  left: calc(50% - 633px);
  top: -50px;
}
.t-r{
  width: 129px;
  width: 8.4%;
  aspect-ratio:129 / 179;
  right: calc(50% - 727px);
  top: -45px;
}
.manabu_sec2_wrap .asobu_sec2_box2{
  color: #181818;
}
.manabu_sec2_wrap .asobu_sec2_tt{
  position: relative;
}
.manabu_sec2_wrap .asobu_sec2_box2_tt{
  color: #956134;
}
.manabu_sec2_wrap .asobu_sec2_items{

}
.manabu_sec2_wrap .asobu_sec2_item{

}
.manabu_sec2_wrap .asobu_sec2_item.no1{

}
.manabu_sec2_wrap .asobu_sec2_item.no1{

}
.manabu_sec2_wrap .asobu_sec2_item.no1 .asobu_sec2_box1_img.mask1{
  aspect-ratio: 835 / 642;
}
.manabu_sec2_wrap .asobu_sec2_item.no1 .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/ll1.png);
}
.manabu_sec2_wrap .asobu_sec2_item.no1 .asobu_sec2_box1_img.mask2{
  width: 79.07%;
  aspect-ratio: 386 / 333;
  margin-left: -150px;
  margin-top: -125px;
}
.manabu_sec2_wrap .asobu_sec2_item.no1 .asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/hyio.png);
}
.manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box1_img.mask1{
  aspect-ratio: 645 / 547;
}
.manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/ll3.png);
}
.manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box1_img.mask2{
  width: 48.3%;
  aspect-ratio: 314 / 257;
  margin-top: -124px;
  margin-left: auto;
  margin-right: -28px;
}
.manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/60.png);
}
.manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box1_img.mask1{
  aspect-ratio: 691/ 388;
}
.manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/00.png);
}
.manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box1_img.mask2{
  aspect-ratio: 421 / 353;
  width: 64%;
  margin-top: 11px;
  margin-left: auto;
}
.manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/ll6.png);
}
.manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask1{
  aspect-ratio: 651 / 498;
}
.manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/ll7.png);
}
.manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask2{
  width: 82.46%;
  aspect-ratio: 541 / 467;
  margin-left: auto;
  margin-top: -45px;
  margin-right: -128px;
}
.manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/99.png);
}

/*sec3*/
.manabu_mirai_wrap{

}
.manabu_mirai_wrap .asobu_sec2_box1_img.mask2{
  aspect-ratio: 680 / 533;
}
.manabu_mirai_wrap .asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/kj1.png);
}
.manabu_mirai_wrap .asobu_sec2_box2{
  color: #181818;
  margin-top: 50px;
}


.manabu_miraikan_img{
  border-radius: 30px;
}
.manabu_miraikan_img.img_fit:before{
  padding-top: 71.199%;
}

@media (max-width:767px){
  .page_head_item{
    width: 85%;
  }
  .manabu_hd_tt{
    font-size: 30px;
  }

  .t-l{
    width: 16.4%;
    aspect-ratio: 129 / 187;
    left: 0;
    top: 50px;
  }
  .t-r{
    width: 17.4%;
    aspect-ratio: 129 / 179;
    right: 0;
    top: 50px;
  }


  .manabu_sec2_wrap .asobu_sec2_item:nth-child(n+2){
    margin-top: 80px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no1 .asobu_sec2_box1_img.mask2{
    margin-left: 0;
    margin-top: -80px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask2{
    width: 82.46%;
    aspect-ratio: 541 / 467;
    margin-left: auto;
    margin-top: -45px;
    margin-right: 0;
  }

  .manabu_mirai_wrap .asobu_sec2_items{
    margin-top: 0;
  }
}
@media (min-width:768px){
  .page_head.manabu{
    padding-bottom: 0;
  }
  .manabu_hd_tt{
    font-size: 80px;
    margin-top: 27px;
  }
  .content_desc{
    font-size: 20px;

  }

  .t-l {
    width: 129px;
    width: 8.4%;
    aspect-ratio: 129 / 187;
    left: 0;
    top: 100px;
  }
  .t-r {
    width: 129px;
    width: 8.4%;
    aspect-ratio: 129 / 179;
    right: 0;
    top: 100px;
  }

  .page_head .content_desc{
    font-size: 18px;
    line-height: 1.92em;
    margin-top: 60px;
  }
  .content_desc.center{
    text-align: center;
  }

  .switch_img_box{

  }
  .page_head_items{
    gap:80px 50px;
  }
  /*sec3*/
  .manabu_mirai_wrap .asobu_sec2_items{
    margin-top: 0; 
    margin-bottom:350px;
  }
  .page_head_item{
    width: calc(50% - 50px);
  }
  .page_head_item_img{

  }
  .page_head_item_img img{

  }

  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask2{
    width: 82.46%;
    aspect-ratio: 541 / 467;
    margin-left: auto;
    margin-top: -45px;
    margin-right: -30px;
  }
  .manabu_mirai_wrap .asobu_sec2_box2{
    margin-top: 80px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no1 .asobu_sec2_box1_img.mask2{
    width: 79.07%;
    aspect-ratio: 386 / 333;
    margin-left: -50px;
    margin-top: -125px;
  }

}
@media (min-width:1024px){
  .page_head.manabu{
    padding-bottom:0;
  }
  .t-l {
    width: 129px;
    width: 8.4%;
    aspect-ratio: 129 / 187;
    left: 0;
    top: 100px;
  }
  .t-r {
    width: 129px;
    width: 8.4%;
    aspect-ratio: 129 / 179;
    right: 0;
    top: 100px;
  }

}
@media (min-width:1200px){
  .page_head.manabu{
    padding-bottom: 0;
  }
  .manabu_hd_tt{
    font-size: 100px;
  }
  .content_desc{

  }
  .page_head .content_desc{
    font-size: 25px;
    margin-top: 86px;
  }

  .t-l {
    width: 129px;
    width: 8.4%;
    aspect-ratio: 129 / 187;
    left: 0;
    top: -50px;
  }
  .t-r {
    width: 129px;
    width: 8.4%;
    aspect-ratio: 129 / 179;
    right: 0;
    top: -45px;
  }

  .switch_img_box{

  }
  .page_head_items{

  }
  .page_head_item{
    width: calc(33.3333% - 33.333px);
  }
  .page_head_item_img{

  }
  .page_head_item_img img{

  }
  .page_head_item_img.mask1 {

  }
  .page_head_item_img.mask1 img{

  }
  .page_head_item_img.mask2 {

  }
  .page_head_item_img.mask2 img{

  }
  .page_head_item_img.mask3 {

  }
  .page_head_item_img.mask3 img{

  }

  /*sec2*/
  .manabu_sec2_wrap .asobu_sec2_items{
    margin-top: 0;
  }
  .manabu_sec2_wrap .asobu_sec2_item:nth-child(n+2) {
    margin-top: 120px;
  }
  .manabu_sec2_wrap .asobu_sec2_item:nth-child(odd) .asobu_sec2_box1{
    order: 2;
  }
  .manabu_sec2_wrap .asobu_sec2_item:nth-child(odd) .asobu_sec2_box2{
    order: 1;
  }
  .manabu_sec2_wrap .asobu_sec2_item:nth-child(even) .asobu_sec2_box1{
    order: 1;
  }
  .manabu_sec2_wrap .asobu_sec2_item:nth-child(even) .asobu_sec2_box2{
    order: 2;
  }
  .manabu_sec2_wrap .asobu_sec2_item .asobu_sec2_box1{
    width: 44.73%;
    padding-top: 0;
  }
  .manabu_sec2_wrap .asobu_sec2_item .asobu_sec2_box2{
    padding-top: 85px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box1{
    margin-top: -20px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box2{
    padding-top: 70px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box1{
    margin-top: -10px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box2{
    padding-top: 10px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1{
    margin-top: -100px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box2{
    padding-top: 0;
    margin-top: -20px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no1 .asobu_sec2_box1_img.mask2{
    width: 79.07%;
    aspect-ratio: 386 / 333;
    margin-left: -150px;
    margin-top: -125px;
  }

  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask2{
    width: 82.46%;
    aspect-ratio: 541 / 467;
    margin-left: auto;
    margin-top: -45px;
    margin-right: -30px;
  }

  /*sec3*/
  .manabu_mirai_wrap .asobu_sec2_items{
    margin-top: 0; 
    margin-bottom: 350px;
  }
  .manabu_mirai_wrap .content_desc{
    margin-top: 67px;
  }
  .manabu_mirai_wrap .asobu_sec2_item:nth-child(odd) .asobu_sec2_box2{
    padding-top: 25px;
  }
  .manabu_mirai_wrap .asobu_sec2_box1 .read_more a:nth-child(n+2){
    margin-top: 40px;
  }
  .manabu_mirai_wrap .asobu_sec2_box2{
    margin-top: 0;
  }
}
@media (min-width:1470px){
  .t-l {
    width: 129px;
    width: 8.4%;
    aspect-ratio: 129 / 187;
    left: calc(50% - 617px);
    top: -50px;
  }
  .t-r {
    width: 129px;
    width: 8.4%;
    aspect-ratio: 129 / 179;
    right: calc(50% - 727px);
    top: -45px;
  }

  .manabu_sec2_wrap .asobu_sec2_item:nth-child(n+2) {
    margin-top: 31px;
  }

  .manabu_sec2_wrap .asobu_sec2_item .asobu_sec2_box2{
    padding-top: 85px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box1{
    margin-top: -20px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box2{
    padding-top: 70px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box1{
    margin-top: -60px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box2{
    padding-top: 10px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1{
    margin-top: -50px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box2{
    padding-top: 0;
    margin-top: -20px;
  }

  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask2{
    width: 82.46%;
    aspect-ratio: 541 / 467;
    margin-left: auto;
    margin-top: -45px;
    margin-right: -60px;
  }


  /*sec3*/
  .manabu_mirai_wrap .asobu_sec2_items{
    margin-top: 0; 
    margin-bottom: 258px;
  }
}
@media (min-width:1720px){
  .manabu_sec2_wrap .asobu_sec2_item .asobu_sec2_box2{
    padding-top: 85px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box1{
    margin-top: -63px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no2 .asobu_sec2_box2{
    padding-top: 70px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box1{
    margin-top: -120px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no3 .asobu_sec2_box2{
    padding-top: 10px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1{
    margin-top: -50px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box2{
    padding-top: 0;
    margin-top: -20px;
  }

  .manabu_sec2_wrap .asobu_sec2_item.no4 .asobu_sec2_box1_img.mask2{
    width: 82.46%;
    aspect-ratio: 541 / 467;
    margin-left: auto;
    margin-top: -45px;
    margin-right: -128px;
  }
}



/*******************************
*　すごす
********************************/

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

}
.pg_sugosu .section.sec1{

}
.pg_sugosu .section.sec2{
  position: relative;
}
.pg_sugosu .section.sec2:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url(/system_panel/uploads/images/br.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.pg_sugosu .section.sec3{
  position: relative;
}
.pg_sugosu .section.sec3:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url(/system_panel/uploads/images/gray.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.pg_sugosu .section.sec4{
  position: relative;
  z-index: 2;
}
.pg_sugosu .section.sec4:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url(/system_panel/uploads/images/pink.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.pg_sugosu .section.sec5{
  position: relative;
  padding-bottom: 228px;
}
.pg_sugosu .section.sec5:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-image: url(/system_panel/uploads/images/orr.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.pg_sugosu .section.sec6{
  position: relative;
  padding-bottom: 0;
}
.pg_sugosu .section.sec6:before{
  content: "";
  display: block;
  width: 100vw;
  height: 2700px;
  background-image: url(/system_panel/uploads/images/io8.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_sugosu .section.sec4{
    padding-bottom: 110px;
  }
  .pg_sugosu .section.sec5{
    padding-bottom: 170px;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_sugosu{

  }
  .pg_sugosu .section.sec1{

  }
  .pg_sugosu .section.sec2{
    padding-top: 50px;
  }
  .pg_sugosu .section.sec3{
    padding-top: 111px;
    padding-bottom: 150px;
  }
  .pg_sugosu .section.sec4{
    padding-top: 105px;
    padding-bottom: 150px;
  }
  .pg_sugosu .section.sec5{
    padding-bottom: 165px;
  }
  .pg_sugosu .section.sec6{
    padding-top: 122px;
  }

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


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

  }
  .pg_sugosu .section.sec1{

  }
  .pg_sugosu .section.sec2{
    padding-top: 137px;
  }
  .pg_sugosu .section.sec3{
    padding-top: 111px;
    padding-bottom: 50px;
  }
  .pg_sugosu .section.sec4{
    padding-bottom: 50px;
  }
  .pg_sugosu .section.sec5{
    padding-bottom: 0;
  }
  .pg_sugosu .section.sec6{
    padding-top: 122px;
  }

}
@media (min-width:1470px){
  .pg_sugosu .section.sec4{
    padding-bottom: 50px;
  }

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


}


/*イラスト・背景*/
.switch_sec.su_01{
  margin-top: 28px;
  top: 0;
}
.switch_sec.su_01 .bg{
  width: 1920px;
  height: 599px;
  aspect-ratio: 1920 / 599;
  background-image: url(/system_panel/uploads/images/su_bg_sec1-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.switch_sec.su_02{
  top: 0;
}
.switch_sec.su_02 .bg{
  width: 1920px;
  height: 393px;
  aspect-ratio: 1920 / 393;
  background-image: url(/system_panel/uploads/images/q.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.switch_sec.su_03{
  top: 0;
}
.switch_sec.su_03 .bg{
  width: 1920px;
  height: 373px;
  aspect-ratio: 1920 / 373;
  background-image: url(/system_panel/uploads/images/o.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.switch_sec.su_04{
  top: 0;
}
.switch_sec.su_04 .bg{
  width: 1920px;
  height: 416px;
  aspect-ratio: 1920 / 416;
  background-image: url(/system_panel/uploads/images/mizu.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.switch_sec.su_05{
  top: 0;
}
.switch_sec.su_05 .bg{
  width: 1920px;
  height: 416px;
  aspect-ratio: 1920 / 330;
  background-image: url(/system_panel/uploads/images/th2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.su1{
  width: 570px;
  aspect-ratio:570 / 384;
  top: 223px;
  left: calc(50% - 968px);
}
.su2{
  width: 501px;
  aspect-ratio:501 / 276;
  top: 168px;
  right: calc(50% - 952px);
}
.su_pos1{
  width: 31.93%;
  left: 3%;
  bottom: -11%;
}
.su_pos2{
  width: 387px;
  aspect-ratio:387 / 317;
  top: 40.5%;
  left: calc(50% - 849px);
}
.su_pos3{
  width: 322px;
  aspect-ratio:322 / 481;
  top: 38.5%;
  right: calc(50% - 848px);
}
.su_pos5{
  width: 388px;
  width: 20.2%;
  aspect-ratio:388 / 325;
  top: -41.5%;
  left:10.93%;
}
.su_pos6{
  width: 222px;
  width: 11.45%;
  aspect-ratio: 222 / 280;
  top: -8.5%;
  left: calc(50% - 849px);
  z-index: 2;
}
.su_pos7{
  width: 309px;
  aspect-ratio: 309 / 224;
  top: 6.5%;
  right: calc(50% - 961px);
}
.su_pos8{
  width: 422px;
  aspect-ratio: 422 / 382;
  top: 6.5%;
  left: calc(50% - 961px);
}
.su_pos9{
  width: 333px;
  width: 17.34%;
  aspect-ratio: 333 / 354;
  bottom: -85px;
  right: calc(50% - 585px);
  z-index: 3;
}
.su_pos10{
  width: 367px;
  width: 19.11%;
  aspect-ratio: 367 / 280;
  bottom: 150px;
  left: calc(50% - 763px);
  z-index: 3;
}
.su_pos11{
  width: 246px;
  width: 12.81%;
  aspect-ratio: 246 / 289;
  bottom: 193px;
  right: calc(50% - 745px);
  z-index: 2;

}


.moku1{
  width: 184px;
  aspect-ratio: 184 / 205;
  bottom: 32%;
  left: 41%;
  z-index: 3;
}
.moku2{
  width: 97px;
  aspect-ratio: 97 / 240;
  bottom: 28%;
  right: calc(50% - 760px);
  right: 0;
  z-index: 2;
}

.t-l.pizza{
  width: 11.77%;
  aspect-ratio:179 / 137;
  left: calc(50% - 645px);
  left: 0;
  top: -21px;
}
.t-r.drink{
  width: 8.9%;
  aspect-ratio:136 / 161;
  right: calc(50% - 607px);
  right: 0;
}

.t-l.tori1{
  width: 11.97%;
  aspect-ratio:182 / 140;

  left: calc(50% - 661px);
  left: 0;
  top: -21px;
}
.t-r.furo{
  width: 10.06%;
  aspect-ratio:153 / 145;
  right: calc(50% - 629px);
  right: 0;
}

.t-l.mori{
  width: 14.6%;
  aspect-ratio:222 / 280;

  left: calc(50% - 661px);
  left: 0;
  top: auto;
  bottom: -17px;
}
.t-r.mesi{
  width: 19.93%;
  aspect-ratio: 303 / 211;
  right: calc(50% - 761px);
  right: 0;
  top: auto;
  bottom: -87px;
}
@media (max-width:767px){
  .switch_sec.su_01{
    margin-top: 100px;
    padding-bottom: 40px;
  }
  .switch_sec.su_01 .bg{
    width: 1200px;
    height: auto;
  }
  .switch_sec.su_02 .bg{
    width: 1200px;
    height: auto;
  }
  .switch_sec.su_03 .bg{
    width: 1200px;
    height: auto;
    bottom: 0;
  }
  .switch_sec.su_05 .bg{
    width: 1200px;
    height: auto;
    bottom: 0;
  }

  .su1{
    width: 200px;
    aspect-ratio: 570 / 384;
    top: 0;
    left: calc(50% - 268px);
  }
  .su2{
    width: 185px;
    aspect-ratio: 501 / 276;
    top: -50px;
    right: calc(50% - 252px);
  }
  .su_pos5{
    width: 150px;
    /* width: 20.2%; */
    aspect-ratio: 388 / 325;
    top: -80px;
    left: 20px;
  }

  .t-l.pizza{
    width: 16.77%;
    aspect-ratio: 179 / 137;
    left: calc(50% - 645px);
    left: 0;
    top: 50px;
  }
  .t-r.drink{
    width: 13.9%;
    aspect-ratio: 136 / 161;
    right: calc(50% - 607px);
    right: 0;
  }
  .t-l.tori1{
    width: 21.97%;
    aspect-ratio: 182 / 140;
    left: calc(50% - 661px);
    left: 0;
    top: 50px;
  }
  .t-r.furo{
    width: 18.06%;
    aspect-ratio: 153 / 145;
    right: calc(50% - 629px);
    right: 0;
  }
  .t-l.mori{
    width: 21.6%;
    aspect-ratio: 222 / 280;
    left: calc(50% - 661px);
    left: 0;
    top: auto;
    bottom: -80px;
  }
  .t-r.mesi{
    width: 24.93%;
    aspect-ratio: 303 / 211;
    right: calc(50% - 761px);
    right: 0;
    top: auto;
    bottom: -50px;
  }
  .moku1, 
  .moku2{
    display: none;
  }

}
@media (min-width:768px){
  .switch_sec.su_01{
    margin-top: 320px;
    padding-bottom: 100px;
  }
  .switch_sec.su_03 .bg{
    width: 1920px;
    height: 373px;
    bottom: 0;
  }

  .su1{
    width: 350px;
    aspect-ratio: 570 / 384;
    top: -84px;
    left: calc(50% - 468px);
  }
  .su2{
    width: 250px;
    aspect-ratio: 501 / 276;
    top: -100px;
    right: calc(50% - 452px);
  }
  .su_pos2{
    width: 250px;
    aspect-ratio:387 / 317;
    top: 50.5%;
    left: calc(50% - 449px);
  }
  .su_pos3{
    width: 200px;
    aspect-ratio: 322 / 481;
    top: 50.5%;
    right: calc(50% - 448px);
  }
  .su_pos5{
    width: 350px;
    aspect-ratio: 388 / 325;
    top: -200px;
    left: 0;
  }

  .moku1{
    width: 100px;
    aspect-ratio: 184 / 205;
    bottom: 27%;
    left: 41%;
    z-index: 3;
  }

  .t-l.pizza{
    width: 11.77%;
    aspect-ratio:179 / 137;
    left: calc(50% - 645px);
    left: 0;
    top:100px;
  }
  .t-r.drink{
    width: 8.9%;
    aspect-ratio:136 / 161;
    right: calc(50% - 607px);
    right: 0;
  }

  .t-l.tori1{
    width: 11.97%;
    aspect-ratio:182 / 140;

    left: calc(50% - 661px);
    left: 0;
    top: 100px;
  }
  .t-r.furo{
    width: 10.06%;
    aspect-ratio:153 / 145;
    right: calc(50% - 629px);
    right: 0;
  }

  .t-l.mori{
    width: 14.6%;
    aspect-ratio:222 / 280;

    left: calc(50% - 661px);
    left: 0;
    top: auto;
    bottom: -104px;
  }
  .t-r.mesi{
    width: 19.93%;
    aspect-ratio: 303 / 211;
    right: calc(50% - 761px);
    right: 0;
    top: auto;
    bottom: -87px;
  }
}
@media (min-width:1024px){
  .switch_sec.su_01{
    margin-top: 200px;
    padding-bottom: 0;
  }

  .su1{
    width: 570px;
    aspect-ratio:570 / 384;
    top: 223px;
    left: calc(50% - 823px);
  }
  .su2{
    width: 501px;
    aspect-ratio:501 / 276;
    top: 168px;
    right: calc(50% - 852px);
  }
  .su_pos2{
    width: 387px;
    aspect-ratio:387 / 317;
    top: 40.5%;
    left: calc(50% - 650px);
  }
  .su_pos3{
    width: 322px;
    aspect-ratio:322 / 481;
    top: 38.5%;
    right: calc(50% - 628px);
  }
  .su_pos5{
    width: 388px;
    width: 20.2%;
    aspect-ratio:388 / 325;
    top: -45.5%;
    left: 0;
  }

  .moku1{
    width: 184px;
    aspect-ratio: 184 / 205;
    bottom: 32%;
    left: 41%;
    z-index: 3;
  }

  .t-l.mori{
    width: 14.6%;
    aspect-ratio:222 / 280;

    left: calc(50% - 661px);
    left: 0;
    top: auto;
    bottom: -17px;
  }
  .t-r.mesi{
    width: 19.93%;
    aspect-ratio: 303 / 211;
    right: calc(50% - 761px);
    right: 0;
    top: auto;
    bottom: -87px;
  }
}
@media (min-width:1200px){
  .switch_sec.su_01{
    margin-top: 200px;
  }
  .switch_sec.su_01 .bg{
    bottom: 93px;
  }
  .switch_sec.su_03 .bg{
    width: 1920px;
    height: 373px;
    bottom: -50px;
  }

  .t-l.pizza{
    width: 11.77%;
    aspect-ratio:179 / 137;
    left: calc(50% - 645px);
    left: 0;
    left: calc(50% - 600px);
    top: -21px;
  }
  .t-l.tori1{
    width: 11.97%;
    aspect-ratio:182 / 140;

    left: calc(50% - 661px);
    left: 0;
    top: -21px;
  }

  .su1{
    width: 570px;
    aspect-ratio:570 / 384;
    top: 223px;
    left: calc(50% - 968px);
  }
  .su2{
    width: 501px;
    aspect-ratio:501 / 276;
    top: 168px;
    right: calc(50% - 952px);
  }

  .su_pos2{
    width: 250px;
    aspect-ratio:387 / 317;
    top: 50.5%;
    left: 0;
  }
  .su_pos3{
    width: 200px;
    aspect-ratio:322 / 481;
    top: 50.5%;
    right: 0;
  }
  .su_pos5{
    width: 388px;
    width: 20.2%;
    aspect-ratio:388 / 325;
    top: -55.5%;
    left: 0;
  }


}
@media (min-width:1470px){
  .switch_sec.su_01{
    margin-top: 80px;
  }

  .su_pos2{
    width: 387px;
    aspect-ratio:387 / 317;
    top: 40.5%;
    left: calc(50% - 849px);
  }
  .su_pos3{
    width: 322px;
    aspect-ratio:322 / 481;
    top: 38.5%;
    right: calc(50% - 848px);
  }
  .su_pos5{
    width: 388px;
    width: 20.2%;
    aspect-ratio:388 / 325;
    top: -47.5%;
    left: 0;
  }

}
@media (min-width:1720px){
  .switch_sec.su_01{
    margin-top: 20px;
  }
  .switch_sec.su_01 .bg{
    bottom: 78px;
  }

  .t-l.pizza{
    width: 11.77%;
    aspect-ratio:179 / 137;
    left: calc(50% - 645px);
    top: -21px;
  }
  .t-r.drink{
    width: 8.9%;
    aspect-ratio:136 / 161;
    right: calc(50% - 607px);
  }

  .t-l.tori1{
    width: 11.97%;
    aspect-ratio:182 / 140;

    left: calc(50% - 661px);
    top: -21px;
  }
  .t-r.furo{
    width: 10.06%;
    aspect-ratio:153 / 145;
    right: calc(50% - 629px);
  }

  .t-l.mori{
    width: 14.6%;
    aspect-ratio:222 / 280;

    left: calc(50% - 661px);
    top: auto;
    bottom: -17px;
  }
  .t-r.mesi{
    width: 19.93%;
    aspect-ratio: 303 / 211;
    right: calc(50% - 761px);
    top: auto;
    bottom: -87px;
  }

  .su_pos5{
    width: 388px;
    width: 20.2%;
    aspect-ratio:388 / 325;
    top: -40.5%;
    left:10.93%;
  }
}


/* メイン部分 */
/*sec1*/
.page_head_items.sugosu{

}
.page_head_items.sugosu .page_head_item{

}
.page_head_items.sugosu .page_head_item_img.mask1{
  aspect-ratio: 634 / 432;
}
.page_head_items.sugosu .page_head_item_img.mask1 img{
  mask-image: url(/system_panel/uploads/images/mmask1.png);
}
.page_head_items.sugosu .page_head_item_img.mask2{
  aspect-ratio: 658 / 477;
}
.page_head_items.sugosu .page_head_item_img.mask2 img{
  mask-image: url(/system_panel/uploads/images/mmask2.png);
}

/*sec2*/
.sugosu_sec2_wrap{
  position: relative;
  z-index: 3;
  margin-bottom: 83px;
}
.sugosu_sec2_wrap .asobu_sec2_tt{
  position: relative;
}
.sugosu_sec2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.sugosu_sec2_item{
  width: 100%;
}
.sugosu_sec2_item:nth-child(n+2){
  margin-top:50px;
}
.sugosu_sec2_item_h2{
  font-size: 24px;
  font-weight: 900; 
  letter-spacing: 0.075em;
  color: #956134;
  text-align: center;
}
.sugosu_sec2_item_img{
  margin-top: 26px;
}
.sugosu_sec2_item_img.mask1{
  aspect-ratio: 680 / 470;

}
.sugosu_sec2_item_img.mask1 img{
  mask-image: url(/system_panel/uploads/images/mask1-1.png);
}
.sugosu_sec2_item_img.mask2{
  aspect-ratio: 680 / 470;
}
.sugosu_sec2_item_img.mask2 img{
  mask-image: url(/system_panel/uploads/images/mask2-1.png);
}
.sugosu_sec2_item .content_desc{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.92em;
  margin-top: 20px;
}
.sugosu_sec2_item .read_more{
  margin-top: 40px;
}

.switch_sec.su_01 .switch_img_box{
  position: relative;
}
.switch_sec.su_01 .switch_img_box:before{
  content: "";
  display: block;
  width: 100vw;
  height: 50%;
  background-image: url(/system_panel/uploads/images/br.jpg);
  background-repeat: repeat;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 0;
}

/*sec3*/
.pg_sugosu .section.sec3 .manabu_sec2_wrap{
  margin-bottom: 96px;
}
.asobu_sec2_item.sugosu1 .asobu_sec2_box1_img.mask1{
  aspect-ratio:777 / 583;
}
.asobu_sec2_item.sugosu1 .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/mmmmn.png);
}

/*sec4*/
.pg_sugosu .section.sec4 .asobu_sec2_tt{
  position: relative
}
.asobu_sec2_items.sugosu2{
  margin-top:40px;
}
.asobu_sec2_items.sugosu2 .asobu_sec2_item .asobu_sec2_box1_img.mask1{
  aspect-ratio:754 / 636;
}
.asobu_sec2_items.sugosu2 .asobu_sec2_item .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask3-1.png);
}
.asobu_sec2_items.sugosu2 .asobu_sec2_item .asobu_sec2_box1_img.mask2{
  width: 86.84%;
  aspect-ratio:660 / 507;
}
.asobu_sec2_items.sugosu2 .asobu_sec2_item .asobu_sec2_box1_img.mask2 img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask3-2.png);
}
.asobu_sec2_items.sugosu2 .asobu_sec2_box2_tt{
  color: #956134;
}

.pg_sugosu .section.sec4 .asobu_sec2_items.sugosu2{
  margin-bottom: 0;
}

/*sec5*/
.asobu_sec2_item.sugosu3 .asobu_sec2_box2{
  color: #181818;
}
.asobu_sec2_item.sugosu3 .asobu_sec2_box1_img.mask1{
  aspect-ratio:779 / 577;
}
.asobu_sec2_item.sugosu3 .asobu_sec2_box1_img.mask1 img{
  -webkit-mask-image: url(/system_panel/uploads/images/qw.png);
}
.asobu_sec2_item.sugosu3 .asobu_sec2_box1_img:before{
  padding-top: 71.14%;
}
.asobu_sec2_item.sugosu3 .asobu_sec2_box1_img img{
  border-radius: 30px;
}
.page_head_items.sugosu .page_head_item_img.mask3{
  aspect-ratio:658 / 477;
}
.page_head_items.sugosu .page_head_item_img.mask3 img{
  -webkit-mask-image: url(/system_panel/uploads/images/89.png);
}
@media (max-width:767px){
  .pg_sugosu .section.sec5 .asobu_sec2_items{
    margin-top: 0;
  }
  .switch_sec.su_01 .switch_img_box:before{
    height: 25%;
  }

  .asobu_sec2_tt img{
    height: 36px;
  }
  .pg_asobu .section.sec2 .asobu_sec2_tt img{
    height: auto;
  }
  .t-l img{
    height: auto;
  }
  .t-r img{
    height: auto;
  }
}
@media (min-width:768px){
  /*sec1*/
  .page_head_items.sugosu{

  }
  .page_head_items.sugosu .page_head_item{

  }
  .page_head_items.sugosu .page_head_item_img.mask1{

  }
  .page_head_items.sugosu .page_head_item_img.mask1 img{

  }
  .page_head_items.sugosu .page_head_item_img.mask3{

  }
  .page_head_items.sugosu .page_head_item_img.mask3 img{

  }

  /*sec2*/
  .sugosu_sec2_wrap .asobu_sec2_tt{
    position: relative;
  }
  .sugosu_sec2_items{
    margin-top: 63px;
  }
  .sugosu_sec2_item{

  }
  .sugosu_sec2_item:nth-child(n+2){
    margin-top:100px;
  }
  .sugosu_sec2_item_h2{
    font-size: 36px;
  }
  .sugosu_sec2_item_img{

  }
  .sugosu_sec2_item .content_desc{
    font-size: 18px;
    margin-top: 31px;
  }
  .sugosu_sec2_item .read_more{
    margin-top: 78px;
  }

  /*sec3*/
  .asobu_sec2_items.furo {
    margin-top: 65px;
  }
  .pg_sugosu .section.sec3 .manabu_sec2_wrap{
    margin-bottom: 96px;
  }

  /*sec4*/
  .asobu_sec2_items.sugosu2{
    margin-top: 50px;
  }

  .pg_sugosu .section.sec5 .asobu_sec2_items{
    margin-top: 30px;
    margin-bottom: 0;
    padding-bottom: 144px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .page_head_items.sugosu{
    gap:0 90px;
    padding: 0 46px;
  }
  .sugosu_sec2_items{
    gap:0 40px; 
  }
  .sugosu_sec2_item{
    width: calc(50% - 20px);
  }
  .sugosu_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .page_head_items.sugosu .page_head_item{
    width: calc(50% - 45px);
  }
  .sugosu_sec2_item_h2{

  }
  .page_head_items.sugosu .page_head_item:last-child{
    margin-top: 50px;
  }
  .page_head_items.sugosu .page_head_item_img.mask1{

  }
  .page_head_items.sugosu .page_head_item_img.mask1 img{

  }
  .page_head_items.sugosu .page_head_item_img.mask3{

  }
  .page_head_items.sugosu .page_head_item_img.mask3 img{

  }
  .sugosu_sec2_item .content_desc{
    font-size: 20px;
  }

  /*sec4*/
  .asobu_sec2_items.sugosu2 .asobu_sec2_item .asobu_sec2_box1_img.mask2{
    margin-left: -20px;
    margin-top: 58px;
  }

  .pg_sugosu .section.sec5 .asobu_sec2_items{
    margin-top: 30px;
    margin-bottom: 0;
  }

}
@media (min-width:1200px){
  /*sec1*/
  .page_head_items.sugosu{
    padding: 0 46px 0 80px;
  }
  .page_head_items.sugosu .page_head_item{

  }
  .page_head_items.sugosu .page_head_item_img.mask1{

  }
  .page_head_items.sugosu .page_head_item_img.mask1 img{

  }
  .page_head_items.sugosu .page_head_item_img.mask3{

  }
  .page_head_items.sugosu .page_head_item_img.mask3 img{

  }

  /*sec2*/
  .sugosu_sec2_wrap .asobu_sec2_tt{
    position: relative;
  }
  .sugosu_sec2_items{
    gap:0 160px; 
  }
  .sugosu_sec2_item{
    width: calc(50% - 80px);
  }

  .sugosu_sec2_item_h2{
    font-size: 36px;
  }
  .sugosu_sec2_item_img{

  }
  .sugosu_sec2_item .content_desc{
    font-size: 25px;
  }
  .sugosu_sec2_item .read_more{

  }

  /*sec3*/
  .asobu_sec2_items.furo{
    margin-top: 65px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.sugosu1:nth-child(odd) .asobu_sec2_box1{
    order: 1;
    width: 51.11%;
    padding-top: 10px;
  }
  .manabu_sec2_wrap .asobu_sec2_item.sugosu1:nth-child(odd) .asobu_sec2_box2{
    order: 2;
    width: 44.73%;
    padding-top: 0;
  }

  /*sec4*/
  .asobu_sec2_items.sugosu2{

  }
  .asobu_sec2_items.sugosu2 .asobu_sec2_item:nth-child(odd) .asobu_sec2_box1{
    order: 2;
    width: 50%;
    margin-top: 30px;
    margin-right: 82px;
  }
  .asobu_sec2_items.sugosu2 .asobu_sec2_item:nth-child(odd) .asobu_sec2_box2{
    order: 1;
    width: 41.44%;
  }
  .asobu_sec2_items.sugosu2 .asobu_sec2_item .asobu_sec2_box1_img.mask2{
    margin-left: -120px;
    margin-top: 190px;
  }
  .manabu_mirai_wrap .asobu_sec2_items.sugosu2 .content_desc{
    margin-top: 33px;
  }

  /*sec5*/
  .pg_sugosu .section.sec5 .asobu_sec2_items{
    margin-top: 30px;
    margin-bottom: 0;
    padding-bottom: 144px;
  }
  .asobu_sec2_item.sugosu3:nth-child(odd) .asobu_sec2_box1{
    width: 50.999%;
  }
  .asobu_sec2_item.sugosu3:nth-child(odd) .asobu_sec2_box2{
    width: 42.76%;
  }
  .asobu_sec2_item.sugosu3 .asobu_sec2_box1 .read_more{
    margin-top: 79px;
  }
  .asobu_sec2_item.sugosu3 .asobu_sec2_box1 .read_more.wh a + a{
    margin-top: 46px;
  }
  .asobu_sec2_item.sugosu3 .asobu_sec2_box2 .content_desc{
    margin-top: 70px;
  }

}
@media (min-width:1470px){
  /*sec2*/
  .sugosu_sec2_item_h2{
    font-size: 42px;
  }

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

  .asobu_sec2_items.sugosu2 .asobu_sec2_item .asobu_sec2_box1_img.mask2{
    margin-left: -228px;
    margin-top: 58px;
  }
}



/*******************************
*　コンテンツ
********************************/

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

}
.pg_contents .section.sec1{
  position: relative;
}
.pg_contents .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}

.contents_ftr{
  position: relative;
}
.contents_ftr:before{
  content: "";
  display: block;
  width: 100vw;
  height: 2000px;
  background-image: url(/system_panel/uploads/images/io8.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
}
.contents_ftr:after{
  content: "";
  width: 100vw;
  height: 600px;
  background: linear-gradient(180deg, rgba(247, 241, 217, 1) 0%, rgba(249, 244, 224, 1) 20%, rgba(250, 246, 230, 0.69) 34%, rgba(255, 255, 255, 0) 86%);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .page_head.contents{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
  }
  .contents_ftr:before{
    height: 150%;
  }
  .contents_ftr:after{
    height: 150px;
  }
}
@media (min-width:768px){
  .pg_contents{

  }
  .pg_contents .section.sec1{

  }
  .pg_contents .section.sec2{
    padding-top: 170px;
  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

  .contents_ftr:before{
    content: "";
    display: block;
    width: 100vw;
    height: 500px;
  }
}
@media (min-width:1024px){
  .contents_ftr:before{
    content: "";
    display: block;
    width: 100vw;
    height: 2000px;
  }
  .body_news .contents_ftr:before,
  .body_newsDetail .contents_ftr:before{
    content: "";
    display: block;
    width: 100vw;
    height: 1000px;
  }
}
@media (min-width:1200px){
  .pg_contents{

  }
  .pg_contents .section.sec1{

  }
  .pg_contents .section.sec2{
    padding-top: 50px;
  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/*イラスト・背景*/
.page_head.contents{

}
.page_head.contents .page_head_illust_model.pos1{
  width: calc(136px * var(--page-head-illust-resize));
  top: 100px;
}
.page_head.contents .page_head_illust_model.pos2{
  width: calc(311px * var(--page-head-illust-resize));
}
.contents_pos1{
  width: 17.76%;
  left: 0;
  top: 0;
}
.contents_pos2{
  width: 25.62%;
  right: 0;
  top: 0;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .contents_pos1{
    width: 17.76%;
    left: 0;
    top: auto;
    bottom: -50px;
  }
  .contents_pos2{
    width: 25.62%;
    right: 0;
    top: auto;
  }
}
@media (min-width:768px){
  /*イラスト・背景*/
  .page_head.contents{

  }
  .page_head.contents .page_head_illust_model.pos1{
    top: 116%;
    left: 0;
  }
  .page_head.contents .page_head_illust_model.pos2{
    top: 12%;
    right: 2px;
  }

  .contents_pos1{
    width: 17.76%;
    left: 0;
    top: auto;
  }
  .contents_pos2{
    width: 20.62%;
    right: 0;
    top: auto;
    bottom: -100px;
  }

}
@media (min-width:1024px){
  /*イラスト・背景*/
  .page_head.contents .page_head_illust_model.pos2{
    top: 12%;
    right: 2px;
  }

}
@media (min-width:1200px){
  /*イラスト・背景*/
  .page_head.contents{

  }
  .page_head.contents .page_head_illust_model.pos1{
    top: 71%;
    left: calc(50% - 600px);
  }
  .page_head.contents .page_head_illust_model.pos2{
    top: 12%;
    right: calc(50% - 758px);
  }

  .contents_pos1{
    width: 17.76%;
    left: calc(50% - 632px);
    top: 34%;
    bottom: auto
  }
  .contents_pos2{
    width: 20.62%;
    right: 0;
    top: 200px;
    bottom: auto;
  }
}
@media (min-width:1470px){
  .contents_pos1{
    width: 17.76%;
    left: calc(50% - 832px);
    top: 34%;
  }
  .contents_pos2{
    width: 25.62%;
    right: 0;
    top: 100px;
  }

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


}


/* メイン部分 */
/*sec2*/
.contents_items{

}
.contents_item{

}
.contents_item:nth-child(n+2){
  margin-top: 50px;
}
.contents_item_tt{
  background: #3d7c84;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  padding: 10px;
}
.contents_item_lists{
  display: flex;
  flex-wrap: wrap;
  gap:40px 0;
  margin-top: 40px;
}
.contents_item_list{
  width: 100%;
  background-image: url(/system_panel/uploads/images/contents_bg.jpg);
  background-repeat: repeat;
  border-radius: 30px;
  padding: 30px 16px;
}
.contents_item_list_img:before{
  padding-top: 77.2%;
}
.contents_item_list_img img{
  border-radius: 30px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 460px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #fff;
  border-radius: 32.5px;
  color: #181818;
  padding: 20px 20px;
  margin: 27px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.link_1:after{
  content: "\f138";
  font-family: 'FontAwesome';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.contents_item_txt{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2em;
  margin-top: 19px;
}
.contents_item_txt p{
  display: inline-block;
  letter-spacing: 0.075em;
}
@media (max-width:767px){
  .link_1{
    font-size: 14px;
  }
  .link_1:after{
    right: 5px;
  }
}
@media (min-width:768px){
  /*sec2*/
  .contents_items{

  }
  .contents_item{

  }
  .contents_item:nth-child(n+2){
    margin-top: 102px;
  }
  .contents_item_tt{
    font-size: 24px;
  }

  .contents_item_list_img:before{

  }
  .contents_item_list_img img{

  }
  .link_1{

  }
  .contents_item_txt{

  }
  .contents_item_txt p{

  }
}
@media (min-width:1024px){
  /*sec2*/
  .contents_item_lists{
    gap: 60px 30px;
    margin-top: 52px;
  }
  .contents_item_list{
    width: calc(50% - 15px);
    padding: 30px 16px;
  }
}
@media (min-width:1200px){
  /*sec2*/
  .contents_items{

  }
  .contents_item{

  }
  .contents_item_tt{
    font-size: 30px;
  }
  .contents_item_lists{

  }

  .contents_item_list_img:before{

  }
  .contents_item_list_img{
    width: 94.93%;
    margin-inline:auto;
  }
  .contents_item_list_img img{

  }
  .link_1{

  }
  .contents_item_txt{

  }
  .contents_item_txt p{

  }

}
@media (min-width:1470px){
  .contents_item_list{
    width: calc(33.333% - 20px)
  }

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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

/* セクション設定 */
.pg_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){


}





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

}



@media (max-width:1199px){
  .manabu_sec2_wrap .asobu_sec2_box2{
    margin-top: 30px;
  }
  .asobu_sec2_item.sugosu3 .asobu_sec2_box2{
    margin-top: 30px;
  }
  .asobu_sec2_box2{
    margin-top: 26px; 
  }
  .asobu_sec2_item{
    justify-content: center; 
  }
}

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.section.access{
  position: relative;
  z-index: 2;
}
.section.conte{
   position: relative;
  z-index: 1;
}
@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{

  }

.section.conte{
    margin-top: 50px;
  }
}
@media (min-width:1024px){
  .section.conte{
    margin-top: 100px;
  }

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


}
