@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", "Noto Sans JP", sans-serif;
  --font-en2: "Marcellus",'Noto Sans JP', sans-serif;
  --font-mincho: 'Zen Old Mincho', serif;
  --font-maru: "M PLUS Rounded 1c", sans-serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.075em;
  background: #81d742;
  /*background-image: url('https://sit-9973627.sibloo.com/system_panel/uploads/images/body_kasou_top1.jpg');*/
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 768px auto;
  /*min-height: 1350px;*/
  color: var(--txt-color);
  /*color: #FFF;*/

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

#root{
  overflow: hidden;
  /*background: #040404;*/
  /*background-image: url('https://sit-9973627.sibloo.com/system_panel/uploads/images/footer_bg.jpg');*/
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
  z-index: 1;
}
.gjs-dashed{
  background: #81d742;
  /*color: #FFF;*/
}

@media (min-width:768px){
  body{
    background-size: 1024px auto;
  }
}
@media (min-width:1024px){
  body{
    background-size: 1280px auto;
  }
}
@media (min-width:1366px){
  body{
    background-size: 1470px auto;
  }
}
@media (min-width:1470px){
  body{
    background-size: auto;
  }
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
: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: 4;
  }
}

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

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

}
h1, h2, h3, h4, h5, h6{
  /*font-family: var(--font-mincho);*/
  font-weight: 400;
  line-height: 1.2;
  /*letter-spacing: 0.075em;*/
}

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

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

em{
  display: inline-block;
  font-style: normal;
}

.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;
  position: static;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s all;
}
.hdr1{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 10px 10px;
  
}

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

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /*border-left: 1px solid #808080;*/
}

/* 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: 0;

}
.hdr_contact a{
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eb6100;
  color: #FFF;
  width: 160px;
  height: 100px;
  padding: 10px 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  /*font-family: var(--font-mincho);*/
  letter-spacing: 0.025em;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a em{
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.075em;

}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--main-color);
  color: #FFF;
}

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


@media (min-width:375px){

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

  .header{
    z-index: 3;
  }
  .hdr1 {
    justify-content: center;
    padding: 0;
  }

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

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

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

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

  .hdr1{
    padding: 0 0 0 20px;
    border-bottom: 1px solid #8c8c8c;
  }
  .hdr_menu{
    /*border-left: 1px solid #808080;*/
    margin-left: 35px;
  }

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

  .hdr_contact{
    height: 100%;
  }

  /* ヘッダースリム */
  .header.slim{
    background: rgba(129,215,66,0.95);
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }
  .header.slim .hdr_contact a{
    /*height: 40px;*/
  }

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    --logo-height: 36px;
  }
  .hdr1{
    align-items: center;
    padding: 0 0 0 20px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

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

  .header{
    --logo-height: 47px;
  }
  .hdr1{
    align-items: center;
    padding: 0 0 0 50px;
  }
}

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

.body_home{
  background-position: center top;
  background-repeat: no-repeat;
  /*background-size: 1050px auto;*/
  /*padding-top: 55px;*/
}
@media (min-width:768px){
  .body_home{
    background-size: auto auto;
    padding-top: 100px;
  }
}


/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}

.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  /*padding-top: calc(100svh - 64px);*/
  padding-top: 140px;
}

/* キャッチコピー */
.mv_catch{
  width: 100%;
  /*position: absolute;
  z-index: 2;
  left: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
  text-align: center;
  margin-top: 10px;
}
.mv_catch_txt1{
  font-size: 30px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.mv_catch_txt2{
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-top: 5px;
}
.mv_catch_txt3{
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.075em;
  margin-top: 10px;
}



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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

@media (min-width:414px){

  .mv{
  }

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


  /* MV */
  .mv{
  }
  .mv_img.img_fit:before{
    /* 画面高さ - ヘッダー分 */
    padding-top: 265px;
  }
  .mv_catch_txt1{
    font-size: 54px;
  }
  .mv_catch_txt2{
    font-size: 30px;
  }
  .mv_catch_txt3{
    font-size: 18px;
  }

}

@media (min-width:1024px){




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

  /* MV */
  .mv{
  }

  /* キャッチコピー */
  .mv_catch{
    margin-top: -10px;
  }


  .mv_img.img_fit:before{
    padding-top: 480px;
  }

  .mv_catch_txt1{
    font-size: 84px;
  }
  .mv_catch_txt2{
    font-size: 42px;
  }
  .mv_catch_txt3{
    font-size: 18px;
  }

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

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

}
@media (min-width:1536px){
  
  /* MV */
  .mv{
  }
  .mv_img.img_fit:before{
    padding-top: 640px;
  }
  
}
@media (min-width:1720px){

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


}


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

/* サイドバー */
.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{
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.pg_header_mv{
  position: relative;
  z-index: 1;
}
.pg_header_mv.img_fit:before{
  padding-top: 250px;
}
.pg_header_mv:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  margin-bottom: 40px;
}
.pg_header_title_en{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #2e2e2e;
}
.pg_header_title_ja{
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1.2;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}
.pg_header_title_ja:before{
  content: "";
  width: 30px;
  height: 2px;
  background: #564e43;
  margin-right: 10px;
}

@media (min-width:768px){

  .pg_header{
    margin-bottom: 40px;
  }


  .pg_header_mv{

  }
  .pg_header_mv.img_fit:before{
    padding-top: 400px;
  }

  .pg_header_title{

    margin-bottom: 115px;
  }
  .pg_header_title_en{
    font-size: 60px;
  }
  .pg_header_title_ja{
    font-size: 30px;
  }
  .pg_header_title_ja:before{
    width: 80px;
    margin-right: 20px;
  }

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


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

  .pg_header{
    margin-bottom: 40px;
  }

  .pg_header_mv{

  }
  .pg_header_mv.img_fit:before{
    padding-top: 450px;
  }

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

  .pg_header{
    margin-bottom: 40px;
  }

  .pg_header_mv{

  }
  .pg_header_mv.img_fit:before{
    padding-top: 550px;
  }

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

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

  .pg_header{
  }

  .pg_header_mv{

  }
  .pg_header_mv.img_fit:before{
    padding-top: 680px;
  }

  .pg_header_title_en{
    font-size: 100px;
  }

}



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


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

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


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

}

u{
  display: inline-block;
  font-style: normal;
  text-decoration: none;
}


/* テーブル用 */
.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 #a6a6a6;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
  color: #FFF;
}
.table_rows_th{
  background-color: #000000;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #2e2e2e;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

.table_rows.color2 .table_rows_th{
  background-color: var(--main-color);
  color: #FFF;
}

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

.gjs-dashed .table_rows{
  border-collapse: separate;
}
.gjs-dashed .table_rows_tr + .table_rows_tr{
  border-top: 5px dashed #CCC;
}

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

/* アンカー */
.anchor{
  width: 100%;
  position: relative;
  top: -30px;
}
.gjs-dashed .anchor{
  position: static;
  height: 10px;
  background: #CCC;
}

/* ボタン 
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.read_more a{
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  max-width: 100%;
  min-height: 50px;
  background: #fff100;
  color: #181818;
  border: 1px solid #fff100;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a:after{
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1 / 1;
  background: #FFF;
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  background: #ccc;
}
.read_more a:hover:after{
  margin-right: -5px;
}*/


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.tt2_en{
  font-size: 45px;
  font-weight: 400;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
  /*color: #2e2e2e;*/
}
.tt2_en.osw{
  font-family: var(--font-en);
}
.tt2_en.min{
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
}
.tt2_en_bdr{
  display: flex;
  align-items: center;
}
.tt2_en_bdr:before,
.tt2_en_bdr:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #FFF;
}
.tt2_en_bdr .tt2_en{
  /*white-space: nowrap;*/
  margin: 0 15px;
}

.tt2_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.4;
}
.tt2_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 10px;
}

.tt2.left{
  text-align: left;
}
.tt2.left .tt2_ja{

}


.tt2.slim{

}
.tt2.slim .tt2_en{
  height: 1em;
}
.tt2.slim + .cmn_about_ttl{
  position: relative;
  z-index: 2;
}
.tt2.slim + .cmn_about_ttl + .home_problems_msg{
  position: relative;
  z-index: 2;
}

.tt3{
  margin-bottom: 20px;
}
.tt3_ja{
  display: inline-block;
  min-width: 180px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  background: #FFF;
  color: #000;
  border-radius: 21px;
  text-align: center;
  padding: 9px 10px;
  margin-bottom: 5px;

}
.tt3_ja2{
  display: inline-block;
  /*min-width: 490px;*/
  max-width: 100%;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  background: #2e2e2e;
  text-align: left;
  padding: 9px 10px;
  margin-bottom: 15px;
}
.tt3_en + .tt3_ja2{
  /*margin-top: -3px;*/
}
.tt3_ja2s{

}
.tt3_ja2s .tt3_ja2s{

}
.tt3_ja2s .tt3_ja2{
  margin-bottom: 6px;
}
.tt3_ja2s .tt3_ja2:last-child{
  margin-bottom: 0;
}

.tt3_en{
  font-size: 42px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #2e2e2e;
}

.tt3_sub{
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.666;
  margin-left: -0.1666em;
}
.tt3_sub2{
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.555;
}

.sec_head{
  margin-bottom: 50px;
}
.sec_head_txt{
  letter-spacing: 0;
}
.sec_head_ttl_sub{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: -5px;
  margin-bottom: 10px;
}


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

