@charset "UTF-8";


/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #45382d;
}

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  body{
    font-size: 14px;
  } 

  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
}

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;
  left: 0;
  top: 0;
}

/* 動画埋め込みのレスポンシブ対応 */
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%;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}

/* 指定した行数での切り取り */
.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{
  width: 100%;
  padding: 5px 0;
  background: #ffffff;
  text-align: center;
}
.hdr_logo {
  width: 150px;
  margin: 0;
  display: inline-block;
}
.hdr_form{
  font-size: 16px;
  padding: 15px;
  background: #fcedec;
  color: #d79eaf;
  display: inline-block;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 500;
}

.pg_header{
  padding-top: 80px;
}


@media (min-width:768px){
  .header{
    padding: 0;
    padding-top: 15px;
  }
  .pg_header{
    padding-top: 140px;
  }
  .hdr_logo {
    width: 150px;
    margin: 0 auto;
  }
  .hdr_form {
    padding: 4px 15px;
  }

  .gnav {
    width: 100%;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .gnav .gnav_item {
    height: 45px;
    font-size: 13px;
    padding: 0 5px;
    /*line-height: 2;*/
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .gnav .gnav_item:first-child{
    padding-left: 0;
  }
  .gnav .gnav_item img{
    margin-bottom: 5px;
  }
}
@media (min-width:1024px){
  .gnav {
    width: auto;
  }
  .header{
    padding-top: 0;
  }
  .header .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .hdr_logo {
    width: 200px;
  }

  .gnav .gnav_item {
    padding: 0 8px;
  }
  .hdr_form{
    padding: 15px 10px 10px;
  }

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

  .gnav .gnav_item {
    padding: 0 18px;
  }
  .hdr_form{
    padding: 23px 15px 12px;
  }
  .hdr_logo {
    width: auto;
  }
}

@media (max-width:767px){

  .hdr1 {
  }
  .hdr_contact{
    display: none;
  }

  /* スマホ用 */
  .gnav{
    width: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;
    display: flex;
    flex-wrap: wrap;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav .gnav_item{
    width: 50%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
    color: inherit;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .gnav_item:before{
    display: none;
  }
  .gnav .gnav_item + .gnav_item,
  .gnav .gnav_item:first-child,
  .gnav .gnav_item:last-child{
    border-left: 0;
    border-right: 0;
    text-align: center;
  }
  .gnav .gnav_item:nth-child(even){
    border-left: 1px dashed #CCC;
  }
  .gnav_item:nth-child(n+5){
    margin-top: 0;
  }
  .gnav_bg{
    padding: 0;
    background: inherit;
  }

  .gnav_item .gnav_item_sub{
    display: block;
    position: static;
    width: 100%;
    background: aliceblue;
    padding: 15px;
    margin-top: 20px;
  }
  .gnav .gnav_item:hover{
    color: #000000;
  }



}



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

.footer{
  margin-top: 100px;
  padding: 30px 0 10px;
  overflow: hidden;
}
.ftr_logo {
  margin-bottom: 10px;
  display: inline-block;
}
.ftr_insta{
  margin: 10px auto;
  display: block;
}

.copyright {
  margin: 20px 0 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  flex-wrap: wrap;
  background: #45382d;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #45382d;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.2;
  font-weight: 700;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
}
.footer_fix .footer_fix_item_1.reservation{
  background: #d5a1b1;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #f5f2ec;
  color: #46392d;
}
.footer_fix > a i{
  font-size: 28px;
  margin-bottom: 5px;
  line-height: 1;
}
.footer_fix > a img{
  height: 26px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 70px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #45382d;
}
.pagetop a i{
  font-size: 40px;
}




@media (max-width: 767px){
  .ftr_left{
    text-align: center;
  }
  .ftr_logo {
    width: 150px;
  }
  .ftr_right{
    display: none;
  }
}

@media (min-width:768px){

  .footer{
    margin-top: 260px;
    padding: 42px 0 30px;
  }
  .ftr_info {
    margin: 40px 0 0;
  }
  .footer .gnav {
    justify-content: center;
  }
  .footer .gnav_item{
    margin: 5px 0;
    padding: 0 10px;
    position: relative;
    z-index: 2;
    letter-spacing: 0;
  }
  .footer .gnav .gnav_item:last-child{
    padding-right: 0;
  }
  .footer .container{
    position: relative;
  }
  .ftr_logo{    
    margin-bottom: 40px;
  }
  .ftr_insta {
    position: absolute;
    right: 15px;
    top: 0;
    margin: 0;
  }
}
@media (min-width:1024px){

  .ftr_left,
  .ftr_right{
    width: auto;
  }
  .footer .gnav_item{
    margin: 0;
    padding: 0 22px;
  }
}
@media (min-width:1200px){

}
@media (max-width:767px){
  .ftr_addr em{
    display: block;
  }
}



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

/* Flexテーブルレイアウト */
.fl_tbl_items{
  border: 1px solid #cab386;
  margin-bottom:80px;
}
.fl_tbl_items_item{
  display: flex;
  letter-spacing: 0.05em;
}
.fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #cab386;
}

.fl_tbl_items_item_box1,
.fl_tbl_items_item_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  min-height: 70px;
}
.fl_tbl_items_item_box1{
  width:31.53%;
  background: #eeeeee;
  padding: 10px 5px;
  border-right: 1px solid #cab386;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.fl_tbl_items_item_box2{
  width:68.47%;
  background: #fff;
}
.fl_tbl_items_item_txt{
  width: 100%;
  padding: 10px 10px;
}
.fl_tbl_items_item_txt + .fl_tbl_items_item_txt{
  border-top: 1px solid #cab386;
}

/* 青 */
.fl_tbl_items.blue{
  border: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item_box1{
  background: #eff8fc;
  border-right: 1px solid #7ecef4;
}

@media (min-width:375px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px;
  }
}
@media (min-width:768px){
}
@media (min-width:1024px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px 10px 60px;
  }
  .fl_tbl_items_item_txt{
    padding: 10px 10px 10px 25px;
  }
}
@media (min-width:1200px){

}
@media (max-width:767px){
  .footer_fix{
    display: flex;
  }

  body{
    padding-bottom: 60px;
  }
}


/* テーブル用 */
.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: 20px 15px;
}
.table_rows_th{
  background-color: #eeeeee;
}
.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;
}



