@charset "UTF-8";

:root {
  --main-color: #3488d4;
  --sub-color: #6fbbff;
  --bg1-color: #f8fcff;

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}
#root{
  overflow: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

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


}

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 55vw);
  }
}
/*@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}*/


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

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

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

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

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

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

.img_fit{
  position: relative;
}
.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:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1536px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@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: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{

}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.hdr_tel_txt1 p{
  letter-spacing: 0.010em;
}
.hdr_tel_txt1 strong{
  font-size: 14px;
  font-weight: 500;
}
.hdr_tel_txt2{
  font-size: 12px;
  font-weight: 500;
  margin-top: 5px;
}
.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{
  font-family: "Oswald", sans-serif;
  background-image: -webkit-linear-gradient(135deg, rgba(0, 134, 255, 0.99608) 0%, rgb(111, 187, 255) 100%);
  color: #FFF;
  width: 210px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
  position: relative;
}
.hdr_contact a.email{
  display: inline-block;
  background-size: 200% 100%;        /* 横に長いグラデを用意 */
  background-position: 0% 50%;       /* 初期位置 */
  transition: background-position .35s ease, transform .2s ease, box-shadow .2s ease;
  border-radius: 0;
}
.hdr_contact a.email:hover{
  background-position: 100% 50%;     /* グラデをスライド */
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,134,255,.35);
  opacity: 1;
}
.hdr_contact a.email:after{
  content: "";
  display: block;
  width: 16.66%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background-image: -webkit-linear-gradient(135deg, rgba(0, 134, 255, 0.99608) 0%, rgb(111, 187, 255) 100%);
  color: #FFF;
}

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
    padding: 9px 10px 10px;
  }

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

  .hdr_tel{
    display: none;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 86px;
  }
  .header{
    background: #fff;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 18px;

  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    padding-bottom: 10px;
  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

  }

  .hdr1{
    padding-inline: 39px 50px;

  }
  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 32px;
  }
  .hdr_tel_txt1 strong{
    font-size: 22px;
    margin-right: 7px;
  }

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

  .hdr_tel_txt1{
    font-size: 35px;
  }

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

  }

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
  z-index: 1;

}

.mv_img_wrap{
  position: relative;
  z-index: 1;
}
.mv_img_wrap:after{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--main-color);
  transform: rotate(-1deg);
  border-radius: 20px;
}
.mv_img{
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 50vh;
}
.mv_img:after{
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0,0,0,0.20);
  pointer-events: none;
}

