@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);
  background: #f7f4ee;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}


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

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

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

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

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

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

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

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


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

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

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

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

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


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


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/
.header{
  background: #42664c;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;

  transition: 0.2s all;
}

.hdr_logo img.top{
  display: none;
}


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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 16px 10px;
    position: relative;
    z-index: 2;
  }
  .hdr1 {
    justify-content: center;
  }

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

  .hdr_logo img{
    width: 160px; 
  }

  .sns_outer{
    display: none;
  }

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

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

    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #42664c;
    padding: 19px 23px 19px 40px;
    transition: all .2s;
  }
  .body_home .header:before{
    content: "";
    display: block;
    width: 380px;
    height: 101%;
    background: #f7f4ee;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .2s;
    opacity: 1;
  }

  .hdr_outer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }


  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 180px;*/
    position: relative;
    z-index: 2;
  }

  /* ヘッダースリム */
  .header.slim{
    background: rgba(66,102, 76, 0.9);
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }
  .body_home .hdr_logo .kasou{
    display: none;
  }
  .body_home .header.slim .hdr_logo img.kasou{
    display: block;
  }
  .body_home .header.slim .hdr_logo img.top{
    display: none;
  }
  .body_home .hdr_logo img.top{
    display: block;
  }
  .body_home .header.slim:before{
    opacity: 0;
  }

  /* TELボタン */
  .hdr_tel{

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

  .gnav_sns .gnav_sns_item{
    margin-inline: 6px;
  }
}
@media (min-width:1024px){

  .header{

  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{

  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }


}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  padding-inline:4.1%; 
}
.mv:before{
  content: "";
  display: block;
  width: 80.2%;
  height: 101%;
  background: #42664c;
  position: absolute;
  right: 0;
  bottom: 4.8%;
  z-index: -1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  /*  padding-top: calc(100svh - 64px);*/
  padding-top: 55svh;
}

.mv_inner{
  display: flex;
  flex-wrap: wrap;
}
.mv_left{
  width: 100%;
}
.mv_right{
  width: 100%;
}

/* MVテキスト */
.mv_text1{
  font-size: 30px;
  font-weight: 500;
  color: #fff;
}
.mv_text2{
  font-size: 15px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  color: #fff;
  white-space: nowrap;
}

/* スライダーの場合 */
.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{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  .mv_inner{
    display: flex;
    flex-wrap: wrap;
  }
  .mv_left{
    width: 77.84%;
  }
  .mv_right{
    width: 15.34%;
    position: relative;
    z-index: 1;
  }

  /* MVテキスト */
  .mv_text1{
    font-size: 27px;
    line-height: 1.75em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    padding: 44px 11px;
  }
  .mv_text1 p:last-child{
    padding-top: 23px;
  }
  .mv_text2{
    font-size: 16px;
    line-height: 1.8em;
    position: absolute;
    right: 0;
    bottom: 6%;
  }

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


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

  /* MVテキスト */
  .mv_text1{
    font-size: 36px;
  }
  .mv_text2{
    font-size: 20px;
  }

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

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

  /* MVテキスト */
  .mv_text1{
    font-size: 50px;
  }
  .mv_text2{
    font-size: 24px;
  }

}
@media (min-width:1360px){
  /* MVテキスト */
  .mv_text1{
    font-size: 72px;
  }
}

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

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

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

.pg_header_text{
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
}
.pg_header_h1{
  font-size: 28px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0;
}
.pg_header_text_en{
  font-size: 18px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
  letter-spacing: 0;
}





