@charset "UTF-8";

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

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

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


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

.img_fit{
  position: relative;
  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: 30px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height:auto;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_contact_btn{
    display: none;
  }

  .header{
    padding: 10px;
  }
  .hdr_logo img{
    width:120px;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px 14px 26px;
    transition: all .2s;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    aspect-ratio:1;
    background: #009944;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    margin-left: 43px;
    border: 1px solid transparent;
  }

  .hdr_contact_btn p{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: -0.05em;
  }
  .hdr_contact_btn p:before{
    content:"\f0e0";
    font-family: "fontAwesome";
  }
  .hdr_contact_btn:hover{
    background: #fff;
    color: #009944;
    border: 1px solid #009944;
  }
  .hdr_contact_btn:hover{
    background: #fced4b;
    color: #009944;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255,255,255,0.7);
    padding: 5px 32px 5px 26px;
  }
  .header.slim .hdr_logo img{
   width: 120px;
    height: calc(var(--logo-height) * 0.8);
    height: auto;
  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_inner{
  position: relative;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv_inner:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 111;
  background-image: url(/system_panel/uploads/images/btm_img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom:-36px;
  left: 50%;
  transform:translateX(-50%);
  z-index: 2;
}

/* MVテキスト */
.mv_text{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.mv_text1{
  font-size: clamp(2.5rem, 1.625rem + 4.38vw, 6.875rem);
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.09em;
  text-shadow    : 
    2px  2px 6px #ffffff,
    -2px  2px 6px #ffffff,
    2px -2px 6px #ffffff,
    -2px -2px 6px #ffffff,
    2px  0px 6px #ffffff,
    0px  2px 6px #ffffff,
    -2px  0px 6px #ffffff,
    0px -2px 6px #ffffff;   
}
.mv_text1 p{
  letter-spacing: 0;
}
.mv_text2{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  line-height: 1;
  text-shadow    : 
    2px  2px 6px #ffffff,
    -2px  2px 6px #ffffff,
    2px -2px 6px #ffffff,
    -2px -2px 6px #ffffff,
    2px  0px 6px #ffffff,
    0px  2px 6px #ffffff,
    -2px  0px 6px #ffffff,
    0px -2px 6px #ffffff;
  margin-top: 5px;
}
.mv_text3{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.94em;
  font-family: var(--font-ja);
  text-shadow    : 
    2px  2px 6px #ffffff,
    -2px  2px 6px #ffffff,
    2px -2px 6px #ffffff,
    -2px -2px 6px #ffffff,
    2px  0px 6px #ffffff,
    0px  2px 6px #ffffff,
    -2px  0px 6px #ffffff,
    0px -2px 6px #ffffff;
  margin-top: 16px;
}
.mv_text3 p{
  display: inline-block;
  background: linear-gradient(transparent 70%, #fced4b 70%);
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

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

  /* MVテキスト */
  .mv_text1{

  }
  .mv_text1 p{

  }
  .mv_text2{
    font-size: 40px;
  }
  .mv_text3{
    font-size: 22px;
    margin-top: 30px;
  }
  .mv_text3 p{

  }

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


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

  /* MVテキスト */
  .mv_text1{

  }
  .mv_text1 p{

  }
  .mv_text2{
    font-size: 50px;
  }
  .mv_text3{
    font-size: 24px;
  }
  .mv_text3 p{

  }

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

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

  /* MVテキスト */
  .mv_text1{

  }
  .mv_text1 p{

  }
  .mv_text2{
    font-size: 70px;
  }
  .mv_text3{
    font-size: 36px;
  }
  .mv_text3 p{

  }

}


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

/* サイドバー */
.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: 30px;
  position: relative;
  z-index: 1;
}
.pg_header_img{
  position: relative;
  z-index: 1;
}
.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.pg_header_img_outer{
  position: relative;
}
.pg_header_img_outer:after{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 111;
  background-image: url(/system_panel/uploads/images/btm_img.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.pg_header_txt_box{
  padding-top:50px;
}
.pg_header_txt_outer{

}
.pg_header_txt_1{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.pg_header_txt_1:after{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 50 / 40;
  background-image: url(/system_panel/uploads/images/capsule.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 16px;
}
.body_news-detail .pg_header_txt_1:after,
.body_news .pg_header_txt_1:after,
.body_column-detail .pg_header_txt_1:after,
.body_column .pg_header_txt_1:after,
.body_products-detail .pg_header_txt_1:after,
.body_products .pg_header_txt_1:after,
.body_store-information .pg_header_txt_1:after,
.body_recruit .pg_header_txt_1:after,
.body_home-visit-pharmacy .pg_header_txt_1:after,
.body_rental-of-welfare-equipment .pg_header_txt_1:after,
.body_nursing-care-product-sales .pg_header_txt_1:after{
  display: none;
}
.pg_header_txt_2{
  display: inline-block;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-ja);
  position: relative;
  z-index: 1;
  background: #fff;
  padding-right: 20px;
  letter-spacing: 0;
}
.pg_header_txt_2_outer{
  position: relative;
  margin-top: 5px;
}
.pg_header_txt_2_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #b2da65;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}

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

  .pg_header_title_txt{

  }

  .pg_header_txt_box{
    padding-top: 100px;
  }
  .pg_header_txt_outer{

  }
  .pg_header_txt_1{
    font-size: 24px;
  }
  .pg_header_txt_2{
    font-size: 30px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img:before{
    padding-top: 350px;
  }

  .pg_header_txt_box{
    padding-top: 128px;
  }
  .pg_header_txt_outer{

  }
  .pg_header_txt_1{

  }
  .pg_header_txt_2{

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

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img:before{
    padding-top:600px;
  }

  .pg_header_txt_box{
    padding-top: 128px;
  }
  .pg_header_txt_outer{

  }
  .pg_header_txt_1{
    font-size: 38px;
  }
  .pg_header_txt_2{
    font-size: 39px;
  }

}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: #b2da65;
  color: #fff;
  padding: 10px;
}
.ftr_copy a:hover{
  opacity: 0.5;
  color: #fff;
}
.ftr_copy p{
  letter-spacing: 0;
}

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

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



.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  background: #ece8e1;
  border-radius: 80px;
}
.ftr_contact_box1{
  width: 100%;
  padding: 50px 16px;
}
.ftr_contact_box1_tt{

}
.ftr_contact_box1_tt1{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #b2da65;
}
.ftr_contact_box1_tt2{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 5px;
}
.ftr_contact_box1 .content_desc{
  margin-top: 36px;
}
.ftr_contact_box1 .content_desc p{
  letter-spacing: 0.075em;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftr_contact_box2_img{

}
.ftr_contact_box2_img:before{
  padding-top: 90.21%;
}
.ftr_contact_box2_img img{
  border-radius: 0 0 80px 80px;
}

.link_items{
  margin-top: 40px;
}
.link_0{
  width: 100%;
  max-width: 585px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-ja);
  padding: 17px 25px;
  margin-inline:auto;
  transition: all .2s;
}
.link_0.item1:hover{
  background: #fced4b;
  color: #88b630;
}
.link_0.item1:hover:before{
  background: #fff;
}
.link_0.item1:hover:after{
  color: #fff;
}
.link_0:hover{
  transform: none;
}
.link_0:hover{
  background:#fced4b;
}
.link_0.item1{
  background: #88b630;
  border: 1px solid transparent;
  color: #fff;
  position: relative
}
.link_0.item1:before{
  content: "";
  display: block;
  width: 2px;
  max-height: 46px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  right:12.3%;
  transform: translateY(-50%);
}
.link_0.item1:after{
  content: "▶";
  display: block;
  font-size: 17px;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.link_0.item2{
  border: 1px solid #88b630;;
  border-left: none;
  border-right: none;
  color: #88b630;
  padding: 17px 13px 17px 25px;
}
.link_0 + .link_0{
  margin-top: 11px;
}
.link_0 .tel{
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.075em;
}

.ftr_1{
  padding-top: 50px;
  padding-bottom: 40px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{
  display: block;
  text-align: center;
}
.ftr__add{
  margin-top: 30px;
}
.ftr__add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2.25em;
}
.ftr__add_item{
  display: flex;
  align-items: center;
}
.ftr__add_txt.left{
  position: relative;
  padding-right: 10px;
  margin-right: 14px;
}
.ftr__add_txt.left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}

.ftr_1 a:hover{
  color: var(--main-color);
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }
  .pg_header_txt_1:after{
    width: 36px;
  }
  .pg_header_img_outer:after{
    width: 1000px; 
  }

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

  .ftr_contact_wrap{
    width: 100%; 
    padding-inline:15px;
  }
  .link_0.item2{
    flex-wrap: wrap;
    justify-content: center;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_logo{
    width: 60%;
    display: block;
    margin-inline: auto;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr__add_item{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-inline: auto;
  }
  
  .ftr_contact_box2{
        padding: 0px 50px 30px;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }

  .link_items{
    margin-top: 85px;
  }
  .link_0{

  }
  .link_0 .tel{
    font-size: 28px;
  }

  .ftr_contact_wrap{
    max-width: 720px;
    width: 100%;
    margin-inline:auto;
    padding: 0 15px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    padding: 50px;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1{
    font-size: 60px;
  }
  .ftr_contact_box1_tt2{

  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{

  }
  .ftr_contact_box2_img{

  }
  .ftr_contact_box2_img:before{

  }
  .ftr_contact_box2_img img{

  }

  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    margin-inline: -30px;
    position: relative;
  }
  .ftr_links:before{
    color: #88b630;
  }
  .ftr_link{
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 10px;

  }
  .ftr_1_box a:hover{
    color: #88b630;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background-image: url(/system_panel/uploads/images/arr4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .ftr_link p{
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }

  .ftr_1{
    padding-top: 150px;
    padding-bottom: 75px;
  }
  .ftr_1_box{

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

  }
  .ftr__add{
    margin-top: 44px;
  }
  .ftr__add_txt{

  }
  .ftr__add_item{

  }
  .ftr__add_txt.left{

  }
  .ftr__add_txt.left:after{
    content: "";
    display: block;
    width: 1px;
    height: 18px;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .ftr_1_box2{
    width: 52.22%;
    padding-top: 54px;
  }


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

  .ftr_contact_wrap{
    max-width: 960px;
    width: 100%;
  }

  .ftr_link{
    padding-inline: 30px;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 20px;
  }
}
@media (min-width:1200px){
  .link_0{
    max-width: 585px;
    margin-left: 0;
  }
  .link_0 .tel{
    font-size: 38px;
  }
  .link_0.item1{
    font-size: 24px;
  }
  .link_0.item2{
    font-size: 20px;
  }

  .ftr_contact_wrap{
    width: 100%; 
    max-width: 91.71%;
    margin-inline:auto;
    padding: 0;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 100%;
    padding: 63px 16px 63px 116px;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_tt1{
    font-size: 90px;
  }
  .ftr_contact_box1_tt2{

  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  }

  .ftr_contact_box2_img:before{
    padding-top: 90.21%;
  }

  .ftr_1_box{

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

  }
  .ftr__add{

  }
  .ftr__add_txt{

  }
  .ftr__add_item{

  }
  .ftr__add_txt.left{

  }
  .ftr__add_txt.left:after{
    content: "";
    display: block;
    width: 1px;
    height: 18px;
    background: #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .ftr_1_box2{
    width: 58.55%;
  }
}
@media (min-width:1366px){
  .ftr_contact_box1{
    width: 59.96%;
    padding: 63px 16px 63px 65px;
  }
  .ftr_contact_box2{
    width: 40.03%;

  }
  .ftr_contact_box2_img{
    border-radius: 0 80px 80px 0;
  }
  .ftr_contact_box2_img img{
    border-radius: 0 80px 80px 0;
  }
  .ftr_contact_box2_img:before{
    padding-top: 650px;
  }

  .ftr_links{
    position: relative;
    margin-inline:-40px;
  }
  .ftr_link{
    width: 33.333%;
    padding-inline:40px;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 25px;
  }
}
@media (min-width:1536px){
  .ftr_contact_box1{
    padding: 63px 16px 63px 116px;
  }


}
@media (min-width:1720px){
  .ftr_contact_box1{
    padding: 63px 16px 63px 116px;
  }

  .ftr_contact_box2_img:before{
    padding-top: 636px;
  }
}
/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.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: 190px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: none;
  background:none;
  /*border-radius: 27px;*/
  color: #181818;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  display: block;
  width: 87px;
  aspect-ratio:87 / 50;
  background-image: url(/system_panel/uploads/images/arrr5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: 0.2s all;
  margin-left: 33px;
  position: relative;
  right: 0;
}
.read_more a:hover{
  color: #181818;
  background: none;
}
.read_more a:hover:after{
  right: 0;
}
.read_more.center{
  width: 100%;
  justify-content: center;
  text-align: center;
}
.read_more.center a{
  justify-content: center;
}
.read_more.en a{
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.read_more.lg a{
  font-weight: 700;
}
.read_more.or a{
  color: #fda249;
}
.read_more.lg p{
  letter-spacing: 0.075em;
}

/* 見出し */
.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: 400;
  letter-spacing: 0;
  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;
}


/* セクション */
.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{

}


@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 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: 285px;
    font-size: 18px;
    padding:0;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 18px;
  }

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

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


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

  /* ページネーション */
  .webgene-pagination{
    margin-top: 95px;
  }
  .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){
  .read_more.lg a{
    font-size: 21px;
  }

}


@media (min-width:1366px){

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

}

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



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

}
.pg_home .section.sec1{
  padding-top: 60px;
}
.pg_home .section.sec2{
  padding-top: 0;
}
.pg_home .section.sec3{
  padding-top: 30px;
}
.pg_home .section.sec4{
  padding-top:70px;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 95px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 32px;
  }
  .pg_home .section.sec4{
    padding-top: 112px;
  }
  .pg_home .section.sec5{
    padding-top: 37px;
  }
  .pg_home .section.sec6{
    padding-top: 90px;
  }
  .pg_home .section.sec7{
    padding-top: 100px;
  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 95px;
  }
  .pg_home .section.sec2{
    padding-top: 150px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 150px;
  }
  .pg_home .section.sec8{

  }

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


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


}
/*main*/
/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
}
.news_tt{

}
.en_tt{
  font-size: 30px;
  font-weight: 200;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #86d44c;
}
.en_ja{
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-ja);
  color: #86d44c;
  margin-top: 10px;
}
.home_sec1_box1 .read_more{

}
.home_sec1_box2{
  width: 100%;
  margin-top: 30px;;
}
.news_list .webgene-blog{

}
.news_list .webgene-item{

}
.news_list .webgene-item:nth-child(n+2){
  margin-top: 16px;
}
.news_list .webgene-item a{
  display: block;
  border: 1px solid #d9d9d9;
  border-radius: 45px;
  padding: 20px;
}
.news_list .webgene-item a:hover{
  color: #88b630
}
.news_list .webgene-item .date{
  font-size: 16px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
}

/*sec2*/
.home_sec2_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 0;
}
.home_sec2_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f9f6a0;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.home_sec2_box1{
  width: 100%; 
  position: relative;
}
.home_sec2_box1:after{
  content: "";
  display: block;
  width: 40.67%;;
  aspect-ratio:303 / 236;
  background-image: url(/system_panel/uploads/images/il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -36%;
  right: -4%;
}
.home_sec2_box1_img_outer{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 745 / 580;
}
.home_sec2_box1_img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mask.png);
}
.home_sec2_box1_img img{
  width: 100%;
}
.home_sec2_box2{
  width: 100%; 
  margin-top: 40px;
}
.about_tt{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #93c336;
  display: flex;
  align-items: center;
}
.about_tt:before{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio:50 / 40;
  background-image: url(/system_panel/uploads/images/capsule.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 16px;
}
.sec_tt{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.38em;
}
.home_sec2_box2 .sec_tt{
  margin-top: 20px;
} 
.sec_tt p{
  letter-spacing: 0;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  line-height: 1.888em;
  text-align: justify;
}
.content_desc p{
  letter-spacing: 0.075em;;
}
.home_sec2_box2 .content_desc{
  margin-top: 20px;
}

/*sec3*/
.home_sec3_wrap{

}
.home_sec3_wrap .tt2{
  margin-bottom: 0;
}
.color_en{
  font-size: clamp(2.5rem, 1.625rem + 4.38vw, 6.875rem);
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.home_sec3_wrap .tt2_ja{
  margin-top: 3px;
}
.tt2_sub{

}
.tt2_sub:before{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio:50 / 40;
  background-image: url(/system_panel/uploads/images/capsule.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-inline:auto;
}
.tt2_sub_txt1{
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0;
}
.tt2_sub_txt2{
  text-align: justify;;
  font-size: 16px;
  font-weight: 500; 
  line-height: 2;
  margin-top: 9px;
}
.tt2_sub_txt2 p{
  letter-spacing: 0;
}

/*sec3*/
.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 37px;
  position: relative;
}
.home_sec3_items:before{
  content: "";
  display: block;
  width: 100vw;
  height: 500px;
  background: #b2da65;
  position: absolute;
  top: 150px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.home_sec3_item{
  width: 50%;
  padding-inline:5px;
}
.home_sec3_item:nth-child(n+3){
  margin-top: 20px;;
}
.home_sec3_item_inner{
  display: block;
  overflow: hidden;
  border-radius: 180px;
  border:5px solid #fced4b;; 
  padding-bottom: 85px;
  position: relative;
  background: #fff;
}
.home_sec3_item_inner:hover{
  color: #88b630
}
.home_sec3_item_inner:after{
  content: "";
  display: block;
  width: 38px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arr1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 30px;;
  left: 50%;
  transform:translateX(-50%);
}
.home_sec3_item_img:before{
  padding-top: 75%;
}
.home_sec3_item_inner:hover .home_sec3_item_img img{
  transform: scale(1.02);
}
.home_sec3_item_img img{
  border-radius: 180px 180px 0 0;
  border-radius: 0;
  transition: all .2s;
}
.home_sec3_item_content{
  padding: 10px 5px;
}
.home_sec3_item_txt1{
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #fda249;
}
.home_sec3_item_txt2{
  text-align: center;
  font-size:17px;
  font-weight: 500;
  font-family:var(--font-ja);
}
.home_sec3_item .content_desc{
  display: none;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 16px;
}
.home_sec3_item .content_desc p{
  letter-spacing: 0;
}

/*sec4*/
.home_sec4_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec4_head_box1{
  width: 100%;
  position: relative;
}
.home_sec4_head_box1 .color_en{
  font-size: clamp(2.5rem, 1.5rem + 5vw, 7.5rem);
  line-height: 1.13em;
}
.home_sec4_head_box1:before{
  content: "";
  display: block;
  width: 30.94%;
  aspect-ratio: 181 / 261;
  background-image: url(/system_panel/uploads/images/il2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 6%;
  right: 3%;
  display: none;
}

.home_sec4_head_box1 .color_en p{
  letter-spacing: -0.05em;
}
.home_sec4_head_box2{
  width: 100%;
  margin-top: 30px;;
}
.home_sec4_head_box2_tt{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  position: relative;
  display: flex;
  align-items: center;
}
.home_sec4_head_box2_tt:before{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 50 / 40;
  background-image: url(/system_panel/uploads/images/capsule.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.home_sec4_head_box2_tt:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.home_sec4_head_box2_tt p{
  display: inline-block;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0 10px 0 50px;;
}
.home_sec4_head_box2 .content_desc{
  margin-top: 11px;
}
.home_sec4_head_box2 .content_desc p{
  letter-spacing: 0.075em;
}

.home_sec4_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 38px;
}
.home_sec4_item{
  width: 100%;
}
.home_sec4_item:nth-child(n+2){
  margin-top: 50px;;
}
.home_sec4_item_inner{
  background: #f3ece2;
  border-radius: 20px;
  border: 1px solid #cccccc;
  text-align: center;
  padding-bottom: 26px;
}
.home_sec4_item_icon{
  margin-top: -38px;
}
.home_sec4_item_tt{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-ja);
  text-align: center;
  letter-spacing: 0;
  display: inline-block;
  background: linear-gradient(transparent 70%, #fced4b 70%);
}
.home_sec4_item .content_desc{
  line-height: 1.75em;
  text-align: justify;
  margin-top: 11px;
  padding: 0 30px;
}
.home_sec4_item_lists{
  padding: 0 16px;
  margin-top: 19px;
}
.home_sec4_item_list{
  text-align: left;
  background: #fff;
  border-radius: 19px;
  border: 1px solid #cccccc;
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 500;
  padding: 6px;
}
.home_sec4_item_list:nth-child(n+2){
  margin-top: 3px;
}
.home_sec4_item_list p{
  letter-spacing: 0;
  position: relative;
  padding-left: 40px;
}
.home_sec4_item_list p:before{
  content: "";
  display: block;
  width: 26px;;
  aspect-ratio:26 / 23;
  background-image: url(/system_panel/uploads/images/check.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 9px;
}
.hosok_desc{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.8em;
  text-align: justify;
  margin-top: 20px;
}
.hosok_desc p{
  letter-spacing: 0;
}

/*Sec5*/
.home_sec5_wrap{

}
.home_sec5_wrap .en_tt{
  display:flex;
  justify-content: center;
  align-items: center;
}
.home_sec5_wrap .en_tt:before{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 50 / 40;
  background-image: url(/system_panel/uploads/images/capsule.png);
  background-repeat: no-repeat;
  background-size: contain;
  /*    position: absolute;
      top: 50%;
      left: 0px;
      transform: translateY(-50%);
      z-index: 2;
      background-position: center center;*/
  margin-right: 5px;
}
.home_sec5_wrap .text-center{
  margin-bottom: 44px;
  position: relative;
}
.home_sec5_wrap .text-center:before{
  content: "";
  display: block;
  width: 20.46%;
  aspect-ratio: 311 / 304;
  background-image: url(/system_panel/uploads/images/il6.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -44%;
  transform: translateY(-50%);
  left: 4.5%;
}
.home_sec5_wrap .text-center:after{
  content: "";
  display: block;
  width: 24.01%;
  aspect-ratio: 365 / 276;
  background-image: url(/system_panel/uploads/images/ill4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -29%;
  transform: translateY(-50%);
  right: 0.5%;
}
.home_sec5_wrap .column_list{

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

}
.column_list .webgene-item a:hover{
  color: #88b630;
}
.column_list .webgene-item .img{
  overflow: hidden;
  border-radius: 20px;
}
.column_list .webgene-item .img img{
  border-radius: 20px;
}
.column_list .webgene-item .img:before{
  padding-top: 80%;
}
.column_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0;
}

/*sec6*/
.home_sec6_wrap{
  position: relative;
}
.home_sec6_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f9f6a0;
  position: absolute;
  top: 24px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.home_sec6_wrap .home_sec2_wrap:after{
  display: none;
}
.home_sec6_wrap .home_sec2_box1:after{
  display: none;
}
.about_tt.ja {
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.1em;
}

/*sec7*/
.home_sec7_items{
  display: flex;
  flex-wrap: wrap;
}
.home_sec7_item{
  width: 100%;
}
.home_sec7_item:nth-child(n+2){
  margin-top: 30px;
}
.home_sec7_item_inner{
  border-radius: 20px;
  box-shadow: 0.707px 0.707px 4.85px 0.15px rgba(0, 0, 0, 0.35);
  background: #f9f9f9;
}
.home_sec7_item_box1{

}
.home_sec7_item_box1_img:before{
  padding-top: 370px;
}
.home_sec7_item_box2{
  background: #f9f9f9;
  padding: 30px 16px;
}
.home_sec7_item_name{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  background: #f9f6a0;
  padding: 0 14px;
}
.home_sec7_item_add{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 20px;
}
.home_sec7_item_add a:hover{
  color: #88b630;
}
.home_sec7_item_box2 .read_more{
  margin-top: 13px;
}
.home_sec7_item_box2 .read_more.en a{
  max-width: 210px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*sec1*/
  .news_list .webgene-item .title{
    margin-top: 16px;
  }
  .home_sec2_box1:after{
    width: 33.67%;
    bottom: -29%;
  }
  .about_sec5_item_box1_right_tt:after,
  .home_sec5_wrap .en_tt:before,
  .home_sec4_head_box2_tt:before,
  .tt2_sub:before,
  .about_tt:before{
    width: 36px;
  }

  .home_sec3_items:before{
    top: 165px;
  }

  /*sec5*/
  .home_sec5_wrap .text-center:before{
    width: 21.22%;
    top: -33%;
  }

  /*sec7*/
  .home_sec7_item_box2{
    border-radius: 0 0 20px 20px;
  }
  .home_sec7_item_box1_img{
    border-radius: 20px 20px 0 0;
  }
  .home_sec7_item_box1_img:before{
    padding-top: 250px;
  }
  .home_sec7_item_box2 .read_more.en a{
    max-width: 250px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{

  }
  .news_tt{

  }
  .en_tt{
    font-size: 40px;
  }
  .en_ja{
    font-size: 16px;
  }
  .home_sec1_box1 .read_more{

  }
  .home_sec1_box2{
    margin-top: 40px;;
  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item:nth-child(n+2){
    margin-top: 22px;
  }
  .news_list .webgene-item a{
    display: flex;
    align-items: center;
    padding: 28px 0;
    position: relative;
  }
  .news_list .webgene-item a:before{
    content: "";
    display: block;
    background: #a6a6a6;
    width: 1px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 10.16%;
    transform: translateY(-50%);
  }
  .news_list .webgene-item a:after{
    content: "▶";
    display: block;
    font-size: 12px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    right: 6.2%;
    transform: translateY(-50%);
  }
  .news_list .webgene-item .date{
    width: 17.6%;
    text-align: center;
    position: relative;
  }
  .news_list .webgene-item .date:after{
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #a7a7a7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .news_list .webgene-item .title{
    width: 82.4%;
    padding: 0 10.16% 0 20px;
  }

  /*sec2*/
  .home_sec2_wrap{
    padding: 26px 0;
  }
  .home_sec2_box1{

  }
  .home_sec2_box1_img_outer{

  }
  .home_sec2_box1_img{

  }
  .home_sec2_box2{
    margin-top: 60px;
  }
  .about_tt{
    font-size: 24px;
  }
  .sec_tt{
    font-size: 28px;
  }
  .content_desc{

  }
  .home_sec2_box2 .content_desc{
    margin-top: 30px;
  }
  .home_sec2_box2 .read_more{
    margin-top: 24px;
    margin-top: 109px;
  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_wrap .tt2{

  }
  .color_en{

  }
  .home_sec3_wrap .tt2_ja{

  }
  .tt2_sub{

  }
  .tt2_sub_txt1{
    font-size: 30px;
  }
  .tt2_sub_txt2{
    text-align: center;
    font-size: 18px;
  }
  /*sec3*/
  .home_sec3_items{
    margin-inline:-7px;
  }
  .home_sec3_items:before{
    display: none;
  }
  .home_sec3_items:after{
    content: "";
    display: block;
    width: 1840px;;
    height: 900px;
    background: #b2da65;
    position: absolute;
    top: 150px;
    left: -120px;
    border-radius: 80px 0 0 80px;
    z-index: -1;
  }
  .home_sec3_item{

    padding-inline:7px;
  }
  .home_sec3_item_inner{
    padding-bottom: 72px;
  }
  .home_sec3_item_img:before{

  }
  .home_sec3_item_img img{
    border-radius: 180px 180px 0 0;
    border-radius: 0;
  }
  .home_sec3_item_content{
    padding: 10px 5px;
  }
  .home_sec3_item_txt1{
    font-size: 50px; 
  }
  .home_sec3_item_txt2{
    font-size: 20px;
  }
  .home_sec3_item .content_desc{
    text-align: center;
    display: block;
  }

  /*sec4*/
  .home_sec4_head{

  }
  .home_sec4_head_box1{
    width: 38.48%;
  }
  .home_sec4_head_box1 .color_en{

  }
  .home_sec4_head_box2{
    width: 52.23%;
    margin-top: 0;
  }
  .home_sec4_head_box2_tt{
    font-size: 22px;
  }
  .home_sec4_head_box2_tt:before{

  }
  .home_sec4_head_box2_tt:after{

  }
  .home_sec4_head_box2_tt p{

  }
  .home_sec4_head_box2 .content_desc{
    font-size: 18px;
    line-height: 2;
  }

  .home_sec4_items{

  }
  .home_sec4_item{

  }
  .home_sec4_item_inner{

  }
  .home_sec4_item_icon{
    margin-top: -38px;
  }
  .home_sec4_item_tt{
    font-size: 24px;
  }
  .home_sec4_item .content_desc{
    width: 61%;
    margin-inline: auto;
    padding-inline:0;
  }
  .home_sec4_item_lists{
    padding: 0 40px;
  }
  .home_sec4_item_list{
    font-size: 18px;
  }
  .home_sec4_item_list:nth-child(n+2){
    margin-top: 3px;
  }
  .home_sec4_item_list p{
    padding-left: 75px;
  }
  .home_sec4_item_list p:before{
    left: 24px;
  }
  .hosok_desc{
    text-align: center;
    font-size: 18px; 
    margin-top: 42px;
  }

  /*Sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_wrap .text-center{
    position: relative;
  }

  .home_sec5_wrap .column_list{

  }
  .column_list .webgene-blog{
    margin-inline:-20px;
  }
  .column_list .webgene-item{
    padding-inline:20px;
  }
  .column_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .column_list .webgene-item a{

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

  }
  .column_list .webgene-item .title{

  }
  .home_sec5_wrap .read_more{
    margin-top: 48px;
  }

  /*sec6*/
  .home_sec6_wrap{
    position: relative;
  }
  .home_sec6_wrap:before{
    top: 30px;
  }

  .home_sec6_wrap .home_sec2_wrap:after{

  }
  .about_tt.ja {

  }
  .home_sec6_wrap .read_more{
    margin-top: 20px;
  }

  /*sec7*/
  .home_sec7_items{

  }
  .home_sec7_item{

  }
  .home_sec7_item:nth-child(n+2){
    margin-top: 30px;
  }
  .home_sec7_item_inner{
    display: flex;
    flex-wrap: wrap;
  }
  .home_sec7_item_box1{
    width: 47.11%;
    border-radius: 20px 0 0 20px;
  }
  .home_sec7_item_box1_img{
    border-radius: 20px 0 0 20px;
  }
  .home_sec7_item_box1_img:before{
    padding-top: 395px;
  }
  .home_sec7_item_box2{
    width: 52.02%;
    border-radius: 0 20px 20px 0;
    padding: 40px 36px 10px 30px;
  }
  .home_sec7_item_name{
    font-size: 20px;
  }
  .home_sec7_item_add{
    margin-top: 26px;
  }
  .home_sec7_item_box2 .read_more{

  }

  .content_desc.big{
    font-size: 22px;
    line-height: 1.81em;
  }
  .content_desc.big p{
    letter-spacing: 0;
  }
}   
@media (min-width:1024px){
  /*sec4*/
  .home_sec4_head_box2{
    width: 57.23%;
  }
  .home_sec4_head_box2_tt{
    font-size: 24px;
  }
  .home_sec6_wrap:before{
    top: 47px;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 17.76%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .news_tt{

  }
  .en_tt{
    font-size: 49px;
  }
  .en_ja{
    font-size: 18px;
  }
  .home_sec1_box1 .read_more{

  }
  .home_sec1_box2{
    width: 82.23%;
    margin-top: 0;
  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .title{
    padding: 0 10.16% 0 60px;
  }

  /*sec2*/
  .home_sec2_wrap{
    padding: 26px 0 40px;
  }
  .home_sec2_wrap:before{
    display: none;
  }
  .home_sec2_wrap:after{
    content: "";
    display: block;
    width: 1840px;
    height: 100%;
    background: #f9f6a0;
    position: absolute;
    top: 0;
    right: -7.8%;
    z-index: -1;
    border-radius: 0 80px 80px 0;
  }
  .home_sec2_box1{
    width: 49.01%;
  }
  .home_sec2_box1_img_outer{
    margin-top: -66px;
  }
  .home_sec2_box1_img{

  }
  .home_sec2_box2{
    width: 44.73%;
    padding-top: 0;
    margin-top: 0;
  }
  .about_tt{

  }
  .sec_tt{
    font-size: 30px;
  }
  .content_desc{
    font-size: 18px;
  }
  .home_sec2_box2 .content_desc{

  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_wrap .tt2{

  }
  .color_en{

  }
  .home_sec3_wrap .tt2_ja{

  }
  .tt2_sub{

  }
  .tt2_sub_txt1{
    font-size: 38px;
  }
  .tt2_sub_txt2{

  }
  /*sec3*/
  .home_sec3_items{

  }
  .home_sec3_items:after{
    top: 186px;
    height: 420px;
  }
  .home_sec3_item{
    width: 25%;
  }
  .home_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(n+5){
    margin-top: 30px;;
  }
  .home_sec3_item_inner{

  }
  .home_sec3_item_img:before{

  }
  .home_sec3_item_img img{
    border-radius: 180px 180px 0 0;
    border-radius: 0;
  }
  .home_sec3_item_content{

  }
  .home_sec3_item_txt1{
    font-size: 68px; 
  }
  .home_sec3_item_txt2{
    font-size: 26px; 
  }
  .home_sec3_item .content_desc{

  }

  /*sec4*/
  .home_sec4_head{

  }
  .home_sec4_head_box1{

  }
  .home_sec4_head_box1 .color_en{

  }
  .home_sec4_head_box2{

  }
  .home_sec4_head_box2_tt{
    font-size: 34px;
  }
  .home_sec4_head_box2_tt:before{

  }
  .home_sec4_head_box2_tt:after{

  }
  .home_sec4_head_box2_tt p{

  }
  .home_sec4_head_box2 .content_desc{

  }
  .home_sec4_head_box2 .content_desc.big{
    line-height: 1.9em;
  }
  .home_sec4_head_box2 .content_desc.big p{
    letter-spacing: 0.075em;
  }
  .pg_about .section.sec4 .home_sec4_head_box2 .content_desc.big p{
    letter-spacing: 0.075em;
  }

  .home_sec4_items{
    margin-inline:-15px;
  }
  .home_sec4_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_sec4_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec4_item:nth-child(n+3){
    margin-top: 52px;
  }
  .home_sec4_item_inner{
    height: 100%;
  }
  .home_sec4_item_icon{

  }
  .home_sec4_item_tt{

  }
  .home_sec4_item .content_desc{
    width: 61%;
    margin-inline: auto;
  }
  .home_sec4_item_lists{

  }
  .home_sec4_item_list{

  }
  .hosok_desc{
    font-size: 21px;
  }

  /*Sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_wrap .text-center{

  }
  .home_sec5_wrap .column_list{

  }
  .column_list .webgene-blog{

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

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

  }
  .column_list .webgene-item .title{

  }

  /*sec6*/
  .home_sec6_wrap{

  }
  .home_sec6_wrap:before{
    display: none; 
  }
  .home_sec6_wrap:after {
    content: "";
    display: block;
    width: 1840px;
    height: 100%;
    background: #f9f6a0;
    position: absolute;
    top: 47px;
    right: -7.8%;
    z-index: -1;
    border-radius: 0 80px 80px 0;
  }

  .home_sec6_wrap .home_sec2_wrap:after{

  }
  .about_tt.ja {

  }

  /*sec7*/
  .home_sec7_items{
    margin-inline:-15px;
  }
  .home_sec7_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_sec7_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec7_item_inner{

  }
  .home_sec7_item_box1{

  }
  .home_sec7_item_box1_img:before{
    padding-top: 500px;
  }
  .home_sec7_item_box2{

  }
  .home_sec7_item_name{
    font-size: 24px;
  }
  .home_sec7_item_add{

  }
  .home_sec7_item_box2 .read_more{

  }

  .pg_home .section.sec6 .home_sec2_box2 .content_desc{
    line-height: 1.9em;
  }
}
@media (min-width:1470px){

  .sec_tt{
    font-size: 39px;
  }

  .home_sec7_item_box1_img:before{
    padding-top: 450px;
  }
}
@media (min-width:1720px){
  /*sec3*/
  .home_sec3_item_content{
    padding: 10px 30px;
  }

  .home_sec7_item_add{
    white-space: nowrap;
  }
  .home_sec7_item_box1_img:before{
    padding-top: 370px;
  }
}




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

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  background: #f9f6a0;
}


@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{
    padding-bottom: 73px;
  }
  .pg_about .section.sec2{
    padding: 87px 0;
  }
  .pg_about .section.sec3{
    padding-top: 106px;
  }
  .pg_about .section.sec5{
    padding-bottom: 0;
  }
  .pg_about .section.sec6{
    padding-top: 0;
  }

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


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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }

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


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


}

/* メイン部分 */
/*sec1*/
.page_header{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_header_box1{
  width: 100%;
}
.page_header_box1 .sec_tt{
  line-height: 1.53em;
  font-weight: 400;
}
.page_header_box1 .sec_tt p{
  letter-spacing: 0.075em;
}

.page_header_box1 .content_desc{
  margin-top: 20px;
}
.page_header_box2{
  width: 100%;
  margin-top: 30px;
}
.page_header_box2_img_outer{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 585 / 682;
}
.page_header_box2_img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mask2.png);
}
.page_header_box2_img img{
  width: 100%;
}
.daihyo_tt{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  margin-bottom: 18px;
}
.content_desc.right{
  text-align: right;
}

/*sec2*/
.about_sec2_wrap{
  text-align: center;
}
.about_sec2_tt{
  text-align: center;
  max-width: 600px;
  width: 100%;
  margin-inline:auto;
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-ja);
  background: #fff;
  color: #88b630;
  border-radius: 40px;
}
.about_sec2_sub_tt{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  margin-top: 30px;
}
.about_sec2_sub_tt:before{
  content: "～";
}
.about_sec2_sub_tt:after{
  content: "～";
}
.about_sec2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top:30px;
}
.about_sec2_item{
  width: 100%;
}
.about_sec2_item:nth-child(n+2){
  margin-top: 20px;
}
.about_sec2_item_inner{
  text-align: center;
  background: #fff;
  border-radius: 111px;
  box-shadow: 0.707px 0.707px 4.75px 0.25px rgba(0, 0, 0, 0.25);
  padding: 30px;
}
.about_sec2_item_tt{
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-ja);
  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; 
  background: linear-gradient(transparent 50%, #fced4b 50%);
  padding: 0 20px;
}
.about_sec2_item .content_desc{
  line-height: 1.875em;
  margin-top: 25px;
}

/*sec3*/
.about_sec3_wrap{

}
.about_sec3_tt{

}
.about_sec3_tt1{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
}
.about_sec3_tt1 strong{
  font-size: 30px;
  font-weight: 400;
}
.about_sec3_tt2{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-top: 6px;
}
.about_sec3_items{
  display: flex;
  flex-wrap: wrap; 
}
.about_sec3_item{
  width: 100%;
}
.about_sec3_item_inner{

}
.about_sec3_item_img_outer{

}
.about_sec3_item_img:before{

}

.about_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.about_sec3_item{
  width: 100%;
}
.about_sec3_item:nth-child(n+2){
  margin-top: 50px;;
}
.about_sec3_item_inner{

}
.about_sec3_item_img_outer{
  position: relative;
}
.about_sec3_item_img_outer:before{
  content: "";
  display: block;
  width: 83.91%;
  height: 65%;
  background: #b2da65;
  border-radius: 20px;
  position: absolute;
  top: -3.1%;
  left: -2.1%;
}
.about_sec3_item_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 460 / 320;
}
.about_sec3_item_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mask3.png);
}
.about_sec3_item_tt{
  width: 75%;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: var(--font-ja);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding-left: 13px;
}
.about_sec3_item .content_desc{
  margin-top: 20px;
}
.about_sec3_item .content_desc p{

}

/*sec3*/
.about_sec4_wrap{

}
.about_sec4_wrap .home_sec4_head_box1{

}
.about_sec4_wrap .home_sec4_head_box1 .color_en{
  line-height: 1.25em;
}
.about_sec4_wrap .home_sec4_head_box1:before{
  display: none;
}
.about_sec4_wrap .home_sec4_head_box2_tt:after{
  display: none;
}
.about_sec4_wrap .home_sec4_head_box2{

}
.about_sec4_wrap .home_sec4_head_box2_tt{
  line-height: 1;
}
.about_sec4_wrap .home_sec4_head_box2_tt strong{
  font-size: 14px;
  font-weight: 400;
}
.about_sec4_wrap .about_sec4_tt{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.2em;
  color: #88b630;
  margin-top: 16px;
}
.about_sec4_wrap .content_desc{

}

/*sec5*/
.about_sec5_items{
  margin-top: 0;
}
.about_sec5_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec5_item:nth-child(n+2){
  margin-top: 50px;
}
.about_sec5_item_box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_sec5_item_box1_left{
  width: 100%;
}
.about_sec5_item_box1_left_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 404 / 550;
  filter:
    drop-shadow(5px 0 0 #fda249)
    drop-shadow(-5px 0 0 #fda249)
    drop-shadow(0 5px 0 #fda249)
    drop-shadow(0 -5px 0 #fda249);
}
.about_sec5_item_box1_left_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/mask5.png);
}
.about_sec5_item_box1_left_img img:before{
  content: "";
  position: absolute;
  inset: 0;
  border: 4px solid #000;
  z-index: -1;
}
.about_sec5_item_box1_right{
  width: 100%;
  margin-top: 30px;
}
.about_sec5_item_box1_right_tt{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.76em;
  font-family: var(--font-ja);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative
}
.about_sec5_item_box1_right_tt:after{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 50 / 40;
  background-image: url(/system_panel/uploads/images/capsule.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  z-index: 2;
}
.about_sec5_item_box1_right_tt p{
  background: linear-gradient(transparent 50%, #fced4b 50%);
}
.about_sec5_item_box1_right .content_desc{

}
.visit_sec5_item .about_sec5_item_box1_right_tt p{
  letter-spacing: 0;
}
.about_sec5_item_box2{
  width: 100%;
  margin-top: 30px;
}
.about_sec5_item_box2_img{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.about_sec5_item:nth-child(1) .about_sec5_item_box2_img{
  width: 81.51%;
  width: 30%;
  aspect-ratio:322 / 379;
  background-image: url(/system_panel/uploads/images/il1.png);
}
.about_sec5_item:nth-child(2) .about_sec5_item_box2_img{
  width: 69.62%;
  width: 30%;
  aspect-ratio:275 / 355;
  background-image: url(/system_panel/uploads/images/il22.png);
  margin-left: auto;
}
.about_sec5_item:nth-child(3) .about_sec5_item_box2_img{
  width: 64.3%;
  width: 30%;
  aspect-ratio:254 / 345;
  background-image: url(/system_panel/uploads/images/il33.png);
  margin-left: auto;
}
@media (max-width:767px){
  .body_about .footer{
    margin-top: 120px;
  }

  .home_sec4_head_box2_tt{
    font-size: 20px; 
  }

  .about_sec5_item .about_sec5_item_box2_img{
    margin-left: auto;
    width: 20%;
  }

  .about_sec3_item_tt{
    font-size: 20px; 
  }

  .about_sec5_item_box1_left{
    width: 75%;
    margin-inline:auto;
  }

  .about_sec5_item_box1{
    position: relative;
    padding: 0 16px 30px;
  }
  .about_sec5_item_box1:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #f6f6ed;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .about_sec5_item_box1_right .content_desc{
    margin-top: 20px;
  }
  
  .content_desc.right{
    width: 250px;
    margin-left: auto;
  }
}
@media (min-width:768px){
  /*sec1*/
  .page_header{

  }
  .page_header_box1{

  }
  .page_header_box1 .sec_tt{

  }
  .page_header_box1 .content_desc{
    margin-top: 37px;
  }
  .page_header_box2{
    margin-top: 40px;
  }
  .page_header_box2_img_outer{

  }
  .page_header_box2_img{

  }

  /*sec2*/
  .about_sec2_wrap{

  }
  .about_sec2_tt{
    font-size: 40px;
  }
  .about_sec2_sub_tt{
    font-size: 28px;
    margin-top: 55px;
  }
  .about_sec2_items{
    margin-top: 47px;
  }
  .about_sec2_item{

  }
  .about_sec2_item_inner{
    padding: 29px 40px;
  }
  .about_sec2_item_tt{
    font-size: 28px;
  }
  .about_sec2_item .content_desc{

  }

  /*sec3*/
  .about_sec3_wrap{

  }
  .about_sec3_tt{

  }
  .about_sec3_tt1{
    font-size: 28px;
    line-height: 1;
  }
  .about_sec3_tt1 strong{
    font-size: 40px;
  }
  .about_sec3_tt2{

  }
  .about_sec3_items{
    margin-top: 46px;
  }
  .about_sec3_item{

  }
  .about_sec3_item_inner{

  }
  .about_sec3_item_img_outer{

  }
  .about_sec3_item_img:before{

  }

  .about_sec3_items{
    margin-inline:-15px;
  }
  .about_sec3_item{
    width: 50%;
    padding-inline:15px;
    border-right: 2px dotted #2d2d2d;
  }
  .about_sec3_item:nth-child(even){
    border-right: none;
  }
  .about_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_sec3_item:nth-child(n+3){
    margin-top: 30px;
  }
  .about_sec3_item_inner{

  }
  .about_sec3_item_img_outer{

  }
  .about_sec3_item_img{

  }
  .about_sec3_item_tt{
    font-size: 20px;
  }
  .about_sec3_item .content_desc{
    margin-top: 28px;
  }

  /*sec3*/
  .about_sec4_wrap{

  }
  .about_sec4_wrap .home_sec4_head_box1{

  }
  .about_sec4_wrap .home_sec4_head_box1:before{

  }
  .about_sec4_wrap .home_sec4_head_box2{

  }
  .about_sec4_wrap .home_sec4_head_box2_tt{

  }
  .about_sec4_wrap .home_sec4_head_box2_tt strong{
    font-size: 16px; 
  }
  .about_sec4_wrap .about_sec4_tt{
    font-size: 40px;
    margin-top: 0;
  }
  .about_sec4_wrap .content_desc{
    margin-top: 30px;
  }

  /*sec5*/
  .about_sec5_items{
    margin-top: 62px;
  }
  .about_sec5_item{
    min-height: 545px;
    align-items: flex-start;
  }
  .about_sec5_item:nth-child(n+2){
    margin-top: 80px;
  }
  .about_sec5_item_box1{
    position: relative;
    justify-content: flex-end;
    padding: 30px 40px 54px;
  }
  .about_sec5_item_box1:after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #f6f6ed;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .about_sec5_item_box1_left{
    width: 39.02%;
    position: absolute;
    top: 40%;
    left:0;
    transform: translateY(-50%);
  }
  .about_sec5_item_box1_left_img{

  }
  .about_sec5_item_box1_left_img img{

  }
  .about_sec5_item_box1_right{
    width: 52.42%;
    margin-top: 0;
  }
  .about_sec5_item_box1_right_tt{
    font-size: 18px;
  }
  .about_sec5_item_box1_right_tt:after{

  }
  .about_sec5_item_box1_right_tt p{

  }
  .about_sec5_item_box1_right .content_desc{
    margin-top: 40px;
  }
  .about_sec5_item_box2{
    margin-top: 30px;
  }
  .about_sec5_item_box2_img{

  }
  .about_sec5_item:nth-child(1) .about_sec5_item_box2_img{
    margin-left: auto;
  }
  .about_sec5_item:nth-child(2) .about_sec5_item_box2_img{

  }
  .about_sec5_item:nth-child(3) .about_sec5_item_box2_img{

  }

}
@media (min-width:1024px){
  .about_sec3_items{
    margin-inline:-35px;
  }
  .about_sec3_item{
    width: 50%;
    padding-inline:35px;
    border-right: 3px dotted #2d2d2d;
  }
  .about_sec3_item:nth-child(even){
    border-right: none;
  }
  .about_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_sec3_item:nth-child(n+3){
    margin-top: 30px;
  }

  /*sec7*/
  .about_sec5_item_box1_right_tt{
    font-size: 20px;
  }
}
@media (min-width:1200px){
  .body_about .pg_header{
    margin-bottom: 0;
  }
  /*sec1*/
  .page_header{

  }
  .page_header_box1{
    width:55.26%;
    padding-top: 63px;
  }
  .page_header_box1 .sec_tt{
    font-size: 30px;
  }
  .page_header_box1 .content_desc{

  }
  .page_header_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .page_header_box2_img_outer{
    margin-top: -100px;
    position: relative;
    z-index: 2;
  }
  .page_header_box2_img{

  }

  /*sec2*/
  .about_sec2_wrap{

  }
  .about_sec2_tt{
    font-size: 48px;
  }
  .about_sec2_sub_tt{
    font-size: 32px;
  }
  .about_sec2_items{
    margin-inline:-15px; 
  }
  .about_sec2_item{
    width: 50%;
    padding-inline:15px;
  }
  .about_sec2_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_sec2_item_inner{

  }
  .about_sec2_item_tt{
    font-size: 36px;
  }
  .about_sec2_item .content_desc{
    line-height: 2.33em;
    line-height: 1.72em;
    font-weight: 600;
  }
  .about_sec2_item .content_desc p{
    letter-spacing: 0.075em;
  }

  /*sec3*/
  .about_sec3_wrap{

  }
  .about_sec3_tt{

  }
  .about_sec3_tt1{
    font-size: 38px;
  }
  .about_sec3_tt1 strong{
    font-size: 60px;
  }
  .about_sec3_tt2{

  }
  .about_sec3_items{

  }
  .about_sec3_item{

  }
  .about_sec3_item_inner{

  }
  .about_sec3_item_img_outer{

  }
  .about_sec3_item_img:before{

  }

  .about_sec3_items{
    margin-inline:-35px;
  }
  .about_sec3_item{
    width: 33.333%;
    padding-inline:35px;
    border-right: 2px dotted #2d2d2d;
  }
  .about_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .about_sec3_item:nth-child(even){
    border-right: 2px dotted #2d2d2d;
  }
  .about_sec3_item:last-child{
    border-right: none;
  }
  .about_sec3_item_inner{

  }
  .about_sec3_item_img_outer{

  }
  .about_sec3_item_img{

  }
  .about_sec3_item_tt{
    font-size: 20px;
  }
  .about_sec3_item .content_desc{

  }

  /*sec3*/
  .about_sec4_wrap{

  }
  .about_sec4_wrap .home_sec4_head_box1{

  }
  .about_sec4_wrap .home_sec4_head_box1:before{

  }
  .about_sec4_wrap .home_sec4_head_box2{
    padding-top: 38px;
  }
  .about_sec4_wrap .home_sec4_head_box2_tt{
    font-size: 42px;
  }
  .about_sec4_wrap .home_sec4_head_box2_tt strong{
    font-size: 21px; 
  }
  .about_sec4_wrap .about_sec4_tt{
    font-size: 68px;
  }
  .about_sec4_wrap .content_desc{

  }

  /*sec5*/
  .about_sec5_items{

  }
  .about_sec5_item{

  }
  .about_sec5_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_sec5_item:nth-child(odd){
    justify-content: space-between;
  }
  .about_sec5_item:nth-child(odd) .about_sec5_item_box1{
    order: 1;
  }
  .about_sec5_item:nth-child(odd) .about_sec5_item_box2{
    order: 2;
  }
  .about_sec5_item:nth-child(even) .about_sec5_item_box1{
    order: 2;
  }
  .about_sec5_item:nth-child(even) .about_sec5_item_box2{
    order: 1;
  }
  .about_sec5_item:nth-child(even){
    justify-content: space-between;
  }
  .about_sec5_item_box1{
    width: 67.76%;
  }
  .about_sec5_item_box1_left{

  }
  .about_sec5_item_box1_left_img{

  }
  .about_sec5_item_box1_left_img img{

  }
  .about_sec5_item_box1_right{

  }
  .about_sec5_item_box1_right_tt{
    font-size: 26px;
  }
  .about_sec5_item_box1_right_tt:after{

  }
  .about_sec5_item_box1_right_tt p{

  }
  .about_sec5_item_box1_right .content_desc{

  }
  .about_sec5_item_box2{
    width: 25.98%;
    margin-top: 0;
  }
  .about_sec5_item_box2_img{

  }
  .about_sec5_item:nth-child(1) .about_sec5_item_box2_img{
    width: 81.51%;
    margin-top: -40px;
  }
  .about_sec5_item:nth-child(2) .about_sec5_item_box2_img{
    width: 69.62%;
    margin-top: -40px;
    margin-left: 0;
  }
  .about_sec5_item:nth-child(3) .about_sec5_item_box2_img{
    width: 64.3%;
    margin-left: 25px;
    margin-left: 0;
  }

  /*sec7*/
  .about_sec5_item_box1_right_tt{
    font-size: 20px;
  }
  .home_sec3_item .content_desc{
    font-size: 15px;
  }
}
@media (min-width:1470px){
  /*sec2*/
  .about_sec2_item_inner{
    padding: 29px 30px;
  }

  /*sec3*/
  .about_sec3_item_tt{
    font-size: 22px;
  }

  /*sec7*/
  .about_sec5_item_box1_right_tt{
    font-size: 26px;
  }

  .page_header_box1 .sec_tt{
    font-size: 39px;
  }

  .pg_rental .section.sec1 .page_header_box1 .sec_tt{
    font-size: 45px;
  }
}
@media (min-width:1720px){
  /*sec2*/
  .about_sec2_item_inner{
    padding: 29px 73px;
  }

  /*sec3*/
  .about_sec3_item_tt{
    font-size: 30px;
  }

  /*sec7*/
  .about_sec6_wrap .home_sec3_item_content{
    padding: 10px 40px;
  }
  .home_sec3_item .content_desc{
    font-size: 18px;
  }
  
    .about_sec2_sub_tt{
    font-size: 36px;
  }
}



/*******************************
*　訪問調剤
********************************/

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

}
.pg_visit .section.sec1{

}
.pg_visit .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_visit .section.sec1{

  }
  .pg_visit .section.sec2{

  }
  .pg_visit .section.sec3{

  }
  .pg_visit .section.sec4{
    padding-top: 64px;
  }

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


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

  }
  .pg_visit .section.sec1{

  }
  .pg_visit .section.sec2{

  }

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


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


}

/* メイン部分 */
.page_header.visit{

}
.page_header.visit .page_header_box1{

}
.page_header.visit .page_header_box2{

}
.home_sec4_head_box2_tt.noBdr:after{
  display: none;
}
.mid_tt{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  margin-top: 20px;
}
.page_header.visit .page_header_box1 .content_desc{

}
.page_header.visit .page_header_box2{

}
.page_header.visit .page_header_box2_img_outer{
  aspect-ratio: 598 / 763;
}
.page_header.visit .page_header_box2_img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask6.png);
}

/*sec2*/
.visit_sec2_wrap{

}
.visit_sec2_wrap .home_sec3_items:after{
  display: none;
}
.color_tt_en{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.visit_sec2_wrap .home_sec3_items{

}
.visit_sec2_wrap .home_sec3_item{

}
.visit_sec2_wrap .home_sec3_item_inner{
  padding-bottom: 0;
}
.visit_sec2_wrap .home_sec3_item_inner:after{
  display: none;
}
.home_sec3_item_content.visit{
  padding: 0;
} 
.visit_top{
  background: #b2da65;
  padding: 41px 0 31px 0;
}
.visit_top .home_sec3_item_txt1{
  color: #fff;
}
.visit_top .home_sec3_item_txt2{
  letter-spacing: 0.075em;
  text-shadow    : 
    3px  3px 1px #ffffff,
    -3px  3px 1px #ffffff,
    3px -3px 1px #ffffff,
    -3px -3px 1px #ffffff,
    3px  0px 1px #ffffff,
    0px  3px 1px #ffffff,
    -3px  0px 1px #ffffff,
    0px -3px 1px #ffffff; 
  text-shadow:none;
  color: #000;
  -webkit-text-stroke: 9px #fff;
  paint-order: stroke fill;
  margin-top: 26px;
}
.visit_t3{
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0;
  text-align: center;
  text-shadow    : 
    3px  3px 1px #ffffff,
    -3px  3px 1px #ffffff,
    3px -3px 1px #ffffff,
    -3px -3px 1px #ffffff,
    3px  0px 1px #ffffff,
    0px  3px 1px #ffffff,
    -3px  0px 1px #ffffff,
    0px -3px 1px #ffffff; 
  text-shadow:none;
  color: #000;
  -webkit-text-stroke: 9px #fff;
  paint-order: stroke fill;
  margin-top: 28px;
}
.visit_btm{
  background: #f7f7f7;
  padding: 26px 17px 113px;
}
.visit_btm .content_desc{
  text-align: justify;
  line-height: 1.666em;
}

/*sec3*/
.visit_sec3_wrap{
position: relative;
}
.visit_sec3_wrap:before{
  content: "";
  display: block;
  width: 22.36%;;
  aspect-ratio:340 / 324;
  background-image: url(/system_panel/uploads/images/iill1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}
.visit_sec3_tt{

}
.visit_sec3_tt1{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.visit_sec3_tt2{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-ja);
  line-height: 1;
  letter-spacing: 0.025em;
  margin-top: 16px;
}
.visit_sec3_tt_sub{
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-ja);
  margin-top: 20px;
}
.visit_sec3_tt_sub p{
  display: inline-block;
  background: #fced4b;
  padding: 5px 10px;
}
.visit_sec3_wrap .content_desc{
  margin-top: 20px;
}
.visit_sec3_wrap .content_desc p{
  letter-spacing: 0.075em;
}

.visit_sec3_main_tt{
  position: relative;
  text-align: center;
  margin-top:60px;
}
.visit_sec3_main_tt_txt{
  display: inline-block;
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  padding: 0 10px;
  background: #fff;
  position: relative;
  z-index: 2;
  color: #88b630;;
}
.visit_sec3_main_tt_txt:before{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 50 / 40;
  background-image: url(/system_panel/uploads/images/capsule.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -36px;
  left: 50%;
  transform:translateX(-50%);
}
.visit_sec3_main_tt:after{
  content: "";
  display: block;
  width: 100%;;
  height: 4px;
  background-image: url(/system_panel/uploads/images/dots3.png);
  background-repeat: repeat;
  border-top:none;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}
.about_sec3_items.visit{

}
.about_sec3_items.visit .about_sec3_item{

}
.about_sec3_items.visit .about_sec3_item_img_outer:before{
  background: #f9f6a0;
}
.about_sec3_items.visit .about_sec3_item .content_desc{
  margin-top: 78px;
}

/*sec4*/
.visit_sec4_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f6f6ed;
  border: 1px solid #b2da65;
  border-radius: 20px;
  padding: 30px 16px;
}
.visit_sec4_box1{
  width: 100%;
}
.visit_sec4_box1 .home_sec4_head_box2_tt{

}
.visit_sec4_sub_txt{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  margin-top: 10px;
  letter-spacing: 0.025em;
}
.visit_sec4_box1 .content_desc{
  margin-top: 20px;
}
.visit_sec4_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.visit_sec4_box2_item{
  width: 100%;
}
.visit_sec4_box2_item:nth-child(n+2){
  margin-top: 30px;
}
.visit_sec4_box2_item_inner{
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #b2da65;
  text-align: center;
  padding: 26px 12px;
}
.visit_sec4_box2_item_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  background: #fced4b;
  border-radius: 10px;
  text-align: center;
  display: inline-block;
  padding: 0 20px;
}
.visit_sec4_box2_item_txt2{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.7em;
  text-align: center;
  margin-top: 12px;
  border-bottom: 1px dotted;
  padding-bottom: 16px;
}
.visit_sec4_box2 .content_desc{
  line-height: 1.666em;
  margin-top: 9px;
}
.visit_sec4_box2 .content_desc p{
  letter-spacing: 0;
}
.visit_sec4_box1 .home_sec4_head_box2_tt p{
  background: #f6f6ed;
}

/*sec5*/
.visit_sec5_wrap{

}
.visit_sec5_wrap .visit_sec3_tt_sub{

}
.visit_sec3_tt_sub.center{
  text-align: center;
  margin-top: 6px;
}
.content_desc.center{

}
.visit_sec5_wrap .content_desc.center{
  margin-top: 30px;
}
.visit_sec5_wrap .content_desc.center p{
  letter-spacing: 0;
}

.visit_sec5_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.visit_sec5_item{
  width: 100%;
  position: relative;
}
.visit_sec5_item:before{
  content: "";
  display: block;
  width: 46px;
  aspect-ratio:46 / 48;
  background-image: url(/system_panel/uploads/images/arr7_down.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -50px;;
  left: 50%;
  transform: translateX(-50%);
}
.visit_sec5_item:last-child:before{
  display: none;
}
.visit_sec5_item:nth-child(n+2){
  margin-top: 50px;
}
.visit_sec5_item_inner{
  background: #f3ece2;
  border: 1px solid #cccccc;
  border-radius: 20px;
  text-align: center;
  padding: 30px 20px 22px;
}
.visit_sec5_item_en{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit_sec5_item_en:before{
  content: "";
  display: block;
  width: 50px;
  aspect-ratio: 50 / 40;
  background-image: url(/system_panel/uploads/images/capsule.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.visit_sec5_item .about_sec5_item_box1_right_tt{
  align-items: center;
  line-height: 1.5em;
  white-space: nowrap;
  margin-top: 19px;
}
.visit_sec5_item .about_sec5_item_box1_right_tt:after{
  display: none;
}
.visit_sec5_item .content_desc{
  line-height: 1.55em;
  position: relative;
  padding-top: 26px;
  margin-top: 31px;
}
.visit_sec5_item .content_desc:before{
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-image: url(/system_panel/uploads/images/dots.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.visit_sec5_item .content_desc p{
  letter-spacing: 0;
}

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

  .visit_sec2_wrap .home_sec3_items:before{
    display: none;
  }
  .visit_sec2_wrap .home_sec3_item{
    width: 100%;
  }
  .visit_sec2_wrap .home_sec3_item:nth-child(n+3){
    margin-top: 0;
  }
  .visit_sec2_wrap .home_sec3_item:nth-child(n+2){
    margin-top: 30px;
  }
  .visit_sec2_wrap .home_sec3_item .content_desc{
    display: block;
    margin-top: 0;
  }
  .about_sec3_items.visit .about_sec3_item_tt{
    bottom: -30px;  
  }
  .about_sec3_items.visit .about_sec3_item .content_desc{
    margin-top: 50px;
  }

  .visit_sec5_item_en:before,
  .visit_sec3_main_tt_txt:before,
  .about_sec5_item_box1_right_tt:after{
    width: 36px;
  }

  .visit_top .home_sec3_item_txt2{
    font-size: 20px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  /*sec1*/
  .page_header.visit{

  }
  .page_header.visit .page_header_box1{

  }
  .page_header.visit .page_header_box2{

  }
  .home_sec4_head_box2_tt.noBdr{

  }
  .mid_tt{
    font-size: 20px;
    margin-top: 33px;
  }
  .page_header.visit .page_header_box1 .content_desc{

  }
  .page_header.visit .page_header_box2{

  }
  .page_header.visit .page_header_box2_img_outer{

  }
  .page_header.visit .page_header_box2_img{

  }

  /*sec2*/
  .visit_sec2_wrap{

  }
  .color_tt_en{
    font-size: 40px;
  }
  .visit_sec2_wrap .home_sec3_items{

  }
  .visit_sec2_wrap .home_sec3_item{

  }
  .visit_sec2_wrap .home_sec3_item_inner{

  }
  .home_sec3_item_content.visit{

  } 
  .visit_top{

  }
  .visit_top .home_sec3_item_txt1{

  }
  .visit_top .home_sec3_item_txt2{
    font-size: 22px;
  }
  .visit_t3{
    font-size: 19px;
  }
  .visit_btm{

  }
  .visit_btm .content_desc{

  }

  /*sec3*/
  .visit_sec3_wrap{

  }
  .visit_sec3_tt{

  }
  .visit_sec3_tt1{
    font-size: 30px;
  }
  .visit_sec3_tt2{
    font-size: 30px;
    margin-top: 24px;
  }
  .visit_sec3_tt_sub{
    font-size: 20px;
    margin-top: 40px;
  }
  .visit_sec3_tt_sub p{

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

  .visit_sec3_main_tt{
    position: relative;
    margin-top: 64px;
  }
  .visit_sec3_main_tt_txt{
    font-size: 30px;
  }

  .about_sec3_items.visit{

  }
  .about_sec3_items.visit .about_sec3_item{

  }
  .about_sec3_items.visit .about_sec3_item_tt{
    bottom: -47px;
  }
  .about_sec3_items.visit .about_sec3_item .content_desc{
    margin-top: 78px;
  }

  /*sec4*/
  .visit_sec4_box{
    padding: 30px;
  }
  .visit_sec4_box1{

  }
  .visit_sec4_box1 .home_sec4_head_box2_tt{

  }
  .visit_sec4_sub_txt{
    font-size: 21px;
  }
  .visit_sec4_box1 .content_desc{
    margin-top: 47px;
  }
  .visit_sec4_box2{
    justify-content: space-between;
    margin-top: 40px;
  }
  .visit_sec4_box2_item{
    width: 47.26%;

  }
  .visit_sec4_box2_item:nth-child(n+2){
    margin-top: 0;
  }
  .visit_sec4_box2_item_inner{
    height: 100%;
  }
  .visit_sec4_box2_item_txt1{
    font-size: 22px;
  }
  .visit_sec4_box2_item_txt2{
    font-size: 20px;
  }
  .visit_sec4_box2 .content_desc{

  }

  /*sec5*/
  .visit_sec5_wrap{

  }
  .visit_sec5_wrap .visit_sec3_tt_sub{

  }
  .visit_sec3_tt_sub.center{
    text-align: center;
  }
  .content_desc.center{

  }
  .visit_sec5_wrap .content_desc.center{

  }

  .visit_sec5_items{
    margin-inline:-26.5px;
    margin-top: 57px;
  }
  .visit_sec5_item{
    width: 50%;
    padding-inline:26.5px;
    position: relative;
  }  
  .visit_sec5_item:nth-child(n+2){
    margin-top: 0;
  }

  .visit_sec5_item:nth-child(n+3){
    margin-top: 30px;
  }
  .visit_sec5_item:before{
    display: none;
  }
  .visit_sec5_item:after{
    content: "";
    display: block;
    width: 46px;
    aspect-ratio:46 / 48;
    background-image: url(/system_panel/uploads/images/arr7.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
  }
  .visit_sec5_item:nth-child(even):after{
    display: none;
  }
  .visit_sec5_item_inner{
    height: 100%;
  }
  .visit_sec5_item_en{
    font-size: 24px;
  }
  .visit_sec5_item .about_sec5_item_box1_right_tt{
    font-size: 22px;
  }
  .visit_sec5_item .about_sec5_item_box1_right_tt:after{

  }
  .visit_sec5_item .content_desc{

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

  .visit_t3{
    font-size: 21px;
  }
  .about_sec3_items.visit .about_sec3_item_tt{
    bottom: -30px;
  }
  .about_sec3_items.visit .about_sec3_item .content_desc{
    margin-top: 50px;
  }


  .visit_sec4_box{
    padding: 30px 73px;
  }

}
@media (min-width:1200px){
  /*sec1*/
  .page_header.visit{

  }
  .page_header.visit .page_header_box1{
    order: 2;
    padding-top: 90px;
  }
  .page_header.visit .page_header_box2{
    order: 1;
  }
  .page_header.visit .home_sec4_head_box2_tt{
    font-size: 39px;
  }

  .home_sec4_head_box2_tt.noBdr{

  }
  .mid_tt{
    font-size: 26px;
  }
  .page_header.visit .page_header_box1 .content_desc{
    line-height: 1.9em;
  }
  .page_header.visit .page_header_box1 .content_desc p{
    letter-spacing: 0.075em;
  }
  .page_header.visit .page_header_box2{

  }
  .page_header.visit .page_header_box2_img_outer{
    margin-top: -55px;
  }
  .page_header.visit .page_header_box2_img{

  }

  /*sec2*/
  .visit_sec2_wrap{

  }
  .color_tt_en{
    font-size: 52px;
  }
  .tt2_sub_txt1.lg,
  .visit_sec2_wrap .tt2_sub_txt1{
    font-size: 52px;
  }
  .visit_sec2_wrap .home_sec3_items{

  }
  .visit_sec2_wrap .home_sec3_item{

  }
  .visit_sec2_wrap .home_sec3_item_inner{

  }
  .home_sec3_item_content.visit{

  } 
  .visit_top{

  }
  .visit_top .home_sec3_item_txt1{

  }
  .visit_top .home_sec3_item_txt2{
    font-size: 20px;
  }
  .visit_t3{
    font-size: 21px;
  }
  .visit_btm{

  }
  .visit_btm .content_desc{

  }

  /*sec3*/
  .visit_sec3_wrap{

  }
  .visit_sec3_tt{

  }
  .visit_sec3_tt1{
    font-size: 60px;
  }
  .visit_sec3_tt2{
    font-size: 60px;
  }
  .visit_sec3_tt_sub{
    font-size: 24px;
  }
  .visit_sec3_tt_sub p{

  }
  .visit_sec3_wrap .content_desc{

  }

  .visit_sec3_main_tt{
    position: relative;
  }
  .visit_sec3_main_tt_txt{
    font-size: 36px;
  }

  .about_sec3_items.visit{

  }
  .about_sec3_items.visit .about_sec3_item{

  }
  .about_sec3_items.visit .about_sec3_item_tt{
    bottom: -30px;
    bottom: -50px;
  }
  .about_sec3_items.visit .about_sec3_item .content_desc{
    margin-top: 78px;
    padding: 0 5px;
  }

  /*sec4*/
  .visit_sec4_box{
    padding: 30px 73px;
  }
  .visit_sec4_box1{
    width: 41.84%;
    padding: 17px 0;
  }
  .visit_sec4_box1 .home_sec4_head_box2_tt{

  }
  .visit_sec4_sub_txt{

  }
  .visit_sec4_box1 .content_desc{

  }
  .visit_sec4_box2{
    width: 53.12%;
    margin-top: 0;
  }
  .visit_sec4_box2_item{

  }
  .visit_sec4_box2_item_inner{

  }
  .visit_sec4_box2_item_txt1{
    font-size: 24px;
  }
  .visit_sec4_box2_item_txt2{
    font-size: 16px;
  }
  .visit_sec4_box2 .content_desc{

  }

  /*sec5*/
  .visit_sec5_wrap{

  }
  .visit_sec5_wrap .visit_sec3_tt_sub{

  }
  .visit_sec3_tt_sub.center{
    text-align: center;
  }
  .content_desc.center{
    text-align: center;
  }
  .visit_sec5_wrap .content_desc.center{

  }

  .visit_sec5_items{

  }

  .visit_sec5_item_inner{

  }
  .visit_sec5_item_en{
    font-size: 28px;
  }
  .visit_sec5_item .about_sec5_item_box1_right_tt{
    font-size: 20px;
  }
  .visit_sec5_item .about_sec5_item_box1_right_tt:after{

  }
  .visit_sec5_item .content_desc{

  }
}
@media (min-width:1366px){
  .visit_sec4_box2_item_txt2{
    font-size: 20px;
  }

  .visit_sec5_item{
    width: 25%;
  }
  .visit_sec5_item:nth-child(n+3){
    margin-top: 0;
  }
  .visit_sec5_item:nth-child(even):after{
    display:block;
  }
  .visit_sec5_item:last-child:after{
    display: none;
  }
}
@media (min-width:1470px){
  .visit_top .home_sec3_item_txt2{
    font-size: 25px;
  }
  .visit_sec4_box2_item_txt2{
    font-size: 20px;
  }
}
@media (min-width:1720px){
  .visit_top .home_sec3_item_txt2{
    font-size: 30px;
  }

  .visit_sec5_item .about_sec5_item_box1_right_tt{
    font-size: 24px;
  }

}







/*******************************
*　福祉用具
********************************/

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

}
.pg_rental .section.sec1{

}
.pg_rental .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_rental .section.sec1{

  }
  .pg_rental .section.sec2{
    padding-top: 94px;
  }
  .pg_rental .section.sec3{
    padding-top: 100px;
  }
  .pg_rental .section.sec4{
    padding-top: 11px;
  }
}
@media (min-width:1024px){


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

  }
  .pg_rental .section.sec1{

  }
  .pg_rental .section.sec2{

  }
  .pg_rental .section.sec3{
    padding-top: 201px;
  }

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


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


}

/* メイン部分 */
.page_header.rental{

}
.page_header.rental .page_header_box1{

}
.page_header.rental .page_header_box2{

}
.page_header.rental .page_header_box2_img_outer{
  aspect-ratio: 650 / 406;
}
.page_header.rental .page_header_box2_img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask8.png);
}

/*sec2*/
.rental_sec2_wrap{

}
.rental_sec2_wrap .visit_sec4_box{

}
.rental_sec2_wrap .rental_sec2_box1{
  width: 100%;
}
.rental_sec2_wrap .rental_sec2_box2{
  width: 100%;
  text-align: center;
}
.rental_sec2_wrap{

}
.rental_sec2_wrap .home_sec4_head_box2_tt p{
  background: #f6f6ed;
}
.rental_sec2_wrap .home_sec4_head_box2_tt:before{

}
.rental_sec2_wrap .visit_sec4_sub_txt{

}
.rental_txt1{
  font-size: 17px;
  font-weight: 700;
  margin-top: 27px;
}
.rental_txt1 p{
  letter-spacing: 0.025em;
}
.rental_txt1 strong{
  font-size: 16px;
}
.rental_txt2{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.88em;
}
.rental_txt2 p{
  letter-spacing: 0.025em;
}
.rental_sec2_wrap .rental_sec2_box1 .content_desc{
  margin-top: 20px;
}
.rental_sec2_wrap .rental_sec2_box1 .content_desc p{
  letter-spacing: 0.025em;
}
.rental_sec2_box2{
  margin-top: 30px;;
}
.rental_sec2_box2_img{

}

.rental_sec2_wrap{

}
.rental_sec2_wrap{

}
.rental_sec2_wrap{

}
.rental_sec2_wrap{

}
.rental_sec2_wrap{

}

/*sec3*/
.rental_sec3_box{
  background: #f3ece2;
  border: 1px solid #cccccc;
  border-radius: 20px;
  padding: 0 16px 30px;
  position: relative;
}
.rental_sec3_box:before{
  content: "";
  display: block;
  width: 22.16%;;
  aspect-ratio:246 / 312;
  background-image: url(/system_panel/uploads/images/mki.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.rental_sec3_box1_txt1{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  text-shadow:
    1px 1px 0 #fff,
    -1px 1px 0 #fff,
    1px -1px 0 #fff,
    -1px -1px 0 #fff,
    2px 2px 0 #fff,
    -2px 2px 0 #fff,
    2px -2px 0 #fff,
    -2px -2px 0 #fff;
  margin-top: -25px;
}
.home_sec4_head_box2_tt.kuruma:before{
  width: 39px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/kuruma.png);
}
.rental_sec3_box1{
  margin-top: 22px;
}
.rental_sec3_box1_txt2{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  color: #f57e0a;
}
.rental_sec3_box1 .content_desc{
  margin-top: 6px;
}
.rental_sec3_box1 .read_more{

}
.read_more.gr a{
  color: #91be3c;
  text-shadow    : 
    3px  3px 0px #ffffff,
    -3px  3px 0px #ffffff,
    3px -3px 0px #ffffff,
    -3px -3px 0px #ffffff,
    3px  0px 0px #ffffff,
    0px  3px 0px #ffffff,
    -3px  0px 0px #ffffff,
    0px -3px 0px #ffffff; 
  text-shadow:none;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
}
.read_more.gr a:after{
  background-image: url(/system_panel/uploads/images/green.jpg);
}

/*sec4*/
.rental_sec4_wrap .about_sec3_tt{
  text-align: center;
}
.rental_sec4_wrap .color_tt_en{
 justify-content: center; 
}
.about_sec3_tt1.kuruma:before{
  content: "";
  display: block;
  width: 39px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/kuruma.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.rental_sec4_wrap .about_sec3_tt1{
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-ja);
  text-align: center;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rental_sec4_wrap .about_sec3_tt2{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
}
.rental_sec4_wrap .about_sec4_tt{
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.2em;
  line-height: 1;
  color: #b2da65;
  margin-top: 12px;
}
.rental_sec4_wrap .visit_sec3_tt_sub{
  margin-top: 19px;
}
.rental_sec4_wrap .content_desc.center{
  margin-top: 20px;
}
.rental_sec4_wrap .about_sec3_item_img_outer:before{
  background: #f9f6a0;
}
.rental_sec4_wrap .about_sec3_item_tt{
  bottom: -24px;
}
.rental_sec4_wrap .about_sec3_item .content_desc{
  margin-top: 40px;
}
@media (max-width:767px){
  .rental_sec3_box{
    padding: 0 16px 30px;
  }
  .rental_sec3_box:before{
    width: 130px;
    bottom: 0;
    right: 0;
  }

  .rental_sec3_box1 .read_more{
    justify-content: flex-start;
  }
  .rental_sec3_box1 .read_more a{
    padding: 0;
  }
  .rental_sec3_box1 .read_more a:after{
    width: 60px;
    margin-left: 5px;
  }
  .rental_sec3_box:before{
    width: 80px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .page_header.rental{

  }
  .page_header.rental .page_header_box1{

  }
  .page_header.rental .page_header_box2{

  }
  .page_header.rental .page_header_box2_img_outer{

  }
  .page_header.rental .page_header_box2_img{

  }

  /*sec2*/
  .rental_sec2_wrap{

  }
  .rental_sec2_wrap .visit_sec4_box{

  }
  .rental_sec2_wrap .rental_sec2_box1{

  }
  .rental_sec2_wrap{

  }
  .rental_sec2_wrap .home_sec4_head_box2_tt p{

  }
  .rental_sec2_wrap .home_sec4_head_box2_tt:before{

  }
  .rental_sec2_wrap .visit_sec4_sub_txt{

  }
  .rental_txt1{

  }
  .rental_txt2{

  }
  .rental_sec2_wrap .rental_sec2_box1 .content_desc{
    margin-top: 35px;
  }
  .rental_sec2_box2{
    margin-top: 40px;;
  }
  .rental_sec2_box2_img{

  }

  /*sec3*/
  .rental_sec3_box{
    padding: 0 33px 20px;
  }
  .rental_sec3_box:before{
    right: 20px;
    top: -13px;
  }
  .rental_sec3_box1_txt1{
    font-size: 28px;
  }
  .rental_sec3_box1{
    width: 69.52%;
  }
  .rental_sec3_box1_txt2{
    font-size: 20px;
  }
  .rental_sec3_box1 .content_desc{

  }
  .rental_sec3_box1 .read_more{
    margin-top: 11px;
  }
  .read_more.gr a{

  }
  .read_more.gr a:after{

  }

  /*sec4*/
  .rental_sec4_wrap .about_sec3_tt{

  }
  .rental_sec4_wrap .about_sec3_tt1{
    font-size: 36px;
  }
  .rental_sec4_wrap .about_sec3_tt2{
    font-size: 21px;
  }
  .about_sec4_tt{

  }
  .rental_sec4_wrap .about_sec4_tt{
    font-size: 40px; 
  }
  .rental_sec4_wrap .content_desc.center{
    margin-top: 29px;
  }
  .rental_sec4_wrap .about_sec3_items{
    margin-top: 59px;
  }

  .rental_sec4_wrap .about_sec3_item_tt{
    bottom: -30px;
  }
  .rental_sec4_wrap .about_sec3_item .content_desc{
    margin-top: 40px;
  }
}
@media (min-width:1024px){

  .rental_sec4_wrap .about_sec3_item_tt{
    bottom: -30px;
  }
  .rental_sec4_wrap .about_sec3_item .content_desc{
    margin-top: 50px;
  }
}
@media (min-width:1200px){
  /* メイン部分 */
  .page_header.rental{

  }
  .page_header.rental .page_header_box1{
    width: 49.01%; 
    padding-top: 0;
  }
  .page_header.rental .page_header_box2{
    width: 42.76%;
  }
  .page_header.rental .page_header_box2_img_outer{
    margin-top: 0;
  }
  .page_header.rental .page_header_box2_img{

  }

  .page_header.rental .content_desc{
    margin-top: 86px;
  }
  /*sec2*/
  .rental_sec2_wrap{

  }
  .rental_sec2_wrap .visit_sec4_box{
    flex-wrap: nowrap;
  }
  .rental_sec2_wrap .rental_sec2_box1{
    width: 51.31%;
  }
  .rental_sec2_wrap .rental_sec2_box2{
    width: 52.03%;
    position: relative;
  }
  .rental_sec2_wrap{

  }
  .rental_sec2_wrap .home_sec4_head_box2_tt p{

  }
  .rental_sec2_wrap .home_sec4_head_box2_tt:before{

  }
  .rental_sec2_wrap .visit_sec4_sub_txt{

  }
  .rental_txt1{
    font-size: 22px;
  }
  .rental_txt1 strong{
    font-size: 20px;
  }
  .rental_txt2{
    font-size: 18px;
  }
  .rental_sec2_wrap .rental_sec2_box1 .content_desc{

  }
  .rental_sec2_box2{
    margin-top: 0;
  }
  .rental_sec2_box2_img{
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

  /*sec3*/
  .rental_sec3_box{

  }
  .rental_sec3_box1_txt1{
    font-size: 32px;
  }
  .rental_sec3_box1{

  }
  .rental_sec3_box1_txt2{
    font-size: 25px;
  }
  .rental_sec3_box1 .content_desc{

  }
  .rental_sec3_box1 .read_more{

  }
  .read_more.gr a{

  }
  .read_more.gr a:after{

  }

  /*sec4*/
  .rental_sec4_wrap .about_sec3_tt{

  }
  .rental_sec4_wrap .about_sec3_tt1{
    font-size: 42px;
  }
  .rental_sec4_wrap .about_sec3_tt2{

  }
  .about_sec4_tt{

  }
  .rental_sec4_wrap .about_sec4_tt{
    font-size: 68px; 
  }

  .rental_sec4_wrap .about_sec3_item_tt{
    bottom: -30px;
  }
  .rental_sec4_wrap .about_sec3_item .content_desc{
    margin-top: 50px;
  }
  .rental_sec4_wrap .about_sec3_items{
    justify-content: center;
  }
  .rental_sec4_wrap .about_sec3_item:nth-child(3n){
    border-right: 0;
  }
  .rental_sec4_wrap .about_sec3_item:nth-child(n+4){
    margin-top: 46px;
  }
}
@media (min-width:1470px){
  .rental_sec4_wrap .about_sec3_item_tt{
    bottom: -30px;
  }
  .rental_sec4_wrap .about_sec3_item .content_desc{
    margin-top: 50px;
  }

}
@media (min-width:1720px){
  .rental_sec4_wrap .about_sec3_item_tt{
    bottom: -46px;
  }
  .rental_sec4_wrap .about_sec3_item .content_desc{
    margin-top: 78px;
  }

}




/*******************************
*　介護用品販売
********************************/

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

}
.pg_nurcing .section.sec1{

}
.pg_nurcing .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_nurcing .section.sec1{

  }
  .pg_nurcing .section.sec2{

  }

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


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

  }
  .pg_nurcing .section.sec1{

  }
  .pg_nurcing .section.sec2{
    padding-top: 185px;
  }
  .pg_nurcing .section.sec3{

  }
  .pg_nurcing .section.sec4{
    padding-top: 76px;
  }

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


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


}

/* メイン部分 */
.rental_sec3_box.nursing:before{
  width: 24.68%;
  aspect-ratio: 274 / 319;
  background-image: url(/system_panel/uploads/images/mnm.png);
}
@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_recruit{

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{

}
.pg_recruit .section.sec3{

}
.pg_recruit .section.sec4{

}
.pg_recruit .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{

  }
  .pg_recruit .section.sec3{
    padding-top:20px;
  }
  .pg_recruit .section.sec4{
    padding-top: 140px;
  }
  .pg_recruit .section.sec5{
    padding-top: 100px;
  }
  .pg_recruit .section.sec6{
    padding-top: 88px;
  }
}    
@media (min-width:1024px){


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

  }
  .pg_recruit .section.sec1{

  }
  .pg_recruit .section.sec2{

  }
  .pg_recruit .section.sec3{
    padding-top:20px;
  }
  .pg_recruit .section.sec4{
    padding-top: 140px;
  }
  .pg_recruit .section.sec5{
    padding-top: 130px;
  }

}

/*main*/
.page_header.recruit{

}
.page_header.recruit .page_header_box1{

}
.page_header.recruit .page_header_box2{

}
.recruit_tt{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0;
  text-align: center;
}
.tt2_sub_txt1.sm{
  margin-top: 30px;
}

.pg_recruit .section.sec2 .content_desc.center{
  line-height: 2; 
}

.pg_recruit .section.sec2 .content_desc.center p{
  letter-spacing: 0.025em;
}
.rental_sec4_wrap .about_sec3_items.recruit .about_sec3_item_img_outer:before{
  background: #f57e0a;
}

.tt2_sub_txt2.round{
  font-family: var(--font-ja);
  line-height: 1.8em;
}
.tt2_sub_txt2.round p{
  letter-spacing: 0;
}

/*sec4*/
.recruit_sec4_wrap{

}
.recruit_sec4_wrap .color_tt_en{
  justify-content: center;
}
.voice_tt{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-ja);
  display: flex;
  align-items: center;
  position: absolute;
  top: -60px;
  left: 0;
}
.voice_tt:before{
  content: "";
  display: block;
  width: 22px;
  aspect-ratio:22 / 30;
  background-image: url(/system_panel/uploads/images/bf.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.voice_tt:after{
    content: "";
  display: block;
  width: 22px;
  aspect-ratio:22 / 30;
  background-image: url(/system_panel/uploads/images/bf2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
}
.recruit_sec4_tt{
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.recruit_sec4_tt .color_tt_en{

}
.recruit_sec4_tt .about_sec3_tt2{
  margin-left: 10px;
}
.recruit_sec4_wrap .tt2_sub_txt1{
  margin-top: 20px;
}
.recruit_sec4_items{
  margin-top:60px;
}
.recruit_sec4_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 30px 16px;
}
  .ilust{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.recruit_sec4_item:nth-child(odd) .ilust{
  width: 19.27%;
  aspect-ratio:293 / 311;
  background-image: url(/system_panel/uploads/images/no1.png);
  bottom: -30px;
  right: 0;
}
.recruit_sec4_item:nth-child(even) .ilust{
    width: 17.63%;;
  aspect-ratio:268 / 335;
  background-image: url(/system_panel/uploads/images/no2.png);
left: 0;
bottom: -60px;
}
.recruit_sec4_item:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fcfbeb;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.recruit_sec4_item:nth-child(n+2){
  margin-top: 50px;
}
.recruit_sec4_box1{
  width: 100%;
  order: 2;
  margin-top: 80px;
  position: relative;
}
.recruit_sec4_box1_lists{

}
.recruit_sec4_box1_list{

}
.recruit_sec4_box1_list:nth-child(n+2){
  margin-top: 16px;
}
.recruit_sec4_box1_list_q{
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  background: #f57e0a;
  color: #fff;
  border-radius: 20px;
  padding: 6px 21px;
}
.recruit_sec4_box1_list_a{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.777em;
  margin-top: 16px;
}
.recruit_sec4_box2{
  width: 100%;
  order: 1;
}
.recruit_sec4_box2_img_outer{
  border-radius: 20px;
  position: relative;
}
.recruit_sec4_box2_img img{
  border-radius: 20px;
}
.recruit_sec4_box2_img:before{


}
.recruit_sec4_box2_txt{
  width: 100%;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-ja);
  background: #b2da65;
  color: #fff;
  border-radius: 0 0 20px 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 2px;
}


/*sec5*/
.recruit_sec5_items{
  margin-top: 50px;
}
.recruit_sec5_item{

}
.recruit_sec5_item:nth-child(n+2){
  margin-top:40px;
}
.recruit_sec5_item .company_tbl{

}
.recruit_sec5_item .company_tbl .table_rows_th,
.recruit_sec5_item .company_tbl .table_rows_td{
  border-color:#959595;
  font-weight: 500;
}
.recruit_sec5_item .company_tbl .table_rows_th{
  background: #fbfae8;
}
.recruit_sec5_item .company_tbl .table_rows_td{
  line-height: 1.66em;
}
.recruit_sec5_item .read_more{

}

.store_sec3_wrap{

}
.store_sec3_wrap .tt2_sub{
  margin-bottom: 40px;
}
@media (max-width:767px){
  .recruit_sec4_tt{
    display: block;
    text-align: center;
  }
  .recruit_sec4_box1_list_q{
    padding: 6px 10px;
  }

  .recruit_sec5_item .company_tbl .table_rows_th,
  .recruit_sec5_item .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #959595;
    border-bottom: none;
  }
  .recruit_sec5_item .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #959595;
  }

  .formTd .block2{
    display: flex;
    align-items: center;
  }
  
  .voice_tt{
    width: 100%;
    justify-content: center;
    text-align: center;
        top: -68px;
  }
}
@media (min-width:768px){
  /*main*/
  .page_header.recruit{

  }
  .page_header.recruit .page_header_box1{

  }
  .page_header.recruit .page_header_box2{

  }
  .recruit_tt{
    font-size: 22px;
  }
  .tt2_sub_txt1.sm{
    margin-top: 34px;
  }

  /*sec4*/
  .recruit_sec4_wrap{

  }
  .recruit_sec4_tt{

  }
  .voice_tt{
    font-size: 24px;
      left: 0;
    top: -50px;
  }
  .recruit_sec4_item:nth-child(even) .voice_tt{
    left: 0;
  }
  .recruit_sec4_tt .color_tt_en{

  }
  .recruit_sec4_tt .about_sec3_tt2{

  }
  .recruit_sec4_wrap .tt2_sub_txt1{
    margin-top: 20px;
  }
  .recruit_sec4_items{
    margin-top: 99px;
  }
  .recruit_sec4_item{

  }
  .recruit_sec4_item:nth-child(odd) .ilust{
  width: 130px;
  bottom: -120px;
  right: 0;
}
.recruit_sec4_item:nth-child(even) .ilust{
    width:130px;;
left: 0;
 bottom: -160px;
}
  .recruit_sec4_item:nth-child(n+2){
    margin-top: 120px;
  }
  .recruit_sec4_box1{
    width: 100%;
    margin-top: 80px;
  }
  .recruit_sec4_box1_lists{

  }
  .recruit_sec4_box1_list{

  }
  .recruit_sec4_box1_list:nth-child(n+2){
    margin-top: 45px;
  }
  .recruit_sec4_box1_list_q{
    font-size: 20px; 
  }
  .recruit_sec4_box1_list_a{
    font-size: 18px;
  }
  .recruit_sec4_box2{
    width: 100%;
  }
  .recruit_sec4_box2_img_outer{
    position: relative;
  }
  .recruit_sec4_box2_img:before{
    padding-top: 69.09%;

  }
  .recruit_sec4_box2_txt{
    font-size: 18px;
  }

  /*sec5*/
  .recruit_sec5_items{

  }
  .recruit_sec5_item{

  }
  .recruit_sec5_item:nth-child(n+2){
    margin-top: 78px;
  }
  .recruit_sec5_item .company_tbl{

  }
  .recruit_sec5_item .company_tbl .table_rows_th,
  .recruit_sec5_item .company_tbl .table_rows_td{
    font-size: 18px;
    padding: 16.5px 11px 16.5px;
  }
  .recruit_sec5_item .table_rows_th{

  }
  .recruit_sec5_item .company_tbl .table_rows_td{
    padding-left: 19px;
  }
  .recruit_sec5_item .read_more{

  }

  .store_sec3_wrap .tt2_sub{
    margin-bottom: 63px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*main*/
  .page_header.recruit{

  }
  .page_header.recruit .page_header_box1{
    padding-top: 26px;
  }
  .page_header.recruit .page_header_box2{

  }
  .page_header.recruit .page_header_box2_img_outer{
    margin-top: -167px;
  }

  .recruit_tt{
    font-size: 26px;
  }
  .tt2_sub_txt1.sm{
    font-size: 34px;
    letter-spacing: 0.025em;
  }
  .pg_recruit .section.sec2 .content_desc.center{
    margin-top: 15px;
  }
  .tt2_sub_txt2.round{
    font-size: 20px;
  }

  /*sec4*/
  .recruit_sec4_wrap{

  }
  .recruit_sec4_tt{

  }
   .voice_tt{
    font-size: 30px;
    left: 52px;
    top: -73px;
  }
  .recruit_sec4_tt .color_tt_en{
    font-size: 52px;
    letter-spacing: 0.075em;
  }
  .recruit_sec4_tt .about_sec3_tt2{

  }
  .recruit_sec4_wrap .tt2_sub_txt1{
    font-size: 52px;
    letter-spacing: 0.075em;
    margin-top: 20px;
  }
  .recruit_sec4_items{

  }
  .recruit_sec4_item{
    padding: 50px 0 40px;
  }
  .recruit_sec4_item:before{
    display: none;
  }
  .recruit_sec4_item:after{
    content: "";
    display: block;
    width: 86.51%;
    height: 100%;
    background: #fcfbeb;
    border-radius: 30px;
    position: absolute;
    top: 0;
    z-index: -1;
  }
  .recruit_sec4_item:nth-child(odd):after{
    left: 0;
  }
  .recruit_sec4_item:nth-child(even):after{
    right: 0;
  }
    .recruit_sec4_item:nth-child(odd) .ilust{
  width: 19.27%;
bottom: -20px;
        right: 63px;
}
.recruit_sec4_item:nth-child(even) .ilust{
    width: 17.63%;;
bottom: -20px;
        left: 63px;
}
  .recruit_sec4_box1{
    width: 57.23%;
    margin-top: 0;
  }
  .recruit_sec4_item:nth-child(n+2){
    margin-top: 130px;
  }
  .recruit_sec4_item:nth-child(odd) .recruit_sec4_box1{
    order: 1;
    padding-left: 52px;
  }
  .recruit_sec4_item:nth-child(odd) .recruit_sec4_box2{
    order: 2;
  }
  .recruit_sec4_item:nth-child(even) .recruit_sec4_box1{
    order: 2;
    padding-right: 52px;
  }
  .recruit_sec4_item:nth-child(even) .recruit_sec4_box2{
    order: 1;
  }

  .recruit_sec4_box1_lists{

  }
  .recruit_sec4_box1_list{

  }
  .recruit_sec4_box1_list_q{
    font-size: 22px; 
  }
  .recruit_sec4_box1_list_a{

  }
  .recruit_sec4_box2{
    width: 36.51%;
  }
  .recruit_sec4_box2_img_outer{
    margin-top: -95px;
  }
  .recruit_sec4_box2_img:before{


  }
  .recruit_sec4_box2_txt{
    font-size: 20px;
  }
  


  /*sec5*/
  .recruit_sec5_items{

  }
  .recruit_sec5_item{

  }
  .recruit_sec5_item:nth-child(n+2){
    margin-top: 78px;
  }
  .recruit_sec5_item .company_tbl{

  }
  .recruit_sec5_item .table_rows_th,
  .recruit_sec5_item .table_rows_td{

  }
  .recruit_sec5_item .company_tbl .table_rows_th{
    width: 284px;
  }
  .recruit_sec5_item .table_rows_td{

  }
  .recruit_sec5_item .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1366px){


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


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


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


}


/*******************************
*　店舗
********************************/
.pg_store{

}
.pg_store .section.sec1{

}
.pg_store .section.sec2{

}
.pg_store .section.sec3{

}
.pg_store .section.sec4{

}
.pg_store .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_store .section.sec1{

  }
  .pg_store .section.sec2{
    padding-top: 100px;
  }
  .pg_store .section.sec3{
    padding-top: 90px;
  }
  .pg_store .section.sec4{

  }
  .pg_store .section.sec5{

  }


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


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

  }
  .pg_store .section.sec1{

  }
  .pg_store .section.sec2{
    padding-top: 133px;
  }
  .pg_store .section.sec3{

  }
  .pg_store .section.sec4{

  }
  .pg_store .section.sec5{

  }

}


.shop_il{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
     top: 0;
}
.shop_item:nth-child(odd) .shop_il{
  background-image: url(/system_panel/uploads/images/shop_il1.png);
  width: 100px;;
  aspect-ratio:237 / 167;
  bottom: auto;
   top: 20px;
}
.shop_item:nth-child(even) .shop_il{
    background-image: url(/system_panel/uploads/images/shop_il2.png);
  width: 100px;
  aspect-ratio:360 / 168;
   bottom: auto;
   top: 20px;

}


/*main*/
.shop_items{

}
.shop_item{

}
.shop_item:nth-child(n+2){
  margin-top: 50px;
}
.shop_item_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.shop_item_head_box1{
  width: 100%;
}
.shop_item_head_box1_tt{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  background: #fced4b;
  padding: 0 15px;
}
.shop_item_head_box1_tt_sub{
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  margin-top: 20px;
}
.shop_item_head_box1 .content_desc{
  line-height: 1.66em;
  margin-top: 20px;
}
.shop_item_head_box1 .content_desc p{
  letter-spacing: 0.075em;
}

.shop_item_head_box1 .company_tbl{
  margin-top: 22px;
}
.shop_item_head_box1 .company_tbl .table_rows_th,
.shop_item_head_box1 .company_tbl .table_rows_td{
  font-weight: 500;
}
.shop_item_head_box1 .company_tbl .table_rows_th{
  background: #fbfae8;
}
.shop_item_head_box1 .company_tbl .table_rows_td{

}
.shop_item_head_box2{
  width: 100%;
  margin-top: 30px;
}
.shop_item_head_box2_img:before{
  padding-top: 82.05%;
}
.shop_item_head_box2_links{
  margin-top: 30px;
}

.links_outer{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.links_item{
  width: 100%; 
}
.links_item:nth-child(n+2){
  margin-top: 10px;
}
.link_3{
  display: block;
  width: 100%;
  border: 1px solid #b2da65;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  position: relative;
  padding: 25px 20px;
  transition: all .2s;
}
.link_3 + .link_3{
  margin-top: 10px;
}
.link_3:hover{
  background: #b2da65;
  color: #fff;
}
.link_3:before{
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: #b2da65;
  position: absolute;
  right: 14.7%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .2s;
}
.link_3:hover:before{
  background: #fff;
}
.link_3:after{
  content: "▶";
  display: block;
  position: absolute;
  right: 6.8%;
  top: 50%;
  transform: translateY(-50%);
  color: #b2da65;
  transition: all .2s;
}
.link_3:hover:after{
  color: #fff;
}
.link_3 p{

}
.links_item.pdf p{
  display: inline-block;
  position: relative;
}
.links_item.pdf p:after{
  content: "";
  display: block;
  width: 14px;
  height: 19px;
  background-image: url(/system_panel/uploads/images/pdf.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 56%;
  right: -21px;
  transform: translateY(-50%);
}

.shop_item_main{
  margin-top: 41px;
}
.shop_item_main_tt{
  font-size: 18px;
  font-weight: 500;
}
.shop_item_main .content_desc{
  line-height: 1.66em;
  margin-top: 20px;
}
.gmap{
  margin-top: 44px;
}
.access_map iframe{
  height: 250px;
  width: 100%;
  border: none;
}

.store_sec2_gallery{
  margin-top:40px;
}
.store_sec2_wrap .company_tbl{
  margin-top: 40px;
}
@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #888888;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #888888;
  }

  .links_item.pdf p:after{

  }
  .link_3{
    font-size: 14px;
  }
  
  .shop_item_head_box1_tt_sub{
    margin-top: 40px;
  }
}
@media (min-width:768px){
    .shop_item:nth-child(odd) .shop_il{
    background-image: url(/system_panel/uploads/images/shop_il1.png);
    width: 120px;
    aspect-ratio:237 / 167;
    right: 0;
    top: 20px; 
    }
  .shop_item:nth-child(even) .shop_il{
    background-image: url(/system_panel/uploads/images/shop_il2.png);
    width: 200px;
    aspect-ratio:360 / 168;
top: 30px;
  }
  
  /*main*/
  .shop_items{
    padding-top: 36px;
  }
  .shop_item{

  }
  .shop_item:nth-child(n+2){
    margin-top: 150px;
  }
  .shop_item_head{

  }
  .shop_item_head_box1{

  }
  .shop_item_head_box1_tt{
    font-size: 24px;
  }
  .shop_item_head_box1_tt_sub{
    font-size: 20px;
    margin-top: 41px;
  }
  .shop_item_head_box1 .content_desc{

  }

  .shop_item_head_box1 .company_tbl{
    margin-top: 57px;
  }
  .shop_item_head_box1 .company_tbl .table_rows_th,
  .shop_item_head_box1 .company_tbl .table_rows_td{
    font-size: 18px;
    padding: 17px 17px 18px;
  }
  .shop_item_head_box1 .company_tbl .table_rows_th{
    width: 204px;
  }
  .shop_item_head_box1 .company_tbl .table_rows_td{
    padding-left: 28px;
  }
  .shop_item_head_box2{
    margin-top: 30px;
  }
  .shop_item_head_box2_img:before{

  }
  .shop_item_head_box2_links{

  }

  .links_outer{
    margin-inline:-10px;
    margin-top: 60px;
  }
  .links_item{
    width: 100%;
    padding-inline:10px;
  }
  .links_item:nth-child(n+2){
    margin-top: 10px;
  }
  .link_3{
    padding: 25px 48px;
  }
  .link_3 p{

  }


  .shop_item_main{

  }
  .shop_item_main_tt{
    font-size: 21px;
  }
  .shop_item_main .content_desc{

  }
  .gmap{

  }
  .access_map iframe{
    height: 500px;
  }

  .store_sec2_wrap{

  }
  .store_sec2_wrap .company_tbl{
    margin-top: 54px;
  }
  .store_sec2_gallery{
    margin-top: 65px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  .shop_item:nth-child(odd) .shop_il{
    background-image: url(/system_panel/uploads/images/shop_il1.png);
    width: 15.59%;;
    aspect-ratio:237 / 167;
    bottom: 15px;
    right: 170px;
    top: auto;
  }
  .shop_item:nth-child(even) .shop_il{
    background-image: url(/system_panel/uploads/images/shop_il2.png);
    width: 23.68%;;
    aspect-ratio:360 / 168;
    bottom: -3px;
    right: 136px;
    top: auto;
  }
  
  /*main*/
  .shop_items{

  }
  .shop_item{

  }
  .shop_item_head{

  }
  .shop_item_head_box1{
    width: 55.26%;
  }
  .shop_item_head_box1_tt{
    font-size: 28px;
  }
  .shop_item_head_box1_tt_sub{
    font-size: 24px;
  }
  .shop_item_head_box1 .content_desc{

  }

  .shop_item_head_box1 .company_tbl{

  }
  .shop_item_head_box1 .company_tbl .table_rows_th,
  .shop_item_head_box1 .company_tbl .table_rows_td{

  }
  .shop_item_head_box1 .company_tbl .table_rows_th{

  }
  .shop_item_head_box1 .company_tbl .table_rows_td{

  }
  .shop_item_head_box2{
    width: 38.48%;
    margin-top:0;
  }
  .shop_item_head_box2_img:before{

  }
  .shop_item_head_box2_links{

  }

  .links_item{
    width: 50%;
  }
  .links_item:nth-child(n+2){
    margin-top: 0;
  }
  .links_item:nth-child(n+3){
    margin-top: 10px;
  }
  .link_3{
    font-size: 18px;
  }
  .link_3 p{

  }

  .shop_item_main{

  }
  .shop_item_main_tt{
    font-size: 21px;
  }
  .shop_item_main .content_desc{

  }
  .gmap{

  }
  .access_map iframe{

  }
}
@media (min-width:1366px){
  .shop_item_head_box1_tt{
    font-size: 40px; 
  }

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


}
@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: #888888;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #fbfae8;
  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: 77.777%;
}

@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 18px;
    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;
    padding: 17px 17px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;

  }
  .company_tbl .table_rows_td{
    padding-left: 30px;
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 60px;
  }
  .company_gallery_item{
    width: 25%;
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+5){
    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%;
  }

}



/*******************************
*　取扱商品
********************************/
.pg_products{

}
.pg_products .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

/*カテゴリ*/
.products_cate{

}
.products_cate .webgene-blog{

}
.products_cate .webgene-item{

}
.products_cate .webgene-item a{

}

/*リスト*/
.products_lists{

}
.products_lists .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.products_lists .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.products_lists .webgene-item:nth-child(n+3){
  margin-top: 36px;
}
.products_lists .webgene-item a .img{
border-radius: 20px;
}
.products_lists .webgene-item a:hover{
 color: #88b630;
}
.products_lists .webgene-item a:hover
.products_lists .webgene-item .category{
  display: inline-block;
  border: 1px dashed #b2da65;
  background: #fff;
  border-radius: 13px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  position: absolute;
  z-index: 1;
  top: -20px;
  left: 0;
  padding: 2px 20px;
}
.products_lists .webgene-item .box1{
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #b2da65;
  position: relative;
}
.products_lists .webgene-item .img:before{
  padding-top: 76.47%; 
}
.products_lists .webgene-item .img img{
  border-radius: 20px;
}
.products_lists .webgene-item .box2{

}
.products_lists .webgene-item .meta{
  margin-top: 10px;
}
.works_detail .post_content .meta span,
.products_lists .webgene-item .meta span{
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  background: #fced4b;
  text-align: center;
  width: 75px;
  border-radius: 15px;
  margin-right: 5px;
}
.products_lists .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  line-height: 1.66em;
  margin-top: 10px;
}

/*リスト*/


/*詳細*/
.works_detail{
  margin-top: 40px;;
}
.pg_products .content_desc.big{

}
.pg_products .content_desc.big p{
  letter-spacing: 0.075em;
}
.works_detail .post_content{
  margin-top: 30px;
}
.works_detail .post_content .title{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 10px;
  margin-top: 12px;
}
.works_detail .post_content .post_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  letter-spacing: 0;
  padding-top: 16px;
}
.works_detail .read_more{
  margin-top: 40px;
}

.body_products-detail .section.sec1 .content_desc{
  position: relative;
}
.body_products-detail .section.sec1 .content_desc:after{
    content: "";
  display: block;
  width: 17.76%;;
  aspect-ratio:270 / 152;
  background-image: url(/system_panel/uploads/images/detail_il.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .products_cate{
    display: none;
  }
  .pg_products .posts_side_title{
    background: #b2da65;
  }

  .products_lists .webgene-item .category{
    font-size: 14px;
    top: -13px;
    left: 0;
    padding: 0px 20px;
  }
  
  .body_products-detail .section.sec1 .content_desc:after{
        width: 100px;
            bottom: -34px;
  }
}
@media (min-width:768px){
  .pg_products{

  }
  .pg_products .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  /*カテゴリ*/
  .products_cate{
    margin-bottom: 80px;
  }
  .products_cate .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-18.5px;
  }
  .products_cate .webgene-item{
    width: 50%;
    padding-inline:18.5px;
  }
  .products_cate .webgene-item:nth-child(n+3){
    margin-top: 20px;
  }
  .products_cate .webgene-item a{
    display: block;
    border: 1px solid #f57e0a;
    border-radius: 28px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-ja);
    letter-spacing: 0.025em;
    padding: 16px;
  }
  .products_cate .webgene-item a:hover,
  .products_cate .webgene-item a.on{
    background: #f57e0a;
    color: #fff;
  }

  /*リスト*/
  .products_lists{

  }
  .products_lists .webgene-blog{

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

  }
  .products_lists .webgene-item .category{
    padding: 2px 44px;
  }
  .products_lists .webgene-item .box1{
    padding: 10px;
  }
  .products_lists .webgene-item .img:before{

  }
  .products_lists .webgene-item .img img{

  }
  .products_lists .webgene-item .box2{

  }
  .products_lists .webgene-item .meta{
    margin-top: 16px;
  }

  .products_lists .webgene-item .meta span{
    width: 100px;
    display: inline-block;
    font-size: 15px;
    margin-right: 10px;
  }
  .works_detail .post_content .meta span{
    width: 100px;
    display: inline-block;
    font-size: 15px;
    padding: 5px;
  }
  .products_lists .webgene-item .title{
    font-size: 18px;
    margin-top: 16px;
  }

  /*詳細*/
  .works_detail{
    margin-top: 91px;
  }
  .pg_products .content_desc.big{
    line-height: 1.9em;
  }
  .works_detail .post_content{
    margin-top: 30px;
  }
  .works_detail .post_content .title{
    font-size: 20px;
    margin-top: 20px;
    padding-bottom: 16px;
  }
  .works_detail .post_content .post_txt{
    padding-top: 20px;
  }
  .works_detail .read_more{
    margin-top: 140px;
  }
  
   .body_products-detail .section.sec1 .content_desc:after{
        bottom: -59px;
  }
}
@media (min-width:1024px){
  .works_detail .post_content{
    margin-top: 0; 
  }

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

  /*カテゴリ*/
  .products_cate{
    margin-bottom: 118px;
  }
  .products_cate .webgene-blog{

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

  }

  /*リスト*/
  .products_lists{

  }
  .products_lists .webgene-blog{
    margin-inline:-15px;
  }
  .products_lists .webgene-item{
    width: 25%;
    padding-inline:15px;
  }
  .products_lists .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .products_lists .webgene-item:nth-child(n+5){
    margin-top: 73px;
  }
  .products_lists .webgene-item a{

  }
  .products_lists .webgene-item .category{

  }
  .products_lists .webgene-item .box1{

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

  }
  .products_lists .webgene-item .img img{

  }
  .products_lists .webgene-item .box2{

  }
  .products_lists .webgene-item .meta{

  }
  .products_lists .webgene-item .title{
    font-size: 18px;
  }

  /*詳細*/
  .pg_products .content_desc.big{

  }
  .works_detail .post_content{

  }
  .works_detail .post_content .title{
    font-size: 26px;
  }
  .works_detail .post_content .post_txt{

  }

  .body_products-detail .section.sec1 .content_desc:after{
         bottom: -108px;
        width: 160px;
  }
}

@media (min-width:1366px){
  .body_products-detail .section.sec1 .content_desc:after{
        bottom: -59px;
        width: 17.76%;
  }
}
/*******************************
*コラム
********************************/
.pg_column{

}
.pg_column .section.sec1{

}

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

}
.column_detail .webgene-item .date{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
}
.column_detail .webgene-item .title{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.075em;;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
  margin-top: 8px;
  margin-bottom: 20px;
}
.column_detail .webgene-item .post_content{

}
.column_detail .webgene-item .post_content img{
  margin-bottom: 30px;
}
.column_detail .webgene-item h3{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.075em;;
  background: #f9f6a0;
  padding: 10px 6px;
  margin-bottom: 20px;
}
.column_detail .webgene-item .txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88em;
  letter-spacing: 0.075em;
}
.column_detail .webgene-item .txt h3:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width:374px){

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

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

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

  }
  .pg_column .section.sec1{

  }

  /*詳細*/
  .column_detail{
    padding-bottom: 80px;
  }
  .column_detail .webgene-item{

  }
  .column_detail .webgene-item .date{
    font-size: 17px;
  }
  .column_detail .webgene-item .title{
    font-size: 20px;
    margin-bottom: 37px;
  }
  .column_detail .webgene-item .post_content{

  }
  .column_detail .webgene-item .post_content img{
    margin-bottom: 53px;
  }
  .column_detail .webgene-item h3{
    font-size: 18px;
  }
  .column_detail .webgene-item .txt{
    font-size: 18px;
  }
  .column_detail .webgene-item .txt h3:not(:first-of-type){
    margin-top: 50px;
  }
  .pg_column .read_more{
    margin-top: 147px;
  }
}
@media (min-width:1024px){


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

  }
  .pg_column .section.sec1{

  }

  .pg_column .column_list{
    padding-top: 39px;
  }
  .pg_column .column_list .webgene-item:nth-child(n+5){
    margin-top: 51px;
  }

  /*詳細*/
  .column_detail{
    padding-top: 29px;
    padding-bottom: 144px;
  }
  .column_detail .webgene-item{

  }
  .column_detail .webgene-item .date{

  }
  .column_detail .webgene-item .title{

  }
  .column_detail .webgene-item .post_content{

  }
  .column_detail .webgene-item h3{

  }
  .column_detail .webgene-item .txt{

  }
}


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

