@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #058741;
  --sub-color: #d04129;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  --font-en: "Oswald", 'Noto Sans JP',sans-serif;
  /*--font-en: "Cardo", 'Noto Sans JP', sans-serif;*/
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);
  background-image: url('/img/body_bg.jpg');
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}

*,:before,:after{
  transition: 0.2s all;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}


.container{
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width:768px){

  /* コンテナサイズ:px */
  .container{
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }

  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
    --resize-rate: 0.6;
  }
}
@media (min-width:992px){

  /* コンテナサイズ:px */
  .container{
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }

  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){

  /* コンテナサイズ:px */
  .container{
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
  }

  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
    --resize-rate: 0.7;
  }
}
@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);
    --resize-rate: 0.7;
  }

}
@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);
    --resize-rate: 1.0;
  }
}


/* ******************************
   
   ****************************** */

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
  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{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  --logo-height: 30px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 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;
  margin-left: auto;
  margin-right: 35px;
}

/* TELボタン */
.hdr_tel{
  margin-top: -5px;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.4),1px 1px 3px rgba(255, 255, 255, 0.4),1px 1px 3px rgba(255, 255, 255, 0.4),1px 1px 3px rgba(255, 255, 255, 0.4);
}
.hdr_tel_txt1{
  font-size: 29px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}
