@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #6a715f;
  --sub-color: #cc9936;
  --txt-color: #1a1a1a;

  /* フォント関連 */
  --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: "Bellefair", 'Noto Serif JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
  font-family: var(--font-mincho);
}

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 60px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 38px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  width: 220px;
  padding: 15px 5px;
  text-align: center;
  transition: 0.2s all;
  font-family: var(--font-en);
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a.shop p:before{
  content:"\f07a";
  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: auto;
  transition: 0.2s all;
}
.hdr_sns a img{
  height: 34px;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    background: #000;
    justify-content: center;
  }

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

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

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

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

  .hdr1{
    padding: 8px 15px;
    transition: 0.2s all;
  }

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

  /* ヘッダースリム */
  .header.slim{
  }
  .header.slim .hdr1{
    background: #000;
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{
    --logo-height: 96px;
  }
  /* ロゴ */
  .hdr_logo{
    padding: 18px 25px;
  }
  .hdr_logo img{
    /*width: 100px;*/
    /*width: 420px;*/
  }

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

  }
  .header.slim .hdr_logo{
    padding: 5px 10px;
  }
  .header.slim .hdr_logo img{
    /*width: 70px;*/
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv_img.img_fit:after{
  content: "";
  background: rgba(0,0,0,0.35);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

/* MVテキスト */
.mv_txt{
  width: 100%;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #FFF;
  text-align: center;

}
.mv_txt_p1{
  font-size: 16px;
  font-family: var(--font-en);
}
.mv_txt_p2{
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-mincho);
}

/* スライダーの場合 */
.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テキスト */
  .mv_txt{
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

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


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

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

  }
  .mv_txt_p2{

  }

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

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

  /* MVテキスト */
  .mv_txt{
  }
  .mv_txt_p1{
    font-size: 35px;
  }
  .mv_txt_p2{
    font-size: 60px;
  }

}


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

/* サイドバー */
.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: 50px;
  position: relative;
  z-index: 1;
}
.pg_header.mb0{
  margin-bottom: 0;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
}
.pg_header_title_en{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.pg_header_title_ja{
  font-size: 20px;
  font-weight: 600;
}




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

  .pg_header_title_txt{

  }

  .pg_header_title_en{
    font-size: 80px;
  }
  .pg_header_title_ja{
    font-size: 25px;
  }

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

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 520px;
  }

  .pg_header_title_txt{

  }

}

@media (min-width:1470px){

  .pg_header{
    margin-bottom: 150px;
  }
}
@media (min-width:1720px){

  .pg_header{
    margin-bottom: 200px;
  }
}



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

.ftr_contact_sec{
  margin-top: 50px;
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
}
.ftr_contact_msg{
  font-size: 14px;
  line-height: 1.666;
  color: #FFF;
  text-align: justify;
}


.ftr_contact_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.ftr_contact_item{
  width: 100%;
  position: relative;
  z-index: 1;
  color: #FFF;
  text-align: center;
}
.ftr_contact_item:nth-child(n+2){
  margin-top: 30px;
}
.ftr_contact_item_inner{

}
.ftr_contact_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.ftr_contact_tel{
  margin-top: 10px;
}
.ftr_contact_tel{
}
.ftr_contact_tel_p1{
  font-size: 34px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
}
.ftr_contact_tel_p2{
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
}
.ftr_contact_item .read_more{
  margin-top: 5px;
}
.ftr_contact_item .read_more a{
  cursor: pointer;
}



.footer{
  background: var(--main-color);
  color: #FFF;
}

.ftr1{
  padding: 42px 0;
  margin-bottom: 25px;
}

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

}
.ftr1_box2{

}

.ftr_logo{
  text-align: center;
  margin-bottom: 25px;
}
.ftr_addr{
  text-align: center;
  margin-bottom: 15px;
}

.ftr_info{
  display: flex;
  justify-content: center;
}
.ftr_info_inner{
  padding-left: 0;
}
.ftr_info_dl{
  display: flex;
  font-size: 16px;
  font-weight: 500;
}
.ftr_info_dl + .ftr_info_dl{
  margin-top: 16px;
}
.ftr_info_dl_dt{
  width: 95px;
  position: relative;
  z-index: 1;
}
.ftr_info_dl_dt:after{
  content: "";
  width: 1px;
  height: 1em;
  background: #FFF;
  position: absolute;
  z-index: 1;
  top: 5px;
  right: 0;
}
.ftr_info_dl_dd{
  padding-left: 15px;
}

.ftr_sns{
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.ftr_sns_a{
  margin: 0 5px;
}
.ftr_sns_a img{
  height: 25px;
}

.ftr_links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #FFF;
  color: var(--txt-color);
  padding: 10px 0px;
}
.ftr_links_item{
  padding: 0 18px;
}
.ftr_links_item_a{
  font-size: 15px;
  font-weight: 500;
}
.ftr_links_item_a.shop{
  font-weight: 600;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}
.ftr_links_item_a.shop p:before{
  content: "\f07a";
  font-size: 20px;
  font-weight: 400;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-family: "FontAwesome";
  margin-right: 3px;
}
.ftr_links{

}