.contact_info {
  padding: 15px 10px 10px;
}
.contact_info_bg{
  padding: 6px;
  justify-content: center;
  align-items: center;
}
.contact_info_text1 {
  margin-bottom: 15px;
}
.contact_info_text2 {
  padding: 0 8px;
  margin-right: 5px;
  align-self: center;
  border-radius: 5px;
}
.contact_info_text4 {
  width: 100%;
  text-align: center;
}
.contact_info_text1 br{
  display: block;
}

.pg_contact .section.sec2 {
  padding: 60px 0 80px;
}
.contact_tt {
  margin-bottom: 30px;
  position: relative;
}
.contact_tt:before{
  content: "";
  width: 100%;
  height: 1px;
  background: #7d7d7d;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}
.contact_tt h2{
  padding: 0 10px;
  position: relative;
  z-index: 3;
  background: #ffffff;
  display: inline-block;
}


/* フォーム */
.pg_contact .formTbl{  
  border: 1px solid #b2b2b2;
  background: #ffffff;
  color: #000000;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 10px;
  background: #f8f7f5;
  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;
}
.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;
  letter-spacing: 0.18em;
}
.pg_contact .formTd input[name="zip1"] {
  max-width: 80px;
}
.pg_contact .formTd input[name="zip2"] {
  max-width: 100px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 155px;
  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;
  display: block;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.1em;
}
.pg_contact .formWrap .text-center{
  margin-top: 30px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 15px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 11px;
  margin: 32px auto 0;
  border: 0;
  background: #005dad;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0.15em;
}
.radioArea .d-inline-block{
  margin-right: 33px;
}
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 .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}
.contact_sub_tt{
  margin: 50px 0 30px;
}

/* プライバシーポリシー */
.privacy_ttl {
  margin-bottom: 10px;
  border-left: 6px solid #005dad;
  padding: 15px;
}
.privacy_item {
  margin-top: 25px;
}  

/* 送信完了 */
.pg_contact.thanks .link_1{
  margin: 50px auto 0;
}
.pg_contact.thanks .link_1:hover{
  color: #181818;
}


@media (min-width:768px){
  .company_tbl {
    width: 100%;
    display: table;
  }
  .company_tr{
    display: table-row;
  }
  .company_th,
  .company_td{    
    display: table-cell;
  }
  .company_th{
    width: 240px;
    padding: 15px 20px;
  }
  .company_td{
    width: auto;
    padding: 15px 30px;
  }
  .contact_sub_tt{
    margin: 95px 0 50px;
  }

  .pg_contact .section.sec2 {
    padding: 175px 0 140px;
  }
  .contact_info {
    padding: 25px 20px 20px;
  }  
  .contact_info_text1 {
    margin-bottom: 18px;
  }
  .contact_info_text2 {
    padding: 0 12px;
    margin-right: 18px;
  }
  .contact_tt {
    margin-bottom: 65px;
  }
  .contact_tt br{
    display: none;
  }
  .contact_info_text1 br{
    display: none;
  }

  .pg_contact .formTh {
    padding: 12px 15px 16px 20px;
  }
  .pg_contact .formTd {
    padding: 10px 16px;
  }
  .pg_contact .privacyLabel {
    font-size: 17px;
  }
  .pg_contact .formWrap .text-center{
    margin-top: 58px;
  }

  .privacy_ttl {
    padding: 10px 15px;
  }
  .privacy_tt {
    margin-bottom: 60px;
  }
  .privacy_item {
    margin-top: 35px;
  }  
  .privacy_tt br{
    display: none;
  }
  .thanks_text br{
    display: none;
  }
}
@media (min-width:1024px){  
  .contact_info_text4 {
    width: auto;
    margin-left: 30px;
  }
  .company_th{
    width: 310px;
  }
}



/*******************************
*　HOME
********************************/
.home_slider{
  overflow: hidden;
}
.home_slider .img_fit:before {
  padding-top: 55%;
}