.hdr_tel_txt2{
  font-size: 14px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
}
.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){

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
  	display: flex;
    flex-direction: column;
    margin-left: 0;
	position: fixed;
    right: 10px;
    top: 50%;
	transform: translateY(-50%);
    
  }
  .hdr_sns a{
   width: auto;
  }
  .hdr_sns a img{
    height: 30px;
	margin: 8px 0;
  }
  .hdr_sns a + a{
    margin-left: 0;
  }

}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    /*padding-top: 86px;*/
  }
  .header{
    --logo-height: 50px;

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 18px 35px 0 30px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 180px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  .hdr_sns {
    margin-right: 15px;
  }
  .hdr_sns a {
    width: 50px;
  }

}
@media (min-width:1024px){

  .header{
    --logo-height: 50px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 200px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

}
@media (min-width:1200px){

  .header{
    --logo-height: 66px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    /*width: 420px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }
  
  .hdr_tel_txt1{
    font-size: 29px;
  }
  .hdr_tel_txt2{
    font-size: 14px;
  }

}

/*******************************
*　メインビジュアル
********************************/
:root{
  --mv-fr-resize:0.2;
}

/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

.mv_fr{
  position: absolute;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
}
.mv_fr.pos1{
  top: 0;
  left: 0;
  background-image: url('/img/mv_fr1.png');
  aspect-ratio: 581 / 300;
  width: calc(581px * var(--mv-fr-resize));
}
.mv_fr.pos2{
  top: 0;
  right: 0;
  background-image: url('/img/mv_fr2.png');
  aspect-ratio: 660 / 312;
  width: calc(660px * var(--mv-fr-resize));
}
.mv_fr.pos3{
  bottom: 0;
  right: 0;
  background-image: url('/img/mv_fr3.png');
  aspect-ratio: 548 / 395;
  width: calc(548px * var(--mv-fr-resize));
}
.mv_fr.pos4{
  bottom: 0;
  left: 0;
  background-image: url('/img/mv_fr4.png');
  aspect-ratio: 740 / 255;
  width: calc(740px * var(--mv-fr-resize));
}


.mv_box{
  display: flex;
  align-items: flex-end;
  /*flex-wrap: wrap;*/
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0 15px;
  max-width: 100%;
  overflow: hidden;
}

.mv_logo{
  width: 100px;
}

/* MVテキスト */
.mv_txt{
  font-size: 28px;
  text-align: center;
}
.mv_txt_p1{
  font-size: 0.7142em;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
  color: #FFF;
  filter: drop-shadow(0 0 4px #5f5f5f);
}
.mv_txt_p2{
  font-size: 1em;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
  color: #FFF;
  filter: drop-shadow(0 0 10px #5f5f5f);
  margin-top: 3px;
  /*margin-right: -0.7em;*/
}
.mv_txt_p3{
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}
.mv_txt_p3 p{
  display: inline-block;
  background: #FFF;
  padding: 2px 20px 3px;
  margin-top: 20px;
}
.mv_txt_p4{
  color: red;
  font-size: 22px;
  font-weight: 900;
  margin-top: 10px;
  text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff; 
}
.mv_txt_p4 em{
  font-size: 1.1em;
  font-weight: 600;
  font-style: normal;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  position: relative;
  z-index: 1;
  bottom: -0.1em;
}

/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (max-width:767px){
  
  .mv_box{
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* MVロゴ */
  .mv_logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;;
    text-align: center;
    margin-bottom: 30px;
  }
  .mv_logo_img1{
    width: 175px;
    margin-right: 20px;
  }
  .mv_logo_img1 img{
    width: 100%;
  }
  .mv_logo_img2{
    width: 100px;
  }

  /* MVテキスト */
  .mv_txt{
    width: 100%;
  }
  
  
}
@media (min-width:768px){

  :root{
    --mv-fr-resize: 0.4;
  }
  
  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }
  
  /* MVロゴ */
  .mv_logo{
    width: 120px;
    margin-right: 15px;
  }

  /* MVテキスト */
  .mv_txt{
    font-size: 30px;
  }
  .mv_txt_p1{
    font-size: 0.7142em;
  }
  .mv_txt_p2{
    font-size: 1em;
    margin-top: 3px;
    margin-right: -0.7em;
  }
  .mv_txt_p3{
    font-size: 18px;
  }
  .mv_txt_p3 p{
    padding: 2px 20px 3px;
    margin-top: 28px;
  }
  .mv_txt_p4{
    font-size: 24px;
  }

}
@media (min-width:1024px){

  :root{
    --mv-fr-resize: 0.5;
  }

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }
  
  /* MVロゴ */
  .mv_logo{
    width: 201px;
    margin-right: 15px;
  }

  /* MVテキスト */
  .mv_txt{
    font-size: 36px;
  }
  .mv_txt_p3{
    font-size: 24px;
  }
  .mv_txt_p3 p{
    margin-top: 18px;
  }
  
}
@media (min-width:1200px){

  :root{
    --mv-fr-resize: 0.7;
  }
  
  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 840px;
    padding-top: 100vh;
  }

  /* MVテキスト */
  .mv_txt{
    font-size: 70px;
  }
  .mv_txt_p3{
    font-size: 24px;
  }
  .mv_txt_p3 p{
    margin-top: 28px;
  }
  .mv_txt_p4{
    font-size: 50px;
  }
}

@media (min-width:1470px){
  :root{
    --mv-fr-resize: 0.8;
  }
  
}
@media (min-width:1720px){
  :root{
    --mv-fr-resize: 1.0;
  }
}

/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


}
@media (min-width:1024px){

}
@media (min-width:1200px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  /*margin-bottom: 50px;*/
  position: relative;
  z-index: 1;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.pg_header_title_txt{
  display: flex;
  justify-content: center;
  font-size: 20px;
}
.pg_header_title_txt i{
  /*width: 94px;*/
  width: 1.2702em;
  aspect-ratio: 94 / 121;
  margin: 0 2.5px;
  font-weight: 700;
  font-style: normal;
  background-image: url('/img/h1_char_bg.png');
  background-size: contain;
  background-repeat: no-repeat;
}






@media (min-width:768px){
  .pg_header{
    /*margin-bottom: 75px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  
  .pg_header_title_txt{
    font-size: 40px;
  }
  .pg_header_title_txt i{
    width: 1.2702em;
  }

}
@media (min-width:1024px){
  .pg_header{
    /*margin-bottom: 100px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  
  .pg_header_title_txt{
    font-size: 40px;
  }

}
@media (min-width:1200px){

  .pg_header{
    /*margin-bottom: 150px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 628px;
  }
  
  .pg_header_title_txt{
    font-size: 60px;
  }

}

@media (min-width:1470px){
  
  .pg_header_title_txt{
    font-size: 74px;
  }
  
}



/*******************************
*　フッター
********************************/

.footer_top{
  height: 100px;
  background: #009e6f;
}
.footer{
  padding-top: 80px;
  background-image: url('/img/footer_bg.jpg');
  background-size: cover;
  position: relative;
  z-index: 1;
}

.ftr_welcome{
  padding: 0 30px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -78%);
  transform: translate(0, -78%);
}

.ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
}

.ftr1_box1{
  width: 100%;
}
.ftr1_box1_inner{
  display: inline-block;
}
.ftr1_box2{
  width: 100%;
  margin-top: 20px;
}

.ftr_logo{
  text-align: center;
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  display: flex;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.ftr_addr_txt1{
  width: 95px;
}
.ftr_addr_txt2{
  
}
.ftr_map{
  
}
.ftr_map iframe{
  width: 100%;
  height: 300px;
}

.ftr2{
  padding-top: 30px;
  padding-bottom: 30px;
}

/* 営業時間 */
.ftr_contact{
  display: block;
  width: 790px;
  max-width: 100%;
  background: #FFF;
  border-radius: 20px;
  padding: 20px 20px 15px;
  margin: 0 auto;
}
.ftr_contact_head{
  font-size: 18px;
  font-weight: 700;
  background: var(--main-color);
  color: #FFF;
  border-radius: 17px;
  padding: 4px 10px;
  margin-bottom: 15px;
  text-align: center;
}
.ftr_contact_time{
  display: flex;
}
.ftr_contact_time_item{
  width: 50%;
  padding: 10px 0;
  font-size: 22px;
  font-weight: 700;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  line-height: 1;
  text-align: center;
}
.ftr_contact_time_item + .ftr_contact_time_item{
  border-left: 1px solid;
}
.ftr_contact_time_item_txt1{
  font-size: 1.5em;
}
.ftr_contact_time_item_txt2{
  font-size: 1em;
  margin-top: 10px;
}
.ftr_contact_time_item{
  
}
.ftr_contact_tel{
  font-size: 28px;
  font-weight: 700;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  border-top: 1px solid;
  margin-top: 15px;
  padding-top: 15px;
}

/* リンク */
.ftr_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: #FFF;
}
* + .ftr_links{
  margin-top: 60px;
}
.ftr_links li{
  padding: 0 48px;
  line-height: 1;
}
.ftr_links li+li{
  border-left: 1px solid;
}
.ftr_links li{
  
}

.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: #FFF;
  padding: 28px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--main-color);
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--main-color);
  color: #FFF;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: var(--sub-color);;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:375px){

}
@media (max-width:767px){

  body{
    padding-bottom: 56px;
  }
  
  .ftr1_box1_inner{
    width: 100%;
    /*text-align: center;*/
  }
  
  .ftr_addr{
    flex-wrap: wrap;
    text-align: center;
  }
  .ftr_addr_txt1{
    width: 100%;
  }
  .ftr_addr_txt2{
    width: 100%;
  }
  
  .ftr_links{
    display: none;
  }
  
  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }
}
@media (min-width:768px){
  
  .footer_top{
    height: 200px;
  }
  .footer{
  }
  

  .ftr_welcome{
    -webkit-transform: translate(0, -78%);
    transform: translate(0, -78%);
  }

  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 330px - 30px);
  }
  .ftr1_box1_inner{
  }
  .ftr1_box2{
    width: 330px;
    margin-top: 0;
  }

  .ftr_logo{
    margin-bottom: 25px;
  }
  .ftr_addr{
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 10px;
  }
  .ftr_addr_txt1{
    width: 95px;
  }
  .ftr_addr_txt2{

  }
  .ftr_map{

  }
  .ftr_map iframe{
    height: 340px;
  }

  .ftr2{
    padding-top: 100px;
    padding-bottom: 60px;
  }
  

  /* 営業時間 */
  .ftr_contact{
    width: 790px;
    border-radius: 20px;
    padding: 30px 50px 15px;
  }
  .ftr_contact_head{
    font-size: 18px;
    border-radius: 17px;
    padding: 4px 10px;
    margin-bottom: 25px;
  }
  .ftr_contact_time_item{
    width: 50%;
    padding: 10px 0;
    font-size: 25px;
  }
  .ftr_contact_time_item_txt1{
    font-size: 1.92em;
  }
  .ftr_contact_time_item_txt2{
    font-size: 1em;
    margin-top: 10px;
  }
  .ftr_contact_time_item{

  }
  .ftr_contact_tel{
    font-size: 46px;
    margin-top: 30px;
    padding-top: 15px;
  }
  
  /* リンク */
  .ftr_links{
  }
  * + .ftr_links{
    margin-top: 60px;
  }
  .ftr_links li{
    padding: 0 15px;
  }
}
@media (min-width:1024px){
  .footer{
  }
  
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 550px - 30px);
  }
  .ftr1_box1_inner{
  }
  .ftr1_box2{
    width: 550px;
  }
  
}
@media (min-width:1200px){

  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 665px - 30px);
  }
  .ftr1_box1_inner{
  }
  .ftr1_box2{
    width: 665px;
  }
  
  /* リンク */
  .ftr_links{
  }
  * + .ftr_links{
    margin-top: 60px;
  }
  .ftr_links li{
    padding: 0 48px;
  }
  
}


