@charset "UTF-8";

:root {
  --main-color: #d09372;
  --sub-color: #000;
  
  --color1: #b7ae85;
  --colorbg1: #ecead9;
  --color2: #8cb8bb;
  --colorbg2: #d4e2e3;
  --color3: #d4917f;
  --colorbg3: #efded4;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  background: #f1ebe7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  z-index: 1;
}

.body_side_bg{
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  background-repeat: repeat-y;
  /*pointer-events: none;*/
  background-size: 100% auto;
}
.body_side_bg.left{
  width: 14px;
  left: 0;
  background-image: 
    url(/system_panel/uploads/images/body_side_l.png);
}
.body_side_bg.right{
  width: 14px;
  right: 0;
  background-image: 
    url(/system_panel/uploads/images/body_side_r.png);
}

.sidecar{
  position: fixed;
  z-index: 1;
  transition: 0.5s all;
  opacity: 0;
}
.sidecar.show{
  opacity: 1;
}
.sidecar.up{
  /*-webkit-transform: scaleY(-1);*/
  /*transform: scaleY(-1);*/
}
.body_side_bg.left .sidecar{
  width: 60px;
  top: 40%;
  left: 5px;
}
.body_side_bg.right .sidecar{
  width: 40px;
  top: 55%;
  right: 5px;
}

.gjs-dashed .sidecar{
  opacity: 1;
}


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

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
  
  .body_side_bg.left{
    display: none;
  }
}
@media (min-width:768px){
  .body_side_bg.left{
    width: 25px;
  }
  .body_side_bg.right{
    width: 25px;
  }
  .body_side_bg.left .sidecar{
    width: 80px;
    top: 40%;
    left: 5px;
  }
  .body_side_bg.right .sidecar{
    width: 80px;
    top: 65%;
    right: 5px;
  }

}
@media (min-width:1024px){
  
  
}
@media (min-width:1200px){
  .body_side_bg.left{
    width: 40px;
  }
  .body_side_bg.right{
    width: 40px;
  }
  .body_side_bg.left .sidecar{
    left: 10px;
  }
  .body_side_bg.right .sidecar{
    right: 10px;
  }
}
@media (min-width:1470px){
  .body_side_bg.left{
    width: 57px;
  }
  .body_side_bg.right{
    width: 53px;
  }
  .body_side_bg.left .sidecar{
    top: 30%;
    left: 10px;
  }
  .body_side_bg.right .sidecar{
    top: 55%;
    right: 10px;
  }
}
@media (min-width:1520px){
  
  .body_side_bg.left .sidecar{
    /*left: 10px;*/
    width: auto;
  }
  .body_side_bg.right .sidecar{
    /*right: 10px;*/
    width: auto;
  }
  
}

.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;
  color: var(--main-color);
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

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

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

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

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

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

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


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

/* 指定デバイスで改行を消す */
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}

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

/*******************************
*　ヘッダー
********************************/
.header{
  /*background: #f1ebe7;*/
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 10px;
  /*background: #f1ebe7;*/
  /*background: rgba(241,235,231,0.5);*/
  transition: 0.2s all;
}

