@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #448aca;
  --sub-color: #6791b8;
  --en-color: #88abda;
  --txt-color: #181818;

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


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

/* 管理画面の余白調整 */
.gjs-dashed{
  padding-top: 0;
}
.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: inherit;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.3;
}

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
  background: rgba(255,255,255,0.8);
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
  transition: 0.2s all;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  display: flex;
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
  transition: 0.2s all;
}
.hdr_tel_txt1{
  
}
.hdr_tel_txt1:before{
  content: "";
  width: 14px;
  aspect-ratio: 14 / 21;
  background-image: url('/system_panel/uploads/images/mobile-solid.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  transition: 0.2s all;
}
.hdr_tel_txt2{
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  margin-top: 5px;
  transition: 0.2s all;
}
.hdr_tel_link{

}
.hdr_tel_link p{

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


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

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


.hdr2{
  padding: 20px 10px;
  border-top: 1px solid #a6a6a6;
  transition: 0.2s all;
}

.hdr_links1{
  display: flex;
  justify-content: flex-end;
}
.hdr_links1_item{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  padding: 0 25px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.hdr_links1_item_a{
}
.hdr_links1_item:nth-child(n+2):before{
  content: "";
  width: 2px;
  height: 1em;
  background: #c5c5c5;
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 0;
}


.hdr_links2{
  display: flex;
  justify-content: center;
}
.hdr_links2_item{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0 45px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.hdr_links2_item_a{
}
.hdr_links2_item:after,
.hdr_links2_item:first-child:before{
  content: "";
  width: 2px;
  height: 1em;
  background: #c5c5c5;
  position: absolute;
  z-index: 1;
  top: 1px;
}

.hdr_links2_item:after{
  right: 0;
}
.hdr_links2_item:first-child:before{
  left: 0;
}

@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

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

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

  .hdr1{
    padding: 15px 30px 15px 35px;
    
  }

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

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

  }
  .header.slim .hdr1{
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .header.slim .hdr2{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }
  
  .header.slim .hdr_tel_txt1{
    font-size: 18px;
  }
  .header.slim .hdr_tel_txt2{
    font-size: 10px;
  }
  .header.slim .hdr_tel_txt1:before{
    width: 12px;
  }
  .header.slim .hdr_links1_item{
    font-size: 14px;
  }
  .header.slim .hdr_links2_item{
    font-size: 14px;
  }

  /* TELボタン */
  


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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_tel{
    margin-left: 40px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.mv_txt_p1{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.mv_txt_p1 p{
  display: inline-block;
  background: #FFF;
  padding: 4px 6px 5px 18px;
}
.mv_txt_p2{
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.57;
  color: #FFF;
  filter: 
    drop-shadow(1.231px 1.576px 1.6px #181818)
    drop-shadow(1.231px 1.576px 1.6px #181818)
    drop-shadow(1.231px 1.576px 1.6px #181818);
  margin-top: 10px;
}
.mv_txt_p2 p{
  
}
.mv_txt_p3{
  margin-top: 10px;
}
.mv_txt_p3 p,
.mv_txt_p3 h1{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFF;
  filter: 
    drop-shadow(1.231px 1.576px 1.6px #181818)
    drop-shadow(1.231px 1.576px 1.6px #181818)
    drop-shadow(1.231px 1.576px 1.6px #181818);
}

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

}
.mv_slider_img{
  
}
.mv_slider_img.img_fit:before{
  padding-top: calc(100vh - 127px);
  padding-top: calc(100vh - 60px);
}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

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

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

  /* MVテキスト */
  .mv_txt{
    top: 50%;
  }
  .mv_txt_p1{
    font-size: 18px;
  }
  .mv_txt_p1 p{
    padding: 4px 6px 5px 18px;
  }
  .mv_txt_p2{
    font-size: 48px;
    filter: 
      drop-shadow(1.231px 1.576px 1.6px #181818)
      drop-shadow(1.231px 1.576px 1.6px #181818)
      drop-shadow(1.231px 1.576px 1.6px #181818);
    margin-top: 10px;
  }
  .mv_txt_p2 p{

  }
  .mv_txt_p3{
  }
  .mv_txt_p3 p,
  .mv_txt_p3 h1{
    font-size: 21px;
    filter: 
      drop-shadow(1.231px 1.576px 1.6px #181818)
      drop-shadow(1.231px 1.576px 1.6px #181818)
      drop-shadow(1.231px 1.576px 1.6px #181818);
  }

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


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

  /* MVテキスト */
  

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

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

  /* MVテキスト */
  .mv_txt{
    top: 50%;
  }
  .mv_txt_p1{
    font-size: 18px;
  }
  .mv_txt_p2{
    font-size: 48px;
    margin-top: 10px;
  }
  .mv_txt_p3 p,
  .mv_txt_p3 h1{
    font-size: 21px;
  }
  
  .mv_slider_img.img_fit:before{
    padding-top: calc(100vh - 125px);
  }

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

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

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

}



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


/* コンタクト */
.ftr_contact_illust{
  display: none;
  text-align: center;
}
.ftr_contact_illust img{
  height: 100px;
}
.gjs-dashed .ftr_contact_illust{
  display: block;
}


.ftr_contact_sec{
  background: #448aca;
  margin-top: 100px;
  margin-top: 0;
}
.ftr_contact_sec_inner{
  display: flex;
  flex-wrap: wrap;
  color: #FFF;
}
.ftr_contact_sec_box1{
  width: 100%;
  padding-top: 50px;
  padding-bottom: 30px;
}
.ftr_contact_sec_box2{
  width: 100%;
}
.ftr_contact_sec_head{
  margin-bottom: 20px;
}
.ftr_contact_sec_head_en{
  font-size: 50px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_sec_head_ja{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 15px;
}
.ftr_contact_sec_txt{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.875;
}
.ftr_contact_sec_bg{
  height: 100%;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.ftr_contact_sec_bg.img_fit:before{
  padding-top: 0;
  height: 250px;
}

.ftr_contact_sec_btns{
  margin-top: 30px;
}
.ftr_contact_sec_btns_a{
  display: flex;
  align-items: center;
  width: 585px;
  max-width: 100%;
  height: 60px;
  padding-left: 15px;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
}
.ftr_contact_sec_btns_a + .ftr_contact_sec_btns_a{
  margin-top: 15px;
}
.ftr_contact_sec_btns_a.email{
  background: #FFF;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  color: var(--txt-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.ftr_contact_sec_btns_a.email:hover{
  /*background: var(--sub-color);*/
  /*color: #FFF;*/
  background: #00b7ee;
  color: #FFF;
  /*color: var(--sub-color);*/
  border-color: #00b7ee;
}
.ftr_contact_sec_btns_a.email:before{
  content: "";
  width: 2px;
  height: 46px;
  background: currentColor;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 64px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.ftr_contact_sec_btns_a.email:after{
  content: "";
  width: 10px;
  aspect-ratio: 13 / 15;
  background: currentColor;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);

  position: absolute;
  z-index: 1;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.ftr_contact_sec_btns_a.tel{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 13px;
  font-weight: 600;
  padding-right: 15px;
}
.ftr_contact_sec_btns_a.tel:hover{
  background: #FFF;
  border-color: #FFF;
  color: #00b7ee;

  /*background: #00b7ee;*/
  /*color: #FFF;*/
  /*border-color: #00b7ee;*/
}
.ftr_contact_sec_btns_txt2{
  font-size: 1em;
}
.ftr_contact_sec_btns_txt3{
  font-size: 1.6em;
  letter-spacing: 0.075em;
}

/* フッター */
.footer{
  margin-top: 70px;
}
.pg_home + .footer{
  margin-top: 15px;
}
.pg_home + .footer .ftr_contact_illust{
  display: block;
}


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

.ftr1_box1{
  width: 100%;
}
.ftr1_box2{
  width: 100%;
}

.ftr_logo{
  width: 200px;
  margin-bottom: 30px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.875;
}

.ftr2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 110px;
}

.ftr2_box1{
  width: calc(100% - 242px - 80px);
}
.ftr2_box2{
  width: 242px;
}

.ftr_links{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 80px;
}
.ftr_links_item{
  width: calc(25% - 60px);
}
.ftr_links_item.wide{
  width: 100%;
}
.ftr_links_item_a{
  display: block;
  padding-top: 3px;
  padding-bottom: 5px;
  padding-left: 30px;
  border-bottom: 1px solid;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.ftr_links_item_a:hover{
  color: var(--sub-color);
}
.ftr_links_item_a:before{
  content: "";
  width: 22px;
  aspect-ratio: 1 / 1;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  background-image: url('https://sit-10185980.sibloo.com/system_panel/uploads/images/icon_right.png');
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.2s all;
}
.ftr_links_item_a:hover:before{
  margin-left: 2px;
}

.ftr_links_item_sub{
  padding-top: 20px;
  padding-left: 32px;
}
.ftr_links_item_sub_a{
  display: block;
  background: #f0f0f0;
  font-size: 1em;
  padding: 2px 10px 4px;
}
.ftr_links_item_sub_a + .ftr_links_item_sub_a{
  margin-top: 10px;
}
.ftr_links_item_sub_a:hover{
  background: var(--sub-color);
  color: #FFF;
}


.ftr_interview{
  
}
.ftr_interview_a{
  display: block;
  transition: 0.2s all;
}
.ftr_interview_a:hover{
  transform: scale(1.02);
}

.gnav_item_en{
  color: var(--sub-color);
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 50px;
  background: #000;
  color: #FFF;
  padding: 10px 0;
  margin-bottom: 30px;
}

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




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



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .ftr1_box1{
    order: 2;
    margin-top: 50px;
    text-align: center;
  }
  .ftr1_box2{
    order: 1;
    width: 100%;
  }

  .ftr_logo{
    margin-left: auto;
    margin-right: auto;
  }
  .ftr_addr{
    display: inline-block;
    text-align: left;
  }
  .ftr_interview{
    text-align: center;
  }

  .ftr2{
    display: none
  }

  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }
  .gjs-dashed .footer_fix{
    display: flex;
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }
}
@media (min-width:768px){



  /* コンタクト */
  .ftr_contact_illust{
  }
  .ftr_contact_illust img{
    height: 150px;
  }
  .ftr_contact_sec{
    /*margin-top: 100px;*/
  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    /*width: 61.50%;*/
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ftr_contact_sec_box2{
    /*width: 38.5%;*/
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 60px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 15px;
    /*line-height: 2.125;*/
  }
  .ftr_contact_sec_bg.img_fit:before{
    height: 350px;
  }


  .ftr_contact_sec_btns{
    margin-top: 30px;
  }
  .ftr_contact_sec_btns_a{
    width: 585px;
    height: 70px;
    padding-left: 25px;
    margin: 0 auto;
  }
  .ftr_contact_sec_btns_a + .ftr_contact_sec_btns_a{
    margin-top: 20px;
  }
  .ftr_contact_sec_btns_a.email{
    font-size: 20px;
  }
  .ftr_contact_sec_btns_a.email:before{
    height: 46px;
    right: 74px;
  }
  .ftr_contact_sec_btns_a.email:after{
    width: 13px;
    right: 30px;
  }
  .ftr_contact_sec_btns_a.tel{
    font-size: 18px;
    padding-right: 15px;
  }


  /* フッター */
  .footer{
    margin-top: 70px;
  }
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 300px - 30px);
  }
  .ftr1_box2{
    width: 300px;
  }

  .ftr_logo{
    width: 250px;
    margin-bottom: 30px;
  }
  .ftr_addr{
    font-size: 16px;
    line-height: 2.25;
  }

  .ftr2{
    margin-top: 40px;
  }

  .ftr2_box1{
    width: calc(100% - 200px - 30px);
  }
  .ftr2_box2{
    width: 200px;
  }

  .ftr_links{
    gap: 30px 30px;
  }
  .ftr_links_item{
    width: calc(50% - 15px);
  }
  .ftr_links_item.wide{
    width: 100%;
  }
  .ftr_links_item_a{
    padding-top: 3px;
    padding-bottom: 5px;
    padding-left: 30px;
    font-size: 16px;
  }
  .ftr_links_item_a:before{
    width: 22px;
    top: 5px;
  }
  .ftr_links_item_sub{
    padding-top: 15px;
    padding-left: 20px;
  }

  .ftr_copy{
    margin-top: 70px;
  }

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


  /* コンタクト */
  .ftr_contact_sec{

  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    width: 61.50%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 30px;
  }
  .ftr_contact_sec_box2{
    width: 38.5%;
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 70px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 16px;
    line-height: 2.125;
  }
  .ftr_contact_sec_bg{
    margin-left: 0;
    margin-right: var(--margin-for-device-side-w);
  }

  .ftr_contact_sec_btns{
    margin-top: 30px;
  }
  .ftr_contact_sec_btns_a{
    width: 500px;
    height: 70px;
    padding-left: 25px;
    margin: 0;
  }

  /* フッター */
  .footer{
    margin-top: 100px;
  }
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 300px - 30px);
  }
  .ftr1_box2{
    width: 300px;
  }

  .ftr_logo{
    width: 350px;
    margin-bottom: 30px;
  }
  .ftr_addr{
    font-size: 16px;
    line-height: 2.25;
  }

  .ftr2{
    margin-top: 50px;
  }

  .ftr2_box1{
    width: calc(100% - 200px - 45px);
  }
  .ftr2_box2{
    width: 200px;
  }

  .ftr_links{
    gap: 30px 45px;
  }
  .ftr_links_item{
    width: calc(33.333% - 30px);
  }
  .ftr_links_item.wide{
    width: 100%;
  }
  .ftr_links_item_a{
    padding-top: 3px;
    padding-bottom: 5px;
    padding-left: 30px;
    font-size: 16px;
  }
  .ftr_links_item_a:before{
    width: 22px;
    top: 5px;
  }

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

  /* フッター */
  .footer{
    margin-top: 100px;
  }
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 406px - 30px);
  }
  .ftr1_box2{
    width: 406px;
  }

  .ftr_logo{
    width: 350px;
    margin-bottom: 40px;
  }
  .ftr_addr{
    font-size: 16px;
    line-height: 2.25;
  }

  .ftr2{
    margin-top: 50px;
  }

  .ftr2_box1{
    width: calc(100% - 200px - 40px);
  }
  .ftr2_box2{
    width: 200px;
  }

  .ftr_links{
    gap: 30px 40px;
  }
  .ftr_links_item{
    width: calc(25% - 30px);
  }
  .ftr_links_item_a:before{
    width: 22px;
    top: 5px;
  }

  .ftr_links_item_sub{
    padding-top: 20px;
    padding-left: 32px;
  }
}
@media (min-width:1470px){

  /* コンタクト */
  .ftr_contact_illust{
  }
  .ftr_contact_illust img{
    height: 235px;
  }
  .ftr_contact_sec{
    /*margin-top: 145px;*/
  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    width: 61.50%;
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .ftr_contact_sec_box2{
    width: 38.5%;
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 90px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 16px;
  }
  .ftr_contact_sec_btns{
    margin-top: 85px;
  }
  .ftr_contact_sec_btns_a{
    width: 585px;
    /*height: 70px;*/
  }
  .ftr_contact_sec_btns_a.email{
    font-size: 24px;
  }
  .ftr_contact_sec_btns_a.email:before{
    /*height: 46px;*/
    /*right: 74px;*/
  }
  .ftr_contact_sec_btns_a.email:after{
  }
  .ftr_contact_sec_btns_a.tel{
    font-size: 20px;
  }

  /* フッター */
  .footer{
    margin-top: 200px;
  }
  .ftr1{
  }
  .ftr1_box1{
    width: calc(100% - 406px - 30px);
  }
  .ftr1_box2{
    width: 406px;
  }

  .ftr_logo{
    width: auto;
    margin-bottom: 65px;
  }
  .ftr_addr{
  }

  .ftr2{
    margin-top: 110px;
  }

  .ftr2_box1{
    width: calc(100% - 242px - 80px);
  }
  .ftr2_box2{
    width: 242px;
  }

  .ftr_links{
    gap: 30px 80px;
  }
  .ftr_links_item{
    width: calc(25% - 60px);
  }

  .ftr_copy{
    margin-top: 120px;
  }
}
@media (min-width: 1720px){
  .ftr_contact_sec {
    /*margin-top: 200px;*/
  }
}


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


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #0068b7;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #0068b7;
  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;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 250px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: left;
  border: 1px solid #21a7d0;
  background: #21a7d0;
  border-radius: 5px;
  color: #FFF;
  /*padding: 16px 20px;*/
  padding: 11px 20px 12px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  width: 15px;
  aspect-ratio: 1 / 1;
  background-image: url('/system_panel/uploads/images/icon_right_wh.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #00aee3;
  background: #FFF;
  border-color: #00aee3;
}
.read_more a:hover:after{
  margin-right: -5px;
  background-image: url('/system_panel/uploads/images/icon_right_bl.svg');
  
}

.read_more a.wh{
  background: #FFF;
  border-color: #FFF;
  color: #181818;
}
.read_more a.wh:after{
  background-image: url('/system_panel/uploads/images/icon_right_bk.svg');
}
.read_more a.wh:hover{
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #FFF;
}
.read_more a.wh:hover:after{
  background-image: url('/system_panel/uploads/images/icon_right_wh.svg');
}

.read_more a.pdf{
}
.read_more a.pdf:after{
  width: 20px;
  background-image: url('/system_panel/uploads/images/icon_pdf_wh.svg');
}
.read_more a.pdf:hover{
}
.read_more a.pdf:hover:after{
  margin-right: 0;
  background-image: url('/system_panel/uploads/images/icon_pdf_bl.svg');
}

.read_more a.color1{
  background-color: #21a7d0;
  border-color: #21a7d0;
}
.read_more a.color1:hover{
  background-color: #00aee3;
  border-color: #00aee3;
  color: #FFF;
}
.read_more a.color2{
  background-color: #88abda;
  border-color: #88abda;
}
.read_more a.color2:hover{
  background-color: #6090cf;
  border-color: #6090cf;
  color: #FFF;
}
.read_more a.color3{
  background-color: #84ccc9;
  border-color: #84ccc9;
}
.read_more a.color3:hover{
  background-color: #5acbc6;
  border-color: #5acbc6;
  color: #FFF;
}
.read_more a.color1:after,
.read_more a.color2:after,
.read_more a.color3:after{
  background-image: url('/system_panel/uploads/images/icon_right_wh.svg');
}


/* 見出し */
.tt2{
  margin-bottom: 20px;
}
.tt2_en{
  display: flex;
  align-items: flex-end;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
  color: var(--sub-color);
  margin-bottom: 23px;
}
.tt2_en > span{
  min-width: 4em;
}
.tt2_en:after{
  content: "";
  width: 100%;
  height: 1px;
  /*background: var(--sub-color);*/
  background: currentColor;
  margin-left: 16px;
  margin-bottom: 2px;
}
.tt2_ja{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.666;
}

.tt2_sub{
  display: flex;
  margin-top: 20px;
}
.tt2_sub_box1{
  padding-right: 48px;
  position: relative;
  z-index: 1;
}
.tt2_sub_box1:after{
  content: "";
  width: 1px;
  top: 2px;
  bottom: 0;
  right: 0;
  background: #a6a6a6;
  position: absolute;
  z-index: 1;
  
}
.tt2_sub_box2{
  padding-top: 5px;
  padding-left: 65px;
}
.tt2_sub_ttl{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.428;
}
.tt2_sub_txt{
  font-size: 16px;
}

.tt2.color2{
  
}
.tt2.color2 .tt2_en{
  color: #84ccc9;
}
.tt2.color3 .tt2_en{
  color: #21a7d0;
}


.cmn_txt{
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
  text-align: justify;
}


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

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

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

}


@media (max-width:374px){

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

}
@media (max-width:1023px){
  
  .tt2_sub{
    flex-wrap: wrap;
  }
  .tt2_sub_box1{
    width: 100%;
    padding-right: 0;
    padding-bottom: 10px;
  }
  .tt2_sub_box1:after{
    /*display: none;*/
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    
    width: auto;
    height: 1px;
  }
  .tt2_sub_box2{
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
  
  
}
@media (max-width:767px){

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

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

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }
  
  
  
}
@media (min-width:768px){

  .anchor{
    top: -150px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 285px;
    font-size: 15px;
    padding: 13px 20px 14px 28px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 15px;
  }

  

  /* 見出し */
  .tt2{
    margin-bottom: 20px;
  }
  .tt2_en{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 23px;
  }
  .tt2_en:after{
    width: 100%;
    height: 1px;
    margin-left: 16px;
    margin-bottom: 2px;
  }
  .tt2_ja{
    font-size: 22px;
    line-height: 1.666;
  }

  

  .cmn_txt{
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2.25;
    text-align: justify;
  }
  


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

  /* ページネーション */
  .webgene-pagination{
        margin-top: 47px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }
 
  
  .tt2_sub{
    margin-top: 55px;
  }
  .tt2_sub_box1{
    padding-right: 15px;
  }
  .tt2_sub_box1:after{
    content: "";
    width: 1px;
    top: 2px;
    bottom: 0;
    right: 0;
    background: #a6a6a6;
    position: absolute;
    z-index: 1;

  }
  .tt2_sub_box2{
    padding-top: 0;
    padding-left: 25px;
  }
  .tt2_sub_ttl{
    font-size: 20px;
    line-height: 1.428;
  }
  .tt2_sub_txt{
    font-size: 16px;
  }
}
@media (min-width:1200px){

  .tt2_sub_ttl{
    font-size: 24px;
  }

}


@media (min-width:1440px){

  /* 見出し */
  .tt2{
    margin-bottom: 20px;
  }
  .tt2_en{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 23px;
  }
  .tt2_en:after{
    width: 100%;
    height: 1px;
    margin-left: 16px;
    margin-bottom: 2px;
  }
  .tt2_ja{
    font-size: 24px;
    line-height: 1.666;
  }

  .tt2_sub{
    margin-top: 55px;
  }
  .tt2_sub_box2{
    padding-top: 5px;
    padding-left: 65px;
  }
  .tt2_sub_ttl{
    font-size: 28px;
  }
  .tt2_sub_txt{
    font-size: 16px;
  }
  
  
  .tt2_sub_box1{
    padding-right: 30px;
  }
}
@media (min-width:1720px){
  .tt2_sub_box1{
    padding-right: 50px;
  }
}

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



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

}
.pg_home .section.sec1{
  padding-top: 100px;
}
.pg_home .section.sec2{
  padding-bottom: 120px;
}
.pg_home .section.sec3{
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec3:after{
  content: "";
  background: #ebf1f4;
  position: absolute;
  z-index: -1;
  top: 170px;
  left: 0;
  right: 0;
  height: 700px;
}
.pg_home .section.sec4{
  padding-top: 0;
}
.pg_home .section.sec5{
  padding-top: 0;
}
.pg_home .section.sec6{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 150px;
  }
  .pg_home .section.sec2{
    padding-bottom: 150px;
  }
  .pg_home .section.sec3{
    padding-top: 0;
  }
  .pg_home .section.sec3:after{
    top: 170px;
    height: 1100px;
  }
  .pg_home .section.sec4{
    padding-top: 50px;
  }
  .pg_home .section.sec5{
    padding-top: 50px;
  }

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


  .pg_home .section.sec3:after{
    top: 170px;
    height: 900px;
  }
  
}
@media (min-width:1200px){

  .pg_home .section.sec3:after{
    /*top: 170px;*/
    height: 700px;
  }

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

  .pg_home .section.sec1{
    padding-top: 150px;
  }
  .pg_home .section.sec2{
    padding-bottom: 200px;
  }
  .pg_home .section.sec3{
    padding-top: 0;
  }
  .pg_home .section.sec3:after{
    top: 170px;
    height: 700px;
  }
  .pg_home .section.sec4{
    padding-top: 85px;
  }
  .pg_home .section.sec5{
    padding-top: 95px;
  }

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


}

/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.home_about_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.home_about_box2{
  width: 100%;
  order: 1;
  position: relative;
  z-index: 1;
}
.home_about_imgs{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.home_about_imgs_item1{
  width: 48.99%;
}
.home_about_imgs_item1.img_fit:before{
  padding-top: 139.726%;
}
.home_about_imgs_item2{
  width: 48.99%;
  margin-top: 50px;
}
.home_about_imgs_item2.img_fit:before{
  padding-top: 139.726%;
}
.home_about_img_w{
  margin-right: 0;
  border-radius: 5px;
  box-shadow: -10px 10px 0 #88abda;
}
.home_about_img_w.img_fit:before{
  padding-top: 66.667%;
}

.home_about_txt{
  font-weight: 500;
}

.home_about_list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
}
* + .home_about_list{
  margin-top: 20px;
}
.home_about_list_item{
  width: 100%;
  padding: 12px 10px 13px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #88abda;
}

.home_about.color2 .home_about_list_item{
  background: #f2faf9;
}


.home_about_category{
  display: flex;
  margin-bottom: 20px;
}
.home_about_category_inner{
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  background: #88abda;
  color: #FFF;
  border-radius: 18px;
  padding: 5px 20px 6px;
}
.home_about_category_txt1{
  font-weight: 500;
  letter-spacing: 0.05em;
}
.home_about_category_txt2{
  font-family: var(--font-en);
  letter-spacing: 0;
  margin-left: 5px;
}

.home_about.color2 .home_about_category_inner{
  background: #84ccc9;
}
.home_about.color2 .home_about_img_w{
  box-shadow: -10px 10px 0 #84ccc9;
}
.home_about.color3 .home_about_category_inner{
  background: #21a7d0;
}
.home_about.color3 .home_about_img_w{
  box-shadow: -10px 10px 0 #21a7d0;
}




/* Service */
.home_service{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 40px;
}
* + .home_service{
  margin-top: 50px;
}
.home_service_item{
  width: 100%;
  background: #f9f9f9;
  border-radius: 5px;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}
.home_service_item_icon{
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.home_service_item_icon img{
  width: 36px;
}
.home_service_item_img{
  border-radius: 5px 5px 0 0 ;
  margin-bottom: 15px;
}
.home_service_item_img.img_fit:before{
  padding-top: 52.083%;
}
.home_service_item_ttl{
  text-align: center;
  margin-bottom: 15px;
}
.home_service_item_ttl_ja{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_service_item_ttl_en{
  font-size: 14px;
  font-weight: 300;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.home_service_item_list{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: 15px;
  margin-right: 15px;
}
.home_service_item_list p{
  background: #ededed;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 6px 5px 7px;
}
.home_service_item .read_more{
  margin-top: 20px;
}
.home_service_item .read_more a{
  padding-top: 11px;
  padding-bottom: 12px;
}

.home_service_item.color1{
  box-shadow: 5px 5px #00b7ee;
}
.home_service_item.color2{
  box-shadow: 5px 5px #88abda;
}
.home_service_item.color3{
  box-shadow: 5px 5px #84ccc9;
}

.home_service_item_list.col1{
  gap: 10px;
}
.home_service_item_list.col1 p{
  width: 100%
}
.home_service_item_list.col2{
  gap: 10px;
}
.home_service_item_list.col2 p{
  width: calc(50% - 5px);
}
.home_service_item_list.col3{
  gap: 10px ;
}
.home_service_item_list.col3 p{
  width: calc(33.333% - 10px);
}

/* WEB保険 */
.home_web_hoken_wrap{
  background: #FFF;
  border: 5px solid #f19149;
  border-radius: 5px;
  padding: 40px 15px 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.home_about + .home_web_hoken_wrap{
  margin-top: 100px;
}
.home_web_hoken_wrap.noMb{
  margin-bottom: 0;
}
.home_web_hoken_wrap:after{
  content: "";
  border: 1px solid #f19149;
  border-radius: 5px;
  position: absolute;
  z-index: -1;
  inset: 5px;
}
.home_web_hoken_head{
  background: #FFF;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0 15px;
}
.home_web_hoken_head_ttl{
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.1em;
  color: #f19149;
  position: absolute;
  z-index: 1;
  bottom: calc(100% + 13px);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  text-align: center;
}
.home_web_hoken_head_ttl.mini{
  font-size: 20px; 
  bottom: calc(100% + 8px);
}
.home_web_hoken_head_ttl.en{
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0;
}
.home_web_hoken_head_ttl2{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
  text-align: center;
}
.home_web_hoken_head_img{
  width: 180px
}


.home_web_hoken{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
}
.home_web_hoken_item{
  width: 100%;
  text-align: center;
}
.home_web_hoken_item_img{
  transition: 0.2s all;
}
.home_web_hoken_item_txt{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.home_web_hoken_item_txt p:after{
  content: "\f08e";
  font-family: "FontAwesome";
  margin-left: 5px;
}
.home_web_hoken_item:hover{
  color: #f19149;
}
.home_web_hoken_item:hover .home_web_hoken_item_img{
  transform: scale(1.02);
}

.home_web_hoken_wrap.question{
  
}

/* 採用 */
.home_recruit_bg{
  
}
.home_recruit_bg.img_fit:before{
  padding-top: 300px;
}
.home_recruit{
  background: #00b7ee;
  color: #FFF;
  text-align: center;
  margin-top: -90px;
  padding: 30px 25px 30px;
  position: relative;
  z-index: 1;
}
.home_recruit:after{
  content: "";
  border: 1px solid #FFF;
  position: absolute;
  z-index: -1;
  inset: 10px;
}
.home_recruit_ttl{
  margin-bottom: 35px;
}
.home_recruit_ttl_en{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
}
.home_recruit_ttl_ja{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 2px;
}
.home_recruit_txt1{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 15px;
}
.home_recruit_txt2{
  /*text-align: center;*/
}
.home_recruit .read_more{
  margin-top: 20px;
}


@media (max-width:374px){

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

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

  .home_about_category_inner{
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 30px;
  }
  .home_about_category_txt1{
    
  }
  .home_about_category_txt2{
    
  }
  
}
@media (min-width:768px){

  /* About */
  .home_about{
  }
  .home_about_box1{
  }
  .home_about_box2{
  }
  .home_about_imgs{
  }
  .home_about_imgs_item1{
    width: 48.99%;
  }
  .home_about_imgs_item2{
    width: 48.99%;
    margin-top: 50px;
  }
  
  .home_about_txt{
    
  }
  
  .home_about_category{
    margin-bottom: 20px;
  }
  .home_about_category_inner{
    font-size: 18px;
    border-radius: 18px;
    padding: 5px 20px 6px;
  }
  
  .home_about_list{
    gap: 10px 8px;
  }
  * + .home_about_list{
    margin-top: 35px;
  }
  .home_about_list_item{
    width: calc(50% - 4px);
    padding: 12px 20px 13px;
    font-size: 16px;
  }
  
  /* Service */
  .home_service{
    gap: 40px 20px;
  }
  * + .home_service{
    margin-top: 50px;
  }
  .home_service_item{
    width: calc(33.333% - 26.666px);
    width: calc(50% - 10px);
    /*padding-bottom: 15px;*/
  }
  .home_service_item_icon img{
    width: 42px;
  }
  .home_service_item_img{
    margin-bottom: 20px;
  }
  .home_service_item_ttl{
    margin-bottom: 15px;
  }
  .home_service_item_ttl_ja{
    font-size: 20px;
  }
  .home_service_item_ttl_en{
    font-size: 14px;
  }
  .home_service_item_list{
    /*margin-left: 30px;*/
    /*margin-right: 30px;*/
  }
  .home_service_item_list p{
    font-size: 15px;
    padding: 6px 5px 7px;
  }
  .home_service_item .read_more{
    margin-top: 20px;
  }
  
  /* WEB保険 */
  .home_web_hoken_wrap{
    padding: 60px 20px 30px;
    margin-bottom: 75px;
  }
  .home_web_hoken_wrap:after{
  }
  .home_about + .home_web_hoken_wrap{
    margin-top: 145px;
  }
  .home_web_hoken_head{
    padding: 0 20px;
  }
  .home_web_hoken_head_ttl{
    font-size: 24px;
  }
  .home_web_hoken_head_ttl.mini{
    font-size: 20px; 
  }
  .home_web_hoken_head_ttl2{
    font-size: 24px;
  }
  .home_web_hoken_head_img{
    width: 240px
  }
  .home_web_hoken{
    gap: 20px 15px;
  }
  .home_web_hoken_item{
    width: calc(50% - 15px);
  }
  .home_web_hoken_item_txt{
    font-size: 13px;
  }
  .home_web_hoken_item_txt p:after{
    margin-left: 5px;
  }
  
  /* 採用 */
  .home_recruit_bg.img_fit:before{
    padding-top: 450px;
  }
  .home_recruit{
    text-align: center;
    margin-top: -100px;
    padding: 50px 50px 55px;
  }
  .home_recruit_ttl{
    margin-bottom: 35px;
  }
  .home_recruit_ttl_en{
    font-size: 20px;
  }
  .home_recruit_ttl_ja{
    font-size: 24px;
  }
  .home_recruit_txt1{
    font-size: 26px;
    margin-bottom: 15px;
  }
  .home_recruit_txt2{
    /*text-align: center;*/
  }
  .home_recruit .read_more{
    margin-top: 20px;
  }
  
  
}
@media (min-width:1024px){


  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 49.01%;
    order: 1;
    margin-top: 0;
  }
  .home_about_box2{
    width: 44.73%;
    order: 2;
  }
  
  .home_about.insurance{
  }
  .home_about.insurance .home_about_box1{
    width: 46.05%;
  }
  .home_about.insurance .home_about_box2{
    width: 50.98%;
  }
  
  
  .home_about_imgs{
  }
  .home_about_imgs_item1{
  }
  .home_about_imgs_item2{
    margin-top: 50px;
  }
  
  
  .home_about_img_w{
    margin-left: var(--margin-for-device-side-w);
    border-radius: 0 5px 5px 0;
    box-shadow: 10px 10px 0 #88abda;
  }
  .home_about.rvs .home_about_img_w{
    margin-right: var(--margin-for-device-side-w);
    margin-left: 0;
    border-radius: 5px 0 0 5px;
    box-shadow: -10px 10px 0 #88abda;
  }
  
  .home_about.color2 .home_about_img_w{
    box-shadow: 10px 10px 0 #84ccc9;
  }
  .home_about.color2 .home_about.rvs .home_about_img_w{
    box-shadow: -10px 10px 0 #84ccc9;
  }
  .home_about.color3 .home_about_img_w{
    box-shadow: -10px 10px 0 #21a7d0;
  }
  .home_about.color3 .home_about.rvs .home_about_img_w{
    box-shadow: 10px 10px 0 #21a7d0;
  }
  
  
  .home_about_txt{
    
  }
  
  .home_about_list{
  }
  * + .home_about_list{
    margin-top: 35px;
  }
  .home_about_list_item{
    width: 100%;
    /*padding: 12px 20px 13px;*/
    /*font-size: 18px;*/
  }
  
  .home_about.rvs{
    
  }
  .home_about.rvs .home_about_box1{
    order: 2;
  }
  .home_about.rvs .home_about_box2{
    order: 1;
  }
  .home_about.rvs .home_about_imgs_item1{
    margin-top: 50px;
  }
  .pg_home .home_about.rvs .home_about_imgs_item1{
    margin-top: 70px;
  }
  
  .home_about.rvs .home_about_imgs_item2{
    margin-top: 0;
  }
  
  /* Service */
  .home_service{
    gap: 40px 20px;
  }
  * + .home_service{
    margin-top: 50px;
  }
  .home_service_item{
    width: calc(33.333% - 13.333px);
    padding-bottom: 25px;
  }

  .home_service_item_img{
    margin-bottom: 20px;
  }
  .home_service_item_ttl{
    margin-bottom: 15px;
  }
  .home_service_item_ttl_ja{
    font-size: 22px;
  }
  .home_service_item_ttl_en{
    font-size: 16px;
  }
  .home_service_item_list{
    margin-left: 15px;
    margin-right: 15px;
  }
  .home_service_item_list p{
    font-size: 13px;
  }
  .home_service_item .read_more{
    margin-top: 20px;
  }
  
  .home_service_item_list.col1{
    gap: 10px;
  }
  .home_service_item_list.col1 p{
    width: 100%
  }
  .home_service_item_list.col2{
    gap: 10px;
  }
  .home_service_item_list.col2 p{
    width: calc(50% - 5px);
  }
  .home_service_item_list.col3{
    gap: 10px;
  }
  .home_service_item_list.col3 p{
    width: calc(33.333% - 6.666px);
  }
  
  /* WEB保険 */
  .home_web_hoken_wrap{
    /*padding: 85px 20px 30px;*/
    margin-bottom: 100px;
  }
  .home_web_hoken_wrap:after{
  }
  .home_web_hoken_head{
    padding: 0 35px;
  }
  .home_web_hoken_head_ttl{
    font-size: 26px;
  }
  .home_web_hoken_head_img{
    width: 260px
  }
  .home_web_hoken{
    /*gap: 32px 15px;*/
  }
  .home_web_hoken_item{
    /*width: calc(33.333% - 10px);*/
  }
  .home_web_hoken_item_txt{
    font-size: 15px;
  }
  .home_web_hoken_item_txt p:after{
    /*margin-left: 15px;*/
  }
  
  
  /* 採用 */
  .home_recruit_bg.img_fit:before{
    padding-top: 680px;
  }
  .home_recruit{
    text-align: center;
    margin-top: -130px;
    padding: 50px 50px 55px;
  }
  .home_recruit_ttl{
    margin-bottom: 35px;
  }
  .home_recruit_ttl_en{
    font-size: 20px;
  }
  .home_recruit_ttl_ja{
    font-size: 24px;
  }
  .home_recruit_txt1{
    /*font-size: 38px;*/
    margin-bottom: 15px;
  }
  .home_recruit_txt2{
    text-align: center;
  }
  .home_recruit .read_more{
    /*margin-top: 20px;*/
  }
  
  
}
@media (min-width:1200px){

  /* Service */
  .home_service_item_list.col1{
    gap: 10px;
  }
  .home_service_item_list.col1 p{
    width: 100%
  }
  .home_service_item_list.col2{
    gap: 10px;
  }
  .home_service_item_list.col2 p{
    width: calc(50% - 5px);
  }
  .home_service_item_list.col3{
    gap: 10px 15px;
  }
  .home_service_item_list.col3 p{
    width: calc(33.333% - 10px);
  }

  /* WEB保険 */
  .home_web_hoken{
    gap: 32px 15px;
  }
  .home_web_hoken_item{
    width: calc(33.333% - 10px);
  }
  .home_web_hoken_item_txt{
    font-size: 13px;
  }
  
  /* 採用 */
  .home_recruit_txt1{
    font-size: 32px;
  }
}
@media (min-width:1470px){

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 49.01%;
  }
  .home_about_box2{
    width: 44.73%;
    margin-top: 0;
  }
  .pg_home .home_about_box2{
    margin-top: 10px;
  }
  .home_about_box2 .tt2{
    margin-bottom: 30px;
  }
  .home_about_imgs{
  }
  .home_about_imgs_item1{
  }
  .home_about_imgs_item2{
    margin-top: 50px;
  }
  
  .home_about_category{
    margin-bottom: 40px;
  }
  .home_about_category_inner{
    font-size: 18px;
    border-radius: 18px;
    padding: 5px 20px 6px;
  }
  
  .home_about_list{
  }
  * + .home_about_list{
    margin-top: 35px;
  }
  .home_about_list_item{
    width: calc(50% - 4px);
    padding: 12px 20px 13px;
    /*font-size: 18px;*/
  }
  
  /* Service */
  .home_service{
    gap: 40px 40px;
  }
  * + .home_service{
    margin-top: 90px;
  }
  .home_service_item{
    width: calc(33.333% - 26.666px);
    padding-bottom: 25px;
  }
  .home_service_item_icon img{
    width: 56px;
  }
  .home_service_item_ttl_ja{
    font-size: 24px;
  }
  .home_service_item_ttl_en{
    font-size: 16px;
  }
  .home_service_item_list{
    margin-left: 30px;
    margin-right: 30px;
  }
  .home_service_item_list p{
    font-size: 15px;
  }
  
  /* WEB保険 */
  .home_web_hoken_wrap{
    padding: 85px 75px 30px;
    margin-bottom: 100px;
  }
  .home_web_hoken_wrap.question{
    padding: 60px 65px 55px;
  }
  .home_web_hoken_wrap:after{
  }
  .home_web_hoken_head{
    padding: 0 35px;
  }
  .home_web_hoken_head_ttl{
    font-size: 26px;
  }
  .home_web_hoken_head_ttl.mini{
    font-size: 24px; 
  }
  .home_web_hoken_head_ttl2{
    font-size: 26px;
  }
  .home_web_hoken_head_img{
    width: 340px
  }
  .home_web_hoken{
    gap: 32px 55px;
  }
  .home_web_hoken_item{
    width: calc(33.333% - 36.666px);
  }
  .home_web_hoken_item_txt{
    font-size: 15px;
  }
  .home_web_hoken_item_txt p:after{
    margin-left: 15px;
  }
  
  /* 採用 */
  .home_recruit_bg.img_fit:before{
    padding-top: 680px;
  }
  .home_recruit{
    text-align: center;
    margin-top: -130px;
    padding: 50px 50px 55px;
  }
  .home_recruit_ttl{
    margin-bottom: 35px;
  }
  .home_recruit_ttl_en{
    font-size: 20px;
  }
  .home_recruit_ttl_ja{
    font-size: 24px;
  }
  .home_recruit_txt1{
    font-size: 38px;
    margin-bottom: 15px;
  }
  .home_recruit_txt2{
    /*text-align: center;*/
  }
  .home_recruit .read_more{
    /*margin-top: 20px;*/
  }
  
}
@media (min-width:1720px){

  .home_about.insurance .tt2{
    margin-bottom: 30px;
  }
  .home_about.insurance .home_about_box2{
    padding-left: 35px;
  }
  .home_about.insurance.rvs .home_about_box2{
    padding-left: 0;
  }
  
  .home_about_list_item{
    font-size: 18px;
  }
  
  /* WEB保険 */
  .home_web_hoken_wrap{
    padding: 85px 75px 30px;
    margin-bottom: 150px;
  }

  .home_web_hoken_wrap.question{
    padding: 60px 65px 55px;
  }
}



:root{
  --illust-resize: 0.5;
  --illust-resize2: 0.3;
}

.home_about_illust{
  position: relative;
  z-index: 1;
}
.home_about_illust.pos1{
  width: calc(167px * var(--illust-resize));
  position: absolute;
  z-index: 1;
  bottom: calc(100% - 12px);
  right: 8px;
}
.home_about_illust.pos2{
  width: calc(368px * var(--illust-resize));
  margin-top: 10px;
}
.home_about_illust.about_pos1{
  width: calc(680px * var(--illust-resize));
  max-width: 100%;
  margin-top: 35px;
}

.tt2{
  position: relative;
  z-index: 1;
}
.tt2_illust{
  position: absolute;
  z-index: 1;
  top: -35px;
  right: 0;
}
.tt2_illust.pos1{
  width: calc(336px * var(--illust-resize2));
}
.tt2_illust.about_pos1{
  width: calc(379px * var(--illust-resize2));
}
.tt2_illust.business_pos1{
  width: calc(412px * var(--illust-resize2));
}
.tt2_illust.business_pos2{
  width: calc(235px * var(--illust-resize2));
  top: -6px;
}
.tt2_illust.individual_pos1{
  width: calc(316px * var(--illust-resize2));
  top: -20px;
}

@media (min-width:768px){
  :root{
    --illust-resize: 0.7;
    --illust-resize2: 0.5;
  }
}
@media (min-width:1024px){
  :root{
    --illust-resize: 0.7;
    --illust-resize2: 0.5;
  }
  .tt2_illust.business_pos2{
    top: -16px;
  }
}
@media (min-width:1200px){
  :root{
    --illust-resize: 0.8;
    --illust-resize2: 0.6;
  }
}
@media (min-width:1470px){
  :root{
    --illust-resize: 0.8;
    --illust-resize2: 0.8;
  }
  .tt2_illust.business_pos2{
    top: -6px;
  }
  .tt2_illust.individual_pos1{
    top: 6px;
  }
}
@media (min-width:1720px){
  :root{
    --illust-resize: 1.0;
    --illust-resize2: 1.0;
  }
}

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

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

}
.pg_about .section.sec1{
  padding-bottom: 50px;
}
.pg_about .section.sec2{
  background: #ebf1f4;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_about .section.sec3{
  padding-top: 0;
}


@media (max-width:374px){

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

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

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

  .pg_about .section.sec1{
    padding-bottom: 75px;
  }
  .pg_about .section.sec2{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_about .section.sec3{
    padding-top: 0;
  }


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


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


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

  .pg_about .section.sec1{
    padding-bottom: 150px;
  }
  .pg_about .section.sec2{
    padding-top: 135px;
    padding-bottom: 140px;
  }
  .pg_about .section.sec3{
    padding-top: 0;
  }

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


}

/* メイン部分 */

/* Reason */
.about_reason{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
* + .about_reason{
  margin-top: 30px;
}
.about_reason_item{
  width: 100%;
  padding: 20px 20px ;
  box-shadow: 7px 7px #7cacd8;
  border-radius: 5px;
  background: #FFF;
}
.about_reason_head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 1px solid #a6a6a6;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.about_reason_head_num{
  width: 45px;
  font-size: 30px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 0.9;
  color: #f19149;
}

.about_reason_head_ttl{
  width: calc(100% - 45px);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.about_reason_head_txt{
  
}

.about_reason_head.center{
  align-items: center;
}
.about_reason_head_icon{
  width: 60px;
  padding-right: 10px;
}
.about_reason_head_icon + .about_reason_head_ttl{
  width: calc(100% - 60px);
  font-size: 20px;
}

.about_reason_cases{
  
}
* + .about_reason_cases{
  margin-top: 20px;
}
.about_reason_cases_ttl{
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.about_reason_cases_ttl:before{
  content: "";
  background: #f19149;
  border-radius: 50%;
  width: 10px;
  aspect-ratio: 1 / 1;
  margin-right: 8px;
}
.about_reason_cases_list{
  
}
.about_reason_cases_list_item{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #fef4ec;
  padding: 7px 10px 9px;
}
.about_reason_cases_list_item + .about_reason_cases_list_item{
  margin-top: 5px;
}

.about_reason.color2 .about_reason_item{
  box-shadow: 7px 7px #84ccc9;
}
.about_reason.color3 .about_reason_item{
  box-shadow: 7px 7px #21a7d0;
}


/* Question */
.about_question{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_question_box1{
  width: 100%;
}
.about_question_box2{
  width: 100%;
  margin-top: 20px;
}
.about_question_img{
  
}
.about_question_img.img_fit:before{
  padding-top: 75%;
}
.about_question_txt{
  font-weight: 400;
  letter-spacing: 0.05em;
}
.about_question_list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.about_question_list_item{
  width: 100%;
  background: #ededed;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.666;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 10px 10px;
}

/* Philosophy */
.about_philosophy_bg{
  position: relative;
  z-index: 0;
}
.about_philosophy_bg.img_fit:before{
  padding-top: 200px;
}
.about_philosophy_wrap{
  background: #f9f9f9;
  padding: 30px 15px 30px;
  margin-top: -80px;
  position: relative;
  z-index: 1;
}
.about_philosophy_wrap.noMt{
  margin-top: 0;
}
.about_philosophy_head{
  text-align: center;
  margin-bottom: 30px;
}
.about_philosophy_head_en{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--main-color);
}
.about_philosophy_head_ja{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  
}
* + .about_philosophy_head_en{
  margin-top: 5px;
}
* + .about_philosophy_head_ja{
  margin-top: 5px;
}
.about_philosophy{
  
}
.about_philosophy_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_philosophy_row + .about_philosophy_row{
  margin-top: 50px;
}
.about_philosophy_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.about_philosophy_box2{
  width: 100%;
  order: 1;
}
.about_philosophy_ttl{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #FFF;
  padding: 5px 8px 6px;
  margin-bottom: 15px;
}
.about_philosophy_txt{
  
}
.about_philosophy_img{
  
}
.about_philosophy_img.img_fit:before{
  padding-top: 75%;
}

.about_philosophy_wrap.color2{
  background: #f3f6fb;
}
.about_philosophy_wrap.color3{
  background: #e8f6fa
}
.about_philosophy_wrap.color3 .about_philosophy_head_en{
  color: #21a7d0;
}


@media (max-width:767px){

}
@media (min-width:768px){
  
  /* Reason */
  .about_reason{
    gap: 20px 20px;
  }
  * + .about_reason{
    margin-top: 55px;
  }
  .about_reason_item{
    /*width: calc(50% - 10px);*/
    padding: 36px 40px 36px;
  }
  .about_reason_head{
    padding-bottom: 15px;
    margin-bottom: 28px;
  }
  .about_reason_head_num{
    width: 55px;
    width: 60px;
    font-size: 40px;
  }
  .about_reason_head_ttl{
    width: calc(100% - 55px);
    width: calc(100% - 60px);
    font-size: 24px;
  }
  .about_reason_head_txt{

  }
  
  .about_reason_head.center{
  }
  .about_reason_head_icon{
    width: 80px;
    padding-right: 20px;
  }
  .about_reason_head_icon + .about_reason_head_ttl{
    width: calc(100% - 80px);
    font-size: 22px;
  }
  
  /* Question */
  .about_question{
  }
  .about_question_box1{
    /*width: 400px;*/
  }
  .about_question_box2{
    /*width: calc(100% - 400px - 40px);*/
  }
  .about_question_txt{
  }
  .about_question_list{
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .about_question_list_item{
    width: calc(50% - 10px);
    font-size: 16px;
    padding: 10px 10px;
  }
  
  /* Philosophy */
  .about_philosophy_bg.img_fit:before{
    padding-top: 300px;
  }
  .about_philosophy_wrap{
    margin-top: -150px;
    padding: 50px 30px 50px;
  }
  .about_philosophy_head{
    margin-bottom: 30px;
  }
  .about_philosophy_head_en{
    font-size: 20px;
  }
  .about_philosophy_head_ja{
    font-size: 28px;
  }
  * + .about_philosophy_head_en{
    margin-top: 15px;
  }
  * + .about_philosophy_head_ja{
    margin-top: 15px;
  }
  .about_philosophy{
    
  }
  .about_philosophy_row{
  }
  .about_philosophy_row + .about_philosophy_row{
    margin-top: 50px;
  }
  .about_philosophy_box1{
  }
  .about_philosophy_box2{
  }
  .about_philosophy_ttl{
    font-size: 20px;
    padding: 5px 8px 6px;
    margin-bottom: 20px;
  }
  .about_philosophy_txt{

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

  /* Reason */
  .about_reason{
    gap: 20px 20px;
  }
  * + .about_reason{
    margin-top: 55px;
  }
  .about_reason_item{
    width: calc(50% - 10px);
    padding: 30px 25px 30px;
  }
  .about_reason_head{
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .about_reason_head_num{
    width: 50px;
    font-size: 32px;
  }
  .about_reason_head_ttl{
    width: calc(100% - 50px);
    font-size: 20px;
  }
  .about_reason_head.center{
  }
  .about_reason_head_icon{
    /*width: 100px;*/
    /*padding-right: 20px;*/
  }
  .about_reason_head_icon + .about_reason_head_ttl{
    /*width: calc(100% - 100px);*/
    font-size: 20px;
  }
  
  /* Question */
  .about_question{
  }
  .about_question_box1{
    width: 300px;
    margin-top: 5px;
  }
  .about_question_box2{
    width: calc(100% - 300px - 30px);
    margin-top: 0;
  }
  .about_question_txt{
  }
  .about_question_list{
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .about_question_list_item{
    /*width: calc(33.333% - 13.333px);*/
    /*font-size: 18px;*/
    /*padding: 20px 10px;*/
  }

  /* Philosophy */
  .about_philosophy_bg.img_fit:before{
    padding-top: 400px;
  }
  .about_philosophy_wrap{
    margin-top: -200px;
    /*padding: 50px 50px 50px;*/
  }
  .about_philosophy_head{
    margin-bottom: 50px;
  }
  .about_philosophy_head_en{
    font-size: 20px;
  }
  .about_philosophy_head_ja{
    font-size: 28px;
  }
  .about_philosophy{
    
  }
  .about_philosophy_row{
  }
  .about_philosophy_row + .about_philosophy_row{
    margin-top: 75px;
  }
  .about_philosophy_box1{
    width: calc(100% - 300px - 30px);
    order: 1;
    margin-top: 0;
  }
  .about_philosophy_box2{
    width: 300px;
    order: 2;
  }
  .about_philosophy_ttl{
    font-size: 20px;
  }
  .about_philosophy_txt{

  }
  .about_philosophy_row:nth-child(odd) .about_philosophy_box1{

  }
  .about_philosophy_row:nth-child(odd) .about_philosophy_box2{

  }
  .about_philosophy_row:nth-child(even) .about_philosophy_box1{
    order: 2;
  }
  .about_philosophy_row:nth-child(even) .about_philosophy_box2{
    order: 1;
  }
  
  
}
@media (min-width:1200px){

  /* Question */
  .about_question{
  }
  .about_question_box1{
    width: 300px;
    margin-top: 5px;
  }
  .about_question_box2{
    width: calc(100% - 300px - 30px);
    margin-top: 0;
  }
  .about_question_txt{
  }
  .about_question_list{
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .about_question_list_item{
    width: calc(33.333% - 6.666px);
    font-size: 15px;
    /*padding: 20px 10px;*/
  }
  
  .about_reason_head_icon + .about_reason_head_ttl{
    font-size: 22px;
  }

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

  /* Reason */
  .about_reason{
  }
  * + .about_reason{
    margin-top: 55px;
  }
  .about_reason_item{
    width: calc(50% - 10px);
    padding: 36px 40px 36px;
  }
  .about_reason_head{
    padding-bottom: 15px;
    margin-bottom: 28px;
  }
  
  .about_reason_head_num{
    /*width: 60px;*/
    /*font-size: 40px;*/
  }
  .about_reason_head_ttl{
    /*width: calc(100% - 60px);*/
    font-size: 22px;
  }
  .about_reason_head.center{
  }
  .about_reason_head_icon{
    width: 100px;
    padding-right: 20px;
  }
  .about_reason_head_icon + .about_reason_head_ttl{
    width: calc(100% - 100px);
    font-size: 24px;
  }
  
  .about_reason.insurance .about_reason_head{
    padding-bottom: 20px;
  }
  
  /* Question */
  .about_question{
  }
  .about_question_box1{
    width: 400px;
    margin-top: 5px;
  }
  .about_question_box2{
    width: calc(100% - 400px - 40px);
    margin-top: 0;
  }
  .about_question_txt{
  }
  .about_question_list{
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .about_question_list_item{
    width: calc(33.333% - 13.333px);
    font-size: 16px;
    padding: 20px 10px;
  }
  
  /* Philosophy */
  .about_philosophy_bg.img_fit:before{
    padding-top: 500px;
  }
  .about_philosophy_wrap{
    margin-top: -250px;
    padding: 50px 50px 50px;
  }
  .about_philosophy_head{
    margin-bottom: 75px;
  }
  .about_philosophy_head_en{
    font-size: 20px;
  }
  .about_philosophy_head_ja{
    font-size: 28px;
  }
  .about_philosophy{
    
  }
  .about_philosophy_row{
  }
  .about_philosophy_row + .about_philosophy_row{
    margin-top: 100px;
  }
  .about_philosophy_box1{
    width: calc(100% - 400px - 55px);
    order: 1;
    margin-top: 0;
  }
  .about_philosophy_box2{
    width: 400px;
    order: 2;
  }
  .about_philosophy_ttl{
    font-size: 24px;
    padding: 5px 8px 6px;
    margin-bottom: 30px;
  }

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

  /* Reason */
  .about_reason_head_num{
    width: 60px;
    font-size: 40px;
  }
  .about_reason_head_ttl{
    width: calc(100% - 60px);
    font-size: 24px;
  }
  
  /* Question */
  .about_question{
  }
  .about_question_box1{
  }
  .about_question_box2{
  }
  .about_question_txt{
  }
  .about_question_list{
  }
  .about_question_list_item{
    font-size: 18px;
  }
  
  /* Philosophy */
  .about_philosophy_bg.img_fit:before{
    padding-top: 680px;
  }
  .about_philosophy_wrap{
    margin-top: -380px;
    padding: 80px 100px 100px;
  }
  .pg_business .about_philosophy_wrap{
    padding-bottom: 80px;
  }
}



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

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

}
.pg_business .section.sec1{
  padding-bottom: 50px;
}
.pg_business .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f9f9f9;
}
.pg_business .section.sec3{
  padding-top: 50px;
}
.pg_business .section.sec4{
  padding-top: 0;
  padding-bottom: 50px;
}
.pg_business .section.sec5{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f9f9f9;
}



@media (max-width:374px){

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

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

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

  .pg_business{

  }
  .pg_business .section.sec1{
    padding-bottom: 50px;
  }
  .pg_business .section.sec2{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_business .section.sec3{
    padding-top: 50px;
  }
  .pg_business .section.sec4{
    padding-top: 25px;
    padding-bottom: 75px;
  }
  .pg_business .section.sec5{
    padding-top: 75px;
    padding-bottom: 75px;
  }


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


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


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

  .pg_business .section.sec1{
    padding-bottom: 80px;
  }
  .pg_business .section.sec2{
    padding-top: 135px;
    padding-bottom: 140px;
  }
  .pg_business .section.sec3{
    padding-top: 80px;
  }
  .pg_business .section.sec4{
    padding-top: 95px;
    padding-bottom: 80px;
  }
  .pg_business .section.sec5{
    padding-top: 135px;
    padding-bottom: 140px;
  }

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


}

/* メイン部分 */

/* 必要性 */
.for_important_wrap{
  background: #f3f6fb;
  padding: 30px 20px;
  border-radius: 5px;
}
* + .for_important_wrap{
  margin-top: 80px;
}
.for_important{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.for_important_box1{
  width: 100%;
}
.for_important_box2{
  width: 100%;
  margin-top: 20px;
}
.for_important_head{
  margin-bottom: 15px;
  text-align: center;
}
.for_important_head_ja{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.for_important_head_en{
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-en);
  color: var(--en-color);
  letter-spacing: 0;
  margin-top: 5px;
}
.for_important_list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.for_important_list_item{
  width: 100%;
  background: #FFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.666;
  text-align: center;
  padding: 10px 10px;
}

.for_important_wrap.color2{
  background: #f3f6fb;
}
.for_important_wrap.color3{
  background: #e8f6fa;
}
.for_important_wrap.color3 .for_important_head_en{
  color: #21a7d0;
}

/* バナー */
.business_banners{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
* + .business_banners{
  margin-top: 40px;
}
.business_banners_item{
  width: 100%;
  transition: 0.2s all;
}
.business_banners_item:hover{
  transform: scale(1.01);
}

@media (max-width:767px){

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

  /* 必要性 */
  .for_important_wrap{
    padding: 55px 60px;
  }
  * + .for_important_wrap{
    margin-top: 80px;
  }
  .for_important{
  }
  .for_important_box1{
    /*width: calc(100% - 610px - 35px);*/
  }
  .for_important_box2{
    /*width: 610px;*/
    margin-top: 30px;
  }
  .for_important_head{
    margin-bottom: 25px;
  }
  .for_important_head_ja{
    font-size: 24px;
  }
  .for_important_head_en{
    font-size: 18px;
    margin-top: 10px;
  }
  .for_important_list{
    gap: 10px;
  }
  .for_important_list_item{
    width: calc(50% - 5px);
    font-size: 18px;
    padding: 20px 10px;
  }
  
  /* バナー */
  .business_banners{
    gap: 10px;
  }
  * + .business_banners{
    margin-top: 60px;
  }
  .business_banners_item{
    width: calc(50% - 5px);
  }
  
}
@media (min-width:1024px){

  

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


  /* 必要性 */
  .for_important_wrap{
    padding: 55px 60px;
  }
  * + .for_important_wrap{
    margin-top: 80px;
  }
  .for_important{
  }
  .for_important_box1{
    width: calc(100% - 480px - 25px);
  }
  .for_important_box2{
    width: 480px;
    margin-top: 10px;
  }
  .for_important_head{
    margin-bottom: 25px;
  }
  .for_important_head_ja{
    font-size: 24px;
  }
  .for_important_head_en{
    font-size: 18px;
    margin-top: 10px;
  }
  .for_important_list{
    gap: 10px;
  }
  .for_important_list_item{
    width: calc(50% - 5px);
    font-size: 17px;
    padding: 20px 10px;
  }
  
}
@media (min-width:1470px){


  /* 必要性 */
  .for_important_wrap{
    /*padding: 55px 60px;*/
  }
  * + .for_important_wrap{
    /*margin-top: 80px;*/
  }
  .for_important{
  }
  .for_important_box1{
    width: calc(100% - 610px - 35px);
  }
  .for_important_box2{
    width: 610px;
    margin-top: 10px;
  }
  /*.for_important_head{
    margin-bottom: 25px;
  }
  .for_important_head_ja{
    font-size: 24px;
  }
  .for_important_head_en{
    font-size: 18px;
    margin-top: 10px;
  }
  .for_important_list{
    gap: 10px;
  }
  .for_important_list_item{
    width: calc(50% - 5px);
    font-size: 18px;
    padding: 20px 10px;
  }*/
  .for_important_list_item{
    font-size: 18px;
    padding: 20px 10px;
  }
  
  /* バナー */
  .business_banners{
    gap: 10px;
  }
  * + .business_banners{
    margin-top: 90px;
  }
  .business_banners_item{
    width: calc(50% - 5px);
  }
  
}
@media (min-width:1720px){


}







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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */
.logo_num{
 text-align:right;
}
@media (max-width:767px){

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

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


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


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


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


}

