@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Shippori+Mincho+B1:wght@400;500;600;700;800&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Oswald",  'Noto Sans JP', sans-serif;
  --font-en2: "Cookie",  'Shippori Mincho B1', sans-serif;
  --font-mincho: 'Shippori Mincho B1', serif;
}


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 100px;
  background-image: url('https://orange-salud.com/system_panel/uploads/images/header_bg.jpg');
  background-size: auto 100%;
  background-repeat: repeat-x;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 53px;
  border-left: 2px solid #FFF;
}
.hdr_contact a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  background: var(--main-color);
  color: #FFF;
  width: 140px;
  height: 100px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 0;
}
.hdr_contact a.email p{
  width: 100%;
  margin-top: 5px;
}
.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: 10px;
  }
  .hdr1 {
    justify-content: center;
  }

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

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

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

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

  .hdr1{
    padding: 0 ;
  }

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

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

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }
  .header.slim .hdr_contact a{
    height: 80px;
  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{
    --logo-height: 100px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  margin: 10px 10px;
  height: calc(100vh - 100px - 20px);
  max-height: 580px;
  border-radius: 20px;
  background-image: url('https://orange-salud.com/system_panel/uploads/images/mv_bg2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.mv_parts_item1{
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}
.mv_parts_item2{
  width: 23.80%;
  width: 37%;
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 49%;
}
.mv_parts_item3{
  width: 32.24%;
  width: 55%;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translate(2%, -15%);
}

.mv_logo{
  margin-bottom: 15px;
}
.mv_catch_txt1{
  font-size: 25px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.5;
  color: #FFF;
}



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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){
  
  
  /* MV */
  .mv{
    margin: 10px 10px;
    height: calc(100vh - 100px - 20px);
    max-height: 800px;
  }
 
  .mv_parts_item1{
    top: 49%;
    transform: translate(0, -50%);
  }
  .mv_parts_item2{
    width: 23.80%;
    bottom: 30px;
    left: 49%;
  }
  .mv_parts_item3{
    width: 32.24%;
    transform: translate(2%, -15%);
  }

  .mv_logo{
    margin-bottom: 15px;
  }
  .mv_catch_txt1{
    font-size: 38px;
  }

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


 

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

  

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


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

/* サイドバー */
.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;
  }

}



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


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

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

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

}


/* テーブル用 */
.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: #FFF;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #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{
  min-width: 315px;
  font-size: 30px;
  font-weight: 400;
  font-family: var(--font-en2);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 29px;
  background: #FFF;
  color: #181818;
  padding: 12px 20px 8px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "→";
  font-size: 26px;
  font-size: 0.8666em;
  font-family: var(--font-mincho);
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 24px;
  -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;
}

.read_more .color1{
  border-color: #60c2c9;
}
.read_more .color1:hover{
  background: #60c2c9;
  color: #FFF;
}
.read_more .color2{
  border-color: #e85298;
}
.read_more .color2:hover{
  background: #e85298;
  color: #FFF;
}
.read_more a.ja{
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  padding-top: 17px;
  padding-bottom: 19px;
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.tt2_en{
  /*font-size: 90px;*/
  font-size: 72px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  color: #f4f1f1;
}
.tt2_ja{
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  white-space: nowrap;
  margin-top: 5px;
  position: absolute;
  z-index: 1;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, 0%);
  
}
.tt2_ja:after{
  content: "";
  height: 1px;
  background: #000;
  position: absolute;
  z-index: 1;
  bottom: 3px;
  left: 0;
  right: 0;
}