/* 箇条書きリスト */
.tbl_bullet_list{
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.tbl_bullet_list.inline{

}
.tbl_bullet_list.inline p{
  width: 100%;
  text-indent: -1em;
  padding-left: 1em;
}
.tbl_bullet_list p:before{
  content: "・";
}
.tbl_bullet_list.star p:before{
  content: "★";
}

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

.js-cursor-custom{

}
.js-cursor-custom a{

}

@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 #a6a6a6;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #a6a6a6;
  }

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

  .anchor{
    top: -100px;
  }

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

  /* ボタン 
  .read_more{
    margin-top: 40px;
  }
  .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: 315px;
    min-height: 60px;
    border-radius: 30px;
    font-size: 18px;
  }*/

  /* 見出し */
  .tt2{
    margin-bottom: 16px;
  }
  .tt2_en{
    font-size: 90px;
  }
  .tt2_ja{
    font-size: 22px;
    top: 47%;
  }

  .tt2.left{
    text-align: left;
  }
  .tt2.left .tt2_ja{

  }
  .tt2_txt{
    margin-top: 15px;
  }

  .tt3{
    margin-bottom: 20px;
  }
  .tt3_ja{
    min-width: 270px;
    font-size: 20px;
    padding: 9px 10px;
    margin-bottom: 5px;
  }
  .tt3_ja2{
    min-width: 415px;
    font-size: 22px;
    padding: 9px 10px;
    margin-bottom: 15px;
  }
  .tt3_en + .tt3_ja2{
    margin-top: -3px;
  }

  .tt3_en{
    font-size: 80px;
  }
  .tt3_sub{
    font-size: 40px;
  }
  .tt3_sub2{
    font-size: 22px;
  }
  .sec_head{
    margin-bottom: 150px;
  }
  .sec_head_ttl_sub{
    font-size: 30px;
  }
  /**/
  .table_rows_th{
    width: 190px;
  }
  .table_rows_td{

  }


  /* 箇条書きリスト */
  .tbl_bullet_list{
    gap: 0 40px;
  }

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

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

  /* 見出し */
  .tt2{
    /*margin-bottom: 16px;*/
  }
  .tt2_en{
    font-size: 100px;
  }
  .tt2_ja{
    font-size: 22px;
  }

  .tt2.tate{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .tt2.tate .tt2_en{

  }
  .tt2.tate .tt2_ja{
    position: static;
    transform: none;
    margin-left: 10px;
  }


  .tt3{
    margin-bottom: 20px;
  }
  .tt3_ja{
    min-width: 270px;
    font-size: 20px;
    padding: 9px 10px;
    margin-bottom: 5px;
  }
  .tt3_ja2{
    min-width: 400px;
    font-size: 20px;
    padding: 9px 10px;
    margin-bottom: 15px;
  }
  .tt3_en{
    font-size: 60px;
  }

  .tt3_sub{
    font-size: 40px;
  }
  .tt3_sub2{
    font-size: 22px;
  }
  .sec_head{
    margin-bottom: 150px;
  }

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


  /* 見出し */
  .tt2{
    /*margin-bottom: 16px;*/
  }
  .tt2_en{
    font-size: 110px;
  }
  .tt2_ja{
    font-size: 22px;
  }

  .tt2_en_bdr .tt2_en{
    white-space: nowrap;
    margin: 0 15px;
  }
  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }

  .table_rows_th,
  .table_rows_td{
    font-size: 16px;
    line-height: 1.5;
    padding: 18px 22px;
  }
  .table_rows_th{
    width: 190px;
  }
  .table_rows_td{
    padding-left: 35px;
  }


  .read_more a{
  }
  .read_more a:after{
  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

  /* 見出し */
  .tt2{
    /*margin-bottom: 16px;*/
  }
  .tt2_en{
    font-size: 138px;
  }
  .tt2_ja{
    font-size: 36px;
    margin-top: 23px;
  }
  .tt2_txt{
    font-size: 20px;
    margin-top: 18px;
  }


  .tt3{
    margin-bottom: 30px;
  }
  .tt3_ja{
    min-width: 270px;
    font-size: 20px;
    padding: 9px 10px;
    margin-bottom: 5px;
  }
  .tt3_ja2{
    min-width: 400px;
    font-size: 28px;
    padding: 9px 20px;
    margin-bottom: 15px;
  }
  .tt3_en + .tt3_ja2{
    margin-top: -3px;
  }

  .tt3_en{
    font-size: 80px;
  }

  .tt3_sub{
    font-size: 60px;
  }
  .tt3_sub2{
    font-size: 32px;
  }
  .sec_head{
    width: 890px;
    margin-bottom: 100px;
  }


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

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


  .tt3_en{
    font-size: 110px;
  }
  .tt3_sub{
    font-size: 60px;
  }
  .tt3_sub2{
    font-size: 36px;
  }
  .sec_head{
    margin-bottom: 150px;
  }

}


/* ページ概要 */
.cmn_about{
  position: relative;
  z-index: 1;
}
.cmn_about_ttl{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1.476;
  text-align: center;
  margin-bottom: 15px;
}
.cmn_about_ttl.left{
  text-align: left;
}
.cmn_about_txt{
  font-size: 16px;
  text-align: justify;
}