/* 一覧（サムネあり） */
.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: #b2da65;
  color: #FFF;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left:0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 7px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 30px;
  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;
}

.news_detail{
  border-bottom: 1px solid #b9b9b9;
  padding-bottom:30px;
}
.news_detail .webgene-item{

}
.news_detail .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.news_detail .webgene-item .date{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  margin-right: 10px;
}
.news_detail .webgene-item .category{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  border: 1px solid #32333d;
  display: inline-block;
  padding: 2px 20px;
  border-radius: 14px;
  text-align: center;
}
.news_detail .webgene-item .title{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  border-bottom: 1px solid #b9b9b9;
  padding-bottom: 10px;
  margin-top: 10px;
}
.news_detail .webgene-item .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.66em;
  padding-top: 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{

}
.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: 157px;
  }

  .pg_news .news_list .webgene-item a:before{
    right: 7.01%;
  }
  .pg_news .news_list .webgene-item a:after{
    right: 3.1%;
  }
  .pg_news .news_list .webgene-item .date{
    width: 16.6%;
    font-weight: 400;
    text-align: left;
    padding-left: 10px;
    font-size: 13px;
    letter-spacing: 0.075em;
  }
  .pg_news .news_list .webgene-item .title{
    width: 83.4%;
  }
  .pg_news .news_list .webgene-item:nth-child(n+2){
    margin-top: 27px;
  }

  /* 詳細 */
  .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;
  }

  .news_detail{
    padding-bottom: 23px;
  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .meta{

  }
  .news_detail .webgene-item .date{
    margin-right: 12px;
  }
  .news_detail .webgene-item .category{

  }
  .news_detail .webgene-item .title{
    font-size: 20px;
    margin-top: 16px;
  }
  .news_detail .webgene-item .post_content{
    font-size: 18px;
    padding-top: 40px;
  }
  .pg_news .read_more{
    margin-top: 96px;
  }
}
@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: 40px;
  }

  .pg_news .posts_layout_box1{
    width: 75.98%;
  }
  .pg_news .posts_layout_box2{
    width: 16.77%;
  }
  .pg_news .news_list .webgene-item .date{
    padding-left: 36px;
  }
  .pg_news .news_list .webgene-item .date{
    font-size: 18px;
  }
}