/* ロゴ */
.hdr_logo{
  
}
.hdr_logo img{
  width: 150px;
  display: block;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{
  
}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{
  
}
.hdr_tel_link p{
  
}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


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

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


@media (min-width:375px){

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

  .header{
    margin-bottom: 20px;
  }
  .hdr1 {
    justify-content: center;
  }
  
  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }
  
}
@media (min-width:768px){
  
  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 86px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .hdr1{
    padding: 15px 50px;
  }
  
  /* ロゴ */
  .hdr_logo img{
    width: 180px;
  }
  
  /* ヘッダースリム */
  .header.slim .hdr1{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header.slim {
    /*background: rgb(241,235,231,0.9);*/
    background: linear-gradient(to bottom, rgba(241, 235, 231, 80%) 0%, rgba(241, 235, 231, 50%) 65%, rgba(241, 235, 231, 0) 100% );
  }
  
  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  
  
}
@media (min-width:1024px){
  
  /* ロゴ */
  .hdr_logo img{
    width: 200px;
  }

  /* ヘッダースリム */
  .header.slim{
    
  }
  
  
  /* TELボタン */
  .hdr_tel{

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 200px;
  }
  
  /* ヘッダースリム */
  .header.slim{
    
  }
  
}
@media (min-width:1470px){
  .hdr1{
    padding: 20px 60px; 
  }
}
@media (min-width:1536px){
  
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
    width: 310px;;
  }
  
  
  /* ヘッダースリム */
  .header.slim{
    
  }
  .header.slim .hdr_logo img{
    width: 200px;
  }
  
  .hdr1{
    padding: 20px 60px; 
  }
}
@media (min-width:1720px){
  .hdr1{
    padding: 25px 100px; 
  }
  /* ヘッダースリム */
  .header.slim .hdr1{
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  
  
}


/*******************************
*　メインビジュアル
********************************/


/* MV */
.mv_wrap{
  margin-top: 30px;
}
.mv{
  position: relative;
  z-index: 1;
  padding-top: 195px;
  padding-right: 40px;
}


/* MVテキスト */
.mv_txt1{
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 15px;
}
.mv_txt1_en{
  font-size: 174px;
  font-size: 40px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
  letter-spacing: 0;
}
.mv_txt1_ja{
  font-size: 30px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  /*line-height: 1.5;*/
}
.mv_txt2{
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 25px;
}
.mv_txt2_ja{
  /*font-size: 54px;*/
  font-size: 20px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1.629;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mv_txt2_ja + .mv_txt2_ja{
  margin-top: 3.2em;
}

/* スライダーの場合 */
.mv_slides_wrap{
  position: relative;
  z-index: 1;
}
.mv_slides{
  
}
.mv_slides_img{
  border-radius: 0 50px 50px 0;
  overflow: hidden;
}
.mv_slides_img.img_fit:before{
  padding-top: 300px;
}

.mv_thumbs{
  position: absolute;
  position: static;
  z-index: 2;
  /*bottom: 88px;*/
  /*left: calc(100% - 157px);*/
  margin-top: -50px;
  margin-left: 15px;
  
}
.mv_thumbs_item{
  display: flex;
  flex-wrap: wrap;
  width: 412px;
  width: 330px;
  position: relative;
  z-index: 1;
}
.mv_thumbs_item{
  cursor: pointer;
}


.mv_thumbs_item:hover .mv_thumbs_item_label,
.mv_thumbs_item:hover .mv_thumbs_item_title,
.mv_thumbs_item.on .mv_thumbs_item_label,
.mv_thumbs_item.on .mv_thumbs_item_title{
  background-color: #ecead9;
}
.mv_thumbs_item.color1:hover .mv_thumbs_item_label,
.mv_thumbs_item.color1:hover .mv_thumbs_item_title,
.mv_thumbs_item.color1.on .mv_thumbs_item_label,
.mv_thumbs_item.color1.on .mv_thumbs_item_title{
  background-color: var(--colorbg1);
}
.mv_thumbs_item.color2:hover .mv_thumbs_item_label,
.mv_thumbs_item.color2:hover .mv_thumbs_item_title,
.mv_thumbs_item.color2.on .mv_thumbs_item_label,
.mv_thumbs_item.color2.on .mv_thumbs_item_title{
  background-color: var(--colorbg2);
}
.mv_thumbs_item.color3:hover .mv_thumbs_item_label,
.mv_thumbs_item.color3:hover .mv_thumbs_item_title,
.mv_thumbs_item.color3.on .mv_thumbs_item_label,
.mv_thumbs_item.color3.on .mv_thumbs_item_title{
  background-color: var(--colorbg3);
}

.mv_thumbs_item + .mv_thumbs_item{
  margin-top: 10px;
}
.mv_thumbs_item_label{
  display: flex;
  justify-content: center;
  width: 165px;
  width: 100px;
  background: #FFF;
  font-size: 14px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  text-align: center;
  border-radius: 15px 15px 0 0;
  padding: 6px 0 0;
  /*position: absolute;*/
  /*z-index: 1;*/
  /*bottom: 100%;*/
  /*left: 0;*/
  transition: 0.2s all;
}
.mv_thumbs_item_title{
  width: 100%;
  display: flex;
  justify-content: space-between;
  /*border-radius: 0 15px 15px 15px;*/
  border-radius: 0 10px 10px 10px;
  background: #FFF;
  padding: 10px 10px;
  transition: 0.2s all;
}

.mv_thumbs_item_img{
  width: 80px;
}
.mv_thumbs_item_txt{
  width: calc(100% - 80px - 10px);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8757;
  line-height: 1.5;
  text-align: justify;
}


/* MVギャラリー */
.mv_gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.mv_gallery_box1{
  width: 85%;
  margin-top: -30px;
  margin-left: 15px;
  position: relative;
  z-index: 1;
  order: 2;
}
.mv_gallery_box1:before{
  content: "";
  display: block;
  padding-top: 83.09%;
}
.mv_gallery_box2{
  width: 80%;
  margin-left: auto;
  position: relative;
  z-index: 1;
  margin-top: 0;
  order: 1;
}
.mv_gallery_box2:before{
  content: "";
  display: block;
  padding-top: 95.64%;
}
.mv_gallery_img{
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}
.mv_gallery_img img{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mv_gallery_img.pos1{
  width: 51.546%;
  aspect-ratio: 500 / 350;
  top: 0;
  left: 19.07%;
}
.mv_gallery_img.pos2{
  width: 35.051%;
  aspect-ratio: 340 / 240;
  z-index: 1;
  top: 35.48%;
  left: 52.57%;
}
.mv_gallery_img.pos3{
  width: 33.505%;
  aspect-ratio: 325 / 260;
  top: 54.09%;
  left: 0;
}
.mv_gallery_img.pos4{
  width: 27.835%;
  aspect-ratio: 270 / 190;
  bottom: 0;
  right: 0; 
}
.mv_gallery_img.pos5{
  width: 63.529%;
  aspect-ratio: 500 / 350;
  top: 0;
  left: 0;
}
.mv_gallery_img.pos6{
  width: 50.588%;
  aspect-ratio: 430 / 300;
  z-index: 1;
  top: 37.76%;
  right: 4.82%;
}
.mv_gallery_img.pos7{
  width: 31.764%;
  aspect-ratio: 270 / 190;
  top: 59.04%;
  left: 5.17%;
}
.mv_gallery_img.pos8{
  width: 23.529%;
  aspect-ratio: 200 / 140;
  bottom: 0;
  right: 18.35%;
}

.mv_gallery_img{
  filter: blur(10px);
  animation-delay: 1.5s;
  transform: translateY(50px);
  transition: 2s all;
}
.mv_gallery_img.pos2,
.mv_gallery_img.pos6{
  transform: translateY(80px);
}
.mv_gallery_img.pos3,
.mv_gallery_img.pos5,
.mv_gallery_img.pos8{
  transform: translateY(100px);
}

.mv_gallery_img.blurOff{
  filter: blur(0);
  transform: translateY(0) !important;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
.gjs-dashed .mv_gallery_img{
  filter: none !important;
  transform: translateY(0) !important;
}



@media (min-width:768px){

  /* MV */
  .mv_wrap{

  }
  .mv{
    padding-top: 195px;
    padding-right: 0;
    margin-right: 40px;
  }

  /* MVテキスト */
  .mv_txt1{
    top: 90px;
    left: 108px;
  }
  .mv_txt1_en{
    font-size: 70px;
  }
  .mv_txt1_ja{
    font-size: 20px;
  }
  .mv_txt2{
    top: 0;
    right: 0;
  }
  .mv_txt2_ja{
    font-size: 34px;
  }
  

  /* スライダーの場合 */
  .mv_slides_wrap{
  }
  .mv_slides{

  }
  .mv_slides_img{
    border-radius: 0 50px 50px 0;
  }
  .mv_slides_img.img_fit:before{
    padding-top: 660px;
  }

  .mv_thumbs{
    position: absolute;
    bottom: 88px;
    left: calc(100% - 400px);
    margin-top: 0;
    margin-left: 0;
  }
  .mv_thumbs_item{
    width: 412px;
  }
  
  .mv_thumbs_item + .mv_thumbs_item{
    margin-top: 18px;
  }
  .mv_thumbs_item_label{
    width: 165px;
    font-size: 18px;
    border-radius: 15px 15px 0 0;
    padding: 6px 0 6px;
  }
  .mv_thumbs_item_title{
    border-radius: 0 15px 15px 15px;
    padding: 14px 20px;
  }
  .mv_thumbs_item_img{
    width: 130px;
  }
  .mv_thumbs_item_txt{
    width: calc(100% - 130px - 25px);
    font-size: 14px;
    line-height: 1.8757;
  }
  
  /* MVギャラリー */
  .mv_gallery{
    margin-top: -10px;
  }
  .mv_gallery_box1{
    width: 50.52%;
    order: 1;
    margin-top: 0;
    margin-left: 0;
  }
  .mv_gallery_box2{
    width: 44.27%;
    margin-top: -48px;
    margin-left: 0;
  }
  .mv_gallery_img{
    border-radius: 30px;
  }
  
}
@media (min-width:768px) and (max-width:1023px){
  
  .mv_slides_img.img_fit:before {
    padding-top: 500px;
  }
  .mv_thumbs{
    bottom: -375px;
  }
  .mv_gallery{
    margin-top: 460px;
  }
}

@media (min-width:1024px){
  
  

  

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

  /* MV */
  .mv_wrap{

  }
  .mv{
    padding-top: 195px;
    padding-right: 360px;
    margin-right: 300px;
  }

  /* MVテキスト */
  .mv_txt1{
    top: 90px;
    left: 108px;
  }
  .mv_txt1_en{
    font-size: 174px;
  }
  .mv_txt1_ja{
    font-size: 30px;
  }
  .mv_txt2{
    top: 0;
    right: 0;
  }
  .mv_txt2_ja{
    font-size: 54px;
  }
  

  /* スライダーの場合 */
  .mv_slides_wrap{
  }
  .mv_slides{

  }
  .mv_slides_img{
    border-radius: 0 50px 50px 0;
  }
  .mv_slides_img.img_fit:before{
    padding-top: 700px;
  }

  
  /* MVギャラリー */
  .mv_gallery{
    margin-top: -10px;
  }
  .mv_gallery_box1{
    width: 50.52%;
    order: 1;
    margin-top: 0;
    margin-left: 0;
  }
  .mv_gallery_box2{
    width: 44.27%;
    margin-top: -48px;
    margin-left: 0;
  }
  .mv_gallery_img{
    border-radius: 30px;
  }
  
  
  .mv{
    margin-right: 120px;
  }
  .mv_txt2{
    right: 0;
  }
  .mv_txt2_ja{
    font-size: 54px;
  }
  .mv_txt1_ja{
    display: flex;
  }
  
  .mv_thumbs{
    bottom: 88px;
    left: calc(100% - 157px);
    position: absolute;
    bottom: 88px;
    left: calc(100% - 157px);
    margin-top: 0;
    margin-left: 0;
  }
  .mv_thumbs_item{
    width: 412px;
  }
  
  .mv_thumbs_item + .mv_thumbs_item{
    margin-top: 18px;
  }
  .mv_thumbs_item_label{
    width: 165px;
    font-size: 18px;
    border-radius: 15px 15px 0 0;
    padding: 6px 0 6px;
  }
  .mv_thumbs_item_title{
    border-radius: 0 15px 15px 15px;
    padding: 14px 20px;
  }
  .mv_thumbs_item_img{
    width: 130px;
  }
  .mv_thumbs_item_txt{
    width: calc(100% - 130px - 25px);
    font-size: 14px;
    line-height: 1.8757;
  }
  
  
}
@media (min-width:1470px){

  .mv{
    padding-top: 195px;
    padding-right: 360px;
    margin-right: 100px;
  }
  .mv_slides_img.img_fit:before{
    padding-top: 900px;
  }
  .mv_txt2{
    right: 0;
  }
  
}
@media (min-width:1520px){
  
  
  
}
@media (min-width:1720px){

  .mv{
    padding-top: 195px;
    padding-right: 360px;
    margin-right: 300px;
  }
  .mv_slides_img.img_fit:before{
    padding-top: 900px;
  }
  .mv_txt2{
    right: 0;
  }
  
  .mv_txt2{
    right: 76px;
  }
  
}


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

/* サイドバー */
.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-top: 10px;
  margin-bottom: 30px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
  
}
.pg_header_mv_img{
  overflow: hidden;
  border-radius: 15px;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
  padding-top: 45.54% !important;
}

.pg_header_video{
  border-radius: 15px;
  overflow: hidden;
}
.pg_header_video iframe{
  border: 0;
}

@media (min-width:768px){
  .pg_header{
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .pg_header_mv_img{
    border-radius: 30px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_video{
    border-radius: 30px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-top: 40px;
    margin-bottom: 70px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 400px;
  }

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

  .pg_header{
    margin-top: 150px;
    margin-bottom: 80px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 600px;
  }
  
}


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


/* テーブル用 */
.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;
}

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

/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;  
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}  
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 250px;
  font-size: 14px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1.2;
  text-align: center;
  border: 0;
  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: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}

.txt_color1{
  color: var(--color1);
}
.txt_color2{
  color: var(--color2);
}
.txt_color3{
  color: var(--color1);
}
.bg_color1{
  background-color: var(--color1)!important;
}
.bg_color2{
  background-color: var(--color2)!important;
}
.bg_color3{
  background-color: var(--color3)!important;
}

/* 見出し */
.tt1{
  text-align: center;
  margin-bottom: 50px;
}
.tt1_en{
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1;
  color: #b7ae85;
}
.tt1_en.color1{
  color: var(--color1);
}
.tt1_en.color2{
  color: var(--color2);
}
.tt1_en.color3{
  color: var(--color3);
}

.tt2{
  text-align: center;
  margin-bottom: 20px;
}
.tt2_en{
  font-size: 13px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 1;
}
.tt2_en:after{
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #555;
  margin: 10px auto 0;
}

.tt2_ja{
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.5789;
  margin-top: 5px;
}
.tt2_desc{
  font-size: 16px;
  line-height: 2.125;
  line-height: 1.875;
  text-align: justify;
}
.tt2_desc2{
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
}

/* 購入ボタン */
.buy_btn{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.buy_btn_a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 60px;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  border-radius: 15px;
  background: #CCC;
  color: #FFF;
  position: relative;
  z-index: 1;
}
.buy_btn_a p{
  transition: 0.2s all;
}
.buy_btn_a:hover{
  color: #FFF;
}
.buy_btn_a:hover p{
  -webkit-transform: scale(1.10);
  transform: scale(1.10);
}
.buy_btn.sparky .buy_btn_a{
  background: #b7ae85;
}
.buy_btn.ecru .buy_btn_a{
  background: #8cb8bb;
}
.buy_btn.marm .buy_btn_a{
  background: #d4917f;
}

.buy_btn_a:before,
.buy_btn_a:after{
  content: "";
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.2s all;
}
.buy_btn_a:hover:before{
  margin-left: -5px;
}
.buy_btn.sparky .buy_btn_a:before{
  width: 80px;
  /*aspect-ratio: 129 / 87;*/
  aspect-ratio: 130 / 86;
  background-image: url(/system_panel/uploads/images/buy_img1.png?2);
  left: -34px;
}
.buy_btn.ecru .buy_btn_a:before{
  width: 80px;
  /*aspect-ratio: 127 / 84;*/
  aspect-ratio: 133 / 88;
  background-image: url(/system_panel/uploads/images/buy_img2.png?2);
  left: -34px;
}
.buy_btn.marm .buy_btn_a:before{
  width: 70px;
  /*aspect-ratio: 102 / 77;*/
  aspect-ratio: 112 / 86;
  background-image: url(/system_panel/uploads/images/buy_img3.png?3);
  left: -34px;
}
.buy_btn.marm .buy_btn_a.b:before{
  background-image: url(/system_panel/uploads/images/buy_img3b.png?3);
}
.buy_btn_a:after{
  width: 40px;
  aspect-ratio: 50 / 5;
  background-image: url(/system_panel/uploads/images/btn_a_right.png);
  top: 50%;
  right: 15px;
  margin-top: -2px;
}
.buy_btn_a:hover:after{
  margin-right: -5px;
}



.buy_btn.halfup{
  margin: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.buy_btn.move .buy_btn_a:before {
  content: "";
  position: absolute;
  left: -34px;
  transition: transform 1.5s ease, opacity 1.5s ease;
  /*transition: transform 3.5s ease, opacity 1.5s ease;*/
  transform: translateX(0) scaleX(1);
  opacity: 0; /* 初期は非表示 */
  opacity: 1; /* 初期は非表示 */
}

/* ホバー中：右に走りながらフェードアウト */
.buy_btn.move .buy_btn_a.bike-run:before {
  transform: translateX(600px) scaleX(1);
  /*transform: translateX(100vw) scaleX(1);*/
  opacity: 0; /* ゴール時には透明 */
}

/* ホバーアウト時：透明で即戻す */
.buy_btn.move .buy_btn_a.reset-bike:before {
  transition: none;
  transform: translateX(0) scaleX(1);
  opacity: 1;
}
.buy_btn.move .buy_btn_a:hover:before{
  margin-left: 0;
}
.buy_btn.move.ecru .buy_btn_a:before{
  width: 60px;
  /*aspect-ratio: 127 / 84;*/
  aspect-ratio: 300 / 458;
  background-image: url(/system_panel/uploads/images/buy_img2move.png?2);
}
.buy_btn.move.sparky .buy_btn_a:before{
  width: 75px;
  /*aspect-ratio: 127 / 84;*/
  aspect-ratio: 300 / 353;
  background-image: url(/system_panel/uploads/images/buy_img1move.png?2);
}
.buy_btn.move.ecru .buy_btn_a:before{
  width: 60px;
  /*aspect-ratio: 127 / 84;*/
  aspect-ratio: 300 / 458;
  background-image: url(/system_panel/uploads/images/buy_img2move.png?2);
}
.buy_btn.move.marm .buy_btn_a:before{
  width: 60px;
  /*aspect-ratio: 127 / 84;*/
  aspect-ratio: 300 / 505;
  background-image: url(/system_panel/uploads/images/buy_img3move.png?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.mid{
  max-width: 1350px;
}
.container.wide{
  max-width: 1550px;
}
.container.full{
  max-width: 1920px;
}*/

  
@media (max-width:374px){

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

}
@media (max-width:1023px){
  .container{
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width:767px){

  .container{
    padding-left: 15px;
    padding-right: 25px;
  }
  
  /* スマホ用テーブル */
  .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: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 280px;
    font-size: 14px;
    padding: 19px 20px 17px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }
  
  /* 見出し */
  .tt1{
    margin-bottom: 60px;
  }
  .tt1_en{
    font-size: 60px;
  }
  
  .tt2{
    margin-bottom: 28px;
  }
  .tt2_en{
    font-size: 14px;
  }
  .tt2_en:after{
    width: 30px;
    margin: 10px auto 0;
  }

  .tt2_ja{
    font-size: 38px;
    margin-top: 5px;
  }
  .tt2_desc{
    font-size: 16px;
    line-height: 2.125;
    text-align: center;
  }
  .tt2_desc2{
    font-size: 18px;
    text-align: center;
    margin-top: 18px;
  }

  .tt2.left{
    text-align: left;
  }
  .tt2.left .tt2_en:after{
    margin-left: 0;
  }
  
  /* 購入ボタン */
  .buy_btn{
    margin-top: 30px;
  }
  .buy_btn_a{
    width: 483px;
    height: 80px;
    font-size: 16px;
    border-radius: 15px;
  }
  .buy_btn.sparky .buy_btn_a:before{
    width: 129px;
    left: -34px;
  }
  .buy_btn.ecru .buy_btn_a:before{
    width: 127px;
    left: -34px;
  }
  .buy_btn.marm .buy_btn_a:before{
    width: 102px;
    left: -34px;
  }
  .buy_btn_a:after{
    width: 50px;
    right: 32px;
    margin-top: -2px;
  }
  
  .buy_btn.left{
    justify-content: flex-start;
  }
  
}
@media (min-width:1024px){

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

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

  .tt1{
    margin-bottom: 110px;
  }
  .tt1_en{
    font-size: 100px;
  }

  .tt2_desc2{
    font-size: 21px;
    text-align: center;
    margin-top: 18px;
  }
}
@media (min-width:1366px){

  /* コンテナ */
  .container.mid{
    max-width: calc(1320px + 140px);
    padding-left: 70px;
    padding-right: 70px;
  }
  .container.wide{
    max-width: calc(1520px + 140px);
    padding-left: 70px;
    padding-right: 70px;
  }
  .container.full{
    max-width: 1920px;
    padding-left: 70px;
    padding-right: 70px;
  }

}




/*******************************
*　HOME
********************************/
.pg_home{
  /*overflow: hidden;*/
}
.pg_home .section.sec1{
  padding-top: 50px;
  
}
.pg_home .section.sec2{
  
}
.pg_home .section.sec3{
  
}
.pg_home .section.sec4{
  overflow: hidden;
  padding-top: 200px;
}
.pg_home .section.sec5{
  
}
.pg_home .section.sec6{
  
}
.pg_home .section.sec7{
  
}
.pg_home .section.sec8{
  
}


/**/
.home_thought_item_{
  
}


@media (max-width:374px){

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

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

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

  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    
  }
  .pg_home .section.sec3{
    /*padding-bottom: 180px;*/
  }
  .pg_home .section.sec4{
    padding-top: 230px;
  }
  .pg_home .section.sec5{
    
  }
  .pg_home .section.sec6{
    
  }
  .pg_home .section.sec7{
    
  }
  .pg_home .section.sec8{
    
  }


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


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


}



.scroll_container{
  margin-top: 35px;
}

/* 選ばれる理由 */
.home_thought{
  
}
* + .home_thought{
  margin-top: 35px;
}
.home_thought_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_thought_item + .home_thought_item{
  margin-top: 50px;
}
.home_thought_item_box1{
  width: 100%;
  padding-top: 0;
}
.home_thought_item_box2{
  width: 100%;
  margin-top: 30px;
}
.home_thought_item_img{
  border-radius: 15px;
  overflow: hidden;
}
.home_thought_item_img.img_fit:before{
  padding-top: 68.37%;
}
.home_thought_item_num{
  display: inline-block;
  text-align: center;
  font-size: 70px;
  font-family: "Bellefair", serif;
  line-height: 1;
  margin-bottom: 15px;
}
.home_thought_item_num:after{
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #555;
  margin: 0 auto 0;
}
.home_thought_item_title{
  font-size: 20px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-bottom: 12px;
}

.home_thought_item_txt{
  font-size: 16px;
  line-height: 2.1875;
  text-align: justify;
}

@media (max-width:374px){

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

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

  
  
}
@media (min-width:768px){
  .pg_home .section.sec2{
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .scroll_container{
    margin-top: 35px;
  }
  
  /* 選ばれる理由 */
  .home_thought{

  }
  * + .home_thought{
    margin-top: 35px;
  }
  .home_thought_item{
  }
  .home_thought_item + .home_thought_item{
    margin-top: 70px;
  }
  .home_thought_item_box1{
    /*width: 57.20%;*/
    /*padding-top: 12px;*/
  }
  .home_thought_item_box2{
    /*width: 40.09%;*/
    margin-top: 40px;
  }
  .home_thought_item_img{
    border-radius: 30px;
  }
  .home_thought_item_num{
    font-size: 70px;
    margin-bottom: 20px;
  }
  .home_thought_item_title{
    font-size: 24px;
    margin-bottom: 32px;
  }
  .home_thought_item_title:after{
  }
  .home_thought_item_txt{
    font-size: 16px;
    line-height: 2.1875;
  }
  


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

  .pg_home .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
  
  .scroll{
    padding-top: 100px;
  }
  
  .scroll_container{
    position: relative;
    z-index: 1;
    /*height: 500px;*/
    height: calc(100vh - 100px - 103px - 35px);
    margin-top: 35px;
  }
  .scroll_wrap{
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-right: 200px;
  }
  
  .gjs-dashed .scroll_container{
    height: auto;
  }
  .gjs-dashed .scroll_wrap{
    display: block;
    position: static;
    height: auto;
  }
  .gjs-dashed .home_thought_item + .home_thought_item{
    margin-top: 50px;
    margin-left: 0;
  }
  
  .scroll_nav{
    display: flex;
    margin-top: -50px;
  }
  .scroll_nav_item{
    width: 100%;
    height: 2px;
    background: #555555;
  }
  .scroll_nav_item.active{
    background: #8a691e;
  }
  
  /* 選ばれる理由 */
  .home_thought{
    
  }
  * + .home_thought{
    margin-top: 35px;
  }
  .home_thought_item{
    width: 930px;
    width: 1100px;
  }
  .home_thought_item + .home_thought_item{
    margin-top: 0;
    margin-left: 60px;
    
  }
  .home_thought_item:last-child{
    
  }
  .home_thought_item_box1{
    width: 56.79%;
    padding-top: 12px;
  }
  .home_thought_item_box2{
    width: 36.89%;
    margin-top: 0;
  }
  .home_thought_item_num{
    font-size: 70px;
  }
  .home_thought_item_title{
    font-size: 26px;
    margin-bottom: 32px;
  }

}

@media (min-width:1200px){

  .pg_home .section.sec2{
    /*padding-top: 175px;*/
    padding-top: 0;
    padding-bottom: 180px;
    padding-bottom: 0;
  }
  
  .scroll{
    padding-top: 175px;
    padding-bottom: 180px;
  }
  .scroll_container{
    /*height: 500px;*/
    height: calc(100vh - 175px - 110px - 35px);
    margin-top: 58px;
  }
  
  /* 選ばれる理由 */
  .home_thought{

  }
  * + .home_thought{
    margin-top: 35px;
  }
  .home_thought_item{
    width: 1030px;
  }
  .home_thought_item_box1{
    /*width: 57.20%;*/
    /*padding-top: 12px;*/
  }
  .home_thought_item_box2{
    /*width: 40.09%;*/
  }
  .home_thought_item_num{
    font-size: 100px;
  }
  .home_thought_item_title{
    font-size: 30px;
    /*margin-bottom: 12px;*/
  }


}
@media (min-width:1470px){
  .scroll_wrap{
    padding-right: 500px;
    padding-right: 0;
  }
}




/* Feature */
.home_feature {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-top: 50px;
}
.home_feature_row{
  
}
.home_feature_images {
  width: 44.73%;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.home_feature_texts {
  width: 36.18%;
}
.home_feature_row {
  min-height: 100vh;
  box-sizing: border-box;
}

.home_feature_title{
  margin-bottom: 60px;
}
.home_feature_title_num{
  display: inline-block;
  font-size: 100px;
  font-family: "Bellefair", serif;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}
.home_feature_title_num:after{
  content: "";
  display: block;
  
  width: 30px;
  height: 1px;
  background: #555555;
  margin: -2px auto 0;
}
.home_feature_title_ja{
  font-size: 34px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-top: 38px;
}
.home_feature_txt{
  font-size: 16px;
  text-align: justify;
  line-height: 2.5;
}


.home_feature_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}
.home_feature_img.img_fit:before{
  padding-top: 124.81%;
}
.home_feature_img2.img_fit:before{
  padding-top: 124.81%;
}
.home_feature_img.active {
  opacity: 1;
  z-index: 2;
}

.gjs-dashed .home_feature_images{
  position: static;
  height: auto;
  
}
.gjs-dashed .home_feature_img{
  position: relative !important;
  opacity: 1 !important;
  padding: 15px;
  height: auto;
}


@media (max-width:767px){

  
  
}
@media (min-width:768px){
  
}
@media (max-width:1023px){
  
  /* Feature */
  .home_feature {
    padding-top: 50px;
  }
  .home_feature_row{

  }
  .home_feature_images {
    display: none;
  }
  .home_feature_texts {
    width: 100%;
  }
  .home_feature_row {
    
  }
  .home_feature_row + .home_feature_row {
    margin-top: 100px;
  }

  .home_feature_title{
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .home_feature_title_num{
    font-size: 70px;
  }
  .home_feature_title_ja{
    font-size: 26px;
    margin-top: 20px;
  }
  .home_feature_txt{
    font-size: 16px;
    line-height: 2.5;
  }
  
}
@media (max-width:767px){
  
  /* Feature */
  .home_feature {
    padding-top: 50px;
  }
  .home_feature_row + .home_feature_row {
    margin-top: 50px;
  }
  .home_feature_title{
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .home_feature_title_num{
    font-size: 50px;
  }
  .home_feature_title_ja{
    font-size: 24px;
    margin-top: 20px;
  }
  .home_feature_txt{
    font-size: 16px;
    line-height: 1.875;
  }
  
}

@media (min-width:1024px){
  
  /* Feature */
  .home_feature {
    padding-top: 50px;
  }
  .home_feature_row{
    padding-bottom: 100px;
  }
  .home_feature_images {
    width: 44.73%;
    width: 46%;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
  }
  .home_feature_texts {
    width:50%;
  }
  .home_feature_row {
    min-height: 100vh;
    box-sizing: border-box;
  }

  .home_feature_title{
    margin-bottom: 60px;
  }
  .home_feature_title_num{
    font-size: 70px;
  }
  .home_feature_title_ja{
    font-size: 26px;
    margin-top: 38px;
  }
  .home_feature_txt{
    font-size: 16px;
    line-height: 2.5;
  }
  
}

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

@media (min-width:1470px){
  
  /* Feature */
  .home_feature {
    padding-top: 50px;
  }
  .home_feature_row{

  }
  .home_feature_images {
  }
  .home_feature_texts {
  }
  .home_feature_row {
  }

  .home_feature_title{
    margin-bottom: 60px;
  }
  .home_feature_title_num{
    font-size: 100px;
  }
  .home_feature_title_ja{
    font-size: 34px;
    margin-top: 38px;
  }
  .home_feature_txt{
  }
  
}

@media (min-width:1720px){
  
  /* Feature */
  .home_feature {
    padding-top: 50px;
  }
  .home_feature_row{

  }
  .home_feature_images {
    width: 44.73%;
  }
  .home_feature_texts {
    width: 42.76%;
  }
  
}


/*******************************
*　SPARKY
********************************/
.pg_sparky{

}
.pg_sparky .section.sec1{
  
}
.pg_sparky .section.sec2{
  padding-top: 0;
}
.pg_sparky .section.sec3{
  padding-top: 50px;
}
.pg_sparky .section.sec4{
  padding-top: 50px;
}
.pg_sparky .section.sec5{
  padding-top: 100px;
  padding-bottom: 95px;
}
.pg_sparky .section.sec6{
  padding-top: 75px;
  padding-bottom: 50px;
  background: #e8e6d2;
  position: relative;
  z-index: 1;
  
}


@media (max-width:374px){

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

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

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

  .pg_sparky{

  }
  .pg_sparky .section.sec1{

  }
  .pg_sparky .section.sec2{
    padding-top: 20px;
  }
  .pg_sparky .section.sec3{
    padding-top: 70px;
  }
  .pg_sparky .section.sec4{
    padding-top: 100px;
  }
  .pg_sparky .section.sec5{
    padding-top: 135px;
    padding-bottom: 95px;
  }
  .pg_sparky .section.sec6{
    padding-top: 123px;
  }

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

  .pg_sparky{

  }
  .pg_sparky .section.sec1{

  }
  .pg_sparky .section.sec2{
    padding-top: 80px;
  }
  .pg_sparky .section.sec3{
    padding-top: 70px;
  }
  .pg_sparky .section.sec4{
    padding-top: 200px;
  }
  .pg_sparky .section.sec5{
    padding-top: 135px;
    padding-bottom: 95px;
  }
  .pg_sparky .section.sec6{
    padding-top: 123px;
  }

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


}






/*******************************
*　SVG点線
********************************/
.pg_product{
  overflow: hidden;
}

/* SVGデータ用 */
svg[id*="svg-line"]{
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* SPARKY(1) */
.line_pos#linebox1a{
  bottom: -20px;
  left: 14px;
}
.line_pos#linebox1b{
  bottom: 250px;
  right: -30px;
}
.line_pos#linebox1c{
  bottom: -20px;
  right: 85px;
}
.line_pos#linebox1d{
  bottom: 20px;
  right: 15px;
}
.line_pos#linebox1d{

}
.line_pos#linebox1e{
  bottom: 200px;
  right: -500px;
  bottom: -68px;
  right: 500px;
}
.line_pos#linebox1f{
  bottom: -60px;
  right: auto;
  left: 180px;
}
.line_pos#linebox1g{
  bottom: -30px;
  right: auto;
  left: 10px;
}
.line_pos#linebox1h{

}