.pg_home .section.sec1{
  padding: 25px 0;
}
.home_sec1_left_ttl {
  margin-bottom: 5px;
}
.home_sec1_left{
}
.link_1 {
  max-width: 255px;
  padding: 10px;
  margin: 20px auto 0;
  display: block;
  color: #ffffff;
  font-weight: 500;
  border-radius: 5px;
  background: url(https://applause-style.jp/system_panel/uploads/images/link_arrow1.png) no-repeat 89% center #45382d;
  letter-spacing: 0.01em;
}
.link_1:hover{
  color: #ffffff;
}

.pg_home .section.sec2{
  padding: 50px 0;
  overflow: hidden;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_bg_sp1-1.jpg) no-repeat left 150px / 120px auto,
    url(https://applause-style.jp/system_panel/uploads/images/home_bg_sp1-2.jpg) no-repeat right 93% / 100px auto;
}
.home_ttl {
  margin-bottom: 30px;
}
.home_sec1_right {
  max-width: 504px;
  padding-top: 30px;
  margin: 0 auto;
}
.home_sec1_dl{
  display: flex;
  flex-wrap: wrap;
}
.home_sec1_dl + .home_sec1_dl{
  margin-top: 8px;
}
.home_sec1_dt{
  font-weight: 500;
}
.home_sec1_dt p:before{
  content: "";
  width: 18px;
  height: 20px;
  margin-right: 12px;
  background: url(https://applause-style.jp/system_panel/uploads/images/ttl_i.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
}
.home_sec1_dd{
  font-size: 12px;
}

.home_ttl:before{
  width: 33px;
  height: 44px;
  margin: 0 auto;
  content: "";
  background: url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i1.png) no-repeat center / contain;
  display: block;
}
.home_ttl_en {
  padding: 20px 45px;
  margin-bottom: 5px;
  display: inline-block;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i2.png) no-repeat center,
    url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i3.png) no-repeat left center,
    url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i4.png) no-repeat right center;
}
.home_ttl.white .home_ttl_en {
  background: url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i2w.png) no-repeat center,
    url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i3.png) no-repeat left center,
    url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i4.png) no-repeat right center;
}

.reason_num {
  margin: 0 auto -45px;
  position: relative;
  z-index: 3;
  display: block;
}
.reason_item .img_fit{
  border-radius: 15px;
  overflow: hidden;
}
.reason_item .img_fit:before{
  padding-top: 67%;
}
.reason_slide{
  position: relative;
}
.slick-arrow{
  padding: 0;
  background: 0;
  border: 0;
  position: absolute;
  top: 25vw;
  z-index: 10;
}
.slide-prev{
  left: 5px;
}
.slide-next{
  right: 5px;
}

.pg_home .section.sec3{
  padding-bottom: 60px;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_bg_sp2.jpg) no-repeat left bottom / 150px auto;
}
.home_reason_ttl {
  margin: 25px 0 10px;
  padding-bottom: 33px;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_reason_ttl_i.png) no-repeat center bottom;
}
.home_reason_ttl br{
  display: none;
}
.gallery_list .webgene-blog,
.item_list .webgene-blog{
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}
.link_2 {
  max-width: 285px;
  font-size: 17px;
  padding: 12px;
  margin: 30px auto 0;
  display: block;
  text-align: center;
  background: url(https://applause-style.jp/system_panel/uploads/images/link_arrow2.png) no-repeat 90% center #f7ede9;
  font-weight: 500;
  border-radius: 5px;
}
.link_2.white {
  background: url(https://applause-style.jp/system_panel/uploads/images/link_arrow2.png) no-repeat 90% center #ffffff;
}
.gallery_list{
  position: relative;
}
.pg_home .gallery_list:before{
  content: "";
  width: 87px;
  height: 89px;
  display: block;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_chara1_.png) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: -90px;
}

.pg_home .section.sec4 {
  padding: 0 0 60px;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_bg_sp3.jpg) no-repeat right 60px / 100px auto;
}
.home_staff_list .img_fit {
  margin-bottom: 15px;
  background: #ededed;
}
.home_staff_list .img_fit:before{
  padding-top: 133.4%;
}
.home_staff_list .row > div:nth-child(n+3) {
  margin-top: 20px;
}

.pg_home .section.sec5 {
  padding-bottom: 100px;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_bg_sp4-1.jpg) no-repeat left 80px / 150px auto,
    url(https://applause-style.jp/system_panel/uploads/images/home_bg_sp4-2.jpg) no-repeat right 93% / 140px auto;
}
.home_movie {
  width: 100%;
  border: 0;
}

.pg_home .gallery_list .webgene-item:nth-child(n+7){
  display: none;
}

.pg_home .section.sec6 {
  padding: 60px 0;
  margin-top: -50px;
}

.pg_home .section.sec7 {
  padding: 30px 0;
}
.pg_home .section.sec7 .container{
  position: relative;
}
.pg_home .section.sec7 .container:before{
  content: "";
  width: 89px;
  height: 134px;
  position: absolute;
  left: 0;
  top: -80px;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_chara2_.png) no-repeat center / contain;
}
.news_list .webgene-item a{
  padding: 20px 0;
  display: block;
  border-bottom: 1px solid #c8c5c3;
}
.news_list .date{
  font-weight: 700;
}
.news_list .title{
  font-size: 14px;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.pg_home .section.sec8 {
  padding: 50px 0;
}
.home_map{
  position: relative;
}
.home_map:before{
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: -80px;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_access_i_.png) no-repeat center / contain;
}
.home_map iframe{
  width: 100%;
  height: 59vw;
  border: 0;
  position: relative;
  z-index: 2;
}
.access_tbl {
  width: 100%;
  margin-top: 20px;
  display: table;
}
.access_tr {
  display: table-row;
}
.access_th,
.access_td{
  padding: 15px 0;
  border-bottom: 1px solid #c8c5c3;
  display: table-cell;
}
.access_th{
  width: 80px;
}