/*******************************
*　ギャラリー（サムネ横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;
  margin-top: 14px;
}

/* メイン */
.gallery_main{

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

}


/* 詳細 */
.gallery_detail{

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

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

.gallery_slide_prev,
.gallery_slide_next{
  display: none;
}
/* コピー用 */
@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;
  }

  /* 詳細 */
  .works_detail{
    display: block;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .gallery_wrap{

  }
  .gallery_box1{
    width: 100%;
  }
  .gallery_box2{
    width: 100%;
    margin-top: 0;
    margin-top: 14px;

    position: relative;
    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){

  /* 詳細 */
  .works_detail{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .gallery_wrap{
    width: 49.01%;
  }
  .works_detail .post_content{
    width: 44.73%;
    margin-top: 0;
  }
  .works_detail .read_more{
    width: 100%;
  }

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

/* フォーム */
.formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.formTh {
  padding: 12px 15px 16px 20px;
  background: #fbfae8;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #153853;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd.born label{
  margin-left: 10px; 
}
.formTd .block1{
  margin-right: 3px;
}
.formTd .block2{
  margin-left: 20px;
}
.formTd.flex{
  display: flex;
  align-items: center;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="year"]{
  max-width: 70px;
}
.formTd input[name="month"],
.formTd input[name="calear"]{
  max-width:45px;
}
.formTd input[name="day"]{
  max-width: 45px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 53px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 600;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #88b630;
}
.body_recruit .formWrap .privacyLabel a{
  color: #88b630;
}

.formBtn.formSend {
  min-width: 190px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  border: none;
  background: none;
  /* border-radius: 27px; */
  color: #181818;
  padding: 16px 20px;
  margin: 5px auto;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
}
.formBtn.formSend:after{
  content: "";
  display: block;
  width: 87px;
  aspect-ratio: 87 / 50;
  background-image: url(/system_panel/uploads/images/arrr5.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  transition: 0.2s all;
  margin-left: 33px;
  position: relative;
  right: 0;
}
.formBtn.formSend:hover:after{
  right: -5px;
}

.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.formTd input[type=radio] {
  margin-right: 8px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

.ctn_form{
  margin-top: 49px;
}
@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }
  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 25px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #b2da65;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
  font-weight: 500;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

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

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

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

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 46px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
  margin-right: 27px;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

.privacy_item_box {
  padding: 28px 43px 30px 27px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 58px;
}
@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;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 155px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .privacyLabel {
    font-size: 15px;
  }

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

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    margin-bottom: 0;
    font-size: 19px;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .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;
  }
  .contact_tt {
    margin-bottom: 20px;
  }


  .privacy_item_box{
    padding: 30px 10px; 
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .privacy_ttl {
    font-size: 18px;
    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;
    margin-top: 30px;
  }
}


/*******************************
*　
********************************/
.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){


}