.line_pos{
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,0,0,0.2);
  background: none;
}
.line_pos:before{
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-repeat: no-repeat;
  background-size: contain;
}
.line_pos#linebox1g:before{
  width: 45px;
  aspect-ratio: 168 / 236;
  background-image: url(/system_panel/uploads/images/line_pos_img1.png);
  bottom: 5px;
}
.line_pos#linebox3e:before{
  width: 45px;
  aspect-ratio: 148 / 97;
  background-image: url(/system_panel/uploads/images/line_pos_img2.png);
}
.line_pos#linebox5c:before{
  width: 45px;
  aspect-ratio: 135 / 188;
  background-image: url(/system_panel/uploads/images/line_pos_img3.png);
}
.line_pos#linebox7c:before{
  width: 45px;
  aspect-ratio: 138 / 107;
  margin-bottom: -15px;
  background-image: url(/system_panel/uploads/images/line_pos_img4.png);
}
.line_pos#linebox13d:before{
  width: 45px;
  aspect-ratio: 128 / 192;
  background-image: url(/system_panel/uploads/images/line_pos_img5.png);
  bottom: -10px;
}
.line_pos#linebox11c:before{
  width: 70px;
  aspect-ratio: 144 / 107;
  background-image: url(/system_panel/uploads/images/line_pos_img6.png);
  transform: rotate(-16deg);
}


/* SPARKY(2) */
.line_pos#linebox2a{
  top: -20px;
  left: 10px;
}
.line_pos#linebox2b{
  bottom: -30px;
  left: 4px;
}
.line_pos#linebox2c{
  bottom: 100px;
  left: -70px;
}
.line_pos#linebox2d{
  bottom: -70px;
  left: 100px;
}
.line_pos#linebox2e{
  display: none;
  bottom: -100px;
  left: 600px;
}
.line_pos#linebox2f{
  display: none;
  bottom: -100px;
  left: 900px;
}
.line_pos#linebox2g{
  bottom: -20px;
  left: 70%;
}

/* SPARKY(3) */
.line_pos#linebox3a{
  top: -10px;
  left: 25px;
}
.line_pos#linebox3b{
  bottom: -20px;
  left: 30px;
}
.line_pos#linebox3c{
  bottom: -300px;
  right: 0;
}
.line_pos#linebox3d{
  bottom: -768px;
  right: 0;
}
.line_pos#linebox3e{
  bottom: -876px;
  right: 0;
}
.line_pos#linebox3f{
  bottom: -135%;
  right: 0;
}
.line_pos#linebox3g{
  bottom: -138%;
  right: 34%;
}

.product_about_row.row3{
  z-index: 2;
}

/* SPARKY(4) */
.pg_sparky .line_pos#linebox4a{
  top: -10px;
  left: 47%;
}

/* 5 */
.line_pos#linebox5a{

}
.line_pos#linebox5b{

}
.line_pos#linebox5c{

}

/* 6 */
.line_pos#linebox6a{

}
.line_pos#linebox6b{

}
.line_pos#linebox6c{

}