/* MVテキスト */
.mv_catch{
  font-size: 28px;
  position: absolute;
  z-index: 2;
  left: 15px;
  right: 15px;
  bottom: 20px;
}
.mv_catch_p1,
.mv_catch_p2{
  font-size: 1em;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif; 
  line-height: 1;
  color: #FFF;
}
.mv_catch_p1 p,
.mv_catch_p2 p{
  letter-spacing: 0;
}
.mv_catch_p1{

}
.mv_catch_p2{
  /*margin-left: 3.4583em;*/
  margin-right: -0.0416em;
  text-align: right;
}
.mv_catch_h1{
  background: var(--main-color);
  color: #FFF;
  padding: 5px 10px;

}
.mv_catch_h1_txt{
  font-size: 25px;
  font-size: 0.208333em;
  font-weight: 500;
}

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

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

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


  /* MVテキスト */
  .mv_catch_h1{
    /*bottom: 100%;*/
    margin-bottom: 10px;
    text-align: center;
  }
  .mv_catch_h1_txt{
    font-size: 14px;
  }

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

  /* MV */
  .mv{
    margin-left: 30px;
    margin-right: 30px;
  }

  .mv_img_wrap:after{
    border-radius: 50px;
  }
  .mv_img{
    border-radius: 50px;
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_catch{
    font-size: 46px;
    left: 25px;
    right: 25px;
    bottom: 25px;
  }
  .mv_catch_p1,
  .mv_catch_p2{
    font-size: 1em;
  }
  .mv_catch_h1{
    position: absolute;
    padding: 5px 15px;
    top: 0.2em;
    top: 0.12em;
    right: 0;
  }
  .mv_catch_h1_txt{
    font-size: 0.208333em;
  }

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


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

  /* MVテキスト */
  .mv_catch{
    font-size: 60px;
    /*left: 45px;*/
    /*right: 45px;*/
    /*bottom: 50px;*/
  }
  .mv_catch_h1{
    position: absolute;
    z-index: 1;
    /*top: 0.2em;*/
    right: 0;
    padding: 5px 20px;
  }

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

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

  /* MVテキスト */
  .mv_catch{
    font-size: 70px;
    left: 45px;
    right: 45px;
    bottom: 25px;
  }
  .mv_catch_h1{
    padding: 5px 30px;
  }

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

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


  /* MVテキスト */
  .mv_catch{
    font-size: 85px;
    bottom: 25px;
  }
  .mv_catch_h1{
    top: 0.2em;
  }

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

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

  /* MVテキスト */
  .mv_catch{
    font-size: 90px;
  }
  .mv_catch_h1{
    top: 0.2em;
  }

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

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

  /* MVテキスト */
  .mv_catch{
    font-size: 105px;
  }
  .mv_catch_h1{
    top: 0.2em;
  }

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

  /* MVテキスト */
  .mv_catch{
    font-size: 120px;
  }
  .mv_catch_h1{
    top: 0.2em;
  }

}


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

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

}


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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  /*min-width: 250px;*/
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  padding: 16px 20px;
  padding-right: 70px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "→";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-image: -webkit-linear-gradient( 135deg, rgba(0,134,255,0.99608) 0%, rgb(111,187,255) 100%);
  color: #FFF;

  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;

}

.read_more a:hover{
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 20px;
}
.tt2_en{
  font-size: 40px;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif; 
  line-height: 1;
  letter-spacing: 0;
}
.tt2_ja{
  font-size: 14px;
  font-weight: 500;
  margin-top: -2px;
}
.tt2.left{
  text-align: left;
}
.tt2_ja_bdr{

}

.tt3{
  /*font-size: 28px;*/
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 35px;
  text-align: center;
}
.tt3.left{
  text-align: left;
}
.tt3.small{
  /*font-size: 25px;*/
  font-size: 18px;
}
.tt3.large{
  /*font-size: 35px;*/
  font-size: 22px;
}

/* 説明テキスト */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}


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

}
.cmn_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_contents_row + .cmn_contents_row{
  margin-top: 50px;
}
.cmn_contents_box1{
  width: 51.35%;
}
.cmn_contents_box2{
  width: 40.09%;
}
.cmn_contents_title1{
  font-size: 24px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.cmn_contents_title1 p{
  letter-spacing: 0;
}
.cmn_contents_title1_en{

}
.cmn_contents_title1_ja{

}
.cmn_contents_title2{

}
.cmn_contents_txt{

}
.cmn_contents_img{

}
.cmn_contents_img.img_fit:before{
  padding-top: 51.282%;
}


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

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

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

}


@media (max-width:374px){

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

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

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

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

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

  .tt2 .tt2_ja{
    font-size: 14px;
    letter-spacing: 0;
  }
  .tt3.large{
   font-size:20px;
  }

  .read_more a{
    padding: 16px 20px;
  }
  .read_more a:hover:after{
    margin-right: auto;
    /*right: -5px;*/
    transform: scale(1.1);
  }
  .read_more a:after{
    margin: 30px auto 0;
  }
}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

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

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

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

  .tt3{
    font-size: 24px;
    margin-bottom: 15px;
  }
  .tt3.left{
    text-align: left;
  }
  .tt3.small{
    font-size: 21px;
  }
  .tt3.large{
    font-size: 28px;
  }

  /* 説明テキスト */
  .cmn_txt{
    font-size: 16px;
    line-height: 2;
  }

  .cmn_contents_title1{
    font-size: 32px;
  }

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

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

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

  .tt3{
    font-size: 28px;
    margin-bottom: 35px;
  }
  .tt3.left{
    text-align: left;
  }
  .tt3.small{
    font-size: 25px;
  }
  .tt3.large{
    font-size: 35px;
  }

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


}



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

}
.pg_home .section.sec1{
  padding-top: 50px;
}
.pg_home .section.sec2{
  overflow: hidden;
}
.pg_home .section.sec2:after{
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 380px;
  background: var(--bg1-color);
}
.pg_home .section.sec3{
  overflow: hidden;
  padding-top:50px;
}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 95px;
  }
  .pg_home .section.sec5{
    padding-bottom: 70px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}