.home_recruit_box {
  background-position: 25% center;
}
.home_recruit_box a{
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home_recruit_txt{
  width: 50%;
  text-align: center;
}
.home_recruit_txt img{
  margin: 12px auto;
  display: block;
}

@media (max-width:767px){
  
  .pg_home .section.sec1{
    padding: 25px 0;
  }  
  .home_sec1_right {
    margin-top: 20px;
    border-top: 1px solid #c8c5c3;
  }
  .home_sec1_dt,
  .home_sec1_dd{
    width: 100%;
  }
  .reason_slider .row > div + div{
    margin-top: 30px;
  }
  .gallery_list .webgene-item:nth-child(n+3) {
    margin-top: 20px;
  }
  .home_ttl_en img{
    height: 90%;
  }
  .item_list .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .pg_home .section.sec7 .home_ttl{
    margin-bottom: 0;
  }
  .access_td{
    font-size: 12px;
  }
  .home_recruit_txt img {
    width: 60px;
  }
}

@media (min-width:768px){

  .home_slider .img_fit:before{
    padding-top: 60%;
  }

  /*.pg_home {
    background: url(https://applause-style.jp/system_panel/uploads/images/home_bg.png) no-repeat center 380px / 100% auto;
  }*/

  .home_sec1_left{
    padding: 22px 0;
    border-right: 1px solid #c8c5c3;
  }
  .home_sec1_right {
    padding-top: 8px;
  }  
  .home_sec1_dd{
    font-size: 15px;
  }

  .pg_home .section.sec2{
    padding: 100px 0 115px;
    background: 0;
    background: url(https://applause-style.jp/system_panel/uploads/images/home_reason_bg1.png) no-repeat 0 130px / 200px auto,
      url(https://applause-style.jp/system_panel/uploads/images/home_reason_bg2.png) no-repeat 100% 90% / 200px auto;
  }
  .home_ttl{
    margin-bottom: 40px;
  }
  .reason_num{
    width: 60px;
    margin: 0 auto -25px;
  }

  .pg_home .section.sec3{
    padding-bottom: 60px;
    background: url(https://applause-style.jp/system_panel/uploads/images/home_gallery_bg1.png) no-repeat 100% 160px / 220px auto,
      url(https://applause-style.jp/system_panel/uploads/images/home_gallery_bg2.png) no-repeat 0 100% / 200px auto;
  }
  .pg_home .section.sec5{
    padding-bottom: 0;
    background: 0;
  }
  .pg_home .gallery_list:before{
    width: 177px;
    height: 179px;
    top: -188px;
  }
  .slick-arrow {
    top: 50px;
  }

  .link_2 {
    margin: 50px auto 0;
  }
  .pg_home .section.sec4{
    padding: 110px 0 120px;
    background: url(https://applause-style.jp/system_panel/uploads/images/home_staff_bg1.png) no-repeat 100% 160px / 300px auto;
  }

  .home_staff_list .row > div:nth-child(n+3){
    margin-top: 30px;
  }
  .home_staff_list .img_fit{
    margin-bottom: 25px;
  }  
  .pg_home .section.sec5{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_movie_bg1.png) no-repeat 0 20px / 300px auto,
      url(https://applause-style.jp/system_panel/uploads/images/home_movie_bg2.png) no-repeat 100% 98% / auto;
  }
  .gallery_list .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }

  .pg_home .section.sec6{
    padding: 120px 0;
  }

  .pg_home .section.sec7{
    padding: 50px 0;
  }  
  .pg_home .section.sec7 .container:before{
    width: 139px;
    height: 234px;
    left: 15px;
    top: -100px;
  }
  .news_list .webgene-item a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .news_list .date{
    width: 200px;
    padding-right: 10px;
    text-align: center;
    font-weight: 700;
  }
  .news_list .title{
    font-size: 16px;
    width: calc(100% - 200px);
  }
  .news_list .webgene-item a{
    padding: 25px 0;
  }

  .pg_home .section.sec8{
    padding: 115px 0 120px;
  }  
  .home_map:before {
    width: 140px;
    height: 145px;
    right: 10px;
    top: -105px;
  }
  .home_map iframe{
    height: 330px;
  }
  .access_th,
  .access_td{
    padding: 23px 0;
  }
  .access_th{
    width: 187px;
    padding-left: 38px;
  }
  .access_td br{
    display: none;
  }
  .pg_home .section.sec8{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_access_bg1.png) no-repeat 0 100px / 250px auto;
  }

  .home_recruit_box {    
    background-position: 20% center;
  }
  .home_recruit_box a{
    height: 280px;
  }
  .home_recruit_txt{
    width: 42%;
  }
  
  
  .home_reason_ttl br{
    display: block;
  }

}
@media (min-width:1024px){  
  /*.pg_home {
    background: url(https://applause-style.jp/system_panel/uploads/images/home_bg.png) no-repeat center 380px / 80% auto;
  }*/
  .home_sec1_dt{
    width: 125px;
    padding-right: 10px;
  }
  .home_sec1_dd{
    width: calc(100% - 125px);
  }
  .slick-arrow{
    top: 100px;
  }
  .reason_num {
    margin: 0 auto -45px;
  }

  .pg_home .section.sec2{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_reason_bg1.png) no-repeat 9% 130px / 250px auto,
      url(https://applause-style.jp/system_panel/uploads/images/home_reason_bg2.png) no-repeat 90% 90% / 200px auto;
  }
  
  .pg_home .gallery_list .webgene-item:nth-child(n+7){
    display:block;
  }
  
  .gallery_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .gallery_list .webgene-item:nth-child(n+5){
    margin-top: 30px;
  }
  .gallery_list .webgene-item:nth-child(n+7){
    display: block;
  }
  
  .home_staff_list .row > div:nth-child(n+3){
    margin-top: 0;
  }

  .pg_home .section.sec3{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_gallery_bg1.png) no-repeat 98% 160px / 200px auto,
      url(https://applause-style.jp/system_panel/uploads/images/home_gallery_bg2.png) no-repeat 0 100% / 200px auto;
  }

  
  .news_list .date{
    width: 280px;
  }
  .news_list .title{
    width: calc(100% - 280px);
  }

  .access_th{
    width: 287px;
    padding-left: 68px;
  }
  .home_map iframe{
    height: 530px;
  }

  .home_recruit_box {
    background-position: left center;
  }
  .home_recruit_box a{
    height: 380px;
  }
  
  
  .home_reason_ttl br{
    display: none;
  }
}
@media (min-width:1200px){  
  /*.pg_home{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_bg.png) no-repeat center 380px / 1621px auto;
  }*/
  .home_slider .img_fit:before{
    padding-top: 900px;
  }
  .pg_home .section.sec2{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_reason_bg1.png) no-repeat 9% 130px / auto,
      url(https://applause-style.jp/system_panel/uploads/images/home_reason_bg2.png) no-repeat 90% 90% / auto;
  }
  .pg_home .section.sec3{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_gallery_bg1.png) no-repeat 86% 160px / auto,
      url(https://applause-style.jp/system_panel/uploads/images/home_gallery_bg2.png) no-repeat 10% 100% / auto;
  }
  .pg_home .section.sec4{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_staff_bg1.png) no-repeat 86% 160px / auto;
  }
  .pg_home .section.sec5{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_movie_bg1.png) no-repeat 17% 40px / auto,
      url(https://applause-style.jp/system_panel/uploads/images/home_movie_bg2.png) no-repeat 85% 92% / auto;
  }
  .pg_home .section.sec8{
    background: url(https://applause-style.jp/system_panel/uploads/images/home_access_bg1.png) no-repeat 20% 80px / auto;
  }
}



/*******************************
*　コンセプト
********************************/
.pg_concept{
  overflow: hidden;
}
.hdr_bg{
  padding: 0 0 10px;
  position: relative;
  text-align: center;
}
.hdr_bg:before{
  content: "";
  width: 244px;
  height: 110px;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  background: url(https://applause-style.jp/system_panel/uploads/images/hdr_halfcircle.png) no-repeat center / contain;
}
.hdr_ttl {
  margin-top: -32px;
  display: inline-block;
  text-align: center;
  position: relative;
}
.hdr_ttl:before{
  width: 33px;
  height: 44px;
  margin: 0 auto;
  content: "";
  background: url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i1.png) no-repeat center / contain;
  display: block;
  position: relative;
  z-index: 5;
}
.hdr_ttl_en {
  padding: 15px 30px 0;
  margin-bottom: 5px;
  display: inline-block;
  background: url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i3.png) no-repeat left center,
    url(https://applause-style.jp/system_panel/uploads/images/home_ttl_i4.png) no-repeat right center;
  position: relative;
  z-index: 5;
}
.hdr_ttl_tt{
  font-size: 16px;
  position: relative;
  z-index: 5;
}

.pg_concept .section.sec1{
  padding: 30px 0 50px;
}
.pg_concept .section.sec1 .container{
  position: relative;
}
.pg_concept .section.sec1 .container:before{
  content: "";
  width: 72px;
  height: 121px;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_i1_.png) no-repeat center / contain;
  position: absolute;
  right: -10px;
  top: 60px;
}
.pg_concept .section.sec1 .container:after{
  content: "";
  width: 325px;
  height: 326px;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_img1_bg.png) no-repeat center / contain;
  position: absolute;
  left: -50px;
  bottom: 50px;
  z-index: -1;
}
.pg_concept .section.sec1 .img_frame{
  max-width: 940px;
  margin: 25px auto 40px;
  padding: 0 10px;
  position: relative;
}
.pg_concept .section.sec1 .img_frame:before,
.pg_concept .section.sec1 .img_frame:after{
  content: "";
  width: 57px;
  height: 57px;
  position: absolute;
  z-index: 3;
}
.pg_concept .section.sec1 .img_frame:before{
  left: 0;
  top: -10px;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_img1_frame1.png) no-repeat center / contain;
}
.pg_concept .section.sec1 .img_frame:after{
  right: 0;
  bottom: -10px;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_img1_frame2.png) no-repeat center / contain;
}
.pg_concept .section.sec1 .img_fit:before{
  padding-top: 60%;
}
.concept_sec1_ttl:after{
  content: "";
  width: 63px;
  height: 27px;
  margin: 20px auto 0;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_ttl_i1.png) no-repeat center / contain;
  display: block;
}
.concept_item.no3 .img:before {
  width: 88px;
  height: 105px;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_i4_.png) no-repeat center / contain;
  left: -20px;
  bottom: -60px;
}


