@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Bebas Neue", 'Noto Sans JP', sans-serif;
  --font-en2: "Outfit",'Noto Sans JP', sans-serif;
  --font-mincho: 'Shippori Mincho B1', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--txt-color);
  /*background: #B6A991;*/
  background: #FFF;
  background-image: url('https://well-biwako.com/system_panel/uploads/images/body_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}

.container{
  padding-left: 20px;
  padding-right: 20px;
}
@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);
  }
  
  .container{
    padding-left: 25px;
    padding-right: 25px;
  }
}
@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: 4;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

h1, h2, h3, h4, h5, h6{
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: 1.4;
}
p{
  margin: 0;
  letter-spacing: inherit;
}


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;
}
u{
  display: inline-block;
  text-decoration: 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;
  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){

  .hdr1 {
    justify-content: center;
  }

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

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

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


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

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

  /* ロゴ */
  .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: 48px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: fixed;
  /*position: absolute;*/
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1;
}
.mv_img{
  background: #B6A991;
  margin: -15px -15px 0;
  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_h1{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  font-family: var(--serif-jp);
  margin-top: 20px;
}

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

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

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

.mv_left{
  display: none;
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
    margin: 0 -20px;
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
  }

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

  }
  .mv_txt_p2{

  }

  .mv_left{
    display: none;
    width: 39.06%;
    position: absolute;
    top: 50%;
    left: 8.3%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
  }
  .mv_logo{

  } 
  .mv_h1{

  }
  .mv_text{

  }
  .mv_links{
    display: flex;
    flex-wrap: wrap;
  }
  .mv_link_item{

  }

  .mv_sub_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top:30px;
  }
  .mv_sub_link_item{
    margin: 0 25px;
  }
  .mv_sub_link_item a{
    display: inline-block;
    font-size: 20px;
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1;
    border-bottom: 1px solid #3d3b38;
  }
  .mv_sub_link_item a p{
    letter-spacing: 0;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
  }

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

  }
  .mv_txt_p2{

  }


  .mv_left{
    display: block;
    width: 42%;
    left: 4.3%;
  }
  .mv_logo{

  } 
  .mv_logo img{
    width: 200px;
  }
  .mv_h1{
    font-size: 22px;
    /*font-weight: 400;*/
    /*letter-spacing: 0;*/
    /*font-family: "Zen Maru Gothic", sans-serif;*/
    margin-top: 20px;
  }
  .mv_text{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.94;
    margin-top: 17px;
  }
  .mv_text p{
    letter-spacing: 0;
  }
  .mv_links{
    display: flex;
    flex-wrap: wrap;
    gap: 8px 8px;
    margin-top: 20px;
  }
  .mv_link_item{
    width: calc((100% - 8px) / 2);
  }
  .mv_link_item a{
    display: block;
    background: #333333;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    font-family: var(--sans-jp);
    
    /*font-family: "Zen Maru Gothic", sans-serif;*/
    font-weight: 500;
    padding: 7px 0;
  }
  .mv_link_item a p{
    letter-spacing: 0;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
  }

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

  }
  .mv_txt_p2{

  }
  
  .mv_logo img{
    width: 364px;
  }


  .mv_left{
    display: block;
    width: 39.06%;
    width: 42%;
    left: 8.3%;
  }
  .mv_logo img{
    width: 250px;
  } 
  .mv_h1{
    font-size: 25px;
    margin-top: 25px;
  }
  .mv_text{
    font-size: 17px;
  }
  .mv_links{
    gap:8px;
    margin-top: 42px;
  }
  .mv_link_item{
    width: calc(50% - 8px);
  }

  .mv_sub_links{
    margin-top: 30px;
  }
}
@media (min-width:1470px){

  .mv_h1{
    font-size: 28px;
    margin-top: 40px;
  }
  
}
@media (min-width:1536px){
  .mv_links{
    gap:8px;
    margin-top: 42px;
  }
  .mv_link_item{
    width: calc(33.33% - 6.3px);
  }
  
}
@media (min-width:1720px){
  
  .mv_logo img{
    width: 364px;
  }
  
  .mv_h1{
    font-size: 31px;
    margin-top: 40px;
  }
  
  .mv_links{
    gap:8px;
    margin-top: 42px;
  }
  .mv_link_item{
    width: calc(25% - 6px);
  }
  .mv_sub_links{
    margin-top: 55px;
  }
}


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