/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #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: 220px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #FFF;
  background: #FFF;
  border-radius: 24px;
  /*color: #;*/
  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;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* tt3 */
.tt3{
  text-align: center;
  margin-bottom: 30px;
}
.tt3_en{
  
}
.tt3_ja{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  color: #3f8842;
  margin-top: 25px;
  filter: drop-shadow(0 0 4px #5f5f5f);
  
  text-shadow    :
    0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,
    0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,
    0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,
    0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,
    0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff
    ;
}

/* 文章 */
.cmn_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.333;
  line-height: 1.875;
  text-align: justify;
}

.main{
  padding-top: 50px;
}

/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

  
  .tt3_en img{
    
  }
}
@media (min-width:768px){

  .main{
    padding-top: 75px;
  }
  
  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 220px;
    font-size: 16px;
    padding: 14px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 10px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }

  
  /* tt3 */
  .tt3{
    margin-bottom: 70px;
  }
  .tt3_en{

  }
  .tt3_ja{
    font-size: 38px;
    margin-top: 25px;
    filter: drop-shadow(0 0 1px #5f5f5f);
    text-shadow    :
      0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,
      0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,
      0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,
      0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,
      0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff
      ;
  }
  
  .section:last-child{
    padding-bottom: 100px;
  }


}
@media (min-width:1024px){

  .main{
    padding-top: 100px;
  }
  
  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

}
@media (min-width:1200px){

  .main{
    padding-top: 150px;
  }
  
  /* 文章 */
  .cmn_txt{
    font-size: 18px;
    line-height: 2.333;
  }
  
  .section:last-child{
    padding-bottom: 150px;
  }

}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }

}

