@charset "UTF-8";

:root {
  --main-color: #2b6796;
  --sub-color: #e7161a;
}

/* 基本フォント: ゴシック */
body{
  /*font-family: "Zen Maru Gothic",  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: "M PLUS Rounded 1c",  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: #181818;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}




/* 管理画面の余白調整 */
.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;
}
.zenmaru{
  font-family: "Zen Maru Gothic", san-serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6, p,
.news_list .webgene-item a,
.news_detail .date,
.news_detail .txt
{
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
}
.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: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{

}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

.body_home .hdr_logo{
  opacity: 0;
}

/* メニュー全般 */
.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: 35px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 160px;
  padding: 7px 5px;
  border-radius: 10px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a+a{
  margin-left: 15px;
}
.hdr_contact a.email{
  background: #009e96;
}
.hdr_contact a.agent{
  background: #f39800;
}
/*.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{
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{

}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 78px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 10px 15px 10px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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


}
@media (min-width:1024px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 78px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

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

  .hdr1{
    padding-left: 30px;
    padding-right: 25px;
  }
  
  /* ロゴ */
  .hdr_logo{
    
  }
  .hdr_logo img{
    width: 200px;
  }

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

  }
  
  

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

  .hdr1{
    padding-left: 30px;
    padding-right: 25px;
  }
  
  /* ロゴ */
  .hdr_logo{
    
  }
  .hdr_logo img{
    width: auto;
  }

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

  }
  
  

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}

/* MV見出し */
.mv_head{
  width: 300px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


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

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

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

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

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

  /* MV見出し */
  .mv_head{
    width: 480px;
  }
  
  /* MVテキスト */
  .mv_txt{
    width: 600px;
    bottom: auto;
    top: 60px;
  }

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


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

  /* MV見出し */
  .mv_head{
    width: auto;
  }
  
  /* MVテキスト */
  .mv_txt{
    top: 80px;
    bottom: auto;
  }

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

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

  /* MV見出し */
  .mv_head{
  }
  
  /* MVテキスト */
  .mv_txt{
    width: 1110px;
    bottom: auto;
    top: 85px;
  }

}


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

/* サイドバー */
.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{
  height: 100px;
  background-image: url(/system_panel/uploads/images/pg_header_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.pg_header_txt{
  position: absolute;
  z-index: 1;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
}
.pg_header_txt img{
  height: 28px;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}


@media (min-width:768px){
  .pg_header{
    height: 200px;
    /*margin-bottom: 40px;*/
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  
  .pg_header_txt{
    width: 80%;
  }
  .pg_header_txt img{
    height: 40px;
  }

}
@media (min-width:1024px){
  .pg_header{
    height: 250px;
    /*margin-bottom: 70px;*/
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  
  .pg_header_txt{
    width: 80%;
  }
  .pg_header_txt img{
    height: 50px;
  }

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

  .pg_header{
    height: 400px;
    /*margin-bottom: 70px;*/
  }
  
  .pg_header_txt{
    width: 80%;
  }
  .pg_header_txt img{
    height: auto;
  }

}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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

.ftr_2_box1_large_txt{
  pointer-events: none;
}

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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
}

.ftr_link{
  font-family: "Zen Maru Gothic", san-serif;
}


.body_home .ftr_contact_wrap,
.body_howToPlay .ftr_contact_wrap,
/*.body_scene .ftr_contact_wrap,*/
.body_company .ftr_contact_wrap,
.body_news .ftr_contact_wrap,
.body_newsDetail  .ftr_contact_wrap,
.body_thanks .ftr_contact_wrap{
  margin-top: 0!important;
}

/* 追尾スマホメニュー */
.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: #cab386;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  width: 25.3%;
  border-right: 1px solid #ef7f1a;
}

.footer_fix .footer_fix_item_1.bl{
  background: #00479d;
  color: #FFF;
}
.footer_fix .footer_fix_item_1.ye{
  background: #e5004f !important;
}
  

.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #cab386;
}
.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:767px){

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
}
@media (min-width:1200px){

}


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


/* テーブル用 */
.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: #eeeeee;
  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: #f39800;
  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{
  padding: 15px;
  width: 300px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  background: #0068b7;
  border: 3px solid #fff;
  border-radius: 28px;
  box-shadow: 0.5px 0.866px 3px 0px rgba(24, 24, 24, 0.5);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  
}
.read_more a.read_more_a_xl {
    padding: 24px 15px;
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "＞";
  padding: 10px;
  /*width: 100%;*/
  font-family: "Zen Maru Gothic", san-serif;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


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

/* SEO用 */
.cmn_hidden_h_txt{
  display: none;
  font-size: 0;
}
.gjs-dashed .cmn_hidden_h_txt{
  display: block;
  background: #d5d5d5;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 14px;
  text-align: center;
}
.gjs-dashed .cmn_hidden_h_txt:before{
  display: block;
  content: "代替テキスト設定";
  font-size: 12px;
  background: beige;
  padding: 5px 5px;
  margin-bottom: 5px;
}

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

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

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

}


/* 背景パターン */
.section.bg1{
  background-image: url(/system_panel/uploads/images/bg_pattern1.png);
}
.section.bg2{
  background-image: url(/system_panel/uploads/images/bg_pattern2.png);
}
.section.bg3{
  background: #f4efe7;
}
.section.bg4{
  background: #FFF;
  background-image: url(/system_panel/uploads/images/bg_pattern4.png);
  background-position: center top;
  background-size: auto 100%;
}