.pg_concept .section.sec2{
  padding: 50px 0;
}
.concept_ttl_tt {
  margin: 10px 0;
}
.concept_ttl img{
  width: 60px;
}
.concept_ttl_tt:after{
  content: "";
  width: 55px;
  height: 17px;
  margin: 10px auto 0;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_item_ttl_i.png) no-repeat center / contain;
  display: block;
}
.concept_item .img{
  position: relative;
  order: 2;
}
.concept_item .img_fit:before{
  padding-top: 70%;
}
.concept_item + .concept_item{
  padding-top: 50px;
}
.concept_item .img,
.concept_item .txt{
  position: relative;
}
.concept_item .img:before,
.concept_item .txt:before{
  content: "";
  position: absolute;  
}

.concept_item .txt{
  order: 1;
}
.concept_item.no6 .txt:before {
  width: 47px;
  height: 67px;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_i7_.png) no-repeat center / contain;
  left: 5px;
  top: -5px;
}

@media (max-width:767px){  
  .concept_item .txt{
    padding-bottom: 20px;
  }
  
  .concept_item.no1 .txt:before{
    width: 100px;
    height: 100px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i2_.png) no-repeat center / contain;
    left: 0;
    top: -35px;
  }
  .concept_item.no2 .txt:before{
    width: 80px;
    height: 80px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i3_.png) no-repeat center / contain;
    right: 0;
    top: -40px;
  }
  .concept_item.no4 .txt:before {
    width: 90px;
    height: 99px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i5_.png) no-repeat center / contain;
    right: -15px;
    top: -40px;
  }
  .concept_item.no5 .txt:before {
    width: 84px;
    height: 88px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i6_.png) no-repeat center / contain;
    right: 0;
    top: -10px;
  }
}