/* サイドバー */
.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{
  background: #a2c8cb;
  /*background-image: url('https://sit-9067628.sibloo.com/system_panel/uploads/images/ftr_wave.png');*/
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  /*color: #FFF;*/
  padding: 75px 15px 0;
  margin-top: 0;
  margin: 0 -15px;
}
.gjs-dashed .footer{
  width: 460px;
  margin: 50px auto 0;
}

.ftr1{
  
}

.ftr_logo{
  text-align: center;
  margin-bottom: 30px;
}

.ftr_reserve{
  background: #ECE6D8;
  color: var(--txt-color);
  padding: 50px 30px 65px;
}
.ftr_reserve_ttl_en{
  font-size: 60px;
  font-family: var(--serif);
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}
.ftr_reserve_txt{
  font-size: 22px;
  /*font-family: "Zen Maru Gothic", san-serif;*/
  letter-spacing: 0;
  line-height: 1.54;
  text-align: center;
  margin-bottom: 30px;
}

.ftr_links{
  margin-top: 100px;
}
.ftr_links_item{
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #585858;
}
.ftr_links_item + .ftr_links_item{
  margin-top: 13px;
}
.ftr_links_item_txt1{
  width: 115px;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--serif);
  letter-spacing: 0;
  color: var(--moss-light);
}
.ftr_links_item_txt2{
  width: calc(100% - 115px);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--on-dark-soft);
  padding-left: 32px;
  position: relative;
  z-index: 1;
}
.ftr_links_item_txt2:before{
  content: "";
  width: 15px;
  height: 2px;
  background: currentColor;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.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_info{
  margin-top: 65px;
  text-align: center;
}
.ftr_info_txt1{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.777;
}
.ftr_info_txt2{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.777;
  margin-top: 20px;
}

.ftr_map{
  margin-top: 80px;
  padding: 0 5px; 
}
.ftr_map iframe{
  width: 100%;
  height: 485px;
  border: 0;
  
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 16px;
  text-align: center;
  background: #2927d7;
  color: #FFF;
  padding: 8px 10px;
  margin-top: 130px;
  margin-left: -20px;
  margin-right: -20px;
}
.ftr_copy a:hover{
  color: #FFF;
  opacity: 0.8;
}

/* 追尾スマホメニュー */
.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: var(--main-color);
  color: #FFF;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: var(--main-color);
}
.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;
}



@media (min-width:375px){

}
@media (max-width:1023px){
  
  body{
    padding-bottom: 56px;
  }
  
  .footer{
    margin: 0 -20px;
  }

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

  .ftr_logo{
    text-align: center;
  }
  .ftr_logo img{
    width: 250px;
  }
  
  .ftr_map{
    padding: 0;
  }
  
  .ftr_info{
    margin-top: 45px;
  }
  .ftr_info_txt1{
    font-size: 16px;
  }
  .ftr_info_txt2{
    font-size: 15px;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 0;
  }
}
@media (min-width:1200px){

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

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

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

}

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


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

.section.beige{
  background-color: #c3b9a9;
}
.section.wide{
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}

/* コンテナ */
.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: 20px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 10px;
}
* + .read_more{
  margin-top: 30px;
}
.read_more a{
  width: 350px;
  max-width: 100%;
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--olive);
  background: var(--main-color);
  border-radius: 29px;
  color: #fff;
  padding: 10px 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: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #FFF;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
}
.read_more a:hover{
  transform: scale(0.96);
}
.read_more a:hover:after{
  
}
.read_more a:hover:after{
  
}

.read_more .blue{
  background: #2927d7;
  color: #FFF;
}
.read_more .blue2{
  background: #0068b7;
  color: #FFF;
}
.read_more .orange{
  background: #eb6100;
  color: #FFF;
}


/* 見出し */
.tt2{
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 26px;
}
.tt2_en{
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  color: #81acaf;
}
.tt2_ja{
  font-size: 15px;
  font-weight: 700;
  margin-top: 4px;
}
.tt2_ja.fw600{
  font-weight: 600;
}
.tt2.bdrBtm{
  
}

/* 文章 */
.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: transparent;
  border: 1px solid #000;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #000;
}



@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;
  }
  
  .section.wide{
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 15px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 350px;
    font-size: 15px;
    padding: 10px 20px;
    
  }



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

  }


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

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


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

}