/* 7 */
.line_pos#linebox7a{

}
.line_pos#linebox7b{

}
.line_pos#linebox7c{

}

/* 8 
.line_pos#linebox8a{
  top: -300px;
  right: 300px;
}
.line_pos#linebox8b{
  top: -200px;
  right: 267px;
}
.line_pos#linebox8c{
  top: -43px;
  right: 324px;
}
.line_pos#linebox8d{
  top: -155px;
  right: 692px;
}
.line_pos#linebox8e{
  top: -127px;
  right: 838px;
}
.line_pos#linebox8f{
  display: none;
}
.line_pos#linebox8g{
  display: none;
}
.line_pos#linebox8h{
  top: -30px;
  left: 45%;
}*/


/* 14 */

.line_pos#linebox14a{
  top: -300px;
  right: 100px;
}
.line_pos#linebox14b{
  top: -200px;
  right: 50px;
}
.line_pos#linebox14c{
  top: -50px;
  right: 20%;
}
.line_pos#linebox14d{
  top: -115px;
  right: 50%;
}
.line_pos#linebox14e{
  top: -78px;
  right: 69%;
}
.line_pos#linebox14f{
  display: none;
}
.line_pos#linebox14g{
  display: none;
}
.line_pos#linebox14h{
  top: -30px;
  left: 45%;
}



@media (min-width:768px){
 

  /* SPARKY(1) */
  .line_pos#linebox1a{
    bottom: -20px;
    left: 20px;
  }
  .line_pos#linebox1b{
        bottom: 250px;
    right: -120px;
  }
  .line_pos#linebox1c{
    bottom: -20px;
    right: 100px;
  }
  .line_pos#linebox1d{
    bottom: -50px;
    right: 150px;
  }
  .line_pos#linebox1d{

  }
  .line_pos#linebox1e{
    bottom: 200px;
    right: -500px;
    bottom: -80px;
    right: 500px;
  }
  .line_pos#linebox1f{
    bottom: -78px;
    right: 500px;
    left: auto;
  }
  .line_pos#linebox1g{
    bottom: -158px;
    right: 625px;
    left: auto;
  }
  .line_pos#linebox1h{

  }

  /* SPARKY(2) */
  .line_pos#linebox2a{
    top: -20px;
    left: 70px;
  }
  .line_pos#linebox2b{
    bottom: -60px;
    left: 32px;
  }
  .line_pos#linebox2c{
    bottom: -42px;
    left: -100px;
  }
  .line_pos#linebox2d{
    bottom: -228px;
    left: 132px;
  }
  .line_pos#linebox2e{
    display: none;
    bottom: -100px;
    left: 600px;
  }
  .line_pos#linebox2f{
    display: none;
    bottom: -100px;
    left: 900px;
  }
  .line_pos#linebox2g{
    bottom: -141px;
    left: 400px;
  }

  /* SPARKY(3) */
  .line_pos#linebox3a{
    top: 0;
    left: 25px;
  }
  .line_pos#linebox3b{
    bottom: -20px;
    left: 25px;
  }
  .line_pos#linebox3c{
    bottom: -300px;
    right: 25px;
  }
  .line_pos#linebox3d{
    bottom: -1000px;
    right: -23px;
  }
  .line_pos#linebox3e{
    bottom: -1470px;
    right: -23px;
  }
  .line_pos#linebox3f{
    bottom: -1575px;
    right: 123px;
  }
  .line_pos#linebox3g{
    bottom: -1470px;
    right: 300px;
  }

  .product_about_row.row3{
    z-index: 2;
  }

  /* SPARKY(4) */
  .pg_sparky .line_pos#linebox4a{
    top: -10px;
    left: 47%;
  }
 
  .line_pos#linebox1g:before{
    width: 75px;
  }
  .line_pos#linebox3e:before{
    width: 75px;
    margin-left: -15px;
  }
  .line_pos#linebox5c:before{
    width: 60px;
    margin-bottom: -20px;
  }
  .line_pos#linebox7c:before{
    width: 75px;
    margin-bottom: -15px;
  }
  .line_pos#linebox13d:before{
    width: 75px;
  }
  .line_pos#linebox11c:before{
    width: 75px;
  }
}
@media (min-width:1024px){
  

  /* SPARKY(1) */
  .line_pos#linebox1a{
    bottom: -20px;
    left: 20px;
  }
  .line_pos#linebox1b{
    bottom: 250px;
    right: -30px;
  }
  .line_pos#linebox1c{
    bottom: -20px;
    right: 100px;
  }
  .line_pos#linebox1d{
    bottom: -50px;
    right: 100px;
  }
  .line_pos#linebox1d{

  }
  .line_pos#linebox1e{
    bottom: 200px;
    right: -500px;
    bottom: -80px;
    right: 500px;
  }
  .line_pos#linebox1f{
    bottom: -130px;
    right: 700px;
  }
  .line_pos#linebox1g{
    bottom: -180px;
    right: 940px;
  }
  .line_pos#linebox1h{

  }

  /* SPARKY(2) */
  .line_pos#linebox2a{
    top: -20px;
    left: 30px;
  }
  .line_pos#linebox2b{
    bottom: -60px;
    left: 32px;
  }
  .line_pos#linebox2c{
    bottom: -50px;
    left: 10px;
  }
  .line_pos#linebox2d{
    bottom: -152px;
    left: 192px;
  }
  .line_pos#linebox2e{
    display: none;
    bottom: -100px;
    left: 600px;
  }
  .line_pos#linebox2f{
    display: none;
    bottom: -100px;
    left: 900px;
  }
  .line_pos#linebox2g{
    bottom: -70px;
    left: 700px;
  }

  /* SPARKY(3) */
  .line_pos#linebox3a{
    top: 0;
    left: 25px;
  }
  .line_pos#linebox3b{
    bottom: -20px;
    left: 13px;
  }
  .line_pos#linebox3c{
    bottom: -300px;
    right: 25px;
  }
  .line_pos#linebox3d{
    bottom: -768px;
    right: 158px;
  }
  .line_pos#linebox3e{
    bottom: -1050px;
    right: 309px;
  }
  .line_pos#linebox3f{
    bottom: -950px;
    right: 550px;
  }
  .line_pos#linebox3g{
    bottom: -1020px;
    right: 600px;
  }

  .product_about_row.row3{
    z-index: 2;
  }

  /* SPARKY(4) */
  .pg_sparky .line_pos#linebox4a{
    top: -10px;
    left: 47%;
  }
  
  .line_pos#linebox14a{
    top: -300px;
    right: 300px;
  }
  .line_pos#linebox14b{
    top: -200px;
    right: 267px;
  }
  .line_pos#linebox14c{
    top: -43px;
    right: 324px;
  }
  .line_pos#linebox14d{
    top: -155px;
    right: 692px;
  }
  .line_pos#linebox14e{
    top: -127px;
    right: 838px;
  }
  .line_pos#linebox14f{
    display: none;
  }
  .line_pos#linebox14g{
    display: none;
  }
  .line_pos#linebox14h{
    top: -30px;
    left: 45%;
  }

  .line_pos#linebox1g:before{
    width: 75px;
    margin-left: 90px;
  }
  
}

@media (min-width:1200px){
 
  
  

  /* SPARKY(1) */
  .line_pos#linebox1a{
    bottom: -20px;
    left: 20px;
  }
  .line_pos#linebox1b{
    bottom: 250px;
    right: -30px;
  }
  .line_pos#linebox1c{
    bottom: -20px;
    right: 100px;
  }
  .line_pos#linebox1d{
    bottom: -50px;
    right: 200px;
  }
  .line_pos#linebox1d{

  }
  .line_pos#linebox1e{
    bottom: 200px;
    right: -500px;
    bottom: -80px;
    right: 500px;
  }
  .line_pos#linebox1f{
    bottom: -130px;
    right: 700px;
  }
  .line_pos#linebox1g{
    bottom: -180px;
    right: 940px;
  }
  .line_pos#linebox1h{

  }

  /* SPARKY(2) */
  .line_pos#linebox2a{
    top: -20px;
    left: 70px;
  }
  .line_pos#linebox2b{
    bottom: -60px;
    left: 32px;
  }
  .line_pos#linebox2c{
    bottom: -50px;
    left: 10px;
  }
  .line_pos#linebox2d{
    bottom: -152px;
    left: 192px;
  }
  .line_pos#linebox2e{
    display: none;
    bottom: -100px;
    left: 600px;
  }
  .line_pos#linebox2f{
    display: none;
    bottom: -100px;
    left: 900px;
  }
  .line_pos#linebox2g{
    bottom: -70px;
    left: 700px;
  }

  /* SPARKY(3) */
  .line_pos#linebox3a{
    top: 0;
    left: 25px;
  }
  .line_pos#linebox3b{
    bottom: -20px;
    left: 25px;
  }
  .line_pos#linebox3c{
    bottom: -300px;
    right: 25px;
  }
  .line_pos#linebox3d{
    bottom: -768px;
    right: 158px;
  }
  .line_pos#linebox3e{
    bottom: -925px;
    right: 409px;
  }
  .line_pos#linebox3f{
    bottom: -893px;
    right: 641px;
  }
  .line_pos#linebox3g{
    bottom: -992px;
    right: 707px;
  }

  .product_about_row.row3{
    z-index: 2;
  }

  /* SPARKY(4) */
  .pg_sparky .line_pos#linebox4a{
    top: -10px;
    left: 47%;
  }
  
  .line_pos#linebox14a{
    top: -300px;
    right: 300px;
  }
  .line_pos#linebox14b{
    top: -200px;
    right: 267px;
  }
  .line_pos#linebox14c{
    top: -43px;
    right: 324px;
  }
  .line_pos#linebox14d{
    top: -155px;
    right: 692px;
  }
  .line_pos#linebox14e{
    top: -127px;
    right: 838px;
  }
  .line_pos#linebox14f{
    display: none;
  }
  .line_pos#linebox14g{
    display: none;
  }
  .line_pos#linebox14h{
    top: -30px;
    left: 45%;
  }
  
}

@media (min-width:1470px){
  
  /* SPARKY(1) */
  .line_pos#linebox1a{
    bottom: -20px;
    left: 20px;
  }
  .line_pos#linebox1b{
    bottom: 250px;
    right: -30px;
  }
  .line_pos#linebox1c{
    bottom: -20px;
    right: 100px;
  }
  .line_pos#linebox1d{
    bottom: -50px;
    right: 200px;
  }
  .line_pos#linebox1d{

  }
  .line_pos#linebox1e{
    bottom: 200px;
    right: -500px;
    bottom: -80px;
    right: 500px;
  }
  .line_pos#linebox1f{
    bottom: -130px;
    right: 700px;
  }
  .line_pos#linebox1g{
    bottom: -30px;
    right: 1250px;
  }
  .line_pos#linebox1h{

  }

  /* SPARKY(2) */
  .line_pos#linebox2a{
    top: -20px;
    left: 70px;
  }
  .line_pos#linebox2b{
    bottom: -60px;
    left: 32px;
  }
  .line_pos#linebox2c{
    bottom: -350px;
    left: 80px;
  }
  .line_pos#linebox2d{
    bottom: -195px;
    left: 500px;
  }
  .line_pos#linebox2e{
    display: none;
    bottom: -100px;
    left: 600px;
  }
  .line_pos#linebox2f{
    display: none;
    bottom: -100px;
    left: 900px;
  }
  .line_pos#linebox2g{
    bottom: -70px;
    left: 1000px;
  }

  /* SPARKY(3) */
  .line_pos#linebox3a{
    top: 0;
    left: 25px;
  }
  .line_pos#linebox3b{
    bottom: -20px;
    left: 25px;
  }
  .line_pos#linebox3c{
    bottom: -300px;
    right: 25px;
  }
  .line_pos#linebox3d{
    bottom: -768px;
    right: 158px;
  }
  .line_pos#linebox3e{
    bottom: -876px;
    right: 497px;
  }
  .line_pos#linebox3f{
    bottom: -791px;
    right: 797px;
  }
  .line_pos#linebox3g{
    bottom: -870px;
    right: 878px;
  }

  /*.product_about_row.row3{
    z-index: 2;
  }*/

  /* SPARKY(4) */
  .pg_sparky .line_pos#linebox4a{
    top: -10px;
    left: 47%;
  }
  
  

  .line_pos#linebox1g:before{
    width: 100px;
    margin-left: 50px;
  }
  
  .line_pos#linebox3e:before{
    width: 100px;
    margin-left: 0;
  }
  .line_pos#linebox5c:before{
    width: 100px;
    
  }
  .line_pos#linebox7c:before{
    width: 100px;
    margin-bottom: -15px;
  }
  .line_pos#linebox13d:before{
    width: 100px;
  }
  .line_pos#linebox11c:before{
    width: 100px;
  }
  
}
@media (min-width:1536px){
  
}
@media (min-width:1720px){
  
  /* SPARKY(1) */
  .line_pos#linebox1a{
    bottom: -20px;
    left: 20px;
  }
  .line_pos#linebox1b{
    bottom: 250px;
    right: -30px;
  }
  .line_pos#linebox1c{
    bottom: -20px;
    right: 100px;
  }
  .line_pos#linebox1d{
    bottom: -50px;
    right: 200px;
  }
  .line_pos#linebox1d{

  }
  .line_pos#linebox1e{
    bottom: 200px;
    right: -500px;
    bottom: -80px;
    right: 500px;
  }
  .line_pos#linebox1f{
    bottom: -130px;
    right: 700px;
  }
  .line_pos#linebox1g{
    bottom: -30px;
    right: 1250px;
  }
  .line_pos#linebox1h{

  }

  /* SPARKY(2) */
  .line_pos#linebox2a{
    top: -20px;
    left: 70px;
  }
  .line_pos#linebox2b{
    bottom: -60px;
    left: 32px;
  }
  .line_pos#linebox2c{
    bottom: -350px;
    left: 80px;
  }
  .line_pos#linebox2d{
    bottom: -195px;
    left: 500px;
  }
  .line_pos#linebox2e{
    display: none;
    bottom: -100px;
    left: 600px;
  }
  .line_pos#linebox2f{
    display: none;
    bottom: -100px;
    left: 900px;
  }
  .line_pos#linebox2g{
    bottom: -70px;
    left: 1000px;
  }

  /* SPARKY(3) */
  .line_pos#linebox3a{
    top: 0;
    left: 25px;
  }
  .line_pos#linebox3b{
    bottom: -20px;
    left: 25px;
  }
  .line_pos#linebox3c{
    bottom: -300px;
    right: 25px;
  }
  .line_pos#linebox3d{
    bottom: -768px;
    right: 158px;
  }
  .line_pos#linebox3e{
    bottom: -876px;
    right: 497px;
  }
  .line_pos#linebox3f{
    bottom: -791px;
    right: 797px;
  }
  .line_pos#linebox3g{
    bottom: -870px;
    right: 878px;
  }

  /*.product_about_row.row3{
    z-index: 2;
  }*/

  /* SPARKY(4) */
  .pg_sparky .line_pos#linebox4a{
    top: -10px;
    left: 47%;
  }
  
  
  .line_pos#linebox1g:before{
    width: 168px;
  }
  .line_pos#linebox3e:before{
    width: 148px;
  }
  .line_pos#linebox5c:before{
    width: 135px;
    margin-bottom: 0;
  }
  .line_pos#linebox7c:before{
    width: 138px;
    margin-bottom: -15px;
  }
  .line_pos#linebox13d:before{
    width: 128px;
  }
  .line_pos#linebox11c:before{
    width: 144px;
  }
}




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