@media (min-width:768px){
  .pg_header{
    margin-bottom: 80px;
  }
  .pg_header_img:before{
    padding-top: 300px;
  }

  .pg_header_title_txt{

  }
  .pg_header_h1{
    font-size: 30px;
  }
  .pg_header_text_en{
    font-size: 24px;
    margin-top: 24px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_img:before{
    padding-top: 400px;
  }

  .pg_header_title_txt{

  }
  .pg_header_h1{
    font-size: 30px;
  }
  .pg_header_text_en{

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

  .pg_header{
    margin-bottom: 160px;
  }

  .pg_header_title_txt{

  }

  .pg_header_img:before{
    padding-top: 400px;
  }

  .pg_header_h1{
    font-size: 48px;
  }
  .pg_header_text_en{

  }
}



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

.footer{
  margin-top: 50px;
  padding-bottom: 20px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #42664c;
  color: #fff;
  padding: 5px;
  margin-top: 30px;
}
.ftr_copy p{
  letter-spacing: 0;
}
.ftr_copy a:hover{
  color: #ddd;
}

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

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


.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 30px 0;
}
.ftr_contact_box1{
  width: 100%;
  text-align: center;
}
.ftr_contact_box1_en{
  font-size: 30px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box1 .content_desc{
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
}
.ftr_contact_box2_item_head{
  text-align: center;
}
.ftr_contact_box2_item_head_tt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_head_tt:before {
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-inline: auto;
  min-height: 24px;
  margin-bottom: 19px;
}
.ftr_contact_box2_item_head_tt:after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #a39c92;
  margin: 20px auto 31px;
}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_head_tt:before {
  background-image: url(/system_panel/uploads/images/tel.png);
  width: 25px;
  aspect-ratio: 25 / 24;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_head_tt:before {
  background-image: url(/system_panel/uploads/images/mail.png);
  width: 25px;
  aspect-ratio: 25 / 24;
}
.ftr_contact_box2_item_box{

}
.ftr_contact_box2_item_tel{
  text-align: center;
}
.ftr_contact_box2_item_tel1{
  font-size: 28px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
}
.ftr_contact_box2_item_tel1 a:hover{
  color: var(--main-color);
}
.ftr_contact_box2_item_tel2{
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  margin-top: 7px;
}
.link_1{
  text-align: center;
  display: block;
  font-size: 15px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  background: #42664c;
  color: #fff;
  width: 100%;
  max-width: 202px;
  margin-inline: auto;
  border: 1px solid #42664c;
  transition: all .2s;
  border-radius: 5px;
  padding: 12px;
}
.link_1:hover{
  background: #fff; 
  color: #42664c;
}

.ftr_1{
  padding-top: 60px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
}
.ftr_1_box1{

}
.ftr_logo{
  margin-bottom: 25px;
}
.ftr_add{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  margin-top: 32px;
}
.ftr_add_box{

}
.ftr_add_box a:hover{
  color: var(--main-color);
}
.ftr_add_box:nth-child(n+2){
  margin-top: 31px;
}
.ftr_sns{
  margin-top: 13px;
}
.ftr_sns_item{
  margin-right: 10px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}

@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .mv:before{
    width: 100%;
    bottom: 0;
  }
  .mv_right{
    padding: 16px 0;
  }

  .ftr_contact_box2_item:first-child {
    margin-top: 30px;
  }
  .ftr_contact_box2_item {
    border-top: 1px solid #bfbfbf;
    padding: 30px 0;
  }

  .ftr_1_box{
    justify-content: center;
  }
  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_logo{
    display: block;
    width: 200px;
    margin: 0 auto;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_en{
    font-size: 36px;
  }
  .ftr_contact_box1 .content_desc{
    text-align: center;
  }
  .ftr_contact_box2{
    margin-top: 40px;
  }
  .ftr_contact_box2_item{
    width: 50%;
    border-left: 1px solid #bfbfbf;
    padding: 20px 0;
  }
  .ftr_contact_box2_item:last-child{
    border-right: 1px solid #bfbfbf;
  }
  .ftr_contact_box2_item_head{

  }
  .ftr_contact_box2_item_head_tt{

  }
  .ftr_contact_box2_item_box{

  }
  .ftr_contact_box2_item_tel{

  }
  .ftr_contact_box2_item_tel1{
    font-size: 28px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{

  }

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

  }
  .ftr_1_box1{
    width: 48.98%;
  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 40px;
  }
  .ftr_add_box{

  }
  .ftr_sns{

  }
  .ftr_sns_item{

  }
  .ftr_1_box2{
    width: 35.01%;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
  }
  .ftr_link{
    width: 100%;
    font-size: 16px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    position: relative;
  }
  .ftr_link:hover{
    color: var(--main-color);
  }
  .ftr_link:nth-child(n+2) {
    margin-top: 16px;;
  }
  .ftr_link p{
    letter-spacing: 0;
  }

  .ftr_copy{
    margin-top: 93px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

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

  }
  .ftr_1_box1{
    width: 35.98%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_box{

  }
  .ftr_sns{

  }
  .ftr_sns_item{

  }
  .ftr_1_box2{
    width: 50.01%;
    padding-top: 76px;
  }
  .ftr_links{

  }
  .ftr_link{

  }
  .ftr_link:nth-child(n+2) {
    margin-top: 0;
  }
  .ftr_link:nth-child(n+3) {
    margin-top: 36px;
  }
  .ftr_link:nth-child(odd) {
    width: 43.7%;
  }
  .ftr_link:nth-child(even) {
    width: 55.55%;
    padding-left: 69px;
  }
  .ftr_link:nth-child(odd):after {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background: #cfccc7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .ftr_link:last-child:after{
    display: none;
  }
}
@media (min-width:1200px){
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 49.01%;
    text-align: left;
  }
  .ftr_contact_box1_en{
    font-size: 42px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 50.98%;
    margin-top: 0;
  }
  .ftr_contact_box2_item{
    padding: 43px 0;

  }
  .ftr_contact_box1 .content_desc{
    text-align: justify;
  }
  .ftr_contact_box2_item:last-child{
    border-right:none;
  }
  .ftr_contact_box2_item_head{

  }
  .ftr_contact_box2_item_head_tt{

  }
  .ftr_contact_box2_item_box{

  }
  .ftr_contact_box2_item_tel{

  }
  .ftr_contact_box2_item_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{

  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_box{

  }
  .ftr_sns{

  }
  .ftr_sns_item{

  }
  .ftr_1_box2{

  }
  .ftr_links{

  }
  .ftr_link{

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

  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_box{

  }
  .ftr_sns{

  }
  .ftr_sns_item{

  }
  .ftr_1_box2{
    width: 26.64%;
  }
  .ftr_links{

  }
  .ftr_link{

  }
}

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


/* テーブル用 */
.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 #42664c;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #42664c;
  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{
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  text-align: left;
  /*border-radius: 27px;*/
  color: #42664c;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  background-image: 
    url("/system_panel/uploads/images/lefttop.png"),
    url("/system_panel/uploads/images/righttop.png"),
    url("/system_panel/uploads/images/leftbtm.png"),
    url("/system_panel/uploads/images/rightbtm.png");
  background-position:
    left 0 top 0,
    right 0 top 0,
    left 0 bottom 0,
    right 0 bottom 0;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  transition: background-position 0.3s ease;
}
.read_more a p{
  letter-spacing: 0;
}
/*.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}*/
.read_more a:after{
  content: "→";
  position:relative;
  z-index: 1;
  transition: 0.2s all;
  right: 0;
}
.read_more a:hover{
  background-position:
    left 6px top 6px,
    right 6px top 6px,
    left 6px bottom 6px,
    right 6px bottom 6px;
}
.read_more a:hover:after{
  right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2.left{
  text-align: left;
}
.tt2:after{
  content: "";
  display: block;
  width: 66px;
  aspect-ratio:66 / 15;
  background-image: url(/system_panel/uploads/images/pl.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 20px auto 0;
}
.tt2.noImg:after{
  display: none;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 20px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 16px;
}
.tt2_ja.lg{
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
}
.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;
}


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

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

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

}

.sec_en_tt{
  font-size: 18px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
  letter-spacing: 0;
  color: #42664c;
}
.sec_en_tt.sm{
  font-size: 14px;
}
.sec_tt{

}
.sec_tt_txt{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.47em;
  letter-spacing: 0;
}
.sec_tt_txt p{
  letter-spacing: 0;
}


.content_desc{
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.25em;
  text-align: justify;
}
.content_block:nth-child(n+2){
  margin-top: 20px;
}
@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;
  }

  .content_desc{
    line-height: 1.875em; 
  }

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

  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .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{
    min-width: 233px;
    font-size: 15px;
    padding: 17px 5px 17px 30px;
    margin: 5px 5px;
  }
  .read_more a:after{
    /*    content: "→";
        top: 50%;
        right: 29px;*/
  }
  .read_more a:hover:after{
    right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 22px;
    margin-top: 0;
  }
  .tt2_ja.lg{
    font-size: 30px;
  }

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

  .sec_en_tt{
    font-size: 24px;
  }
  .sec_en_tt.sm{
    font-size: 16px;
  }
  .sec_tt{

  }
  .sec_tt_txt{
    font-size: 26px;
  }


  .content_desc{

  }
  .content_block:nth-child(n+2){
    margin-top: 20px;
  }

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

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

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

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

  .sec_en_tt{

  }
  .sec_tt{

  }
  .sec_tt_txt{
    font-size: 32px;
  }


  .content_desc{

  }
  .content_desc.center{
    text-align: center;
  }
  .content_block:nth-child(n+2){
    margin-top: 37px;
  }
}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 24px;
  }
  .tt2_ja.lg{
    font-size: 38px;
  }


  .sec_tt_txt{
    font-size: 38px;
  }

}