/* レイアウト */
.layout_main{
  max-width: 100%;
  border: 0;
  padding: 15px 15px;
  padding-bottom: 0;
  background: #f0f6f6;
  background-repeat: repeat;
  position: relative;
  z-index: 1;
}
.gjs-dashed .layout_main{
  padding-bottom: 100px;
}

/* メニューレイアウト */
.layout_menu{
  position: fixed;
  z-index: 0;
  top: 35px;
  bottom: 35px;
  left: 30px;
  right: 30px;
}
.layout_menu_box1{
  display: flex;
  align-items: center;
  padding-left: 45px;
  height: 100%;
}
.layout_menu_box2{
  width: 525px;
  /*position: absolute;
  z-index: 1;
  top: 45%;
  left: calc(50% + 265px);
  transform: translate(0, -50%);*/
}

/* ロゴ */
.hdr_logo{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

/* メニュー */
.hdr_menu_links{
  display: flex;
  flex-direction: column;
  gap: 20px 10px;
  width: 240px;
  margin-top: -90px;
}
.hdr_menu_links_a{
  width: 100%;
  background: #FFF;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 10px 6px;
}

/* 健康増進 */
.hdr_health{
  color: #FFF;
}
.hdr_health_ttl{
  font-size: 28px;
  font-weight: 700;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
  /*text-shadow: 0.5px 0.866px 4.6px rgba(24, 24, 24, 1);*/
  filter: drop-shadow(0.5px 0.866px 4.6px rgba(24, 24, 24, 1))
}
.hdr_health_txt{
  font-size: 18px;
  font-weight: 700;
  line-height: 2.111;
  text-shadow: 0.5px 0.866px 4.6px rgba(24, 24, 24, 1);
}
.hdr_health_img{
  margin-top: 20px;
}


/* 見出し */
.tt2{
  
}

/* 共通文章 */
.content_desc{
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
.content_desc.lh1777{
  line-height: 1.777;
}
.content_desc.lh2111{
  line-height: 2.111;
}

@media (max-width:1023px){
  .layout_menu{
    display: none;
  }
}

@media (min-width:768px){
  
  /* レイアウト */
  .layout_main{
    width: 466px;
    border: 8px solid #FFF;
    /*margin-right: 50px;*/
    margin-right: auto;
    margin-left: auto;
    margin-top: 62px;
    padding: 0 20px;
  }
}
@media (min-width:1024px){
  
  /* レイアウト */
  .layout_main{
    margin-right: 50px;
    margin-left: auto;
  }
  
  /* メニューレイアウト */
  .layout_menu{
    position: fixed;
    z-index: 0;
    top: 35px;
    bottom: 35px;
    left: 30px;
    right: 30px;
  }
  .layout_menu_box1{
    display: flex;
    align-items: center;
    padding-left: 45px;
    /*height: 100%;*/
    height: auto;
  }
  .layout_menu_box2{
    width: 400px;
    /*position: absolute;*/
    /*z-index: 1;*/
    /*top: 45%;*/
    /*left: calc(50% + 265px);*/
    /*transform: translate(0, -50%);*/
    margin-top: 20px;
  }

  /* ロゴ */
  .hdr_logo{
    width: 280px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }

  /* メニュー */
  .hdr_menu_links{
    display: flex;
    flex-direction: column;
    gap: 10px 10px;
    width: 240px;
    margin-top: 100px;
  }
  .hdr_menu_links_a{
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 10px 6px;
  }

  /* 健康増進 */
  .hdr_health{
    color: #FFF;
  }
  .hdr_health_ttl{
    font-size: 22px;
  }
  .hdr_health_txt{
    font-size: 16px;
    line-height: 1.875;
  }
  .hdr_health_img{
    width: 280px;
    margin-top: 20px;
  }
  
}
@media (min-width:1200px){
  
  .layout_main{
    margin-right: auto;
    margin-left: auto;
  }
  
  /* メニューレイアウト */
  .layout_menu{
    top: 35px;
    bottom: 35px;
    left: 30px;
    right: 30px;
  }
  .layout_menu_box1{
    display: flex;
    align-items: center;
    padding-left: 45px;
    height: 100%;
  }
  .layout_menu_box2{
    width: 525px;
    width: 340px;
    position: absolute;
    z-index: 1;
    top: 45%;
    left: calc(50% + 265px);
    transform: translate(0, -50%);
    margin-top: 0;
  }

  /* ロゴ */
  .hdr_logo{
  }

  /* メニュー */
  .hdr_menu_links{
    gap: 20px 10px;
    width: 240px;
    margin-top: 0;
  }
  .hdr_menu_links_a{
    font-size: 18px;
  }

  /* 健康増進 */
  .hdr_health{
    color: #FFF;
  }
  .hdr_health_ttl{
    font-size: 24px;
  }
  .hdr_health_txt{
    /*font-size: 18px;*/
    /*line-height: 2.111;*/
  }
  .hdr_health_img{
    width: auto;
    margin-top: 20px;
  }
  
  
  .content_desc{
    font-size: 18px;
    line-height: 2;
  }
  
}
@media (min-width:1366px){
  
  /* レイアウト */
  .layout_main{
    margin-right: auto;
    margin-left: auto;
  }
  
  
}
@media (min-width:1470px){
  
  .hdr_logo{
    width: 380px;
  }
  .layout_menu_box2 {
     width: 430px;
  }
  
  
  
}
@media (min-width:1536px){

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

  
  /* ロゴ */
  .hdr_logo{
    width: auto;
  }
  
  /* メニューレイアウト */
  .layout_menu{
  }
  .layout_menu_box1{
    display: flex;
    align-items: center;
    padding-left: 45px;
    height: 100%;
  }
  .layout_menu_box2{
    width: 525px;
    position: absolute;
    z-index: 1;
    top: 45%;
    left: calc(50% + 265px);
    transform: translate(0, -50%);
  }

  /* ロゴ */
  .hdr_logo{
  }

  /* メニュー */
  .hdr_menu_links{
    gap: 20px 10px;
    width: 240px;
    margin-top: -90px;
  }
  .hdr_menu_links_a{
    font-size: 18px;
  }

  /* 健康増進 */
  .hdr_health{
    color: #FFF;
  }
  .hdr_health_ttl{
    font-size: 28px;
  }
  .hdr_health_txt{
    font-size: 18px;
    line-height: 2.111;
  }
  .hdr_health_img{
    margin-top: 20px;
  }
  

  
}



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

}
.pg_home .section.sec1{
  padding-top: 60px;
}
.pg_home .section.sec2{
  padding-top: 45px;
  padding-bottom: 0;
}
.pg_home .section.sec3{
  padding-top: 35px;
  padding-bottom: 25px;
  background: #FFF;
}
.pg_home .section.sec4{
  padding-top: 100px;
  padding-bottom: 75px;
}
.pg_home .section.sec5{
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url('https://well-biwako.com/system_panel/uploads/images/free_bg.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
}
.pg_home .section.sec6{
  background-image: url('https://well-biwako.com/system_panel/uploads/images/mediacal_bg.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
  padding-top: 80px;
  padding-bottom: 75px;
}
.pg_home .section.sec7{
  padding-top: 100px;
}
.pg_home .section.sec8{
  padding-bottom: 145px;
}

.pg_home .section.sec1 .read_more{
  margin-top: 35px;
}
.pg_home .section.sec4 .read_more{
  margin-top: 35px;
}
.pg_home .section.sec5 .read_more{
  margin-top: 35px;
}
.pg_home .section.sec6 .read_more{
  margin-top: 35px;
}
.pg_home .section.sec7 * + .home_about_img{
  margin-top: 40px;
}
.pg_home .section.sec7 .read_more{
  margin-top: 35px;
}
.pg_home .section.sec8 .tt2{
  margin-bottom: 50px;
}
.pg_home .section.sec8 .read_more{
  margin-top: 45px;
  
}

.home_spacer{
  margin-top: 45px;
  height: 50px;
  border-top: 1px solid;
}

@media (max-width:767px){

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

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


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


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


}


/* ページMV */
.home_mv{
  margin: -15px -15px 0;
  position: relative;
  z-index: 1;
}
.home_mv_img{
  
}
.home_mv_img img{
  width: 100%;
}
.home_mv_img:before{
  
}

.home_mv_txt{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.444;
  font-family: var(--font-mincho);
  color: #fff;
  text-shadow: 1.231px 1.576px 6px rgba(0, 0, 0, 1);
  position: absolute;
  z-index: 1;
  bottom: 45px;
  left: 0;
  right: 0;
  text-align: center;
  margin-left: 0.7em;
}
.home_mv_txt_h1{
  font-size: inherit;
  
}
.home_mv_txt p{
  letter-spacing: 0; 
}
.hdr_logo_box{
  position: absolute;
  top: 0.8rem;
  left: 0.8em;
  width: 128px;
  z-index: 2;
  pointer-events: none;
}

.home_mv_logo{
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
}

/* コンセプト */
.home_concept{
  
}
.home_concept_head{
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid;
}
.home_concept_head_txt{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #8fb6e0;
  color: #FFF;
  text-align: center;
  padding: 5px 5px 6px;
  text-shadow: 0.5px 0.866px 4.6px rgba(24, 24, 24, 1);
}
.home_concept_txt{
  font-size: 18px;
  font-weight: 700;
  line-height: 2.111;
  text-align: justify;
}
.home_concept_txt2{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.777;
  text-align: justify;
}
* + .home_concept_txt2{
  margin-top: 15px;
}

.home_concept_banner{
  
}
* + .home_concept_banner{
  margin-top: 10px;
}
.home_concept_ttl_img{
  
}
* + .home_concept_ttl_img{
  margin-top: 25px;
}

.home_concept_img{
  
}
* + .home_concept_img{
  margin-top: 10px;
}

/* ABOUT */
.home_about{
  padding: 0 15px;
}
.home_about.noPad{
  padding-left: 0;
  padding-right: 0;
}
* + .home_about{
  padding-top: 15px;
}
.home_about.bgwh{
  background: #FFF;
  padding-top: 35px;
  padding-bottom: 35px;
}

.home_about_ttl{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
}
.home_about_txt{
  
}
.home_about_img{
  text-align: center;
  margin-bottom: 15px;
}
* + .home_about_img{
  margin-top: 30px;
}

.home_points{
  margin-top: 30px;
}
.home_efforts{
  padding-top: 10px;
}
.home_efforts .box_tt{
  margin-bottom: 25px;
}
.home_efforts .flow_item .cmn_desc p{
  letter-spacing: 0;
}


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

}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
  .home_mv{
    margin: 0 -20px;
  }
  .home_about_ttl{
    line-height: 1.666;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){
  .home_mv_txt{
    font-size: 36px; 
  }
  
  
  

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

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

}



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

/* セクション設定 */

.pg_personal{

}
.pg_personal .section.sec1{
  padding-top: 80px;
  padding-bottom: 15px;
}
.pg_personal .section.sec2{
  padding-top: 0;
  padding-bottom: 45px;
}
.pg_personal .section.sec3{
  padding-top: 35px;
  padding-bottom: 0;
  background: #FFF;
  background-image: url('https://well-biwako.com/system_panel/uploads/images/mediacal_bg.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
}
.pg_personal .section.sec4{
  padding-top: 60px;
  padding-bottom: 45px;
  background: #FFF;
  background-image: url('https://well-biwako.com/system_panel/uploads/images/mediacal_bg.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
}
.pg_personal .section.sec5{
  padding-top: 80px;
  padding-bottom: 145px;
  background-image: url('https://well-biwako.com/system_panel/uploads/images/free_bg.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
}

.pg_personal .section.sec2 .read_more{
  margin-top: 35px;
}

.pg_personal .section.sec1 * + .home_about_img{
  margin-top: 50px;
  margin-bottom: 0;
}



/*
.pg_home .section.sec5{
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url('https://well-biwako.com/system_panel/uploads/images/free_bg.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
}
.pg_home .section.sec6{
  background-image: url('https://well-biwako.com/system_panel/uploads/images/mediacal_bg.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
  padding-top: 80px;
  padding-bottom: 75px;
}

.pg_home .section.sec1 .read_more{
  margin-top: 35px;
}
.pg_home .section.sec4 .read_more{
  margin-top: 35px;
}
*/


.personal_health_logo{
  text-align: center;
  margin-bottom: 12px;
}
.tt2 + .personal_health_logo{
  margin-top: -8px;
}


.price_tbl{
  background: #FFF;
  margin-top: 30px;
  margin-bottom: 25px;
}
.price_tbl .table_rows_th,
.price_tbl .table_rows_td{
  font-size: 18px;
  font-weight: 500;
  padding: 10px 10px 11px;
  border-color: #636170;
}
.price_tbl .table_rows_th{
  width: 138px;
  background: #b9d2ec;
  text-align: center;
  border-right: 1px solid #636170;
}
.price_tbl .table_rows_td{
  text-align: center;
}

.personal_trainer{
  
}
* + .personal_trainer{
  margin-top: 30px;
}
.personal_trainer .box_tt{
  margin-bottom: 20px;
}
.personal_trainer_txt1{
  padding: 0 30px;
}
.personal_trainer_txt1 + .personal_trainer_txt1{
  margin-top: 30px;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  
  .price_tbl .table_rows_th,
  .price_tbl .table_rows_td{
    font-size: 15px;
  }
  .price_tbl .table_rows_th {
    width: 120px;
  }
  
  .personal_trainer_txt1{
    padding: 0 15px;
  }
  .personal_trainer_txt1 + .personal_trainer_txt1{
    margin-top: 20px;
  }
}
@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_community{

}
.pg_community .section.sec1{
  padding-top: 80px;
}
.pg_community .section.sec1 * + .home_about_img{
  margin-top: 50px;
}
.pg_community .section.sec2{
  background-image: url('https://well-biwako.com/system_panel/uploads/images/mediacal_bg.png');
  background-repeat: repeat-y;
  background-size: 100% auto;
  padding-top: 30px;
  padding-bottom: 50px;
}
.pg_community .section.sec3{
  padding-top: 20px;
  padding-bottom: 145px;
}


.merit_item_box + .read_more{
  margin-top: 35px;
}


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


}





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





.cat_nav{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 8px;
  margin-bottom: 28px;
}
.cat_nav.mt1{
  margin-top: 30px;
}
.cat_nav.mb0{
  margin-bottom: 0;
}
.cat_nav_a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding-bottom: 2px;
  background: var(--olive);
  color: #FFF;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.cat_nav_a:after{
  content: "";
  background-size: contain;
  background-image: url('https://sit-9067628.sibloo.com/system_panel/uploads/images/more_arrow_right.png');
  background-repeat: no-repeat;
  width: 14px;
  aspect-ratio: 1 / 1;
  position: absolute;
  z-index: 1;
  top: 49%;
  right: 10px;
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cat_nav_a:hover{
  transform: scale(0.96);
  background: var(--moss);
  color: #FFF;
}
.cat_nav_a:hover:after{
  margin-right: 0;
}



.cat_nav.col2{
  
}
.cat_nav.col2 .cat_nav_a{
  width: calc((100% - 14px) / 2);
  min-height: 52px;
}



.cat_nav_a.insta{
  
}
.cat_nav_a.insta p:before{
  content: "";
  display: inline-block;
  width: 14px;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-image: url('https://sit-9067628.sibloo.com/system_panel/uploads/images/instagram-brands-solid-wh.svg');
  background-repeat: no-repeat;
  margin-right: 10px;
  margin-bottom: -1px;
}

@media (max-width:767px){
  
  .cat_nav_a p{
    letter-spacing: 0;
  }
}
@media (min-width:768px){
  
  
  .cat_nav{
    gap: 20px 14px;
  }
  .cat_nav_a{
    font-size: 16px;
  }
  .cat_nav_a:after{
    width: 20px;
    right: 10px;
  }
  
}

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

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


}

/* スライド */
.cmn_slides{
  margin-left: -15px;
  margin-right: -15px;
}
* + .cmn_slides{
  
}
.cmn_slides_item{
  /*width: 350px;*/
  background: #e5e5e5;
  padding: 10px 10px 20px;
  /*margin: 0 auto;*/
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}
.cmn_slides_item_img{
  
}
.cmn_slides_item_img.img_fit:before{
  padding-top: 69.697%;
}
.cmn_slides_item_desc{
  margin-top: 23px;
}
.cmn_slides_item_desc_ttl{
  font-size: 24px;
  font-weight: 600;
  font-family: var(--serif-jp), serif;
  letter-spacing: 0;
  border-bottom: 1px solid #888888;
  padding: 0 12px 15px;
  margin-bottom: 8px;
}
.cmn_slides_item_desc_txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.25;
  text-align: justify;
  padding: 0 5px;
}

.cmn_slides .swiper-slide{
  width: 350px;
  padding: 10px 0;
}

.cmn_slides_prev,
.cmn_slides_next{
  width: 15px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}
.cmn_slides_prev{
  left: 15px;
}
.cmn_slides_next{
  right: 15px;
}


.cmn_slides_prev.btm,
.cmn_slides_next.btm{
  width: 15px;
  top: auto;
  bottom: 0;
  transform: translate(0, 0);
}
.cmn_slides_prev{
  /*left: 15px;*/
}
.cmn_slides_next{
  /*right: 15px;*/
}

/* バナー */
.cmn_banner{
  text-align: center;
}
.cmn_banner + .cmn_banner{
  margin-top: 15px;
}
.cmn_banner a{
  display: block;
  text-align: center;
  transition: 0.2s all;
}
.cmn_banner a img{
  width: 100%;
}
.cmn_banner a:hover{
  transform: scale(0.96);
}

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


}

/* メイン部分 */

/* コラム */
.blog_list{
  
}
.blog_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 10px;
}
.blog_list .webgene-item{
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #474747;
}
.blog_list .webgene-item .meta .category span{
  
}
.blog_list .webgene-item .meta .date{
  font-family: var(--serif-accent);
}
.blog_list .webgene-item .title{
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
}
.blog_list .webgene-item .img{
  
}
.blog_list .webgene-item .img.img_fit:before{
  padding-top: 64.03%;
}