/* ギャラリー */
.product_gallery{
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start !important;
  margin: 0 -5px;
}
.product_gallery_item{
  width: 200px;
  padding: 0 5px;
}
.product_gallery_item:nth-child(even){
  padding-top: 25px;
}
.product_gallery_item_img{
  border-radius: 15px;
  overflow: hidden;
}
.product_gallery_item_img.img_fit:before{
  padding-top: 117.08%;
}

/* 概要 */
.product_about{
  
}
.product_about_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.product_about_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.product_about_box2{
  position: relative;
  z-index: 1;
}
.product_about_img1,
.product_about_img2,
.product_about_img2_item,
.product_about_img3,
.product_about_img4{
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}

.product_about_title{
  font-family: "Noto Serif JP", serif;
  padding-top: 20px;
  margin-right: -15px;
  margin-bottom: 15px;
}
.product_about_title_txt{
  font-size: 19px;
  font-weight: 600;
  line-height: 1.9444;
}
.product_about_title_txt2{
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: -0.2em;
  margin-top: 0;
}
.product_about_title_txt.sub{
  font-size: 36px;
  font-weight: 600;
}
.product_about_txt{
  font-size: 16px;
  line-height: 1.875;
  /*line-height: 2.1875;*/
  text-align: justify;
}


/* レイアウト調整（SPARKY） */
 .product_about.sparky .product_about_box1{
   width: 80%;
 }
 .product_about.sparky .product_about_box2{
   width: 100%;
 }
 .product_about.sparky .product_about_row.row2 .product_about_box1{
   width: 70%;
 }
 .product_about.sparky .product_about_row.row2 .product_about_box2{
   width: 100%;
 }
 .product_about.sparky .product_about_row.row4 .product_about_box1{
   width: 100%;
 }
 .product_about.sparky .product_about_row.row4 .product_about_box2{
   width: 100%;
 }
.product_about.sparky .product_about_row.row1{
  /*padding-right: 205px;*/
}
.product_about.sparky .product_about_row.row2{
  margin-top: 30px;
  /*padding-left: 270px;*/
}
.product_about.sparky .product_about_row.row3{
  margin-top: 30px;
  /*padding-right: 205px;*/
}
.product_about.sparky .product_about_row.row4{
  margin-top: 30px;
  /*padding-left: 100px;*/
}
.product_about.sparky .product_about_img1.img_fit:before{
  padding-top: 126.46%;
}
.product_about.sparky .product_about_img2{
  position: relative;
  z-index: 1;
}
.product_about.sparky .product_about_img2_item{
  width: 83.76%;
}
.product_about.sparky .product_about_img2_item.pos1{
  margin-left: auto;
}
.product_about.sparky .product_about_img2_item.pos2{
  margin-top: 25px;
}
.product_about.sparky .product_about_img2_item.img_fit:before{
  padding-top: 82.04%;
}
.product_about.sparky .product_about_img3.img_fit:before{
  padding-top: 107.69%;
}
.product_about.sparky .product_about_img4.img_fit:before{
  padding-top: 109.38%;
}

.product_about_side_tt{
  position: absolute;
  z-index: 1;
  top: 0;
}
.product_about_side_tt:after{
  content: "";
  background-repeat: no-repeat;
  /*background-size: contain;*/
  position: absolute;
  z-index: 1;
}


.product_about.sparky .product_about_row.row1 .product_about_side_tt{
  top: -72px;
  right: 0;
}
.product_about.sparky .product_about_row.row2 .product_about_side_tt{
  top: 120px;
  left: 0;
}
.product_about.sparky .product_about_row.row3 .product_about_side_tt{
  top: -78px;
  right: -15px;
}