/* ページナビ */
.cmn_nav{
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
* + .cmn_nav{
  margin-top: 40px;
}
/*.cmn_nav.col2{
  column-gap: 30px;
}
.cmn_nav.col3{
  column-gap: 25px;
}
.cmn_nav.col4{
  column-gap: 25px;
}*/

.cmn_nav_item{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 56px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.444;
  text-align: left;
  padding-left: 40px;
  background: var(--sub-color);
  color: #000;
  border-radius: 35px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.cmn_nav_item:after{
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1 / 1;
  background: #FFF;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_nav_item:hover{
  background-color: #54a419;
  color: #FFF;
}
.cmn_nav_item:hover:after{
  color: #181818;
  margin-right: -5px;
}

/*.cmn_nav.col2 .cmn_nav_item{
  width: calc((100% - 30px) / 2);
}
.cmn_nav.col3 .cmn_nav_item{
  width: calc((100% - 50px) / 3);
}
.cmn_nav.col4 .cmn_nav_item{
  width: calc((100% - 75px) / 4);
}*/


@media (min-width:768px){



  /* ページ概要 */
  .cmn_about{
  }
  .cmn_about_ttl{
    font-size: 30px;
    margin-bottom: 30px;
  }
  .cmn_about_txt{
    font-size: 16px;
  }



  /* ページナビ */
  .cmn_nav{
    row-gap: 15px;
    column-gap: 15px;
  }
  * + .cmn_nav{
    margin-top: 50px;
  }
  /*.cmn_nav.col2{
    column-gap: 30px;
  }
  .cmn_nav.col3{
    column-gap: 25px;
  }
  .cmn_nav.col4{
    column-gap: 25px;
  }*/
  .cmn_nav_item{
    min-height: 60px;
    font-size: 18px;
    border-radius: 35px;
    padding-left: 40px;
  }
  .cmn_nav_item:after{
    right: 20px;
  }

  .cmn_nav.col2 .cmn_nav_item,
  .cmn_nav.col3 .cmn_nav_item,
  .cmn_nav.col4 .cmn_nav_item{
    width: calc((100% - 15px) / 2);
  }

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



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

  /* ページナビ */
  .cmn_nav{
    row-gap: 15px;
    column-gap: 15px;
  }
  * + .cmn_nav{
    margin-top: 50px;
  }
  .cmn_nav_item{
    min-height: 60px;
    font-size: 16px;
  }
  .cmn_nav_item:after{
    right: 15px;
    /*font-size: 1.2em;*/
  }

  .cmn_nav.col2 .cmn_nav_item{
    width: calc((100% - 15px) / 2);
  }
  .cmn_nav.col3 .cmn_nav_item{
    width: calc((100% - 30px) / 3);
  }
  .cmn_nav.col4 .cmn_nav_item{
    width: calc((100% - 45px) / 4);
  }

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


  /* ページ概要 */
  .cmn_about{
  }
  .cmn_about_ttl{
    font-size: 42px;
    margin-bottom: 30px;
  }
  .cmn_about_txt{
    font-size: 16px;
  }


  /* ページナビ */
  .cmn_nav{
    row-gap: 25px;
  }
  * + .cmn_nav{
    margin-top: 90px;
  }
  .cmn_nav.col2{
    column-gap: 30px;
  }
  .cmn_nav.col3{
    column-gap: 25px;
  }
  .cmn_nav.col4{
    column-gap: 25px;
  }
  .cmn_nav_item{
    min-height: 60px;
    font-size: 18px;
  }
  .cmn_nav_item:after{
    right: 20px;
    font-size: 1.333em;
    font-size: 14px;
  }

  .cmn_nav.col2 .cmn_nav_item:after{
    right: 65px;
  }

  .cmn_nav.col2 .cmn_nav_item{
    width: calc((100% - 30px) / 2);
  }
  .cmn_nav.col3 .cmn_nav_item{
    width: calc((100% - 50px) / 3);
  }
  .cmn_nav.col4 .cmn_nav_item{
    width: calc((100% - 75px) / 4);
  }

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

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

}




/*******************************
*　HOME
********************************/
.pg_home{
}
.pg_home .section.sec1{
  padding-top: 80px;
}
.pg_home .section.sec1 .container{
  position: relative;
  z-index: 2;
}
.pg_home .section.sec2{
  background-size: 405px auto;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec2:before{
  content: "";
  width: 100px;
  aspect-ratio: 405 / 2009;
  background-image: url('/system_panel/uploads/images/body_side_bg.png');
  background-repeat: repeat-y;
  background-position: left bottom;
  background-size: 100% auto;
  position: absolute;
  z-index: -1;
  left: 0;
  /*bottom: 370px;*/
  opacity: 0.5;
}

.pg_home .section.sec3{
  padding-top: 80px;
}
.pg_home .section.sec4{

}
.pg_home .section.sec5{
  padding-bottom: 0;
}
.pg_home .section.sec6{
  padding-top: 0;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){
  .pg_home .section.sec2:before{
    top: -100px;
    aspect-ratio: 405 / 4018;
  }
}
@media (min-width:768px){

  .pg_home .section.sec2:before{
    width: 200px;
    bottom: 1000px;
  }

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


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


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

  .pg_home .section.sec2:before{
    width: 405px;
    bottom: 450px;
  }
  .pg_home .section.sec6{
    padding-bottom: 100px;
  }

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

  .pg_home .section.sec2:before{
    width: 405px;
    bottom: 370px;
  }
}

/* メイン */


/* ABOUT: レイアウト */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: #54a419;
  border: 10px solid #FFF;
  border-bottom: 0;
  padding: 20px 15px 15px;
  position: relative;
  z-index: 1;
}
.home_about_box1{
  width: 94%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  order: 2;
}
.home_about_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  order: 1;
}
.home_about_box2_1{
  width: 100%;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  order: 2;
}
.home_about_box2_2{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 1;
}
.home_about_box3{
  width: 100%;
  margin-top: 20px;
  padding-right: 0;
  position: relative;
  z-index: 4;
  order: 4;
}
.home_about_box4{
  width: 100%;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 3;
  order: 3;
}
.home_about_box4_1{
  width: 100%;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.home_about_box4_2{
  width: 100%;
}

/* ABOUT: タイトル */
.home_about_ttl1{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.578;
  color: #FFF;
}
.home_about_ttl2{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  color: #FFF;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  transform: translate(0, 40%);
}
.home_about_ttl3{
  font-size: 36px;
  font-weight: 900;
  line-height: 1.189;
  letter-spacing: 0;
  white-space: nowrap;
}
.home_about_ttl4{
  font-size: 36px;
  font-weight: 900;
  line-height: 1.189;
  letter-spacing: 0;
  text-align: right;
  white-space: nowrap;
  margin-top: 10px;
}
.home_about_ttl5{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
  margin-bottom: 15px;
}
.home_about_ttl6{
  font-size: 30px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
  margin-top: 20px;
}
.home_about_ttl7{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.home_about_txt{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.025em;
  text-align: justify;
}

/* ABOUT: 画像 */
.home_about_img1{
  width: 30%;
  margin-top: -80px;
  margin-left: auto;
}
.home_about_img2{
  margin-right: -40px;
  border-radius: 20px 0 0 20px;
}
.home_about_img2.img_fit:before{
  padding-top: 77.273%;
}
.home_about_img3{
  margin-left: -40px;
  border-radius: 0 20px 20px 0;
}
.home_about_img3.img_fit:before{
  padding-top: 77.234%;
}

.txt_wh{
  color: #FFF;
}
.txt_dark{
  color: #000;
  opacity: 0.3;
}
.txt_dark2{
  color: #68ab36;
  opacity: 0.3;
}

/* 毎日をもっと安心 */
.home_fun_head{
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.home_fun_head_ttl{
  position: relative;
  z-index: 1;
}
.home_fun_head_ttl img{
  width: 100%;
}
.home_fun_head_illust{
  position: absolute;
  z-index: 2;
}
.home_fun_head_illust img{
  display: block;
}
.home_fun_head_illust.pos1{
  width: 4.868%;
  top: -7%;
  left: 21.8%;
}
.home_fun_head_illust.pos2{
  width: 12.565%;
  top: 2%;
  left: 69%;
}
.home_fun_head_illust.pos3{
  width: 5.263%;
  bottom: -5%;
  left: -3.5%;
}
.home_fun_head_illust.pos4{
  width: 13.355%;
  bottom: 2%;
  right: -6.5%;
}
.home_fun_txt{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0;
  text-align: justify;
}

/* SERVICE */
.home_service{
  display: flex;
  flex-wrap: wrap;
}
* + .home_service{
  margin-top: 50px;
}

.home_service_head{
  text-align: center;
  margin-bottom: 20px;
}
.home_service_head_en{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  /*writing-mode: vertical-rl;*/
  color: #FFF;
}
.home_service_head_ja{
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.4;
  /*writing-mode: sideways-rl;*/
}


.home_service_box1{
  width: 100%;
}
.home_service_box2{
  width: 100%;
  position: relative;
  z-index: 2;
}
.home_service_box3{
  width: 100%;
  margin-top: -75px;
  position: relative;
  z-index: 1;
}

.home_service_list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.home_service_list_item{
  width: 100%;
}
.home_service_list_item_ttl1{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 5px;
  margin-bottom: 5px;
}
.home_service_list_item_ttl2{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 10px;
}
.home_service_list_item_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.666;
  letter-spacing: 0;
  text-align: justify;
}
.home_service_list_item_img{
  border-radius: 20px;
}
.home_service_list_item_img.img_fit:before{
  padding-top: 75.591%;
}

.home_service_ttl1{
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: -1.0em;
}
.home_service_ttl2{
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}
.home_service_ttl3{
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  white-space: nowrap;
  writing-mode: sideways-lr;

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

/* 採用情報 */
.home_recruit{
  position: relative;
  z-index: 1;
  background: #f6f3ef;
  border: 10px solid #81d742;
  padding-top: 50px;
  padding-left: 20px;
  padding-right: 20px;
  min-height: 750px;
  overflow: hidden;
}
.home_recruit_ttl{
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: center;
  color: #81d742;
  margin-bottom: 40px;
  padding-left: 0.7em;
}
.home_recruit_txt{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: justify;
}
.home_recruit .read_more{
  margin-top: 30px;
}

.home_recruit_illust{
  width: 48%;
  position: absolute;
  z-index: -1;
  bottom: 0;
}
.home_recruit_illust.pos1{
  left: 0;
}
.home_recruit_illust.pos2{
  right: 0;
}

.home_recruit_top{
  margin-top: -65px;
  margin-bottom: 25px;
  position: relative;
  z-index: 0;
}
.home_recruit_top_txt{
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

/* INSTAGRAM */
.home_insta_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}
.home_insta_head_box1{

}
.home_insta_head_box2{

}

.home_insta_head .tt2_en{
  /*letter-spacing: 0.075em;*/
  letter-spacing: 0.105em;
  margin-bottom: 10px;
}
.home_insta_head_txt{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: center;
}

/* ACCESS */
.home_access_thanks{
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-right: -0.6em;
  padding-bottom: 20px;
  text-align: center;
}
.home_access{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_access_box1{
  width: 100%;
}
.home_access_box2{
  width: 100%;
  margin-top: 20px;
}
.home_access_map{
  height: 250px;
}
.home_access_map iframe{
  width: 100%;
  height: 100%;
  border: 0;
}

.home_access_head{
  text-align: center;
  margin-bottom: 22px;
}
.home_access_head_en{
  font-size: 42px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  color: #81d742;
}
.home_access_head_ja{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.home_access_addr{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.8;
  text-align: center;
}
.home_access_addr p+p{
  margin-top: 6px;
}
.home_access .read_more{
  margin-top: 20px;
}

.home_access_area{
  background: #ecf2e8;
  padding: 18px 20px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.home_access_area:before{
  content: "";
  border: 1px solid #81d742;
  position: absolute;
  z-index: -1;
  inset: 10px;
  pointer-events: none;
}
* + .home_access_area{
  margin-top: 30px;
}
.home_access_area_ttl{
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  white-space: nowrap;
  color: #000000;
  margin-bottom: 15px;
}
.home_access_area_ttl:before,
.home_access_area_ttl:after{
  content: "";
  width: 100%;
  height: 1px;
  background: currentColor;
}
.home_access_area_ttl:before{
  margin-right: 12px;
}
.home_access_area_ttl:after{
  margin-left: 12px;
}
.home_access_area_txt{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.home_access_area_txt2{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 6px;
}

@media (max-width:374px){

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

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

  .home_access_area_txt2{
    font-size: 13px;
  }
  
}
@media (max-width:767px){
  .home_service_ttl3{
    top: 60px;
  }
}
@media (min-width:768px){

  /* ABOUT: レイアウト */
  .home_about{
    padding: 30px 30px;
  }
  .home_about_box2_1{
    margin-top: 50px;
  }

  /* ABOUT: タイトル */
  .home_about_ttl1{
    font-size: 40px;
  }
  .home_about_ttl2{
    font-size: 80px;
  }
  .home_about_ttl3{
    font-size: 64px;
  }
  .home_about_ttl4{
    font-size: 48px;
  }
  .home_about_ttl5{
    font-size: 30px;
  }
  .home_about_ttl6{
    font-size: 52px;
  }
  .home_about_ttl7{
    font-size: 48px;
  }
  .home_about_txt{
    font-size: 18px;
  }

  /* ABOUT: 画像 */
  .home_about_img2{
    margin-right: calc(var(--margin-for-device-side-w) - 40px);
  }
  .home_about_img3{
    margin-left: calc(var(--margin-for-device-side-w) - 40px);
  }



  /* 毎日をもっと安心 */
  .home_fun_head{
    margin-bottom: 60px;
  }
  .home_fun_txt{
    font-size: 20px;
    line-height: 2.142;
  }

  /* SERVICE */
  .home_service_head_en{
    font-size: 70px;
  }
  .home_service_head_ja{
    font-size: 30px;
  }

  .home_service_box3{
    margin-top: -105px;
  }
  .home_service_list_item_ttl1 {
    font-size: 28px;
  }
  .home_service_list_item_ttl2 {
    font-size: 20px;
  }
  .home_service_ttl1{

  }
  .home_service_ttl2{
    font-size: 62px;
  }
  .home_service_ttl3{
    font-size: 70px;
  }

  /* 採用情報 */
  .home_recruit{
    padding-top: 50px;
    min-height: 630px;
  }
  .home_recruit_ttl{
    font-size: 42px;
    margin-bottom: 40px;
  }
  .home_recruit_txt{
    font-size: 18px;
    line-height: 1.8;
    /*text-align: center;*/
  }
  .home_recruit .read_more{
    margin-top: 35px;
  }

  .home_recruit_illust{
    width: 36%;
  }
  .home_recruit_top{
    margin-top: -80px;
    margin-bottom: 25px;
  }
  .home_recruit_top_txt{
    font-size: 36px;
  }

  /* INSTAGRAM */
  .home_insta_head{
    justify-content: space-between;
  }
  .home_insta_head_txt{
    font-size: 36px;
    text-align: left;
  }


  /* ACCESS */
  .home_access_thanks{
    font-size: 80px;
    margin-right: -0.6em;
  }
  .home_access_head_en {
    font-size: 72px;
  }
  .home_access_head_ja {
    font-size: 18px;
  }
  .home_access_addr {
    font-size: 18px;
  }
  .home_access_area {
    padding: 18px 27px 30px;
  }
  .home_access_area_ttl{
    font-size: 18px;
  }
  .home_access_area_txt{
    font-size: 18px;
  }
  .home_access_area_txt2{
    font-size: 16px;
  }
  
  
}
@media (min-width:1024px){

  /* 毎日をもっと安心 */
  .home_fun_head{
    margin-bottom: 60px;
  }
  .home_fun_txt{
    /*font-size: 28px;*/
    /*line-height: 2.142;*/
  }
  
  /* ABOUT: レイアウト */
  .home_about{
    border-width: 20px;
    padding: 40px 0 0;
    margin-left: 0;
    margin-right: 0;
  }
  .home_about_box1{
    width: 37.8%;
    order: 1;
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .home_about_box2{
    width: 59.83%;
    margin-bottom: 95px;
    order: 2;
    flex-wrap: wrap;
  }
  .home_about_box2_1{
    width: 190px;
    margin-top: 0;
    order: 1;
  }
  .home_about_box2_2{
    width: calc(100% - 190px);
    order: 2;
  }
  .home_about_box3{
    width: 29.49%;
    padding-right: 70px;
    margin-top: 0;
    order: 3;
  }
  .home_about_box4{
    width: 66.85%;
    padding-top: 10px;
    order: 4;
  }
  .home_about_box4_1{
    width: calc(100% - 90px);
    padding-bottom: 100px;
  }
  .home_about_box4_2{
    width: 80px;
  }

  /* ABOUT: タイトル */
  .home_about_ttl1{
    font-size: 50px;
    white-space: nowrap;
    writing-mode: vertical-rl;
  }
  .home_about_ttl2{
    font-size: 64px;
    writing-mode: vertical-rl;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    transform: translate(-45%, 3.4%);
  }
  .home_about_ttl3{
    font-size: 72px;
    writing-mode: sideways-rl;
    position: absolute;
    z-index: 1;
    top: 0;
  }
  .home_about_ttl4{
    font-size: 80px;
    text-align: left;
    white-space: nowrap;
    writing-mode: sideways-rl;
    position: absolute;
    z-index: 0;
    top: 0;
    right: -12px;
    margin-top: 0;
  }
  .home_about_ttl5{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .home_about_ttl6{
    font-size: 45px;
    position: absolute;
    z-index: 0;
    bottom: 0px;
    right: -2.4em;
    margin-top: 0;
  }
  .home_about_ttl7{
    font-size: 50px;
    writing-mode: sideways-lr;
    margin-top: -1.55em;
  }

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

  /* ABOUT: 画像 */
  .home_about_img1{
    width: auto;
    margin-top: 20px;
    margin-left: 10px;
  }
  .home_about_img2{
    /*margin-right: -70px;*/
    border-radius: 40px 0 0 40px;
  }
  .home_about_img3{
    /*margin-left: -70px;*/
    border-radius: 0 40px 40px 0;
  }

  /* SERVICE */
  .home_service_head{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 0;
  }
  .home_service_head_en{
    font-size: 90px;
    writing-mode: vertical-rl;
    margin-top: -1em;
  }
  .home_service_head_ja{
    font-size: 32px;
    white-space: nowrap;
    writing-mode: sideways-rl;
    margin-left: -0.3em;
  }

  .home_service{
    display: flex;
    flex-wrap: wrap;
  }
  .home_service_box1{
    width: 145px;
  }
  .home_service_box2{
    width: calc(100% - 145px);
  }
  .home_service_box3{
    width: 100%;
    margin-top: -75px;
  }

  .home_service_list{
    gap: 20px 45px;
  }
  .home_service_list_item{
    width: calc((100% - 45px) / 2);
  }
  .home_service_list_item_ttl1{
    /*font-size: 32px;*/
    margin-top: 5px;
    margin-bottom: 15px;
  }
  .home_service_list_item_ttl2{
    font-size: 20px;
    margin-bottom: 10px;

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

  .home_service_ttl1{
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-right: -1.0em;
  }
  .home_service_ttl2{
    font-size: 86px;
  }
  .home_service_ttl3{
    font-size: 90px;
    white-space: nowrap;
    writing-mode: sideways-lr;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
  }

  /* 採用情報 */
  .home_recruit{
    border: 15px solid #81d742;
    padding-top: 70px;
    padding-bottom: 190px;
    min-height: 600px;
  }
  .home_recruit_ttl{
    font-size: 54px;
    margin-bottom: 40px;
  }
  .home_recruit_txt{
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
  }
  .home_recruit .read_more {
    margin-top: 50px;
  }

  .home_recruit_illust{
    width: 32%;
  }
  .home_recruit_top{
    /*margin-top: -165px;*/
    /*margin-bottom: 25px;*/
  }
  .home_recruit_top_txt{
    /*font-size: 56px;*/
  }

  /* INSTAGRAM */
  .home_insta_head{
  }
  .home_insta_head .tt2_en{
    margin-bottom: 0;
  }
  .home_insta_head_txt{
    font-size: 28px;
  }
  
  /* ACCESS */
  .home_access_thanks{
    font-size: 110px;
  }
  .home_access{
  }
  .home_access_box1{
    width: calc(100% - 390px - 30px);
  }
  .home_access_box2{
    width: 390px;
    margin-top: -20px;
  }
  .home_access_map{
    /*margin-left: -150px;*/
    height: 100%;
  }
  .home_access_head{
    margin-bottom: 22px;
  }
  .home_access_head_en{
    font-size: 90px;
  }
  
}
@media (min-width:1200px){


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

  .home_fun_txt{
    font-size: 28px;
    line-height: 2.142;
  }
  
  /* ABOUT: レイアウト */
  .home_about{
    padding: 60px 0 0;
    margin-left: 0;
    margin-right: 0;
  }
  .home_about_box1{
    width: 37.8%;
  }
  .home_about_box2{
    width: 59.83%;
    margin-bottom: 95px;
  }
  .home_about_box2_1{
    width: 255px;
  }
  .home_about_box2_2{
    width: calc(100% - 255px);
  }
  .home_about_box3{
    width: 29.49%;
    padding-right: 125px;
  }
  .home_about_box4{
    width: 66.85%;
    padding-top: 10px;
  }
  .home_about_box4_1{
    width: calc(100% - 145px);
    padding-bottom: 100px;
  }
  .home_about_box4_2{
    width: 135px;
  }

  /* ABOUT: タイトル */
  .home_about_ttl1{
    font-size: 76px;
  }
  .home_about_ttl2{
    font-size: 100px;
    transform: translate(-45%, 3.4%);
  }
  .home_about_ttl3{
    font-size: 90px;
  }
  .home_about_ttl4{
    font-size: 150px;
    right: -12px;
  }
  .home_about_ttl5{
    font-size: 26px;
    margin-bottom: 36px;
  }
  .home_about_ttl6{
    font-size: 64px;
    bottom: 0;
    right: -0.4em;
  }
  .home_about_ttl7{
    font-size: 90px;
    margin-top: -1.55em;
  }

  .home_about_txt{
    font-size: 20px;
    line-height: 3;
  }

  /* ABOUT: 画像 */
  .home_about_img1{
    width: auto;
    margin-top: 20px;
    margin-left: 10px;
  }
  .home_about_img2{
    /*margin-right: -70px;*/
    border-radius: 40px 0 0 40px;
  }
  .home_about_img3{
    /*margin-left: -70px;*/
    border-radius: 0 40px 40px 0;
  }

  /* SERVICE */
  * + .home_service{
    margin-top: 65px;
  }
  .home_service_head{
  }
  .home_service_head_en{
    font-size: 138px;
  }
  .home_service_head_ja{
    font-size: 45px;
  }
  .home_service{
  }
  .home_service_box1{
    width: 205px;
  }
  .home_service_box2{
    width: calc(100% - 205px);
  }
  .home_service_box3{
    margin-top: -75px;
  }

  .home_service_list{
    gap: 20px 45px;
  }
  .home_service_list_item{
    width: calc((100% - 45px) / 2);
  }
  .home_service_list_item_ttl1{
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 15px;
  }
  .home_service_list_item_ttl2{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .home_service_list_item_txt{
    font-size: 18px;
  }
  .home_service_list_item .read_more{
    margin-top: 35px;
  }

  .home_service_ttl1{
    font-size: 60px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .home_service_ttl2{
    font-size: 120px;
  }
  .home_service_ttl3{
    font-size: 150px;
  }

  /* 採用情報 */
  .home_recruit{
    padding-top: 110px;
    min-height: 750px;
  }
  .home_recruit_ttl{
    font-size: 80px;
    margin-bottom: 40px;
  }
  .home_recruit_txt{
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
  }
  .home_recruit .read_more{
    margin-top: 65px;
  }

  .home_recruit_illust{
    width: 28%;
  }
  .home_recruit_top{
    margin-top: -165px;
    margin-bottom: 25px;
  }
  .home_recruit_top_txt{
    font-size: 56px;
  }

  /* INSTAGRAM */
  .home_insta_head .tt2_en{
  }
  .home_insta_head_txt{
    font-size: 42px;
  }
  
  /* ACCESS */
  .home_access_thanks{
    font-size: 160px;
  }
  .home_access{
  }
  .home_access_box1{
    width: calc(100% - 460px - 30px);
  }
  .home_access_box2{
    width: 460px;
    margin-top: -20px;
  }
  .home_access_map{
    /*margin-left: -150px;*/
  }
  
  .home_access_head{
    margin-bottom: 22px;
  }
  .home_access_head_en{
    font-size: 138px;
  }
  .home_access_head_ja{
    font-size: 20px;
    margin-top: 16px;
  }
  .home_access_addr{
    font-size: 20px;
    line-height: 1.8;
  }
  .home_access_addr p+p{
    margin-top: 12px;
  }
  .home_access .read_more{
    margin-top: 30px;
  }

  .home_access_area{
    padding: 18px 27px 30px;
  }
  .home_access_area:before{
    inset: 10px;
  }
  * + .home_access_area{
    margin-top: 50px;
  }
  .home_access_area_ttl{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .home_access_area_ttl:before{
    margin-right: 18px;
  }
  .home_access_area_ttl:after{
    margin-left: 18px;
  }
  .home_access_area_txt{
    font-size: 18px;
  }
  .home_access_area_txt2{
    font-size: 16px;
  }
}
@media (min-width:1720px){

  /* ABOUT: レイアウト */
  .home_about{
    padding: 60px 0 0;
    margin-left: -150px;
    margin-right: -150px;
  }

  /* ABOUT: タイトル */
  .home_about_ttl1{
    font-size: 76px;
  }
  .home_about_ttl2{
    font-size: 138px;
    transform: translate(-45%, 3.4%);
  }
  .home_about_ttl3{
    font-size: 116px;
  }
  .home_about_ttl4{
    font-size: 150px;
    right: -12px;
  }
  .home_about_ttl5{
    font-size: 26px;
    margin-bottom: 36px;
  }
  .home_about_ttl6{
    font-size: 106px;
    bottom: -10px;
    right: -0.4em;
  }
  .home_about_ttl7{
    font-size: 90px;
    margin-top: -1.55em;
  }

  .home_about_txt{
    font-size: 20px;
    line-height: 3;
  }

  .home_about_img2{
    margin-right: -70px;
  }
  .home_about_img3{
    margin-left: -70px;
  }

  .home_service_ttl1{
    font-size: 70px;
  }
  .home_service_ttl2{
    font-size: 120px;
  }
  .home_service_ttl3{
    font-size: 150px;
  }

  /* 採用情報 */
  .home_recruit{
    border: 15px solid #81d742;
    margin-left: -150px;
    margin-right: -150px;
    padding-top: 110px;
    min-height: 750px;
  }
  .home_recruit_illust{
    width: auto;
  }

  /* INSTAGRAM */
  .home_insta_head .tt2_en{
    margin-bottom: 10px;
  }
  .home_insta_head_txt{
    font-size: 56px;
    margin-right: -0.5em;
  }
  
  /* ACCESS */
  .home_access_thanks{
    font-size: 180px;
  }
  .home_access_map{
    margin-left: -150px;
  }
}



/*******************************
*　
********************************/
.pg_about{
}
.pg_about .section.sec1{
  padding-bottom: 100px;
}
.pg_about .section.sec2{

}
.pg_about .section.sec3{
  padding-top: 1px;
  padding-bottom: 50px;
}
.pg_about .section.sec4{
  padding-top: 40px;
  padding-bottom: 50px;
}


@media (max-width:767px){

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

  .pg_about .section.sec1{
    padding-bottom: 100px;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding-bottom: 145px;
  }
  .pg_about .section.sec4{
    padding-top: 95px;
    padding-bottom: 120px;
  }

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


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


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


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


}

/* メイン */

/* ヘッド */
.about_head{
  position: relative;
  z-index: 1;
}
.about_head_ttl{
  margin-bottom: 30px;
}
.about_head_illust{
  position: absolute;
  z-index: 1;
}
.about_head_illust.pos1{
  width: 8.355%;
  top: -1%;
  left: 48.5%;
}
.about_head_illust.pos2{
  width: 8.026%;
  bottom: -3%;
  left: 33.6%;
}

/* VALUE */
.about_value_head_ttl{
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-top: -0.084em;
}
.about_value_head_ttl + .tt2{
  margin-top: -10px;
}


.about_value{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
* + .about_value{
  margin-top: 30px;
}
.about_value_item{
  width: 100%;
}
.about_value_item:nth-child(3n+2){
  /*margin-top: 55px;*/
}
.about_value_item_num{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  color: #68ab36;
  margin-bottom: -0.07em;
}
.about_value_item_img{
  border-radius: 20px;
}
.about_value_item_img.img_fit:before{
  padding-top: 74.074%;
}
.about_value_item_ttl{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 10px;
}
.about_value_item_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.777;
  text-align: justify;
}

/* 経営理念 */
.about_philo{
  background: #54a419;
  padding-bottom: 80px;
}
* + .about_philo{
  margin-top: 100px;
}
.about_philo_box1{
  width: 100%;
}
.about_philo_box2{
  width: 48%;
  /*position: absolute;
  z-index: 1;
  top: 0;
  left: 0;*/
}
.about_philo_box3{
  width: 48%;
  margin-top: 75%;
  margin-left: auto;
  /*position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;*/
}
.about_philo_box3_inner{
  margin-right: -40px;
  margin-bottom: -210px;
  position: relative;
  z-index: 1;
}

.about_philo_head{
  text-align: center;
  margin-bottom: 20px;
}
.about_philo_head_en{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
}
.about_philo_head_ja{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
.about_philo_ttl{
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 20px;
}
.about_philo_ttl2{
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  writing-mode: sideways-rl;
}
.about_philo_ttl3{
  
}
.about_philo_txt{
  text-align: justify;
}


.about_philo_img1{
  margin-top: 20px;  
  margin-left: -40px;
  border-radius: 0 20px 20px 0;
}
.about_philo_img1.img_fit:before{
  padding-top: 77.234%;
}
.about_philo_img2{
  border-radius: 20px 0 0 20px;
}
.about_philo_img2.img_fit:before{
  padding-top: 144.681%;
}

.about_philo_illust1{
  width: 42.97%;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 12%;
}
.about_philo_illust2{
  width: 160px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
}
.about_philo_illust3{
  width: 110px;
  position: absolute;
  z-index: 1;
  left: 12%;
  bottom: 0;
  transform: translate(0, 40%);
}

/* FEATURE */
.about_feature_head{
  position: relative;
  z-index: 1;
}
.about_feature_head_illust1{
  width: 100px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translate(0, -44%);
}
.about_feature_head_ttl{
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.333;
  white-space: nowrap;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translate(0, -70%);
  writing-mode: sideways-lr;
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
  
  .about_head_ttl{
    margin-bottom: 68px;
  }
  
  /* VALUE */
  .about_value_head_ttl{
    font-size: 75px;
    margin-top: 30px;
  }
  .about_value_head_ttl + .tt2{
    margin-top: 0;
  }
  
  .about_value{
    gap: 30px 20px;
  }
  * + .about_value{
    margin-top: 40px;
  }
  .about_value_item{
    width: calc((100% - 40px) / 3);
  }
  .about_value_item:nth-child(3n+2){
    margin-top: 30px;
  }
  .about_value_item_num{
    font-size: 32px;
  }
  .about_value_item_img{
    border-radius: 20px;
  }
  .about_value_item_ttl{
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 15px;
  }
  .about_value_item_txt{
    font-size: 16px;
    line-height: 1.777;
  }

  /* 経営理念 */
  .about_philo_head{
    margin-bottom: 50px;
  }
  .about_philo_head_en{
    font-size: 60px;
  }
  .about_philo_head_ja{
    font-size: 28px;
  }
  .about_philo_ttl{
    font-size: 44px;
    margin-bottom: 45px;
  }
  .about_philo_ttl2{
    font-size: 70px;
  }
  
  .about_philo_illust2{
    width: 200px;
  }
  .about_philo_illust3{
    width: 175px;
  }
  
  /* FEATURE */
  .about_feature_head{
  }
  .about_feature_head_illust1{
    width: 200px;
    transform: translate(0, -44%);
  }
  .about_feature_head_ttl{
    font-size: 64px;
    transform: translate(0, -70%);
    writing-mode: sideways-lr;
  }
}
@media (min-width:1024px){


  /* VALUE */
  .about_value_head_ttl{
    font-size: 110px;
    margin-top: -0.084em;
  }
  .about_value_head_ttl + .tt2{
    margin-top: -23px;
  }
  .about_value{
    gap: 30px 30px;
  }
  * + .about_value{
    margin-top: 70px;
  }
  .about_value_item{
    width: calc((100% - 60px) / 3);
  }
  .about_value_item:nth-child(3n+2){
    margin-top: 55px;
  }
  .about_value_item_num{
    font-size: 40px;
  }
  .about_value_item_ttl{
    font-size: 24px;
    /*margin-top: 32px;*/
    /*margin-bottom: 20px;*/
  }
  .about_value_item_txt{
    font-size: 16px;
    padding-right: 1em;
  }
  
  /* 経営理念 */
  .about_philo{
    padding-bottom: 80px;
  }
  * + .about_philo{
    margin-top: 140px;
  }
  .about_philo_box1{
    width: 50%;
    margin: auto;
  }
  .about_philo_box2{
    width: 22.47%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .about_philo_box3{
    width: 22.47%;
    margin-top: 0;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
  }
  .about_philo_box3_inner{
    margin-right: calc(var(--margin-for-device-side-w) - 40px);
    margin-bottom: -100px;
  }

  .about_philo_head{
    margin-bottom: 50px;
  }
  .about_philo_head_en{
    font-size: 64px;
  }
  .about_philo_head_ja{
    font-size: 28px;
  }
  .about_philo_ttl{
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 45px;
  }
  .about_philo_ttl2{
    font-size: 70px;
  }
  .about_philo_ttl3{

  }
  .about_philo_txt{
    text-align: center;
  }

  .about_philo_img1{
    margin-top: -80px;  
    margin-left: calc(var(--margin-for-device-side-w) - 40px);
    border-radius: 0 40px 40px 0;
  }
  .about_philo_img2{
    border-radius: 40px 0 0 40px;
  }

  .about_philo_illust1{
    width: 42.97%;
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 12%;
  }
  .about_philo_illust2{
    width: auto;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
  }
  .about_philo_illust3{
    width: auto;
    position: absolute;
    z-index: 1;
    left: 16%;
    bottom: 0;
    transform: translate(0, 70%);
  }
  
  /* FEATURE */
  .about_feature_head{
  }
  .about_feature_head_illust1{
    width: auto;
  }
  .about_feature_head_ttl{
    font-size: 120px;
  }
  
}
@media (min-width:1200px){


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

  /* VALUE */
  .about_value_head_ttl{
    font-size: 120px;
    margin-top: -0.084em;
  }
  .about_value_head_ttl + .tt2{
    margin-top: -23px;
  }
  .about_value{
    gap: 30px 30px;
  }
  * + .about_value{
    margin-top: 70px;
  }
  .about_value_item{
    width: calc((100% - 60px) / 3);
  }
  .about_value_item:nth-child(3n+2){
    margin-top: 55px;
  }
  .about_value_item_num{
    font-size: 60px;
  }
  .about_value_item_ttl{
    font-size: 32px;
    margin-top: 32px;
    margin-bottom: 20px;
  }
  .about_value_item_txt{
    font-size: 18px;
  }
  
  /* 経営理念 */
  .about_philo{
    padding-bottom: 80px;
  }
  * + .about_philo{
    margin-top: 140px;
  }
  .about_philo_box1{
    /*width: 100%;*/
  }
  .about_philo_box2{
    width: 22.47%;
  }
  .about_philo_box3{
    width: 22.47%;
  }
  .about_philo_box3_inner{
    /*margin-right: -70px;*/
    margin-bottom: -210px;
  }

  .about_philo_head{
    margin-bottom: 50px;
  }
  .about_philo_head_en{
    font-size: 80px;
  }
  .about_philo_head_ja{
    font-size: 32px;
  }
  .about_philo_ttl{
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 45px;
  }
  .about_philo_ttl2{
    font-size: 120px;
  }
  .about_philo_txt{
    text-align: center;
  }

  .about_philo_img1{
    margin-top: -80px;  
    /*margin-left: -70px;*/
    border-radius: 0 40px 40px 0;
  }
  .about_philo_img2{
    border-radius: 40px 0 0 40px;
  }

  .about_philo_illust1{
    width: 42.97%;
    left: 12%;
  }
  .about_philo_illust2{
    width: auto;
    transform: translate(-50%, -100%);
  }
  .about_philo_illust3{
    width: auto;
    left: 16%;
    transform: translate(0, 70%);
  }

  /* FEATURE */
  .about_feature_head{
  }
  .about_feature_head_illust1{
    width: 260px;
  }
  .about_feature_head_ttl{
    font-size: 84px;
  }
  
}
@media (min-width:1720px){

  .about_value_head_ttl{
    font-size: 190px;
    margin-top: -0.084em;
  }
  .about_value_head_ttl + .tt2{
    margin-top: -23px;
  }
  
  /* 経営理念 */
  .about_philo{
    padding-bottom: 80px;
  }
  * + .about_philo{
    margin-top: 140px;
  }
  .about_philo_box1{
    width: 52%;
  }
  .about_philo_box2{
    width: 22.47%;
  }
  .about_philo_box3{
    width: 22.47%;
  }
  .about_philo_box3_inner{
    margin-right: -70px;
    margin-bottom: -210px;
  }

  .about_philo_head{
    margin-bottom: 50px;
  }
  .about_philo_ttl{
    font-size: 100px;
    font-weight: 800;
    margin-bottom: 45px;
  }
  .about_philo_ttl2{
    font-size: 120px;
  }
  .about_philo_txt{
    text-align: center;
  }

  .about_philo_img1{
    margin-top: -80px;  
    margin-left: -70px;
    border-radius: 0 40px 40px 0;
  }
  .about_philo_img2{
    border-radius: 40px 0 0 40px;
  }

  .about_philo_illust1{
    width: 42.97%;
    left: 12%;
  }
  .about_philo_illust2{
    width: auto;
    transform: translate(-50%, -100%);
  }
  .about_philo_illust3{
    width: auto;
    left: 16%;
    transform: translate(0, 70%);
  }

  /* FEATURE */
  .about_feature_head{
  }
  .about_feature_head_illust1{
    width: auto;
  }
  .about_feature_head_ttl{
    font-size: 120px;
  }
  
}



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

/* コンテンツ */
.cmn_contents{
  
}
* + .cmn_contents{
  margin-top: 30px;
}
.cmn_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_contents_row + .cmn_contents_row{
  margin-top: 40px;
}
.cmn_contents_box1{
  width: 100%;
  
  position: relative;
  z-index: 1;
}
.cmn_contents_box2{
  width: 100%;
  margin-top: 15px;
}
.cmn_contents_img{
  border-radius: 20px;
}
.cmn_contents_img.img_fit:before{
  padding-top: 69.735%;
}
.cmn_contents_en{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  color: #FFF;
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 2;
  bottom: -0.1em;
}
.cmn_contents.enTop .cmn_contents_en{
  top:  -0.05em;
  bottom: auto;
}
.cmn_contents_ttl{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.363;
  margin-bottom: 10px;
}
.cmn_contents_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0;
  text-align: justify;
}

.cmn_contents_box1{
  padding-left: 20px;
}
.cmn_contents_en{
  left: -0.021em;
}

@media (max-width:374px){

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

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

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

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

  }
  * + .cmn_contents{
    margin-top: 50px;
  }
  .cmn_contents_row{
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 50px;
  }
  .cmn_contents_box1{
    /*width: 50.98%;*/
  }
  .cmn_contents_box2{
    /*width: 44.73%;*/
    /*margin-top: -15px;*/
  }
  .cmn_contents_img{
    border-radius: 40px;
  }
  .cmn_contents_en{
    font-size: 100px;
  }
  .cmn_contents_ttl{
    font-size: 32px;
    margin-bottom: 10px;
  }
  .cmn_contents_txt{
    font-size: 18px;
    line-height: 2;
  }
  
  .cmn_contents_box1{
    padding-left: 30px;
  }

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

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

  }
  * + .cmn_contents{
    margin-top: 50px;
  }
  .cmn_contents_row{
    align-items: flex-start;
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 50px;
  }
  .cmn_contents_box1{
    width: 50.98%;
    padding-left: 0;
  }
  .cmn_contents_box2{
    width: 44.73%;
    margin-top: 0;
  }
  .cmn_contents_img{
    border-radius: 40px;
  }
  .cmn_contents_en{
    font-size: 60px;
  }
  .cmn_contents_ttl{
    font-size: 36px;
    margin-bottom: 10px;
  }
  .cmn_contents_txt{
    font-size: 18px;
  }

  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    padding-left: 30px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{

  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_en{
    left: -3px;
    left: -0.021em;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    order: 2;
    padding-right: 30px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    order: 1;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_en{
    left: auto;
    right: -0.115em;
  }

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


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


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

  }
  * + .cmn_contents{
    margin-top: 95px;
  }
  .cmn_contents_row{
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 90px;
  }
  .cmn_contents_box1{
    width: 50.98%;
  }
  .cmn_contents_box2{
    width: 44.73%;
    margin-top: -15px;
  }
  .cmn_contents_img{
    border-radius: 40px;
  }
  .cmn_contents_en{
    font-size: 90px;
  }
  .cmn_contents_ttl{
    font-size: 48px;
    margin-bottom: 20px;
  }
  .cmn_contents_txt{
    font-size: 20px;
    line-height: 2;
  }

  .cmn_contents_row:nth-child(odd) .cmn_contents_box1{
    padding-left: 60px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2{

  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box1{
    padding-right: 60px;
  }
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
  }
  
}
@media (min-width:1720px){

  /* コンテンツ */
  .cmn_contents_en{
    font-size: 138px;
  }
  .cmn_contents_ttl{
    font-size: 55px;
    margin-bottom: 40px;
  }
}



/*******************************
*　
********************************/
.pg_care{
}
.pg_care .section.sec1{
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_care .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_care .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
}

.care_service_ftr_txt{
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  margin-top: -0.0555em;
}

@media (max-width:767px){

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

  .pg_care .section.sec1{
    padding-bottom: 70px;
  }
  .pg_care .section.sec2{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_care .section.sec3{
    padding-top: 70px;
    padding-bottom: 70px;
  }


  .care_service_ftr_txt{
    font-size: 85px;
    margin-top: -0.0555em;
  }

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

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

  .pg_care .section.sec1{
    padding-bottom: 100px;
  }
  .pg_care .section.sec2{
    padding-top: 100px;
    padding-bottom: 85px;
  }
  .pg_care .section.sec3{
    padding-top: 95px;
    padding-bottom: 120px;
  }
  
  .care_service_ftr_txt{
    font-size: 135px;
  }
}
@media (min-width:1470px){

  .care_service_ftr_txt{
    font-size: 165px;
  }
}
@media (min-width:1720px){
  
  .care_service_ftr_txt{
    font-size: 180px;
  }

}

/* メイン */

/* ヘッド */
.care_head{
  position: relative;
  z-index: 1;
}
.care_head_ttl{
  margin-bottom: 30px;
}
.care_head_illust{
  position: absolute;
  z-index: 1;
}
.care_head_illust.pos1{
  width: 3.157%;
  top: 7%;
  left: 65.5%;
}
.care_head_illust.pos2{
  width: 12.697%;
  width: 3.355%;
  bottom: -5%;
  left: 32.2%;
}
@media (min-width:768px){
  .care_head_ttl{
    margin-bottom: 35px;
  }
}
@media (min-width:1024px){
  .care_head_ttl{
    margin-bottom: 68px;
  }
}

/* 悩み */
.care_nayami{
  --care-head-illust-resize: 0.2;
  background: #FFF;
  border: 10px solid #54a419;
  padding: 20px 15px 30px;
}
* + .care_nayami{
  margin-top: 40px;
}
.care_nayami_head{
  text-align: center;
  position: relative;
  z-index: 1;
}
.care_nayami_head_ttl_en{
  font-size: 40px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  color: #54a419;
  margin-bottom: 10px;
}
.care_nayami_head_ttl_ja_wrap{
  position: relative;
  z-index: 1;
}
.care_nayami_head_ttl_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #54a419;
  color: #FFF;
  padding: 5px 10px;
}
.care_nayami_head_illust1,
.care_nayami_head_illust2{
  bottom: 100%;
  position: absolute;
  z-index: 1;
}
.care_nayami_head_illust1{
  width: calc(238px * var(--care-head-illust-resize));
  right: 82%;
}
.care_nayami_head_illust2{
  width: calc(221px * var(--care-head-illust-resize));
  left: 82%;
}

.care_nayami_list{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 50px;
}
* + .care_nayami_list{
  margin-top: 20px;
}
.care_nayami_list_item{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 50px;
  min-height: 44px;
  position: relative;
  z-index: 1;
}
.care_nayami_list_item:before{
  content: "";
  width: 40px;
  aspect-ratio: 60 / 65;
  background-image: url('/system_panel/uploads/images/icon_check.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.care_nayami_list_item p{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.care_nayami_resolve{
  
}
* + .care_nayami_resolve{
  margin-top: 30px;
}
.care_nayami_resolve_ttl{
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 0;
  margin-left: -0.08333em;
  margin-right: -0.1666em;
  margin-bottom: 15px;
}
.care_nayami_resolve_txt{
  
}

/* SERVICE */
.care_service_tt2{
  position: relative;
  z-index: 1;
}
.care_service_tt2_illust,
.care_service_tt2_txt{
}
.care_service_tt2_illust{
  text-align: center;
}
.care_service_tt2_illust img{
  width: 200px;
}
.care_service_tt2_txt{
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1666;
  letter-spacing: 0;
  text-align: center;
  right: 0;
}

.care_service{
  
}
* + .care_service{
  margin-top: 40px;
}
.care_service_row{
  
}
.care_service_row + .care_service_row{
  margin-top: 50px;
}

.care_service_category{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.care_service_category_box1{
  width: 100%;
  font-size: 50px;
  padding-top: 0.1086em;
  position: relative;
  z-index: 1;
}
.care_service_category_box2{
  width: 100%;
  margin-top: 20px;
}
.care_service_category_ttl1{
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  color: #54a419;
  margin-bottom: 10px;
}
.care_service_category_ttl2{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  margin-bottom: 10px;
}
.care_service_category_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.875;
  text-align: justify;
}
.care_service_category_en{
  font-size: 1em;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.075em;
  line-height: 1;
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 2;
  top: 0.0434em;;
}
.care_service_category_en.txt_dark2{
  color: #d1e6c2;
  opacity: 1;
}
.care_service_category_img{
  border-radius: 20px;
}
.care_service_category_img.img_fit:before{
  padding-top: 69.735%;
}

.care_service_category_box1{
  padding-left: 0.42em;
}
.care_service_category_en{
  left: 0;
}

/* SERVICE: できること */
.care_service_list_wrap{
  background: #81d742;
  
  background-image: url(/system_panel/uploads/images/moyou.jpg);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 100px auto;
  padding: 30px 15px;
}
* + .care_service_list_wrap{
  margin-top: 30px;
}

.care_service_list_head{
  --illust-resize: 0.2;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.care_service_list_head_en{
  font-size: 32px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0.01em;
  line-height: 1;
  
}
.care_service_list_head_ja{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
.care_service_list_head_illust{
  position: absolute;
  z-index: -1;
}
.care_service_list_head_illust.pos1{
  width: calc(278px * var(--illust-resize));
  top: 0;
  right: 0;
  transform: translate(27%, -45%);
}
.care_service_list_head_illust.pos2{
  width: calc(97px * var(--illust-resize));
  top: 0;
  left: 0;
  transform: translate(-42%, -35%);
}
.care_service_list_head_illust.pos3{
  width: calc(128px * var(--illust-resize));
  top: 0;
  right: 0;
  transform: translate(-35%, -35%);
}
@media (min-width:768px){
  .care_service_list_head{
    --illust-resize: 0.4;
  }
  .care_service_list_head_illust.pos1{
    transform: translate(27%, -45%);
  }
  .care_service_list_head_illust.pos2{
    /*transform: translate(11%, -35%);*/
  }
  .care_service_list_head_illust.pos3{
    transform: translate(-35%, -35%);
  }
  
  .care_service_list_wrap{
    background-size: 200px auto;
  }
}
@media (min-width:1024px){
  .care_service_list_head{
    --illust-resize: 0.6;
  }
  .care_service_list_head_illust.pos1{
    transform: translate(27%, -45%);
  }
  .care_service_list_head_illust.pos2{
    transform: translate(11%, -35%);
  }
  .care_service_list_head_illust.pos3{
    transform: translate(-35%, -35%);
  }
}
@media (min-width:1470px){
  .care_service_list_head{
    --illust-resize: 0.8;
  }
  .care_service_list_wrap{
    background-size: 405px auto;
  }
}
@media (min-width:1720px){
  .care_service_list_head{
    --illust-resize: 1.0;
  }
}


.care_service_list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.care_service_list_item{
  width: 100%;
}
.care_service_list_item_img{
  border-radius: 20px;
}
.care_service_list_item_img.img_fit:before{
  padding-top: 79.320%;
}
.care_service_list_item_ttl{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
}
.care_service_list_item_txt{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.875;
}

.care_service_list.col2 .care_service_list_item_img.img_fit:before{
  padding-top: 59.259%;
}
.care_service_list.col3 .care_service_list_item_img.img_fit:before{
  padding-top: 79.320%;
}
.care_service_list.col5 .care_service_list_item_img.img_fit:before{
  padding-top: 76.389%;
}
.care_service_list.col5 .care_service_list_item_ttl{
  font-weight: 700;
}


/* REASON */
.care_reason_head{
  --illust-resize: 0.2;
  position: relative;
  z-index: 1;
}
.care_reason_head_illust1{
  width: 64px;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transform: translate(0, -33%);
}
.care_reason_head_ttl{
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.333;
  white-space: nowrap;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  transform: translate(-10%, -70%);
  writing-mode: sideways-lr;
}

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

@media (min-width:768px){
  .care_reason_head{
    --illust-resize: 0.4;
  }
  .care_reason_head_illust1{
    width: 135px;
    transform: translate(0, -33%);
  }
  .care_reason_head_ttl{
    font-size: 55px;
    transform: translate(-10%, -32%);
  }
}
@media (min-width:1024px){
  .care_reason_head{
    --illust-resize: 0.6;
  }
  .care_reason_head_illust1{
    width: 175px;
  }
  .care_reason_head_ttl{
    font-size: 74px;
  }
}
@media (min-width:1470px){
  .care_reason_head{
    --illust-resize: 0.8;
  }
  .care_reason_head_illust1{
    width: 300px;
  }
  .care_reason_head_ttl{
    font-size: 120px;
  }
}
@media (min-width:1720px){
  .care_reason_head{
    --illust-resize: 1.0;
  }
  .care_reason_head_illust1{
    width: 335px;
  }
  .care_reason_head_ttl{
    font-size: 120px;
  }
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
  
  /* 悩み */
  .care_nayami{
    --care-head-illust-resize: 0.7;
    border-width: 15px;
    padding: 65px 30px 30px;
  }
  * + .care_nayami{
    margin-top: 110px;
  }
  .care_nayami_head{
  }
  .care_nayami_head_ttl_en{
    font-size: 60px;
    margin-bottom: 15px;
  }
  .care_nayami_head_ttl_ja{
    font-size: 24px;
    padding: 5px 10px;
  }
  .care_nayami_head_illust1{
    right: 80%;
  }
  .care_nayami_head_illust2{
    left: 80%;
  }

  .care_nayami_list{
    gap: 20px 50px;
  }
  * + .care_nayami_list{
    margin-top: 35px;
  }
  .care_nayami_list_item{
    /*width: calc((100% - 100px) / 2);*/
    padding-left: 80px;
    min-height: 54px;
  }
  .care_nayami_list_item:before{
    width: 50px;
  }
  .care_nayami_list_item p{
    font-size: 21px;
  }

  .care_nayami_resolve{

  }
  * + .care_nayami_resolve{
    margin-top: 30px;
  }
  .care_nayami_resolve_ttl{
    font-size: 54px;
    margin-left: -0.08333em;
    margin-right: -0.1666em;
    margin-bottom: 20px;
  }
  
  /* SERVICE */
  .care_service_tt2{
  }
  .care_service_tt2_illust,
  .care_service_tt2_txt{
    
  }
  .care_service_tt2_illust{
  }
  .care_service_tt2_illust img{
    width: 300px;
  }
  .care_service_tt2_txt{
    font-size: 50px;
  }

  
  .care_service{

  }
  * + .care_service{
    margin-top: 85px;
  }
  .care_service_row{

  }
  .care_service_row + .care_service_row{
    margin-top: 100px;
  }
  .care_service_category{
  }
  .care_service_category_box1{
    font-size: 100px;
    padding-top: 0.1086em;
  }
  .care_service_category_box2{
    margin-top: 20px;
  }
  .care_service_category_ttl1{
    font-size: 45px;
    margin-bottom: 15px;
  }
  .care_service_category_ttl2{
    font-size: 24px;
    margin-bottom: 20px;
  }
  .care_service_category_txt{
    font-size: 18px;
  }
  .care_service_category_en{
    top: 0.0434em;;
  }
  .care_service_category_img{
    border-radius: 40px;
  }
  
  /* SERVICE: できること */
  .care_service_list_wrap{
    padding: 40px 50px 30px;
  }
  * + .care_service_list_wrap{
    margin-top: 70px;
  }
  .care_service_list_head{
    margin-bottom: 30px;
  }
  .care_service_list_head_en{
    font-size: 60px;
  }
  .care_service_list_head_ja{
    font-size: 24px;
  }
  .care_service_list{
    gap: 30px 20px;
  }
  .care_service_list_item{
    width: calc((100% - 20px) / 2);
  }
  .care_service_list_item_ttl{
    font-size: 22px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .care_service_list_item_txt{
    font-size: 16px;
  }
  
  
}
@media (min-width:1024px){

  /* 悩み */
  .care_nayami{
    --care-head-illust-resize: 0.8;
    padding: 65px 50px 60px;
  }
  * + .care_nayami{
    margin-top: 110px;
  }
  .care_nayami_head{
  }
  .care_nayami_head_ttl_en{
    /*font-size: 80px;*/
    /*margin-bottom: 22px;*/
  }
  .care_nayami_head_ttl_ja{
    /*font-size: 32px;*/
  }
  .care_nayami_head_illust1{
    right: 75%;
  }
  .care_nayami_head_illust2{
    left: 75%;
  }

  .care_nayami_list{
    gap: 30px 30px;
  }
  * + .care_nayami_list{
    /*margin-top: 35px;*/
  }
  .care_nayami_list_item{
    width: calc((100% - 30px) / 2);
    /*padding-left: 90px;*/
    /*min-height: 65px;*/
  }
  .care_nayami_list_item:before{
    /*width: 60px;*/
  }
  .care_nayami_list_item p{
    font-size: 18px;
  }

  .care_nayami_resolve{

  }
  * + .care_nayami_resolve{
    margin-top: 52px;
  }
  .care_nayami_resolve_ttl{
    font-size: 72px;
    margin-bottom: 26px;
  }
  
  /* SERVICE */
  .care_service_tt2{
  }
  .care_service_tt2_illust,
  .care_service_tt2_txt{
    position: absolute;
    z-index: 1;
    top: 11%;
  }
  .care_service_tt2_illust{
    left: 0%;
    transform: translate(0, -13%);
  }
  .care_service_tt2_illust img{
    width: 250px;
  }
  .care_service_tt2_txt{
    font-size: 34px;
    text-align: left;
    right: 0;
  }
  
  /* SERVICE */
  .care_service_tt2{
  }
  .care_service_tt2_illust,
  .care_service_tt2_txt{
    
  }
  .care_service_tt2_illust{
  }
  .care_service_tt2_illust img{
    width: 300px;
  }
  .care_service_tt2_txt{
    font-size: 50px;
  }
  
  .care_service{

  }
  * + .care_service{
    margin-top: 85px;
  }
  .care_service_row{

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

  .care_service_category{
  }
  .care_service_category_box1{
    width: 50.98%;
    font-size: 90px;
  }
  .care_service_category_box2{
    width: 44.73%;
    margin-top: 0;
  }
  .care_service_category_ttl1{
    font-size: 40px;
    /*margin-bottom: 25px;*/
  }
  .care_service_category_ttl2{
    font-size: 22px;
    /*margin-bottom: 30px;*/
  }
  .care_service_category_txt{
    /*font-size: 20px;*/
  }
  
  .care_service_row:nth-child(odd) .care_service_category_box1{
    order: 1;
    padding-left: 0.42em;
  }
  .care_service_row:nth-child(odd) .care_service_category_box2{
    order: 2;
  }
  .care_service_row:nth-child(odd) .care_service_category_en{
    left: 0;
  }

  .care_service_row:nth-child(even) .care_service_category_box1{
    order: 2;
    padding-left: 0;
    padding-right: 0.42em;
  }
  .care_service_row:nth-child(even) .care_service_category_box2{
    order: 1;
  }
  .care_service_row:nth-child(even) .care_service_category_en{
    left: auto;
    right: 0
  }
  
  /* SERVICE: できること */
  .care_service_list_wrap{
    padding: 40px 50px 30px;
  }
  * + .care_service_list_wrap{
    margin-top: 70px;
  }
  .care_service_list_head{
    margin-bottom: 30px;
  }
  .care_service_list_head_en{
    font-size: 70px;
  }
  .care_service_list_head_ja{
    font-size: 26px;
  }
  .care_service_list{
    
  }
  .care_service_list_item{
    
  }
  .care_service_list_item_ttl{
    /*font-size: 25px;*/
    /*margin-top: 15px;*/
    /*margin-bottom: 5px;*/
  }
  .care_service_list_item_txt{
    /*font-size: 16px;*/
    line-height: 2.125;
  }

  .care_service_list.col2{
    gap: 30px 24px;
  }
  * + .care_service_list.col2{
    margin-top: 45px;
  }
  .care_service_list.col2 .care_service_list_item{
    width: calc((100% - 24px) / 2);
  }
  .care_service_list.col3{
    gap: 40px 24px;
  }
  * + .care_service_list.col3{
    margin-top: 35px;
  }
  .care_service_list.col3 .care_service_list_item{
    width: calc((100% - 48px) / 3);
  }
  
  .care_service_list.col5{
    gap: 40px 20px;
  }
  * + .care_service_list.col5{
    margin-top: 35px;
  }
  .care_service_list.col5 .care_service_list_item{
    width: calc((100% - 60px) / 4);
  }
  .care_service_list.col5 .care_service_list_item_ttl{
    font-size: 18px;
    margin-top: 20px;
  }
}
@media (min-width:1200px){


  .care_service_tt2_txt{
    font-size: 40px;
  }
  
  .care_service_list.col5{
    gap: 40px 20px;
  }
  * + .care_service_list.col5{
    margin-top: 35px;
  }
  .care_service_list.col5 .care_service_list_item{
    width: calc((100% - 80px) / 5);
  }
  .care_service_list.col5 .care_service_list_item_ttl{
    font-size: 20px;
    margin-top: 20px;
  }
  
}
@media (min-width:1470px){

  /* 悩み */
  .care_nayami{
    --care-head-illust-resize: 1.0;
    padding: 65px 190px 60px;
  }
  * + .care_nayami{
    margin-top: 110px;
  }
  .care_nayami_head{
  }
  .care_nayami_head_ttl_en{
    font-size: 80px;
    margin-bottom: 22px;
  }
  .care_nayami_head_ttl_ja{
    font-size: 32px;
  }
  .care_nayami_head_illust1{
    right: 68%;
  }
  .care_nayami_head_illust2{
    left: 69%;
  }

  .care_nayami_list{
    gap: 30px 100px;
  }
  * + .care_nayami_list{
    margin-top: 35px;
  }
  .care_nayami_list_item{
    width: calc((100% - 100px) / 2);
    padding-left: 90px;
    min-height: 65px;
  }
  .care_nayami_list_item:before{
    width: 60px;
  }
  .care_nayami_list_item p{
    font-size: 21px;
  }
  
  .care_nayami_resolve{

  }
  * + .care_nayami_resolve{
    margin-top: 52px;
  }
  .care_nayami_resolve_ttl{
    font-size: 105px;
    margin-bottom: 26px;
  }
  
  /* SERVICE */
  .care_service_tt2{
  }
  .care_service_tt2_illust,
  .care_service_tt2_txt{
    position: absolute;
    z-index: 1;
    top: 7%;
  }
  .care_service_tt2_illust{
    left: 6%;
    transform: translate(0, -12%);
  }
  .care_service_tt2_illust img{
    width: 300px;
  }
  .care_service_tt2_txt{
    font-size: 50px;
    text-align: left;
    right: 0;
  }
  
  .care_service{

  }
  * + .care_service{
    margin-top: 85px;
  }
  .care_service_row{

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

  .care_service_category{
  }
  .care_service_category_box1{
    width: 50.98%;
    font-size: 138px;
  }
  .care_service_category_box2{
    width: 44.73%;
    margin-top: 0;
  }
  .care_service_category_ttl1{
    font-size: 60px;
    margin-bottom: 25px;
  }
  .care_service_category_ttl2{
    font-size: 28px;
    margin-bottom: 30px;
  }
  .care_service_category_txt{
    font-size: 20px;
    line-height: 2;
  }
  
  /* SERVICE: できること */
  .care_service_list_wrap{
    padding: 55px 120px 50px;
  }
  * + .care_service_list_wrap{
    margin-top: 70px;
  }
  .care_service_list_head{
    margin-bottom: 30px;
  }
  .care_service_list_head_en{
    font-size: 84px;
  }
  .care_service_list_head_ja{
    font-size: 30px;
  }
  .care_service_list{
    
  }
  .care_service_list_item{
    
  }
  .care_service_list_item_ttl{
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .care_service_list_item_txt{
    font-size: 16px;
    line-height: 2.125;
  }

  .care_service_list.col2{
    gap: 30px 35px;
  }
  * + .care_service_list.col2{
    margin-top: 45px;
  }
  .care_service_list.col2 .care_service_list_item{
    width: calc((100% - 35px) / 2);
  }
  .care_service_list.col3{
    gap: 40px 35px;
  }
  * + .care_service_list.col3{
    margin-top: 35px;
  }
  .care_service_list.col3 .care_service_list_item{
    width: calc((100% - 70px) / 3);
  }
  
}
@media (min-width:1720px){

  .care_nayami_resolve_ttl{
    font-size: 120px;
  }
  .care_nayami_resolve_txt{
    margin-right: -15px;
  }
  
  .care_service_row + .care_service_row{
    margin-top: 170px;
  }
  
  .care_service_tt2_illust,
  .care_service_tt2_txt{
    top: 0%;
  }
  .care_service_tt2_illust{
    left: 6%;
    transform: translate(0, -7%);
  }
  .care_service_tt2_illust img{
    width: 364px;
  }
  .care_service_tt2_txt{
    font-size: 60px;
  }
  
  /* SERVICE: できること */
  .care_service_list_wrap{
    padding: 55px 195px 50px;
  }
  
}



/*******************************
*　
********************************/
.body_private .pg_header_en{
  top: 24.63%;
}
.pg_private{
}
.pg_private .section.sec1{
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_private .section.sec2{
  padding-top: 50px;
  padding-bottom: 0;
}
.pg_private .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width:767px){

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

  .pg_private .section.sec1{
    padding-bottom: 80px;
  }
  .pg_private .section.sec2{
    padding-top: 55px;
    padding-bottom: 0;
  }
  .pg_private .section.sec3{
    padding-top: 95px;
    padding-bottom: 100px;
  }

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


}
@media (min-width:1200px){
  
  .pg_private .section.sec1{
    padding-bottom: 80px;
  }
  .pg_private .section.sec2{
    padding-top: 55px;
    padding-bottom: 0;
  }
  .pg_private .section.sec3{
    padding-top: 95px;
  }

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


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


}

/* メイン */

/* ヘッド */
.private_head{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.private_head_ttl{
  
}
.private_head_illust{
  position: absolute;
  z-index: 1;
}
.private_head_illust.pos1{
  width: 3.157%;
  top: 2%;
  left: 41.0%;
}
.private_head_illust.pos2{
  width: 12.697%;
  bottom: 0%;
  left: 85.6%;
}

/* 料金 */
.private_price{
  width: 790px;
  max-width: 100%;
  margin: 0 auto;
}
* + .private_price{
  margin-top: 25px;
}
.private_price_tbl{
  
}
.private_price_tbl .table_rows_th,
.private_price_tbl .table_rows_td{
  font-size: 16px;
  letter-spacing: 0;
  text-align: left;
  padding: 10px 10px;
  padding-left: 85px;
  border-color: #7e7e7e;
}
.private_price_tbl .table_rows_th{
  width: 380px;
  background: #54a419;
  color: #FFF;
}
.private_price_tbl .table_rows_td{
  background: #FFF;
  color: #000;
}
.private_price_notice{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.875;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 10px;
}

.private_service_ftr{
  position: relative;
  z-index: 1;
  margin-top: 15px;
}
.private_service_ftr .read_more{
  margin: 0 0 10px;
}
.private_service_ftr .care_service_ftr_txt{
  
}

/* SERVICE */
.private_service_illust{
  position: absolute;
  z-index: 1;
}
.private_service_illust.pos1{
  width: calc(265px * var(--illust-resize));
  top: 0;
  left: 6.5%;
  transform: translate(0, -23%);
}
.private_service_illust.pos2{
  width: calc(192px * var(--illust-resize));
  top: 0%;
  right: 13.5%;
  transform: translate(0, -29%);
}
  
  
/* MERIT */
.private_merit_illust1,
.private_merit_illust2{
  position: absolute;
  z-index: 1;
}
.private_merit_illust1{
  width: calc(195px * var(--illust-resize));
  top: 0;
  left: 13%;
  transform: translate(0, -36%);
}
.private_merit_illust2{
  width: calc(274px * var(--illust-resize));
  top: 0;
  right: 14%;
  transform: translate(0, -42%);
}


@media (max-width:374px){

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

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

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

  .private_head{
    margin-bottom: 68px;
  }
  
  /* 料金 */
  .private_price{
  }
  * + .private_price{
    margin-top: 45px;
  }
  .private_price_tbl{

  }
  .private_price_tbl .table_rows_th,
  .private_price_tbl .table_rows_td{
    font-size: 18px;
    padding-left: 30px;
  }
  .private_price_tbl .table_rows_th{
    width: 300px;
  }
  .private_price_notice{
    font-size: 16px;
    line-height: 2.125;
    margin-top: 18px;
  }
  
}
@media (min-width:1024px){

  .private_price_tbl .table_rows_th,
  .private_price_tbl .table_rows_td{
    font-size: 18px;
    padding-left: 50px;
  }
  .private_price_tbl .table_rows_th{
    width: 380px;
  }
  
  /* SERVICE */
  .private_service_illust{
  }
  .private_service_illust.pos1{
    left: 6.5%;
    transform: translate(0, -42%);
  }
  .private_service_illust.pos2{
    right: 13.5%;
    transform: translate(0, -45%);
  }
  
  /* MERIT */
  .private_merit_illust1{
    left: 13%;
    transform: translate(0, -36%);
  }
  .private_merit_illust2{
    right: 14%;
    transform: translate(0, -42%);
  }

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

  /* 料金 */
  .private_price{
  }
  * + .private_price{
    margin-top: 45px;
  }
  .private_price_tbl{

  }
  .private_price_tbl .table_rows_th,
  .private_price_tbl .table_rows_td{
    font-size: 18px;
    padding-left: 85px;
  }
  .private_price_tbl .table_rows_th{
    width: 380px;
  }
  .private_price_notice{
    font-size: 16px;
    line-height: 2.125;
    margin-top: 18px;
  }
  
  .private_service_ftr{
    margin-top: -35px;
  }
  .private_service_ftr .read_more{
    margin: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

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

  /* SERVICE */
  .private_service_illust{
  }
  .private_service_illust.pos1{
    left: 6.5%;
    transform: translate(0, -42%);
  }
  .private_service_illust.pos2{
    right: 13.5%;
    transform: translate(0, -45%);
  }

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


  .private_service_ftr .care_service_ftr_txt{
    font-size: 190px;
  }
}



/*******************************
*　
********************************/
.pg_xxx{
}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}
.pg_xxx .section.sec7{

}
.pg_xxx .section.sec8{

}

@media (max-width:767px){

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



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


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


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


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


}

/* メイン */

@media (max-width:374px){

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

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

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


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


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


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


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


}



/*******************************
*　
********************************/
.pg_xxx{
}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}
.pg_xxx .section.sec7{

}
.pg_xxx .section.sec8{

}

@media (max-width:767px){

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



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


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


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


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


}

/* メイン */
.bg_wh{
background:#fff;
}
.bg_wh2{
 background:#f6f3ef;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
.tt2_txt{
  text-align: justify;
}
}
@media (min-width:768px){


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


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


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


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


}