@media (min-width:768px){  
  .hdr_bg{
    padding: 0 0 30px;    
  }

  .pg_concept .section.sec1{
    padding: 90px 0 125px;
  }  
  .pg_concept .section.sec1 .container:before{
    width: 85px;
    height: 131px;
    right: -20px;
    top: 40px;
  }
  .concept_sec1_ttl br{
    display: none;
  }
  .pg_concept .section.sec1 .img_frame:before{
    width: 107px;
    height: 107px;
  }
  .pg_concept .section.sec1 .img_frame:after{
    width: 107px;
    height: 107px;
  }

  .pg_concept .section.sec2{
    padding: 130px 0 100px;
  }
  .concept_ttl_tt:after{
    width: 65px;
    height: 27px;
    margin: 20px auto 0;
  }
  .concept_ttl img{
    width: auto;
  }
  .concept_ttl_tt{
    margin: 10px 0 20px;
  }
  .concept_ttl_tt.no6 br{
    display: block;
  }
  .concept_item + .concept_item{
    padding-top: 110px;
  }
  .concept_item:nth-child(even) .img{
    order: 1;
  }
  .concept_item:nth-child(even) .txt{
    order: 2;
  }
  .concept_item.no1 .img:before {
    width: 177px;
    height: 177px;
    left: -80px;
    top: -80px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i2_.png) no-repeat center / contain;
  }
  .concept_item.no2 .img:before{
    width: 121px;
    height: 112px;
    right: 0;
    top: -120px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i3_.png) no-repeat center / contain;
  }
  .concept_item.no3 .img:before{
    width: 118px;
    height: 155px;
    left: -80px;
    bottom: -50px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i4_.png) no-repeat center / contain;
  }
  .concept_item.no4 .img:before{
    width: 170px;
    height: 169px;
    right: -75px;
    top: -70px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i5_.png) no-repeat center / contain;
  }
  .concept_item.no5 .txt:before{
    width: 124px;
    height: 128px;
    right: -40px;
    top: 20px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i6_.png) no-repeat center / contain;
  }
  .concept_item.no6 .txt:before{
    width: 87px;
    height: 127px;
    left: -35px;
    top: -5px;
    background: url(https://applause-style.jp/system_panel/uploads/images/concept_i7_.png) no-repeat center / contain;
  }
}
@media (min-width:1024px){

  .pg_concept .section.sec1 .container:before{
    width: 123px;
    height: 191px;
    right: -40px;
    top: 60px;
  }
  .concept_ttl_tt.no6 br{
    display: none;
  }
  
}
@media (min-width:1200px){
  .concept_ttl_tt_03 br{
    display: none;
  }

}


/*******************************
*　メニュー
********************************/
.pg_menu .section.sec1{
  padding: 50px 0 0;
}
.menu_box + .menu_box{
  padding-top: 80px;
}
.menu_ttl {
  margin-bottom: 10px;
  position: relative;
}
.menu_ttl:after{
  content: "";
  width: 63px;
  height: 27px;
  margin: 10px auto 0;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_ttl_i1.png) no-repeat center / contain;
  display: block;
}
.menu_ttl_tt {
  margin-top: 10px;
}
.menu_item{
  padding: 15px 0;
  border-bottom: 1px solid #c8c5c3;
}
.menu_item.bt{
  border-top: 1px solid #c8c5c3;
}
.menu_item:after{
  content: "";
  display: block;
  clear: both;
}
.menu_item1 {
  float: left;
}
.menu_item2 {
  float: right;
}
.menu_sub_ttl {
  padding: 30px 0 10px;
}
.menu_list + .menu_list{
  padding-top: 40px;
}

@media (max-width:767px){
  .menu_list > div + div .menu_item.bt{
    border-top: 0;
  }
}

@media (min-width:768px){
  .pg_menu .section.sec1{
    padding: 100px 0 0;
  }
  .menu_box + .menu_box{
    padding-top: 180px;
  }
  .menu_sub_ttl {
    padding: 48px 0 20px;
  }
  .menu_list + .menu_list{
    padding-top: 60px;
  }
  .menu_item{
    padding: 19px 20px 19px 12px;
  }

}
@media (min-width:1024px){  
  .menu_item{
    padding: 19px 40px 19px 32px;
  }
}