.blog_list .webgene-item .post_content{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #474747;
}


/* 新着情報 */
.blog_list2{
  
}
.blog_list2 .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  gap: 50px 10px;
}
.blog_list2 .webgene-item{
  width: 100%;
}
.blog_list2 .webgene-item .inner{
  display: block;
  background: #ececec;
  border-radius: 20px;
  padding: 15px 15px 5px;
  
}
.blog_list2 .webgene-item .meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog_list2 .webgene-item .meta .category{
  min-width: 140px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  padding: 4px 5px 5px;
  background: #7e6b5a;
  color: #FFF;
  border-radius: 12px;
  text-align: center;
}
.blog_list2 .webgene-item .meta .category span{
  
}
.blog_list2 .webgene-item .meta .date{
  font-size: 20px;
  font-family: var(--serif-accent);
}
.blog_list2 .webgene-item .title{
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog_list2 .webgene-item .img{
  border-radius: 20px;
}
.blog_list2 .webgene-item .img.img_fit:before{
  padding-top: 64.03%;
}
.blog_list2 .webgene-item .more{
  font-size: 18px;
  font-family: var(--serif-accent);
  text-align: right;
  margin-top: 5px;
  
}



.blog_list2 .webgene-item .post_content{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #474747;
}

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #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: 400px;
  }


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

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

}




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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}