.swiper{
  cursor: auto !important;
}
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



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

}
.pg_home .section.sec1{
  padding-top: 60px;
}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 114px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 220px;
  }
  .pg_home .section.sec2{
    padding-top: 120px;
  }
  .pg_home .section.sec3{
    padding-top: 126px;
  }
  .pg_home .section.sec4{
    padding-top: 176px;
  }
  .pg_home .section.sec5{
    padding-top: 114px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
/*メイン*/
.home_contents1_wrap{

}
.home_contents1_items{

}
.home_contents1_item{
  display: flex;
  flex-wrap: wrap;
}
.home_contents1_item:nth-child(n+2){
  margin-top: 50px;
}
.home_contents1_box1{
  width: 100%;
  order: 1;
}
.home_contents1_box1 .sec_tt{
  margin-top: 20px;
}
.home_contents1_box1 .content_desc{
  margin-top: 20px;
}
.home_contents1_box2{
  width: 100%;
  order: 2;
  position: relative;
  margin-top: 36px;;
}
.home_contents1_box2:before{
  content: "";
  display: block;
  height: 100%;
  background: #42664c;
  position: absolute;
  top: 4.2%;
  left: -4.6%;
  z-index: -1;
}
.home_contents1_item.type1 .home_contents1_box2:before{
  width: 24.61%;
}
.home_contents1_item.type2 .home_contents1_box2:before{
  width: 36.92%;
  height: 93.54%;
}
.home_contents1_box2_img{

}
.home_contents1_item.type2{

}
.home_contents1_item.type2 .home_contents1_box2_img img{
  width: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/cover.png);
  aspect-ratio: 661 / 635;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.home_contents1_box2_img:before{
  padding-top: 69.23%;
}
.home_contents1_item.type2 .home_contents1_box2_img{
  aspect-ratio: 650 / 621;
  position: relative;
}


/*商品一覧*/
.product_list{

}
.product_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.product_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.product_list .webgene-item:nth-child(n+3){
  margin-top: 20px;; 
}
.product_list .webgene-item a{

}
.product_list .webgene-item a:hover{
  color: var(--main-color);
}
.product_list .webgene-item .img:before{
  padding-top: 75%;
}
.product_list .webgene-item .box2{
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 16px;
}
.product_list .webgene-item .title{
  font-size:15px;
  font-weight: 400;
  letter-spacing: 0;
}
.product_list .webgene-item .price{
  font-size:15px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 6px;
}
.product_list .webgene-item .category{
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 0;
  display: inline-block;
  background: #fff;
  color: #181818;
  border-radius: 0;
  padding: 3px 13px;
  border: 1px solid #42664c;
  margin-bottom: 14px;
}

/*palace.undの製品について*/
.home_contents1_item.type3 .home_contents1_box2_img:before{
  padding-top: 133.333%;
}
.home_contents1_item.type3 .home_contents1_box2:before{
  width: 75.67%;
  top: 4.2%;
  left: -12.6%;
}

/*ブログ*/
.home_contents4_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.home_contents4_box1{
  width: 100%;
}
.home_contents4_box1_img:before{
  padding-top:450px;
}
.home_contents4_box2{
  width: 100%;
  overflow: hidden;
  margin-top: 30px;;
}

.news_list{

}
.news_list.home{

}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-10px;
  overflow: hidden;
}
.news_list .webgene-item{
  width: 50%;
  padding-inline:10px;
  position: relative;
  padding-bottom: 15px;
}
.news_list .webgene-item:nth-child(2):before,
.news_list .webgene-item:nth-child(3):before,
.news_list .webgene-item:nth-child(4):before {
  content: "";
}
.news_list .webgene-item:nth-child(2n+1):not(:first-child):after{
  content: "";
  width: 200%;
}
.news_list .webgene-item:nth-child(n+3){
  padding-bottom: 0;
  padding-top: 23px;
}
.news_list .webgene-item:before {
  width: 1px;
  height: 100000px;
}
.news_list .webgene-item:before,
.news_list .webgene-item:after {
  background: #c3bfbf;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.news_list .webgene-item:after{
  height: 1px;
}
.news_list .webgene-item a{

}
.news_list .webgene-item a:hover{
  color: var(--main-color);
}
.news_list .webgene-item .img{

}
.news_list .webgene-item .img:before{
  padding-top: 75.71%;
}
.news_list .webgene-item .box2{
  margin-top: 7px;
}
.news_list .webgene-item .meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_list .webgene-item .date{
  font-size: 14px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.news_list .webgene-item .category{
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 0;
  display: inline-block;
  background: #fff;
  color: #181818;
  border-radius: 0;
  padding: 3px 25px;
  border: 1px solid #42664c;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  line-height: 1.875em;
  margin-top: 16px;
}

.news_list.detail {
  overflow: hidden;
}
.news_list.detail .webgene-blog{

}
.news_list.detail .webgene-item{

}
.news_list.detail .webgene-item a{

}
.news_list.detail .webgene-item:before{
  height: 100%;
}

/*insta*/
.insta_box{

}
.insta_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-2px;
}
.insta_box .webgene-item{
  width: 50%;
  padding-inline:2px;  
}
.insta_box .webgene-item:nth-child(n+3){
  margin-top: 4px;
}
.insta_box .webgene-item a{

}
.insta_box .webgene-item .img:before{
  padding-top: 132%;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .news_list .webgene-item .title{
    font-size: 14px;
  }

  .news_list .webgene-item .category{
    padding: 3px 10px;
  }

  .news_list.detail .webgene-item{
    padding-bottom: 20px;
  }
  .news_list.detail .webgene-item:nth-last-child(-n + 3){
    padding-bottom: 0;
  }
}
@media (min-width:768px){
  /*メイン*/
  .home_contents1_wrap{

  }
  .home_contents1_items{

  }
  .home_contents1_item{

  }
  .home_contents1_item:nth-child(n+2){
    margin-top: 100px;
  }
  .home_contents1_box1{

  }
  .home_contents1_box1 .sec_tt{
    margin-top: 30px;
  }
  .home_contents1_box1 .content_desc{
    margin-top: 27px;
  }
  .home_contents1_box2{
    margin-top: 60px;;
  }
  .home_contents1_box2_img{

  }
  .home_contents1_item.type2{

  }
  .home_contents1_item.type2 .home_contents1_box2_img{

  }
  .home_contents1_box2_img:before{

  }
  .home_contents1_item .read_more{
    margin-top: 44px
  }

  /*商品一覧*/
  .product_list{

  }
  .product_list .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-13.5px;
  }
  .product_list .webgene-item{
    width: 50%;
    padding-inline:13.5px;
  }
  .product_list .webgene-item:nth-child(n+3){
    margin-top: 30px;; 
  }
  .product_list .webgene-item a{

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

  }
  .product_list .webgene-item .title{

  }
  .product_list .webgene-item .price{

  }

  /*palace.undの製品について*/
  .home_contents1_item.type3 .home_contents1_box2_img:before{
    padding-top: 85%;
  }

  /*ブログ*/
  .home_contents4_wrap{

  }
  .home_contents4_box1{

  }
  .home_contents4_box1_img:before{
    padding-top: 126%;
  }
  .home_contents4_box2{
    margin-top: 40px;;
  }

  .news_list{

  }
  .news_list.home{

  }
  .news_list .webgene-blog{
    margin-inline:-62.5px;
  }
  .news_list .webgene-item{
    padding-inline:62.5px;
  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .img{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .meta{

  }
  .news_list .webgene-item .date{
    margin-top:0;
  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{
    margin-top: 11px;
  }
  .news_list.detail .webgene-item{
    padding-bottom: 20px;
  }
  .news_list.detail .webgene-item:nth-last-child(-n + 3){
    padding-bottom: 0;
  }

  /*insta*/
  .insta_box{

  }
  .insta_box .webgene-blog{

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

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

  }

  .news_list.detail{

  }
  .news_list.detail .webgene-blog{

  }
  .news_list.detail .webgene-item{

  }
  .news_list.detail .webgene-item a{

  }
}
@media (min-width:1024px){
  /*ブログ*/
  .home_contents4_wrap{
    justify-content: flex-start;
  }
  .home_contents4_box1{
    width: 28.28%;
    margin-right: 63px;
    padding-top: 10px;
  }
  .home_contents4_box1_img:before{
    padding-top: 230.2%;
  }
  .home_contents4_box2{
    width: 54.27%;
    margin-top: 0;
  }


  .news_list.detail .webgene-blog{
    margin-inline:-20px;
  }
  .news_list.detail .webgene-item{
    width: 33.333%;
    padding-inline:20px;
    padding-bottom: 32px;
  }

  .news_list.detail .webgene-item:nth-child(n+3){
    margin-top: 0;
    padding-top: 0;
  }
  .news_list.detail .webgene-item:nth-child(n+4){
    padding-top: 40px;
  }
  .news_list.detail .webgene-item:nth-last-child(-n + 3){
    padding-bottom: 0;
  }
  .news_list.detail .webgene-item:before,
  .news_list.detail .webgene-item:after {
    background: #c3bfbf;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .news_list.detail .webgene-item:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #c3bfbf;
  }
  .news_list.detail .webgene-item:nth-child(2n+1):not(:first-child):after{
    display: none;
  }
  .news_list.detail .webgene-item:nth-child(3n+1):not(:first-child):after {
    content: "";
    width: 300%;
  }
  .news_list.detail .webgene-item:after{
    background: #c3bfbf;
  }
  .news_list.detail .webgene-item:after {
    height: 1px;
  }

}
@media (min-width:1200px){
  /*メイン*/
  .home_contents1_wrap{

  }
  .home_contents1_items{

  }
  .home_contents1_item{
    align-items: flex-start;
  }
  .home_contents1_item:nth-child(n+2){
    margin-top: 80px;
  }
  .home_contents1_item:nth-child(odd){
    justify-content: flex-end;
  }
  .home_contents1_item:nth-child(even){
    justify-content: flex-start;
  }

  .home_contents1_item:nth-child(odd) .home_contents1_box1{
    order: 1;
    margin-right: 98px;
  }
  .home_contents1_item:nth-child(odd) .home_contents1_box2{
    order: 2;
  }
  .home_contents1_item:nth-child(even) .home_contents1_box1{
    order: 2;
    margin-left: 95px;
  }
  .home_contents1_item:nth-child(even) .home_contents1_box2{
    order: 1;
  }
  .home_contents1_box1{
    width: 37.5%;
  }
  .home_contents1_item.type2 .sec_tt{
    margin-top: 0;
  }
  .home_contents1_box1 .content_desc{

  }
  .home_contents1_box2{
    width: 42.76%;
    margin-top: 0;
  }
  .home_contents1_box2_img{

  }
  .home_contents1_item.type2{

  }
  .home_contents1_item.type1 .home_contents1_box2{
    margin-top: 80px;
  }
  .home_contents1_item.type2 .home_contents1_box2_img{

  }
  .home_contents1_box2_img:before{

  }

  /*商品一覧*/
  .product_list{

  }
  .product_list .webgene-blog{

  }
  .product_list .webgene-item{
    width: 25%;
  }
  .product_list .webgene-item:nth-child(n+3){
    margin-top: 0; 
  }
  .product_list .webgene-item:nth-child(n+5){
    margin-top: 54px;; 
  }
  .product_list .webgene-item a{

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

  }
  .product_list .webgene-item .title{

  }
  .product_list .webgene-item .price{

  }
  .home_contents2_wrap .read_more{
    margin-top: 53px;
  }

  /*palace.undの製品について*/
  .home_contents1_item.type3{
    justify-content: space-between; 
  }
  .home_contents1_item.type3 .home_contents1_box1{
    width: 40.25%;
    margin-right: 0;
    margin-left: 100px;
  }
  .home_contents1_item.type3 .home_contents1_box2_img:before{
    padding-top: 133.333%;
  }
  .home_contents1_item.type3 .home_contents1_box2{
    width: 36.51%;
  }
  .home_contents1_item.type3 .sec_tt_txt{
    margin-right: -24px;
  }

  /*ブログ*/
  .home_contents4_wrap{
    justify-content: flex-start;
  }
  .home_contents4_box1{
    width: 28.28%;
    margin-right: 63px;
    padding-top: 10px;
  }
  .home_contents4_box1_img:before{
    padding-top: 230.2%;
  }
  .home_contents4_box2{
    width: 54.27%;
  }

  .news_list{

  }
  .news_list.home{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .img{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .meta{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

  }
  .home_contents4_box2 .read_more{
    margin-top: 47px;
  }

  /*insta*/
  .insta_box{

  }
  .insta_box .webgene-blog{

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

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

  }
  .home_contents5_wrap .read_more{
    margin-top: 43px;
  }

  .news_list.detail{

  }
  .news_list.detail .webgene-blog{
    margin-inline:-20px;
  }
  .news_list.detail .webgene-item{
    width: 33.333%;
    padding-inline:20px;
  }

  .news_list.detail .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list.detail .webgene-item:nth-child(n+4){

  }
  .news_list.detail .webgene-item a{

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


}
@media (min-width:1720px){
  .home_contents1_item.type3 .home_contents1_box1{
    width: 31.25%;
    margin-left: 200px;
  }

}




/*******************************
*　about
********************************/

/* セクション設定 */
.pg_about{
  overflow: hidden;
}
.pg_about .section.sec1{

}
.pg_about .section.sec2{

}
.pg_about .section.sec3{
  background: #e6e2dc
}
.pg_about .section.sec5{
  position: relative;
  padding-bottom: 30px;
}
.pg_about .section.sec5:before{
  content: "";
  display: block;
  width: 100%;
  height: 150%;
  background: #e6e2dc;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_about .section.sec3{
    padding: 100px 0;
  }
  .pg_about .section.sec4{
    padding: 100px 0 0;
    padding-bottom: 100px;
  }
  .pg_about .section.sec5{
    padding-top: 100px;
    padding-bottom: 100px;
  }

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


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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 120px;
    padding-bottom: 170px;
  }
  .pg_about .section.sec3{
    padding: 120px 0;
  }
  .pg_about .section.sec4{
    padding: 160px 0 0;
    padding-bottom: 150px;
  }
  .pg_about .section.sec5{
    padding-top: 119px;
    padding-bottom: 160px;
  }

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


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


}

/* メイン部分 */
.about_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_contents1_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.about_contents1_box1_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_contents1_box1_top{
  width: 84.61%;
  position: relative;
}
.about_contents1_box1_top:after{
  content: "";
  display: block;
  width: 29.09%;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  top: 4%;
  right: -6.5%;
}
.about_contents1_box1_top .img_fit:before{
  padding-top: 90.9%;
}
.about_contents1_box1_btm{
  width: 61.53%;
  margin-left: auto;
  position: relative;
  margin-top: -3.7em;
  z-index: 3;
}
.about_contents1_box1_btm:after{
  content: "";
  display: block;
  width: 40%;
  height: 71%;
  background: var(--main-color);
  position: absolute;
  top: 34%;
  left: -9.5%;
  z-index: -1;
}
.about_contents1_box1_btm:before{

}
.about_contents1_box2{
  width: 100%;
  order: 1;
}
.about_contents1_box2 .tt2{

}
.about_contents1_box2 .sec_tt{
  margin-top: 20px;
}
.bg_whte_tt{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
}
.bg_whte_tt p{
  background: #fff;
  padding: 2px 9px;
  letter-spacing: 0;
}
.about_contents1_box2 .content_desc{
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.about_contents1_box2 .content_desc p{
  letter-spacing: 0.075em;
}

/*暮らしに寄り添う、美しさとやさしい機能。*/
.lg_en{
  font-size: clamp(2.5rem, 0.5rem + 10vw, 12.5rem);
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
  letter-spacing: 0;
  color: #e6e2dc;
}
.about_contents2_wrap{

}
.about_contents2_wrap .about_contents1_box1{

}
.about_contents2_wrap .about_contents1_box1_top{
  width: 49.58%;
  margin-top: 50px;
}
.about_contents2_wrap .about_contents1_box1_top .img_fit:before{
  padding-top: 200%;
}
.about_contents2_wrap .about_contents1_box1_top:after{
  width: 53.333%;
  right: auto;
  left: -11%;
  top: 3.5%;
}
.about_contents2_wrap .about_contents1_box1_btm{
  margin-top: 0;
  width: 49.58%;
}
.about_contents2_wrap .about_contents1_box1_btm .img_fit:before{
  padding-top: 200%;
}
.about_contents2_wrap .about_contents1_box1_btm:after{
  display: none;
}
.about_contents1_box2{

}
.about_contents2_wrap .about_contents1_box2 .tt2{
  margin-top: 20px;
}
.about_contents2_bg_tt{
  position: relative;
  margin-bottom: 20px;
}
.about_contents2_bg_img:before{
  padding-top: 140px;
}
.about_contents2_bg_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.about_contents2_bg_en{
  text-align: center;
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.about_contents2_wrap .about_contents1_box2 .content_desc{

}

/*静かに際立つpalace.undの個性*/
.about_contents3_wrap .tt2_ja{
  margin-top: 20px;
}
.about_contents3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.about_contents3_item{

}
.about_contents3_item:nth-child(n+2){
  margin-top: 30px;;
}
.about_contents3_item_inner{
  padding: 30px 16px;
  background-image: url(/system_panel/uploads/images/lefttop.png), url(/system_panel/uploads/images/righttop.png), url(/system_panel/uploads/images/leftbtm.png), url(/system_panel/uploads/images/rightbtm.png);
  background-position: left 0 top 0, right 0 top 0, left 0 bottom 0, right 0 bottom 0;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  transition: background-position 0.3s ease;
}
.about_contents3_item_outer{
  position: relative; 
}
.about_contents3_item_img{

}
.about_contents3_item_img:before{
  padding-top: 66.666%;
}
.about_contents3_item_num{
  font-size: 46px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
  position: absolute;
  bottom: -22px;
  left: 11px;
  z-index: 1;
}
.about_contents3_item_box2{
  padding-top: 36px;
}
.about_contents3_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--main-color);;
  letter-spacing: 0;
}
.about_contents3_item .content_desc{
  margin-top: 22px;
}

/*動画*/
.about_contents3_video{
  margin-top: 50px;
}
.about_contents3_video .responsive_video{
  width:100%;
  margin-inline:auto;
}
.about_contents3_video .responsive_video:before{
  padding-top: 56.25%;
}
.about_contents3_video iframe{
  border: none;
  border-radius: 10px;
}

/*工夫*/
.about_contents1_box1.kufu{

}
.about_contents1_box1.kufu .about_contents1_box1_inner{

}
.about_contents1_box1.kufu .about_contents4_box1_img{
  width: 100%;
}
.about_contents1_box1.kufu .about_contents4_box1_img:before{

}

/*安心してご購入いただくために*/
.about_contents5_wrap .sec_en_tt{
  margin-bottom: 26px;
}
.about_contents5_wrap{

}
.about_contents5_items{
  display: flex;
  flex-wrap: wrap;
  margin-top:40px;
}
.about_contents5_item{
  width: 100%;
}
.about_contents5_item:nth-child(n+2){
  margin-top: 30px;;
}
.about_contents5_item_inner{
  background: #ffffff;
}
.about_contents5_item_img{

}
.about_contents5_item_box2{
  padding: 19px 16px;;
}
.about_contents5_item_tt{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  border-bottom: 1px dashed;
  padding-bottom: 12px;
}
.about_contents5_item .content_desc{
  margin-top: 19px;
}

/*声*/
.about_contents6_wrap{
  padding-top: 40px;
}
.about_contents6_items{
  display: flex;
  flex-wrap: wrap;
  /*  margin-inline:-2.5px;*/
  margin-top: 40px;
}
.about_contents6_item{
  width: 100%;
  /*  padding-inline:2.5px;*/
}
.about_contents6_item:nth-child(n+2){
  margin-top: 5px;
}
.about_contents6_item_inner{
  background: #fff;
  padding: 25px 16px;
}
.about_contents6_item_star{
  text-align: center;
  margin-bottom: 20px;
}
.about_contents5_item_tt.sm{

}
.about_contents6_item .content_desc{
  margin-top: 16px;
}
.about_contents6_wrap .link_2{
  max-width: 240px;
  font-size: 15px;
  font-weight: 700;
  margin-top: 36px;
}
.about_contents6_wrap .link_2 p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.about_contents6_wrap .link_2 p:after{
  content: "\f14c";
  font-family: "fontAwesome";
  font-weight: 900;
  font-size: 15px;
  margin-left: 14px;
  padding-top: 2px;
}

@media (max-width:767px){

}
@media (min-width:768px){
  /* メイン部分 */
  .about_contents1_wrap{

  }
  .about_contents1_box1{
    margin-top: 50px;
  }
  .about_contents1_box1_inner{

  }
  .about_contents1_box1_top:before{

  }
  .about_contents1_box1_btm{
    margin-top: -8.7em;
  }
  .about_contents1_box1_btm:before{

  }
  .about_contents1_box2{

  }
  .about_contents1_box2 .tt2{

  }
  .bg_whte_tt{
    font-size: 20px;
  }
  .bg_whte_tt p{

  }
  .about_contents1_box2 .content_desc{
    margin-top: 30px;
  }

  /*暮らしに寄り添う、美しさとやさしい機能。*/
  .lg_en{

  }
  .about_contents2_wrap{

  }
  .about_contents2_wrap .about_contents1_box1{

  }
  .about_contents2_wrap .about_contents1_box1_top{
    margin-top: 102px;
  }
  .about_contents2_wrap .about_contents1_box1_top .img_fit:before{

  }
  .about_contents2_wrap .about_contents1_box1_btm{

  }
  .about_contents2_wrap .about_contents1_box1_btm .img_fit:before{

  }
  .about_contents1_box2{

  }
  .about_contents2_bg_tt{
    margin-bottom: 40px;
  }
  .about_contents2_bg_img:before{

  }
  .about_contents2_bg_en{
    font-size: 28px;
  }
  .about_contents2_wrap .about_contents1_box2 .content_desc{

  }

  /*静かに際立つpalace.undの個性*/
  .about_contents3_items{
    margin-inline:-20px;
    margin-top: 54px;
  }
  .about_contents3_item{
    width: 50%;
    padding-inline:20px;
  }
  .about_contents3_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_contents3_item:nth-child(n+3){
    margin-top: 50px;;
  }
  .about_contents3_item_inner{
    padding: 20px;
    height: 100%;

  }
  .about_contents3_item_outer{

  }
  .about_contents3_item_img{

  }
  .about_contents3_item_img:before{

  }
  .about_contents3_item_num{
    font-size: 60px;
    bottom: -35px;
    left: 19px;
  }
  .about_contents3_item_box2{
    padding-top: 50px;
  }
  .about_contents3_item_tt{
    font-size: 20px;
  }
  .about_contents3_item .content_desc{

  }

  /*動画*/
  .about_contents3_video{
    margin-top: 100px;
  }
  .about_contents3_video .responsive_video{
    width: 84.21%;
    margin-inline:auto;
  }
  .about_contents3_video .responsive_video:before{

  }
  .about_contents3_video iframe{

  }

  /*工夫*/
  .about_contents1_box1.kufu{

  }
  .about_contents1_box1.kufu .about_contents1_box1_inner{

  }
  .about_contents1_box1.kufu .about_contents4_box1_img{

  }
  .about_contents1_box1.kufu .about_contents4_box1_img:before{
    padding-top: 66.66%;
  }

  /*安心してご購入いただくために*/
  .about_contents5_wrap{

  }
  .about_contents5_items{
    margin-inline:-20px;
    margin-top: 56px;
  }
  .about_contents5_item{
    width: 50%;
    padding-inline:20px;
  }
  .about_contents5_item:nth-child(n+2){
    margin-top: 0;;
  }
  .about_contents5_item:nth-child(n+3){
    margin-top: 30px;;
  }
  .about_contents5_item_inner{
    height: 100%;
  }
  .about_contents5_item_img{

  }
  .about_contents5_item_box2{
    padding: 20px;
  }
  .about_contents5_item_tt{
    font-size: 22px;
  }
  .about_contents5_item .content_desc{

  }

  /*声*/
  .about_contents6_wrap{
    padding-top: 100px;
  }
  .about_contents6_items{
    margin-top: 58px;
    margin-inline: -2.5px;
  }
  .about_contents6_item{
    width: 33.333%;
    padding-inline:2.5px;
  }
  .about_contents6_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_contents6_item:nth-child(n+4){
    margin-top: 5px;
  }
  .about_contents6_item_inner{
    height: 100%;
    padding: 25px 29px;
  }
  .about_contents6_item_star{
    text-align: center;
  }
  .about_contents5_item_tt.sm{
    font-size: 18px;
    padding-bottom: 24px;
  }
  .about_contents6_item .content_desc{

  }
  .about_contents6_wrap .link_2{
    margin-top: 60px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /* メイン部分 */
  .about_contents1_wrap{

  }
  .about_contents1_box1{
    width: 42.76%;
    order: 1;
    margin-top: 0;
  }
  .about_contents1_box1_inner{

  }
  .about_contents1_box1_top:before{

  }
  .about_contents1_box1_btm{
    margin-top: -8.7em;
  }
  .about_contents1_box1_btm:before{

  }
  .about_contents1_box2{
    width: 50.98%;
    order: 2;
  }
  .about_contents1_box2 .tt2{
    margin-bottom: 32px;
  }
  .about_contents1_box2 .sec_tt{
    margin-top: 30px;
  }
  .bg_whte_tt{
    font-size: 21px;
  }
  .bg_whte_tt p{

  }
  .about_contents1_box2 .content_desc{

  }

  /*暮らしに寄り添う、美しさとやさしい機能。*/
  .lg_en{

  }
  .about_contents2_wrap{
    margin-top: -5em;
  }
  .about_contents2_wrap .about_contents1_box1{
    order: 2;
    width: 39.8%;
  }
  .about_contents2_wrap .about_contents1_box1_top{
    margin-top: 102px;
  }
  .about_contents2_wrap .about_contents1_box1_top .img_fit:before{

  }
  .about_contents2_wrap .about_contents1_box1_btm{

  }
  .about_contents2_wrap .about_contents1_box1_btm .img_fit:before{

  }
  .about_contents2_wrap .about_contents1_box2 {
    order: 1;
    padding-top: 127px;
  }
  .about_contents2_bg_tt{
    margin-bottom: 40px;
  }
  .about_contents2_bg_img:before{

  }
  .about_contents2_bg_en{
    font-size: 24px;
  }
  .about_contents2_wrap .about_contents1_box2 .content_desc{

  }

  /*静かに際立つpalace.undの個性*/
  .about_contents3_wrap .tt2_ja{
    margin-top: 28px;
  }
  .about_contents3_items{

  }
  .about_contents3_item{
    width: 33.33%;
  }
  .about_contents3_item:nth-child(n+3){
    margin-top: 0;
  }
  .about_contents3_item_inner{
    padding: 29px;
  }
  .about_contents3_item_outer{

  }
  .about_contents3_item_img{

  }
  .about_contents3_item_img:before{

  }
  .about_contents3_item_num{
    font-size: 80px;
  }
  .about_contents3_item_box2{

  }
  .about_contents3_item_tt{
    font-size: 20px;
  }
  .about_contents3_item .content_desc{

  }

  /*動画*/
  .about_contents3_video{
    margin-top: 122px;
  }
  .about_contents3_video .responsive_video{
    width: 84.21%;
    margin-inline:auto;
  }
  .about_contents3_video .responsive_video:before{

  }
  .about_contents3_video iframe{

  }

  /*工夫*/
  .pg_about .section.sec4 .about_contents2_wrap{
    margin-top: 0;
  }
  .about_contents1_box1.kufu{
    width: 46.05%;
  }
  .about_contents1_box1.kufu .about_contents1_box1_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .about_contents1_box1.kufu .about_contents4_box1_img{

  }
  .about_contents1_box1.kufu .about_contents4_box1_img:before{

  }
  .about_contents1_box2.kufu{
    width: 48.02%;
    padding-top: 0;
  }
  .about_contents2_wrap .about_contents1_box2.kufu .tt2{
    margin-top: 0;
  }

  /*安心してご購入いただくために*/
  .about_contents5_wrap{

  }
  .about_contents5_wrap .tt2{
    margin-bottom: 39px;
  }
  .about_contents5_items{
    margin-top: 56px;
  }
  .about_contents5_item{
    width: 33.333%;
  }
  .about_contents5_item:nth-child(n+3){
    margin-top: 0;
  }
  .about_contents5_item_inner{

  }
  .about_contents5_item_img{

  }
  .about_contents5_item_box2{
    padding: 19px 30px;
  }
  .about_contents5_item_tt{
    font-size: 28px;
  }
  .about_contents5_item .content_desc{

  }

  /*声*/
  .about_contents6_wrap{
    padding-top: 165px;
  }

  .about_contents6_items{

  }
  .about_contents6_item{
    width: 20%;
  }
  .about_contents6_item:nth-child(n+4){
    margin-top: 0;
  }
  .about_contents6_item_inner{

  }
  .about_contents6_item_star{

  }
  .about_contents5_item_tt.sm{
    font-size: 20px;
  }
  .about_contents6_item .content_desc{

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

  .bg_whte_tt{
    font-size: 24px;
  }


  /*静かに際立つpalace.undの個性*/
  .about_contents3_item_tt{
    font-size: 24px;
  }
}
@media (min-width:1720px){
  /*静かに際立つpalace.undの個性*/
  .about_contents3_item_tt{
    font-size: 30px;
  }

  .about_contents2_bg_en{
    font-size: 36px;
  }

}



/*******************************
*　製品について
********************************/

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

}
.pg_aboutOurProduct .section.sec1{

}
.pg_aboutOurProduct .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_aboutOurProduct .section.sec1{

  }
  .pg_aboutOurProduct .section.sec2{

  }

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


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

  }
  .pg_aboutOurProduct .section.sec1{

  }
  .pg_aboutOurProduct .section.sec2{

  }

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


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


}

/* メイン部分 */
.ourproduct_contents1_wrap .sec_en_tt{
  margin-bottom: 20px;
}
.ourproduct_contents1_wrap .tt2{
  margin-bottom: 38px;
}

/*リスト*/
.ourproduct_list{
  margin-top: 30px;
}
.ourproduct_list .webgene-blog{
  display:flex;
  flex-wrap: wrap;
}
.ourproduct_list .webgene-item{
  width: 100%;
}
.ourproduct_list .webgene-item:nth-child(n+2){
  margin-top: 30px;;
}
.ourproduct_list .webgene-item a{
  display: block;
  background: #fff;
  transition: all .2s;
  cursor: pointer;
}
.ourproduct_list .webgene-item a:hover{
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  color: var(--main-color);
  cursor: pointer;
}
.ourproduct_list .webgene-item .img:before{
  padding-top: 66.66%;
}
.ourproduct_list .webgene-item .box2{
  padding: 16px;
}
.ourproduct_list .webgene-item .title{
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  border-bottom: 1px dashed;
  padding-bottom: 10px;
}
.ourproduct_list .webgene-item .text{
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.25em;
  margin-top: 20px;
}
.link_2{
  text-align: center;
  display: block;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  background: #42664c;
  color: #fff;
  width: 100%;
  max-width: 180px;
  margin-inline: auto;
  border: 1px solid #42664c;
  transition: all .2s;
  border-radius: 5px;
  padding: 8px;
  margin-top: 18px;
}
.link_2 p{
  letter-spacing: 0;
}
.link_2:hover{
  background: #fff;
  border: 1px solid #42664c;;
  color: #42664c;
}

/*詳細*/
.ourproduct_detail{

}
.detail_tt,
.ourproduct_detail h3{
  font-size: 20px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0;
  line-height: 1.2em;
  background: #e6e2dc;
  border-left: 5px solid #42664c;
  padding: 10px;
  margin-bottom: 1.25em;
  padding: 10px 15px;
}
.ourproduct_detail h4,
.ourproduct_detail h5{
  font-size: 18px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0;
  border-bottom: 2px dashed #42664c;
  margin-bottom: 1.25em;
  padding-bottom: 0.4em;
}
.ourproduct_detail h4,
.ourproduct_detail h5{
  margin-top: 1.4em;
}
.ourproduct_detail .post_content :not(h2):not(h3):not(h4):not(h5) {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.25em;
}
.ourproduct_detail h3:nth-of-type(n+2) {
  margin-top: 2em;
}
.ourproduct_detail img{
  display: block;
  margin: 1.4em 0 1.2em;
}
.body_aboutOurProductDetail .read_more{
  margin-top: 40px;
}
.ourproduct_detail .post_content a{
  /*  text-align: center;
    display: block;
    font-size: 15px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    background: #42664c;
    color: #fff;
    min-width: 250px;
    max-width: 350px;
    margin-inline: auto;
    border: 1px solid #181818;
    transition: all .2s;
    border-radius: 5px;
    padding: 12px;
    margin-top: 20px;*/

  color: var(--main-color);
  font-weight: 700;
  text-decoration: underline;
}

.ourproduct_detail h3.dummy{
  background: none;
  border: none;
  font-size: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  line-height: 0;
}
@media (max-width:767px){

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

  /*リスト*/
  .ourproduct_list{
    margin-top: 40px;
  }
  .ourproduct_list .webgene-blog{
    margin-inline:-20px;
  }
  .ourproduct_list .webgene-item{
    width: 50%;
    padding-inline:20px;
  }
  .ourproduct_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .ourproduct_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .ourproduct_list .webgene-item a{
    display: block;
    height: 100%;
  }
  .ourproduct_list .webgene-item .img:before{

  }
  .ourproduct_list .webgene-item .box2{
    padding: 25px 32px 40px;
  }
  .ourproduct_list .webgene-item .title{
    font-size: 21px;
  }
  .ourproduct_list .webgene-item .text{

  }
  .link_2{

  }

  /*詳細*/
  .ourproduct_detail{

  }
  .detail_tt,
  .ourproduct_detail h3{
    font-size: 30px;
  }
  .ourproduct_detail h4,
  .ourproduct_detail h5{
    font-size: 22px;
  }
  .body_aboutOurProductDetail .read_more{
    margin-top: 100px;
  }
}
@media (min-width:1024px){
  .ourproduct_contents1_wrap .sec_en_tt{
    margin-bottom: 28px;
  }

  .ourproduct_detail .post_content a{
    margin-right: auto;
    margin-left: 0;
  }
}
@media (min-width:1200px){
  /*リスト*/
  .ourproduct_list{
    margin-top: 56px;
  }
  .ourproduct_list .webgene-blog{

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

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

  }
  .ourproduct_list .webgene-item .box2{

  }
  .ourproduct_list .webgene-item .title{
    font-size: 21px;
  }
  .ourproduct_list .webgene-item .text{

  }
  .link_2{

  }


  /*詳細*/
  .ourproduct_detail{

  }
  .detail_tt,
  .ourproduct_detail h3{
    font-size: 36px;
  }
  .ourproduct_detail h4,
  .ourproduct_detail h5{
    font-size: 30px;
  }
  .body_aboutOurProductDetail .read_more{
    margin-top: 144px;
  }
}
@media (min-width:1470px){
  .ourproduct_list .webgene-item .title{
    font-size: 28px;
  }

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


}







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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


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

  }

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


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


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


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


}