/* About */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home_about_box1{
  width: 100%;
  margin-top: 20px;
  order: 2;
}
.home_about_box2{
  width: 100%;
  order: 1;
}
.home_about_imgs{
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.home_about_imgs_item{
  border-radius: 20px;
  overflow: hidden;
}
.home_about_imgs_item.pos1{
  width: 78.51%;
}
.home_about_imgs_item.pos2{
  width: 57.85%;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.home_about_imgs_item.pos1.img_fit:before{
  padding-top: 122.105%;
}
.home_about_imgs_item.pos2.img_fit:before{
  padding-top: 145.714%;
}

.home_about_title1{
  margin-bottom: 28px;
}
.home_about_title2{

}
.home_about_txt{

}

/* REASON */
.home_reason_outer{
  position: relative;
}
.home_reason_prev,
.home_reason_next{
  display: block;
  width: 55px;
  aspect-ratio:1 / 1;
  border-radius: 50%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: -webkit-linear-gradient( 135deg, rgba(0,134,255,0.99608) 0%, rgb(111,187,255) 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.home_reason_prev{
  /*background-image: url(/system_panel/uploads/images/left.png);*/
  left: -7%;
}
.home_reason_next{
  /*background-image: url(/system_panel/uploads/images/right.png);*/
  right: -7%;
}
.home_reason_prev:before,
.home_reason_next:before{
  content: "";
  font-family: "FontAwesome";
  color: #FFF;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
}
.home_reason_prev:before{
  content: "\f053";
  content: "\f104";
  left: 46%;
}
.home_reason_next:before{
  content: "\f054";
  content: "\f105";
  left: 54%;
}

.home_reason{
  /*padding-left: 30px;*/
  /*padding-right: 30px;*/
  padding: 7px 0;
}
.home_reason_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  background: #FFF;
  border: 1px solid #487fb0;
  border-radius: 20px;
  padding: 20px 15px;
  height: auto;
  position: relative;
}
.home_reason_item:before{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border: 1px solid #487fb0;
  background: #fff;
  border-radius: 20px;
  z-index: 1;
}
.home_reason_item:after{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--main-color);
  transform: rotate(-1deg);
  border-radius: 20px;
}
.home_reason_item_box1{
  width: 100%;
  margin-top: 20px;
  order: 2;
  position: relative;
  z-index: 2;
}
.home_reason_item_box2{
  width: 100%;
  order: 1;
  position: relative;
  z-index: 2;
}
.home_reason_item_num{
  display: flex;
  align-items: flex-end;
  font-size: 15px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin-bottom: 15px;
}
.home_reason_item_num_p1{
  font-size: 1.9444em;
  color: #6fbbff;
}
.home_reason_item_num_p2{
  font-size: 1em;
}
.home_reason_item_num_p2:before{
  content: "／";
}
.home_reason_item_title{
  margin-bottom: 10px;
}
.home_reason_item_txt{
  padding-left: 6px;
}

.home_reason_item_img{
  border-radius: 20px;
  overflow: hidden;
}
.home_reason_item_img.img_fit:before{
  padding-top: 68.293%;
}
.swiper-button-disabled{
  opacity: 0;
  pointer-events: none;
}

/*service*/
.pg_home .section.sec3 .cmn_contents{
  margin-top: 40px;
}
.pg_home .section.sec3 .cmn_contents_title_line{
  margin-top: 7px;
}

/*バナー*/
.cmn_contents_bnr{
  position: relative;
  cursor: pointer;
  margin-top: 80px;
}
.cmn_contents_bnr_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 1.414px 1.414px 6.79px 0.21px rgba(0, 0, 0,0.5);
  overflow: hidden;
  margin-top: 80px;
  position: relative;
  border-radius: 10px;

}
.btn_img{
  content: "";
  display: block;
  width:6.7%; ;
  aspect-ratio:1 / 1;
  background-image: url(/system_panel/uploads/images/btn_lg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -2.3%;
  right: -0.9%;
  z-index: 1;
  transition: all .2s;
    cursor: pointer;
}
.btn_img:hover{
  right: -1.5%;
}
.cmn_contents_bnr:before{
  /*  content: "";
    display: block;
    width:6.7%; ;
    aspect-ratio:1 / 1;
    background-image: url(/system_panel/uploads/images/btn_lg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -2.3%;
    right: -0.9%;*/
}
.cmn_contents_bnr_border{
  position: absolute;
  width: 95.49%;
  height: 95.09%;
  border: 1px solid #3488d4;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.cmn_contents_bnr_box1{
  width: 100%;
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 60px 0 0;
}
.cmn_contents_bnr_box1:before{
  content: "";
  display: block;
  width: 658px;
  aspect-ratio:658 / 467;
  background-image: url(/system_panel/uploads/images/right_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  left: auto;
  top: 0;
  bottom: auto;
  z-index: -1;
}
.cmn_contents_bnr_box1_img{

}
.cmn_contents_bnr_box2{
  width: 100%;
  position: relative;
  padding: 30px 28px 40px;
}
.cmn_contents_bnr_box2:before{
  content: "";
  display: block;
  width: 624px;
  aspect-ratio:624 / 441;
  background-image: url(/system_panel/uploads/images/left_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: auto;
  top: auto;
  bottom: 0;
  z-index: -1;
}
.cmn_contents_bnr .cmn_contents_title_line{
  font-family: "Josefin Sans", sans-serif;
  position: relative;
  z-index: 2;
}
.cmn_contents_bnr .cmn_contents_title_line p{
  letter-spacing: 0;
  line-height: 1;
  padding: 6px 16px 1px;
}
.cmn_contents_bnr .cmn_contents_title_line strong{
  font-size: 14px;
  font-weight: 500;
}
.cmn_contents_bnr .cmn_contents_bnr_box2 .home_reason_item_title{
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.cmn_contents_bnr .cmn_contents_bnr_box2 .content_desc{
  position: relative;
  z-index: 2;
}
@media (max-width:374px){

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

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

  .home_reason_item{
    align-content: flex-start;
    align-items: flex-start;
  }
  .home_reason_item_txt{
    font-size: 15px;
    line-height: 1.7;
    /*line-height: 1.5;*/
    padding-left: 0;
  }
  .home_reason_outer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home_reason{
    /*width: 80%;*/ 
    width: 100%; 
  }

  .home_reason_prev,
  .home_reason_next{
    /*position: static;*/
    /*margin: 25px 10px 0;*/
    width: 30px;
    top: 74.2vw;
  }
  .home_reason_prev{
    /*width: 40px;
    top: 50%;
    left: -2%;*/
    left: auto;
    right: 55px;
  }
  .home_reason_next{
    /*width: 40px;
    top: 50%;
    right: -2%;*/
    right:15px;
    left: auto;
  }


  .pg_home .section.sec3 .cmn_contents_title_line .line{
    width: 105px;
  }

  .cmn_contents_bnr_box1:before,
  .cmn_contents_bnr_box2:before{
    width: 300px;
  }
  .btn_img{
    width: 12.7%;
  }
}
@media (min-width:768px){

  /* About */
  .home_about{
  }
  .home_about_box1{
    /*width: 70%;*/
    /*margin: 30px auto 0;*/
    width: 32%;
    margin: 0;
    order: 1;
  }
  .home_about_box2{
    width: 63%;
    order: 2;
  }
  .home_about_imgs{
    padding-bottom: 50px;
  }
  .home_about_imgs_item{
    border-radius: 20px;
  }

  .home_about_title1{
    margin-bottom: 28px;
  }
  .home_about_title2{

  }
  .home_about_txt{

  }

  /* REASON */
  .home_reason{

  }
  .home_reason_item{
    width: 100%;;
    /*    width: 690px;*/
    border-radius: 20px;
    padding: 25px 25px;
  }
  .home_reason_item_box1{
    /*width: 100%;*/
    /*width: 51.53%;*/
    /*margin-top: 0;*/
    /*order: 1;*/
  }
  .home_reason_item_box2{
    /*width: 41.83%;*/
    /*order: 2;*/
  }
  .home_reason_item_num{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .home_reason_item_title{
    margin-bottom: 23px;
  }
  .home_reason_item_txt{
    padding-left: 6px;
  }
  .home_reason_item_img{
    border-radius: 20px;
  }
  .home_reason_prev{
    width: 40px;
    top: 50%;
    left: -2%;
  }
  .home_reason_next{
    width: 40px;
    top: 50%;
    right: -2%;
  }


  /*service*/
  .pg_home .section.sec3 .cmn_contents{
    margin-top: 50px;
  }
  .pg_home .section.sec3 .cmn_contents_title2{
    font-size: 20px; 
  }
  .pg_home .section.sec3 .cmn_contents_txt{
    margin-top: 21px;
  }

  /*バナー*/
  .cmn_contents_bnr{
    margin-top: 140px;
  }
  .cmn_contents_bnr_box1{

  }
  .cmn_contents_bnr_box1_img{

  }
  .cmn_contents_bnr_box2{
    padding: 30px 40px 60px;
  }
  .cmn_contents_bnr .cmn_contents_title_line{
    font-size: 20px;
  }
  .cmn_contents_title_line strong{

  }
  .cmn_contents_bnr_box2 .home_reason_item_title{
    margin-bottom: 15px;
  }
  .cmn_contents_bnr_box2 .content_desc{

  }

  /*works*/
  .pg_home .section.sec4 .read_more{
    margin-top: 60px;
  }

  /*news*/
  .pg_home .section.sec5 .news_list{
    margin-top: 54px;
  }
  .pg_home .section.sec5 .read_more{
    margin-top: 60px;
  }
}
@media (min-width:1024px){

  /* About */
  .home_about{
  }
  .home_about_box1{
    width: 54.54%;
  }
  .home_about_box2{
    width: 40.09%;
  }
  .home_about_imgs{
    padding-bottom: 50px;
  }
  .home_about_imgs_item{
    border-radius: 20px;
  }

  .home_about_title1{
    margin-bottom: 28px;
  }
  .home_about_title2{

  }
  .home_about_txt{

  }

  /* REASON */
  .home_reason{
    margin-right: 0;
    /*    margin-right: var(--margin-for-device-side);*/
  }
  .home_reason_item{
    /*width: 930px;*/
    align-items: center;
    border-radius: 20px;
    padding: 38px 65px;
  }
  .home_reason_item_box1{
    width: 100%;
    width: 51.53%;
    margin-top: 0;
    order: 1;
  }
  .home_reason_item_box2{
    width: 41.83%;
    order: 2;
  }
  .home_reason_item_num{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .home_reason_item_title{
    margin-bottom: 23px;
  }
  .home_reason_item_txt{
    padding-left: 6px;
  }
  .home_reason_item_img{
    border-radius: 20px;
  }

  /*service*/
  .pg_home .section.sec3 .cmn_contents{
    margin-top: 80px;
  }
  .cmn_contents_row .cmn_contents_img.img_fit:before{
    padding-top: 500px;
  }
  .pg_home .section.sec3 .cmn_contents_title1{
    font-size: 32px;
    margin-right: -60px;
  }
  .pg_home .section.sec3 .cmn_contents_title_line .line{
    width: 140px;
  }
  .pg_home .section.sec3 .cmn_contents_title2{
    font-size: 22px;
    margin-right: -16px;
    margin-top: 24px;
  }
  .pg_home .section.sec3 .cmn_contents_txt{
    padding-right: 67px;
  }
  .pg_home .section.sec3 .read_more{
    margin-top: 50px;
  }
  .cmn_contents_row:nth-child(odd) .cmn_contents_box2,
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    margin-top: 45px;
  }

  .home_reason_prev{
    width: 40px;
    top: 50%;
    left: -2%;
  }
  .home_reason_next{
    width: 40px;
    top: 50%;
    right: -2%;
  }

  /*バナー*/
  .cmn_contents_bnr{
    margin-top: 195px;
  }
  .cmn_contents_bnr_border{
    position: absolute;
    width: 95.49%;
    height: 88.09%;
  }
  .cmn_contents_bnr_box1{
    width: 48.64%;
    padding: 35px 0 41px;
  }
  .cmn_contents_bnr_box1:before{
    content: "";
    display: block;
    width: 624px;
    aspect-ratio:624 / 441;
    background-image: url(/system_panel/uploads/images/left_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
    z-index: -1;
  }
  .cmn_contents_bnr_box1_img{
    width: 85%;
    margin-inline:auto;
  }
  .cmn_contents_bnr_box2{
    width: 51.35%;
    padding: 52px 8% 57px 0;
  }
  .cmn_contents_bnr_box2:before{
    content: "";
    display: block;
    width: 658px;
    aspect-ratio:658 / 467;
    background-image: url(/system_panel/uploads/images/right_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
  }
  .cmn_contents_title_line strong{

  }
  .cmn_contents_bnr_box2 .home_reason_item_title{
    font-size: 24px;
  }
  .cmn_contents_bnr_box2 .content_desc{
    margin-top: 13px;
  }
}
@media (min-width:1200px){

  /* REASON */

  .home_reason_item{
    width: 1110px;
  }

  .pg_home .section.sec3 .cmn_contents_title1{
    font-size: 40px;
  }
  .pg_home .section.sec3 .cmn_contents_title_line .line{
    width: 169px;
  }

  .home_reason_prev{
    width: 40px;
    top: 50%;
    left: -2%;
  }
  .home_reason_next{
    width: 40px;
    top: 50%;
    right: -2%;
  }


  /*バナー*/
  .cmn_contents_bnr_box2 .home_reason_item_title{
    font-size: 32px;
  }
  .cmn_contents_bnr_box1_img{
    width: auto;
    margin-inline:0;
  }

  .cmn_contents_row:nth-child(odd) .cmn_contents_box2,
  .cmn_contents_row:nth-child(even) .cmn_contents_box2{
    margin-top: 95px;
  }
}
@media (min-width:1470px){
  .home_reason{
    padding-right: calc(var(--margin-for-device-side) * -1);
  }
  .home_reason_prev{
    width: 55px;
    top: 50%;
    left: -7%;
  }
  .home_reason_next{
    width: 55px;
    top: 50%;
    right: -7%;
  }
  .home_reason {
    margin-right: var(--margin-for-device-side);
  }
}




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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}




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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}







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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}




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

/* セクション設定 */
.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 (max-width:767px){

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

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


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


}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .ftr1_box .read_more a{
    padding-right: 0!important;
  }
  .read_more a:after{
    position: relative;
    transform: none;
    top: auto;
    margin-top: 30px;
    margin-left: auto;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  .ftr2_addr a:hover,
  .ftr2_inner .ftr_link a:hover,
  .ftr_copy a:hover{
    color: #c2c3c4
  }
}
@media (min-width:1024px){


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


}


.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled{
  opacity: 0;
}