.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 15px 0;
}

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

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



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .ftr_contact_item:after{
    content: "";
    display: block;
    width: 250px;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: -14%;
    left: 50%;
    transform:translateX(-50%);
  }
  .ftr_contact_item:last-child:after{
    display: none;
  }
  .ftr1{
    padding: 30px 0 0;
  }

  .ftr_links{
    display: none;
  }

  .footer_fix{
    display: flex;
  }

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

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }
}
@media (min-width:768px){
  .footer{
  }

  .ftr_contact_msg{
    font-size: 16px;
    line-height: 2.125;
    text-align: center;
  }

  .ftr_contact_items{
    justify-content: space-between;
    margin-top: 50px;
  }
  .ftr_contact_item{
    width: 31.53%;
    position: relative;
  }
  .ftr_contact_item:after{
    content: "";
    display: block;
    width: 1px;
    height: 140px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
  }
  .ftr_contact_item:last-child:after{
    display: none;
  }
  /*.ftr_contact_item:nth-child(1) .ftr_contact_item_tt{
    text-align: left;
  }
  .ftr_contact_item:nth-child(3) .ftr_contact_item_tt{
    text-align: right
  }
  .ftr_contact_item:nth-child(n+2){
    margin-top: 0;
  }*/
  .ftr_contact_item_inner{

  }
  .ftr_contact_item_tt{
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ftr_contact_item .read_more{
    margin-top: 20px;
  }

  .ftr_contact_item:nth-child(3) .ftr_contact_item_tt{
    text-align: center;
  }

  .ftr_contact_tel_p1{
    font-size: 32px;
  }
  .ftr_contact_tel_p2{
    font-size: 15px;
  }

  .ftr_info{
  }
  .ftr_info_inner{
    padding-left: 110px;
  }
  .ftr_info_dl{
    font-size: 16px;
  }
  .ftr_info_dl + .ftr_info_dl{
    margin-top: 16px;
  }
  .ftr_info_dl_dt{
    width: 95px;
  }
  .ftr_info_dl_dt:after{
    top: 5px;
  }
  .ftr_info_dl_dd{
    padding-left: 15px;
  }

  .ftr_sns{
    margin-top: 25px;
  }
  .ftr_sns_a{
    margin: 0 5px;
  }
  .ftr_sns_a img{
    height: 25px;
  }

  .ftr_links_item{
    padding: 0 10px;
  }
}
@media (min-width:768px) and (max-width:1023px){

  .ftr_contact_items{
    justify-content: center;
  }
  .ftr_contact_item{
    width: 45%;
  }
  .ftr_contact_item:nth-child(1){
    width: 100%;
  }
  .ftr_contact_item:nth-child(1):after{
    display: none;
  }

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

  .ftr_contact_item:nth-child(n+2){
    margin-top: 0;
  }
  .ftr_contact_item:after{
    right: -4%;
  }
}
@media (min-width:1200px){

  .ftr_contact_sec{
    margin-top: 100px;
  }
  .ftr_contact_sec .tt3{
    margin-bottom: 40px;
  }
  .ftr_contact_items{
    margin-top: 70px;
  }
  .ftr_contact_tel_p2{
    font-size: 14px;
  }

  .ftr_links_item{
    padding: 0 18px;
  }
}

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

@media (min-width:1720px){

  .ftr_contact_sec{
    margin-top: 150px;
  }
  .ftr_contact_item .read_more a {
    min-width: 400px;
    font-size: 20px;
    padding: 25px 10px;
  }
  .ftr_contact_tel_p1{
    font-size: 60px;
  }
  .ftr_contact_tel_p2{
    font-size: 15px;
  }
}


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


/* テーブル用 */
.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 var(--main-color);
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border-color: var(--main-color);
  background: var(--main-color);
  color: #FFF;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 250px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;

  width: 27px;
  aspect-ratio: 27 / 5;
  background-image: url(/system_panel/uploads/images/arrow_r.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.read_more a:hover{
  color: #FFF;
  border: 1px solid var(--sub-color);
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}

.read_more a.wh{
  background: #FFF;
  border-color: #FFF;
  color: var(--txt-color);
}
.read_more a.wh:not(:hover):after{
  filter: invert(1);
}
.read_more a.wh:hover{
  color: #FFF;
  background: var(--main-color);
  border-color: var(--main-color);
}

.read_more a.email{

}
.read_more a.email:after{
  display: none;
}
.read_more a.shop{

}
.read_more a.shop:after{
  display: none;
}
.read_more a.shop p:before{
  content:"\f07a";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.read_more a.external:after{
  content:"\f08e";
  font-family: "fontAwesome";
  filter: none !important;
}
.read_more a.external:after{
  background: none;
  aspect-ratio: none;
  width: auto;
}

.read_more a.color2{
  background-color: var(--sub-color);
  border-color: var(--sub-color);
}
.read_more a.color2:hover{
  background-color: var(--main-color);
  border-color: var(--main-color);
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 20px;
}
.tt2_en{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-mincho);
}
.tt2_ja.mt15{
  margin-top: 10px;
}
.tt2.left{
  text-align: left;
}
.tt2.wh{
  color: #FFF;
}

.tt3{
  text-align: center;
  margin-bottom: 15px;
}
.tt3_ja{
  font-size: 18px;
  font-size: 19px;
  font-family: var(--font-mincho);
  font-weight: 700;
}
.tt3_ja.large{

}
.tt3.left{
  text-align: left;
}
.tt3.wh{
  color: #FFF;
}
.tt3.mb90{
  margin-bottom: 30px;
}

/* 説明文章 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.cmn_txt.wh{
  color: #FFF;
}

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

.section.beige{
  background-color: #c3b9a9;
}
.section.separater{
  padding: 0;
  height: 200px;
}

/* 背景用 */
.cmn_section_bg{
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: -1;
  inset: 0;
}
.cmn_section_bg:after{
  content: "";
  background: rgba(0,0,0,0.45);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.cmn_section_bg.nofilter:after{
  display: none;
}
.cmn_section_bg img{
  height: 100%;
}
.cmn_section_bg.center{
}
.cmn_section_bg.left{
  justify-content: flex-start;
}
.cmn_section_bg.right{
  justify-content: flex-end;
}

.cmn_section_bg.cover{

}
.cmn_section_bg.cover img{
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width:374px){

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

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

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

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

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 45px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 285px;
    font-size: 16px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    /*content: "→";*/
    /*top: 50%;*/
    right: 15px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 27px;
  }
  .tt2_en{
    font-size: 55px;
  }
  .tt2_ja{
    font-size: 20px;
  }

  .tt3{
    margin-bottom: 20px;
  }
  .tt3_ja{
    font-size: 24px;
    font-size: 28px;
  }
  .tt3.mb90{
    margin-bottom: 50px;
  }

  .section.separater{
    height: 400px;
  }
}
@media (min-width:1024px){

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

  /* 見出し */
  .tt2_ja.mt15{
    margin-top: 15px;
  }

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

  .cmn_txt{
    line-height: 2.125;
  }

  .section.separater{
    height: 400px;
  }

}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 27px;
  }
  .tt2_en{
    font-size: 80px;
  }
  .tt2_ja{
    font-size: 20px;
  }

  .tt3{
    margin-bottom: 30px;
  }
  .tt3_ja{
    font-size: 30px;
  }
  .tt3_ja.large{
    font-size: 40px;
    line-height: 1.75;
  }
  .tt3_ja.medium{
    font-size: 28px;
  }

  .tt3.mb90{
    margin-bottom: 90px;
  }

  .section.separater{
    height: 620px;
  }

  .read_more a{
    min-width: 300px;
  }

}

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

.swiper-button-next:after,
.swiper-button-prev:after{
  color: #FFF;
}