.tt2.wh{
  
}
.tt2.wh .tt2_en{
  color: #f4f1f1;
}
.tt2.wh .tt2_ja{
  filter: 
    drop-shadow(0 0 1px #FFF)drop-shadow(0 0 1px #FFF)
    drop-shadow(0 0 1px #FFF)drop-shadow(0 0 1px #FFF)
    drop-shadow(0 0 1px #FFF)drop-shadow(0 0 1px #FFF)
    drop-shadow(0 0 1px #FFF)drop-shadow(0 0 1px #FFF);
}


.tt2_chara1{
}
.tt2_chara1:before{
  content: "";
  width: 60px;
  aspect-ratio: 173 / 150;
  background-image: url('https://orange-salud.com/system_panel/uploads/images/insta_chara.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  left: 100%;
  bottom: 0;
  transform: translate(8%, 22%);
}

/* 文章 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

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



@media (max-width:374px){

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

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

  .tt2_ja{
    font-size: 15px;
  }
  
}
@media (max-width:767px){

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

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

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

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

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  

  
  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 140px;
  }
  .tt2_ja{
    font-size: 22px;
    bottom: 10px;
  }
  .tt2_ja:after{
    bottom: 3px;
  }
  
  .tt2_chara1:before{
    width: 120px;
    transform: translate(8%, 22%);
  }
  
  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{
    
  }


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

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


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


  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 40px;
  }
  .tt2_en{
    font-size: 180px;
  }
  .tt2_ja{
    font-size: 26px;
    bottom: 22px;
  }
  .tt2_ja:after{
    bottom: 3px;
  }
  
  .tt2_chara1:before{
    width: 120px;
    transform: translate(8%, 22%);
  }
  
  .table_rows_th{
    width: 285px;
  }
  .table_rows_td{
    
  }
}


@media (min-width:1366px){

  
  
}

@media (min-width:1470px){
  /* 見出し */
  .tt2{
    margin-bottom: 55px;
  }
  .tt2_chara1:before{
    width: 173px;
    transform: translate(8%, 22%);
  }
  /* ボタン */
  .read_more{
    margin-top: 55px;
  }
  
  
}
@media (min-width:1536px){
  
}
@media (min-width:1720px){
  
}



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

}
.pg_home .section.sec1{
  padding-top: 50px;
  position: relative;
  z-index: 2;
}
.pg_home .section.sec1>.container{
  position: relative;
  z-index: 2;
}
.pg_home .section.sec2{
  margin-top: -10px;
  padding-top: 0;
  background-image: url(https://orange-salud.com/system_panel/uploads/images/home_feature_bg.jpg);
  background-size: 1000px auto;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec3{
  padding-top: 50px;
  position: relative;
  z-index: 2;
}
.pg_home .section.sec2{
  margin-top: -180px;
  padding-top: 170px;
  padding-bottom: 160px;
}
.pg_home .section.sec3{
  margin-top: -190px;
  padding-top: 100px;
}

.pg_home .section.sec4{
  padding-top: 50px;
}
.pg_home .section.sec5{
  padding-top: 30px;
  padding-bottom: 70px;
}
.pg_home .section.sec6{
  padding-top: 40px;
  padding-bottom: 70px;
}
.pg_home + .footer{
  margin-top: 0;
}

.bg_2color{
  
  background: #e85298;
  position: relative;
  z-index: 1;
}
.bg_2color:after{
  content: "";
  background: #60c2c9;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 40%;
  left: 0;
  right: 0;
  
}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 70px;
  }
  .pg_home .section.sec2{
    margin-top: -10px;
    padding-top: 0;
    background-size: 1000px auto;
  }
  .pg_home .section.sec3{
    padding-top: 70px;
  }
  .pg_home .section.sec4{
    padding-top: 70px;
  }
  .pg_home .section.sec5{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec6{
    padding-top: 40px;
    padding-bottom: 70px;
  }
  
  .pg_home .section.sec2{
    margin-top: -180px;
    padding-top: 170px;
    padding-bottom: 245px;
  }
  .pg_home .section.sec3{
    margin-top: -190px;
    padding-top: 100px;
  }

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


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

  .pg_home .section.sec1{
    padding-top: 90px;
  }
  .pg_home .section.sec2{
    background-size: 100% auto;
    margin-top: -180px;
    padding-top: 170px;
    padding-bottom: 245px;
  }
  .pg_home .section.sec3{
    margin-top: -190px;
    padding-top: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 105px;
  }
  .pg_home .section.sec5{
    padding-top: 70px;
    padding-bottom: 145px;
  }
  .pg_home .section.sec6{
    padding-top: 40px;
    padding-bottom: 155px;
  }


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


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


}


/* ABOUT */
.home_about{
  position: relative;
  z-index: 1;
}
.home_about_head{
  text-align: center;
  margin-bottom: 28px;
}
.home_about_head_en1{
  font-size: 60px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #f4f1f1;
}
.home_about_head_en2{
  margin-top: 40px;
}
.home_about_head_ja{
  margin-top: 15px;
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-mincho);
}
.home_about_txt{
  font-size: 15px;
  text-align: justify;
}
.home_about_illust{
}
.home_about_illust.pos1{
}
.home_about_illust.pos2{
}

/* ABOUT(メインビジュアル) */
.home_about_mv{
  margin-top: -138px;
  position: relative;
  z-index: 1;
}
.home_about_mv_bg{
  
}
.home_about_mv_bg.img_fit:before{
  padding-top: 750px;
}
.home_about_mv_row1{
  
  position: relative;
  z-index: 1;
}
.home_about_mv_row2{
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

.home_about_mv_catch{
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 0 10px;
  position: absolute;
  z-index: 1;
  top: 29.5%;
  left: calc(50% + 90px);
}
.home_about_mv_catch_txt{
  background: #FFF;
  font-size: 18px;
  font-family: var(--font-mincho);
  letter-spacing: 0.025em;
  padding: 8px 4px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
          display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
}

.home_about_mv_en{
  font-size: 80px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
  color: #FFF;
  position: absolute;
  z-index: 2;
  bottom: 75px;
  left: 0;
  right: 0;
  text-shadow: 0.743px 0.669px 5.94px rgba(24, 24, 24, 0.3);
}
.infiniteslide_wrap .home_about_mv_en p{
  margin: 0 0.2em;
}

.home_about_mv_pr{
  display: flex;
  flex-wrap: wrap;
  clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
  position: relative;
  z-index: 1;
}
.home_about_mv_pr_box1,
.home_about_mv_pr_box2{
  display: flex;
  justify-content: center;
  width: 50%;
  height: 825px;
  color: #FFF;
}
.home_about_mv_pr_box1{
  background: #60c2c9;
  padding-top: 175px;
}
.home_about_mv_pr_box2{
  flex-direction: row-reverse;
  background: #e85298;
  padding-top: 75px;
}
.home_about_mv_pr_logo{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.home_about_mv_pr_logo_img1{
  
}
.home_about_mv_pr_logo_img2{
  margin-top: 15px;
}
.home_about_mv_pr_logo_txt{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1.555;
  color: #FFF;
  margin-top: 15px;
  padding-left: 0.5em;
  text-shadow: 0.743px 0.669px 5.94px rgba(24, 24, 24, 0.3);
}

.home_about_mv_pr_title{
  
}
.home_about_mv_pr_title_txt{
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
}
.home_about_mv_pr_img{
  
}
.home_about_mv_pr_txt{
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.075em;
}
.home_about_mv_pr_box1 .home_about_mv_pr_title{
  
}
.home_about_mv_pr_box1 .home_about_mv_pr_img{
  margin: 28px 25px 0 35px;
}
.home_about_mv_pr_box1 .home_about_mv_pr_txt{
  padding-top: 50px;
}
.home_about_mv_pr_box2 .home_about_mv_pr_title{
  
}
.home_about_mv_pr_box2 .home_about_mv_pr_img{
  margin: 0 55px 0 35px;
}
.home_about_mv_pr_box2 .home_about_mv_pr_txt{
  padding-top: 102px;
}


/* こだわり(head) */
.home_feature_head{
  text-align: center;
}
.home_feature_head_en{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.25em;
  font-size: 50px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.home_feature_head_en_txt1{
  color: #eb6100;
}
.home_feature_head_en_txt2{
  color: #60c2c9;
}
.home_feature_head_en_txt3{
  color: #e85298;
}
.home_feature_head_ja{
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 12px;
  border-bottom: 1px solid;
}
.home_feature_msg{
  
}
* + .home_feature_msg{
  margin-top: 40px;
}
.home_feature_msg_ttl{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 6px;
}
.home_feature_msg_txt{
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
}

/* こだわり(list) */
.home_feature_list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  position: relative;
  z-index: 1;
}
* + .home_feature_list{
  margin-top: 50px;
}
.home_feature_list_item{
  width: 100%;
  position: relative;
  z-index: 1;
}


.home_feature_list_item_head{
  margin-bottom: 15px;
}
.home_feature_list_item_head_en{
  font-size: 45px;
  font-weight: 400;
  font-family: var(--font-en2);
  letter-spacing: 0;
  line-height: 1;
  color: #717070;
}
.home_feature_list_item:nth-child(4n+1) .home_feature_list_item_head_en:first-letter{
  color: #60c2c9;
}
.home_feature_list_item:nth-child(4n+2) .home_feature_list_item_head_en:first-letter{
  color: #e85298;
}
.home_feature_list_item:nth-child(4n+3) .home_feature_list_item_head_en:first-letter{
  color: #eb6100;
}
.home_feature_list_item:nth-child(4n) .home_feature_list_item_head_en:first-letter{
  color: #86bb29;
}
/**/
.wholesale .home_feature_list_item:nth-child(4n+1) .home_feature_list_item_head_en{
  color: #60c2c9;
}
.wholesale .home_feature_list_item:nth-child(4n+2) .home_feature_list_item_head_en{
  color: #e85298;
}
.wholesale .home_feature_list_item:nth-child(4n+3) .home_feature_list_item_head_en{
  color: #eb6100;
}
.wholesale .home_feature_list_item:nth-child(4n) .home_feature_list_item_head_en{
  color: #86bb29;
}


.home_feature_list_item_head_ja{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
}
.home_feature_list_item_txt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
  text-align: justify;
}
.home_feature_list_item_ftr{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
}
.home_feature_list_item_ftr_box1{
  width: 100px;
}
.home_feature_list_item_ftr_box2{
  width: calc(100% - 100px);
}
.home_feature_list_item_ftr_num{
  font-size: 70px;
  font-weight: 400;
  font-family: var(--font-en2);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: -0.2272em;
}
.home_feature_list_item_ftr_num em{
  font-size: 0.6363em;
  font-style: normal;
}
.home_feature_list_item_ftr_img{
  
}
.home_feature_list_item_ftr_img.img_fit:before{
  padding-top: 68.764%;
}



/* 余白設定 */
.home_feature_list_item:nth-child(odd){
  padding-left: 0;
  padding-right: 0;
}
.home_feature_list_item:nth-child(even){
  padding-left: 0;
  padding-right: 0;
}
/* border設定 */
.home_feature_list:before{
  content: "";
  width: 2px;
  background: #d1c0a5;
  position: absolute;
  z-index: 1;
  top: 10px;
  bottom: 0;
  left: calc(50% - 1px);
}
.home_feature_list_item:nth-child(2n+3):before{
  content: "";
  width: 200%;
  height: 2px;
  background: #d1c0a5;
  position: absolute;
  z-index: 1;
  top: -42px;
  left: 0;
}

@media (max-width:1023px) {
  /* border設定 */
  .home_feature_list:before{
    display: none;
  }
  .home_feature_list_item:nth-child(2n+3):before{
    display: none;
  }
  .home_feature_list_item + .home_feature_list_item{
    border-top: 2px solid #d1c0a5;
    padding-top: 30px;
  }
  
  .home_feature_head_ja{
    line-height: 1.4;
  }
  .home_feature_msg_ttl{
    margin-bottom: 15px;
  }
  .home_feature_msg_ttl + .home_feature_msg_ttl{
    margin-top: -12px;
  }
  
}
@media (min-width:1024px) {
  /* 余白設定 */
  .home_feature_list_item:nth-child(odd){
    padding-left: 15px;
    padding-right: 30px;
  }
  .home_feature_list_item:nth-child(even){
    padding-left: 30px;
    padding-right: 15px;
  }
  /* border設定 */
  .home_feature_list:before{
    width: 2px;
    top: 10px;
    bottom: 0;
    left: calc(50% - 1px);
  }
  .home_feature_list_item:nth-child(2n+3):before{
    width: 200%;
    height: 2px;
    top: -42px;
    left: 0;
  }
}
@media (min-width:1200px){
  /* 余白設定 */
  .home_feature_list_item:nth-child(odd){
    padding-left: 20px;
    padding-right: 45px;
  }
  .home_feature_list_item:nth-child(even){
    padding-left: 45px;
    padding-right: 20px;
  }
}
@media (min-width:1470px){
  /* 余白設定 */
  .home_feature_list_item:nth-child(odd){
    padding-left: 30px;
    padding-right: 80px;
  }
  .home_feature_list_item:nth-child(even){
    padding-left: 80px;
    padding-right: 30px;
  }
}
@media (min-width:1720px){
  /* 余白設定 */
  .home_feature_list_item:nth-child(odd){
    padding-left: 30px;
    padding-right: 108px;
  }
  .home_feature_list_item:nth-child(even){
    padding-left: 108px;
    padding-right: 30px;
  }
}


/* 品種紹介 */
.home_citrus_list_wrap{
  position: relative;
  z-index: 1;
}
.home_citrus_list{
  
}
.home_citrus_list .webgene-blog{
  display: flex;
  justify-content: space-between;
  /*gap: 0 55px*/
}
.home_citrus_list .webgene-item{
  width: 300px;
  height: auto;
  background: #f7f4f0;
  padding: 18px 20px 10px;
}
.home_citrus_list .webgene-item .img{
  background: none;
  margin-bottom: 40px;
}
.home_citrus_list .webgene-item .img.img_fit:before{
  padding-top: 44.87%;
}
.home_citrus_list .webgene-item .title{
  display: none;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home_citrus_list .webgene-item .txt1{
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  margin-bottom: 5px;
}
.home_citrus_list .webgene-item .txt2{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0.075em;
  text-align: justify;
}
.citrus-button-prev,
.citrus-button-next{
  width: 42px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  transition: 0.2s all;
}
.citrus-button-prev{
  left: 6px;
}
.citrus-button-next{
  right: 6px;
}
.citrus-button-prev{
  left: calc(50% - 150px - 30px);
}
.citrus-button-next{
  right: calc(50% - 150px - 30px);
}
.citrus-button-prev:hover,
.citrus-button-next:hover{
  transform: translate(0, -50%) scale(1.02);
}


/* コンテンツ */
.home_contents{
  background: #fcf2eb;
  border-radius: 10px;
  padding: 20px 15px;
}
.home_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents_row + .home_contents_row{
  margin-top: 50px;
}
.home_contents_box1{
  width: 100%;
  position: relative;
  z-index: 2;
}
.home_contents_box2{
  width: 100%;
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
.home_contents_img{
  
}
.home_contents_img.img_fit:before{
  padding-top: 69.231%;
}
.home_contents_head{
  border-bottom: 2px solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.home_contents_head:after{
  content: "";
  height: 2px;
  position: absolute;
  z-index: 1;
  bottom: -2px;
}
.home_contents_head_en{
  font-size: 20px;
  font-weight: 500;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 5px;
}
.home_contents_head_ja{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  
}
.home_contents_txt1{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  margin-bottom: 10px;
}
.home_contents_txt2{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
  text-align: justify;
}
.home_contents_box2 .read_more{
  margin-top: 30px;
}


.home_contents_row:nth-child(odd) .home_contents_img{
  /*margin-left: -160px;*/
}
.home_contents_row:nth-child(odd) .home_contents_head{
  border-color: #60c2c9;
}
.home_contents_row:nth-child(odd) .home_contents_head:after{
  background: #60c2c9;
  /*right: 0;*/
  /*left: -150px;*/
}
.home_contents_row:nth-child(odd) .home_contents_head_en{
  color: #60c2c9;
}
.home_contents_row:nth-child(even) .home_contents_box1{
  /*order: 2;*/
}
.home_contents_row:nth-child(even) .home_contents_box2{
  /*order: 1;*/
}
.home_contents_row:nth-child(even) .home_contents_img{
  /*margin-right: -160px;*/
}
.home_contents_row:nth-child(even) .home_contents_head{
  border-color: #e85298;
}
.home_contents_row:nth-child(even) .home_contents_head:after{
  background: #e85298;
  /*left: 0;*/
  /*right: -150px;*/
}
.home_contents_row:nth-child(even) .home_contents_head_en{
  color: #e85298;
}

@media (max-width:374px){

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

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

  .home_about_mv_pr_txt{
    font-size: 17px;
  }
}
@media (max-width:1023px){
  .home_about_illust_wrap{
    display: flex;
    justify-content: space-around;
    justify-content: center;
    --illust-resize: 0.5;
    margin-bottom: 50px;
  }
  .home_about_illust{
    margin: 0 20px;
  }
  .home_about_illust.pos1{
    width: calc(356px * var(--illust-resize));
  }
  .home_about_illust.pos2{
    width: calc(288px * var(--illust-resize));
  }
  
  /**/
  .home_about_mv_pr_box1,
  .home_about_mv_pr_box2{
    flex-wrap: wrap;
    padding: 0 30px;
  }
  .home_about_mv_pr_box1{
    padding-top: 85px;
    padding-bottom: 100px;
  }
  .home_about_mv_pr_box2{
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .home_about_mv_pr_title_txt{
    padding-left: 0.5em;
    text-align: center;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_img{
    width: 200px;
    padding: 30px 0;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_img{
    width: 120px;
    padding: 30px 0;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_txt{
    padding-top: 0;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_txt{
    padding-top: 0;
  }
  .home_about_mv_pr_logo_img1 img{
    width: 200px;
  }
  .home_about_mv_pr_txt{
    text-align: justify;
    
  }
  
}
@media (max-width:767px){

  
  
  .home_about_illust_wrap{
    --illust-resize: 0.2;
    margin-bottom: 20px;
  }
  .home_about_illust{
  }
  .home_about_illust.pos1{
  }
  .home_about_illust.pos2{
  }
  
  /**/
  .home_about_mv_pr{
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0% 100%);
  } 
  .home_about_mv_pr_box1,
  .home_about_mv_pr_box2{
    align-items: flex-start;
    align-content: flex-start;
    padding: 0 30px;
    width: 100%;
    height: 950px;
    
  }
  .home_about_mv_pr_box1{
    padding-top: 110px;
    padding-bottom: 100px;
  }
  .home_about_mv_pr_box2{
    padding-top: 180px;
    padding-bottom: 200px;
  }
  .home_about_mv_pr_title_txt{
    text-align: center;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_img{
    width: 200px;
    padding: 30px 0;
    margin-top: 0;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_img{
    width: 100px;
    padding: 30px 0;
    margin-top: 0;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_txt{
    padding-top: 0;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_txt{
    padding-top: 0;
  }
  
  .home_about_mv_pr_logo_img1 img{
    width: 160px;
  }
  .home_about_mv_pr_logo_img2 img{
    width: 100px;
  }
  .home_about_mv_pr_logo_txt{
    white-space: nowrap;
  }
  
  .home_citrus_list{
    margin-left: var(--margin-for-device-side-w);
    margin-right: var(--margin-for-device-side-w);
  }
}

@media (min-width:768px){

  
  /* ABOUT */
  .home_about{
  }
  .home_about_head{
    margin-bottom: 28px;
  }
  .home_about_head_en1{
    font-size: 100px;
  }
  .home_about_head_en2{
    margin-top: 40px;
  }
  .home_about_head_ja{
    margin-top: 15px;
    font-size: 36px;
  }
  .home_about_txt{
    font-size: 15px;
    margin-left: -10px;
    margin-right: -10px;
    text-align: center;
  }
  
  /* ABOUT(メインビジュアル) */
  .home_about_mv{
    margin-top: -50px;
  }
  .home_about_mv_bg.img_fit:before{
    padding-top: 700px;
  }
  .home_about_mv_row1{
  }
  .home_about_mv_row2{
    margin-top: -125px;
  }
  
  .home_about_mv_catch{
    gap: 0 20px;
    top: 20.5%;
    left: calc(50% + 200px);
  }
  .home_about_mv_catch_txt{
    font-size: 22px;
    padding: 16px 4px;
  }
  
  .home_about_mv_en{
    font-size: 100px;
    bottom: 145px;
  }
  .home_about_mv_pr{
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0% 100%);
  }
  .home_about_mv_pr_box1,
  .home_about_mv_pr_box2{
    width: 50%;
    height: auto;
  }
  .home_about_mv_pr_box1{
    /*padding-top: 175px;*/
  }
  .home_about_mv_pr_box2{
    /*flex-direction: row-reverse;*/
    /*padding-top: 75px;*/
  }
  .home_about_mv_pr_logo{
    position: absolute;
    z-index: 2;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .home_about_mv_pr_logo_img1{

  }
  .home_about_mv_pr_logo_img2{
    margin-top: 15px;
  }
  .home_about_mv_pr_logo_txt{
    font-size: 24px;
    margin-top: 25px;
  }

  .home_about_mv_pr_title{

  }
  .home_about_mv_pr_title_txt{
    font-size: 28px;
  }
  .home_about_mv_pr_img{

  }
  .home_about_mv_pr_txt{
    font-size: 17px;
    line-height: 2;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_title{

  }
  .home_about_mv_pr_box1 .home_about_mv_pr_img{
    margin: 28px 25px 0 35px;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_txt{
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_title{

  }
  .home_about_mv_pr_box2 .home_about_mv_pr_img{
    margin: 0 55px 0 35px;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_txt{
  }


  /* こだわり(head) */
  .home_feature_head{
    text-align: center;
  }
  .home_feature_head_en{
    font-size: 60px;
  }
  .home_feature_head_ja{
    font-size: 22px;
    margin-top: 12px;
  }
  * + .home_feature_msg{
    margin-top: 40px;
  }
  .home_feature_msg_ttl{
    font-size: 36px;
    margin-bottom: 6px;
  }
  .home_feature_msg_txt{
    font-size: 16px;
    margin-left: -20px;
    margin-right: -20px;
    text-align: center;
  }

  /* こだわり(list) */
  .home_feature_list{
    gap: 90px 0;
  }
  * + .home_feature_list{
    margin-top: 80px;
  }
  .home_feature_list_item{
    width: 100%;
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*align-items: flex-start;*/
  }
  .home_feature_list_item>*{
    /*width: 1000%;*/
  }

  .home_feature_list_item_head{
    margin-bottom: 25px;
  }
  .home_feature_list_item_head_en{
    font-size: 60px;
  }

  .home_feature_list_item_head_ja{
    font-size: 24px;
  }
  .home_feature_list_item_txt{
    font-size: 16px;
    line-height: 1.875;
  }
  .home_feature_list_item_ftr{
    margin-top: 35px;
    /*align-self: flex-end;*/
  }
  .home_feature_list_item_ftr_box1{
    width: 150px;
  }
  .home_feature_list_item_ftr_box2{
    width: calc(100% - 150px);
  }
  .home_feature_list_item_ftr_num{
    font-size: 80px;
    margin-bottom: -0.2272em;
  }
  .home_feature_list_item_ftr_num em{
    font-size: 0.6363em;
  }

  


  /* 品種紹介 */
  .home_citrus_list{
  }
  .home_citrus_list .webgene-blog{
  }
  .home_citrus_list .webgene-item{
    width: 350px;
    padding: 18px 20px 10px;
  }
  .home_citrus_list .webgene-item .img{
    margin-bottom: 40px;
  }
  .home_citrus_list .webgene-item .img.img_fit:before{
    padding-top: 44.87%;
  }
  .home_citrus_list .webgene-item .title{
    display: none;
    font-size: 30px;
  }
  .home_citrus_list .webgene-item .txt1{
    font-size: 20px;
  }
  .home_citrus_list .webgene-item .txt2{
    font-size: 16px;
  }

  .citrus-button-prev,
  .citrus-button-next{
    width: 50px;
    top: 50%;
  }
  .citrus-button-prev{
    left: calc(50% - 175px - 25px);
  }
  .citrus-button-next{
    right: calc(50% - 175px - 25px);
  }
  /* コンテンツ */
  .home_contents{
    padding: 30px 30px;
  }
  .home_contents_head_en{
    font-size: 24px;
  }
  .home_contents_head_ja {
    font-size: 30px;
    margin-top: 10px;
  }
  .home_contents_txt1 {
    font-size: 24px;
  }
  .home_contents_txt2 {
    font-size: 16px;
  }
  
}
@media (min-width:1024px){

  /* ABOUT */
  .home_about{
  }
  .home_about_head{
    margin-bottom: 28px;
  }
  .home_about_head_en1{
    font-size: 180px;
  }
  .home_about_head_en2{
    margin-top: 40px;
  }
  .home_about_head_ja{
    margin-top: 15px;
    font-size: 48px;
  }
  .home_about_txt{
    text-align: center;
  }
  .home_about_illust{
    position: absolute;
    z-index: 1;
    top: 50%;
  }
  .home_about_illust.pos1{
    width: 210px;
    left: 0;
    transform: translate(0, -25%);
  }
  .home_about_illust.pos2{
    width: 150px;
    right: 0;
    transform: translate(-11%, -29%);
  }

  
  
  /* ABOUT(メインビジュアル) */
  .home_about_mv{
    margin-top: -138px;
  }
  .home_about_mv_bg.img_fit:before{
    padding-top: 900px;
  }
  .home_about_mv_row1{
  }
  .home_about_mv_row2{
    margin-top: -125px;
  }
  
  .home_about_mv_catch{
    gap: 0 20px;
    top: 29.5%;
    left: calc(50% + 300px);
  }
  .home_about_mv_catch_txt{
    font-size: 24px;
    padding: 16px 4px;
  }
  .home_about_mv_en{
    font-size: 120px;
    bottom: 145px;
  }
  .home_about_mv_pr{
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
  }
  .home_about_mv_pr_box1,
  .home_about_mv_pr_box2{
    width: 50%;
    height: 825px;
    justify-content: flex-start;
  }
  .home_about_mv_pr_box1{
    padding-top: 175px;
    padding-left: 30px;
  }
  .home_about_mv_pr_box2{
    flex-direction: row-reverse;
    padding-top: 75px;
    padding-right: 30px;
  }
  .home_about_mv_pr_logo{
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .home_about_mv_pr_logo_img1{
    
  }
  .home_about_mv_pr_logo_img1 img{
    width: 180px;
  }
  .home_about_mv_pr_logo_img2{
    margin-top: 15px;
  }
  .home_about_mv_pr_logo_img2 img{
    width: 100px;
  }
  .home_about_mv_pr_logo_txt{
    font-size: 24px;
    margin-top: 35px;
  }

  .home_about_mv_pr_title{

  }
  .home_about_mv_pr_title_txt{
    font-size: 26px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_about_mv_pr_img{

  }
  .home_about_mv_pr_txt{
    font-size: 16px;
    line-height: 1.875;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_title{

  }
  .home_about_mv_pr_box1 .home_about_mv_pr_img{
    width: 160px;
    margin: 28px 25px 0 35px;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_txt{
    padding-top: 50px;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_title{

  }
  .home_about_mv_pr_box2 .home_about_mv_pr_img{
    width: 100px;
    margin: 0 55px 0 35px;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_txt{
    padding-top: 102px;
  }

  /* こだわり(head) */
  .home_feature_head{
  }
  .home_feature_head_en{
    font-size: 70px;
  }
  .home_feature_head_ja{
    font-size: 24px;
  }
  * + .home_feature_msg{
    margin-top: 40px;
  }
  .home_feature_msg_ttl{
    font-size: 42px;
  }
  .home_feature_msg_txt{
    font-size: 16px;
  }

  /* こだわり(list) */
  .home_feature_list{
    gap: 90px 0;
  }
  * + .home_feature_list{
    margin-top: 80px;
  }
  .home_feature_list_item{
    width: 50%;
  }

  .home_feature_list_item_head{
    margin-bottom: 25px;
  }
  .home_feature_list_item_head_en{
    /*font-size: 64px;*/
    font-size: 54px;
  }
  .home_feature_list_item_head_ja{
    font-size: 21px;
  }
  .home_feature_list_item_txt{
    font-size: 16px;
  }
  .home_feature_list_item_ftr{
    margin-top: 35px;
  }
  .home_feature_list_item_ftr_box1{
    width: 130px;
  }
  .home_feature_list_item_ftr_box2{
    width: calc(100% - 130px);
  }
  .home_feature_list_item_ftr_num{
    font-size: 80px;
  }

  /* コンテンツ */
  .home_contents{
    padding: 60px 30px;
  }
  .home_contents_row{
  }
  .home_contents_row + .home_contents_row{
    margin-top: 70px;
  }
  .home_contents_box1{
    width: 42.46%;
  }
  .home_contents_box2{
    width: 51.02%;
    padding-top: 45px;
  }
  .home_contents_head{
    padding-bottom: 25px;
    margin-bottom: 40px;
  }
  .home_contents_head:after{
    height: 2px;
    bottom: -2px;
  }
  .home_contents_head_en{
    font-size: 28px;
    margin-bottom: 10px;
  }
  .home_contents_head_ja{
    font-size: 32px;

  }
  .home_contents_txt1{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .home_contents_txt2{
    font-size: 16px;
    line-height: 2.5;
  }
  .home_contents_box2 .read_more{
    margin-top: 45px;
  }

  .home_contents_row:nth-child(odd) .home_contents_box1{

  }
  .home_contents_row:nth-child(odd) .home_contents_box2{

  }
  .home_contents_row:nth-child(odd) .home_contents_img{
    margin-left: -60px;
  }
  .home_contents_row:nth-child(odd) .home_contents_head:after{
    right: 0;
    left: -150px;
  }
  .home_contents_row:nth-child(even) .home_contents_box1{
    order: 2;
  }
  .home_contents_row:nth-child(even) .home_contents_box2{
    order: 1;
  }
  .home_contents_row:nth-child(even) .home_contents_img{
    margin-right: -60px;
  }
  .home_contents_row:nth-child(even) .home_contents_head:after{
    left: 0;
    right: -150px;
  }
}
@media (min-width:1200px){

  .home_about_txt{
    font-size: 16px;
  }
  .home_about_mv_pr_box1, 
  .home_about_mv_pr_box2{
    justify-content: center;
  }

  .home_about_illust.pos1{
    width: 250px;
  }
  .home_about_illust.pos2{
    width: 200px;
  }
  
}
@media (min-width:1470px){

  /* ABOUT(メインビジュアル) */
  .home_about_mv{
    margin-top: -138px;
  }
  .home_about_mv_bg.img_fit:before{
    padding-top: 1258px;
  }
  .home_about_mv_row1{
  }
  .home_about_mv_row2{
    margin-top: -125px;
  }
  
  .home_about_mv_catch{
    gap: 0 20px;
    top: 29.5%;
    left: calc(50% + 400px);
  }
  .home_about_mv_catch_txt{
    font-size: 38px;
    padding: 16px 4px;
  }
  .home_about_mv_en{
    font-size: 200px;
    bottom: 145px;
  }
  .home_about_mv_pr{
    clip-path: polygon(0 15%, 100% 0, 100% 85%, 0% 100%);
  }
  .home_about_mv_pr_box1,
  .home_about_mv_pr_box2{
    width: 50%;
    height: 825px;
  }
  .home_about_mv_pr_box1{
    padding-top: 175px;
    padding-left: 0;
  }
  .home_about_mv_pr_box2{
    padding-top: 75px;
    padding-right: 0;
  }
  .home_about_mv_pr_logo{
    top: 49%;
    left: 50%;
  }
  .home_about_mv_pr_logo_img1 img{
    width: 220px;
  }
  .home_about_mv_pr_logo_img2{
    margin-top: 15px;
  }
  .home_about_mv_pr_logo_img2 img{
    width: auto;
  }
  .home_about_mv_pr_logo_txt{
    font-size: 30px;
    margin-top: 35px;
  }

  .home_about_mv_pr_title{

  }
  .home_about_mv_pr_title_txt{
    font-size: 32px;
  }
  .home_about_mv_pr_img{

  }
  .home_about_mv_pr_txt{
    font-size: 17px;
    line-height: 2;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_title{

  }
  .home_about_mv_pr_box1 .home_about_mv_pr_img{
    width: 240px;
    margin: 28px 25px 0 35px;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_txt{
    padding-top: 50px;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_title{

  }
  .home_about_mv_pr_box2 .home_about_mv_pr_img{
    width: 120px;
    margin: 0 55px 0 35px;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_txt{
    padding-top: 102px;
  }
  
  .home_about_illust.pos1{
    width: auto;
  }
  .home_about_illust.pos2{
    width: auto;
  }
  
  /* こだわり(head) */
  .home_feature_head{
  }
  .home_feature_head_en{
    font-size: 100px;
  }
  .home_feature_head_ja{
    font-size: 26px;
  }
  * + .home_feature_msg{
    margin-top: 40px;
  }
  .home_feature_msg_ttl{
    font-size: 56px;
  }
  .home_feature_msg_txt{
    font-size: 16px;
  }

  /* こだわり(list) */
  .home_feature_list{
    gap: 90px 0;
  }
  * + .home_feature_list{
    margin-top: 80px;
  }
  .home_feature_list_item{
    width: 50%;
  }

  .home_feature_list_item_head{
    margin-bottom: 25px;
  }
  .home_feature_list_item_head_en{
    font-size: 71px;
  }

  .home_feature_list_item_head_ja{
    font-size: 28px;
  }
  .home_feature_list_item_txt{
    font-size: 16px;
  }
  .home_feature_list_item_ftr{
    margin-top: 35px;
  }
  .home_feature_list_item_ftr_box1{
    width: 175px;
  }
  .home_feature_list_item_ftr_box2{
    width: calc(100% - 176px);
  }
  .home_feature_list_item_ftr_num{
    font-size: 110px;
  }

  /* 品種紹介 */
  .home_citrus_list_wrap{
    padding: 0 30px;
  }
  .home_citrus_list .webgene-blog{
  }
  .home_citrus_list .webgene-item{
    width: 406px;
    padding: 18px 20px 10px;
  }
  .home_citrus_list .webgene-item .img{
    margin-bottom: 40px;
  }
  .home_citrus_list .webgene-item .img.img_fit:before{
    padding-top: 44.87%;
  }
  .home_citrus_list .webgene-item .title{
    display: none;
    font-size: 30px;
  }
  .home_citrus_list .webgene-item .txt1{
    font-size: 20px;
  }
  .home_citrus_list .webgene-item .txt2{
    font-size: 16px;
  }
  
  .citrus-button-prev,
  .citrus-button-next{
    width: 74px;
    top: 50%;
  }
  .citrus-button-prev{
    left: 0;
  }
  .citrus-button-next{
    right: 0;
  }
  
  /* コンテンツ */
  .home_contents{
    padding: 60px 30px;
  }
  .home_contents_row{
  }
  .home_contents_row + .home_contents_row{
    margin-top: 100px;
  }
  .home_contents_box1{
    width: 42.46%;
  }
  .home_contents_box2{
    width: 51.02%;
    padding-top: 45px;
  }
  .home_contents_head{
    padding-bottom: 25px;
    margin-bottom: 40px;
  }
  .home_contents_head:after{
    height: 2px;
    bottom: -2px;
  }
  .home_contents_head_en{
    font-size: 32px;
    margin-bottom: 10px;
  }
  .home_contents_head_ja{
    font-size: 42px;

  }
  .home_contents_txt1{
    font-size: 28px;
    margin-bottom: 10px;
  }
  .home_contents_txt2{
    font-size: 16px;
    line-height: 2.5;
  }
  .home_contents_box2 .read_more{
    margin-top: 45px;
  }

  .home_contents_row:nth-child(odd) .home_contents_box1{

  }
  .home_contents_row:nth-child(odd) .home_contents_box2{

  }
  .home_contents_row:nth-child(odd) .home_contents_img{
    margin-left: -60px;
  }
  .home_contents_row:nth-child(odd) .home_contents_head:after{
    right: 0;
    left: -150px;
  }
  .home_contents_row:nth-child(even) .home_contents_box1{
    order: 2;
  }
  .home_contents_row:nth-child(even) .home_contents_box2{
    order: 1;
  }
  .home_contents_row:nth-child(even) .home_contents_img{
    margin-right: -60px;
  }
  .home_contents_row:nth-child(even) .home_contents_head:after{
    left: 0;
    right: -150px;
  }
  
}
@media (min-width:1536px){
  .home_about_mv_pr_box1 .home_about_mv_pr_img {
    width: 270px;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_img {
    width: 150px;
  }
  
  .home_contents_row:nth-child(odd) .home_contents_img{
    margin-left: -80px;
  }
  .home_contents_row:nth-child(even) .home_contents_img{
    margin-right: -80px;
  }
  
  .home_citrus_list .webgene-item{
    width: 412px;
  }
  
  
}
@media (min-width:1720px){

  .home_about_mv_pr_logo_img1 img{
    width: auto;
  }
  .home_about_mv_pr_logo_img2 img{
    width: auto;
  }
  .home_about_mv_pr_box1{
    padding-left: 24px;
  }
  .home_about_mv_pr_box2{
    padding-right: 12px;
  }
  
  .home_about_mv_pr_title_txt{
    font-size: 38px;
  }
  .home_about_mv_pr_box1 .home_about_mv_pr_img{
    width: auto;
    margin: 28px 30px 0 35px;
  }
  .home_about_mv_pr_box2 .home_about_mv_pr_img{
    width: auto;
  }

  .home_contents_row:nth-child(odd) .home_contents_img{
    margin-left: -160px;
  }
  .home_contents_row:nth-child(odd) .home_contents_head:after{
    right: 0;
    left: -150px;
  }
  .home_contents_row:nth-child(even) .home_contents_box1{
    order: 2;
  }
  .home_contents_row:nth-child(even) .home_contents_box2{
    order: 1;
  }
  .home_contents_row:nth-child(even) .home_contents_img{
    margin-right: -160px;
  }
  .home_contents_row:nth-child(even) .home_contents_head:after{
    left: 0;
    right: -150px;
  }
  .home_citrus_list .webgene-item{
    width: 450px;
    padding: 18px 20px 10px;
  }
}


/*******************************
*　Instagram
********************************/


.insta_list{
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
* + .insta_list{
  margin-top: 20px;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.insta_list .webgene-item{
  width: calc(50% - 5px);
  border: 5px solid #FFF;
  border-radius: 5px;
  background: #FFF;
}
.insta_list .webgene-item:before{
  padding-top: 133.064%;
}
.insta_list .webgene-item video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
.insta_list .webgene-item .img:before{
  padding-top: 133.064%;
}
@media (max-width:1023px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*isnta*/
  .insta_list{
  }
  * + .insta_list{
    margin-top: 50px;
  }
  .insta_list .webgene-blog{
    gap: 30px;
  }
  .insta_list .webgene-item{
    width: calc(50% - 15px);
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

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

  /*isnta*/
  .insta_list{
  }
  * + .insta_list{
    margin-top: 50px;
  }
  .insta_list .webgene-blog{
    gap: 15px;
  }
  .insta_list .webgene-item{
    width: calc(20% - 12px);
  }

}
@media (min-width:1200px){
  /*isnta*/
  * + .insta_list{
    margin-top: 50px;
  }
  .insta_list .webgene-blog{
    gap: 0 45px;
  }
  .insta_list .webgene-item{
    width: calc(20% - 36px);
  }
  .insta_list + .read_more{
    margin-top: 50px;
  }
  
  
}
@media (min-width:768px) and  (max-width:1023px){
}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


/*******************************
*　会社概要
********************************/

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

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

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

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

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

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


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

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

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

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


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


}



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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}


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

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

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

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

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


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