/* 枠付きBOX */
.cmn_bdr_box{
  background: #FFF;
  border-radius: 20px;
  padding: 35px 15px 35px;
  position: relative;
  z-index: 1;
}
.cmn_bdr_box:before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background-image: 
    url(/system_panel/uploads/images/bg_parts1.png),
    url(/system_panel/uploads/images/bg_parts1.png),
    url(/system_panel/uploads/images/bg_parts1.png),
    url(/system_panel/uploads/images/bg_parts1.png)
    ;
  background-size: 17px 17px;
  background-repeat: no-repeat;
  background-position: 
    left 10px top 10px, 
    right 10px top 10px, 
    right 10px bottom 10px, 
    left 10px bottom 10px;
}
.cmn_bdr_box.type1{
  border: 10px solid #638c0b;
}
.cmn_bdr_box.type2{
  border: 5px solid #13b5b1;
}
.cmn_bdr_box.bg{
  background-image: url(/system_panel/uploads/images/cmn_about_bg.png);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
.cmn_bdr_box.bgpos1{
  background-position: center top -10px;
}
.cmn_bdr_box.bgpos2{
  background-position: center top 205px;
}
.cmn_bdr_box.bgpos3{
  background-position: center top -180px;
}
.cmn_bdr_box.bgpos4{
  background-position: center top -10px;
}

.cmn_about + .cmn_bdr_box{
  margin-top: 20px;
}

/* 悩みリスト */
.cmn_nayami{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -5px;
}
.cmn_nayami_item{
  width: 50%;
  padding: 0 5px;
}
.cmn_nayami_item:nth-child(n+3){
  margin-top: 20px;
}
.cmn_nayami_item_inner{
  aspect-ratio: 253 / 247;
  padding: 20px 20px 0;
  padding: 25px 18.1818% 0 13.0434%;
  background-image: url(/system_panel/uploads/images/cmn_nayami_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cmn_nayami_item_title{
  font-size: 14px;
  font-size: 3.733vw;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.2;
  letter-spacing: 0;
  background: #FFF;
  border-radius: 19.5px;
  text-align: center;
  padding: 4px 5px;
  margin-bottom: 5px;
}
.cmn_nayami_item_title p{
  letter-spacing: 0;
}
.cmn_nayami_item_txt{
  font-size: 12px;
  font-size: 3.2vw;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.625;
  line-height: 1.5;
  text-align: justify;
  text-shadow:
    0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 
    0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 
    0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 
    0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF, 
    0 0 3px #FFF, 0 0 3px #FFF, 0 0 3px #FFF;
  margin-right: -3px;
}
.cmn_nayami_item_txt p{
  letter-spacing: 0;
}

/* シリーズ */
.cmn_series{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cmn_series_item{
  width: 33.333%;
}
.cmn_series_item:nth-child(n+4){
  margin-top: 5px;
}
.cmn_series_item_img{
  margin-left: -5px;
  margin-right: 0;
}
.cmn_series_item_img a img{
  transition: 0.2s all;
}
.cmn_series_item_img a:hover img{
  transform: scale(1.01);
  filter: brightness(1.1);
}

.cmn_series + .cmn_point{
  margin-top: 50px;
}

/* 概要 */
.cmn_about{
  
}
.cmn_about_head{
  text-align: center;
  margin-bottom: 25px;
}
.cmn_about_head.mb2{
  margin-bottom: 10px;
}
.cmn_about_title{
  text-align: center;
  margin-bottom: 15px;
}
.cmn_about_txt,
.cmn_about_txt2{
  font-size: 16px;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 2;
  line-height: 1.875;
  text-align: justify;
  -webkit-transform: rotate(0.05deg);
  transform: rotate(0.05deg);
}
.cmn_about .cmn_about_txt strong{
  font-weight: 500;
  color: red;
}

.cmn_about .cmn_about_txt .bingo_text strong{
  font-weight: 600;
}

.cmn_about_txt p,
.cmn_about_txt2 p{
  /*letter-spacing: 0;*/
}
.cmn_about_img{
  margin-top: 20px;
  text-align: center;
}
.cmn_about_img p{
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.cmn_about_video{
  margin-top: 30px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cmn_about_video:before,
.cmn_about_video:after{
  content: "";
  position: absolute;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: contain;
}
.cmn_about_video:before{
  width: 52px;
  aspect-ratio: 158 / 269;
  background-image: url(/system_panel/uploads/images/cmn_about_video_illust1.png);
  left: 9.14%;
  left: 0;
  bottom: 0;
}
.cmn_about_video:after{
  width: 45px;
  aspect-ratio: 141 / 269;
  background-image: url(/system_panel/uploads/images/cmn_about_video_illust2.png);
  right: 10.85%;
  right: 0;
  bottom: 0;
}
.cmn_about_video iframe{
  border: 0;
}
.cmn_about_video .responsive_video{
  width: 80%;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
  z-index: 1;
}


/**/
.cmn_point{
  
}
.cmn_point_item{
  
}
.cmn_point_item:nth-child(n+2){
  
}
.cmn_point_item_inner{
  
}
.cmn_point_item_title{
  
}
.cmn_point_item_name{
  
}
.cmn_point_item_txt{
  
}
.cmn_point_item_icon{
  
}



/* ポイント */
.cmn_point{
  
}
.cmn_point_row{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.cmn_point_row + .cmn_point_row{
  border-top: 1px solid #e0ddd7;
  padding-top: 30px;
  margin-top: 30px;
}
.cmn_point_box1{
  width: 90%;
  order: 2;
  margin: 10px auto 0;
  position: relative;
  z-index: 1;
}
.cmn_point_box2{
  width: 100%;
  order: 1;
  padding-top: 45px;
  padding-left: 22px;
  position: relative;
  z-index: 1;
}
.cmn_point_img{
  
}
.cmn_point_img img{
  z-index: 2;
  border-radius: 10px;
  border: 1px solid #181818;
}
.cmn_point_img:after{
  content: "";
  background-image: url(/system_panel/uploads/images/point_img_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: 0;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.cmn_point_img.img_fit:before{
  padding-top: 84.21%;
}
.cmn_point_num{
  width: 80px;
  aspect-ratio: 128 / 110;
  background-image: url(/system_panel/uploads/images/point_num_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.cmn_point_num p{
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
  text-shadow    : 
       2px  2px 2px #ffffff,
      -2px  2px 2px #ffffff,
       2px -2px 2px #ffffff,
      -2px -2px 2px #ffffff,
       2px  0px 2px #ffffff,
       0px  2px 2px #ffffff,
      -2px  0px 2px #ffffff,
       0px -2px 2px #ffffff;
  transform: rotate(-15deg);
  
  position: absolute;
  z-index: 1;
  top: 32%;
  left: 54%;
  -webkit-transform: translate(-50%, -50%) rotate(-15deg);
  transform: translate(-50%, -50%) rotate(-15deg);
}
.cmn_point_title{
  margin-bottom: 10px;
  padding-right: 20px;
}
.cmn_point_title_h{
  display: inline-block;
  font-size: 20px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  /*text-align: justify;*/
  text-shadow    : 
       3px  3px 2px #ffffff,
      -3px  3px 2px #ffffff,
       3px -3px 2px #ffffff,
      -3px -3px 2px #ffffff,
       3px  0px 2px #ffffff,
       0px  3px 2px #ffffff,
      -3px  0px 2px #ffffff,
       0px -3px 2px #ffffff;
  color: #fe3636;
  position: relative;
  z-index: 1;
  
}
.cmn_point_title_h:first-child:after{
  content: "";
  width: 26px;
  aspect-ratio: 39 / 39;
  background-image: url(/system_panel/uploads/images/point_title_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -webkit-transform: translate(88%, -40%);
  transform: translate(88%, -40%);
}


.cmn_point_title_h strong{
  color: #f8001d;
  font-weight: inherit;
}
.cmn_point_title_h em{
  font-style: normal;
  font-weight: inherit;
}


.cmn_point_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  line-height: 1.875;
  text-align: justify;
}


.cmn_point_label{
  width: 200px;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -38.9%);
  transform: translate(0, -38.9%);
}
.cmn_point_icon{
  width: 40px;
  position: absolute;
  z-index: 3;
  bottom: -10px;
  right: -10px;
}

.cmn_point_row .anchor{
  width: 100%;
}

/* シーン用 */
.cmn_point_row.scene{
  
}
.cmn_point_row.scene + .cmn_point_row.scene{
  padding-top: 40px;
  margin-top: 40px;
}
.cmn_point_row.scene .cmn_point_img img{
  border: 0;
}
.cmn_point_row.scene .cmn_point_img:after{
  top: 5px;
  left: 5px;
}
.cmn_point_row.scene .cmn_point_img.img_fit:before{
  padding-top: 71.91%;
}
.cmn_point_row.scene .cmn_point_box1{
  width: 100%;
  order: 1;
  margin-top: 0;
}
.cmn_point_row.scene .cmn_point_box2{
  order: 2;
  padding-left: 0;
  padding-right: 0;
}
.cmn_point_row.scene .cmn_point_title_h{
  color: #181818;
}
.cmn_point_row.scene .cmn_point_title_h.bg_round strong{
  background: #fe3636;
    border-radius: 10px 0 0 10px; 
    padding: 4px 0 4px 17px;
}
.cmn_point_row.scene .cmn_point_title_h.bg_round em{
  background: #fe3636;
    border-radius: 0 10px 10px 0; 
    padding: 4px 17px 4px 0;
}
.cmn_point_row.scene .cmn_point_box2 .read_more{
  height: 120px;
  flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.cmn_point_row.scene .cmn_point_box2 .read_more_a.or{
  background: #f39800;
}
.cmn_point_row.scene .cmn_point_box2 .read_more_a.or:hover{
  background: #2aad79;
}



.bingo_color{
  
}
.bingo_color span:nth-child(1){
  color: #af00f8;
}
.bingo_color span:nth-child(2){
  color: #1686cd;
}
.bingo_color span:nth-child(3){
  color: #14ad79;
}
.bingo_color span:nth-child(4){
  color: #deb90a;
}
.bingo_color span:nth-child(5){
  color: #f87500;
}



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

  .cmn_point_row.scene .cmn_point_title_h.bg_round em{
    padding: 4px 5px 4px 0;
  }
  .cmn_point_row.scene .cmn_point_title_h.bg_round strong{
    padding: 4px 0 4px 5px;
  }
}
@media (min-width:768px){

  .anchor{
    top: -150px;
  }
  
  /* セクション */
  .section{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  
  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 300px;
    font-size: 16px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }
  

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }


  /* 枠付きBOX */
  .cmn_bdr_box{
    border-radius: 20px;
    padding: 50px 54px;
  }
  .cmn_bdr_box.slim,
  .cmn_bdr_box.type1.slim,
  .cmn_bdr_box.type2.slim{
    padding-left: 20px;
    padding-right: 20px;
  }
  .cmn_bdr_box:before{
    background-size: 34px 34px;
    background-position: 
      left 20px top 20px, 
      right 20px top 20px, 
      right 20px bottom 20px, 
      left 20px bottom 20px;
  }
  .cmn_bdr_box.type1{
    border-width: 10px;
  }
  .cmn_bdr_box.type2{
    border-width: 5px;
    padding-bottom: 50px;
  }
  .cmn_bdr_box.type2:before{
    background-position: 
      left 15px top 15px, 
      right 15px top 15px, 
      right 15px bottom 15px, 
      left 15px bottom 15px;
  }
  
  .cmn_about + .cmn_bdr_box{
    margin-top: 53px;
  }
  
  /* 悩みリスト */
  .cmn_nayami{
    margin: 0 -5px;
  }
  .cmn_nayami_item{
    width: 33.333%;
    padding: 0 5px;
  }
  .cmn_nayami_item:nth-child(n+3){
    margin-top: 0;
  }
  .cmn_nayami_item:nth-child(n+4){
    margin-top: 20px;
  }
  .cmn_nayami_item_inner{
    padding: 50px 46px 0 33px;
    padding: 30px 18.1818% 0 13.0434%;
  }
  .cmn_nayami_item_title{
    font-size: 18px;
    border-radius: 19.5px;
    padding: 7px 5px;
    margin-bottom: 10px;
  }
  .cmn_nayami_item_txt{
    font-size: 15px;
    line-height: 1.625;
  }
  
  
  /* シリーズ */
  .cmn_series{
    /*margin: 0 -15px;*/
  }
  .cmn_series_item{
    width: 25%;
    /*padding: 0 15px;*/
  }
  .cmn_series_item:nth-child(n+4){
    margin-top: 0;
  }
  .cmn_series_item:nth-child(n+5){
    margin-top: 10px;
  }
  .cmn_series_item_img{
    margin-left: -5px;
    margin-right: -0px;
  }
  
  .cmn_series + .cmn_point{
    margin-top: 70px;
  }
  
  /* 概要 */
  .cmn_about{

  }
  .cmn_about_head{
    margin-bottom: 55px;
  }
  .cmn_about_head.mb2{
    margin-bottom: 17px;
  }
  .cmn_about_title{
    margin-bottom: 35px;
  }
  .cmn_about_txt{
    font-size: 17px;
    line-height: 2;
    /*text-align: center;*/
  }
  .cmn_about_txt2{
    font-size: 17px;
    line-height: 2.111;
    /*text-align: center;*/
  }
  
  .cmn_about_txt.center{
    text-align: justify;
  }
  
  .cmn_about_img{
    margin-top: 20px;
  }
  .cmn_about_img p{
    font-size: 18px;
  }
  
  .cmn_about_video{
    margin-top: 50px;
    padding-bottom: 87px;
  }
  .cmn_about_video:before{
    width: 100px;
    left: 0;
  }
  .cmn_about_video:after{
    width: 90px;
    right: 0;
  }
  .cmn_about_video iframe{
    border: 0;
  }
  .cmn_about_video .responsive_video{
    width: 80%;
  }
  
  .pg_umarekawaribingo .section.sec2 .cmn_about_title{
    margin-bottom: 18px;
  }
  

  /* ポイント */
  .cmn_point{

  }
  .cmn_point_row{
  }
  .cmn_point_row + .cmn_point_row{
    padding-top: 40px;
    margin-top: 40px;
  }
  .cmn_point_box1{
    width: 34.23%;
    margin: 0;
  }
  .cmn_point_box2{
    width: 62%;
    margin-top: 0;
    padding-left: 40px;
  }
  .cmn_point_img:after{
    top: 10px;
    left: 10px;
  }
  .cmn_point_num{
    width: 100px;
    top: -7px;
    left: 0;
  }
  .cmn_point_num p{
    font-size: 14px;
  }
  .cmn_point_title{
    margin-bottom: 10px;
    padding-right: 0;
  }
  .cmn_point_title_h{
    font-size: 21px;
  }
  .cmn_point_title_h:after{
    width: 39px;
    -webkit-transform: translate(88%, -40%);
    transform: translate(88%, -40%);
  }
  .cmn_point_txt{
    font-size: 18px;
    line-height: 2;
  }
  
  .cmn_point_label{
    width: 240px;
  }
  .cmn_point_icon{
    width: 50px;
    bottom: -10px;
    right: -10px;
  }

  .cmn_point_row .anchor{
    width: 100%;
  }
  
  
  .cmn_point_row:nth-child(odd) .cmn_point_box1{
    order: 1;
  }
  .cmn_point_row:nth-child(odd) .cmn_point_box2{
    order: 2;
  }
  .cmn_point_row:nth-child(even) .cmn_point_box1{
    order: 2;
  }
  .cmn_point_row:nth-child(even) .cmn_point_box2{
    order: 1;
  }
  
  
  
  /* シーン用 */
  .cmn_point_row.scene{

  }
  .cmn_point_row.scene .cmn_point_img img{
  }
  .cmn_point_row.scene .cmn_point_img:after{
  }
  .cmn_point_row.scene .cmn_point_box1{
    width: 40.09%;
  }
  .cmn_point_row.scene .cmn_point_box2{
    width: 57.20%;
    padding-top: 10px;
    padding-left: 0;
  }
  .cmn_point_row.scene .cmn_point_box2 .read_more_a:nth-child(n+2){

  }
  .cmn_point_row.scene .cmn_point_box2 .read_more_a{
  width: 100%;
}
.cmn_point_row.scene .cmn_point_box2 .read_more{
  height: auto;
  flex-direction: row;
  justify-content: space-between;
}
  
  .cmn_point_row.scene + .cmn_point_row.scene{
    padding-top: 50px;
    margin-top: 50px;
  }
}
@media (min-width:1024px){
  
  /* セクション */
  .section{
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .section.bg4{
    background-size: cover;
  }
  
  .read_more a{
    width: 380px;
    font-size: 18px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a.large{
    padding: 23px 20px;
    border-radius: 36px;
  }
  .read_more a.read_more_a_xl {
    width: 100%;
    max-width: 500px;
    padding: 32px 20px;
    font-size: 24px;
  }
  
  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/
  
  /* 枠付きBOX */
  .cmn_bdr_box{
    padding: 50px 54px;
  }
  .cmn_bdr_box.slim,
  .cmn_bdr_box.type1.slim,
  .cmn_bdr_box.type2.slim{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 43px;
  }
  /*.cmn_bdr_box:before{
    background-size: 34px 34px;
    background-position: 
      left 20px top 20px, 
      right 20px top 20px, 
      right 20px bottom 20px, 
      left 20px bottom 20px;
  }*/
  .cmn_bdr_box.type1{
  }
  .cmn_bdr_box.type2{
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 77px;
  }
  
  

  /* 悩みリスト */
  .cmn_nayami{
    margin: 0 -5px;
  }
  .cmn_nayami_item{
    width: 25%;
    padding: 0 5px;
  }
  .cmn_nayami_item:nth-child(n+4){
    margin-top: 0;
  }
  .cmn_nayami_item:nth-child(n+5){
    margin-top: 20px;
  }
  .cmn_nayami_item_inner{
    padding: 30px 18.1818% 0 13.0434%;
  }
  .cmn_nayami_item_title{
    font-size: 16px;
    /*margin-bottom: 10px;*/
  }
  .cmn_nayami_item_txt{
    font-size: 15px;
  }
  
  /* シリーズ */
  .cmn_series{
    margin: 0 -15px;
  }
  .cmn_series_item{
    width: 16.666%;
    padding: 0 15px;
  }
  .cmn_series_item:nth-child(n+5){
    margin-top: 0;
  }
  .cmn_series_item:nth-child(n+7){
    margin-top: 17px;
  }
  .cmn_series_item_img{
    margin-left: -33px;
    margin-right: -12px;
  }
  
  .cmn_series + .cmn_point{
    margin-top: 120px;
  }
  
  /* 概要 */
  .cmn_about{

  }
  .cmn_about_head{
    /*margin-bottom: 55px;*/
  }
  .cmn_about_title{
    /*margin-bottom: 35px;*/
  }
  .cmn_about_txt{
    text-align: center;
  }
  .cmn_about_txt.center{
    text-align: center;
  }
  .cmn_about_txt p{
   letter-spacing:0;
  }
  .cmn_about_txt2{
    text-align: center;
  }
  
  .cmn_about_video{
    margin-top: 50px;
    padding-bottom: 87px;
  }
  .cmn_about_video:before{
    width: 158px;
    left: 0;
  }
  .cmn_about_video:after{
    width: 141px;
    right: 0;
  }
  .cmn_about_video iframe{
    border: 0;
  }
  .cmn_about_video .responsive_video{
    width: 600px;
  }
  
  
  
  /* ポイント */
  .cmn_point{

  }
  .cmn_point_row{
  }
  .cmn_point_row + .cmn_point_row{
    padding-top: 80px;
    margin-top: 80px;
  }
  .cmn_point_box1{
    width: 34.23%;
  }
  .cmn_point_box2{
    width: 62.61%;
    padding-top: 70px;
    padding-left: 58px;
  }
  .cmn_point_img:after{
    top: 10px;
    left: 10px;
  }
  .cmn_point_num{
    width: 128px;
    top: -7px;
    left: 0;
  }
  .cmn_point_num p{
    font-size: 18px;
  }
  .cmn_point_title{
    margin-bottom: 30px;
  }
  .cmn_point_title_h{
    font-size: 28px;
  }
  .cmn_point_txt{
    font-size: 20px;
  }
  
  /*シーン用*/
  .cmn_point_row.scene + .cmn_point_row.scene{
    padding-top: 90px;
    margin-top: 70px;
  }
  .cmn_point_row.scene .cmn_point_box2 .read_more_a{
  width: 44.88%;
}
.cmn_point_row.scene .cmn_point_box2 .read_more{
  height: auto;
  flex-direction: row;
  justify-content: space-between;
}
  
.cmn_point_title.short{
  margin-right: -16px;
}
.cmn_point_title.short .cmn_point_title_h.bg_round strong{
  padding: 4px 0 4px 5px;
}
.cmn_point_title.short .cmn_point_title_h.bg_round em{
  padding: 4px 5px 4px 0;
}
}
@media (min-width:1200px){

  /* コンテナ */
  .container{
    /*padding-left: 100px;*/
    /*padding-right: 100px;*/
  }
  
   .cmn_about_txt p{
   letter-spacing:0.075em;
  }
  
  /* 悩みリスト */
  .cmn_nayami{
    margin: 0 -17px;
  }
  .cmn_nayami_item{
    width: 25%;
    padding: 0 17px;
  }
  .cmn_nayami_item:nth-child(n+3){
    margin-top: 0;
  }
  .cmn_nayami_item:nth-child(n+4){
    margin-top: 0;
  }
  .cmn_nayami_item:nth-child(n+5){
    margin-top: 20px;
  }
  .cmn_nayami_item_inner{
    padding: 50px 46px 0 33px;
    padding: 50px 18.1818% 0 13.0434%;
  }
  .cmn_nayami_item_title{
    font-size: 21px;
    border-radius: 19.5px;
    padding: 7px 5px;
    margin-bottom: 13px;
  }
  .cmn_nayami_item_txt{
    font-size: 16px;
    line-height: 1.625;
  }

  
  /* 概要 */
  .cmn_about{

  }
  .cmn_about_head{
    margin-bottom: 55px;
  }
  .cmn_about_title{
    margin-bottom: 35px;
  }
  .cmn_about_txt{
    font-size: 20px;
    text-align: center;
  }
  .cmn_about_txt.mini{
    font-size: 18px;
  }
  .cmn_about_txt2{
    font-size: 18px;
  }
  .cmn_about_img{
    padding-left: 90px;
  }
  .cmn_about_img p{
    text-align: left;
    padding-left:145px;
  }
  
  
  .cmn_about_video{
    margin-top: 50px;
    padding-bottom: 87px;
  }
  .cmn_about_video:before{
    width: 158px;
    left: 9.14%;
  }
  .cmn_about_video:after{
    width: 141px;
    right: 10.85%;
  }
  .cmn_about_video iframe{
    border: 0;
  }
  .cmn_about_video .responsive_video{
    width: 600px;
  }
  
  /* ポイント */
  .cmn_point_label{
    width: 350px;
  }
  .cmn_point_icon{
    width: 60px;
  }
  .cmn_point_title_h{
    font-size: 34px;
  }
}

@media (min-width:1310px){
  
  /* コンテナ */
  .container{
    max-width: 1310px;
    padding-left: 100px;
    padding-right: 100px;
  }
  
}


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

}
.pg_home .section{
  /*padding-top: 50px;*/
  /*padding-bottom: 50px;*/
}
.pg_home .section.sec1{
  padding-top: 40px;
  padding-bottom: 40px;
}
.pg_home .section.sec2{
  padding-top: 40px;
  padding-bottom: 40px;
}
.pg_home .section.sec3{
  padding-top: 40px;
  padding-bottom: 0;
}
.pg_home .section.sec4{
  padding-top: 40px;
  padding-bottom: 40px;
}



/* About */
.home_about{
  
}
.home_about_head{
  text-align: center;
  margin-bottom: 20px;
}
.home_about_desc{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_desc_head{
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.home_about_desc_box1{
  width: 100%;
}
.home_about_desc_box2{
  width: 100%;
  margin-top: 20px;
}
.home_about_desc_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
  text-align: justify;
}

/* イベント */
.home_event_head{
  
  text-align: center;
  margin-bottom: 30px;
}

/* シリーズ */
.home_series{
  
}
.home_series_head{
  text-align: center;
  padding-top: 90px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}
.home_series_head:before,
.home_series_head:after{
  content: "";
  position: absolute;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  
}
.home_series_head:before{
  background-image: url(/system_panel/uploads/images/home_illust2.png);
  aspect-ratio: 168 / 269;
  width: 84px;
  top: 0;
  left: 0;
}
.home_series_head:after{
  background-image: url(/system_panel/uploads/images/home_illust3.png);
  aspect-ratio: 174 / 294;
  width: 87px;
  top: 0;
  right: 0;
}

/* リンク */
.home_links{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_links_item{
  width: 100%;
  padding: 0 5px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.home_links_item:nth-child(n+2){
  margin-top: 30px;
}
.home_links_item_inner{
  display: block;
}
.home_links_item_inner:hover{
  color: #f39800;
  color: #009e96;
  color: var(--sub-color);
}
.home_links_item_img{
  overflow: hidden;
  border-radius: 20px;
  border: 5px solid #FFF;
  box-shadow: 1px 1.732px 6px 0px rgba(24, 24, 24, 0.35);
}
.home_links_item_img.img_fit:before{
  padding-top: 67.40%;
}
.home_links_item_img img{
  transition: 0.2s all;
}
.home_links_item_img:hover img{
  transform: scale(1.05);
}
.home_links_item_title{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 17px;
  
  border-bottom: 10px solid #ffe56d;
  padding-bottom: 3px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.home_links_item_title_p1{
  font-size: 1.41666em;
  font-weight: 500;
  letter-spacing: 0.078em;
}
.home_links_item_title_p2{
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.078em;
}
.home_links_item_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.111;
  line-height: 1.875;
}
.home_links_item_txt p{
  letter-spacing: 0.065em;
}

.home_links{
  position: relative;
  z-index: 1;
  padding-bottom: 180px;
}
.home_links:before,
.home_links:after{
  content: "";
  position: absolute;
  z-index: 3;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
.home_links:before{
  width: 106px;
  aspect-ratio: 212 / 305;
  background-image: url(/system_panel/uploads/images/home_links_illust1.png);
  left: 0;
}
.home_links:after{
  width: 73px;
  aspect-ratio: 146 / 278;
  background-image: url(/system_panel/uploads/images/home_links_illust2.png);
  right: 0;
}

/* 商品 */
.home_goods{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_goods_item{
  width: 50%;
  padding: 0 5px;
}
.home_goods_item:nth-child(n+3){
  margin-top: 30px;
}
.home_goods_item_inner{
  
}
.home_goods_item_img{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /*aspect-ratio: 230 / 323;*/
  text-align: center;
}
.home_goods_item_img img{
  
}
.home_goods_item_img.small{
  padding: 0 10%;
}
.home_goods_item_txt{
  font-size: 16px;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.333;
  text-align: center;
  margin-top: 12px;
}
.home_goods_item_txt p{
  letter-spacing: 0;
}

.cmn_about + .home_goods{
  margin-top: 30px;
}


/* 商品詳細 */
.home_goods_desc{
  
}
.home_goods_price{
  display: flex;
  flex-wrap: wrap;
  background: #f3f1f1;
  border-radius: 20px;
  padding: 15px 15px;
}
.home_goods_price_item{
  width: 100%;
}
.home_goods_price_item:nth-child(n+2){
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #181818;
}
.home_goods_price_title{
  
}
.home_goods_price_title_h{
  width: 230px;
  width: 100%;
  max-width: 100%;
  font-size: 20px;
  font-weight: 800;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.1;
  background: #e5004f;
  color: #FFF;
  border-radius: 10px;
  padding: 8px 15px;
}
.home_goods_price_title_h em{
  font-size: 0.8333em;
  font-weight: 500;
  font-style: normal;
}
.home_goods_price_list{
  margin-top: 5px;
}
.home_goods_price_dl{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  
}
.home_goods_price_dl + .home_goods_price_dl{
  margin-top: 4px;
}
.home_goods_price_dt{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.home_goods_price_dd{
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}
.home_goods_price_dd em{
  font-size: 0.7058em;
  font-style: normal;
}

.home_goods + .home_goods_desc{
  margin-top: 30px;
}

/* 仕様 */
.home_goods_spec{
  display: flex;
  flex-wrap: wrap;
}
.home_goods_spec p{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.home_goods_spec p:nth-child(n+2){
  margin-top: 5px;
}
.home_goods_price + .home_goods_spec{
  margin-top: 20px;
}

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

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

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

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

  .pg_home .section.sec1{
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .pg_home .section.sec2{
    padding-top: 80px;
    padding-bottom: 120px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 75px;
  }
  .pg_home .section.sec4{
    padding-top: 36px;
    padding-bottom: 220px;
  }


  /* About */
  .home_about{

  }
  .home_about_head{
    margin-bottom: 30px;
  }
  .home_about_desc{
  }
  
  .home_about_desc_head{
    margin-bottom: 40px;
  }
  .home_about_desc_box1{
    width: 43.97%;
  }
  .home_about_desc_box2{
    width: 51.53%;
    margin-top: -8px;
  }
  .home_about_desc_txt{
    font-size: 16px;
  }

  /* シリーズ */
  .home_series{

  }
  .home_series_head{
    padding-top: 50px;
    margin-bottom: 25px;
  }
  .home_series_head:before,
  .home_series_head:after{
    position: absolute;
    z-index: 1;
  }
  .home_series_head:before{
    width: 112px;
    top: -30px;
    left: 0;
  }
  .home_series_head:after{
    width: 116px;
    top: -55px;
    right: 0;
  }
  
  /* リンク */
  .home_links{
    margin: 0 -10px;
  }
  .home_links_item{
    width: 50%;
    padding: 0 10px;
  }
  .home_links_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_links_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_links_item_inner{

  }
  .home_links_item_img{

  }
  .home_links_item_title{
    font-size: 20px;
    border-bottom: 10px solid #ffe56d;
    padding-bottom: 3px;
    margin-bottom: 10px;
  }
  .home_links_item_title_p1{
    font-size: 1.41666em;
  }
  .home_links_item_title_p2{
    font-size: 1em;
    margin-bottom: 3px;
  }
  .home_links_item_txt{
    font-size: 18px;
    line-height: 2.111;
  }
  
  .home_links{
    padding-bottom: 120px;
  }
  .home_links:before,
  .home_links:after{
    bottom: -75px;
  }
  .home_links:before{
    width: 120px;
    /*right: 98%;*/
  }
  .home_links:after{
    width: 100px;
    /*left: 99%;*/
  }
  
  /* 商品 */
  .home_goods{
    margin: 0 -10px;
  }
  .home_goods_item{
    width: 25%;
    padding: 0 10px;
  }
  .home_goods_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_goods_item:nth-child(n+5){
    margin-top: 30px;
  }
  .home_goods_item_inner{

  }
  .home_goods_item_img{

  }
  .home_goods_item_img img{

  }
  .home_goods_item_txt{
    font-size: 16px;
  }
  .cmn_about + .home_goods{
    margin-top: 50px;
  }
  
  
  /* 商品詳細 */
  .home_goods_desc{

  }
  .home_goods_price{
    border-radius: 20px;
    padding: 15px 0;
  }
  .home_goods_price_item{
    width: 50%;
    padding: 20px 15px;
  }
  .home_goods_price_item:nth-child(n+2){
    margin-top: 0;
    padding-top: 20px;
    border-top: 0;
  }
  .home_goods_price_item:nth-child(2n){
    border-left: 1px solid #181818;
  }
  .home_goods_price_title{

  }
  .home_goods_price_title_h{
    width: 285px;
    font-size: 22px;
    padding: 11px 22px;
  }
  .home_goods_price_list{
    width: 300px;
    max-width: 100%;
    margin-top: 23px;
    padding-left: 17px;
  }
  .home_goods_price_dl{
  }
  .home_goods_price_dt{
    font-size: 18px;
  }
  .home_goods_price_dd{
    font-size: 24px;
  }
  .home_goods + .home_goods_desc{
    margin-top: 57px;
  }
  
  /* 仕様 */
  .home_goods_spec{
  }
  .home_goods_spec p{
    width: 100%;
    font-size: 18px;
  }
  .home_goods_spec p:nth-child(n+2){
    margin-top: 5px;
  }
  .home_goods_price + .home_goods_spec{
    margin-top: 30px;
  }

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

  /* About */
  .home_about{

  }
  .home_about_head{
    margin-bottom: 30px;
  }
  .home_about_desc{
  }
  
  .home_about_desc_head{
    margin-bottom: 40px;
  }
  .home_about_desc_box1{
    width: 43.97%;
  }
  .home_about_desc_box2{
    width: 51.53%;
  }
  .home_about_desc_txt{
    font-size: 20px;
  }
  
  /* シリーズ */
  .home_series{

  }
  .home_series_head{
    padding-top: 50px;
    margin-bottom: 25px;
  }
  .home_series_head:before{
    /*width: 168px;*/
    top: 0;
    left: 0;
  }
  .home_series_head:after{
    /*width: 174px;*/
    top: 0;
    right: -25px;
  }

  .home_series + .read_more{
    margin-top: 65px;
  }
  
  /* リンク */
  .home_links{
    margin: 0 -15px;
  }
  .home_links_item{
    width: 50%;
    padding: 0 15px;
  }
  .home_links_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_links_item_inner{

  }
  .home_links_item_img{

  }
  .home_links_item_title{
    font-size: 24px;
  }
  .home_links_item_title_p1{
    /*font-size: 1.41666em;*/
  }
  .home_links_item_title_p2{
    /*font-size: 1em;*/
  }
  .home_links_item_txt{
    /*font-size: 18px;*/
  }
  
  
  
  /* 商品 */
  .home_goods{
    margin: 0 -10px;
  }
  .home_goods_item{
    width: 25%;
    padding: 0 10px;
  }
  .home_goods_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_goods_item:nth-child(n+5){
    margin-top: 30px;
  }
  .home_goods_item_inner{

  }
  .home_goods_item_img{

  }
  .home_goods_item_img img{

  }
  .home_goods_item_txt{
    font-size: 24px;
    margin-left: -10px;
    margin-right: -10px;
  }
  
  /* 商品詳細 */
  .home_goods_desc{

  }
  .home_goods_price{
    border-radius: 20px;
    padding: 15px 0;
  }
  .home_goods_price_item{
    width: 50%;
    padding: 20px 30px 43px;
  }
  .home_goods_price_item:nth-child(n+2){
    padding-top: 20px;
  }
  .home_goods_price_item:nth-child(2n){
    border-left: 1px solid #181818;
  }
  .home_goods_price_title{

  }
  .home_goods_price_title_h{
    width: 285px;
    font-size: 24px;
    padding: 10px 22px;
  }
  .home_goods_price_dl{
  }
  .home_goods_price_dt{
    font-size: 22px;
  }
  .home_goods_price_dd{
    font-size: 34px;
  }
  
  /* 仕様 */
  .home_goods_spec{
    justify-content: space-between;
  }
  .home_goods_spec p{
    width: 50%;
    font-size: 18px;
  }
  .home_goods_spec p:nth-child(n+2){
    margin-top: 0;
  }
  .home_goods_spec p:nth-child(n+3){
    margin-top: 10px;
  }
  .home_goods_spec p:nth-child(odd){
    width: 55%;
  }
  .home_goods_spec p:nth-child(even){
    width: 40%;
  }
  .home_goods_price + .home_goods_spec{
    margin-top: 30px;
  }
}
@media (min-width:1200px){

  /* About */
  .home_about_desc_txt{
    font-size: 25px;
    padding-right: 15px;
  }
  .home_goods_item_txt{
    font-size: 30px;
  }
  
  /* シリーズ */
  .home_series{

  }
  .home_series_head{
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .home_series_head:before{
    width: 168px;
    top: -30px;
    left: 0;
  }
  .home_series_head:after{
    width: 174px;
    top: -55px;
    right: -25px;
  }
  
  /* 仕様 */
  .home_goods_spec{
    padding: 0 85px;
  }
  .home_goods_spec p{
    width: 50%;
    font-size: 18px;
  }
  .home_goods_spec p:nth-child(odd){
    width: 55%;
  }
  .home_goods_spec p:nth-child(even){
    width: 35%;
  }
  .home_goods_price + .home_goods_spec{
    margin-top: 30px;
  }
}

@media (min-width:1366px){
  
  .home_links{
    padding-bottom: 0;
  }
  .home_links:before,
  .home_links:after{
    bottom: -75px;
  }
  .home_links:before{
    width: 212px;
    right: 98%;
    left: auto;
  }
  .home_links:after{
    width: 146px;
    left: 99%;
    right: auto;
  }
  
  
}



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

.umareka_msg{
  
}
/* 概要 */
@media (min-width:768px){
  
  .umareka_msg{
    
  }
  .umareka_msg .cmn_about_txt{
    line-height: 2.111;
  }
  
}


/*******************************
*　
********************************/
.pg_how{

}
.pg_how .section.sec1{
}
.pg_how .section.sec2{
  padding-bottom: 50px;
}
.pg_how .section.sec3{
}


/* 遊び方紹介 */
.how_series_head{
  text-align: center;
  margin-bottom: 30px;
}

.how_series_guide{
  background: #FFF;
  border-radius: 10px;
  padding: 15px 15px;
  
}
.how_series_guide_text_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.how_series_guide_text_box + .how_series_guide_text_box{
  margin-top: 18px;
}
.how_series_guide_text_num{
  min-width: 50px;
  font-size: 20px;
}
.how_series_guide_text_num:after{
  content: "";
  display: block;
  width: 2px;
  height: 23px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.how_series_guide_text_txt{
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.72em;
  margin-top: 10px;
}
.how_series_guide_text_txt strong{
  font-weight: 500;
  color: #f8001d;
}
.how_series_guide_ttl{
  margin-bottom: 34px;
}
.how_series_guide_colors{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
  margin-bottom: 25px;
}
.how_series_guide_colors_item{
  width: 100%;
  padding: 5px 5px;
  background: #CCC;
  color: #FFF;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}
.how_series_guide_colors_item:nth-child(n+2){
  margin-top: 5px;
}
.how_series_guide_colors_item_p1{
  letter-spacing: 0;
}
.how_series_guide_colors_item.color1{
  background: #e7364a;
}
.how_series_guide_colors_item.color2{
  background: #9cc715;
}
.how_series_guide_colors_item.color3{
  background: #1dade5;
}
.how_series_guide_colors_item.color4{
  background: #fcd005;
}

.how_series_guide_txt{
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e5e5e5;
  color: #f8001d;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.how_series_guide + .cmn_series{
  margin-top: 30px;
}

@media (max-width:374px){

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

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

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

  }
  
  .pg_how .section.sec2{
    padding-bottom: 100px;
  }

  .pg_how .section.sec1 .cmn_bdr_box{
    padding-bottom: 70px;
  }
  
  /* 遊び方紹介 */
  .how_series_head{
    margin-bottom: 40px;
  }

  .how_series_guide{
    padding: 25px 25px;
  }
  .how_series_guide_colors{
    
  }
  .how_series_guide_colors_item{
    width: 48.64%;
    padding: 8px 5px;
    font-size: 22px;
  }
  .how_series_guide_colors_item:nth-child(n+2){
    margin-top: 0;
  }
  .how_series_guide_colors_item:nth-child(n+3){
    margin-top: 10px;
  }
  
  .how_series_guide_txt{
    margin-top: 43px;
    padding-top: 24px;
    font-size: 20px;
    text-align: center;
  }
  
  .how_series_guide + .cmn_series{
    margin-top: 45px;
  }
  
  .how_series_guide_text_box{
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .how_series_guide_text_num{
    padding-top: 2px;
  }
  .how_series_guide_text_num,
  .how_series_guide_text_txt{
   font-size: 22px;   
  }
  .how_series_guide_text_txt{
    width: auto;
    padding-left: 20px;
    margin-top: 0;
  }
 

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

  .pg_how .section.sec2{
    padding-bottom: 200px;
  }
  
  /* 遊び方紹介 */
  .how_series_head{
    margin-bottom: 60px;
  }

  .how_series_guide{
    padding: 40px 65px 45px;
  }
  .how_series_guide_colors{
    
  }
  .how_series_guide_colors_item{
    width: 48.64%;
    font-size: 24px;
  }
  .how_series_guide_colors_item:nth-child(n+2){
    margin-top: 0;
  }
  .how_series_guide_colors_item:nth-child(n+3){
    margin-top: 20px;
  }
  
  .how_series_guide + .cmn_series{
    margin-top: 60px;
  }

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

  /* 遊び方紹介 */
  .how_series_guide{
  }
  .how_series_guide_colors{
    
  }
  .how_series_guide_colors_item{
    width: 48.64%;
    font-size: 32px;
  }
  
  .pg_how .section.sec1 .cmn_bdr_box{
    padding-bottom: 70px;
  }

}




/*******************************
*　
********************************/
.pg_scene{

}
.pg_scene .section.sec1{
}
.pg_scene .section.sec2{
}
.pg_scene .section.sec3{
}

/* 楽しめる */
.scene_enjoy{
  
}
.cmn_about + .scene_enjoy{
  border-top: 1px solid #e0ddd7;
  margin-top: 30px;
  padding-top: 30px;
}
.scene_enjoy_head{
  text-align: center;
  margin-bottom: 30px;
}
.scene_enjoy_details{
  
}
.scene_enjoy_details_row{
  border: 1px solid #e7364a;
  border-radius: 10px;
  overflow: hidden;
}
.scene_enjoy_details_row + .scene_enjoy_details_row{
  margin-top: 30px;
}
.scene_enjoy_details_box1{
  background: #e7364a;
  color: #FFF;
  text-align: center;
  padding: 7px 10px;
}
.scene_enjoy_details_box2{
  padding: 15px 15px;
}
.scene_enjoy_details_title{
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}
.scene_enjoy_details_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}

.scene_enjoy_details_row.color1{
  border-color: #e7364a;
}
.scene_enjoy_details_row.color1 .scene_enjoy_details_box1{
  background: #e7364a;
}
.scene_enjoy_details_row.color2{
  border-color: #8bd3f0;
}
.scene_enjoy_details_row.color2 .scene_enjoy_details_box1{
  background: #8bd3f0;
}
.scene_enjoy_details_row.color3{
  border-color: #9cc715;
}
.scene_enjoy_details_row.color3 .scene_enjoy_details_box1{
  background: #9cc715;
}

.scene_enjoy_msg{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
  border-top: 1px solid #e0ddd7;
  margin-top: 20px;
  padding-top: 20px;
}


/* ランキング */
.scene_ranking_head{
  margin-bottom: 30px;
  text-align: center;
}
.scene_ranking{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -10px;
}
.scene_ranking_item{
  width: 50%;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.scene_ranking_item:first-child{
  width: 55%;
}
.scene_ranking_item:nth-child(n+2){
  margin-top: 50px;
}
.scene_ranking_item_inner{
  background: #FFF;
  position: relative;
  z-index: 1;
}
.scene_ranking_item_inner:after {
  content: "";
  background-image: url(/system_panel/uploads/images/point_img_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.scene_ranking_item_img{
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.scene_ranking_item_img.img_fit:before{
  padding-top: 71.42%;
}
.scene_ranking_item_title{
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  padding: 10px 10px;
  border-radius: 0 0 10px 10px;
  background: #FFF;
  position: relative;
  z-index: 2;
}

.scene_ranking_item:before{
  content: "";
  width: 60px;
  aspect-ratio: 99 /63;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -31.74%);
  transform: translate(0, -31.74%);
}
.scene_ranking_item:nth-child(1):before{
  background-image: url(/system_panel/uploads/images/ranking_icon1.png);
}
.scene_ranking_item:nth-child(2):before{
  background-image: url(/system_panel/uploads/images/ranking_icon2.png);
}
.scene_ranking_item:nth-child(3):before{
  background-image: url(/system_panel/uploads/images/ranking_icon3.png);
}
.scene_ranking_item:nth-child(4):before{
  background-image: url(/system_panel/uploads/images/ranking_icon4.png);
}
.scene_ranking_item:nth-child(5):before{
  background-image: url(/system_panel/uploads/images/ranking_icon5.png);
}

/* おすすめ */
.scene_osusume_head{
  text-align: center;
  margin-bottom: 30px;
}
.scene_osusume_contents{
  
}
.scene_osusume_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  border-radius: 10px;
  border: 1px solid #e0ddd7;
  padding: 20px 15px;
}
.scene_osusume_contents_row + .scene_osusume_contents_row{
  margin-top: 30px;
}
.scene_osusume_contents_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.scene_osusume_contents_box2{
  width: 100%;
  order: 1;
}
.scene_osusume_contents_img{
  border-radius: 10px;
  overflow: hidden;
}
.scene_osusume_contents_img.img_fit:before{
  padding-top: 71.91%;
}
.scene_osusume_contents_title{
  font-size: 19px;
  font-weight: 800;
  line-height: 1.588;
  margin-bottom: 10px;
}
.scene_osusume_contents_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}


/* プレゼント */
.scene_present {
  
}
.scene_present .cmn_about_head{
  
}
.scene_present .read_more{
  
}



@media (max-width:374px){

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

}
@media (max-width:767px){
  .scene_ranking_item_title{
    font-size: 16px;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }

  /* 楽しめる */
  .scene_enjoy{

  }
  .cmn_about + .scene_enjoy{
    margin-top: 50px;
    padding-top: 50px;
  }
  .scene_enjoy_head{
    margin-bottom: 30px;
  }
  .scene_enjoy_details{

  }
  .scene_enjoy_details_row{
  }
  .scene_enjoy_details_row + .scene_enjoy_details_row{
    margin-top: 30px;
  }
  .scene_enjoy_details_box1{
    padding: 7px 10px;
  }
  .scene_enjoy_details_box2{
    padding: 15px 15px;
  }
  .scene_enjoy_details_title{
    font-size: 22px;
  }
  .scene_enjoy_details_txt{
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }

  .scene_enjoy_msg{
    font-size: 20px;
    line-height: 2;
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
  }
  
  /* ランキング */
  .scene_ranking_head{
    margin-bottom: 60px;
  }
  .scene_ranking{
    margin: 0 -10px;
  }
  .scene_ranking_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .scene_ranking_item:first-child{
    width: 33.333%;
  }
  .scene_ranking_item:nth-child(n+2){
    margin-top: 0;
  }
  .scene_ranking_item:nth-child(n+4){
    margin-top: 50px;
  }
  .scene_ranking_item_inner{
  }
  .scene_ranking_item_title{
    font-size: 22px;
    padding: 10px 10px;
  }
  
  .scene_ranking_item:before{
    width: 120px;
    left: -5px;
  }
  

  /* おすすめ */
  .scene_osusume_head{
    margin-bottom: 50px;
  }
  .scene_osusume_contents{

  }
  .scene_osusume_contents_row{
    padding: 30px 20px 25px;
  }
  .scene_osusume_contents_row + .scene_osusume_contents_row{
    margin-top: 50px;
  }
  .scene_osusume_contents_box1{
    /*width: 51.42%;*/
    width: 51.42%;
    order: 1;
    margin-top: -10px;
  }
  .scene_osusume_contents_box2{
    /*width: 42.38%;*/
    width: 42.38%;
    order: 2;
  }
  .scene_osusume_contents_title{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .scene_osusume_contents_txt{
    font-size: 18px;
    line-height: 2;
  }
}
@media (min-width:1024px){

  /* 楽しめる */
  .scene_enjoy{

  }
  .cmn_about + .scene_enjoy{
    margin-top: 70px;
    padding-top: 80px;
  }
  .scene_enjoy_head{
    margin-bottom: 60px;
  }
  .scene_enjoy_details{

  }
  .scene_enjoy_details_row{
  }
  .scene_enjoy_details_row + .scene_enjoy_details_row{
    margin-top: 50px;
  }
  .scene_enjoy_details_box1{
    padding: 7px 10px;
  }
  .scene_enjoy_details_box2{
    padding: 22px 15px;
  }
  .scene_enjoy_details_title{
    font-size: 28px;
  }
  .scene_enjoy_details_txt{
    font-size: 20px;
    line-height: 2;
    text-align: center;
  }
  
  .scene_enjoy_msg{
    font-size: 20px;
    margin-top: 35px;
    padding-top: 20px;
  }
  
  /* ランキング */
  .scene_ranking_head{
    margin-bottom: 90px;
  }
  .scene_ranking{
    margin: 0 -15px;
  }
  .scene_ranking_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .scene_ranking_item:first-child{
    width: 33.333%;
  }
  .scene_ranking_item:nth-child(n+2){
    margin-top: 0;
  }
  .scene_ranking_item:nth-child(n+4){
    margin-top: 83px;
  }
  .scene_ranking_item_inner{
  }
  .scene_ranking_item_title{
    font-size: 28px;
  }

  /* おすすめ */
  .scene_osusume_head{
    margin-bottom: 75px;
  }
  .scene_osusume_contents{

  }
  .scene_osusume_contents_row{
    padding: 50px 30px 40px;
  }
  .scene_osusume_contents_row + .scene_osusume_contents_row{
    margin-top: 60px;
  }
  .scene_osusume_contents_box1{
  }
  .scene_osusume_contents_box2{
  }
  .scene_osusume_contents_title{
    font-size: 25px;
    margin-bottom: 10px;
  }
  .scene_osusume_contents_txt{
    font-size: 18px;
  }
  
  /* プレゼント */
  .scene_present {

  }
  .scene_present .cmn_about_head{
    margin-bottom: 70px;
  }
  .scene_present .cmn_about_txt{
    line-height: 2.111;
  }
  .scene_present .read_more{
    margin-top: 75px;
  }
}
@media (min-width:1200px){

  /* おすすめ */
  .scene_osusume_contents{

  }
  .scene_osusume_contents_row{
    /*padding: 50px 30px 40px;*/
  }
  .scene_osusume_contents_row + .scene_osusume_contents_row{
  }
  .scene_osusume_contents_box1{
    width: 51.42%;
    width: 52.42%;
  }
  .scene_osusume_contents_box2{
    width: 42.38%;
  }
  .scene_osusume_contents_title{
    font-size: 34px;
    margin-bottom: 25px;
  }
  .scene_osusume_contents_txt{
    font-size: 20px;
  }

}




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

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}
.news_detail .txt .asobikata{
  font-family: "Zen Kurenaido", serif;
}
.news_detail .txt .asobikata span{
  font-size: 18px;
}
@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{
  }

.news_detail .txt .asobikata span{
  font-size: 20px;
}
}
@media (min-width:1024px){


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


}




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

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}

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


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


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


}




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

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}

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


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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  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;
}

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  cursor: pointer;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

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


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

.contact_tt.privacy {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

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

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

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


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


/* コピー用 */
@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;
  }


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


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


}


.news_detail .txt{
  
}
.news_detail .txt h3{
  font-size: 20px;
  font-weight: 700;
  /*margin-bottom: 2em;*/
  margin-bottom: 5px;
}
.news_detail .txt2{
  font-family: "Yuji Boku", serif;
  line-height: 2.125;
  margin-top: 30px;
}



/* ローディング用 */
.pg_loading{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,1);
}
.pg_loading.on{
  animation: pageFadeIn 1s; /*keyframesで命名したものを使う。2秒間で消える*/
  animation-fill-mode: both; /*0%の時と100%の時の状態を保つ*/
  pointer-events: none;
}
.pg_loading.off{
  animation: pageFadeOut 2s; /*keyframesで命名したものを使う。2秒間で消える*/
  animation-fill-mode: both; /*0%の時と100%の時の状態を保つ*/
  pointer-events: none;
}


@keyframes pageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes pageFadeOut {
  0% {
    opacity: 1; /*初めに存在する*/
  }
  100% {
    opacity: 0; /*最後に消える*/
  }
}

.home_about_blueTxt {
    font-weight: 700;
    color: #0068b7;
    font-size: 28px;
}
@media screen and (max-width: 1199px) {
    .home_about_blueTxt {
        font-size: 22px;
    }
}
@media screen and (max-width: 991px) {
    .home_about_blueTxt {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .home_about_blueTxt {
        font-size: 20px;
    }
}