@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: "Josefin Sans", '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: 55px;
}
.translated-ltr body{
  margin-top: 0!important;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

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

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

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

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btns{
    display: flex;
    align-items: center;
    margin-left: 41px;
  }
  .hdr_contact_btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    aspect-ratio:1;
    aspect-ratio:1;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-en);

    line-height: 1;
    color: #fff;
  }
  .hdr_contact_btn:hover{
    background: #fff;
  }
  .hdr_contact_btn.contact{
    background: #2b4c5a;
    border:1px solid #2b4c5a;
  }
  .hdr_contact_btn.contact:hover{
    color: #2b4c5a;
    background: #fff;
  }
  .hdr_contact_btn.lang{
    background: #638c0b;
    border: 1px solid #638c0b;
  }
  .hdr_contact_btn.lang:hover{
    color: #638c0b;
    background: #fff;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
    margin-top: 9px;
  }
  .hdr_contact_btn.contact:before{
    content:"\f0e0";
    font-family: "fontAwesome";
  }
  .hdr_contact_btn.lang:before{
    content: "";
    display: block;
    width: 16px;
    aspect-ratio:1;
    background-image: url(https://w-asobi.com/system_panel/uploads/images/globe.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
  }
  .hdr_contact_btn.lang:hover:before{
    background-image: url(https://w-asobi.com/system_panel/uploads/images/globe_gr.png);
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255,255,255,0.6);
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  .header.slim .hdr_contact_btn{
    width: 90px;
    font-size: 12px;
  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}
@media (min-width:1470px){
  .header{
    padding-right: 0;
  }
}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.body_home .mv{
  padding-top: 0;
}
.mv_img{
  position: relative;
  z-index: 1;
}

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

}
.mv_txt_p2{

}

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

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

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


.mv_slide{

}
.mv_slide_inner{

}
.mv_img:before{
  padding-top:calc(100svh - 54px - 65px);
}
.mv_text_1{
  text-align: center;
  width: 100%;
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1.732px 1.8px rgba(24, 24, 24, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.mv_text_1 p{
  letter-spacing: 0;
}
@media (min-width:768px){

  /* MV */
  .mv_slide{

  }
  .mv_slide_inner{

  }
  .mv_img:before{
    padding-top: 500px;
  }
  .mv_text_1{
    font-size: 50px;
  }
  .mv_text_1 p{

  }

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


  /* MV */
  .mv_slide{

  }
  .mv_slide_inner{

  }
  .mv_img:before{

  }
  .mv_text_1{
    font-size: 65px;
  }
  .mv_text_1 p{

  }

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

  /* MV */
  .mv_slide{

  }
  .mv_slide_inner{

  }
  .mv_img:before{
    padding-top: 780px;
    padding-top: 100vh;
  }
  .mv_text_1{
    font-size: 76px;
  }
  .mv_text_1 p{

  }

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

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

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

}


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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

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




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

  .pg_header_title_txt{

  }

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

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

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

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

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

}


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

.footer{
  margin-top: 80px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 15px;
  font-family: var(--font-en);
  line-height: 1;
  text-align: center;
  border-top: 1px solid #fff;
  padding: 8px;
  color: #fff;
  margin-top: 40px;
  padding: 10px 0;
}
.ftr_copy a:hover{
  color: #fff;
  opacity: 0.4;
}
.ftr_copy p{
  letter-spacing: 0;
}

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

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


.ftr_contact_img:before{
  padding-top: 250px;
}
.ftr_contact_outer{
  background:#2b4c5a;
  padding-bottom: 50px;
  border-bottom: 1px solid #fff;
}
.ftr_contact_inner{
  background: #fff;
    padding: 44px 16px 50px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
}
.ftr_contact_head{
  text-align: center;
}
.ftr_contact_txt1{
  font-size: 45px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #2b4c5a;
}
.ftr_contact_txt2{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-top: 10px;
}
.ftr_contact_head .content_desc_en{
  font-weight: 400;
  line-height: 1.875em;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  margin-top: 9px;
}
.ftr_contact_head .content_desc p{
  letter-spacing: 0;
}
.ftr_contact_btm{
  margin-top: 15px;
}
.ftr_contact_btm_txt1{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-en);
}
.ftr_contact_btm_txt1 p{
  /*  max-width: 380px;
    width: 100%;
    display: inline-block;
    background: #2b4c5a;
    color: #fff;
    padding: 5px 0;
    letter-spacing: 0;*/
}
.ftr_contact_btm .read_more{
  margin-top: 16px;
}
.ftr_contact_btm .read_more a{
  font-size: 26px;
}
.ftr_contact_btm .read_more a p{
  letter-spacing: 0;
}
.link_3_outer{
  display: flex;
  justify-content: center;
}
.link_3 {
  min-width: inherit;
  font-size: 26px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.2;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  background: none;
  padding: 0px;
  margin: 0px;
  transition: 0.2s;
  margin-top: 15px;
  max-width: 349px;
  width: 100%;
  display: inline-block;
  background: #2b4c5a;
  color: #fff;
  padding: 13px 25px;
  text-align: left;
}
.link_3:after{
  content: "→";
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  width: 36px;
  aspect-ratio: 1 / 1;
  position: absolute;
  z-index: 1;
  top: auto;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  font-size: 18px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  transition:all 0.2s;
}
.link_3 p{
  letter-spacing: 0;
  padding-top: 8px;
}
.link_3:hover{
  color: #fff;
}
.link_3:hover:after{
  right: 20px;
}

.ftr_1{
  background: #2b4c5a;
  padding-top: 50px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.5em;
  margin-top: 30px;
}
.ftr_add p{
  letter-spacing: 0;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.ftr_link p{

}

/*翻訳*/

.hdr_lang {
  display: flex;
  align-items: center;
  width: 185px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  background: #fff;
  color: #181818;
  border-radius: 0;
  padding: 12px 21px 11px 48px;
  position: relative;
  transition: all .2s;
  border: 1px solid #808e99;
  margin-right: 0;
  margin-left: auto;
  margin-top: 0;
}
.hdr_lang:hover {
  border: 1px solid #1c1c1c;
  background: #ccc;
  color: #181818;
}
.hdr_lang:before {
  content: "";
  display: block;
  width: 15px;
  min-width: 15px;
  aspect-ratio: 1;
  background-image: url(https://w-asobi.com/system_panel/uploads/images/globe_bk.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 25px;
}
.hdr_lang_btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  padding-top: 3px;
}
.hdr_lang_btn.defo {
  display: flex;
  align-items: center;
}
.hdr_lang_select {
  display: none;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  right: 0;
  background: #333;
  color: #FFF;
  padding: 5px 0;
  transition: 0.2s all;
}
.hdr_lang_select p{
  padding: 5px 10px;
  cursor: pointer;
}
.hdr_lang:hover .hdr_lang_select {
  display: block;
}
.hdr_lang_btn.defo:before {
  content: '';
  display: block;
  height: 17px;
  border-left: 1px solid #404040;
  margin-right: 25px;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr_1_box1{
    text-align: center; 
  }

  .ftr_links{
    display: none;
  }

  .hdr_lang{
    width: 80%;
    margin-inline:auto;
    margin-top: 30px;
  }

  .lang_icon{
    width: 20px;
    margin-bottom: 8px;
    text-align: center;
    margin-inline: auto;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_outer{
    padding-bottom: 80px;
  }
  .ftr_contact_img:before{   
    padding-top: 500px;
  }
  .ftr_contact_inner{
    margin-top: -120px;
  }
  .ftr_contact_head{

  }
  .ftr_contact_txt1{
    font-size:80px;;
  }
  .ftr_contact_txt2{
    font-size: 21px;
  }
  .ftr_contact_btm{

  }
  .ftr_contact_btm_txt1{

  }
  .ftr_contact_btm_txt1 p{

  }
  .ftr_contact_btm .read_more{

  }
  .ftr_contact_head .content_desc_en{
    max-width: 825px;
    width: 100%;
    margin-inline:auto;
  }

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

  }
  .ftr_1_box1{
    text-align: center;
 width: 100%;
  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 47px;
  }
  .ftr_add p{

  }
  .ftr_1_box2{
    width: 100%;
    padding-top: 27px;
  }
  .ftr_links{
    display:flex;
    flex-wrap: wrap;
    margin-top: 48px;
  }
  .ftr_link{
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-en);
    color: #fff;
  }
  .ftr_link:hover{
    color: #fff;
    opacity: .4;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 15px;
  }
  .ftr_link p{
    letter-spacing: 0;
  } 

  /*翻役*/
  .hdr_lang {
    display: flex;
    align-items: center;
    width: 255px;
    margin-top: 0;
    margin-bottom: 0;
    margin-right:auto;
  }
  .hdr_lang_btn.defo:before {
    content: '';
    height: 17px;
    border-left: 1px solid #404040;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 150px;
  }
  .ftr_contact_img:before{
    padding-top: 610px;
  }
  .ftr_contact_inner{
    margin-top: -200px;
  }
  .ftr_copy{
    text-align: right; 
    margin-top: 72px;
    padding: 25px 0;
  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    text-align: left;
    width: 40.09%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add p{

  }
  .ftr_1_box2{
    width: 55.49%;
    padding-top: 27px;
  }
  .ftr_links{

  }
  .ftr_link{
    width: auto;
  }
  .ftr_link:nth-child(odd){
    width: 240px;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 15px;
  }
  .ftr_link p{

  }
  
  .hdr_lang{
   margin-right: 0; 
  }
}
@media (min-width:1200px){
  .ftr_1_box1{
    width: 40.09%;
  }
  .ftr_1_box2{
    width: 45.49%;
    padding-top: 27px;
  }
}
@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{

}

.tt_en{

}
.tt_en_h2{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.09em;
  letter-spacing: 0;
}
.tt_en p{

}

/* テーブル用 */
.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 #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #2b4c5a;
  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{
  min-width: 250px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.2;
  text-align: center;
  border: 1px solid #2b4c5a;
  background: #fff;
  border-radius: 30px;
  color: #181818;
  padding: 22px 20px 16px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "";
  display: block;
  width: 15px;
  aspect-ratio:1;
  background-image: url(https://w-asobi.com/system_panel/uploads/images/arrow-circle-right-solid.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 52%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: #2b4c5a;
}
.read_more a:hover:after{
  background-image: url(https://w-asobi.com/system_panel/uploads/images/arrow-circle-right-solid_wh.svg);
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt_en.mid .tt_en_h2{
  font-size: 26px;
}
.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: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 45px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width:350px;
    font-size: 16px;
    padding: 22px 20px 16px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 26px;
    font-size: 18px;
  }

  /* 見出し */



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

  }

  .tt_en_h2{
    font-size: 62px;
  }
  .tt_en p{

  }
  .tt_en.mid .tt_en_h2{
    font-size: 39px;
  }
}
@media (min-width:1024px){

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

  }

  .tt_en_h2{
    font-size: 62px;
  }
  .tt_en p{

  }

  .tt_en.mid .tt_en_h2{
    font-size: 50px;
    line-height: 1.4em;
  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



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

}
.pg_home .section.sec1{
  padding-top:60px;
  padding-bottom: 100px;
}
.pg_home .section.sec2{
  background: #2b4c5a;
}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 100px;
    padding-bottom: 115px;
  }
  .pg_home .section.sec2{
    padding: 103px 0 99px;
  }
  .pg_home .section.sec3{
    padding-top: 97px;
  }
  .pg_home .section.sec4{
    padding-top: 65px;
  }
  .pg_home .section.sec5{
    padding-top: 95px;
  }
  .pg_home .section.sec6{
    padding-top: 142px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


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


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


}

/*main*/

/*sec1*/
.sec1_outer{
  text-align: center;
  padding-bottom:50px;
}
.home_sec1_wrap{

}
.home_sec1_wrap .tt_en{
  margin-bottom: 34px;
}
.news_list{

}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.news_list .webgene-item{
  width: 100%;
}
.news_list .webgene-item:nth-child(n+2){
  margin-top: 20px;
}
.news_list .webgene-item a{
  display: block;
  border: 1px solid #2b4c5a;
  padding: 10px 10px 34px;
  position: relative;
}
.news_list.kasou .webgene-item a{
  padding: 10px 10px 24px;
}
.news_list .webgene-item a:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 20px solid #2b4c5a;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.news_list .webgene-item .img:before{
  padding-top: 70.9%;
}
.news_list .webgene-item .box2{
  padding-top: 12px;
}
.news_list .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 11px;
}
.news_list .webgene-item .date{
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.news_list .webgene-item .category{
  text-align: center;
}
.news_list .webgene-item .category span{
  background: #2b4c5a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  padding: 10px 38px 5px 38px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0;
  padding-top: 16px;
}

.home_sec1_links{
  display: flex;
  flex-wrap: wrap;
  gap:16px 0;
  margin-top: 100px;
}
.home_sec1_link{
  width: 100%;
}
.home_sec1_link_inner{
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #2b4c5a;
  border-radius: 50px
}
.home_sec1_link_inner:after{
  content: "\f138";
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
}
.home_sec1_link_inner:hover .home_sec1_link_img img{
  transform: scale(1.05);
}
.home_sec1_link_num{
  font-size: 26px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  background: #fff;
  padding: 0 10px;
  position: absolute;
  top: -12px;
  left: 97px;
}
.home_sec1_link_img{
  margin-right: 18px;
}
.home_sec1_link_img img{
  transition: all .2s;
}
.home_sec1_link_txt2{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  padding-top: 5px;
}

/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_box1{
  width: 100%;
  color: #fff;
  order: 2;
  margin-top: 20px;
}
.home_sec2_box1 .tt_en{

}
.sec_sub_en{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.31em;
}
.sec_sub_en p{
  letter-spacing: 0; 
}
.home_sec2_box1 .sec_sub_en{
  margin-top: 25px;
}
.content_desc_en{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.6em;
}
.content_desc_en p{
  letter-spacing: 0;
}
.home_sec2_box1 .content_desc_en{
  margin-top: 27px;
}
.home_sec2_box2{
  width: 100%;
  order: 1;
}
.home_sec2_box2_img:before{
  padding-top: 129.26%;
}

/*sec3*/
.home_sec3_wrap .swiper{
  padding-top: 50px;
}
.tour_list{
  position: relative;
}
.tour_list .webgene-blog{

}
.tour_list .webgene-item{

}
.tour_list .webgene-item a{
  display: block;
  background: #f9f7f3;
  padding: 10px;
  position: relative;
}
.tour_list .webgene-item .box2{
  margin-top: -32px;
  position: relative;
  z-index: 1;
}
.tour_list .webgene-item .category{
  position: absolute;
  top: -17px;
  left: 10px;
}
.tour_list .webgene-item .category span{
  background: #2b4c5a;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  padding: 10px 38px 5px 38px;
}
.tour_list .webgene-item .img:before{
  padding-top: 72.72%;
}
.tour_list .webgene-item .title{
  width: 83.333%;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.4em;


  padding-top: 8px;
}
.tour_list .webgene-item .box_inner{
  position: relative;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 28px;
}
.tour_list .webgene-item .box_inner:after{
  content: "";
  height: 78%;
  border-right: 1px solid #bfbfbf;
  position: absolute;
  bottom: 0;
  right: 0;
}
.tour_list .webgene-item .box_inner:before{
  content: "";
  display: block;
  width: 32px;
  aspect-ratio:1;
  background-image: url(https://w-asobi.com/system_panel/uploads/images/kado.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 2;
}
.tour_list .webgene-item .meta{
  width: 83.333%;
  border-bottom: 1px solid #2b4c5a;
  background: #f9f7f3;
  padding-bottom: 8px;
}
.tour_list .webgene-item .desc{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.75em;
  margin-top: 13px;
}
.tour_list .webgene-item .desc br{
  display:none;
}

.tour_list .slide-prev,
.tour_list .slide-next{
  width: 28px;
  aspect-ratio:1;
  position: absolute;
  top: 54%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  cursor: pointer;
}
.tour_list .slide-prev{
  background-image: url(https://w-asobi.com/system_panel/uploads/images/left.png);
  left: -36px;
}
.tour_list .slide-next{
  background-image: url(https://w-asobi.com/system_panel/uploads/images/right.png);
  right: -36px;
}
.tour_list .swiper-button-disabled{
  opacity: 0.4;
}

/*sec4*/
.home_sec4_wrap{

}
.home_sec4_items{

}
.home_sec4_item{

}
.home_sec4_item:nth-child(n+2){
  margin-top: 19px;
}
.home_sec4_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec4_item_inner:hover .home_sec4_box1_img img{
  transform: scale(1.04);
}
.home_sec4_box1{
  width: 100%;
}
.home_sec4_box1_img:before{
  padding-top: 250px;
}
.home_sec4_box1_img img{
  transition: all .2s;
}
.home_sec4_box2{
  width: 100%;
  background: #f9f7f3;
  padding: 16px 12px 7px 12px;
}
.home_sec4_box2_tt{
  border-bottom: 1px solid #2b4c5a;
  padding-bottom: 7px;
}
.home_sec4_box2_h3{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1em;
}
.home_sec4_box2_tt_sub{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.333em;
  margin-top: 22px;
}
.home_sec4_box2_tt_sub p{
  letter-spacing: 0;
}
.home_sec4_box2 .content_desc_en{
  margin-top: 23px;
}
.view_more{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1em;
  margin-top: 15px;
}
.view_more:before{
  content: "";
  display: block;
  width: 75px;
  border-top: 1px solid #2b4c5a;
  margin-right: 13px;
}
.view_more p{
  letter-spacing: 0;
}

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

}
.insta_box .webgene-item .img_fit:before{
  padding-top: 132%;
}
.insta_box video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
.read_more.insta a:after{
  content: "";
  width: 14px;
  aspect-ratio:1;
  background-image: url(https://w-asobi.com/system_panel/uploads/images/link.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 52%;
  right: 31px;
}
.read_more.insta a:hover:after{
  background-image: url(https://w-asobi.com/system_panel/uploads/images/link_wh.png);
}
.home_sec5_wrap .read_more.insta{
  margin-top: 31px;
}

/*sec6*/
.home_sec6_wrap{

}
.home_sec6_bnrs{
  display: flex;
  flex-wrap: wrap;
  gap:15px 0;
}
.home_sec6_bnr{
  width: 100%;
  display: block;
}
.home_sec6_bnr img{
  transition: all .2s;
}
.home_sec6_bnr:hover img{
  transform: scale(1.04);
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_sec3_wrap .swiper-slide{
    width: 285px;
  }

  .tour_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .tour_list .slide-prev,
  .tour_list .slide-next{
    width: 30px;
    position: static;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    margin: 20px 10px;
  }

  /*insta*/
  .insta_box .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*sec1*/
  .sec1_outer{
    padding-bottom: 102px;
  }
  .home_sec1_wrap{

  }
  .news_list{

  }
  .news_list .webgene-blog{
    margin-inline:-15px;
  }
  .news_list .webgene-item{
    width: 50%;
    padding-inline:15px;
  }
  .news_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 30px;;
  }
  .news_list .webgene-item a{
    height: 100%;
  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .meta{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .category span{
    padding: 11px 38px 6px 38px;
  }
  .news_list .webgene-item .title{
    font-size: 18px;
  }

  .home_sec1_links{
    gap:30px;
    margin-top: 115px;
  }
  .home_sec1_link{
    width:calc(50% - 15px);
  }
  .home_sec1_link_inner{

  }
  .home_sec1_link_num{

  }
  .home_sec1_link_img{

  }
  .home_sec1_link_txt2{

  }

  /*sec2*/
  .home_sec2_wrap{

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

  }
  .sec_sub_en{
    font-size: 26px;
  }
  .sec_sub_en p{

  }
  .home_sec2_box1 .sec_sub_en{

  }
  .content_desc_en{
    line-height: 2.25em;
  }
  .content_desc_en p{

  }
  .home_sec2_box1 .content_desc_en{

  }
  .home_sec2_box2{

  }
  .home_sec2_box2_img:before{

  }

  /*sec3*/
  .tour_list{

  }
  .tour_list .webgene-blog{

  }
  .tour_list .webgene-item{

  }
  .tour_list .webgene-item a{

  }
  .tour_list .webgene-item .category{

  }
  .tour_list .webgene-item .category span{

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

  }
  .tour_list .webgene-item .title{
    font-size: 20px;
  }
  .tour_list .webgene-item .desc{

  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_items{

  }
  .home_sec4_item{

  }
  .home_sec4_item_inner{

  }
  .home_sec4_box1{

  }
  .home_sec4_box1_img:before{
    padding-top: 450px;
  }
  .home_sec4_box2{

  }
  .home_sec4_box2_tt{

  }
  .home_sec4_box2_h3{
    font-size: 34px;
  }
  .home_sec4_box2_tt_sub{
    font-size: 21px;
  }
  .home_sec4_box2_tt_sub p{

  }
  .home_sec4_box2 .content_desc_en{
    line-height: 1.75em;
  }

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

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

  /*sec6*/
  .home_sec6_wrap{

  }
  .home_sec6_bnrs{
    gap:15px 30px;
  }
  .home_sec6_bnr{
    width:calc(50% - 15px);
  }
  .home_sec6_bnr img{

  }
}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    width: 33.333%;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list.kasou .webgene-item:nth-child(n+4){
    margin-top: 35px;
  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .meta{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .category span{

  }
  .news_list .webgene-item .title{

  }

  .home_sec1_links{

  }
  .home_sec1_link{
    width:calc(33.333% - 20px);
  }
  .home_sec1_link_inner{

  }
  .home_sec1_link_num{

  }
  .home_sec1_link_img{

  }
  .home_sec1_link_txt2{
    font-size: 20px;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_box1{
    width: 51.64%;
    order: 1;
    margin-top: 0;
  }
  .home_sec2_box1 .tt_en{

  }
  .sec_sub_en{
    font-size: 32px;
  }
  .sec_sub_en p{

  }
  .home_sec2_box1 .sec_sub_en{

  }
  .content_desc_en{

  }
  .content_desc_en p{

  }
  .home_sec2_box1 .content_desc_en{

  }
  .home_sec2_box2{
    width: 42.8%;
    order: 2;
  }
  .home_sec2_box2_img:before{

  }

  /*sec3*/
  .tour_list{

  }
  .tour_list .webgene-blog{

  }
  .tour_list .webgene-item{

  }
  .home_sec3_wrap .swiper-slide{
    width: 350px;
  }
  .tour_list .webgene-item a{

  }
  .tour_list .webgene-item .category{

  }
  .tour_list .webgene-item .category span{

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

  }
  .tour_list .webgene-item .title{

  }
  .tour_list .webgene-item .desc{

  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_items{

  }
  .home_sec4_item{

  }
  .home_sec4_item:nth-child(odd) .home_sec4_box1{
    order: 1;
  }
  .home_sec4_item:nth-child(odd) .home_sec4_box2{
    order: 2;
  }
  .home_sec4_item:nth-child(even) .home_sec4_box1{
    order: 2;
  }
  .home_sec4_item:nth-child(even) .home_sec4_box2{
    order: 1;
  }
  .home_sec4_item_inner{

  }
  .home_sec4_box1{
    width: 65.76%;
  }
  .home_sec4_box1_img:before{
    padding-top: 700px;
  }
  .home_sec4_box2{
    width: 33.333%;
  }
  .home_sec4_box2_tt{

  }
  .home_sec4_box2_h3{

  }
  .home_sec4_box2_tt_sub{

  }
  .home_sec4_box2_tt_sub p{

  }
  .home_sec4_box2 .content_desc_en{

  }

  /*insta*/
  .insta_box{

  }
  .insta_box .webgene-blog{

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

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

  /*sec6*/
  .home_sec6_wrap{

  }
  .home_sec6_bnrs{

  }
  .home_sec6_bnr{
    width: calc(33.333% - 20px);
  }
  .home_sec6_bnr img{

  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_link_txt2{
    font-size: 24px;
  }

  /*sec3*/
  .home_sec4_box1_img:before{
    padding-top: 570px;
  }
}
@media (min-width:1470px){


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


}




/*******************************
*　ガイド育成・地域プロモーション企画
********************************/
.sans{
  font-family: "Noto Sans JP", sans-serif!important;
}

/* セクション設定 */
.pg_training-and-promotion{

}
.pg_training-and-promotion .section.sec1{

}
.pg_training-and-promotion .section.sec2{
  background: #2b4c5a;
  color: #FFF;
}
.pg_training-and-promotion .section.sec3{

}
.pg_training-and-promotion .section.sec4{

}
.pg_training-and-promotion .section.sec5{

}
.pg_training-and-promotion .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_training-and-promotion{

  }
  .pg_training-and-promotion .section.sec1{
    padding-bottom: 110px;
  }
  .pg_training-and-promotion .section.sec2{
    padding: 92px 0;
  }
  .pg_training-and-promotion .section.sec3{
    padding-top: 119px;
  }
  .pg_training-and-promotion .section.sec4{

  }
  .pg_training-and-promotion .section.sec5{

  }
  .pg_training-and-promotion .section.sec6{

  }

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


}
@media (min-width:1200px){
  .pg_training-and-promotion{

  }
  .pg_training-and-promotion .section.sec1{

  }
  .pg_training-and-promotion .section.sec2{

  }
  .pg_training-and-promotion .section.sec3{

  }
  .pg_training-and-promotion .section.sec4{

  }
  .pg_training-and-promotion .section.sec5{

  }
  .pg_training-and-promotion .section.sec6{

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


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


}

/* メイン部分 */
/*sec1*/
.training_h2{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  color: #2b4c5a;
  margin-bottom: 30px;
}
.tt_en.sans .tt_en_h2{
  font-weight: 600;
  letter-spacing: 0;
}
.staff_about_ttl.sans{
  font-weight: 500;
  letter-spacing: 0;
}
.staff_about_txt.sans{
  text-align: justify;
}
.staff_about_txt.sans p{
  letter-spacing: 0;
}

/*sec2*/
.service_feature.training .service_feature_row{
  padding-bottom: 50px;
  border-bottom: 1px solid #fff;;
}
.service_feature.training .service_feature_row:nth-child(n+2){
  padding-top: 50px;
}
.service_feature.training .service_feature_row:last-child{
  padding-bottom: 0;
  border-bottom: none;
}
.service_feature.training .service_feature_row + .service_feature_row{
  margin-top: 0;
}
.service_feature_head_num.bg_wh{
  display: inline-block;
  background: #fff;
  color: #2b4c5a;
  padding: 3px 6px 0px;
}
.tt_en.ja_mid .tt_en_h2{
  font-size: 24px;
  line-height: 1.4em;
}
.service_feature.training .service_feature_txt{
  font-weight: 500;
}

/*sec3*/
.tt_en_box{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  padding-bottom: 14px;
  margin-bottom: 40px;
}
.tt_ja{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
}
.service_contents_head_ttl1.sans{
  font-weight: 500;
  letter-spacing: 0;
  padding-bottom: 11px;
  line-height: 1.23em;
}
.service_contents_txt.sans{

}
.service_contents_reco_ttl.sans{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 1px solid #2b4c5a;
}
.service_contents_reco_list.sans{
  font-size: 16px;
  font-weight: 500;
}
.service_contents_reco_list.sans p{
  letter-spacing: 0;
}
.service_contents_reco_list.sans p:before{
  top: 0;
}
@media (max-width:767px){
  .tt_en.sans .tt_en_h2,
  .staff_about_ttl.sans,
  .service_contents_reco_list p{
    line-height: 1.4em;
  }
}
@media (min-width:768px){
  /*sec1*/
  .training_h2{
    font-size: 40px;
    margin-bottom: 60px;
  }
  .tt_en.sans .tt_en_h2{

  }

  .staff_about_ttl.sans{

  }
  .staff_about_txt.sans{
    line-height: 2.25em;
  }

  /*sec2*/
  .service_feature.training .service_feature_row + .service_feature_row{
    margin-top: 0;
  }
  .service_feature.training .service_feature_row{
    padding-bottom: 60px;
    border-bottom: 1px solid #fff;;
  }
  .service_feature.training .service_feature_row:nth-child(n+2){
    padding-top: 60px;
  }
  .service_feature_head_num{

  }
  .tt_en.ja_mid .tt_en_h2{
    font-size: 26px;
  }
  .service_feature.training .service_feature_txt{

  }
  .pg_training-and-promotion .section.sec2 .read_more{
    margin-top: 69px;
  }

  /*sec3*/
  .tt_en_box{

  }
  .tt_ja{
    padding-bottom: 6px;
  }
  .service_contents_head_ttl1.sans{

  }
  .service_contents_txt.sans{
    line-height: 2.25em;
  }
  .service_contents_reco_ttl.sans{
    font-size: 20px;
  }

  .service_contents_reco_list.sans{
    font-size: 18px;
  }
  .service_contents_reco_list.sans p{
    padding-left: 22px;
  }
  .service_contents_reco_list.sans p+p{
    margin-top: 21px;
  }

  .pg_training-and-promotion .section.sec3 .read_more{
    margin-top: 57px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .training_h2{
    font-size: 50px;
  }
  .tt_en.sans .tt_en_h2{

  }
  .staff_about_ttl.sans{
    font-size: 28px;
  }
  .staff_about_txt.sans{

  }

  /*sec2*/
  .service_feature.training .service_feature_row + .service_feature_row{
    margin-top: 0;
  }
  .service_feature_head_num.bg_wh{
    margin-bottom: 29px;
  }
  .tt_en.ja_mid .tt_en_h2{
    font-size: 35px;
  }
  .service_feature.training .service_feature_txt{

  }

  /*sec3*/

  .tt_en_box{
    margin-bottom: 74px;
  }
  .tt_ja{

  }
  .service_contents_head_ttl1.sans{

  }
  .service_contents_txt.sans{

  }
  .service_contents.training .service_contents_head{
    margin-bottom: 18px;
  } 
  .service_contents.training .service_contents_box1{
    padding-top: 10px;
  }
  .service_contents.training .service_contents_box3{
    padding: 29px 95px 58px;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .training_h2{
    font-size: 40px;
  }

  .service_feature.training .service_feature_row + .service_feature_row{
    margin-top: 0;
  }
  .tt_en.sans + .staff_about {
    margin-top: 54px;
  }
  .service_feature.training .service_feature_box1{
    width: 48.64%;
  }
  .tt_en.large + .sec_sub_en.sans{
    font-size: 28px;
  }
  * + .service_feature.training{
    margin-top: 103px;
  }

  .service_contents.training .service_contents_row + .service_contents_row{
    margin-top: 88px;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .training_h2{
    font-size: 65px;
  }

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


}



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

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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{
  
}
.pg_company .section.sec3{

}
.pg_company .section.sec4{

}

.pg_company .largeNav{
  margin-bottom: 0;
}
.pg_company .largeNav .tt_ja{
  padding-bottom: 13px
}
.pg_company .largeNav .read_more_a{
  font-size: 16px;
}

@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{
    
  }
  .pg_company .section.sec2{
    padding-top: 65px;
  }
  .pg_company .section.sec3{
    padding-top: 70px;
  }
  .pg_company .section.sec4{
    padding-top: 100px;
  }
  
  .pg_company .tt_en_box{
    padding-bottom: 5px;
  }
}
@media (min-width:1024px){


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

  .pg_company .largeNav{
    margin-bottom: 0;
  }
  .pg_company .largeNav .read_more_a{
    font-size: 20px;
  }

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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

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

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

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


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


}



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

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}

.news_detail{
  border-bottom: 1px solid #3b5b74;
  padding-bottom: 30px;
}
.news_detail .meta{
  display: flex;
  align-items: center;
}
.news_detail .date{
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  padding-top: 4px;
  margin-right: 20px;
}
.news_detail .category{
  text-align: center;
}
.news_detail .category span{
  background: #2b4c5a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  padding: 10px 38px 5px 38px;
}
.news_detail .title{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  border-bottom: 1px solid #3b5b74;
  padding-bottom: 10px;
  margin-top: 10px;
}
.news_detail .post_content{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.875em;
  padding-top: 30px;
}

.news_detail .post_content .btn_1{
  position: relative;
  display: flex;
  align-items: center;
  color: #638c0b;;
}
.news_detail .post_content .btn_1:after{
content: "";
    display: block;
    width: 15px;
    aspect-ratio: 1;
    background-image: url(https://w-asobi.com/system_panel/uploads/images/arrow-circle-right-solid.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
/*    position: absolute;
    z-index: 1;
    top: 52%;
    right: 18px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);*/
    transition: 0.2s all;
        margin-bottom: 3px;
        margin-left: 10px;
}
@media (max-width:767px){

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

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

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

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

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

  }

  .news_detail{
    padding-bottom: 42px;
  }
  .news_detail .meta{

  }
  .news_detail .date{

  }
  .news_detail .category{

  }
  .news_detail .category span{

  }
  .news_detail .title{
    font-size: 20px;
  }
  .news_detail .post_content{
    padding-top: 40px;
  }
  .pg_news .read_more{
    margin-top: 56px;
  }
}
@media (min-width:1024px){

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


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

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

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

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

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

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

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #638c0b;
  color: #FFF;
  padding: 14px 10px 10px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 6px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  font-family: var(--font-en);
  padding-left: 31px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

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

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

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

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

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 0;
  }

}






/*******************************
*　新着詳細各記事用
********************************/
/*We are a proud local operator.*/
.news_detail .post_content .image_wrapper{
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.imgonly{
  margin: 30px 0;
}

.detail_wrap.wrap01{
  margin: 30px 0;
}
.detail_wrap.wrap02{
  width: 100%;
}
.detail_wrap .text_wrap .ttl_colored {
  color: white;
  background-color: #032859;
  text-align: center;
  border-radius: 27px;
  width: 100%;
  padding: 3px 0 2px;
  margin: 0 auto 15px;
}
.detail_wrap ul {
  font-size: 80%;
  background: #ededed;
  border-radius: 10px;
  padding: 10px 15px 10px 30px;
  margin-left: 1em;
  margin-bottom: 30px;
}

h2.lined{
  border-bottom: #032859 2px solid;
  margin-bottom: 13px;
  line-height: 1.667;
}
.lv_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lv_wrap h2.colored {
  width: 100%;
  color: white;
  background-color: #003366;
  text-align: center;
  line-height: 50px;
  margin-bottom: 50px;
}
.ttl_b{
  font-size: 1.2rem;
  color: #003366;
}
.lv_wrap{
  margin-top: 50px;
}

.entry-content h2{
  font-size: 1.4rem; 
}

.entry-content p{
  margin: 30px 0;
}

.news_detail .post_content img{
  margin:30px 0;
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /*We are a proud local operator.*/
  .news_detail .post_content .image_wrapper img{
    width: 50%;
  }
  .detail_wrap.wrap01{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }  
  .detail_wrap.wrap02 .text_wrap{
    width: 100%;
  }
  .detail_wrap .text_wrap{
    width: 47%;
    order: 1;
  }
  .detail_wrap.wrap01 .imgwrap{
    width: 47%;
    order: 2;
  }

  section#notes_02 .lv_wrap .imgonly,
  section#notes_02 .lv_wrap .text_wrap{
    width: 47%;
  }

  .news_detail .post_content img{
    width: 75%;
  }
}
@media (min-width:1024px){


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


}