/* メイン部分 */
.product_cate{

}
.product_cate .webgene-blog{

}
.product_cate .webgene-item{

}
.product_cate .webgene-item a{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

@media (max-width:767px){
  .product_cate{
    display: none;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .product_cate{
    margin-bottom: 50px;
  }
  .product_cate .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-15px;
  }
  .product_cate .webgene-item{
    width: 50%;
    padding-inline:15px;
  }
  .product_cate .webgene-item:nth-child(n+3){
    margin-top: 16px;;
  }
  .product_cate .webgene-item a{
    display: block;
    border: 1px solid var(--main-color);
    background: var(--main-color);
    color: #fff;
    text-align: center;
    transition: all .2s;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 12px;
  }
  .product_cate .webgene-item a.on{
    background: #fff;
    color: #181818;

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


}
@media (min-width:1200px){
  /* メイン部分 */
  .product_cate{
    margin-bottom: 80px;
  }
  .product_cate .webgene-blog{

  }
  .product_cate .webgene-item{
    width:25%;
  }
  .product_cate .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .product_cate .webgene-item:nth-child(n+5){
    margin-top: 16px;
  }
  .product_cate .webgene-item a{

  }

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


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


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

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{
  font-family: "Noto Sans JP", sans-serif;
}
.company_tbl p{
  letter-spacing: 0.05em;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #000000;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e2dc;
  font-weight: 400;
}
.company_tbl .table_rows_td{
  background: #f7f4ee;
  font-weight: 400;
  line-height: 1.8em;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{
    border-left: 0;
  }
  .company_tbl .table_rows_td{
    border-right: 0;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom:1px solid #000000;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    border-left: 0;
  }
  .company_tbl .table_rows_td{
    border-right: 0;
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }
  .gmap{
    margin-top: 78px;
  }
  .access_map iframe{
    height: 450px;
  }


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

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16px 30px 15px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

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

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


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


}



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

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 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 {
  font-family: "Noto Sans JP", sans-serif;
  background: #42664c;
  color: #FFF;
  padding: 13px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 0;
}

.posts_cat_item + .posts_cat_item{
  margin-top: 7px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 29px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}
.posts_side_wrap .webgene-item a{
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.025em;
}

/* 詳細 */
.posts_detail{
  border: none;
  border-bottom: 1px solid #b9b9b9;
  padding: 0 0 30px;;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .category{
  font-size: 12px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 0;
  display: inline-block;
  background: #fff;
  color: #181818;
  border-radius: 0;
  padding: 3px 25px;
  border: 1px solid #42664c;
}
.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 .title{
  font-size: 17px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 12px;
  margin-top: 16px;
}
.posts_detail .post_content{
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.125em;;
  letter-spacing: 0.075em;
  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;
}

.posts_detail .post_content h2,
.posts_detail .post_content h3,
.posts_detail .post_content h4{
  font-size: 17px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  background: #e6e2dc;
  border-left: 5px solid #42664c;
  padding: 10px;
  margin-bottom: 20px;
}

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


/* 動画 */
.post_video{

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

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

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

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

  .pg_news{
    padding-top: 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: 0 0 36px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: auto;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .title{
    width:100%;
    font-size: 18px;
  }
  .posts_detail .post_content{
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }
  .posts_detail .post_content h2,
  .posts_detail .post_content h3,
  .posts_detail .post_content h4{
    font-size: 18px;
    padding: 12px 15px;
    margin-bottom: 30px;
  }
  .pg_blog .read_more{
    margin-top: 57px;
  }

}
@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;
  }
  .posts_layout_box1{
    width: 74.34%;
  }
  .posts_layout_box2{
    width: 16.77%;
    margin-top: 0;
  }

  .body_blogDetail .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

}



/*******************************
*　ギャラリー（サムネ横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;
  padding: 50px 30px;
  padding-top: 0;
}
.gallery_box1{
  width: 100%;
  position: relative;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 67.39%;
}
.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: 67.85%;
}
.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;
}


.gallery_slide_prev,
.gallery_slide_next{

}
.gallery_slide_prev i,
.gallery_slide_next i{
  display: none;
}
.gallery_slide_prev,
.gallery_slide_next{
  display: block;
  width: 50px;
  aspect-ratio:1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 1000;
}
.gallery_slide_prev:hover{
  cursor: pointer;
}
.gallery_slide_prev{
  left: -93px;
}
.gallery_slide_next{
  right: -93px;
}
.gallery_slide_prev .gallery_slide_next{

}
.gallery_slide_prev:before,
.gallery_slide_next:before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--main-color);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;
  font-weight: 900;

  pointer-events: none;
}
.gallery_slide_prev:before{
  content:"\f104";
  font-family: "fontAwesome";
}
.gallery_slide_next:before{
  content:"\f105";
  font-family: "fontAwesome";
}

.works_detail .post_content{
  background: #fff;
  padding: 16px;
}
.works_detail .post_content .post_txt{
  line-height:2.25em;
  font-family: "Noto Sans JP", sans-serif;
}
.works_detail .post_content .title{
  font-size: 22px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0;
  border-bottom: 1px dashed;
  padding-bottom: 10px;
  margin-bottom: 16px;
  background: none;
  margin-top:0;
  padding-inline:0;
}
.works_detail .post_content .price{
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  margin-bottom: 30px;
}
.works_detail .post_content .txt{
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;;
  line-height: 2.25em;
}
.works_detail .post_content h2,
.works_detail .post_content h3,
.works_detail .post_content h4{
  font-size: 18px;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0;
  background: #e6e2dc;
  padding: 10px;
  padding: 7px 12px;
  margin-top:30px;
  margin-bottom: 30px;
}
.works_detail .post_content .post_txt h2:first-child{
  margin-top: 0;
}

.works_detail .link_2{
  width: 100%;
  max-width:240px;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  margin-top: 40px;
}
.works_detail .link_2 p{
  letter-spacing: 0;
}
.works_detail .link_2:after{
  content:"\f14c";
  font-family: "fontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 40px;;
  transform: translateY(-50%);
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .gallery_slide_prev, .gallery_slide_next{
    width: 30px;
  }
  .gallery_slide_prev:before,
  .gallery_slide_next:before{
    width: 30px;
  }
  .gallery_slide_prev{
    left: -34px;
  }
  .gallery_slide_next{
    right: -34px;
  }
  .gallery_slide_prev:before, .gallery_slide_next:before{
    width: 30px;
    font-size: 10px;
  }
  .gallery_slide_prev:before{
    left: 0;
  }
  .gallery_slide_next:before{
    right: 0;
  }
}
@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{
    padding: 100px 95px;
    padding-top: 0;
  }
  .gallery_box1{
    width: 100%;
  }
  .gallery_box2{
    width: 100%;
    margin-top: 0;

    position: inherit;
    z-index: 1;
    top: auto;
    bottom: auto;
    right: auto;
    overflow: hidden;
    margin-top: 10px;
  }

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

  .works_detail .post_content{
    padding: 50px 63px 65px;
  }
  .works_detail .post_content .title{
    font-size: 24px;
    padding-bottom: 16px;
  }
  .works_detail .post_content .price{
    font-size: 20px;
    margin-bottom: 33px;
  }
  .works_detail .post_content .txt{

  }
  .works_detail .post_content h2,
  .works_detail .post_content h3,
  .works_detail .post_content h4{
    font-size: 20px;
    margin-top: 53px;
  }

  .works_detail .link_2{
    margin-top: 60px;
  }
  .works_detail .read_more{
    margin-top: 55px;
  }
}
@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){
  .works_detail .post_content{

  }
  .works_detail .post_content .title{
    font-size: 30px;
  }
  .works_detail .post_content .price{

  }
  .works_detail .post_content .txt{

  }
  .works_detail .post_content h2,
  .works_detail .post_content h3,
  .works_detail .post_content h4{
    font-size: 20px;
  }

}





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

.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;
  font-size: 21px;
  letter-spacing: 0.2em;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.pg_contact .form.formWrap {
  font-family: "Noto Sans JP";
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 17px 15px 16px 20px;
  background: #ebebeb;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 0;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.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: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.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: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
  font-family: "Noto Sans JP", sans-serif;
}
.pg_contact .privacyLabel a{
  color: #42664c;
}
.pg_contact .formBtn.formSend {
  display: inline-block;
  min-width: 235px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2;
  text-align: center;
  /* border-radius: 27px; */
  color: #42664c;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  background-image: url(/system_panel/uploads/images/lefttop.png), url(/system_panel/uploads/images/righttop.png), url(/system_panel/uploads/images/leftbtm.png), url(/system_panel/uploads/images/rightbtm.png);
  background-position: left 0 top 0, right 0 top 0, left 0 bottom 0, right 0 bottom 0;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  transition: background-position 0.3s ease;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
.pg_contact .formBtn.formSend:after{
  content: "→";
  display: block;
  position: absolute;
  top: 50%;
  right: 57px;
  transform: translateY(-50%);
}
.pg_contact .formBtn.formSend:hover{
  background-position: left 6px top 6px, right 6px top 6px, left 6px bottom 6px, right 6px bottom 6px;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 2.4em;
}
.radioArea .d-inline-block{
  margin-right: 11px;
}
.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;
  line-height: 1.8em;
}
.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%;
  }

  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 28px;
  font-family: "Noto Sans JP", sans-serif;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 7px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  border-left: 6px solid #42664c;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

.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: 45px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}

.privacy_box {
  padding: 30px 64px 30px 29px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 60px;
  margin-bottom: 15px;
}
@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 {
    font-size: 19px;
    margin-bottom: 30px;;
  }
  .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: 18px;
    padding-left: 10px;
  }

  .privacy_box{
    padding: 30px 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{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

.gallery_slide_prev,
.gallery_slide_next,
.gallery_slide_prev:hover,
.gallery_slide_next:hover {
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 1000;
}

.gallery_slide_prev:before,
.gallery_slide_next:before {
  pointer-events: none;
}

.swiper {
  cursor: auto;
}


.accordion-title {
  cursor: pointer;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  margin-top: 80px;
  position: relative;
}
.accordion-title:after{
  font-size: 18px;
  content: "\f13a";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.accordion-title.is-open:after{
  content: "\f139";
}

.accordion-content {
  display: none;
  padding: 15px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.gjs-dashed .accordion-content{
  display: block;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .OurProduct_Detail .works_detail .link_2{
    max-width: 300px;
  }

  .line_img{
    display:block;
    width:20px;
    height:28px;
    margin-inline:auto;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  .OurProduct_Detail .works_detail .link_2{
    max-width: 450px;
  }
}
@media (min-width:1024px){


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


}