/* カテゴリ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: 42px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  font-weight: 500;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #FFF;
  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;

  /*content: "\f054";*/
  content: "\f105";
  font-family: "FontAwesome";
}
.cmn_cat_nav .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: #FFF;
  color: var(--main-color);
}
.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{

  }
  .cmn_cat_nav .webgene-blog{
    margin-left: -12px;
    margin-right: -12px;
  }
  .cmn_cat_nav .webgene-item{
    width: 50%;
    padding: 0 12px;
    margin: 10px 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{
  }
  .cmn_cat_nav .webgene-blog{
    margin-left: -12px;
    margin-right: -12px;
  }
  .cmn_cat_nav .webgene-item{
    padding: 0 12px ;
    margin: 10px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{
    font-size: 16px;
    padding-bottom: 5px;
  }


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

}




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

}
.pg_home .section.sec1{
  padding-top: 75px;
  padding-bottom: 0;
}
.pg_home .section.sec2{
  padding-top: 75px;
  padding-bottom: 75px;
}
.pg_home .section.sec3{
  padding-top: 75px;
  padding-bottom: 75px;
  margin-top: 10px;
}
.pg_home .section.sec4{
  padding: 0;
  margin-top: 10px;
}
.pg_home .section.sec5{
  padding-top: 75px;
  padding-bottom: 75px;
  margin-top: 10px;
}
.pg_home .section.sec6{
  padding-top: 50px;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

  .pg_home .section.sec1 .cmn_section_bg{
    position: static;
    margin-top: -125px;
    margin-top: -95px;
  }

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

  .pg_home .section.sec1{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: 20px;
  }
  .pg_home .section.sec4{
    padding: 0;
    margin-top: 20px;
  }
  .pg_home .section.sec5{
    padding-top: 75px;
    padding-bottom: 75px;
    margin-top: 20px;
  }
  .pg_home .section.sec6{
    padding-top: 115px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

  .pg_home .section.sec1 .cmn_section_bg img{
    margin-right: -150px;
  }

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


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

  .pg_home .section.sec1{
    padding-top: 120px;
    padding-bottom: 195px;
  }
  .pg_home .section.sec2{
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .pg_home .section.sec3{
    padding-top: 160px;
    padding-bottom: 160px;
    margin-top: 20px;
  }
  .pg_home .section.sec4{
    padding: 0;
    margin-top: 20px;
  }
  .pg_home .section.sec5{
    padding-top: 90px;
    padding-bottom: 90px;
    margin-top: 20px;
  }
  .pg_home .section.sec6{
    padding-top: 115px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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

  .pg_home .section.sec1 .cmn_section_bg img{
    margin-right: 0;
  }
}
@media (min-width:1720px){


}

/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  position: relative;
  z-index: 1;
}
.home_about_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_about_txt{
}
* + .home_about_txt{
  margin-top: 20px;
}

.home_about.wh{
  color: #FFF;
}

.home_about.left{
  /*justify-content: flex-start;*/
}
.home_about.right{
  /*justify-content: flex-end;*/
}

.home_about_side_title{
  width: 100%;
  border-bottom: 2px solid #FFF;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.home_about_side_title_ja{
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--txt-color);
  white-space: nowrap;
  background: #FFF;
  padding: 6px 10px;
}
.home_about_side_title_en{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 15px;
}
.home_about_side_title_en.sm{
  font-size: 40px;
}

/**/
.home_about.ds_wh .home_about_box1 .tt2,
.home_about.ds_wh .home_about_box1 .tt3,
.home_about.ds_wh .home_about_txt{
  filter: drop-shadow(0px 0px 3px #FFF) drop-shadow(0px 0px 3px #FFF);
}

/* リンク */
.home_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_links_item{
  width: 100%;
  padding: 100px 15px 95px;
  position: relative;
  z-index: 1;
}
.home_links_item:nth-child(n+2){
  margin-top: 10px;
}
.home_links_item_inner{

}

@media (max-width:374px){

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

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

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

  /* About */
  .home_about{
    /*justify-content: space-between;*/
    justify-content: flex-start;
  }
  .home_about.left{
    justify-content: flex-start;
  }
  .home_about.right{
    justify-content: flex-start;
  }
  .home_about_box1{
    width: calc(100% - 100px);
  }
  .home_about_txt{
  }
  * + .home_about_txt{
    margin-top: 30px;
  }

  .home_about_side_title{
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;

    padding-right: 20px;
    padding-bottom: 0;
    margin-bottom: 0;

    border: 0;
    border-right: 2px solid #FFF;
  }
  .home_about_side_title_ja{
    font-size: 16px;
    padding: 6px 3px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_about_side_title_en{
    font-size: 55px;
    margin-top: 30px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_about_side_title_en.sm{
    font-size: 42px;
  }

  /* リンク */
  .home_links{
  }
  .home_links_item{
    width: calc(50% - 10px);
    padding: 100px 15px;
  }
  .home_links_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_links_item:nth-child(n+3){
    margin-top: 20px;
  }
}
@media (min-width:1024px){

  .home_about{
    justify-content: space-between;
  }
  .home_about.left{
    justify-content: flex-start;
  }
  .home_about.right{
    justify-content: flex-end;
  }

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

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 50%;
  }
  .home_about_txt{
  }
  * + .home_about_txt{
    margin-top: 30px;
  }

  .home_about_side_title{
    margin-right: 20px;
    padding-right: 20px;
  }
  .home_about_side_title_ja{
    font-size: 16px;
    padding: 6px 3px;
  }
  .home_about_side_title_en{
    font-size: 80px;
    margin-top: 30px;
  }
  .home_about_side_title_en.sm{
    font-size: 58px;
  }

  /* リンク */
  .home_links{
  }
  .home_links_item{
    width: calc(50% - 10px);
    padding: 280px 15px;
  }
  .home_links_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_links_item:nth-child(n+3){
    margin-top: 20px;
  }
}
@media (min-width:1470px){


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


  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 38.81%;
  }
  .home_about_txt{
  }
  * + .home_about_txt{
    margin-top: 40px;
  }

}



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

}
.insta_list_item_inner:before{
  padding-top: 133.69%;
}


@media (max-width:1023px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*isnta*/
  .insta_list{
    margin-top: 55px;
  }
  .insta_list .webgene-blog{
    margin-inline:-3px;
  }
  .insta_list .webgene-item{
    padding-inline:3px;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

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

  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 20%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+6){
    margin-top:6px;;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

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



/*******************************
*　スナゲリーについて
********************************/

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

}
.pg_about .section.sec1{
  color: #FFF;
  background: #000;
  background-image: url('/system_panel/uploads/images/about_msg_bg.jpg');
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_about .section.sec2{

}
.pg_about .section.sec3{
  /*padding-top: 145px;*/
}
.pg_about .section.sec3 .tt3{
  margin-bottom: 30px;
}
.pg_about .section.sec4{
  /*padding-top: 85px;*/
  padding-top: 0;
}
.pg_about .section.sec5{

}

.body_about .pg_header{
  margin-bottom: 0;
}
.pg_about + .ftr_contact_sec{
  margin-top: 0;
}

@media (max-width:374px){

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

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

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

  .pg_about{

  }
  .pg_about .section.sec1{
    padding-top: 75px;
    padding-bottom: 75px;
    background-size: auto 600px;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding-top: 75px;
  }
  .pg_about .section.sec4{
    padding-top: 50px;
  }
  .pg_about .section.sec5{

  }
  
  .pg_about .section.sec3 .tt3{
    margin-bottom: 70px;
  }

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


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

  .pg_about .section.sec1{
    background-size: auto 700px;
  }
}
@media (min-width:1470px){

  .pg_about .section.sec1{
    padding-top: 150px;
    padding-bottom: 150px;
    background-size: auto;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding-top: 145px;
  }
  .pg_about .section.sec4{
    padding-top: 85px;
    padding-bottom: 150px;
  }
  .pg_about .section.sec5{

  }

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

  .pg_about .section.sec4{
    padding-bottom: 200px;
  }

}

/* メイン部分 */

/* Message */
.about_msg{

}
.about_msg_txt{
  text-align: justify;
}
.about_msg_name{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-mincho);
  text-align: center;
  margin-top: 30px;
}

.about_awards{
  text-align: center;
}
* + .about_awards{
  margin-top: 30px;
}
.about_awards:before,
.about_awards:after{
  content: "";
  display: block;
  height: 9px;
  border: 1px solid #cc9936;
  border-left: 0;
  border-right: 0;

}
.about_awards:before{
  margin-bottom: 40px;
}
.about_awards:after{
  margin-top: 35px;
}
.about_awards_title{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #cc9936;
}
.about_awards_title_en{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.about_awards_title_ja{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 12px;
  margin-bottom: -5px;
}
.about_awards_history{
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 2;
  text-align: center;
  margin-top: 20px;
}
.about_awards_history_dl{
  display: flex;
  flex-wrap: wrap;
  padding: 5px 5px;
}
.about_awards_history_dl + .about_awards_history_dl{
  /*margin-top: 10px;*/
}
.about_awards_history_dt{
  width: 90px;
  text-align: left;
}
.about_awards_history_dd{
  width: calc(100% - 90px);
  text-align: left;
}

/* コンテンツ */
.about_contents{

}
* + .about_contents{

}
.about_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.about_contents_row + .about_contents_row{
  margin-top: 50px;
}
.about_contents_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.about_contents_box2{
  width: 100%;
  order: 1;
}
.about_contents_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--main-color);

  margin-bottom: 15px;
}
.about_contents_head_num{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875em;
  aspect-ratio: 150 / 169;
  font-size: 30px;
  font-family: var(--font-en);
  background-image: url(/system_panel/uploads/images/num_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.about_contents_head_num p{
  letter-spacing: 0;
  line-height: 1;
}
.about_contents_head_title{
  width: calc(100% - 60px - 15px);
}
.about_contents_head_title_txt{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.about_contents_txt{

}
.about_contents_img_wrap{
  position: relative;
  z-index: 1;
}
.about_contents_img{
  overflow: hidden;
  z-index: 2;
}
.about_contents_img.img_fit:before{
  padding-top: 61.053%;
}
.about_contents_title_en{
  font-size: 60px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  z-index: -1;
}
.about_contents_title_en.clone{
  color: #FFF;
  z-index: 2;
}

/*
.about_contents_row:nth-child(odd) .about_contents_box1{
  
}
.about_contents_row:nth-child(odd) .about_contents_box2{
  
}
.about_contents_row:nth-child(odd) .about_contents_img_wrap{
  margin-right: var(--margin-for-device-side-w);
}

.about_contents_row:nth-child(even) .about_contents_box1{
  order: 2;
}
.about_contents_row:nth-child(even) .about_contents_box2{
  order: 1;
}
.about_contents_row:nth-child(even) .about_contents_img_wrap{
  margin-left: var(--margin-for-device-side-w);
}
*/

.about_contents_row:nth-child(odd) .about_contents_title_en{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  top: -5px;
  left: -24px;
  left: -0.2em;
}
.about_contents_row:nth-child(even) .about_contents_title_en{
  left: -5px;
  bottom: -0.2em;
}

/* 哲学 */
.about_philosophy{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.about_philosophy_box1{
  width: 100%;
}
.about_philosophy_box2{
  width: 100%;
  margin-top: 30px;
}
.about_philosophy_title{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  /*justify-content: center;*/
  color: var(--main-color);
  margin-bottom: 15px;
}
.about_philosophy_title_en{
  font-size: 45px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  /*margin-right: 25px;*/
}
.about_philosophy_title_ja{
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 5px;
  /*text-align: center;*/
}
.about_philosophy_txt{
}
.about_philosophy_img{

}
.about_philosophy_img.img_fit:before{
  padding-top: 66.667%;
}
.about_philosophy .read_more{
  /*margin-top: 30px;*/
}

@media (max-width:767px){


  .about_awards_history_dt{
    width: 70px;
  }
  .about_awards_history_dd{
    width: calc(100% - 70px);
  }


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

  /* Message */
  .about_msg{

  }
  .about_msg_txt{
    text-align: center;
  }
  .about_msg_name{
    font-size: 24px;
    margin-top: 65px;
  }

  .about_awards{

  }
  * + .about_awards{
    margin-top: 65px;
  }
  .about_awards:before,
  .about_awards:after{
    height: 9px;
  }
  .about_awards:before{
    margin-bottom: 40px;
  }
  .about_awards:after{
    margin-top: 35px;
  }
  .about_awards_title{
  }
  .about_awards_title_en{
    font-size: 50px;
  }
  .about_awards_title_ja{
    font-size: 20px;
    margin-left: 12px;
    margin-bottom: -5px;
  }
  .about_awards_history{
    font-size: 20px;
    line-height: 2;
    text-align: center;
    margin-top: 30px;
  }

  /* コンテンツ */
  .about_contents{

  }
  * + .about_contents{

  }
  .about_contents_row{
  }
  .about_contents_row + .about_contents_row{
    margin-top: 60px;
  }
  .about_contents_box1{
    /*width: 44.73%;*/
    margin-top: 30px;
  }
  .about_contents_box2{
    /*width: 49.34%;*/
  }
  .about_contents_head{
    margin-bottom: 25px;
  }
  .about_contents_head_num{
    /*width: 1.875em;*/
    font-size: 50px;
  }
  .about_contents_head_title{
    width: calc(100% - 95px - 25px);
  }
  .about_contents_head_title_txt{
    font-size: 30px;
  }
  .about_contents_txt{

  }
  .about_contents_img_wrap{
  }
  .about_contents_title_en{
    font-size: 80px;
  }


  .about_contents_row:nth-child(odd) .about_contents_title_en{
    /*-ms-writing-mode: tb-rl;*/
    /*writing-mode: vertical-rl;*/
    /*top: -8px;*/
    /*left: -24px;*/
  }
  .about_contents_row:nth-child(even) .about_contents_title_en{
    /*left: -8px;*/
    /*bottom: -24px;*/
  }

  /* 哲学 */
  .about_philosophy{
  }
  .about_philosophy_box1{
    /*width: 39.47%;*/
  }
  .about_philosophy_box2{
    /*width: 55.92%;*/
  }
  .about_philosophy_title{
    /*margin-bottom: 25px;*/
  }
  .about_philosophy_title_en{
    font-size: 60px;
    /*margin-right: 25px;*/
  }
  .about_philosophy_title_ja{
    font-size: 20px;
    /*margin-top: 0;*/
    /*margin-bottom: 15px;*/
  }
  .about_philosophy_txt{

  }
  .about_philosophy .read_more{
    /*margin-top: 65px;*/
  }

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

  /* コンテンツ */
  .about_contents{

  }
  * + .about_contents{

  }
  .about_contents_row{
  }
  .about_contents_row + .about_contents_row{
    /*margin-top: 80px;*/
  }
  .about_contents_box1{
    width: 44.73%;
    width: 46%;
    margin-top: 0;
  }
  .about_contents_box2{
    width: 49.34%;
  }
  .about_contents_head{
    margin-bottom: 20px;
  }
  .about_contents_head_num{
    /*width: 1.875em;*/
    font-size: 45px;
  }
  .about_contents_head_title{
    width: calc(100% - 85px - 20px);
  }
  .about_contents_head_title_txt{
    font-size: 25px;
  }
  .about_contents_txt{

  }
  .about_contents_img_wrap{
  }
  .about_contents_title_en{
    font-size: 70px;
  }

  .about_contents_row:nth-child(odd) .about_contents_box1{
    order: 1;
  }
  .about_contents_row:nth-child(odd) .about_contents_box2{
    order: 2;
  }
  .about_contents_row:nth-child(odd) .about_contents_img_wrap{
    margin-right: var(--margin-for-device-side-w);
  }

  .about_contents_row:nth-child(even) .about_contents_box1{
    order: 2;
  }
  .about_contents_row:nth-child(even) .about_contents_box2{
    order: 1;
  }
  .about_contents_row:nth-child(even) .about_contents_img_wrap{
    margin-left: var(--margin-for-device-side-w);
  }

  .about_contents_row:nth-child(odd) .about_contents_title_en{
    /*-ms-writing-mode: tb-rl;*/
    /*writing-mode: vertical-rl;*/
    /*top: -8px;*/
    /*left: -24px;*/
  }
  .about_contents_row:nth-child(even) .about_contents_title_en{
    /*left: -8px;*/
    /*bottom: -24px;*/
  }

  /* 哲学 */
  .about_philosophy{
  }
  .about_philosophy_box1{
    width: 39.47%;
  }
  .about_philosophy_box2{
    width: 55.92%;
  }
  .about_philosophy_title{
    /*margin-bottom: 25px;*/
  }
  .about_philosophy_title_en{
    /*font-size: 80px;*/
    margin-right: 25px;
  }
  .about_philosophy_title_ja{
    width: auto;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .about_philosophy_txt{

  }
  .about_philosophy .read_more{
    /*margin-top: 65px;*/
  }

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



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

  /* コンテンツ */
  .about_contents{

  }
  * + .about_contents{

  }
  .about_contents_row{
  }
  .about_contents_row + .about_contents_row{
    margin-top: 80px;
  }
  .about_contents_box1{
    width: 44.73%;
    margin-top: 0;
  }
  .about_contents_box2{
    width: 49.34%;
  }
  .about_contents_head{
    margin-bottom: 25px;
  }
  .about_contents_head_num{
    font-size: 70px;
  }
  .about_contents_head_title{
    width: calc(100% - 132px - 25px);
  }
  .about_contents_head_title_txt{
    font-size: 36px;
  }
  .about_contents_txt{

  }
  .about_contents_img_wrap{
  }
  .about_contents_title_en{
    font-size: 100px;
  }

  /* 哲学 */
  .about_philosophy{
  }
  .about_philosophy_box1{
    width: 39.47%;
  }
  .about_philosophy_box2{
    width: 55.92%;
  }
  .about_philosophy_title{
    margin-bottom: 25px;
  }
  .about_philosophy_title_en{
    font-size: 80px;
    margin-right: 25px;
  }
  .about_philosophy_title_ja{
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
  }
  .about_philosophy_txt{

  }
  .about_philosophy .read_more{
    margin-top: 65px;
  }

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

  /* コンテンツ */
  .about_contents_head_num{
    font-size: 80px;
  }
  .about_contents_head_title{
    width: calc(100% - 150px - 35px);
  }
  .about_contents_head_title_txt{
    font-size: 40px;
  }
  .about_contents_title_en{
    font-size: 120px;
  }
}



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

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

}
.pg_gift .section.sec1{
  background: #000;
  color: #FFF;
  padding-top: 140px;
}
.pg_gift .section.sec2{

}
.pg_gift .section.sec3{
  padding-bottom: 50px;
}
.pg_gift .section.sec4{

}
.pg_gift .section.sec5{
  padding-top: 50px;
}
.pg_gift .section.sec5 .tt2{
  margin-bottom: 30px;
}



.sec_business{
  padding: 0;
}
.sec_about{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #000;
  color: #FFF;
}
.sec_gallery{
  position: relative;
  z-index: 1;
  background: #000;
  margin-top: -1px;
}
.sec_gallery:after{
  content: "";
  background: #FFF;
  top: 50%;
  bottom: -1px;
  left: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
.sec_flow{
  padding-top: 50px;
  padding-bottom: 50px;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_gift .section.sec3{
    padding-top: 0px;
  }
}
@media (min-width:768px){

  .pg_gift .section.sec1{
    padding-top: 140px;
  }
  .pg_gift .section.sec2{

  }
  .pg_gift .section.sec3{
    padding-bottom: 150px;
  }
  .pg_gift .section.sec4{

  }
  .pg_gift .section.sec5{
    padding-top: 140px;
  }
  .pg_gift .section.sec5 .tt2{
    margin-bottom: 65px;
  }

  .sec_about{
    padding-top: 100px;
    padding-bottom: 105px;
  }
  .sec_flow{
    padding-top: 95px;
    padding-bottom: 95px;
  }

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


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


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


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


}

/* メイン部分 */

/* About */
.gift_about{
}
.gift_about_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.gift_about_row + .gift_about_row{
  margin-top: 50px;
}
.gift_about_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.gift_about_box1.right{
  margin-left: auto;
}
.gift_about_box2{
  width: 100%;
  order: 1;
}
.gift_about_txt{

}
.gift_about_img{

}
.gift_about_img.img_fit:before{
  padding-top: 61.053%;
}

.gift_about_row:nth-child(even) .gift_about_img{
  /*margin-right: var(--margin-for-device-side-w);*/
}

.gift_about_bg{
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.gift_about_nav{
  padding: 50px 0 0;
}

/* ギャラリー */
.gift_gallery_wrap{
  padding-top: 30px;
  padding-bottom: 30px;
  /*border-top: 1px solid #cc9936;*/
  border-bottom: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
}
.gift_gallery_head{
  display: flex;
  /*border-top: 1px solid #cc9936;*/
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
}
.gift_gallery_head:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #cc9936;
}
.gift_gallery_head_txt{
  font-size: 32px;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0;
  color: #cc9936;
  margin-right: 25px;
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.gift_gallery{

}
.gift_gallery_item{
  width: 300px;
}
.gift_gallery_item_img{

}
.gift_gallery_item_img.img_fit:before{
  padding-top: 80%;
}

/* ギャラリー(管理画面) */
.gjs-dashed .gift_gallery{
  display: flex;
  flex-wrap: wrap;
}
.gjs-dashed .gift_gallery_item{
  width: 25%;
  padding: 5px;
}

/* Flow */
.gift_flow{
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
}
* + .gift_flow{
  margin-top: 50px;
}
.gift_flow_item{
  width: 50%;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.gift_flow_item:nth-child(n+3){
  margin-top: 30px;
}
.gift_flow_item_num{
  font-size: 20px;
  font-family: var(--font-en);
  letter-spacing: 0;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 0;
  right: 0;
  color: var(--main-color);
}
.gift_flow_item_img{
  text-align: center;
  position: relative;
  z-index: 1;
}
.gift_flow_item_img img{
  width: 234px;
  max-width: 100%;
  position: relative;
  z-index: 0;
}
.gift_flow_item_title{
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
}
.gift_flow_item_txt{
  font-size: 14px;
}
.gift_flow + .read_more{
  margin-top: 30px;
}

@media (max-width:767px){



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

  /* About */
  .gift_about{
  }
  .gift_about_row{
  }
  .gift_about_row + .gift_about_row{
    margin-top: 100px;
  }
  .gift_about_box1{
    /*width: 48.02%;*/
  }
  .gift_about_box1.right{
    /*margin-left: auto;*/
  }
  .gift_about_box2{
    /*width: 49.34%;*/
  }

  .gift_about .tt2_ja{
    margin-top: 15px;
  }
  .gift_about .tt3{
    margin-bottom: 40px;
  }
  .gift_about_txt{

  }
  .gift_about_img{

  }

  .gift_about_row:nth-child(even) .gift_about_box1{
    /*width: 44.02%;*/
  }
  .gift_about_row:nth-child(even) .gift_about_img{
    /*margin-right: var(--margin-for-device-side-w);*/
  }

  .gift_about_nav{
    padding: 70px 0 0;
  }


  /* Flow */
  .gift_flow{
    padding: 0 20px;
  }
  * + .gift_flow{
    margin-top: 50px;
  }
  .gift_flow_item{
    padding: 0 20px;
  }
  .gift_flow_item{

  }
  .gift_flow_item_num{
    font-size: 24px;
    top: 25px;
  }
  .gift_flow_item_img{
  }
  .gift_flow_item_img img{
    width: 170px;
  }
  .gift_flow_item_title{
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .gift_flow_item_txt{
    font-size: 16px;
  }
  .gift_flow + .read_more{
    margin-top: 85px;
  }


  /* ギャラリー */
  .gift_gallery_wrap{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .gift_gallery_head{
  }
  .gift_gallery_head:after{
  }
  .gift_gallery_head_txt{
    font-size: 50px;
  }


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

  /* About */
  .gift_about{
  }
  .gift_about_row{
  }
  .gift_about_row + .gift_about_row{
    /*margin-top: 190px;*/
  }
  .gift_about_box1{
    width: 48.02%;
    order: 1;
  }
  .gift_about_box1.right{
    margin-left: auto;
  }
  .gift_about_box2{
    width: 49.34%;
    order: 2;
  }

  .gift_about .tt2_ja{
    margin-top: 15px;
  }
  .gift_about .tt3{
    margin-bottom: 40px;
  }
  .gift_about_txt{

  }
  .gift_about_img{

  }


  .gift_about_row:nth-child(even) .gift_about_img{
    margin-right: var(--margin-for-device-side-w);
  }

  .gift_about_row.right .gift_about_box1{
    order: 2;
  }
  .gift_about_row.right .gift_about_box2{
    order: 1;
  }
  .gift_about_row.right .gift_about_img{
    margin-left: var(--margin-for-device-side-w);
    margin-right: 0;
  }

  /* Flow */
  .gift_flow{
    padding: 0 0px;
  }
  * + .gift_flow{
    margin-top: 50px;
  }
  .gift_flow_item{
    width: 25%;
    padding: 0 15px;
  }
  .gift_flow_item:nth-child(n+3){
    margin-top: 0;
  }
  .gift_flow_item:nth-child(n+5){
    margin-top: 50px;
  }

  .gift_flow_item:nth-child(1){
    z-index: 4;
  }
  .gift_flow_item:nth-child(2){
    z-index: 3;
  }
  .gift_flow_item:nth-child(3){
    z-index: 2;
  }
  .gift_flow_item:nth-child(4){
    z-index: 1;
  }
  .gift_flow_item:nth-child(n+2) .gift_flow_item_img:after{
    content: "";
    width: calc(100% + 30px);
    height: 1px;
    background: var(--main-color);
    position: absolute;
    z-index: -1;
    top: 50%;
    right: 50%;
  }

  .gift_flow_item_num{
    font-size: 24px;
    top: 25px;
  }
  .gift_flow_item_title{
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .gift_flow_item_txt{
  }
  .gift_flow + .read_more{
    margin-top: 85px;
  }


  /*修正*/
  .gift_about_row .gift_about_img{
    margin-right: var(--margin-for-device-side-w);
  }
}
@media (min-width:1200px){



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



  /* Flow */
  .gift_flow{
    padding: 0 35px;
  }
  * + .gift_flow{
    margin-top: 50px;
  }
  .gift_flow_item{
    width: 25%;
    padding: 0 35px;
  }
  .gift_flow_item:nth-child(n+3){
    margin-top: 0;
  }
  .gift_flow_item:nth-child(n+5){
    margin-top: 50px;
  }
  .gift_flow_item_num{
    font-size: 36px;
    top: 25px;
  }
  .gift_flow_item_img img{
    width: 234px;
  }
  .gift_flow_item_title{
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .gift_flow_item_txt{
  }
  .gift_flow + .read_more{
    margin-top: 85px;
  }

  .gift_flow_item:nth-child(n+2) .gift_flow_item_img:after{
    width: calc(100% + 70px);
  }


  .gift_about_nav{
    padding: 100px 0 0;
  }
}
@media (min-width:1720px){

  /* About */
  .gift_about{
  }
  .gift_about_row{
  }
  .gift_about_row + .gift_about_row{
    margin-top: 190px;
  }

  .gift_about_row:nth-child(even) .gift_about_box1{
    width: 44.02%;
  }

  .sec_about .gift_about_box1{
    width: 44.73%;
  }
  .sec_about .gift_about_box2{
    /*width: 46.5%;*/
    width: 49.01%;
  }

  .gift_about_nav{
    padding: 180px 0 0;
  }

}






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

/* セクション設定 */



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


}

/* メイン部分 */

/* 一覧 */
.scene_list{

}
* + .scene_list{
  margin-top: 30px;
}
.scene_list_category{
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-mincho);
  border-bottom: 1px solid #ababab;
  padding: 10px 0;
  margin-bottom: 20px;
}

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

}
.scene_list .webgene-item .box2{
  padding: 0 0;
}
.scene_list .webgene-item .img{
  background: #CCC;
}
.scene_list .webgene-item .img.img_fit:before{
  padding-top: 68.57%;
}
.scene_list .webgene-item .title{
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.5;
  margin-top: 20px;
}
.scene_list .webgene-item .price{
  font-size: 14px;
  font-weight: 500;
  color: #ababab;
  margin-top: 6px;
}
.scene_list .webgene-item .read_more{

}
.scene_list .webgene-item .read_more_a{
  font-size: 13px;
  min-width: 150px;
  padding: 12px 10px;
}



.webgene-item .params{
  display: none;
}

/* シーン詳細 */
.scene_detail{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.scene_detail_box1{
  width: 100%;
}
.scene_detail_box2{
  width: 100%;
  margin-top: 20px;
}
.scene_detail_box3{
  width: 100%;
  margin-top: 30px;
}
.scene_detail .title{
  font-size: 22px;
  font-weight: 600;
  line-height: 1.666;
  border-bottom: 1px solid #ababab;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.scene_detail .price{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
.scene_detail .post_txt{
  font-size: 18px;
  line-height: 1.875;
  text-align: justify;
}
.scene_detail .title{

}

.scene_detail_notice{
  border: 1px solid #ababab;
  border-left: 0;
  border-right: 0;
  padding: 20px 20px;
}
.scene_detail_notice_title i{
  color: var(--main-color);
  margin-right: 3px;
}
.scene_detail_notice_title{
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 10px;
}
.scene_detail_notice_txt{

}

.scene_detail_box2 .read_more{

}
.scene_detail_box2 .read_more_a{
  width: 470px;
  max-width: 100%;
}

@media (max-width:767px){

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


  /* 一覧 */
  .scene_list{

  }
  * + .scene_list{
    margin-top: 50px;
  }
  .scene_list_category{
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 50px;
  }

  .scene_list .webgene-blog{
    margin-left: -10px;
    margin-right: -10px;
  }
  .scene_list .webgene-item{
    width: 33.333%;
    padding: 0 10px;
  }
  .scene_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .scene_list .webgene-item:nth-child(n+4){
    margin-top: 45px;
  }
  .scene_list .webgene-item .box1{

  }
  .scene_list .webgene-item .box2{
    padding: 0 10px;
  }
  .scene_list .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
    margin-top: 20px;
  }
  .scene_list .webgene-item .price{
    font-size: 16px;
    margin-top: 6px;
  }
  .scene_list .webgene-item .read_more{
    margin-top: 20px;
  }
  .scene_list .webgene-item .read_more_a{
    font-size: 13px;
    min-width: 200px;
    padding: 12px 10px;
  }


  /* シーン詳細 */
  .scene_detail{
  }
  .scene_detail_box1{
    /*width: 50.45%;*/
  }
  .scene_detail_box2{
    /*width: 42.79%;*/
  }
  .scene_detail_box3{
    /*width: 100%;*/
    margin-top: 75px;
  }
  .scene_detail .title{
    font-size: 24px;
    padding-bottom: 25px;
    margin-bottom: 50px;
  }
  .scene_detail .price{
    font-size: 20px;
    margin-bottom: 25px;
  }
  .scene_detail .post_txt{
    font-size: 16px;
    line-height: 2.222;
  }

  .scene_detail_notice{
    padding: 30px 30px;
  }
  .scene_detail_notice_title{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .scene_detail_notice_title i{
    margin-right: 3px;
  }


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

  /* 一覧 */
  .scene_list{

  }
  * + .scene_list{
    margin-top: 50px;
  }
  .scene_list_category{
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 50px;
  }

  .scene_list .webgene-blog{
    margin-left: -15px;
    margin-right: -15px;
  }
  .scene_list .webgene-item{
    width: 33.333%;
    padding: 0 15px;
  }
  .scene_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .scene_list .webgene-item:nth-child(n+4){
    margin-top: 75px;
  }
  .scene_list .webgene-item .box1{

  }
  .scene_list .webgene-item .box2{
    padding: 0 20px;
  }
  .scene_list .webgene-item .title{
    font-size: 16px;
  }
  .scene_list .webgene-item .price{
    font-size: 16px;
  }
  .scene_list .webgene-item .read_more_a{
    font-size: 13px;
    min-width: 200px;
  }

  /* シーン詳細 */
  .scene_detail{
  }
  .scene_detail_box1{
    width: 50.45%;
  }
  .scene_detail_box2{
    width: 42.79%;
    margin-top: 0;
  }
  .scene_detail_box3{
    width: 100%;
    margin-top: 75px;
  }


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

  /* シーン詳細 */
  .scene_detail{
  }
  .scene_detail_box1{
    width: 50.45%;
  }
  .scene_detail_box2{
    width: 42.79%;
  }
  .scene_detail_box3{
    width: 100%;
    margin-top: 75px;
  }
  .scene_detail .title{
    font-size: 30px;
    padding-bottom: 25px;
    margin-bottom: 50px;
  }
  .scene_detail .price{
    font-size: 26px;
    margin-bottom: 25px;
  }
  .scene_detail .post_txt{
    font-size: 18px;
    line-height: 2.222;
  }

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

  .scene_list .webgene-item .read_more{
    margin-top: 45px;
  }

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


}




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

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

}
.pg_business .section.sec1{
  background: #000;
  color: #FFF;
  padding-top: 140px;
}
.pg_business .section.sec1 .gift_about_bg{
  top: 0;
  left: auto;
  right: 0;
}
.pg_business .section.sec2{

}
.pg_business .section.sec3{
  padding-bottom: 0;
}
.pg_business .section.sec4{

}
.pg_business .section.sec5{
  padding-top: 50px;
  background-image: url(/system_panel/uploads/images/business_graceful_bg.jpg);
  background-size: auto 300px;
  background-repeat: no-repeat;
  background-position: center top;
}
.pg_business .section.sec5 .tt2{
  /*margin-bottom: 65px;*/
}
.pg_business .section.sec6{

}
.pg_business .section.sec7{
  padding-top: 50px;
}




@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_business .section.sec1{
    padding-bottom: 0;
  }
  .pg_business .section.sec7{
    padding-bottom: 0;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_business{

  }
  .pg_business .section.sec1{
    padding-bottom: 0;
  }
  .pg_business .section.sec2{

  }
  .pg_business .section.sec3{
    padding-bottom: 0;
  }
  .pg_business .section.sec4{

  }
  .pg_business .section.sec5{
    padding-bottom: 100px;
    background-size: auto 500px;
  }
  .pg_business .section.sec5 .tt2{
    /*margin-bottom: 65px;*/

  }
  .pg_business .section.sec6{

  }
  .pg_business .section.sec7{
    padding-top: 100px;
  }

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

  }
  .pg_business .section.sec1{

  }
  .pg_business .section.sec2{

  }
  .pg_business .section.sec3{
    padding-bottom: 5px;
  }
  .pg_business .section.sec4{

  }
  .pg_business .section.sec5{
    padding-bottom: 200px;
    padding-top: 100px;
    background-size: auto 600px;
  }
  .pg_business .section.sec5 .tt2{
    /*margin-bottom: 65px;*/
  }
  .pg_business .section.sec6{

  }
  .pg_business .section.sec7{
    padding-top: 100px;
  }

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

  .pg_business .section.sec5{
    background-size: auto 700px;
  }

}
@media (min-width:1470px){
  
  .pg_business .section.sec5{
    background-size: auto 800px;
  }

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

  .pg_business .section.sec1{
    padding-bottom: 50px;
  }
  .pg_business .section.sec3{
    padding-bottom: 150px;
  }
  .pg_business .section.sec5{
    background-size: auto;
  }

}

/* メイン部分 */

.business_grace_txt{
  text-align: center;
}

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

@media (max-width:767px){

}
@media (min-width:768px){
  .content_block:nth-child(n+2){
    margin-top: 39px;
  }

  .pg_business .section.sec5 .read_more{
    margin-top: 90px;
  }
}
@media (min-width:1024px){
  .pg_business .section.sec5 .tt2_ja{
    margin-top: 16px;
  }

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


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


}


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

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

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 82.88%;
  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%;
  padding-top: 114.28%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{
  margin-top: 10px;
}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 100%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{
  border: 1px solid #3a3a3a;
  padding: 16px 16px;
  margin-top: 30px;
}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #3a3a3a;

  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  letter-spacing: 0.085em;
  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.31em;
  ;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}

.gallery_slide_prev,
.gallery_slide_next{
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: var(--main-color);
  font-size: 22px;
  cursor: pointer;
}
.works_detail .swiper-button-next:after,
.works_detail .swiper-button-prev:after{
  display: none;
}
.works_detail .swiper-button-prev{
  left:-5.9%;
}
.works_detail .swiper-button-prev:before{
  content: "";
  display: block;
  width:25px;
  aspect-ratio:1 / 1;
  background-image: url(/system_panel/uploads/images/left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.works_detail .swiper-button-next:after{
  content: "";
  display: block;
  width:25px;
  aspect-ratio:1 / 1;
  background-image: url(/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.works_detail .swiper-button-prev{
  left: -10%;
}
.works_detail .swiper-button-next{
  right: -10%;
}
/* コピー用 */
@media (max-width:374px){

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

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

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

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

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

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

  }

  /* 詳細 */
  .gallery_detail{
    width: 100%;
    margin-top: 70px;
    padding: 27px 20px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    margin-top: 20px;
  }

  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .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 .read_more{
    margin-top: 56px;
  }
  .works_detail .read_more a{
    font-size: 16px;
    width: 350px;
    padding: 16px 20px 12px;
  }
  .works_detail .swiper-button-prev{
    left: -5.9%;
  }
  .works_detail .swiper-button-next{
    right: -5.9%;
  }
}
@media (min-width:1024px){

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

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


}




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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #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: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 65px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  padding: 18px 10px;
  margin: 45px auto 0;
  border: 0;
  background: var(--main-color);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.pg_contact .formBtn.formSend:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;

  width: 27px;
  aspect-ratio: 27 / 5;
  background-image: url(/system_panel/uploads/images/arrow_r.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.pg_contact .formBtn.formSend:hover{
  color: #FFF;
  background: var(--sub-color);
}
.pg_contact .formBtn.formSend:hover:after{
  margin-right: -5px;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  height: 39px;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.privacy_item_box {
  padding: 30px 51px 30px 26px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--main-color);
  margin-top: 55px;
}

@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%;
  }
  
  .privacy_item_box{
    margin-top: 75px;
  }
}


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

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

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

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

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


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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

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

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

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: 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{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}


/* ぼやけた状態からIN */
.animated2{
  
}
.animated2.inview{
  transition: 1s all;
}
.animated2.blurInUp{
  transform: translateY(2%);
  filter: blur(10px);
}
.animated2.blurInUp.inview{
  transform: translateY(0);
  filter: blur(0);
}

.animated2.blurIn{
  filter: blur(10px);
}
.animated2.blurIn.inview{
  filter: blur(0);
}