.insta_sec{
  margin-bottom: 100px;
}
.insta_sec_head{
  text-align: center;
  margin-bottom: 15px;
}
.insta_sec_head_en{
  font-size: 50px;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(237, 231, 218, 0.16);
  padding-bottom: 10px;
  margin-bottom: 12px;
  
  color: var(--moss-light);
}

.tt4{
  text-align: center;
}
.ftr1 .tt4{
  color: var(--on-dark-soft);
}
.tt4_en{
  font-size: 40px;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: 0;
}
.tt4_ja{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 10px;
}


/* インスタ一覧 */
.insta_list{
  
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.insta_list .webgene-item{
  width: 100%;
}
.insta_list .webgene-item .inner{
  display: block;
  
}
.insta_list .webgene-item .img{
  
}
.insta_list .webgene-item .img.img_fit:before{
  padding-top: 132.92%;
}

.insta_list + .cat_nav{
  margin-top: 20px;
  padding: 0 15px;
}


@media (max-width:767px){


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

  

  .insta_sec{
    margin-bottom: 100px;
  }
  .insta_sec_head{
    text-align: center;
    margin-bottom: 15px;
  }
  .insta_sec_head_en{
    font-size: 60px;
    font-family: var(--serif);
    line-height: 1;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(237, 231, 218, 0.16);
    padding-bottom: 10px;
    margin-bottom: 12px;
  }

  .tt4{
    text-align: center;
  }
  .tt4_en{
    font-size: 50px;
    font-family: var(--serif);
    line-height: 1;
    letter-spacing: 0;
  }
  .tt4_ja{
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 10px;
  }


  /* インスタ一覧 */
  .insta_list{

  }
  .insta_list .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .insta_list .webgene-item{
    width: 100%;
  }
  .insta_list .webgene-item .inner{
    display: block;

  }
  .insta_list .webgene-item .img{

  }
  .insta_list .webgene-item .img.img_fit:before{
    padding-top: 132.92%;
  }

  .insta_list + .cat_nav{
    margin-top: 20px;
    padding: 0 15px;
  }

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


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


}