/*******************************
*　ギャラリー
********************************/
.pg_gallery .section.sec1{
  padding: 50px 0 0;
}
.gallery_list .webgene-item a{
  display: block;
}
.gallery_list .post_content{
  margin-top: 25px;
}
.gallery_list .scroll{
  height: 100%;
  overflow-y: auto;
}


/* モーダル設定 */
.modal_{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.modal__bg{
  background: rgba(0,0,0,0.48);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.modal__content{
  width: 730px;
  height: auto;
  max-width: 92%;
  max-height: calc(100% - 130px);
  background: #fff;
  left: 50%;
  padding: 40px 25px;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  overflow-y: auto;
}
.js-modal-close:not(.modal__bg){
  position: absolute;
  right: 20px;
  top: 20px;
}
.js-modal-close:not(.modal__bg) {
  width: 20px;
  position: absolute;
  right: 10px;
  top: 5px;
}
.modal__content .img_fit:before{
  padding-top: 100.5%;
}

/* ページ送り */
.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{
  margin: 0 4px;  
  border: 1px solid #c0c0c0;
  background: #ffffff;
  color: #000000;
}
.webgene-pagination li a{
  padding: 3px 10px;
  display: block;
  color: #000000;
}
.webgene-pagination li.selected{
  background: #e5e5e5;
  border-color: #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;
}


@media (min-width:768px){ 
  .pg_gallery .section.sec1{
    padding: 100px 0 0;
  } 
  .modal__content{
    padding: 70px 65px;
    height: 831px;
    max-height: 100%;
    max-width: 80%;
  }
  .js-modal-close:not(.modal__bg){
    right: 20px;
    top: 20px;
  }

  .webgene-pagination {
    margin: 115px 0 0;
  }
  .webgene-pagination li a{
    padding: 3px 13px;
  }
}
@media (min-width:1024px){  
  .modal__content{
    max-width: 60%;
  }
}


/*******************************
*　お知らせ
********************************/
.pg_news .section.sec1{
  padding: 30px 0 0;
}
.pg_news .news_list{
  position: relative;
}
.pg_news .news_list:before {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  right: -10px;
  top: -80px;
  background: url(https://applause-style.jp/system_panel/uploads/images/news_i_.png) no-repeat center / contain;
}

/* 詳細 */
.pg_news.single .section.sec1{
  padding: 50px 0 0;
}
.news_detail .title {
  font-size: 18px;
  margin: 0 0 25px;
  padding: 0 0 15px;
  border-bottom: 1px solid #d3d3d3;
  font-weight: 500;
  line-height: 1.584;
  letter-spacing: 0.065em;
}
.news_detail .webgene-item-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.065em;
  padding-top: 22px;
}
.news_detail .category{
  padding: 0 8px;
}
.news_detail .date {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.news_detail .webgene-item {
  padding: 20px 10px 30px;
  border-bottom: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  border-top: 10px solid #dcd9d7;
  background: #ffffff;
  color: #505050;
}
.news_detail .post_content {
  padding: 0 8px;
  margin-top: 20px;
  letter-spacing: 0.07em;
}

.news_link {
  max-width: 333px;
  font-size: 15px;
  margin: 50px auto 0;
  padding: 10px;
  display: block;
  position: relative;
  text-align: center;
  background: #ede8e4;
}

@media (min-width:768px){
  .pg_news .section.sec1{
    padding: 60px 0 0;
  }
  .news_list .webgene-item a {
    padding: 30px 0;
  }
  .pg_news .news_list:before {
    width: 137px;
    height: 143px;
    right: -20px;
    top: -115px;
  }

  .pg_news.single .section.sec1{
    padding: 100px 0 0;
  }
  .news_detail .webgene-item {
    padding: 30px 40px 25px;
    border-top: 14px solid #dcd9d7;
  }
  .news_detail .title {
    font-size: 24px;
  }
  .news_link {
    font-size: 17px;
    margin: 55px auto 0;
  }
}
@media (min-width:1024px){
  .pg_news .news_list:before {
    width: 167px;
    height: 153px;
    right: -40px;
  }  
}
@media (min-width:1200px){
  .pg_news .news_list:before {
    width: 187px;
    height: 173px;
    right: -70px;
  }  
}



/*******************************
*　お客様の声
********************************/
.pg_voice .section.sec1{
  padding: 50px 0 0;
}
.voice_item {
  border: 1px solid #ede8e4;
}
.voice_item + .voice_item {
  margin-top: 35px;
}
.voice_ttl{
  padding: 10px;
  background: #ede8e4;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.voice_item .flex{
  padding: 15px 10px;
}
.voice_item .img_fit{
  width: 100%;
}
.voice_item .img_fit:before{
  padding-top: 87%;
}

@media (min-width:768px){
  .pg_voice .section.sec1{
    padding: 100px 0 0;
  }
  .voice_item .flex{
    padding: 20px 15px;
  }
  .voice_txt{
    width: 70%;
    padding-right: 50px;
  }
  .voice_item .img_fit{
    width: 30%;
  }
  .voice_ttl{
    padding: 14px 16px;
  }

}

@media (max-width:767px){
  .voice_item .img_fit{
    margin: 20px 5px 0;
  }
}



/*******************************
*　スタッフ紹介
********************************/
.pg_staff .section.sec1{
  padding: 50px 0 0;
}
.pg_staff .section.sec1 .img_fit:before{
  padding-top: 133%;
}
.staff_position {
  min-width: 150px;
  padding: 3px 10px;
  background: #45382d;
  color: #ffffff;
  text-align: center;
  display: inline-block;
}
.staff_item + .staff_item{
  padding-top: 30px;
  margin-top: 30px;
  border-top: 3px solid #ede8e4;
}
.staff_item .flex{
  padding: 12px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #c8c5c3;
  align-items: baseline;
}
.staff_en{
  margin-left: 1em;
}
.staff_detail {
  margin-top: 26px;
}
.staff_detail_ttl{
  margin-bottom: 5px;
}
.staff_detail_ttl:before{
  content: "";
  width: 18px;
  height: 20px;
  margin-right: 10px;
  background: url(https://applause-style.jp/system_panel/uploads/images/ttl_i.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
}

@media (min-width:768px){
  .pg_staff .section.sec1{
    padding: 100px 0 0;
  }
  .staff_item + .staff_item{
    padding-top: 80px;
    margin-top: 80px;
    border-top: 5px solid #ede8e4;
  }
  .staff_position {
    padding: 3px 20px;
  }
  .staff_item .flex{
    padding: 22px 0;
  }

}
@media (max-width:767px){
  .pg_staff .img_fit {
    width: 80%;
    margin: 0 auto 30px;
  }
}



/*******************************
*　採用情報
********************************/
.pg_recruit .section.sec1{
  padding: 50px 0;
}
.pg_recruit .section.sec1 .container{
  position: relative;
}
.pg_recruit .section.sec1 .container:before{
  content: "";
  width: 71px;
  height: 69px;
  background: url(https://applause-style.jp/system_panel/uploads/images/recruit_i1_.png) no-repeat center / contain;
  position: absolute;
  top: -45px;    
  left: 0;
}
.recruit_sec1_box {
  max-width: 920px;
  margin: 0 auto;
}
.recruit_sec1_ttl{
  margin-bottom: 25px;
}
.recruit_sec1_ttl:after {
  content: "";
  width: 63px;
  height: 27px;
  margin: 10px auto 0;
  background: url(https://applause-style.jp/system_panel/uploads/images/concept_ttl_i1.png) no-repeat center / contain;
  display: block;
}
.recruit_sec1_img:before{
  padding-top: 59.8%;
}
.recruit_sec1_text{
  margin-top: 25px;
}

.pg_recruit .section.sec1{
  padding: 50px 0;
}
.pg_recruit .home_ttl {
  margin-bottom: 30px;
}
.pg_recruit .home_ttl:before{
  display: none;
}
.pg_recruit .home_ttl_en{
  padding: 20px 35px;
}

.pg_recruit .section.sec2{
  padding: 40px 0;
}
.pg_recruit .section.sec2 .container{
  position: relative;
}
.pg_recruit .section.sec2 .container:after {
  content: "";
  width: 84px;
  height: 102px;
  background: url(https://applause-style.jp/system_panel/uploads/images/recruit_i2_.png) no-repeat center / contain;
  position: absolute;
  right: 15px;
  top: -85px;
}
.recruit_th,
.recruit_td{
  padding: 15px 0;
  border-bottom: 1px solid #c8c5c3;
}

.pg_recruit .section.sec3{
  padding: 40px 0;
}
.pg_recruit .section.sec3 .text-center p{
  margin: 10px 0 15px;
}

@media (max-width: 767px){  
  .recruit_th{
    padding-bottom: 0;
    font-weight: 700;
    border-bottom: 0;
  }
  .recruit_td{
    padding-top: 5px;
  }
}

@media (min-width:768px){
  .pg_recruit .section.sec1{
    padding: 95px 0 120px;
  }
  .pg_recruit .section.sec1 .container:before{
    width: 101px;
    height: 89px;
    top: 50px;    
    left: 10px;
  }
  .recruit_sec1_ttl:after{
    margin: 20px auto 0;
  }
  .pg_recruit .section.sec2{
    padding: 80px 0;
  }
  .pg_recruit .section.sec2 .container:after {
    width: 154px;
    height: 182px;
    right: 15px;
    top: -115px;
  }

  .recruit_tbl{
    width: 100%;
    display: table;
  }
  .recruit_tr{
    display: table-row;
  }
  .recruit_th,
  .recruit_td{
    padding: 28px 0;
    display: table-cell;
  }
  .recruit_th {
    width: 215px;
    padding-left: 45px;
  }

  .pg_recruit .section.sec3{
    padding: 90px 0 0;
  }
  .pg_recruit .section.sec3 .text-center p br{
    display: none;
  }

}
@media (min-width:1024px){
  .pg_recruit .section.sec1 .container:before{
    width: 121px;
    height: 109px;
    left: 30px;
  }
  .recruit_th{
    width: 285px;
    padding-left: 95px;
  }

}




/*******************************
*　商品紹介
********************************/
.pg_item .section.sec1{
  padding: 50px 0 0;
  background: url(https://applause-style.jp/system_panel/uploads/images/item_bg.jpg) no-repeat center 10px / cover;
}

@media (min-width:768px){
  .pg_item .section.sec1{
    padding: 100px 0 0;
  }
  .pg_item .webgene-pagination {
    margin: 130px 0 0;
  }
}
@media (min-width:1024px){
  .pg_item .section.sec1{
    background-size: auto;
  }
}

/* コピー用 */
@media (min-width:375px){

}

@media (min-width:768px){

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

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

}

.row_plus{
  justify-content: center;
}