@media (max-width:374px){

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

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

  .product_about_box1{
    order: 2;
  }
  .product_about_box2{
    order: 3;
  }
  .product_about_side_tt{
    position: absolute;
    width: 50px;
    order: 1;
    margin-bottom: 15px;
  }
 
  
  .product_about.sparky .product_about_row.row1 .product_about_side_tt{
    text-align: center;
  }
  .product_about.sparky .product_about_row.row1 .product_about_side_tt img{
    width: 30px;
  }
  .product_about.sparky .product_about_row.row2 .product_about_side_tt img{
    width: 30px;
  }
  .product_about.sparky .product_about_row.row3 .product_about_side_tt img{
    width: 30px;
  }
  .product_about.sparky .product_about_box2{
    
  }
  .product_about.sparky .product_about_row.row1 .product_about_box2{
    padding-right: 30px;
    padding-bottom: 60px;
  }
  
  .product_about.sparky .product_about_row.row2{
    margin-top: 70px;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box1{
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box2{
    width: 80%;
    width: 100%;
    padding-left: 50px;
    margin-left: auto;
  }
  
  .product_about.sparky .product_about_row.row3{
    margin-top: 70px;
  }
  .product_about.sparky .product_about_row.row3 .product_about_box1{
    
  }
  .product_about.sparky .product_about_row.row3 .product_about_box2{
    width: 100%;
    padding-right: 40px;
  }
  .product_about.sparky .product_about_row.row3 .product_about_side_tt {
    top: 24px;
    right: 0px;
    text-align: right;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box1{
    padding-right: 40px;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box2{
    margin-top: 30px;
    padding-right: 40px;
  }
  .product_about.sparky .product_about_row.row2 .product_about_side_tt{
    top: 190px;
  }
  
  .product_about.sparky .product_about_img2{
    display: flex;
    justify-content: space-between;
  }
  .product_about.sparky .product_about_img2_item{
    width: 48%;
  }
  .product_about.sparky .product_about_img2_item.pos1,
  .product_about.sparky .product_about_img2_item.pos2{
    margin: 0 ;
  }
  
}
@media (min-width:768px){
  
  /* ギャラリー */
  .product_gallery{
    margin: 0 -10px;
  }
  .product_gallery_item{
    width: 300px;
    padding: 0 10px;
  }
  .product_gallery_item:nth-child(even){
    padding-top: 35px;
  }
  .product_gallery_item_img{
    border-radius: 30px;
  }
  
  /* 概要 */
  .product_about{

  }
  .product_about_title{
    padding-top: 20px;
    margin-right: -15px;
    margin-bottom: 20px;
  }
  .product_about_title_txt{
    font-size: 28px;
    line-height: 1.875;
  }
  .product_about_title_txt2{
    font-size: 16px;
  }
  .product_about_title_txt.sub{
    font-size: 36px;
  }
  .product_about_txt{
    font-size: 15px;
    line-height: 2.1875;
  }

  .product_about_box1{
    order: 2;
  }
  .product_about_box2{
    order: 3;
  }
  
  /* レイアウト調整（SPARKY） 
  .product_about.sparky .product_about_box1{
    width: 100%;
  }
  .product_about.sparky .product_about_box2{
    width: 100%;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box1{
    width: 70%;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box2{
    width: 100%;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box1{
    width: 100%;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box2{
    width: 100%;
  }*/
  .product_about.sparky .product_about_box1{
  }
  .product_about.sparky .product_about_row.row1 .product_about_box1{
    width: 80%;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box1{
    width: 80%;
    margin-left: auto;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box1{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box2{
    margin-top: 50px;
  }
  /* 左右余白 */
  .product_about.sparky .product_about_row.row1{
    padding-right: 80px;
  }
  .product_about.sparky .product_about_row.row2{
    margin-top: 180px;
    padding-left: 80px;
  }
  .product_about.sparky .product_about_row.row3{
    margin-top: 285px;
    padding-right: 80px;
  }
  .product_about.sparky .product_about_row.row4{
    margin-top: 65px;
    padding-left: 80px;
  }

  /* 左右タイトル */
  .product_about.sparky .product_about_row.row1 .product_about_side_tt{
    width: 120px;
    top: -20px;
    right: 30px;
  }
  .product_about.sparky .product_about_row.row2 .product_about_side_tt{
    width: 110px;
    top: 120px;
    left: 0;
  }
  .product_about.sparky .product_about_row.row3 .product_about_side_tt{
    width: 75px;
    top: -78px;
    right: -15px;
  }
  
}
@media (min-width:1024px){

  
  
  /* 概要 */
  .product_about{

  }
  .product_about_title{
    padding-top: 20px;
    margin-right: -15px;
    margin-bottom: 20px;
  }
  .product_about_title_txt{
    font-size: 22px;
    line-height: 1.9444;
  }
  .product_about_title_txt2{
    font-size: 16px;
  }
  .product_about_title_txt.sub{
    font-size: 36px;
  }
  .product_about_txt{
    font-size: 15px;
    line-height: 2.1875;
  }
  
  /* 左右余白 */
  .product_about.sparky .product_about_row.row1{
    padding-right: 80px;
  }
  .product_about.sparky .product_about_row.row2{
    margin-top: 180px;
    padding-left: 80px;
  }
  .product_about.sparky .product_about_row.row3{
    margin-top: 285px;
    padding-right: 80px;
  }
  .product_about.sparky .product_about_row.row4{
    margin-top: 65px;
    padding-left: 80px;
  }
  
  .product_about_box1{
    order: initial;
  }
  .product_about_box2{
    order: initial;
  }
  
  /* レイアウト調整（SPARKY） */
  .product_about.sparky .product_about_box1{
    width: 49.42%;
  }
  .product_about.sparky .product_about_box2{
    width: 46.34%;
  }
  .product_about.sparky .product_about_row.row1 .product_about_box1{
    width: 49.42%;
  }
  .product_about.sparky .product_about_row.row1 .product_about_box2{
    width: 46.34%;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box1{
    width: 46.78%;
    margin-left: 0;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box2{
    width: 48.44%;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box1{
    width: 41.19%;
    margin-left: 0;
    margin-right: 0;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box2{
    width: 54.22%;
    margin-top: 0;
  }
  
  /* 左右タイトル */
  .product_about.sparky .product_about_row.row1 .product_about_side_tt{
    width: 70px;
    top: -72px;
    right: 0;
  }
  .product_about.sparky .product_about_row.row2 .product_about_side_tt{
    width: 65px;
    top: 120px;
    left: 0;
  }
  .product_about.sparky .product_about_row.row3 .product_about_side_tt{
    width: 75px;
    top: -78px;
    right: -15px;
  }

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

  /* ギャラリー */
  .product_gallery{
    margin: 0 -25px;
  }
  .product_gallery_item{
    width: 530px;
    padding: 0 25px;
  }
  .product_gallery_item:nth-child(even){
    padding-top: 35px;
  }
  .product_gallery_item_img{
    border-radius: 30px;
  }
  
  /* レイアウト調整（SPARKY） */
  .product_about.sparky .product_about_box1{
    width: 49.42%;
  }
  .product_about.sparky .product_about_box2{
    width: 43.34%;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box1{
    width: 46.78%;
  }
  .product_about.sparky .product_about_row.row2 .product_about_box2{
    width: 45.44%;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box1{
    width: 41.19%;
  }
  .product_about.sparky .product_about_row.row4 .product_about_box2{
    width: 54.22%;
  }
  
  /* 概要 */
  .product_about{

  }
  .product_about_title{
    padding-top: 48px;
    margin-right: -15px;
    margin-bottom: 54px;
  }
  .product_about_title_txt{
    font-size: 30px;
  }
  .product_about_title_txt2{
    font-size: 20px;
  }
  .product_about_title_txt.sub{
    font-size: 36px;
  }
  .product_about_txt{
    font-size: 16px;
  }

  /* 左右余白 */
  .product_about.sparky .product_about_row.row1{
    padding-right: 205px;
  }
  .product_about.sparky .product_about_row.row2{
    margin-top: 180px;
    padding-left: 270px;
  }
  .product_about.sparky .product_about_row.row3{
    margin-top: 285px;
    padding-right: 205px;
  }
  .product_about.sparky .product_about_row.row4{
    margin-top: 65px;
    padding-left: 100px;
  }
  
  /* 左右タイトル */
  .product_about.sparky .product_about_row.row1 .product_about_side_tt{
    width: 140px;
    top: -72px;
    right: 0;
  }
  .product_about.sparky .product_about_row.row2 .product_about_side_tt{
    width: 135px;
    top: 120px;
    left: 0;
  }
  .product_about.sparky .product_about_row.row3 .product_about_side_tt{
    width: 152px;
    top: -78px;
    right: -15px;
  }
}
@media (min-width:1470px){

  

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

  /* 概要 */
  .product_about{

  }
  .product_about_title{
    padding-top: 48px;
    margin-right: -15px;
    margin-bottom: 54px;
  }
  .product_about_title_txt{
    font-size: 36px;
  }
  .product_about_title_txt2{
    font-size: 20px;
  }
  .product_about_title_txt.sub{
    font-size: 36px;
  }
  .product_about_txt{
    font-size: 16px;
  }

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


}




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

/* 見出し */
.product_tabs_head{
  position: relative;
  z-index: 1;
  text-align: center;
}
.product_tabs_head .tt2_desc2{
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.666;
  margin-top: 30px;
}

/* ナビ */
.product_tabs_nav{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
* + .product_tabs_nav{
  margin-top: 50px;
}
.product_tabs_nav_item{
  
  background: #d8e2e5;
  border-radius: 10px 10px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  line-height: 1.666;
  text-align: center;
  cursor: pointer;
  padding: 9px 10px 10px;
  transition: 0.2s all;
  position: relative;
  z-index: 1;
}
.product_tabs_nav_item p{
  letter-spacing: 0;
}

.product_tabs_nav_item.on,
.product_tabs_nav_item:hover{
  padding: 19px 10px 20px;
}
.product_tabs_nav_item.on{
  background: #e8e6d2;
}

.product_tabs_nav_item:after{
  content: "";
  width: 50px;
  aspect-ratio: 99 / 56;
  background-image: url('/system_panel/uploads/images/tab_next.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  transition: 0.2s all;
  opacity: 0;
}

.product_tabs_nav:hover .product_tabs_nav_item:after{
  opacity: 0;
}
.product_tabs_nav:hover .product_tabs_nav_item.on:not(:hover):after{
  opacity: 0;
}
.product_tabs_nav_item:not(:first-child):hover:after{
  opacity: 1;
}

/* 内容 */
.product_tabs_contents{
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
.product_tabs_contents:before{
  content: "";
  width: 100vw;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #e8e6d2;
  
}
.product_tabs_contents_item{
  position: relative;
  z-index: 2;
}
.product_tabs_contents_item:not(:first-child){
  display: none;
}
.gjs-dashed .product_tabs_contents_item{
  display: block !important;
}
.gjs-dashed .product_tabs_contents_item:nth-child(n+2){
  margin-top: 20px;
}
.gjs-dashed .gjs-show{
  display: block !important;
}

.product_tabs_contents_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product_tabs_contents_item_box1{
  width: 100%;
  /*padding-top: 80px;*/
}
.product_tabs_contents_item_box2{
  width: 100%;
  margin-top: 30px;
}
.product_tabs_contents_item_head{
  
}
.product_tabs_contents_item_head_label{
  display: flex;
  margin-bottom: 15px;
}
.product_tabs_contents_item_head_label p{
  background: #b7ae85;
  border-radius: 16.5px;
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  color: #FFF;
  padding: 4px 25px 5px;
}
.product_tabs_contents_item_head_title1{
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  border-bottom: 1px solid #a6937c;
  padding-bottom: 10px;
}
.product_tabs_contents_item_head_title2{
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-top: 15px;
}
.product_tabs_contents_item_txt{
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  line-height: 1.875;
  text-align: justify;
  margin-top: 20px;
}
.product_tabs_contents_item_btn{
  margin-top: 10px;
}
.product_tabs_contents_item_btn_a{
  display: block;
  transition: 0.2s all;
}
.product_tabs_contents_item_btn_a:hover{
  /*transform: scale(1.05);*/
  animation: scaleBounce 0.8s infinite ease-in-out;
}
.product_tabs_contents_item_img{
  border-radius: 15px;
  overflow: hidden;
}
.product_tabs_contents_item_img.img_fit:before{
  padding-top: 101.17%;
}



/* ポップアップ */
.product_tabs_popup{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 15px;
  width: 300px;
  margin: 0 auto;
  background: #e8e6d2;
}
.product_tabs_popup_box1{
  width: 100%;
}
.product_tabs_popup_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.product_tabs_popup_img{
  border-radius: 15px;
  border-radius: 30px;
  overflow: hidden;
}
.product_tabs_popup_img.img_fit:before{
  padding-top: 102.02%;
}
.product_tabs_popup_txt{
  font-size: 15px;
  font-weight: 500;
  line-height: 2.625;
  line-height: 1.875;
  text-align: justify;
  height: 300px;
  padding-right: 0;
  overflow-y: scroll;
}

@media (max-width:374px){

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

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

  .product_tabs_nav_item{
    width: 100%;
    width: 90%;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }
  .product_tabs_nav_item:nth-child(n+2){
    margin-top: 4px;
  }
  
  .product_tabs_nav_item:after{
    top: 0;
    left: 103%;
    transform-origin: top center;
    transform: rotate(90deg);
  }
  
  .product_tabs_contents{
    margin-top: 15px;
  }
}
@media (min-width:768px){


  /* 見出し */
  .product_tabs_head{
  }
  .product_tabs_head .tt2_desc2{
    margin-top: 40px;
  }

  /* ナビ */
  .product_tabs_nav{
    flex-wrap: nowrap;
    height: 90px;
    margin-left: -2px;
    margin-right: -2px;
  }
  * + .product_tabs_nav{
    margin-top: 50px;
  }
  .product_tabs_nav_item{
    flex-grow: 1;
    border-radius: 15px 15px 0 0;
    font-size: 14px;
    padding: 15px 10px;
    margin-left: 2px;
    margin-right: 2px;
  }
  .product_tabs_nav_item.on,
  .product_tabs_nav_item:hover{
    padding: 20px 10px;
  }
  
  .product_tabs_nav_item:after{
    width: 99px;
    bottom: 100%;
    left: 0;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }


  /* 内容 */
  .product_tabs_contents{
    padding: 50px 0;
  }
  .product_tabs_contents_item{
  }
  .product_tabs_contents_item_inner{
  }
  .product_tabs_contents_item_box1{
    width: 49.10%;
    padding-top: 0;
  }
  .product_tabs_contents_item_box2{
    width: 44.73%;
  }
  .product_tabs_contents_item_head{

  }
  .product_tabs_contents_item_head_label{
    margin-bottom: 15px;
  }
  .product_tabs_contents_item_head_label p{
    border-radius: 16.5px;
    font-size: 16px;
    padding: 4px 32px 5px;
  }
  .product_tabs_contents_item_head_title1{
    font-size: 22px;
    padding-bottom: 10px;
  }
  .product_tabs_contents_item_head_title2{
    font-size: 25px;
    margin-top: 20px;
  }
  .product_tabs_contents_item_txt{
    font-size: 16px;
    margin-top: 30px;
  }
  .product_tabs_contents_item_btn{
    margin-top: 10px;
  }
  .product_tabs_contents_item_img{
    border-radius: 30px;
  }


  /* ポップアップ */
  .product_tabs_popup{
    padding: 50px 30px;
    width: 700px;
  }
  .product_tabs_popup_box1{
    width: 48.77%;
    width: 48%;
  }
  .product_tabs_popup_box2{
    /*width: 39.75%;*/
    width: 48%;
    margin-top: 0;
  }
  .product_tabs_popup_img{
    border-radius: 30px;
  }
  .product_tabs_popup_txt{
    font-size: 16px;
    /*line-height: 2.625;*/
    padding-right: 20px;
    position: absolute;
    height: auto;
    z-index: 1;
    inset: 0;
  }
  
}
@media (min-width:1024px){

  /* ナビ */
  .product_tabs_nav{
    height: 95px;
  }
  .product_tabs_nav_item{
    font-size: 16px;
  }
  
  /* 内容 */
  .product_tabs_contents{
    /*padding: 75px 0;*/
  }
  .product_tabs_contents_item{
  }
  .product_tabs_contents_item_inner{
  }
  .product_tabs_contents_item_box1{
    /*width: 49.10%;*/
    /*padding-top: 80px;*/
  }
  .product_tabs_contents_item_box2{
    /*width: 44.73%;*/
  }
  .product_tabs_contents_item_head{

  }
  .product_tabs_contents_item_head_label{
    /*margin-bottom: 15px;*/
  }
  .product_tabs_contents_item_head_label p{
    /*font-size: 16px;*/
  }
  .product_tabs_contents_item_head_title1{
    /*font-size: 36px;*/
    /*padding-bottom: 22px;*/
  }
  .product_tabs_contents_item_head_title2{
    /*font-size: 38px;*/
    /*margin-top: 33px;*/
  }
  .product_tabs_contents_item_txt{
    /*font-size: 21px;*/
    /*margin-top: 90px;*/
  }
  .product_tabs_contents_item_btn{
    /*margin-top: 20px;*/
  }
  
  /* ポップアップ */
  .product_tabs_popup{
    padding: 50px 30px;
    width: 900px;
  }
  
}
@media (min-width:1200px){

  /* 見出し */
  .product_tabs_head{
  }
  .product_tabs_head .tt2_desc2{
    margin-top: 75px;
  }
  
  /* ナビ */
  .product_tabs_nav{
    height: 125px;
  }
  .product_tabs_nav_item{
    font-size: 18px;
    padding: 19px 10px 20px;
  }
  .product_tabs_nav_item.on,
  .product_tabs_nav_item:hover{
    padding: 30px 10px;
  }
  
  /* 内容 */
  .product_tabs_contents{
    padding: 75px 0;
  }
  .product_tabs_contents_item{
  }
  .product_tabs_contents_item_inner{
  }
  .product_tabs_contents_item_box1{
    width: 49.10%;
    padding-top: 80px;
  }
  .product_tabs_contents_item_box2{
    width: 44.73%;
  }
  .product_tabs_contents_item_head{

  }
  .product_tabs_contents_item_head_label{
    margin-bottom: 15px;
  }
  .product_tabs_contents_item_head_label p{
    font-size: 16px;
  }
  .product_tabs_contents_item_head_title1{
    font-size: 36px;
    padding-bottom: 22px;
  }
  .product_tabs_contents_item_head_title2{
    font-size: 38px;
    margin-top: 33px;
  }
  .product_tabs_contents_item_txt{
    font-size: 21px;
    margin-top: 90px;
  }
  .product_tabs_contents_item_btn{
    margin-top: 20px;
  }

  /* ポップアップ */
  .product_tabs_popup{
    padding: 70px 40px;
    width: 1120px;
  }
  .product_tabs_popup_box1{
    width: 48.77%;
  }
  .product_tabs_popup_box2{
    /*width: 39.75%;*/
    width: 42%;
  }
  .product_tabs_popup_txt{
    font-size: 16px;
    line-height: 2.625;
  }

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

  /* ナビ */
  .product_tabs_nav{
    height: 135px;
  }
  .product_tabs_nav_item{
    font-size: 21px;
  }
  
  /* ポップアップ */
  .product_tabs_popup{
    padding: 70px 40px;
    width: 1320px;
  }
  .product_tabs_popup_box1{
    width: 48.77%;
  }
  .product_tabs_popup_box2{
    /*width: 39.75%;*/
    width: 42%;
  }

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

  /* ポップアップ */
  .product_tabs_popup{
    padding: 100px 50px;
    width: 1320px;
  }
  .product_tabs_popup_box1{
    width: 48.77%;
  }
  .product_tabs_popup_box2{
    /*width: 39.75%;*/
    width: 42%;
  }

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

  

}

/*******************************
*　バリエーション
********************************/

/* 見出し */
.product_variations_head{
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.product_variations_head_txt1{
  
}
.product_variations_head_txt2{
  font-size: 14px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  margin-top: 20px;
}

/* スライダー（メイン） */
.product_variations_slides{
  
}
.product_variations_slides_img{
  border-radius: 20px;
  overflow: hidden;
  cursor: grab;
}
.product_variations_slides_img.img_fit:before{
  padding-top: 67.56%;
}

.product_gallery_prev,
.product_gallery_next{
  transition: 0.2s all;
}
.product_gallery_prev.swiper-button-disabled{
  opacity: 0;
}
.product_gallery_next.swiper-button-disabled{
  opacity: 0;
}

.gjs-dashed .product_variations_slides{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gjs-dashed .product_variations_slides_img{
  margin: 10px 10px;
  width: calc(25% - 20px);
}

/* スライダー（サムネイル） */
.product_variations_thumbs{
  margin-top: 20px;
}
.product_variations_thumbs_img{
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.product_variations_thumbs_img.img_fit:before{
  padding-top: 78.04%;
}
.product_variations_thumbs .swiper-wrapper{
  /*justify-content: center;*/
}


/* swiper調整（左右縮小） */
.product_variations_slides .swiper-slide{
  width: 260px;
  transition: transform 0.3s ease;
  transform: scale(0.81);
  /*transform: none !important;*/
}
.product_variations_slides .swiper-slide-prev{
  transform: scale(0.81) translateX(0);
}
.product_variations_slides .swiper-slide-next{
  transform: scale(0.81) translateX(0);
}
.product_variations_slides .swiper-slide-active{
  transform: scale(1);
}



@media (max-width:374px){

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

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

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

  /* 見出し */
  .product_variations_head{
    text-align: center;
    margin-bottom: 20px;
  }
  .product_variations_head_txt1{

  }
  .product_variations_head_txt2{
    font-size: 26px;
    margin-top: 40px;
  }

  /* スライダー（メイン） */
  .product_variations_slides{

  }
  .product_variations_slides_img{
    border-radius: 30px;
  }
  
  /* スライダー（サムネイル） */
  .product_variations_thumbs{
    margin-top: 30px;
  }

  /* swiper調整（左右縮小） */
  .product_variations_slides .swiper-slide{
    width: 550px;
  }
  .product_variations_slides .swiper-slide-prev{
    transform: scale(0.81) translateX(5%);
  }
  .product_variations_slides .swiper-slide-next{
    transform: scale(0.81) translateX(-5%);
  }

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

  /* 見出し */
  .product_variations_head{
    margin-bottom: 20px;
  }
  .product_variations_head_txt1{

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

}

@media (min-width:1200px){

  /* スライダー（メイン） */
  .product_variations_slides{

  }
  
  /* スライダー（サムネイル） */
  .product_variations_thumbs{
    /*margin-top: 60px;*/
  }

  /* swiper調整（左右縮小） */
  .product_variations_slides .swiper-slide{
    width: 750px;
  }

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

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


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

  /* スライダー（メイン） */
  .product_variations_slides{

  }
  
  /* スライダー（サムネイル） */
  .product_variations_thumbs{
    margin-top: 60px;
  }

  /* swiper調整（左右縮小） */
  .product_variations_slides .swiper-slide{
    width: 1110px;
  }

}

/*******************************
*　仕様
********************************/

/* セクション */
.product_spec_sec{
  
}
.product_spec_sec + .product_spec_sec{
  margin-top: 50px;
}


/* テーブル */
.product_tbl{
  
}
* + .product_tbl.company_tbl{
  margin-top: 35px;
}
.product_tbl .table_rows_th{
  
}
.product_tbl .table_rows_td{
  
}

/* 仕様説明 */
.product_spec_desc{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
* + .product_spec_desc{
  margin-top: 30px;
}
.product_spec_desc_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.product_spec_desc_box2{
  width: 100%;
  order: 1;
}
.product_spec_desc_txt{
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1.75;
  text-align: justify;
  
}
.product_spec_desc_img{
  
}
.product_spec_desc_img.img_fit:before{
  padding-top: 69.82%;
}

/* ルール */
.product_spec_rules{
  
}
* + .product_spec_rules{
  margin-top: 30px;
}
.product_spec_rules_row{
  background: #FFF;
  border-radius: 10px;
  padding: 20px 20px;
}
.product_spec_rules_row + .product_spec_rules_row{
  margin-top: 10px;
}
.product_spec_rules_title{
  font-size: 18px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
.product_spec_rules_title.num{
  text-indent: -2.1em;
  padding-left: 2.1em;
}
.product_spec_rules_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
* + .product_spec_rules_txt{
  margin-top: 10px;
}
@media (max-width:374px){

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

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

  .product_tbl.table_rows,
  .product_tbl.table_rows .table_rows_tr,
  .product_tbl.table_rows .table_rows_th,
  .product_tbl.table_rows .table_rows_td{
    display: block;
    width: 100%;
  }
  .product_tbl.table_rows{
    border: 1px solid #a6937c;
  }
  .product_tbl.table_rows .table_rows_tr{
    border-bottom: 1px solid #a6937c;
  }
  .product_tbl.table_rows .table_rows_tr:last-child{
    border-bottom: 0;
  }
  .product_tbl .table_rows_th,
  .product_tbl .table_rows_td{
    border: 0;
  }
  .product_tbl .table_rows_th{
    
  }
  .product_tbl .table_rows_td{
    
  }
}
@media (min-width:768px){

  /* セクション */
  .product_spec_sec{

  }
  .product_spec_sec + .product_spec_sec{
    margin-top: 70px;
  }

  /* 仕様説明 */
  .product_spec_desc{
  }
  * + .product_spec_desc{
    margin-top: 50px;
  }
  .product_spec_desc_box1{
    width: 51.13%;
    order: 1;
    margin-top: 0;
  }
  .product_spec_desc_box2{
    width: 43.93%;
    order: 2;
  }
  .product_spec_desc_txt{
    /*font-size: 20px;*/
  }

  /* ルール */
  .product_spec_rules{

  }
  * + .product_spec_rules{
    margin-top: 50px;
  }
  .product_spec_rules_row{
    padding: 20px 20px;
  }
  .product_spec_rules_row + .product_spec_rules_row{
    margin-top: 10px;
  }
  .product_spec_rules_title{
    font-size: 18px;
    
  }
  .product_spec_rules_title.num{

  }
  .product_spec_rules_txt{
    font-size: 16px;
    line-height: 2.1875;
  }
  * + .product_spec_rules_txt{
    margin-top: 10px;
  }
}
@media (min-width:1024px){

  /* ルール */
  .product_spec_rules{

  }
  .product_spec_rules_row{
    padding: 20px 20px;
  }
  .product_spec_rules_title{
    font-size: 21px;
  }
  .product_spec_rules_title.num{

  }
  .product_spec_rules_txt{
    
  }
  * + .product_spec_rules_txt{
    margin-top: 20px;
  }

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

  /* セクション */
  .product_spec_sec{

  }
  .product_spec_sec + .product_spec_sec{
    margin-top: 100px;
  }

  /* テーブル */
  .product_tbl{

  }
  .product_tbl .table_rows_th,
  .product_tbl .table_rows_td{
    font-size: 17px;
  }
  .product_tbl .table_rows_th{

  }
  .product_tbl .table_rows_td{

  }

  /* 仕様説明 */
  .product_spec_desc{
  }
  * + .product_spec_desc{
    margin-top: 80px;
  }
  .product_spec_desc_txt{
    font-size: 20px;
  }
  
  /* ルール */
  .product_spec_rules{

  }
  .product_spec_rules_row{
    padding: 30px 30px;
  }
  
}
@media (min-width:1470px){


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

  /* ルール */
  .product_spec_rules{

  }
  .product_spec_rules_row{
    padding: 35px 105px;
  }

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


}


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

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

/* 概要 */
.company_tbl{
  
}
* + .company_tbl{
  margin-top: 50px;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  border-color: #a6937c;
}
.company_tbl .table_rows_th{
  width: 100px;
  background: #f2eae0;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{
}
* + .company_map{
  margin-top: 30px;
}
.company_map iframe{
  width: 100%;
  height: 250px;
  border: 0;
}

/* ギャラリー */
.company_gallery{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
* + .company_gallery{
  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: 80%;
}


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


  /* 概要 */
  .company_tbl{

  }
  * + .company_tbl{
    margin-top: 50px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 19px 15px 20px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
    padding-left: 20px;
  }

  /* マップ */
  .company_map{
  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 380px;
  }

  /* ギャラリー */
  .company_gallery{
    margin: 0 -10px;
  }
  * + .company_gallery{
    margin-top: 50px;
  }
  .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){

  /* 概要 */
  .company_tbl{

  }
  * + .company_tbl{
    margin-top: 75px;
  }
  .company_tbl .table_rows_th{
    width: 285px;
  }
  .company_tbl .table_rows_td{
    
  }

  /* マップ */
  .company_map{
  }
  * + .company_map{
    margin-top: 115px;
  }
  .company_map iframe{
    height: 380px;
  }

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

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

  

}


/*******************************
*　
********************************/
.pg_shoplist1{

}
.pg_shoplist1 .section.sec1{
  
}
.pg_shoplist1 .section.sec2{
  background: #ebe1da;
}
.pg_shoplist1 .section.sec3{
  
}
.pg_shoplist1 .section.sec4{
  
}
.pg_shoplist1 .section.sec5{
  
}

/* 注意 */
.shoplist_notice{
  background: #FFF;
  border-radius: 10px;
  padding: 15px 15px;
}
* + .shoplist_notice{
  margin-top: 30px;
}
.shoplist_notice_title{
  font-size: 18px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
.shoplist_notice_txt{
  font-size: 16px;
  line-height: 2.1875;
  text-align: justify;
}

/* 公式ショップ */
.shoplist_official{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
* + .shoplist_official{
  margin-top: 50px;
}
.shoplist_official_box1{
  width: 100%;
  
}
.shoplist_official_box2{
  width: 100%;
  margin-top: 20px;
}
.shoplist_official_img{
  
}
.shoplist_official_img.img_fit:before{
  padding-top: 117.64%;
}

.shoplist_map{
}
* + .shoplist_map{
  margin-top: 50px;
}
.shoplist_map iframe{
  width: 100%;
  height: 450px;
  border: 0;
}

/* 各店舗情報 */
.shopinfo_list_groups{
  
}
.shopinfo_list_groups_row{
  
}
.shopinfo_list_groups_row + .shopinfo_list_groups_row{
  margin-top: 50px;
}

.shopinfo_list_area{
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  border-bottom: 1px solid #a6937c;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.shopinfo_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.shopinfo_list_item{
  width: 100%;
  padding: 0 5px;
}
.shopinfo_list_item:nth-child(n+2){
  margin-top: 15px;
}
.shopinfo_list_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #ebe1da;
  border-radius: 10px;
  padding: 15px 15px;
  height: 100%;
}
.shopinfo_list_item_box1{
  width: 33.93%;
}
.shopinfo_list_item_box2{
  width: 100%;
}
.shopinfo_list_item_box1 + .shopinfo_list_item_box2{
  width: 62.12%;
}

.shopinfo_list_item_img{
  
}
.shopinfo_list_item_img.img_fit:before{
  padding-top: 156.95%;
}

.gjs-dashed .shopinfo_list_item_box1{
  padding: 10px;
  background: #EEE;
}

.shopinfo_head{
  border-bottom: 1px solid #a6937c;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.shopinfo_head_title{
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.47;
}
.shopinfo_head_addr{
  font-size: 13px;
  margin-top: 5px;
}
.shopinfo_txt,
.shopinfo_txt2{
  font-size: 14px;
  line-height: 1.875;
  line-height: 1.5;
  text-align: justify;
}
.shopinfo_txt2{
  line-height: 1.5625;
  margin-top: 10px;
}

/* タグ */
.shopinfo_tags{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .shopinfo_tags{
  margin-top: 10px;
}
.shopinfo_tags_item{
  width: 50%;
  padding: 0 5px;
}
.shopinfo_tags_item:nth-child(n+3){
  margin-top: 10px;
}
.shopinfo_tags_item p{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.03em;
  letter-spacing: 0.01em;
  text-align: center;
  background: #dcab89;
  color: #FFF;
  border-radius: 10px;
  padding: 5px 10px;
  
}

.shopinfo_tags.col2 .shopinfo_tags_item{
  width: 100%;
}
.shopinfo_tags.col2 .shopinfo_tags_item:nth-child(n+2){
  margin-top: 5px;
}

.shopinfo_tbl{
  
}
* + .shopinfo_tbl{
  margin-top: 20px;
}
.shopinfo_tbl .table_rows_th,
.shopinfo_tbl .table_rows_td{
  font-size: 14px;
  padding: 19px 12px;
}
.shopinfo_tbl .table_rows_th{
  width: 90px;
  background: #f2eae0;
}
.shopinfo_tbl .table_rows_td{
  background: #FFF;
  padding-left: 15px;
}

/* SNS */
.shopinfo_sns{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
* + .shopinfo_sns{
  margin-top: 20px;
}
.shopinfo_sns_item{
  font-size: 17px;
  font-weight: 600;
  margin: 0 10px 10px;
}
.shopinfo_sns_item a{
  border-bottom: 2px solid #aaa4a0;
  padding-bottom: 4px;
}
.shopinfo_sns_item a:before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  margin-right: 8px;
  margin-bottom: -2px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.shopinfo_sns_item.web a:before{
  width: 19px;
  background-image: url(/system_panel/uploads/images/desktop-solid.svg);
}
.shopinfo_sns_item.insta a:before{
  width: 18px;
  height: 20px;
  margin-bottom: -3px;
  background-image: url(/system_panel/uploads/images/instagram-brands.svg);
}
.shopinfo_sns_item.tw a:before{
  width: 18px;
  height: 20px;
  margin-bottom: -3px;
  background-image: url(/system_panel/uploads/images/x-twitter-brands.svg);
}

/* ナビ */
.shopinfo_area_nav{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 10px;
}
.shopinfo_area_nav_item{
  width: 33.333%;
  padding: 5px 5px;
  text-align: center;
}
.shopinfo_area_nav_item p{
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  background: #a6937c;
  color: #FFF;
  border: 1px solid #a6937c;
  padding: 4px 5px 5px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.shopinfo_area_nav_item p:hover{
  background: #FFF;
  color: #a6937c;
}
.shopinfo_area_nav_item p:after{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-weight: 400;
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.shopinfo_area_nav_item p a{
  display: block;
}

.shopinfo_area_regions{
  margin-bottom: 30px;
}
.shopinfo_area_regions_row{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  background: #FFF;
  padding: 10px 10px;
}
.shopinfo_area_regions_item{
  width: 33.333%;
  padding: 5px 5px;
}
.shopinfo_area_regions_item_a{
  display: block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  background: #cfb595;
  color: #FFF;
  padding: 4px 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.shopinfo_area_regions_item_a p:after{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-weight: 400;
  font-family: "FontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.shopinfo_area_regions_item_a:hover{
  background: #a6937c;
  color: #FFF;
}

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

  /* 注意 */
  .shoplist_notice{
    padding: 20px 20px;
  }
  * + .shoplist_notice{
    margin-top: 60px;
  }
  .shoplist_notice_title{
    font-size: 21px;
    margin-bottom: 15px;
  }
  .shoplist_notice_txt{
    font-size: 16px;
    line-height: 2.1875;
  }
  
  /* 公式ショップ */
  .shoplist_official{
    
  }
  * + .shoplist_official{
    margin-top: 80px;
  }
  .shoplist_official_box1{
    /*width: 44.73%;*/
    width: 45%;
    padding-top: 10px;
  }
  .shoplist_official_box2{
    /*width: 44.73%;*/
    width: 52%;
    margin-top: 0;
  }
  
  .shoplist_map{
  }
  * + .shoplist_map{
    margin-top: 80px;
  }
  .shoplist_map iframe{
    height: 450px;
  }


  /* 各店舗情報 */
  .shopinfo_list_area{
    font-size: 38px;
    padding-bottom: 15px;
    margin-bottom: 32px;
  }
  .shopinfo_list{
    margin-left: -5px;
    margin-right: -5px;
  }
  .shopinfo_list_item{
    width: 100%;
    padding: 0 5px;
  }
  .shopinfo_list_item:nth-child(n+2){
    margin-top: 30px;
  }
  .shopinfo_list_item_inner{
    
  }
  .shopinfo_list_item_box1{
    width: 33.93%;
  }
  .shopinfo_list_item_box2{
    width: 100%;
  }
  .shopinfo_list_item_box1 + .shopinfo_list_item_box2{
    width: 62.12%;
  }

  .shopinfo_head{
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  .shopinfo_head_title{
    font-size: 26px;
  }
  .shopinfo_head_addr{
    font-size: 15px;
    margin-top: 5px;
  }
  .shopinfo_txt{
    font-size: 16px;
    /*line-height: 2.5;*/
  }
  .shopinfo_txt2{
    font-size: 16px;
  }
  .shopinfo_tags{
    /*margin-left: -10px;*/
    /*margin-right: -10px;*/
  }
  * + .shopinfo_tags{
    margin-top: 20px;
    /*margin-top: 36px;*/
  }
  .shopinfo_tags_item{
    width: 33.333%;
    /*padding: 0 10px;*/
  }
  .shopinfo_tags_item p{
    min-height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }
  
  * + .shopinfo_tags.slim{
    margin-top: 25px;
  }
  .shopinfo_tags.slim .shopinfo_tags_item{
    
  }
  .shopinfo_tags.slim .shopinfo_tags_item p{
    min-height: 36px;
    padding: 0 5px 2px;
    border-radius: 5px;
  }

  .shopinfo_tags.col2{
    
  }
  .shopinfo_tags.col2 .shopinfo_tags_item{
    width: 50%;
  }
  .shopinfo_tags.col2 .shopinfo_tags_item:nth-child(n+2){
    margin-top: 0;
  }
  .shopinfo_tags.col2 .shopinfo_tags_item:nth-child(n+3){
    margin-top: 10px;
  }
  .shopinfo_tags.col3{
    
  }
  .shopinfo_tags.col3 .shopinfo_tags_item{
    width: 50%;
  }
  .shopinfo_tags.col3 .shopinfo_tags_item:nth-child(n+2){
    margin-top: 0;
  }
  .shopinfo_tags.col3 .shopinfo_tags_item:nth-child(n+3){
    margin-top: 10px;
  }
  
  
  .shopinfo_tbl{

  }
  * + .shopinfo_tbl{
    margin-top: 40px;
  }
  .shopinfo_tbl .table_rows_th,
  .shopinfo_tbl .table_rows_td{
    font-size: 17px;
    padding: 19px 12px;
  }
  .shopinfo_tbl .table_rows_th{
    width: 125px;
  }
  .shopinfo_tbl .table_rows_td{
    padding-left: 35px;
  }
  

  /* ナビ */
  .shopinfo_area_nav{
    margin: 0 -10px 30px;
  }
  .shopinfo_area_nav_item{
    width: 25%;
    padding: 5px 10px;
  }
  .shopinfo_area_nav_item p:after{
    right: 10px;
  }
  
  .shopinfo_area_regions{
    margin-bottom: 30px;
  }
  
  .shopinfo_area_regions_item{
    width: 25%;
    padding: 5px 5px;
  }
  .shopinfo_area_regions_item_a p:after{
    right: 10px;
  }
}
@media (min-width:1024px){

  /* 公式ショップ */
  .shoplist_official{
    
  }
  .shoplist_official_box1{
    /*width: 44.73%;*/
    width: 45%;

  }
  .shoplist_official_box2{
    width: 50%;
  }

  
  /* 各店舗情報 */
  .shopinfo_list_area{
    font-size: 38px;
    padding-bottom: 15px;
    margin-bottom: 32px;
  }
  .shopinfo_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  .shopinfo_list_item{
    width: 50%;
    padding: 0 15px;
  }
  .shopinfo_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .shopinfo_list_item:nth-child(n+3){
    margin-top: 30px;
  }
  
  .shopinfo_head{
  }
  .shopinfo_head_title{
    font-size: 34px;
  }
  .shopinfo_head_addr{
  }
  .shopinfo_txt{
  }
  
  .shopinfo_list .shopinfo_head_title{
    font-size: 30px;
  }
  
}
@media (min-width:1200px){

  /* 注意 */
  .shoplist_notice{
    padding: 35px 100px;
  }
  * + .shoplist_notice{
    margin-top: 90px;
  }
  .shoplist_notice_title{
    font-size: 21px;
    margin-bottom: 20px;
  }
  .shoplist_notice_txt{
  }

  /* 公式ショップ */
  .shoplist_official{
    
  }
  .shoplist_official_box1{
    width: 44.73%;
  }
  .shoplist_official_box2{
    width: 44.73%;
  }
  
  /* 各店舗情報 */
  .shopinfo_list_area{
    font-size: 38px;
  }
  
  .shopinfo_head{
  }
  .shopinfo_head_title{
    font-size: 34px;
  }
  .shopinfo_head_addr{
  }
  .shopinfo_txt{
    font-size: 16px;
    line-height: 2.5;
  }
  
  .shopinfo_tags{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .shopinfo_tags{
    margin-top: 36px;
  }
  .shopinfo_tags_item{
    padding: 0 10px;
  }
  .shopinfo_tags_item p{
    min-height: 50px;
    font-size: 16px;
  }
  
  .shopinfo_tags.col2{
    
  }
  .shopinfo_tags.col2 .shopinfo_tags_item{
    width: 50%;
  }
  .shopinfo_tags.col2 .shopinfo_tags_item:nth-child(n+2){
    margin-top: 0;
  }
  .shopinfo_tags.col2 .shopinfo_tags_item:nth-child(n+3){
    margin-top: 10px;
  }
  .shopinfo_tags.col3{
    
  }
  .shopinfo_tags.col3 .shopinfo_tags_item{
    width: 33.333%;
  }
  .shopinfo_tags.col3 .shopinfo_tags_item:nth-child(n+2){
    margin-top: 0;
  }
  .shopinfo_tags.col3 .shopinfo_tags_item:nth-child(n+4){
    margin-top: 10px;
  }
  
  .shopinfo_list .shopinfo_txt{
    line-height: 1.7647;
  }
  
  /* ナビ */
  .shopinfo_area_nav{
    margin: 0 -10px 30px;
  }
  .shopinfo_area_nav_item{
    width: 14.28%;
    padding: 5px 10px;
  }
  
  .shopinfo_area_regions_item{
    width: 16.666%;
  }
}

@media (min-width:1536px){
  
  .shopinfo_list_item_inner{
    padding: 50px 45px;
  }
  
}




/*******************************
*　
********************************/
.pg_zaiko{

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

.pg_zaiko + .footer{
  margin-top: 0;
}

/* 在庫リスト */
.stock_list{
  
}
.stock_list + .stock_list{
  margin-top: 50px;
}
.stock_list_head{
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 2px solid;
}
.stock_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px
}
.stock_list .webgene-item{
  width: 100%;
  padding: 0 5px;
  margin-bottom: 20px;
  
}
.stock_list .webgene-item .inner{
  display: flex;
  justify-content: space-between;
}
.stock_list .webgene-item .inner .box1{
  width: 120px;
}
.stock_list .webgene-item .inner .box2{
  width: calc(100% - 120px - 10px);
}
.stock_list .webgene-item .img{
  
}
.stock_list .webgene-item .img{
  background: #CCC;
  background-image: url('/system_panel/uploads/images/comingsoon.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.stock_list .webgene-item .img.img_fit:before{
  padding-top: 100%;
}
.stock_list .webgene-item .title{
  font-size: 15px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 15px;
}
.stock_list .webgene-item .zaiko{
  display: flex;
  
  
}
.stock_list .webgene-item .zaiko_txt{
  background: #2196f3;
  color: #FFF;
  font-size: 12px;
  padding: 3px 8px 5px;
}
.stock_list .webgene-item .zaiko_txt.red{
  background: #e91e63;
  color: #FFF;
}
.stock_list .webgene-item .zaiko_txt.blue{
  background: #2196f3;
  color: #FFF;
}
.stock_list .webgene-item .txt{
  font-size: 14px;
  line-height: 1.5;
  margin-top: 15px;
}

/* カテゴリ */
.shopinfo_area_nav.zaiko{
  
}
.shopinfo_area_nav.zaiko .shopinfo_area_nav_item{
  width: 100%;
}
/* カテゴリ */
.shopinfo_area_nav.naire{
  
}
.shopinfo_area_nav.naire .shopinfo_area_nav_item{
  width: 50%;
}

/* 名入れサンプル */
.naire_gallery{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.naire_gallery_img{
  width: 33.333%;
  padding: 5px 5px;
}
.naire_gallery_img a{
  display: block;
}

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


  /* 在庫リスト */
  .stock_list{

  }
  .stock_list + .stock_list{
    margin-top: 50px;
  }
  .stock_list_head{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .stock_list .webgene-blog{
    margin: 0 -10px
  }
  .stock_list .webgene-item{
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .stock_list .webgene-item .inner .box1{
    width: 150px;
  }
  .stock_list .webgene-item .inner .box2{
    width: calc(100% - 150px - 10px);
  }
  .stock_list .webgene-item .img{

  }
  .stock_list .webgene-item .title{
    font-size: 16px;
    margin-bottom: 15px;
  }
  .stock_list .webgene-item .zaiko{
    
  }
  .stock_list .webgene-item .zaiko_txt{
    font-size: 12px;
    padding: 3px 8px 5px;
  }
  .stock_list .webgene-item .txt{
    font-size: 14px;
    line-height: 1.5;
    margin-top: 15px;
  }

  /* カテゴリ */
  .shopinfo_area_nav.zaiko{

  }
  .shopinfo_area_nav.zaiko .shopinfo_area_nav_item{
    width: 50%;
  }
  /* カテゴリ */
  .shopinfo_area_nav.naire{

  }
  .shopinfo_area_nav.naire .shopinfo_area_nav_item{
    width: 33.333%;
  }
  

  /* 名入れサンプル */
  .naire_gallery{
    margin-left: -5px;
    margin-right: -5px;
  }
  .naire_gallery_img{
    width: 33.333%;
    padding: 5px 5px;
  }
  
}
@media (min-width:1024px){

  /* カテゴリ */
  .shopinfo_area_nav.zaiko{

  }
  .shopinfo_area_nav.zaiko .shopinfo_area_nav_item{
    width: 33.333%;
  }
  
  
  /* 名入れサンプル */
  .naire_gallery{
    margin-left: -10px;
    margin-right: -10px;
  }
  .naire_gallery_img{
    width: 25%;
    padding: 10px 10px;
  }
  

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

  /* 在庫リスト */
  .stock_list{

  }
  .stock_list + .stock_list{
    margin-top: 50px;
  }
  .stock_list_head{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .stock_list .webgene-blog{
    margin: 0 -10px
  }
  .stock_list .webgene-item{
    width: 33.333%;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  /* カテゴリ */
  .shopinfo_area_nav.naire{

  }
  .shopinfo_area_nav.naire .shopinfo_area_nav_item{
    width: 25%;
  }
  
}



@keyframes scaleBounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