.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}


/* ページ概要 */
.cmn_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_about_box1{
  width: 100%;
}
.cmn_about_box2{
  width: 100%;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.cmn_about_box3{
  width: 100%;
  text-align: center;
}
.cmn_about_title{
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.cmn_about_title_ja{
  font-size: 26px;
  font-weight: 700;
}
.cmn_about_title_en{
  font-size: 20px;
  font-family: "Oleo Script", "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  color: #d04129;
  position: absolute;
  z-index: 1;
  left: calc(100% - 55px);
  bottom: -18px;
  transform: rotate(-7deg);
}
.cmn_about_txt{
  
}
.cmn_about_img{
  border: 3px solid var(--main-color);
  border-radius: 20px;
  overflow: hidden;
}
.cmn_about_img.img_fit:before{
  padding-top: 115.124%;
}

.cmn_about_illust.pos1{
  width: 45.16%;
  position: relative;
  z-index: 2;
  right: -25px;
  margin-left: auto;
  margin-top: -145px;
}

@media (max-width:767px){
  .cmn_about_illust.pos1{
    width: 30%;
    right: 0;
  }
}
@media (min-width:768px){

  /* ページ概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 50%;
  }
  .cmn_about_box2{
    width: 40.09%;
  }
  .cmn_about_title{
    margin-bottom: 50px;
  }
  .cmn_about_title_ja{
    font-size: 30px;
  }
  .cmn_about_title_en{
    font-size: 28px;
    left: calc(100% - 55px);
    bottom: -18px;
    transform: rotate(-7deg);
  }
  .cmn_about_txt{

  }
  
  .cmn_about.left .cmn_about_box1{
    order: 2;
  }
  .cmn_about.left .cmn_about_box2{
    order: 1;
  }
  .cmn_about.right .cmn_about_box1{
    order: 1;
  }
  .cmn_about.right .cmn_about_box2{
    order: 2;
  }
  
}
@media (min-width:1024px){
  
  /* ページ概要 */
  .cmn_about{
  }
  .cmn_about_box1{
    width: 50%;
    margin-top: 35px;
  }
  .cmn_about_box2{
    width: 40.09%;
  }
  .cmn_about_title{
    margin-bottom: 85px;
  }
  .cmn_about_title_ja{
    font-size: 36px;
  }
  .cmn_about_title_en{
    font-size: 32px;
  }
  .cmn_about_txt{

  }
  .cmn_about_txt.center{
    text-align: center;
  }
  
  .cmn_about_box3 .cmn_about_title{
    margin-bottom: 50px;
  }
  
}
@media (min-width:1200px){
  
}

/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{
  padding-top: 0;
}
.pg_home .section.sec2{
  padding-top: 30px;
  padding-bottom: 50px
}
.pg_home .section.sec3{
  background: var(--main-color);
  background: #009e6f;
  padding-top: 50px;
  padding-bottom: 25px;
}

@media (max-width:767px){

}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 0;
  }
  .pg_home .section.sec2{
    padding-top: 90px;
    padding-bottom: 105px
  }
  .pg_home .section.sec3{
    padding-top: 80px;
    padding-bottom: 25px;
  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

.main{
  overflow: hidden;
}

:root{
  /*--home-guide-illust-resize: 0.2;*/
  --home-guide-illust-resize: 1;
}

/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
.home_about_box1{
  width: 100%;
}
.home_about_box2{
  width: 100%;
  margin-top: 30px;
}
.home_about_title_en1{
  font-size: 32px;
  font-weight: 700;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  color: var(--main-color);
}
.home_about_title_en1 em{
  font-style: normal;
  color: var(--sub-color);
}
.home_about_title_en2{
  margin-bottom: 25px;
}
.home_about_title_ja{
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.home_about_txt{
  
}

.home_about_illust{
  aspect-ratio: 425 / 415;
  position: relative;
  z-index: 1;
}
.home_about_illust_img{
  
}
.home_about_illust_img.pos1{
  /*margin-right: -103px;*/
}
.home_about_illust_img.pos2{
  width: 48.47%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 47%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  
}

/* Guide */
.home_guide{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.home_guide_item{
  width: 100%;
  padding: 0 15px;
}
.home_guide_item:nth-child(n+2){
  margin-top: 50px;
}
.home_guide_item_inner{
  position: relative;
  z-index: 1;
}
.home_guide_item_img_box{
  position: relative;
  z-index: 1;
}
.home_guide_item_img{
  border: 3px solid var(--main-color);
  border-radius: 20px;
}
.home_guide_item_img.img_fit:before{
  padding-top: 131.429%;
}
.home_guide_item_title_en{
  position: absolute;
  z-index: 2;
  bottom: -35px;
  left: 0;
  right: 0;
}
.home_guide_item_title_ja{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 55px;
  margin-bottom: 15px;
}
.home_guide_item_title_ja a{
  display: block;
  background: #f0f000;
  padding: 5px 10px;
  position: relative;
  z-index: 1;
}
.home_guide_item_title_ja a:after{
  content: "〉";
  position: absolute;
  z-index: 1;
  top: 48%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_guide_item_title_ja a:hover{
  background-color: var(--main-color);
  color: #FFF;
}
.home_guide_item_title_ja a:hover:after{
  margin-right: -5px;
}

.home_guide_item_title_ja2{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.416;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
  margin-top: 50px;
  margin-bottom: 10px;
}

.home_guide_item_txt{
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}

.home_guide_item_illust{
  position: absolute;
  z-index: 2;
}
.home_guide_item_illust.pos1{
  width: calc(216px * var(--home-guide-illust-resize));
  top: 0;
  left: 0;
  -webkit-transform: translate(-10%, -40%);
  transform: translate(-10%, -40%);
}
.home_guide_item_illust.pos2{
  width: calc(483px * var(--home-guide-illust-resize));
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -16%);
  transform: translate(-50%, 16%);
}
.home_guide_item_illust.pos3{
  width: calc(177px * var(--home-guide-illust-resize));
  top: 50%;
  right: 0;
  -webkit-transform: translate(16%, -268%);
  transform: translate(16%, -268%);
}

@media (max-width:374px){
  
}
@media (min-width:375px){
  .home_guide_item_title_en img{
    text-align: center;
    width: 100%;
  }
}
@media (max-width:767px){
  :root{
    /*--home-guide-illust-resize: 0.2;*/
    --home-guide-illust-resize: 0.7;
  }
  
  .home_guide_item_txt{
    letter-spacing: 0.025em;
  }
  .home_guide_item_title_en{
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
  }
  
}
@media (min-width:768px){
  
  /* About */
  .home_about{
    
  }
  .home_about_box1{
    width: 60.81%;
  }
  .home_about_box2{
    width: 38.19%;
    margin-top: 30px;
  }
  .home_about_title_en1{
    font-size: 42px;
  }
  .home_about_title_en2{
    margin-bottom: 25px;
  }
  .home_about_title_ja{
    font-size: 21px;
    margin-bottom: 32px;
  }
  .home_about_txt{

  }

  .home_about_illust{
  }
  .home_about_illust_img{

  }
  .home_about_illust_img.pos1{
    margin-right: -103px;
  }
  .home_about_illust_img.pos2{
    width: 48.47%;
    left: 47%;
  }
  
  
  /* Guide */
  .home_guide{
    margin-left: -15px;
    margin-right: -15px;
  }
  .home_guide_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .home_guide_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_guide_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_guide_item_img{
    border-radius: 20px;
  }
  .home_guide_item_title_en{
    bottom: -35px;
  }
  .home_guide_item_title_ja{
    font-size: 18px;
    margin-top: 55px;
    margin-bottom: 15px;
  }
  .home_guide_item_title_ja a{
    padding: 5px 10px;
  }
  .home_guide_item_title_ja a:after{
    top: 48%;
    right: 10px;
  }
  
  .home_guide_item_title_ja2{
    font-size: 17px;
    padding-bottom: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  
  .home_guide_item_txt{
    font-size: 17px;
    line-height: 2;
  }

  .home_guide_item_illust{
  }
  .home_guide_item_illust.pos1{
    -webkit-transform: translate(-40%, 42%);
    transform: translate(-40%, 42%);
  }
  .home_guide_item_illust.pos2{
    -webkit-transform: translate(-50%, -62%);
    transform: translate(-50%, -62%);
  }
  .home_guide_item_illust.pos3{
    -webkit-transform: translate(48%, -97%);
    transform: translate(48%, -97%);
  }
  
}
@media (min-width:1024px){
  .home_guide_item_title_ja2{
    font-size: 21px;
}

}
@media (min-width:1200px){

  .home_guide_item_title_ja2{
    font-size: 24px;
  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}




/*******************************
*　
********************************/

/* セクション設定 */
.pg_blog{

}
.pg_blog .section.sec1{

}
.pg_blog .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_blog{

  }
  .pg_blog .section.sec1{

  }
  .pg_blog .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */

/* 一覧 */
.blog_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.blog_list_item{
  width: 50%;
  padding: 0 5px;
}
.blog_list_item:nth-child(n+3){
  margin-top: 30px;
}
.blog_list_item_inner{
  display: block;
}
.blog_list_item_img{
  border: 3px solid #FFF;
  border-radius: 10px;
}
.blog_list_item_img.img_fit:before{
  padding-top: 75.789%;
}
.blog_list_item_date{
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
.blog_list_item_title{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.666;
  
  margin-top: 10px;
}

.blog_list_item_inner:hover .blog_list_item_img img{
  transform: scale(1.02);
}


.blog_list_item.wh{
  color: #FFF;
}
.blog_list_item.wh .blog_list_item_title{
  
}
.blog_list_item.wh .blog_list_item_inner:hover{
  color: var(--main-color);
  color: yellow;
}

@media (max-width:767px){

}
@media (min-width:768px){

  
  /* 一覧 */
  .blog_list{
    margin-left: -10px;
    margin-right: -10px;
  }
  .blog_list_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .blog_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .blog_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  
  .blog_list.home .blog_list_item:nth-child(n+4){
    display: none;
  }
  
  .blog_list_item_inner{
  }
  .blog_list_item_title{
    font-size: 16px;
    margin-top: 15px;
  }
  
}
@media (min-width:1024px){
  

}
@media (min-width:1200px){

  /* 一覧 */
  .blog_list{
    margin-left: -60px;
    margin-right: -60px;
  }
  .blog_list_item{
    width: 33.333%;
    padding: 0 60px;
  }
  .blog_list_item:nth-child(n+4){
    margin-top: 60px;
  }
  .blog_list_item_inner{
  }
  .blog_list_item_title{
    font-size: 18px;
    margin-top: 15px;
  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}



/*******************************
*　
********************************/

/* セクション設定 */
.pg_sanma{

}
.pg_sanma .section.sec1{

}
.pg_sanma .section.sec2{

}
.pg_sanma .section.sec3{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  

}
@media (min-width:1024px){


}
@media (min-width:1200px){

  .pg_sanma{

  }
  .pg_sanma .section.sec1{

  }
  .pg_sanma .section.sec2{
    padding-top: 100px;
  }
  .pg_sanma .section.sec3{
    padding-top: 100px;
  }

}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */

/* 魅力コンテンツ */
.sanma_contents{
  
}
.sanma_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sanma_contents_row + .sanma_contents_row{
  margin-top: 30px;
}
.sanma_contents_box1{
  width: 100%;
}
.sanma_contents_box2{
  width: 100%;
  padding-left: 15px;
  margin-top: 25px;
}

.sanma_contents_title{
  padding-left: 45px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bfbfbf; 
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.sanma_contents_title_ja{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0;
}
.sanma_contents_title:before{
  content: "";
  width: 46px;
  aspect-ratio: 46 / 64;
  background-image: url('/img/tt_icon1.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: absolute;
  left: -15px;
  bottom: 0;
}

.sanma_contents_txt{
  line-height: 1.777;
  /*padding-left: 10px;*/
}

.sanma_contents_img{
  border: 3px solid var(--main-color);
  border-radius: 20px;
  overflow: hidden;
}
.sanma_contents_img.img_fit:before{
  padding-top: 70.370%;
}


/* おすすめ */
.sanma_reco_msg{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.769;
  letter-spacing: 0.075em;
  text-align: justify;
}
* + .sanma_reco_msg{
  margin-top: 40px;
}

@media (max-width:767px){

}
@media (min-width:768px){

  
  /* 魅力コンテンツ */
  .sanma_contents{

  }
  .sanma_contents_row{
  }
  .sanma_contents_row + .sanma_contents_row{
    margin-top: 50px;
  }
  .sanma_contents_box1{
    width: 48.64%;
  }
  .sanma_contents_box2{
    width: 48.64%;
    padding-left: 15px;
    margin-top: 0;
  }

  .sanma_contents_title{
    /*padding-left: 45px;*/
    /*padding-bottom: 15px;*/
    /*margin-bottom: 25px;*/
  }
  .sanma_contents_title_ja{
    /*font-size: 20px;*/
    /*line-height: 1.5;*/
  }
  .sanma_contents_title:before{
    /*width: 46px;*/
    /*left: -15px;*/
  }

  .sanma_contents_txt{
    line-height: 1.777;
    padding-left: 10px;
  }

  .sanma_contents_row:nth-child(odd) .sanma_contents_box1{
    order: 1;
  }
  .sanma_contents_row:nth-child(odd) .sanma_contents_box2{
    order: 2;
  }
  .sanma_contents_row:nth-child(even) .sanma_contents_box1{
    order: 2;
  }
  .sanma_contents_row:nth-child(even) .sanma_contents_box2{
    order: 1;
  }

  /* おすすめ */
  .sanma_reco_msg{
    font-size: 20px;
    text-align: center;
  }
  * + .sanma_reco_msg{
    margin-top: 60px;
  }
  
}
@media (min-width:1024px){



}
@media (min-width:1200px){

  /* 魅力コンテンツ */
  .sanma_contents{

  }
  .sanma_contents_row{
  }
  .sanma_contents_row + .sanma_contents_row{
    margin-top: 80px;
  }
  .sanma_contents_box1{
    width: 48.64%;
  }
  .sanma_contents_box2{
    width: 48.64%;
    padding-left: 15px;
    margin-top: 25px;
  }
  .sanma_contents_title{
    padding-left: 55px;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
  .sanma_contents_title_ja{
    font-size: 24px;
    line-height: 1.5;
  }
  
  /* おすすめ */
  .sanma_reco_msg{
    font-size: 26px;
    text-align: center;
  }
  * + .sanma_reco_msg{
    margin-top: 60px;
  }
  

}
@media (min-width:1470px){

 

}
@media (min-width:1720px){


}







/*******************************
*　
********************************/

/* セクション設定 */
.pg_first{

}
.pg_first .section.sec1{

}
.pg_first .section.sec2{

}
.pg_first .section.sec3{

}



@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_first{

  }
  .pg_first .section.sec1{

  }
  .pg_first .section.sec2{

  }
  .pg_first .section.sec3{

  }

}
@media (min-width:1024px){


  .pg_first .section.sec3{
    padding-top: 85px;
  }
  
}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */


/* ルール */
.first_rule_msg{
  font-size: 16px;
  font-weight: 500;
  text-align: justify;
  line-height: 1.75;
}
.first_rule_contents + .first_rule_msg{
  margin-top: 50px;
}

.first_rule_contents{
  
}
* + .first_rule_contents{
  margin-top: 50px;
}
.first_rule_contents_row{
  
}
.first_rule_contents_row + .first_rule_contents_row{
  margin-top: 75px;
}
.first_rule_contents_title{
  font-size: 18px;
  font-weight: 700;
  background: #e5ddd0;
  padding: 7px 5px 8px 60px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.first_rule_contents_title:before{
  content: "";
  width: 50px;
  aspect-ratio: 77 / 109;
  background-image: url('/img/tt_icon2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  position: absolute;
  left: 0;
  bottom: 5px;
}
.first_rule_contents_txt{
  line-height: 1.75;
  padding-left: 10px;
}
.first_rule_contents_txt ul{
  
}
.first_rule_contents_txt ul li{
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.first_rule_contents_txt ul li:before{
  content: "■";
  margin-right: 5px;
  color: var(--sub-color);
}

.first_rule_contents_txt dl{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.first_rule_contents_txt dl + dl{
  margin-top: 20px;
}
.first_rule_contents_txt dl dt{
  
}
.first_rule_contents_txt dl dd{
  
}



@media (max-width:767px){

  .first_rule_contents_txt dl{
    flex-wrap: wrap;
  }
  .first_rule_contents_txt dl dt{
    
  }
  .first_rule_contents_txt dl dd{
    margin-left: auto;
  }
  
}
@media (min-width:768px){
  
  /* ルール */
  .first_rule_msg{
    font-size: 18px;
    line-height: 1.888;
    /*text-align: center;*/
  }
  .first_rule_contents + .first_rule_msg{
    margin-top: 95px;
  }


  .first_rule_contents{

  }
  * + .first_rule_contents{
    margin-top: 105px;
  }
  .first_rule_contents_row{

  }
  .first_rule_contents_row + .first_rule_contents_row{
    margin-top: 122px;
  }
  .first_rule_contents_title{
    font-size: 21px;
    padding: 7px 5px 8px 95px;
    margin-bottom: 20px;
  }
  .first_rule_contents_title:before{
    width: 77px;
    bottom: 5px;
  }
  .first_rule_contents_txt{
    line-height: 1.888;
    padding-left: 10px;
  }
  
}
@media (min-width:1024px){

  /* ルール */
  .first_rule_msg{
    text-align: center;
  }

}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}




/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}

/* メイン部分 */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
@media (min-width:1470px){


}
@media (min-width:1720px){


}


/*******************************
*　
********************************/

/* セクション設定 */
.pg_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{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li 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 li 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 li.on a,
.cmn_cat_nav li a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 li a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 li a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 li a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp li{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp li{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp li{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp li{
    font-size: 10px;
  }

}
@media (min-width:768px){

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav li{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav li a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav li 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 li{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav.col2 li{
    width: 50%;
  }
  .cmn_cat_nav.col3 li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 li{
    width: 25%;
  }
  .cmn_cat_nav.col5 li{
    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 var(--main-color);
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 10px;
  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{
  color: #808080;
  margin-bottom: 10px;
  
}
.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;
}

.post_main_img{
  text-align: center;
  margin-bottom: 30px;
}

/* 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{
  margin-bottom: 30px;
}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}


/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}
.pagination .page-numbers{
  align-self: stretch;
  background: #FFF;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 120px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  background: #FFF;
  padding: 10px 10px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive{
  width: 90px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: var(--sub-color);;
  color: #ffffff;
  padding: 10px 5px;
}


/* コピー用 */
@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;
  }
  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    font-size: 13px;
  }
  .pagination .nav-posts .page-archive{
    font-size: 13px;
  }
  
}
@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{
    padding: 0 10px 10px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
  }
  .posts_detail .meta .title{
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }
  
  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    font-size: 16px;
    width: 200px;
  }
  .pagination .nav-posts .page-archive{
    font-size: 16px;
    width: 200px;
  }


}
@media (min-width:1024px){

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }

}
@media (min-width:1200px){

  .pg_news{
    padding-top: 100px;
  }
  
  .posts_detail .meta .title{
    font-size: 24px;
  }
  
  .pagination .nav-posts .page-next,
  .pagination .nav-posts .page-prev{
    width: 250px;
  }
  .pagination .nav-posts .page-archive{
    width: 333px;
  }
}



/*******************************
*　ギャラリー（サムネ横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){


}





/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.18em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  cursor: pointer;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

@media only screen and (min-width: 1024px){
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 155px;
  }
  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .pg_contact .d-inline {
    display: block!important;
  }
  .pg_contact .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

  .privacy_ttl {
    font-size: 15px;
    padding-left: 10px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
  }
}


/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
