@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #fea4a4;
  --sub-color: #7ecc96;
  --txt-color: #181818;
  --bk1-color: #f9f5f0;
  --bk2-color: #e4ded7;

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

  /* 丸み */
  --home-about-box1-radius: 100px;

  --home-about-box1-side: calc(760px - 50vw);
}


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

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

#root{
  overflow: hidden;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  color: var(--main-color);
  transition: 0.2s all;
}
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: 3;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
}
.hdr1{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-en);
}
.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_tel_txt1:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 10px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 90px;
  }
  .header{
    --logo-height: 50px;
    /*background: #fff;*/
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_box{
    display: flex;
    align-items: center;
  }
  .hdr_contact_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 110px;
    font-size: 16px;
    padding: 21px 0 17px;
  }
  .hdr_contact_item:hover{
    opacity: .5;
    color: #000;
  }
  .hdr_contact_item p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hdr_contact_item p:before{
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 31px;
    margin-bottom: 8px;
  }
  .hdr_contact_item.mitumori{
    font-weight: 700;
    background: #cccccc;
  }
  .hdr_contact_item.mitumori p:before{
    width: 24px;
    aspect-ratio:24 / 31;
    background-image: url(/system_panel/uploads/images/calculator.png);
  }
  .hdr_contact_item.mitumori p{
    letter-spacing: 0.025em;
  }
  .hdr_contact_item.contact{
    font-weight: 600;
    background: #000000;
    color: #fff;
    font-family: "Montserrat", sans-serif;
  }
  .hdr_contact_item.contact p{
    letter-spacing: 0;

  }
  .hdr_contact_item.contact p:before{
    width: 31px;
    aspect-ratio:31 / 23;
    background-image: url(/system_panel/uploads/images/envelope.png);
  }


  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(255, 255, 255, 0.8);
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
    height: auto;
  }

  /* TELボタン */
  .hdr_tel{

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


}
@media (min-width:1024px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 120px;
  }
  .header{
    --logo-height: 50px;
    padding: 25px 20px 25px 20px;
  }

  .hdr1{
    padding: 0;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{
    margin-left: 45px;
  }
  .hdr_tel_txt1{
    font-size: 20px;
  }

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

  .header{
    --logo-height: 50px;
    padding: 15px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact_box{
    margin-left: 38px;
  }

  /* TELボタン */
  .hdr_tel_txt1:before{
    margin-right: 5px;
  }
  .hdr_tel_txt1{
    font-size: 20px;
  }

}
@media (min-width:1440px){
  /* TELボタン */
  .hdr_tel_txt1{
    font-size: 20px;
  }

}
@media (min-width:1720px){
  .header{
    --logo-height: 50px;
    padding: 25px 30px 25px 40px;
  }
  /* ロゴ */
  .hdr_logo img{
    width: auto;
  }
  /* TELボタン */
  .hdr_tel_txt1{
    font-size: 25px;
  }

}
/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv:before{

}
.mv_img{
  width: 100%;
  margin-left: auto;
  position: relative;
  border-radius: 0;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*  padding-top: 46.51%;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}

/* MVテキスト */
.mv_inner{
  position: relative;
}
.mv_txt_box1{
  position: absolute;
  z-index: 2;
  top: 75%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #FFF;
  font-size: 25px;
  font-weight: 700;
}
.mv_txt_box1 p:nth-child(n+2) {
  margin-top: 8px;
}
.mv_txt_box1 .pink{
  background: #f2919e;
  line-height: 1.3;
  border-radius: 10px;
  padding: 5px 10px 8px;
}
.mv_txt_box1 .orange{
  background: #f7ad74;
  line-height: 1.3;
  border-radius: 10px;
  padding: 5px 10px 8px;
}
.mv_txt_box1 .green{
  background: #7ecc96;
  line-height: 1.3;
  border-radius: 10px;
  padding: 5px 10px 8px;
}

.mv_items{
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.mv_items:before{
  content: "";
  display: block;
  width: 78.9%;
  height: 100%;
  background:#e6e6e6;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}
.mv_item{

}
.mv_item .mv_item_img:before{
  padding-top: 95vh;
}

.mv_schroll{
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.mv_schroll:before{
  content: "";
  display: block;
  width: 1px;
  height: 210px;
  background: #000000;
}
.mv_schroll p{
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

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

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

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

  /* MV */
  .mv{
    padding: 25px 0 0px;
  }
  .mv_img{
    width: 89.98%;
    margin-left: auto;
    border-radius: 50px 0 0 50px;
  }
  .mv_img.img_fit:before{
    padding-top: 60.51%;
  }

  /* MVテキスト */
  .mv_txt_box1{
    top: 70%;
    left: 30px;
    font-size: 27px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 7px;
  }
  .mv_txt_box1 .pink{
    background: #f2919e;
    line-height: 1.6;
    border-radius: 10px;
    padding: 0 10px;
  }
  .mv_txt_box1 .orange{
    background: #f7ad74;
    line-height: 1.6;
    border-radius: 10px;
    padding: 0 10px;
  }
  .mv_txt_box1 .green{
    background: #7ecc96;
    line-height: 1.6;
    border-radius: 10px;
    padding: 0 10px;
  }

  .mv_items{
    padding: 80px 0;
  }
  .mv_item{
    width: 52.08%;
  }
  .mv_item .mv_item_img:before{
    padding-top: 500px;
  }

  .mv_text_box1{

  }
  .mv_text_box1_txt{
    font-size: 40px;
  }
  .mv_text_box2{
    font-size: 20px;
  }
  .mv_text_box2 p{

  }

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


  /* MV */
  .mv{
  }
  .mv_img{
    width: 89.98%;
    margin-left: auto;
  }
  .mv_img.img_fit:before{
    padding-top: 56.51%;
  }

  /* MVテキスト */
  .mv_txt_box1 {
    top: 68%;
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 10px;
  }
  .mv_txt_box1 .pink{
    line-height: 1.6;
    padding: 0 20px;
  }
  .mv_txt_box1 .orange{
    line-height: 1.6;
    padding: 0 20px;
  }
  .mv_txt_box1 .green{
    line-height: 1.6;
    padding: 0 20px;
  }

  .mv_items{
    padding: 100px 0;
  }
  .mv_item{

  }
  .mv_item .mv_item_img:before{
    padding-top: 55.5vh;
  }

  .mv_text_box1{

  }
  .mv_text_box1_txt{
    font-size: 50px;
  }
  .mv_text_box2{
    font-size:24px;
  }
  .mv_text_box2 p{

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

  /* MV */
  .mv{
    padding: 20px 0 0px;
  }
  .mv_img{
    width: 89.42%;
    margin-left: auto;
  }
  .mv_img.img_fit:before{
    padding-top: 46.51%;
  }

  /* MVテキスト */
  .mv_txt_box1 {
    top: 75%;
    left: 50px;
    font-size: 35px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 10px;
  }
  .mv_txt_box1 .pink{
    line-height: 1.6;
    padding: 0 0 0 20px;
  }
  .mv_txt_box1 .orange{
    line-height: 1.6;
    padding: 0 0 0 20px;
  }
  .mv_txt_box1 .green{
    line-height: 1.6;
    padding: 0 0 0 20px;
  }

  .mv_items{
    padding: 100px 0;
  }
  .mv_item{
    width: 52.08%;
  }
  .mv_item .mv_item_img:before{

  }

  .mv_text_box1{

  }
  .mv_text_box1_txt{
    font-size: 60px;
  }
  .mv_text_box2{
    font-size: 30px;
  }
  .mv_text_box2 p{

  }

  .mv_item_img:before{
    padding-top: 55.5vh;
  }
}
@media (min-width:1360px){
  .mv_schroll:before{
    height: 140px;
  }

}
@media (min-width:1470px){
  /* MV */
  .mv{
    padding: 60px 0 0px;
  }
  .mv_schroll:before{
    height: 140px;
  }
  /* MVテキスト */
  .mv_txt_box1 {
    top: 66%;
    left: 50px;
    font-size: 40px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 10px;
  }
  .mv_txt_box1 .pink{
    line-height: 1.6;
    padding: 0 0 0 20px;
  }
  .mv_txt_box1 .orange{
    line-height: 1.6;
    padding: 0 0 0 20px;
  }
  .mv_txt_box1 .green{
    line-height: 1.6;
    padding: 0 0 0 20px;
  }
}
@media (min-width:1720px){

  .mv_schroll:before{
    height: 210px;
  }
  /* MVテキスト */
  .mv_txt_box1 {
    top: 63%;
    left: 95px;
    font-size: 48px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    margin-top: 10px;
  }
  .mv_txt_box1 .pink{
    line-height: 1.6;
    padding: 0 0 5px 20px;
  }
  .mv_txt_box1 .orange{
    line-height: 1.6;
    padding: 0 0 5px 20px;
  }
  .mv_txt_box1 .green{
    line-height: 1.6;
    padding: 0 0 5px 20px;
  }
}

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

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


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

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

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 180px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.5);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}

/* MVタイトル */
.pg_header_title_en{
  font-size: 34px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  color: #fff;
}
.pg_header_title_ja{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  color: #fff;
  margin-top: -10px;
}

.pg_header_mv_inr{
  position: relative;
  padding: 30px 0;
}
.pg_header_mv_inr:after{
  content: "";
  display: block;
  width: 100vw;
  ;
  height: 100%;
  background: #e6e6e6;
  position: absolute;
  top: 0;
  left: 13.48%;
  z-index: 0;
}
.pg_header_mv_img{
  width:  100%;
}
.pg_header_mv_txt{
  width: 100%;
  position: absolute;
  top: 56.5%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.pg_header_mv_txt .mv_text_box1_txt{
  padding-right: 20px;
}
.pg_header_mv_txt .mv_text_box2 p{
  padding: 5px 0px 5px 1px;
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 250px;
  }

  .pg_header_title_txt{

  }
  .pg_header_mv_inr{
    padding: 50px 0;
  }
  .pg_header_mv_txt .mv_text_box1_txt{
    padding-right: 40px;
  }
  .pg_header_mv_txt .mv_text_box2 p{
    padding: 2px 0px 2px 1px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 80px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  /* MVタイトル */
  .pg_header_title_en{
    font-size: 60px;
  }
  .pg_header_title_ja{
    font-size: 20px;
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_mv_inr{
    padding: 100px 0 100px;
  }

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


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

.footer{
  margin-top: 80px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: var(--txt-color);
  border-top: 1px solid #181818;
  padding: 10px 0;
  margin-top: 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(--main-color);
  color: #FFF;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: var(--main-color);
  color: #FFF !important;
}
.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(--main-color);
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_img{

}
.ftr_contact_img:before{
  padding-top: 320px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_en{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1 {
  width: 100%;
}
.ftr_contact_box2 {
  width: 100%;
  margin-top: 30px;
}
.ftr_contact_box2_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ftr_contact_box2_item {
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tel{
  color: #fff;
}
.ftr_contact_box2_item_tel a:hover{
  color: var(--main-color);
}
.ftr_contact_box2_item_tel1{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  font-family: var(--font-en);
  position: relative;
}
.ftr_contact_box2_item_tel1:before {
  content: "\f095";
  display: block;
  font-family: "FontAwesome";
  margin-right: 10px;
  font-size: 30px;
}
.ftr_contact_box2_item_tel2{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.ftr_contact_box2_item_tel2 strong{
  font-size: 14px;
  font-weight: 500;
}
.link_1 {
  display: block;
  width: 100%;
  max-width: 380px;
  border: 1px solid #fff;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff !important;
  padding: 4px 0;
}
.link_1:hover{
  background: var(--main-color);
  border: 1px solid var(--main-color);
  color: #fff;
}
.link_1 p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.link_1 p:before{
  content: "\f0e0";
  font-size: 24px;
  font-family: 'FontAwesome';
  color: #fff !important;
  margin-right: 20px;
}

.ftr_1{
  background: #f9f5f0;
  padding-top: 50px;
}
.ftr_1_box{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.ftr_1_box1{
  width:100%;
}
.ftr_logo{

}
.ftr_add{
  color: var(--txt-color);
  margin-top: 35px;
}
.ftr_add_txt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2.25em;
}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_txt1{
  position: relative;
  padding-right: 10px;
}
.ftr_add_txt1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: var(--txt-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_add_txt2{
  padding-left: 25px;
}
.ftr_add_txt2 a:hover{
  color: #808080;
}
.ftr_1_box2{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ftr_links{
  width: 100%;
}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }


  .ftr_contact_box1{
    text-align: center;
  }
  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .ftr_contact_box2_item:last-child{
    padding-bottom: 0;
  }
  .ftr_contact_img:before{
    padding-top: 400px;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_item{
    width: 295px;
    margin-inline: auto;
    justify-content: center;
  }

}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  .ftr_contact_box2 {
    margin-top: 40px;
  }
  .ftr_contact_en{
    color: #fff;
    font-size: 70px;
  }
  .ftr_contact_box2_item {
    position: relative;
  }
  .ftr_contact_box2_item {
    width: 50.48%;
  }
  .ftr_contact_box2_item:first-child{
    width: 46.88%;
  }
  .ftr_contact_box2_item:before {
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 80px;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .link_1 {
    font-size: 15px;
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
  .ftr_contact_box2_item:last-child:after{
    height: 80px;
  }


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

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

  }
  .ftr_add{

  }
  .ftr_add_txt{
    font-size: 16px;
  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 31.72%;
    position: relative;
  }
  /*  .ftr_1_box2:before {
      content: "";
      display: block;
      height: 128px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 75px;
      left: 30%;
      transform: translateY(-50%) translateX(-50%);
    }
    .ftr_1_box2:after {
      content: "";
      display: block;
      height: 128px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 75px;
      left: 60%;
      transform: translateY(-50%) translateX(-50%);
    }*/
  .ftr_links{

  }
  .ftr_link{
    width: 195px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #000000;
    padding-bottom: 0;
    padding-top: 16px;
  }
  .ftr_link:before{
    content: "\f054";
    font-family: 'FontAwesome';
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    font-size: 9px;
    transition: all 0.2s;
    margin-right: 10px;
    padding-left: 3px;
    padding-top: 2px;
  }
  .ftr_link:hover{
    color: var(--main-color);
  }
  .ftr_link p{
    letter-spacing: 0.075em;
  }

  .ftr_copy{
    padding: 10px 0;
    margin-top: 74px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 160px;
  }

  .ftr_contact_box1 {
    width: 100%;
  }
  .ftr_contact_box2 {
    width: 100%;
    margin-top: 50px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 100px;
  }
  .link_1 {
    font-size: 15px;
    display: block;
    width: 100%;
    max-width: 320px;
  }

  .ftr_1{

  }
  .ftr_1_box{

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

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 50.72%;
  }
  /*  .ftr_1_box2:before {
      content: "";
      display: block;
      height: 128px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 75px;
      left: 30%;
      transform: translateY(-50%) translateX(-50%);
    }
    .ftr_1_box2:after {
      content: "";
      display: block;
      height: 128px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 75px;
      left: 60%;
      transform: translateY(-50%) translateX(-50%);
    }*/
  .ftr_links{
    width: 50%;
  }
  .ftr_link{

  }
}
@media (min-width:1200px){
  .ftr_contact_box1 {
    width: 32.23%;
  }
  .ftr_contact_box2{
    width: 67.5%;
    margin-top: 0;
  }

  .ftr_contact_en{
    color: #fff;
    font-size: 60px;
  }
  .ftr_contact_box2_item:before, .ftr_contact_box2_item:last-child:after{
    height: 160px;
  }
  .ftr_contact_box2_item_tel1{
    font-size: 36px;
  }
  .link_1 {
    font-size: 18px;
  }

  .ftr_1{

  }
  .ftr_1_box{
    width: auto;
  }
  .ftr_1_box1{
    width: 29.01%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 61.72%;
  }
  .ftr_1_box2:before {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 75px;
    left: 33%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_1_box2:after {
    content: "";
    display: block;
    height: 128px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 75px;
    left: 68%;
    transform: translateY(-50%) translateX(-50%);
  }
  .ftr_links{
    width: 28.40%;
  }
  .ftr_link{
    padding-top: 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 10px;
  }
}
@media (min-width:1440px){
  .ftr_contact_en{
    color: #fff;
    font-size: 100px;
  }
  .link_1 {
    font-size: 20px;
    display: block;
    width: 100%;
    max-width: 380px;
  }
  .ftr_link{
    width: 240px;
    padding-top: 0;
  }
}

@media (min-width: 1720px) {
  .ftr_contact_box2{
    width: 59.5%;
    margin-top: 0;
  }
  .ftr_1_box2{
    width: 55.59%;
  }
  .ftr_1_box2:before {
    height: 125px;
    top: 54%;
    left: 32.2%;
  }
  .ftr_1_box2:after {
    height: 125px;
    top: 54%;
    left: 68.2%;
  }
}

/*******************************
*　共通パーツ
********************************/
/* テキスト */
.cmn_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.075em;
  text-align: justify;
}

/* テーブル用 */
.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 14px;
  margin: 0 4px;
  border: 1px solid var(--main-color);
  background: #ffffff;
  font-family: var(--font-en);
  font-weight: 700;
  border-radius: 50px;
}
.webgene-pagination li.selected{
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #FFF;
  border-radius: 50px;
}
.webgene-pagination li.next{
  border: 0;
  border-radius: 0;
  position: relative;
}
.webgene-pagination li.next a{
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.webgene-pagination li.next:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.2s all;
  position: absolute;
  right: -63%;
  padding-top: 2px;
  padding-left: 3px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.webgene-pagination li.prev{
  border: 0;
  border-radius: 0;
  position: relative;
}
.webgene-pagination li.prev a{
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.webgene-pagination li.prev:before{
  content: "\f053";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.2s all;
  position: absolute;
  right: 63%;
  padding-top: 2px;
  padding-right: 3px;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* アンカー */
.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: 320px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: none;
  background: var(--main-color);
  border-radius: 50px;
  color: #FFF !important;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.075em;
}
.read_more a p:after{
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 22px;
  font-weight: 500;
  aspect-ratio: 1;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  border-radius: 50%;
  font-size: 11px;
  transition: 0.2s all;
  position: relative;
  right: 3px;
  padding-top: 2px;
  padding-left: 3px;
}
.link_more_a p:after{
  content: "\f08e" !important;
  font-family: 'FontAwesome';
  display: block;
  width: 22px;
  aspect-ratio: 1;
  background: none !important;
  color: #FFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  border-radius: 50%;
  font-size: 18px !important;
  transition: 0.2s all;
  position: relative;
  right: 0;
  padding-top: 4px;
}
.read_more a:hover{
  background: var(--sub-color);
}
.read_more a p:hover{
  color: #FFF;
  background: none;
}
.read_more a p:hover:after{
  margin-right: -5px;
  color: var(--sub-color);
}

/* 見出し */
.tt2{
  margin-bottom: 25px;
}
.tt3{
  margin-bottom: 25px;
}
.tt2.center{
  text-align: center;
}
.tt2_en{
  font-size: 45px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFF;
  opacity: 0.36;
  text-align: center;
}
.tt3_en{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #f2efec;
  text-align: center;
}
.tt2_ja{
  font-size: 22px;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.875;
  letter-spacing: 0.075em;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


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

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

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

}

.sec_sub_tt{
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
.sec_sub_tt p{
  letter-spacing: 0.025em;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc.msg{
  font-size: 17px;
  font-weight: 900;
  line-height: 1.71em;
}
.content_desc.msg p{
  letter-spacing: 0.075em;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .cmn_txt{
    line-height: 1.875;
  }

  .read_more{
    width: 100%;
  }

  /* スマホ用テーブル */
  .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;
    margin-top: 45px;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 320px;
    font-size: 20px;
    padding: 20px 22px 20px 40px;
    margin: 0;
  }
  /*  .read_more a:after{
      content: "";
  
    }*/
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt3{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 100px;
  }
  .tt3_en{
    font-size: 80px;
  }
  .tt2_ja{
    font-size: 24px;
    margin-top: 15px;
  }

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

  .sec_sub_tt{
    font-size: 30px;
  }
  .content_desc{

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

  /* ページネーション */
  .webgene-pagination{
    margin-top: 60px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }
  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
    margin-top: 75px;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 320px;
    font-size: 20px;
    padding: 18px 22px 18px 40px;
    margin: 0;
  }
  /*  .read_more a:after{
      content: "";
  
    }*/
  .read_more a:hover:after{
    margin-right: -5px;
  }
  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt3{
    margin-bottom: 50px;
  }
  /*    .tt2_en{
        font-size: 46px;
      }*/
  .tt2_ja{
    font-size: 26px;
  }

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

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

  .content_desc.msg{
    font-size: 21px;
  }

}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 10px;
  }
  .tt3{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 150px;
  }
  .tt3_en{
    font-size: 150px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 36px;
    line-height: 2;
  }

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

  /* 見出し */
  .tt3{
    margin-bottom: 10px;
  }
  .tt2_en{
    font-size: 200px;
  }
  .tt3_en{
    font-size: 150px;
  }
}
.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{
  position: relative;
}
.pg_home .section.sec2{
  position: relative;
}
.pg_home .section.sec3{
  position: relative;
  padding-bottom: 80px;
}
.pg_home .section.sec4{
  position: relative;
  background: var(--bk2-color);
  overflow: hidden;
  z-index: 0;
}
.pg_home .section.sec5{
  position: relative;
}


@media (max-width:374px){

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

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

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

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-top: 110px;
    padding-bottom: 190px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 80px;
  }
}
@media (min-width:1024px){
  .pg_home{

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 80px;
  }
  .pg_home .section.sec3{
    padding-top: 230px;
    padding-bottom: 140px;
  }
  .pg_home .section.sec4{
    padding-bottom: 115px;
  }
  .pg_home .section.sec5{
    padding-top: 130px;
  }

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


}
@media (min-width:1470px){
  .pg_home .section.sec3{
    padding-top: 230px;
    padding-bottom: 210px;
  }

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

  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 80px;
  }
  .pg_home .section.sec3{
    padding-top: 230px;
    padding-bottom: 280px;
  }
  .pg_home .section.sec4{
    padding-bottom: 115px;
  }
  .pg_home .section.sec5{
    padding-top: 130px;
  }
}


/* 共通パーツ */
.home_contents_head{

}
.home_contents_head.center{
  text-align: center;
}
.home_contents_head_en{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.home_contents_head_ja{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: -5px;
}
.home_contents_sub_tt{
  font-size: 25px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.075em;
  margin-top: 8px;
}
.home_contents_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.075;
  padding-top: 15px;
}

/* 背景 */
.home_about_box1:before{
  content: "";
  display: block;
  width: 100vw;
  height: 70%;
  background: var(--bk1-color);
  position: absolute;
  /* border-radius: 0 100px 100px 0; */
  top: 20%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.pg_home .section.sec2:before{
  content: "";
  display: block;
  width: 84%;
  height: 55%;
  background: var(--bk1-color);
  position: absolute;
  /* border-radius: 100px 0 0 100px; */
  top: 40%;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 100vw;
  height: 80%;
  background: var(--bk1-color);
  position: absolute;
  /* border-radius: 0 100px 100px 0; */
  top: 15%;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/* 装飾 */
.home_mv_bk1{
  position: absolute;
  width: 50%;
  top: 0%;
  left: -10%;
  z-index: -2;
}
.home_about_bk_box{
  position: absolute;
  width: 39.86%;
  top: -15%;
  right: 0%;
  z-index: revert-layer;
}
.home_about_bk1{
  width: 130%;
}
.home_about_bk2{
  position: absolute;
  width: 70%;
  top: -10%;
  right: -10%;
  z-index: 2;
}
.home_about_bk3{
  position: absolute;
  width: 50%;
  top: 10%;
  right: -10%;
}
.home_about_bk4{
  position: absolute;
  width: 40%;
  top: 50%;
  left: 10%;
  z-index: 2;
}
.home_service_bk1{
  position: absolute;
  width: 65%;
  top: 0%;
  left: -5%;
  z-index: -2;
}
.home_service_bk2{
  position: absolute;
  width: 50%;
  top: 27%;
  right: -10%;
  z-index: -2;
}
.home_flow_bk1{
  position: absolute;
  width: 60%;
  top: -5%;
  right: -15%;
  z-index: -2;
}
.home_insta_bk1{
  position: absolute;
  width: 60%;
  right: -15%;
  bottom: -5%;
  z-index: -1;
}
.home_news_bk1{
  position: absolute;
  width: 50%;
  top: -5%;
  left: -10%;
  z-index: -3;
}
.home_news_bk2{
  position: absolute;
  width: 60%;
  /* top: 0; */
  left: -15%;
  bottom: -10%;
  z-index: -3;
}

/* about */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 140px;
}
.home_about_box1{
  *width: 100%;
  aspect-ratio: 874 / 875;
  position: relative;
  margin-left: var(--margin-for-device-side-w);
  z-index: 1;
}
.home_about_box2{
  width: 100%;
  margin-top: 30px;
  z-index: 2;
}
.home_about_box1_1_img{
  width: 85.54%;
  /*  margin-left: var(--margin-for-device-side-w);*/
}
.home_about_box1_2_img{
  width: 54%;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
}
.home_about_box1_1img.left:before{
  padding-top: 50px;
}
.home_about_box1_2img.right:before{
  padding-top: 50px;
}

/*画像マスク*/
.mask_img img {
  width: 100%;
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  position: relative;
}
.home_about_box1_1_img img {
  -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask1.png);
  aspect-ratio: 704 / 588;
}

.home_about_box1_2_img img {
  -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask2.png);
  aspect-ratio: 478 / 468;
}

/* SERVICE */
.home_service{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_service_box1{
  width: 100%;
}
.home_service_box2{
  width: 100%;
  margin-top: 35px;
}
.home_service_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-inline: -10px;
}
.home_service_item{
  width: 100%;
  padding-inline: 10px;
}
.home_service_item:hover{
  color: inherit !important;
}
.home_service_item + .home_service_item{
  margin-top: 25px;
}
.home_service_item_inner{
  background: #FFF;
  border-radius: 30px;
  box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);
}
.home_service_item_img{
  border-radius: 30px 30px 0 0;
}
.home_service_item_img:before{
  padding-top: 65.52%;
}
.home_service_item_desc{
  padding: 15px 15px 20px;
}
.home_service_item_tt{
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.075em;
  position: relative;
}
.home_service_item_tt:after {
  content: "\f054";
  font-family: 'FontAwesome';
  display: block;
  width: 30px;
  font-weight: 500;
  aspect-ratio: 1;
  background: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 50%;
  font-size: 13px;
  transition: 0.2s all;
  position: absolute;
  right: -10px;
  padding-top: 2px;
  padding-left: 3px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home_service_item:hover .home_service_item_tt:after{
  right: -15px;
  transition: 0.2s all;
}
.home_service_item_tt:hover:after {
  margin-right: 0;
}
.home_service_item_sub{
  font-size: 18px;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 10px;
}
.home_service_item_sub:before{
  content: "";
  display: flex;
  width: auto;
  height: auto;
  aspect-ratio: 191 / 2;
  background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom.png);
  margin-bottom: 10px;
}
.home_service_item_tt_desc_txt{
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.075em;
}
.home_service_item_tt_desc_txt:before{
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--main-color);
  border-radius: 50%;
  margin-right: 10px;
}

/* FLOW */
.home_flow{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_flow_box1{
  width: 100%;
}
.home_flow_box2{
  width: 100%;
}
.home_flow_box1_img{
  border-radius: 30px;
}
.home_flow_box1_img:before{
  padding-top: 70%;
}

/* Instagram */
.insta_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/*.insta_box_inner{
  background: var(--bk2-color);
  padding: 50px;
}*/

/* Instagramダミー*/
.insta_boxs_dummy{
  display: flex;
  flex-wrap: wrap;
  /*  justify-content: center;*/
  margin-inline: 5px;
}
.insta_box_dummy{
  width: 50%;
  padding-inline: 5px;
}
.insta_box_dummy:nth-child(n+3){
  margin-top: 10px;
}
.insta_box_dummy_img img{
  border-radius: 20px;
}
.home_insta .read_more{
  margin-top: 35px;
}

/* NEWS */
.home_contents_head{

}
.home_contents_head_en{

}
.home_contents_head_ja{

}
.news_box{
  margin-top: 30px;
}
.news_box .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -10px;
}
.news_box .webgene-item {
  width: 50%;
  padding-inline: 5px;
  border-bottom: 0;
  border-top: 0;
  padding: 0 10px;
}
.news_box .webgene-item .inner{
  display: block;
  height: 100%;
  position: relative;
  z-index: 1;
  color: #000;
  background: #FFF;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.news_box .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.news_box .webgene-item .box1{

}
.news_box .webgene-item .box2{
  padding: 20px;
}
.news_box .webgene-item .img{
  border-radius: 30px 30px 0 0;
}

.news_box .webgene-item .img:before{
  padding-top: 72.22%;
}
.news_box .webgene-item .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.news_box .webgene-item .box2 .date{
  font-size: 15px;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.075;
  margin-right: 15px;
}
.news_box .webgene-item .box2 .category{
  font-size: 14px;
  font-weight: 700;
  background: var(--sub-color);
  color: #fff;
  border-radius: 5px;
  padding: 0 15px;
}
.news_box .webgene-item .box2 .txt_ellipsis_line2{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.075em;
}
.news_box .webgene-item .box2 .txt_ellipsis_line2:hover{
  color: var(--main-color);
  transition: 0.2s all;
}
.read_more.center{
  margin-top: 30px;
}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* 共通パーツ */
  .home_contents_head{

  }
  .home_contents_head.center{
    text-align: center;
  }
  .home_contents_head_en{
    font-size: 50px;
  }
  .home_contents_head_ja{
    font-size: 20px;
    margin-top: -5px;
  }
  .home_contents_sub_tt{
    font-size: 30px;
    margin-top: 15px;
  }
  .home_contents_txt{
    font-size: 16px;
    padding-top: 15px;
  }

  /* 背景 */
  .home_about_box1:before{
    width: 100vw;
    height: 70%;
    top: 20%;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .pg_home .section.sec2:before{
    width: 85%;
    height: 55%;
    top: 49%;
    border-radius: 100px 0 0 100px;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .pg_home .section.sec3:before{
    width: 100vw;
    height: 70%;
    top: 20%;
    left: 0;
    bottom: 0;
    z-index: -1;
  }

  /* 装飾 */
  .home_mv_bk1{
    position: absolute;
    width: 40%;
    top: -5%;
    left: -5%;
    z-index: -2;
  }
  .home_about_bk_box{
    position: absolute;
    width: 24.86%;
    top: -15%;
    right: 0%;
    z-index: revert-layer;
  }
  .home_about_bk1{
    width: 130%;
  }
  .home_about_bk2{
    position: absolute;
    width: 70%;
    top: -10%;
    right: -10%;
    z-index: 2;
  }
  .home_about_bk3{
    position: absolute;
    width: 45%;
    top: 18%;
    right: -10%;
  }
  .home_about_bk4{
    position: absolute;
    width: 35%;
    top: 50%;
    left: 15%;
    z-index: 2;
  }
  .home_service_bk1{
    position: absolute;
    width: 40%;
    top: 0%;
    left: -5%;
    z-index: -2;
  }
  .home_service_bk2{
    position: absolute;
    width: 50%;
    top: 27%;
    right: -10%;
    z-index: -2;
  }
  .home_flow_bk1{
    position: absolute;
    width: 40%;
    top: -5%;
    right: -10%;
    z-index: -2;
  }
  .home_insta_bk1{
    position: absolute;
    width: 50%;
    right: -15%;
    bottom: -5%;
    z-index: -1;
  }
  .home_news_bk1{
    position: absolute;
    width: 40%;
    top: -5%;
    left: -10%;
    z-index: -3;
  }
  .home_news_bk2{
    position: absolute;
    width: 50%;
    /* top: 0; */
    left: -15%;
    bottom: -25%;
    z-index: -3;
  }

  /* about */
  .home_about{
    margin-top: 160px;
  }
  .home_about_box1{
    width: 100%;
    aspect-ratio: 874 / 875;
    margin-left: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .home_about_box2{
    width: 100%;
    margin-top: 30px;
    z-index: 2;
  }
  .home_about_box1_1_img{
    width: 80.54%;

  }
  .home_about_box1_2_img{
    width: 54%;
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
  }
  .home_about_box1_1img.left:before{
    padding-top: 50px;
  }
  .home_about_box1_2img.right:before{
    padding-top: 50px;
  }
  /*画像マスク*/
  .mask_img img {
    width: 100%;
    max-width: none;
    position: absolute;
    z-index: 1;
    top: 0;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    position: relative;
  }
  .home_about_box1_1_img img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask1.png);
    aspect-ratio: 704 / 588;
  }

  .home_about_box1_2_img img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask2.png);
    aspect-ratio: 478 / 468;
  }

  /* SERVICE */
  .home_service{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_service_box1{
    width: 100%;
  }
  .home_service_box2{
    width: 100%;
    margin-top: 35px;
  }
  .home_service_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-inline: -10px;
  }
  .home_service_item{
    width: 50%;
    padding-inline: 10px;
  }
  .home_service_item + .home_service_item{
    margin-top: 0;
  }
  .home_service_item_inner{
    background: #FFF;
    border-radius: 30px;
    box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);
  }
  .home_service_item_img{
    border-radius: 30px 30px 0 0;
  }
  .home_service_item_img:before{
    padding-top: 65.52%;
  }
  .home_service_item_desc{
    padding: 15px 15px 20px;
  }
  .home_service_item_tt{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.075em;
    position: relative;
  }
  .home_service_item_tt:after {
    /*    width: 30px;
        font-size: 30px;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);*/
  }
  .home_service_item_sub{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .home_service_item_sub:before{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 191 / 2;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom.png);
    margin-bottom: 10px;
  }
  .home_service_item_tt_desc_txt{
    font-size: 16px;
  }
  .home_service_item_tt_desc_txt:before{
    width: 8px;
    height: 8px;
    margin-right: 10px;
  }

  /* FLOW */
  .home_flow{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_flow_box1{
    width: 100%;
  }
  .home_flow_box2{
    width: 100%;
    margin-top: 30px;
  }
  .home_flow_box1_img{
    border-radius: 30px;
  }
  .home_flow_box1_img:before{
    padding-top: 70%;
  }

  /* Instagram */
  .insta_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  /*  .insta_box_inner{
      background: var(--bk2-color);
      padding: 50px;
    }*/

  /* Instagramダミー*/
  .insta_boxs_dummy{
    display: flex;
    flex-wrap: wrap;
    /*  justify-content: center;*/
    /*margin-inline: 5px;*/
  }
  .insta_box_dummy{
    width: 20%;
    padding-inline: 5px;
  }
  .insta_box_dummy:nth-child(n+3){
    margin-top: 0;
  }
  /*  .insta_box_dummy:nth-child(n+5){
      margin-top: 10px;
    }*/
  .insta_box_dummy_img img{
    border-radius: 20px;
  }
  .home_insta .read_more{
    margin-top: 35px;
  }

  /* NEWS */
  .home_contents_head{

  }
  .home_contents_head_en{

  }
  .home_contents_head_ja{

  }
  .news_box{
    margin-top: 30px;
  }
  .news_box .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -10px;
  }
  .news_box .webgene-item {
    width: 50%;
    padding-inline: 5px;
    border-bottom: 0;
    border-top: 0;
    padding: 0 10px;
  }
  .news_box .webgene-item:nth-child(n+3){
    margin-top: 20px;
  }
  .news_box .webgene-item .box1{

  }
  .news_box .webgene-item .box2{
    padding: 10px;
  }
  .news_box .webgene-item .img{
    border-radius: 30px 30px 0 0;
  }

  .news_box .webgene-item .img:before{
    padding-top: 72.22%;
  }
  .news_box .webgene-item .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
  }
  .news_box .webgene-item .box2 .date{
    font-size: 15px;
    font-family: var(--font-en);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.075;
    margin-right: 10px;
  }
  .news_box .webgene-item .box2 .category{
    font-size: 14px;
    font-weight: 700;
    background: var(--sub-color);
    color: #fff;
    border-radius: 5px;
    padding: 0 15px;
  }
  .news_box .webgene-item .box2 .txt_ellipsis_line2{
    font-size: 16px;
  }
  .read_more.center{
    margin-top: 30px;
  }
}
@media (min-width:1024px){
  .home_about_box1_2_img{
    width: 54%;
    position: absolute;
    z-index: 2;
    bottom: 20%;
    right: 0;
  }
  /* 背景 */
  .pg_home .section.sec3:before {
    width: 90%;
    height: 70%;
    border-radius: 0 100px 100px 0;
    top: 20%;
    left: 0;
    bottom: 0;
    z-index: -1;
  }

  .home_about_box1 {
    width: 55%;
    aspect-ratio: 874 / 875;
    margin-left: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .home_about_box2 {
    width: 45%;
    margin-top: 30px;
    z-index: 2;
  }

  .home_flow_box1 {
    width: 54%;
  }
  .home_flow_box2 {
    width: 40%;
    margin-top: 0;
  }
  .news_box .webgene-item {
    width: 25%;
    padding-inline: 5px;
    border-bottom: 0;
    border-top: 0;
    padding: 0 10px;
  }
  .news_box .webgene-item:nth-child(n+3) {
    margin-top: 0;
  }
  .read_more.center{
    margin-top: 50px;
  }

  /* 装飾 */
  .home_mv_bk1{
    position: absolute;
    width: 30%;
    top: -5%;
    left: -10%;
    z-index: -2;
  }
  .home_about_bk_box{
    position: absolute;
    width: 24.86%;
    top: -30%;
    right: 0%;
  }
  .home_about_bk1{
    width: 130%;
  }
  .home_about_bk2{
    position: absolute;
    width: 70%;
    top: -10%;
    right: -10%;
    z-index: 2;
  }
  .home_about_bk3{
    position: absolute;
    width: 45%;
    top: 18%;
    right: -10%;
  }
  .home_about_bk4{
    position: absolute;
    width: 35%;
    top: 40%;
    left: 15%;
    z-index: 2;
  }
  .home_service_bk1{
    position: absolute;
    width: 40%;
    top: 0%;
    left: -5%;
    z-index: -2;
  }
  .home_service_bk2{
    position: absolute;
    width: 50%;
    top: 27%;
    right: -10%;
    z-index: -2;
  }
  .home_flow_bk1{
    position: absolute;
    width: 40%;
    top: -5%;
    right: -10%;
    z-index: -2;
  }
  .home_insta_bk1{
    position: absolute;
    width: 40%;
    right: -15%;
    bottom: -5%;
    z-index: -1;
  }
  .home_news_bk1{
    position: absolute;
    width: 40%;
    top: -20%;
    left: -10%;
    z-index: -3;
  }
  .home_news_bk2{
    position: absolute;
    width: 50%;
    top: 85%;
    left: -15%;
    /*    bottom: -55%;*/
    z-index: -3;
  }

}
@media (min-width:1200px){
  /* 共通パーツ */
  .home_contents_head{

  }
  .home_contents_head.center{
    text-align: center;
  }
  .home_contents_head_en{
    font-size: 60px;
  }
  .home_contents_head_ja{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.075em;
    margin-top: -5px;
  }
  .home_contents_sub_tt{
    font-size: 33px;
    margin-top: 35px;
  }
  .home_contents_txt{
    font-size: 16px;
    font-weight: 500;
    line-height: 2.25;
    letter-spacing: 0.075;
    padding-top: 48px;
  }

  /* about */
  .home_about{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 160px;
  }
  .home_about_box1{
    /*width: 100%;*/
    width: 51%;
    aspect-ratio: 874 / 875;
    position: relative;
    margin-left: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .home_about_box2{
    /*width: 100%;*/
    width: 48.55%;
    margin-top: 30px;
    z-index: 2;
  }
  .home_about_box1:before{
    content: "";
    width: 137%;
    position: absolute;
    background: var(--bk1-color);
    border-radius: 0 100px 100px 0;
    z-index: -1;
    top: 0;
    bottom: 0;
  }
  .home_about_box1_1_img{
    width: 80.54%;
  }
  home_about_box1_1_img img{
    width: 80.54%;
    margin-left: var(--margin-for-device-side-w);
  }
  .home_about_box1_2_img{
    width: 54%;
    position: absolute;
    z-index: 2;
    bottom: 20%;
    right: 0;
  }
  .home_about_box1_1img.left:before{
    padding-top: 50px;
  }
  .home_about_box1_2img.right:before{
    padding-top: 50px;
  }
  /*画像マスク*/
  .mask_img img {
    width: 100%;
    max-width: none;
    position: absolute;
    z-index: 1;
    top: 0;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    position: relative;
  }
  .home_about_box1_1_img img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask1.png);
    aspect-ratio: 704 / 588;
  }

  .home_about_box1_2_img img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask2.png);
    aspect-ratio: 478 / 468;
  }

  /* SERVICE */
  .home_service{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_service_box1{
    /*width: 100%;*/
    width: 35.53%;
  }
  .home_service_box2{
    /*width: 100%;*/
    width: 61.84%;
    margin-top: 25px
  }
  .home_service_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-inline: -10px;
  }
  .home_service_item{
    /*width: 100%;*/
    width: 50%;
    padding-inline: 10px;
  }
  .home_service_item_inner{
    background: #FFF;
    border-radius: 30px;
    box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);
  }
  .home_service_item_img{
    border-radius: 30px 30px 0 0;
  }
  .home_service_item_img:before{
    padding-top: 56.52%;
  }
  .home_service_item_desc{
    padding: 15px 20px 25px;
  }
  .home_service_item_tt{
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.075em;
    position: relative;
  }
  .home_service_item_tt:after {
    /*    width: 30px;
        font-size: 35px;
        top: 50%;
        right: 0;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);*/
  }
  .home_service_item_sub{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .home_service_item_sub:before{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 191 / 2;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom.png);
    margin-bottom: 15px;
  }
  .home_service_item_tt_desc_txt{
    font-size: 16px;
  }
  .home_service_item_tt_desc_txt:before{
    width: 8px;
    height: 8px;
    margin-right: 10px;
  }

  /* FLOW */
  .home_flow{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_flow_box1{
    /*width: 100%;*/
    width: 59.21%;
  }
  .home_flow_box2{
    /*width: 100%;*/
    width: 32.69%;
  }
  .home_flow_box1_img{
    border-radius: 30px;
  }
  .home_flow_box1_img:before{
    padding-top: 50%;
  }

  /* Instagram */
  .insta_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  /*  .insta_box_inner{
      background: var(--bk2-color);
    }*/

  /*  Instagramダミー*/
  .insta_boxs_dummy{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-inline: -7.5px;
  }
  .insta_box_dummy{
    width: 16.77%;
    padding-inline: 7.5px;
  }
  .insta_box_dummy:nth-child(n+5) {
    margin-top: 0;
  }
  .insta_box_dummy_img img{
    border-radius: 20px;
  }
  .home_insta .read_more{
    margin-top: 65px;
  }

  /* NEWS */
  .home_contents_head{

  }
  .home_contents_head_en{

  }
  .home_contents_head_ja{

  }
  .news_box{
    margin-top: 50px;
  }
  .news_box .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -13.5px;
  }
  .news_box .webgene-item {
    /*  width: 50%;*/
    width: 25%;
    padding-inline: 5px;
    border-bottom: 0;
    border-top: 0;
    padding: 0 13.5px;
  }
  .news_box .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_box .webgene-item .box1{

  }
  .news_box .webgene-item .box2{
    border-radius: 0 0 30px 30px;
    padding: 25px;
  }
  .news_box .webgene-item .img{
    border-radius: 30px 30px 0 0;
  }

  .news_box .webgene-item .img:before{
    padding-top: 72.22%;
  }


  .news_box .webgene-item .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
  }
  .news_box .webgene-item .box2 .date{
    font-size: 18px;
    font-family: var(--font-en);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.075;
    margin-right: 10px;
  }
  .news_box .webgene-item .box2 .category{
    font-size: 14px;
    font-weight: 700;
    background: var(--sub-color);
    color: #fff;
    border-radius: 5px;
    padding: 0 15px;
  }
  .news_box .webgene-item .box2 .txt_ellipsis_line2{
    font-size: 18px;
  }
  .read_more.center{
    margin-top: 60px;
  }

}
@media (min-width: 1366px) {
  .home_about_box1_2_img {
    width: 54%;
    position: absolute;
    z-index: 2;
    bottom: 10%;
    right: 0;
  }
}
@media (min-width:1470px){
  .home_about_box1_2_img {
    width: 54%;
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
  }

  /* 装飾 */
  .home_about_bk4 {
    position: absolute;
    width: 35%;
    top: 50%;
    left: 15%;
    z-index: 2;
  }

  /* Instagramダミー */
  .insta_boxs_dummy{
    display: flex;
    flex-wrap: wrap;
    /*    justify-content: space-between;*/
    margin-inline: -7.5px;
  }
  .insta_box_dummy{
    width: auto;
    padding-inline: 7.5px;
  }
  .insta_box_dummy:nth-child(n+5) {
    margin-top: 0;
  }
  .insta_box_dummy_img img{
    border-radius: 20px;
  }
  .home_insta .read_more{
    margin-top: 65px;
  }
}
@media (min-width:1720px){
  /* 共通パーツ */
  .home_contents_head{

  }
  .home_contents_head.center{
    text-align: center;
  }
  .home_contents_head_en{
    font-size: 60px;
  }
  .home_contents_head_ja{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.075em;
    margin-top: -5px;
  }
  .home_contents_sub_tt{
    font-size: 36px;
    font-weight: 500;
    line-height: 2;
    margin-top: 48px;
  }
  .home_contents_txt{
    font-size: 16px;
    font-weight: 500;
    line-height: 2.25;
    letter-spacing: 0.075;
    padding-top: 48px;
  }

  /* 背景 */
  .home_about_box1:before{
    content: "";
    display: block;
    width: 137%;
    height: 68%;
    background: var(--bk1-color);
    position: absolute;
    border-radius: 0 100px 100px 0;
    top: 22%;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .pg_home .section.sec2:before{
    content: "";
    display: block;
    width: 84%;
    height: 75%;
    background: var(--bk1-color);
    position: absolute;
    border-radius: 100px 0 0 100px;
    top: 35%;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .pg_home .section.sec3:before{
    content: "";
    display: block;
    width: 83%;
    height: 47%;
    background: var(--bk1-color);
    position: absolute;
    border-radius: 0 100px 100px 0;
    top: 36%;
    left: 0;
    bottom: 0;
    z-index: -1;
  }

  /* 装飾 */
  .home_mv_bk1{
    position: absolute;
    width: 687px;
    top: -10%;
    left: -10%;
  }
  .home_about_bk_box{
    position: absolute;
    width: 39.86%;
    top: -21%;
    right: -8%;
  }
  .home_about_bk1{
    width: 759px;
    z-index: -1;
  }
  .home_about_bk2{
    position: absolute;
    width: 531px;
    top: -38%;
    right: 3%;
    z-index: 2;
  }
  .home_about_bk3{
    position: absolute;
    width: 380px;
    top: 14%;
    right: -7%;
  }
  .home_about_bk4{
    position: absolute;
    width: 298px;
    top: 55%;
    left: 18%;
    z-index: 2;
  }
  .home_service_bk1{
    position: absolute;
    width: 759px;
    top: 5%;
    left: -9%;
    z-index: -2;
  }
  .home_service_bk2{
    position: absolute;
    width: 478px;
    top: -10%;
    right: -4%;
    z-index: -2;
  }
  .home_flow_bk1{
    position: absolute;
    width: 814px;
    top: -12%;
    right: -10%;
    z-index: -2;
  }
  .home_insta_bk1{
    position: absolute;
    width: 769px;
    right: -5%;
    bottom: -20%;
    z-index: -1;
  }
  .home_news_bk1{
    position: absolute;
    width: 484px;
    top: -17%;
    left: -4%;
    z-index: -3;
  }
  .home_news_bk2{
    position: absolute;
    width: 1046px;
    top: 43%;
    left: -15%;
    bottom: 0;
    z-index: -2;
  }

  /* about */
  .home_about{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 160px;
  }
  .home_about_box1{
    /*width: 100%;*/
    width: 57.5%;
    aspect-ratio: 874 / 875;
    position: relative;
    margin-left: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .home_about_box2{
    /*width: 100%;*/
    width: 49.55%;
    margin-top: 30px;
    z-index: 2;
  }
  .home_about_box1_1_img{
    width: 80.54%;
  }
  home_about_box1_1_img img{
    width: 80.54%;
    margin-left: var(--margin-for-device-side-w);
  }
  .home_about_box1_2_img{
    width: 54%;
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: 0;
  }
  .home_about_box1_1img.left:before{
    padding-top: 50px;
  }
  .home_about_box1_2img.right:before{
    padding-top: 50px;
  }
  /*画像マスク*/
  .mask_img img {
    width: 100%;
    max-width: none;
    position: absolute;
    z-index: 1;
    top: 0;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    position: relative;
  }
  .home_about_box1_1_img img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask1.png);
    aspect-ratio: 704 / 588;
  }

  .home_about_box1_2_img img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask2.png);
    aspect-ratio: 478 / 468;
  }

  /* SERVICE */
  .home_service{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_service_box1{
    /*width: 100%;*/
    width: 35.53%;
  }
  .home_service_box2{
    /*width: 100%;*/
    width: 61.84%;
    margin-top: 32px;
  }

  .home_service_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-inline: -10px;
  }
  .home_service_item{
    /*width: 100%;*/
    width: 50%;
    padding-inline: 10px;
  }
  .home_service_item_inner{
    background: #FFF;
    border-radius: 30px;
    box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);
  }
  .home_service_item_img{
    border-radius: 30px 30px 0 0;
  }
  .home_service_item_img:before{
    padding-top: 56.52%;
  }
  .home_service_item_desc{
    padding: 20px 40px 30px;
  }
  .home_service_item_tt{
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.075em;
    position: relative;
  }
  .home_service_item_sub{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .home_service_item_sub:before{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 191 / 2;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom.png);
    margin-bottom: 15px;
  }
  .home_service_item_tt_desc_txt{
    font-size: 16px;
  }
  .home_service_item_tt_desc_txt:before{
    width: 8px;
    height: 8px;
    margin-right: 10px;
  }

  /* FLOW */
  .home_flow{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_flow_box1{
    /*width: 100%;*/
    width: 59.21%;
  }
  .home_flow_box2{
    /*width: 100%;*/
    width: 34.34%;
  }
  .home_flow_box1_img{
    border-radius: 30px;
  }
  .home_flow_box1_img:before{
    padding-top: 50%;
  }

  /* Instagram */
  .insta_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  /*  .insta_box_inner{
      background: var(--bk2-color);
    }*/
  /* NEWS */
  .home_contents_head{

  }
  .home_contents_head_en{

  }
  .home_contents_head_ja{

  }
  .news_box{
    margin-top: 50px;
  }
  .news_box .webgene-blog {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -13.5px;
  }
  .news_box .webgene-item {
    /*  width: 50%;*/
    width: 25%;
    padding-inline: 5px;
    border-bottom: 0;
    border-top: 0;
    padding: 0 13.5px;
  }
  .news_box .webgene-item .box1{

  }
  .news_box .webgene-item .box2{
    padding: 30px;
  }
  .news_box .webgene-item .img{
    border-radius: 30px 30px 0 0;
  }

  .news_box .webgene-item .img:before{
    padding-top: 72.22%;
  }


  .news_box .webgene-item .meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
  }
  .news_box .webgene-item .box2 .date{
    font-size: 18px;
    font-family: var(--font-en);
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0.075;
    margin-right: 15px;
  }
  .news_box .webgene-item .box2 .category{
    font-size: 14px;
    font-weight: 700;
    background: var(--sub-color);
    color: #fff;
    border-radius: 5px;
    padding: 0 15px;
  }
  .news_box .webgene-item .box2 .txt_ellipsis_line2{
    font-size: 18px;
  }
  .read_more.center{
    margin-top: 60px;
  }
}


/*******************************
*　私たちについて
********************************/
.pg_about{

}
.pg_about .section.sec1{
  padding-bottom: 250px;
}
.pg_about .section.sec2{
  background: var(--bk2-color);
  position: relative;
  padding-bottom: 120px;
  overflow: hidden;
  z-index: 0;
}
.pg_about .section.sec3{
  margin-top: 70px;
  /*  padding-bottom: 200px;*/
  position: relative;
  padding-top: 0;
}

.about_ftr_inner{
  width: 100%;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{
    padding-bottom: 310px;
  }
  .pg_about .section.sec2{
    padding-top: 80px;
    padding-bottom: 150px;
  }
  .pg_about .section.sec3{
    margin-top: 100px;
  }

  .about_ftr_inner{
    width: 100%;
    position: absolute;
    top: 40%;
  }
}
@media (min-width:1024px){
  pg_about{

  }
  .pg_about .section.sec1{
    padding-bottom: 170px;
  }
  .pg_about .section.sec2{
    padding-top: 50px;
  }
  .pg_about .section.sec3{
    margin-top: 120px;
    padding-bottom: 0;
  }

  .about_ftr_inner{
    width: 100%;
    position: absolute;
    top: 52%;
  }
}
@media (min-width:1200px){


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

  }
  .pg_about .section.sec1{
    padding-bottom: 170px;
  }
  .pg_about .section.sec2{
    padding-bottom: 170px;
  }
  .pg_about .section.sec3{
    margin-top: 160px;
  }

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

}

/* 装飾 */
.about_bk1{
  position: absolute;
  width: 59.15%;
  top: 0;
  right: 0;
  z-index: -2;
}
.about_bk2{
  position: absolute;
  width: 50.8%;
  top: 26%;
  left: -10%;
  bottom: 0;
  z-index: 1;
}
.about_bk3{
  position: absolute;
  width: 44.98%;
  top: -5%;
  left: -20%;
  bottom: auto;
  z-index: -2;
}
.about_bk4{
  position: absolute;
  width: 54.07%;
  top: -5%;
  right: -20%;
  z-index: -2;
}

.about_bk5{
  position: absolute;
  width: 50.04%;
  top: -5%;
  left: -15%;
  z-index: -2;
}

.about_bk6{
  position: absolute;
  width: 54.79%;
  top: auto;
  right: -15%;
  left: auto;
  bottom: -15%;
  z-index: -2;
}
.about_bk7{
  position: absolute;
  width: 60.01%;
  top: 55%;
  right: 0;
  left: auto;
  z-index: -2;
}

/* メイン */
.about_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.about_top:after {
  content: "";
  background: var(--bk1-color);
  border-radius: 0;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 120px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.about_top_box1{
  width: 70%;
}
.about_top_box2{
  width: 100%;
  margin-top: 25px;
}
.about_top_box3{
  width: 75%;
}
.about_top_imgs1{
  aspect-ratio: 554 / 717;
  position: relative;
  margin-left: var(--margin-for-device-side-w);
  z-index: 1;
}
.about_top_imgs1_1{
  width: 89.16%;
}
.about_top_imgs1_2{
  width: 62.27%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.about_top_imgs1_3{
  width: 65%;
  position: absolute;
  top: auto;
  right: 0;
  bottom: -31%;
  margin-right: var(--margin-for-device-side-w);
  z-index: 2;
}

/*画像マスク*/
.about_top_imgs1_1 img {
  -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask3.png);
  aspect-ratio: 494 / 497;
}
.about_top_imgs1_2 img {
  -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask4.png);
  aspect-ratio: 345 / 338;
}
.about_top_imgs1_3 img {
  -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask5.png);
  aspect-ratio: 579 / 484;
}

.home_contents_sub_tt.center{
  text-align: center;
}
.about_top_box2.tt2{
  margin-bottom: 45px;
}
.about_contents_txt .cmn_txt{

}

/* PHILOSOPHY */
.cmn_tt_txt{
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 0;
}
.cmn_tt_txt strong{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
}
.about_contents{
  margin-top: 30px;
}
.about_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.about_contents_row:nth-child(n+2){
  margin-top: 110px;
}
.about_contents_row:before {
  content: "";
  display: block;
  width: 100vw;
  height: 95%;
  background: #FFF;
  position: absolute;
  top: 11%;
  z-index: -1;
}
.about_contents_row:nth-child(even):before {
  /*  right: 4%;*/
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
}
.about_contents_row:nth-child(odd):before {
  /*  left: 4%;*/
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
}
.about_contents_box1{
  width: 100%;
}
.about_contents_box2{
  width: 100%;
  margin-top: 0;
}
.about_contents_row:nth-child(odd) .about_contents_box1{
  order: 1;
}
.about_contents_row:nth-child(odd) .about_contents_box2{
  order: 2;
}
.about_contents_row:nth-child(even) .about_contents_box1{
  order: 1;
}
.about_contents_row:nth-child(even) .about_contents_box2{
  order: 2;
}
.about_contents_img{
  border-radius: 30px;
}
.about_contents_img:before{
  padding-top: 75%;
}
.about_contents_num{
  font-size: 40px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--main-color);
}
.about_contents_head{
  margin-bottom: 15px;
}
.about_contents_head .tt2_ja{
  margin-top: -5px;
}
.about_contents_chks{
  display: flex;
  flex-wrap: wrap;
  margin-top: 37px;
}
.about_contents_chk_inner{
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  background: var(--sub-color);
  color: #FFF;
  border-radius: 10px;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 4px 14px 7px 14px;
}
.about_contents_chk{
  width: 100%;
  /*margin-right: 10px;*/
  margin-bottom: 10px;
}
.about_contents_chk_inner:before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: auto;
  width: 19px;
  height: 18px;
  transform: translateY(-50%);
  background: url(https://ks3.co.jp/system_panel/uploads/images/circle-check.png) no-repeat center center / contain;
}
.about_contents_chk_txt{
  margin-left: 35px;
}

/* スライド */
.about_slides_items{
  display: flex;
  justify-content: center;
  position: relative;
}
.about_slides_item{
  flex: 0 0 auto;
  display: block;
  aspect-ratio: 1 / 1;
  width: 200px;
  margin: 0 10px;
}
.about_slides_item_img{
  border-radius: 30px;
}
.about_slides_item_img:before{
  padding-top: 100%;
}

.about_slides_item_txt{
  width: 90%;
  position: absolute;
  top: 130%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}
.about_slides_item_tt_line{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.about_slides_item_tt_line p{
  display: inline-block;
  background: #FFF;
  border-radius: 10px;
  line-height: 1.7;
  padding: 0 0 0 10px;
}
.about_slides_item_tt_line p:nth-child(n+2){
  margin-top: 10px;
}
.about_slides_item_txt_line{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 20px;
}
.about_slides_item_txt_line p{
  display: inline-block;
  background: #FFF;
  border-radius: 5px;
  text-align: justify;
  line-height: 1.7;
  padding: 0 5px;
}
.about_slides_item_txt_line p:nth-child(n+2){
  margin-top: 5px;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .about_top_box2 .tt2.center{
    text-align: left;
  }

  .about_ftr_inner{
    top: 40%;
  }
  .about_slides_item{
    width: 450px;
  }
}
@media (min-width:768px){
  /* 装飾 */
  .about_bk1{
    position: absolute;
    width: 51.15%;
    top: 0;
    right: 70px;
    bottom: 0;
    z-index: -1;
  }
  .about_bk2{
    position: absolute;
    width: 50.8%;
    top: 30%;
    left: -20%;
    bottom: 0;
    z-index: 1;
  }
  .about_bk3{
    position: absolute;
    width: 54.98%;
    top: -8%;
    left: -20%;
    bottom: auto;
    z-index: -2;
  }
  .about_bk4{
    position: absolute;
    width: 54.07%;
    top: auto;
    right: -20%;
    bottom: -20%;
    z-index: -2;
  }

  .about_bk5{
    position: absolute;
    width: 50.04%;
    top: auto;
    left: -15%;
    bottom: -20%;
    z-index: -2;
  }

  .about_bk6{
    position: absolute;
    width: 54.79%;
    top: auto;
    right: -15%;
    left: auto;
    bottom: -20%;
    z-index: -2;
  }
  .about_bk7{
    position: absolute;
    width: 60.01%;
    top: 60%;
    right: 10%;
    left: auto;
    z-index: -2;
  }


  /* メイン */
  .about_top:after {
    width: 100vw;
    height: 100%;
    top: 160px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .about_top_box1{
    width: 75%;
  }
  .about_top_box2{
    margin-top: 25px;
  }
  .about_top_box3{
    width: 40%;
  }
  .about_top_imgs1{
    aspect-ratio: 554 / 717;
    position: relative;
    margin-left: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .about_top_imgs1_1{
    width: 89.16%;
  }
  .about_top_imgs1_2{
    width: 62.27%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
  .about_top_imgs1_3{
    width: 62%;
    position: absolute;
    top: auto;
    right: 0;
    bottom: -35%;
    margin-right: var(--margin-for-device-side-w);
    z-index: 2;
  }

  /*画像マスク*/
  .about_top_imgs1_1 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask3.png);
    aspect-ratio: 494 / 497;
  }
  .about_top_imgs1_2 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask4.png);
    aspect-ratio: 345 / 338;
  }
  .about_top_imgs1_3 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask5.png);
    aspect-ratio: 579 / 484;
  }

  .home_contents_sub_tt.center{
    text-align: center;
  }
  .about_top_box2.tt2{
    margin-bottom: 45px;
  }
  .about_contents_txt .cmn_txt{

  }

  /* PHILOSOPHY */
  .cmn_tt_txt{
    font-size: 35px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.075em;
    text-align: center;
    margin-top: 0;
  }
  .cmn_tt_txt strong{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: center;
  }
  .about_contents{
    margin-top: 30px;
  }
  .about_contents_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .about_contents_row:nth-child(n+2){
    margin-top: 130px;
  }
  /*  .about_contents_row:before {
      content: "";
      position: absolute;
      top: 11%;
      left: 50%;
      transform: translateX(-50%);
      width: 100vw;
      height: 95%;
      background: #fff;
      z-index: -1;
    }
    .about_contents_row:nth-child(even):before {
      right: 4%;
      border-radius: 0 0 100px 0;
    }
    .about_contents_row:nth-child(odd):before {
      left: 4%;
      border-radius: 0 0 0 100px;
    }*/
  .about_contents_box1{
    width: 100%;
  }
  .about_contents_box2{
    width: 100%;
    margin-top: 0;
  }
  .about_contents_row:nth-child(odd) .about_contents_box1{
    order: 1;
  }
  .about_contents_row:nth-child(odd) .about_contents_box2{
    order: 2;
  }
  .about_contents_row:nth-child(even) .about_contents_box1{
    order: 1;
  }
  .about_contents_row:nth-child(even) .about_contents_box2{
    order: 2;
  }
  .about_contents_img{
    border-radius: 30px;
  }
  .about_contents_img:before{
    padding-top: 65%;
  }
  .about_contents_num{
    font-size: 50px;
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--main-color);
  }
  .about_contents_head{
    margin-bottom: 15px;
  }
  .about_contents_head .tt2_ja{
    margin-top: -5px;
  }
  .about_contents_chks{
    display: flex;
    flex-wrap: wrap;
    margin-top: 37px;
  }
  .about_contents_chk_inner{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.875;
    background: var(--sub-color);
    color: #FFF;
    border-radius: 10px;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 5px 14px 8px 14px;
  }
  .about_contents_chk{
    width: auto;
    margin-right: 30px;
    margin-bottom: 10px;
  }
  .about_contents_chk_inner:before{
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: auto;
    width: 19px;
    height: 18px;
    transform: translateY(-50%);
    background: url(https://ks3.co.jp/system_panel/uploads/images/circle-check.png) no-repeat center center / contain;
  }
  .about_contents_chk_txt{
    margin-left: 30px;
  }

  /* スライド */
  .about_slides_items{
    display: flex;
    justify-content: center;
    position: relative;
  }
  .about_slides_item{
    flex: 0 0 auto;
    display: block;
    aspect-ratio: 1 / 1;
    width: 280px;
    width: 450px;
    margin: 0 10px;
  }
  .about_slides_item_img{
    border-radius: 30px;
  }
  .about_slides_item_img:before{
    padding-top: 100%;
  }

  .about_slides_item_txt{
    width: 90%;
    position: absolute;
    top: 120%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .about_slides_item_tt_line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .about_slides_item_tt_line p{
    display: inline-block;
    background: #FFF;
    border-radius: 10px;
    line-height: 1.7;
    padding: 0 0 2px 10px;
  }
  .about_slides_item_tt_line p:nth-child(n+2){
    margin-top: 10px;
  }
  .about_slides_item_txt_line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.075em;
    margin-top: 20px;
  }
  .about_slides_item_txt_line p{
    display: inline-block;
    background: #FFF;
    border-radius: 5px;
    line-height: 1.7;
    padding: 0 5px;
  }
  .about_slides_item_txt_line p:nth-child(n+2){
    margin-top: 5px;
  }
}
@media (min-width:1024px){
  /* 装飾 */
  .about_bk1{
    position: absolute;
    width: 37.15%;
    top: -12%;
    right: -10%;
    left: auto;
    z-index: -2;
  }
  .about_bk2{
    position: absolute;
    width: 29.8%;
    top: auto;
    left: -10%;
    bottom: 25%;
    z-index: 0;
  }

  .about_bk3{
    position: absolute;
    width: 36.98%;
    top: auto;
    left: -18%;
    bottom: -20%;
    z-index: -2;
  }
  .about_bk4{
    position: absolute;
    width: 53.07%;
    top: 63%;
    right: -10%;
    z-index: -2;
  }

  .about_bk5{
    position: absolute;
    width: 52.04%;
    top: 56%;
    left: -9%;
    z-index: -2;
  }

  .about_bk6{
    position: absolute;
    width: 45.79%;
    top: auto;
    right: -15%;
    left: auto;
    bottom: -27%;
    z-index: -2;
  }
  .about_bk7{
    position: absolute;
    width: 58.01%;
    top: 37%;
    right: 5%;
    left: auto;
    z-index: -2;
  }


  /* メイン */
  .about_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .about_top:after {
    content: "";
    background: #f9f5f0;
    border-radius: 100px;
    width: 820px;
    position: absolute;
    z-index: -1;
    top: 50px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .about_top_box1{
    /*width: 100%;*/
    width: 23.22%;
  }
  .about_top_box2{
    /*width: 100%;*/
    width: 43.18%;
    margin-top: 80px;
  }
  .about_top_box3{
    /*width: 100%;*/
    width: 20.06%;
  }

  .about_top_imgs1{
    aspect-ratio: 554 / 717;
    position: relative;
    margin-left: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .about_top_imgs1_1{
    width: 89.16%;
  }
  .about_top_imgs1_2{
    width: 62.27%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
  .about_top_imgs1_3{
    width: 30.06%;
    position: absolute;
    top: 20%;
    right: 0;
    margin-right: var(--margin-for-device-side-w);
    z-index: 2;
  }

  /*画像マスク*/
  .about_top_imgs1_1 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask3.png);
    aspect-ratio: 494 / 497;
  }
  .about_top_imgs1_2 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask4.png);
    aspect-ratio: 345 / 338;
  }
  .about_top_imgs1_3 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask5.png);
    aspect-ratio: 579 / 484;
  }

  .home_contents_sub_tt.center{
    text-align: center;
  }
  .about_top_box2.tt2{
    margin-bottom: 45px;
  }
  .about_contents_txt .cmn_txt{

  }

  /* PHILOSOPHY */
  .cmn_tt_txt{
    font-size: 45px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.075em;
    text-align: center;
    margin-top: -15px;
  }
  .cmn_tt_txt strong{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: center;
  }
  .about_contents{
    margin-top: 90px;
  }
  .about_contents_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .about_contents_row:nth-child(n+2){
    margin-top: 130px;
  }
  .about_contents_row:before {
    content: "";
    display: block;
    width: 100vw;
    height: 98%;
    background: #FFF;
    position: absolute;
    top: 11%;
    z-index: -1;
  }
  .about_contents_row:nth-child(even):before {
    right: 8%;
    left: auto;
    transform: none;
    border-radius: 0 0 100px 0;
  }
  .about_contents_row:nth-child(odd):before {
    left: 8%;
    transform: none;
    border-radius: 0 0 0 100px;
  }
  .about_contents_box1{
    /*width: 100%;*/
    width: 39.47%;
  }
  .about_contents_box2{
    /*width: 100%;*/
    width: 56.71%;
    margin-top: -30px;
  }
  .about_contents_row:nth-child(odd) .about_contents_box1{
    order: 1;
  }
  .about_contents_row:nth-child(odd) .about_contents_box2{
    order: 2;
  }
  .about_contents_row:nth-child(even) .about_contents_box1{
    order: 2;
  }
  .about_contents_row:nth-child(even) .about_contents_box2{
    order: 1;
  }
  .about_contents_img{
    border-radius: 30px;
  }
  .about_contents_img:before{
    padding-top: 75%;
  }
  .about_contents_num{
    font-size: 80px;
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--main-color);
  }
  .about_contents_head{
    margin-bottom: 25px;
  }
  .about_contents_head .tt2_ja{
    margin-top: -20px;
  }
  .about_contents_chks{
    display: flex;
    flex-wrap: wrap;
    margin-top: 37px;
  }
  .about_contents_chk_inner{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    background: var(--sub-color);
    color: #FFF;
    border-radius: 10px;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 5px 15px;
  }
  .about_contents_chk{
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .about_contents_chk_inner:before{
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: auto;
    width: 19px;
    height: 18px;
    transform: translateY(-50%);
    background: url(https://ks3.co.jp/system_panel/uploads/images/circle-check.png) no-repeat center center / contain;
  }
  .about_contents_chk_txt{
    margin-left: 25px;
  }

  /* スライド */
  .about_slides_items{
    display: flex;
    justify-content: center;
    position: relative;
  }
  .about_slides_item{
    flex: 0 0 auto;
    display: block;
    aspect-ratio: 1 / 1;
    width: 520px;
    margin: 0 10px;
  }
  .about_slides_item_img{
    border-radius: 30px;
  }
  .about_slides_item_img:before{
    padding-top: 100%;
  }

  .about_slides_item_txt{
    width: auto;
    position: absolute;
    top: 52%;
    left: 10.5%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .about_slides_item_tt_line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .about_slides_item_tt_line p{
    display: inline-block;
    background: #FFF;
    border-radius: 10px;
    line-height: 1.7;
    padding: 0 0 2px 10px;
  }
  .about_slides_item_tt_line p:nth-child(n+2){
    margin-top: 10px;
  }
  .about_slides_item_txt_line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.075em;
    margin-top: 50px;
  }
  .about_slides_item_txt_line p{
    display: inline-block;
    background: #FFF;
    border-radius: 5px;
    line-height: 1.7;
    padding: 0 5px;
  }
  .about_slides_item_txt_line p:nth-child(n+2){
    margin-top: 5px;
  }
}

@media (min-width:1200px){
  /* 装飾 */
  .about_bk1{
    position: absolute;
    width: 42.15%;
    top: -15%;
    right: -10%;
    left: auto;
    z-index: -2;
  }
  .about_bk2{
    position: absolute;
    width: 34.8%;
    top: auto;
    left: -15%;
    bottom: 10%;
    z-index: 0;
  }
  .about_bk3{
    position: absolute;
    width: 76.98%;
    top: auto;
    left: -18%;
    bottom: -25%;
    z-index: -2;
  }
  .about_bk4{
    position: absolute;
    width: 50.07%;
    top: 51%;
    right: -9%;
    z-index: -2;
  }

  .about_bk5{
    position: absolute;
    width: 78.04%;
    top: 39%;
    left: -22%;
    z-index: -2;
  }

  .about_bk6{
    position: absolute;
    width: 50.79%;
    top: auto;
    right: -18%;
    left: auto;
    bottom: -38%;
    z-index: -2;
  }
  .about_bk7{
    position: absolute;
    width: 52.01%;
    top: 32%;
    right: -3%;
    left: auto;
    z-index: -2;
  }


  .about_top_box2 {
    /* width: 100%; */
    width: 36.18%;
    margin-top: 75px;
  }
  .about_contents_box2 {
    margin-top: -50px;
  }

}
@media (min-width:1470px){
  /* 装飾 */
  .about_bk2 {
    position: absolute;
    width: 34.8%;
    top: auto;
    left: -15%;
    bottom: -10%;
    z-index: 0;
  }
  .about_top:after {
    width: 1200px;
  }
  .about_top_box2{
    margin-top: 85px;
  }
  .about_top_box3 {
    /* width: 100%; */
    width: 25.06%;
  }
  .cmn_tt_txt{
    font-size: 60px;
  }
  .cmn_tt_txt strong{
    font-size: 24px;
  }
  .about_contents_num{
    font-size: 100px;
  }
  .about_contents_box2 {
    margin-top: -70px;
  }
  .about_contents_chk {
    margin-right: 10px;
  }
}
@media (min-width:1720px){
  /* 装飾 */
  .about_bk1{
    position: absolute;
    width: 72.15%;
    top: -18%;
    right: -44%;
    left: auto;
    z-index: -2;
  }
  .about_bk2{
    position: absolute;
    width: 74.80%;
    top: auto;
    left: -18%;
    bottom: -11%;
    z-index: -2;
  }
  .about_bk3{
    position: absolute;
    width: 76.98%;
    top: auto;
    left: -18%;
    bottom: -25%;
    z-index: -2;
  }
  .about_bk4{
    position: absolute;
    width: 81.07%;
    top: 32%;
    right: -57%;
    z-index: -2;
  }

  .about_bk5{
    position: absolute;
    width: 78.04%;
    top: 39%;
    left: -22%;
    z-index: -2;
  }

  .about_bk6{
    position: absolute;
    width: 74.79%;
    top: auto;
    right: -53%;
    left: auto;
    bottom: -38%;
    z-index: -2;
  }
  .about_bk7{
    position: absolute;
    width: 78.01%;
    top: 54%;
    right: -21.5%;
    left: auto;
    z-index: -2;
  }

  /* メイン */
  .about_top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .about_top:after {
    content: "";
    background: #f9f5f0;
    border-radius: 100px;
    width: 1200px;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 120px;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .about_top_box1{
    /*width: 100%;*/
    width: 23.22%;
  }
  .about_top_box2{
    /*width: 100%;*/
    width: 36.18%;
    margin-top: 175px;
  }
  .about_top_box3{
    /*width: 100%;*/
    width: 25.06%;
  }

  .about_top_imgs1{
    aspect-ratio: 554 / 717;
    position: relative;
    margin-left: var(--margin-for-device-side-w);
    z-index: 1;
  }
  .about_top_imgs1_1{
    width: 89.16%;
  }
  .about_top_imgs1_2{
    width: 62.27%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
  }
  .about_top_imgs1_3{
    width: 38.06%;
    position: absolute;
    top: 20%;
    right: 0;
    margin-right: var(--margin-for-device-side-w);
    z-index: 2;
  }

  /*画像マスク*/
  .about_top_imgs1_1 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask3.png);
    aspect-ratio: 494 / 497;
  }
  .about_top_imgs1_2 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask4.png);
    aspect-ratio: 345 / 338;
  }
  .about_top_imgs1_3 img {
    -webkit-mask-image: url(https://ks3.co.jp/system_panel/uploads/images/mask5.png);
    aspect-ratio: 579 / 484;
  }

  .home_contents_sub_tt.center{
    text-align: center;
  }
  .about_top_box2.tt2{
    margin-bottom: 45px;
  }
  .about_top_box2 .tt2.center{
    margin-bottom: 45px;
  }
  .about_contents_txt .cmn_txt{

  }

  /* PHILOSOPHY */
  .cmn_tt_txt{
    font-size: 60px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.075em;
    text-align: center;
    margin-top: -15px;
  }
  .cmn_tt_txt strong{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: center;
  }
  .about_contents{
    margin-top: 90px;
  }
  .about_contents_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .about_contents_row:nth-child(n+2){
    margin-top: 130px;
  }
  .about_contents_row:before {
    content: "";
    display: block;
    width: 100vw;
    height: 98%;
    background: #FFF;
    position: absolute;
    top: 11%;
    z-index: -1;
  }
  .about_contents_row:nth-child(even):before {
    right: 8%;
    border-radius: 0 0 100px 0;
  }
  .about_contents_row:nth-child(odd):before {
    left: 8%;
    border-radius: 0 0 0 100px;
  }
  .about_contents_box1{
    /*width: 100%;*/
    width: 39.47%;
  }
  .about_contents_box2{
    /*width: 100%;*/
    width: 56.71%;
    margin-top: -70px;
  }
  .about_contents_row:nth-child(odd) .about_contents_box1{
    order: 1;
  }
  .about_contents_row:nth-child(odd) .about_contents_box2{
    order: 2;
  }
  .about_contents_row:nth-child(even) .about_contents_box1{
    order: 2;
  }
  .about_contents_row:nth-child(even) .about_contents_box2{
    order: 1;
  }
  .about_contents_img{
    border-radius: 30px;
  }
  .about_contents_img:before{
    padding-top: 75%;
  }
  .about_contents_num{
    font-size: 100px;
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--main-color);
  }
  .about_contents_head{
    margin-bottom: 25px;
  }
  .about_contents_head .tt2_ja{
    margin-top: -20px;
  }
  .about_contents_chks{
    display: flex;
    flex-wrap: wrap;
    margin-top: 37px;
  }
  .about_contents_chk_inner{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    background: var(--sub-color);
    color: #FFF;
    border-radius: 10px;
    height: 100%;
    position: relative;
    z-index: 1;
    padding: 4px 15px;
  }
  .about_contents_chk{
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .about_contents_chk_inner:before{
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: auto;
    width: 19px;
    height: 18px;
    transform: translateY(-50%);
    background: url(https://ks3.co.jp/system_panel/uploads/images/circle-check.png) no-repeat center center / contain;
  }
  .about_contents_chk_txt{
    margin-left: 25px;
  }

  /* スライド */
  .about_slides_items{
    display: flex;
    justify-content: center;
    position: relative;
  }
  .about_slides_item{
    flex: 0 0 auto;
    display: block;
    aspect-ratio: 1 / 1;
    width: 600px;
    margin: 0 10px;
  }
  .about_slides_item_img{
    border-radius: 30px;
  }
  .about_slides_item_img:before{
    padding-top: 100%;
  }

  .about_slides_item_txt{
    width: auto;
    position: absolute;
    top: 52%;
    left: 10.5%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .about_slides_item_tt_line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .about_slides_item_tt_line p{
    display: inline-block;
    background: #FFF;
    border-radius: 10px;
    line-height: 1.7;
    padding: 0 0 2px 10px;
  }
  .about_slides_item_tt_line p:nth-child(n+2){
    margin-top: 10px;
  }
  .about_slides_item_txt_line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.075em;
    margin-top: 50px;
  }
  .about_slides_item_txt_line p{
    display: inline-block;
    background: #FFF;
    border-radius: 5px;
    line-height: 1.7;
    padding: 0 5px;
  }
  .about_slides_item_txt_line p:nth-child(n+2){
    margin-top: 5px;
  }
}



/*******************************
*　訪問看護（18歳未満）
********************************/
/* セクション設定 */
.pg_homenursing{
  padding-bottom: 80px;
}
.pg_homenursing .section.sec1{
  position: relative;
}
.pg_homenursing .section.sec1:before{
  content: "";
  display: block;
  width: 100vw;
  height: auto;
  background: var(--bk1-color);
  position: absolute;
  border-radius: 0;
  top: 15%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.pg_homenursing .section.sec2{
  padding-top: 80px;
  padding-bottom: 10px;
  position: relative;
}
.pg_homenursing .section.sec2:before{
  content: "";
  display: block;
  width: 100vw;
  height: auto;
  background: var(--bk1-color);
  border-radius: 0;
  position: absolute;
  top: 1%;
  right: 0;
  bottom: 0%;
  z-index: -1;
}
.pg_homenursing .section.sec3{
  padding-top: 30px;
}

@media (max-width:374px){

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

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

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

  }
  .pg_homenursing .section.sec1{

  }
  .pg_homenursing .section.sec1:before{
    top: 14%;
  }
  .pg_homenursing .section.sec2{
    padding-top: 130px;
    padding-bottom: 50px;
  }
  .pg_homenursing .section.sec2:before{
    top: 2%;
  }
  .pg_homenursing .section.sec3{
    padding-top: 80px;
  }
}
@media (min-width:1024px){
  .pg_homenursing{

  }
  .pg_homenursing .section.sec1{

  }
  .pg_homenursing .section.sec1:before {
    width: 100vw;
    height: auto;
    border-radius: 100px 0 0 100px;
    top: 32% !important;
    left: 25%;
    bottom: 3%;
    z-index: -1;
  }
  .pg_homenursing .section.sec2{
    padding-top: 150px;
  }
  .pg_homenursing .section.sec2:before {
    width: 100vw;
    height: 96%;
    border-radius: 0 100px 100px 0;
    top: 3%;
    right: 10%;
  }
  .pg_homenursing .section.sec3{

  }
}
@media (min-width:1200px){
  .pg_homenursing .section.sec1:before {
    width: 100vw;
    height: auto;
    border-radius: 100px 0 0 100px;
    top: 32% !important;
    left: 27%;
    bottom: -2%;
    z-index: -1;
  }
  .pg_homenursing .section.sec2{
    padding-top: 280px;
  }
  .pg_homenursing .section.sec2:before {
    width: 100vw;
    height: auto;
    top: 7%;
    bottom: 2%;
    right: 34%;
  }
}
@media (min-width:1470px){
  .pg_homenursing .section.sec1:before {
    width: 100vw;
    height: auto;
    border-radius: 100px 0 0 100px;
    top: 32% !important;
    left: 27%;
    bottom: -15%;
    z-index: -1;
  }
  .pg_homenursing .section.sec2 {
    padding-top: 300px;
  }

}
@media (min-width:1720px){
  .pg_homenursing{
    padding-top: 55px;
    padding-bottom: 80px;
  }
  .pg_homenursing .section.sec1{

  }
  .pg_homenursing .section.sec2{
    padding-top: 335px;
  }
  .pg_homenursing .section.sec2:before {
    width: 100vw;
    height: auto;
    top: 8%;
    bottom: 0.8%;
    right: 34%;
  }
  .pg_homenursing .section.sec3{
    padding-top: 85px;
  }
}

/* 装飾 */
.homenursing_bk1{
  position: absolute;
  width: 62.01%;
  top: -5%;
  left: -15%;
  z-index: -2;
}
.homenursing_bk2{
  position: absolute;
  width: 48.07%;
  top: 0;
  right: -10%;
  z-index: -2;
}
.homenursing_bk3{
  position: absolute;
  width: 46.98%;
  top: -8%;
  left: -20%;
  z-index: -2;
}
.homenursing_bk4{
  position: absolute;
  width: 60.01%;
  right: -20%;
  bottom: -12%;
  z-index: -2;
}

/* 共通パーツ */
.cmn_about_head{
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.cmn_about_head:before{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #f7ad74;
  border-radius: 50%;
  margin-right: 10px;
}
.cmn_about_box1 .tt2:before{
  content: "";
  display: flex;
  width: auto;
  height: auto;
  aspect-ratio: 718 / 4;
  background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom1.png);
  background-repeat: no-repeat;
  margin-top: 7px;
  margin-bottom: 18px;
}

/* メイン */
.cmn_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_about:before{

}
.cmn_about.left{

}
.cmn_about_box1{
  width: 100%;
  margin-top: -10px;
}
.cmn_about_box2{
  width: 100%;
  margin-top: 20px;
}
.cmn_about_box2_img{
  border-radius: 30px;
  /*    margin-right: var(--margin-for-device-side-w);*/
}
.cmn_about_box2_img:before{
  padding-top: 60%;
}
.cmn_about_box1 .tt2{
  margin-bottom: 15px;
}

/* サービス */
.hommenursing_service{

}
.cmn_head{
  text-align: center;
}
.cmn_head_ja{
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.cmn_head_en{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.hommenursing_service_head_en{
  color: #f7ad74 ;
}
.hommenursing_service_rows{
  margin-top: 30px;
}
.hommenursing_service_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 35px;
  background-image: url(https://ks3.co.jp/system_panel/uploads/images/border.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}
.hommenursing_service_row:last-child{
  background-image: none;
}
.hommenursing_service_row:nth-child(n+2){
  margin-top: 35px;
}
.hommenursing_service_box1{
  width: 100%;
}
.hommenursing_service_box2{
  width: 100%;
  margin-top: 20px;
}
.hommenursing_service_row:nth-child(odd) .hommenursing_service_box1{
  order: 1;
}
.hommenursing_service_row:nth-child(odd) .hommenursing_service_box2{
  order: 2;
}
.hommenursing_service_row:nth-child(even) .hommenursing_service_box1{
  order: 1;
}
.hommenursing_service_row:nth-child(even) .hommenursing_service_box2{
  order: 2;
}
.hommenursing_service_box1_img{
  border-radius: 30px;
}
.hommenursing_service_box1_img:before{
  padding-top: 70%;
}
.hommenursing_service_titte{
  margin-bottom: 15px;
}
.hommenursing_service_titte_line{
  display: inline-block;
  background: #f7ad74;
  border-radius: 10px;
  padding: 0 10px;
}
.hommenursing_service_titte_line_txt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #FFF;
}
.hommenursing_service_txt{

}
.hommenursing_service_lists{
  margin-top: 35px;
}
.hommenursing_service_lists_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: auto;
  border-radius: 10px;
  padding: 20px 25px;
  background: var(--bk2-color);
}
.hommenursing_service_list{
  width: 100%;
  text-align: center;
}
.hommenursing_service_list + .hommenursing_service_list{
  margin-top: 20px;
}
.hommenursing_service_list_icon{
  padding-bottom: 8px
}
.hommenursing_service_list_icon img{
  width: 40%;
}
.hommenursing_service_list_txt{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.875;
}

/* 考え方 */
.hommenursing_care{
  position: relative;
}
.hommenursing_care:after{
  content: "";
  background: var(--bk2-color);
  border-radius: 30px;
  width: 85vw;
  /* width: 1110px; */
  height: auto;
  position: absolute;
  z-index: -1;
  top: 1.5%;
  bottom: -4%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.hommenursing_care .cmn_tt_txt{

}
.hommenursing_care_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-inline: -5px;
  margin-top: 30px;
}
.hommenursing_care_item{
  width: 100%;
  padding-inline: 5px;
}
.hommenursing_care_item:nth-child(n+2){
  margin-top: 30px;
}
.hommenursing_care_inner{
  display: block;
  height: 100%;
  background: #FFF;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.hommenursing_care_num{
  font-size: 40px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--main-color);
  position: absolute;
  top: -3%;
  left: 4%;
  z-index: 2;
}
.hommenursing_care_img{
  border-radius: 30px 30px 0 0;
}
.hommenursing_care_img:before{
  padding-top: 60%;
}
.hommenursing_care_item_txt{
  padding: 15px 10px;
}
.hommenursing_care_title{
  text-align: center;
}
.hommenursing_care_title:after{
  content: "";
  display: flex;
  width: 100%;
  height: 4px;
  aspect-ratio: 418 / 4;
  background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom2.png);
  background-repeat: no-repeat;
  margin-top: 11px;
  margin-bottom: 15px;
}
.hommenursing_care_title_txt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.hommenursing_care_txt{

}



@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .pg_homenursing_older .section.sec1:before {
    top: 13%;
  }
  /* 装飾 */
  .homenursing_bk1{
    position: absolute;
    width: 45.01%;
    top: -4%;
    left: -10%;
    z-index: -2;
  }
  .homenursing_bk2{
    position: absolute;
    width: 48.07%;
    top: 0;
    right: -15%;
    z-index: -2;
  }
  .homenursing_bk3{
    position: absolute;
    width: 32.98%;
    top: -15%;
    left: -20%;
    z-index: -2;
  }
  .homenursing_bk4{
    position: absolute;
    width: 56.01%;
    right: -20%;
    bottom: -25%;
    z-index: -2;
  }

  .hommenursing_service_list {
    width: 33.333%;
  }
  .hommenursing_service_list_icon img {
    width: auto;
  }
  .hommenursing_service_list + .hommenursing_service_list {
    margin-top: 0;
  }
  .hommenursing_care_item {
    width: 50%;
    padding-inline: 5px;
  }
  .hommenursing_care_item:nth-child(n+2) {
    margin-top: 0;
  }
  .hommenursing_care_item:nth-child(n+3) {
    margin-top: 30px;
  }
  /* サービス */
  .cmn_head_ja{
    font-size: 30px;
  }
  .cmn_head_en{
    font-size: 25px;
  }
  .hommenursing_service_titte_line_txt{
    font-size: 28px;
  }
  .hommenursing_service_lists_inner {
    padding: 30px 35px;
  }
  .hommenursing_service_row {
    padding-bottom: 55px;
  }
  .hommenursing_service_row:nth-child(n+2) {
    margin-top: 55px;
  }

  .hommenursing_care:after{
    content: "";
    background: var(--bk2-color);
    border-radius: 30px;
    width: 85vw;
    height: auto;
    position: absolute;
    z-index: -1;
    top: 4%;
    bottom: -4%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@media (min-width:1024px){
  /* 装飾 */
  .homenursing_bk1{
    position: absolute;
    width: 42.01%;
    top: -5%;
    left: -6%;
    z-index: -2;
  }
  .homenursing_bk2{
    position: absolute;
    width: 50.07%;
    top: 3%;
    right: -15%;
    z-index: -2;
  }
  .homenursing_bk3{
    position: absolute;
    width: 36.98%;
    top: 10%;
    left: -20%;
    z-index: -2;
  }
  .homenursing_bk4{
    position: absolute;
    width: 58.01%;
    right: -20%;
    bottom: -42%;
    z-index: -2;
  }

  /* 共通パーツ */
  .cmn_about_head{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .cmn_about_head:before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #f7ad74;
    border-radius: 50%;
    margin-right: 10px;
  }
  .cmn_about_box1 .tt2:before{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 718 / 4;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom1.png);
    background-repeat: no-repeat;
    margin-top: 7px;
    margin-bottom: 18px;
  }

  /* メイン */
  .cmn_about{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cmn_about:before{

  }
  .cmn_about.left{

  }
  .cmn_about_box1{
    /*width: 100%;*/
    width: 47.36%;
    margin-top: -10px;
  }
  .cmn_about_box2{
    /*width: 100%;*/
    width: 46.05%;
    margin-top: 0;
  }
  .cmn_about_box2_img{
    border-radius: 30px 0 0 30px;
    margin-right: var(--margin-for-device-side-w);
  }
  .cmn_about_box2_img:before{
    padding-top: 50%;
  }
  .cmn_about_box1 .tt2{
    margin-bottom: 25px;
  }

  /* サービス */
  .hommenursing_service{

  }
  .cmn_head{
    text-align: center;
  }
  .cmn_head_ja{
    font-size: 55px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .cmn_head_en{
    font-size: 25px;
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #f7ad74;
  }
  .hommenursing_service_rows{
    margin-top: 60px;
  }
  .hommenursing_service_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding-bottom: 85px;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
  }
  .hommenursing_service_row:last-child{
    background-image: none;
  }
  .hommenursing_service_row:nth-child(n+2){
    margin-top: 80px;
  }
  .hommenursing_service_box1{
    /*width: 100%;*/
    width: 39.47%;
  }
  .hommenursing_service_box2{
    /*width: 100%;*/
    width: 55.26%;
    margin-top: 0;
  }
  .hommenursing_service_row:nth-child(odd) .hommenursing_service_box1{
    order: 2;
  }
  .hommenursing_service_row:nth-child(odd) .hommenursing_service_box2{
    order: 1;
  }
  .hommenursing_service_row:nth-child(even) .hommenursing_service_box1{
    order: 1;
  }
  .hommenursing_service_row:nth-child(even) .hommenursing_service_box2{
    order: 2;
  }
  .hommenursing_service_box1_img{
    border-radius: 30px;
  }
  .hommenursing_service_box1_img:before{
    padding-top: 75%;
  }
  .hommenursing_service_titte{
    margin-bottom: 35px;
  }
  .hommenursing_service_titte_line{
    display: inline-block;
    background: #f7ad74;
    border-radius: 10px;
    padding: 3px 10px;
  }
  .hommenursing_service_titte_line_txt{
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.075em;
    color: #FFF;
  }
  .hommenursing_service_txt{

  }
  .hommenursing_service_lists{
    margin-top: 35px;
  }
  .hommenursing_service_lists_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: auto;
    border-radius: 10px;
    padding: 20px;
    background: var(--bk2-color);
  }
  .hommenursing_service_list{
    width: 33.333%;
    text-align: center;
  }
  .hommenursing_service_list_icon{
    padding-bottom: 8px
  }
  .hommenursing_service_list_icon img{
    width: 60%;
  }
  .hommenursing_service_list_txt{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 2;
  }

  /* 考え方 */
  .hommenursing_care{
    position: relative;
  }
  .hommenursing_care:after{
    content: "";
    background: var(--bk2-color);
    border-radius: 30px;
    /* width: 100vw; */
    width: 850px;
    height: 97.5%;
    position: absolute;
    z-index: -1;
    top: 8%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .hommenursing_care .cmn_tt_txt{
    margin-top: -15px;
  }
  .hommenursing_care_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-inline: -5px;
    margin-top: 0;
  }
  .hommenursing_care_item{
    /*width: 100%;*/
    width: 33.333%;
    padding-inline: 5px;
  }
  .hommenursing_care_item:nth-child(n+2) {
    margin-top: 0;
  }
  .hommenursing_care_item:nth-child(n+3) {
    margin-top: 0;
  }
  .hommenursing_care_inner{
    display: block;
    height: 100%;
    background: #FFF;
    border-radius: 30px;
    position: relative;
  }
  .hommenursing_care_num{
    font-size: 40px;
    top: -3%;
    left: 6%;
    z-index: 2;
  }
  .hommenursing_care_img{
    border-radius: 30px 30px 0 0;
  }
  .hommenursing_care_img:before{
    padding-top: 52%;
  }
  .hommenursing_care_item_txt{
    padding: 20px 20px 30px;
  }
  .hommenursing_care_title{
    text-align: center;
  }
  .hommenursing_care_title:after{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 418 / 4;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom2.png);
    margin-top: 11px;
    margin-bottom: 15px;
  }
  .hommenursing_care_title_txt{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .hommenursing_care_txt{

  }
}
@media (min-width:1200px){
  /* 装飾 */
  .homenursing_bk2 {
    position: absolute;
    width: 40.07%;
    top: 8%;
    right: -10%;
    z-index: -2;
  }
  .homenursing_bk3 {
    position: absolute;
    width: 36.98%;
    top: 4%;
    left: -17%;
    z-index: -2;
  }

}
@media (min-width:1470px){
  /* 装飾 */
  .homenursing_bk1{
    position: absolute;
    width: 78.01%;
    top: -12%;
    left: -6%;
    z-index: -2;
  }
  .homenursing_bk2{
    position: absolute;
    width: 81.07%;
    top: 11%;
    right: -55%;
    z-index: -2;
  }
  .homenursing_bk3{
    position: absolute;
    width: 76.98%;
    top: 19%;
    left: -20%;
    z-index: -2;
  }
  .homenursing_bk4{
    position: absolute;
    width: 78.01%;
    right: -50%;
    bottom: -42%;
    z-index: -2;
  }

  .hommenursing_service_list_icon img{
    width: auto;
  }
  .hommenursing_care:after{
    width: 1110px;
  }
  .hommenursing_care_num{
    font-size: 50px;
  }
}
@media (min-width:1720px){
  /* 装飾 */
  .homenursing_bk1{
    position: absolute;
    width: 78.01%;
    top: -12%;
    left: -6%;
    z-index: -2;
  }
  .homenursing_bk2{
    position: absolute;
    width: 81.07%;
    top: 11%;
    right: -55%;
    z-index: -2;
  }
  .homenursing_bk3{
    position: absolute;
    width: 76.98%;
    top: 19%;
    left: -20%;
    z-index: -2;
  }
  .homenursing_bk4{
    position: absolute;
    width: 78.01%;
    right: -50%;
    bottom: -42%;
    z-index: -2;
  }
  /* 共通パーツ */
  .cmn_about_head{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .cmn_about_head:before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #f7ad74;
    border-radius: 50%;
    margin-right: 10px;
  }
  .cmn_about_box1 .tt2:before{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 718 / 4;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom1.png);
    background-repeat: no-repeat;
    margin-top: 7px;
    margin-bottom: 18px;
  }

  /* メイン */
  .cmn_about{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cmn_about:before{

  }
  .cmn_about.left{

  }
  .cmn_about_box1{
    /*width: 100%;*/
    width: 47.36%;
    margin-top: -10px;
  }
  .cmn_about_box2{
    /*width: 100%;*/
    width: 46.05%;
  }
  .cmn_about_box2_img{
    border-radius: 30px 0 0 30px;
    margin-right: var(--margin-for-device-side-w);
  }
  .cmn_about_box2_img:before{
    padding-top: 50%;
  }
  .cmn_about_box1 .tt2{
    margin-bottom: 25px;
  }

  /* サービス */
  .hommenursing_service{

  }
  .cmn_head{
    text-align: center;
  }
  .cmn_head_ja{
    font-size: 60px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .cmn_head_en{
    font-size: 30px;
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #f7ad74;
  }
  .hommenursing_service_rows{
    margin-top: 80px;
  }
  .hommenursing_service_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    padding-bottom: 85px;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
  }
  .hommenursing_service_row:last-child{
    background-image: none;
  }
  .hommenursing_service_row:nth-child(n+2){
    margin-top: 80px;
  }
  .hommenursing_service_box1{
    /*width: 100%;*/
    width: 39.47%;
  }
  .hommenursing_service_box2{
    /*width: 100%;*/
    width: 55.26%;
  }
  .hommenursing_service_row:nth-child(odd) .hommenursing_service_box1{
    order: 2;
  }
  .hommenursing_service_row:nth-child(odd) .hommenursing_service_box2{
    order: 1;
  }
  .hommenursing_service_row:nth-child(even) .hommenursing_service_box1{
    order: 1;
  }
  .hommenursing_service_row:nth-child(even) .hommenursing_service_box2{
    order: 2;
  }
  .hommenursing_service_box1_img{
    border-radius: 30px;
  }
  .hommenursing_service_box1_img:before{
    padding-top: 75%;
  }
  .hommenursing_service_titte{
    margin-bottom: 50px;
  }
  .hommenursing_service_titte_line{
    display: inline-block;
    background: #f7ad74;
    border-radius: 10px;
    padding: 3px 10px;
  }
  .hommenursing_service_titte_line_txt{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.075em;
    color: #FFF;
  }
  .hommenursing_service_txt{

  }
  .hommenursing_service_lists{
    margin-top: 35px;
  }
  .hommenursing_service_lists_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: auto;
    border-radius: 10px;
    padding: 50px 45px 40px;
    background: var(--bk2-color);
  }
  .hommenursing_service_list{
    width: 33.333%;
    text-align: center;
  }
  .hommenursing_service_list_icon{
    padding-bottom: 8px
  }
  .hommenursing_service_list_txt{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 2;
  }

  /* 考え方 */
  .hommenursing_care{
    position: relative;
  }
  .hommenursing_care:after{
    content: "";
    background: var(--bk2-color);
    border-radius: 30px;
    /* width: 100vw; */
    width: 1110px;
    height: 97.5%;
    position: absolute;
    z-index: -1;
    top: 11%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .hommenursing_care .cmn_tt_txt{
    margin-top: -27px;
  }
  .hommenursing_care_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-inline: -5px;
    margin-top: 70px;
  }
  .hommenursing_care_item{
    /*width: 100%;*/
    width: 33.333%;
    padding-inline: 5px;
  }
  .hommenursing_care_inner{
    display: block;
    height: 100%;
    background: #FFF;
    border-radius: 30px;
    position: relative;
  }
  .hommenursing_care_num{
    font-size: 60px;
    top: -3%;
    left: 6%;
    z-index: 2;
  }
  .hommenursing_care_img{
    border-radius: 30px 30px 0 0;
  }
  .hommenursing_care_img:before{
    padding-top: 52%;
  }
  .hommenursing_care_item_txt{
    padding: 28px 40px 35px;
  }
  .hommenursing_care_title{
    text-align: center;
  }
  .hommenursing_care_title:after{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 418 / 4;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom2.png);
    margin-top: 11px;
    margin-bottom: 25px;
  }
  .hommenursing_care_title_txt{
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .hommenursing_care_txt{

  }
}

/*******************************
*　訪問看護（18歳以上）
********************************/
/* 装飾 */
.homenursing_older_bk1{
  position: absolute;
  width: 51.95%;
  top: -5%;
  left: -15%;
  z-index: -2;
}
.homenursing_older_bk2{
  position: absolute;
  width: 48.07%;
  top: 0;
  right: -10%;
  z-index: -2;
}
.homenursing_older_bk3{
  position: absolute;
  width: 46.01%;
  top: -8%;
  left: -20%;
  z-index: -2;
}
.homenursing_older_bk4{
  position: absolute;
  width: 60.98%;
  right: -20%;
  bottom: -12%;
  z-index: -2;
}



/* メイン */
.cmn_about_head1:before{
  background: var(--sub-color);
}
.hommenursing_service_head_en1{
  color: var(--sub-color);
}
.hommenursing_service_titte_line1{
  background: var(--sub-color);
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_homenursing_older .section.sec1:before{
    top: 13%;
  }
}
@media (min-width:768px){

  /* 装飾 */
  .homenursing_older_bk1{
    position: absolute;
    width: 45.01%;
    top: -4%;
    left: -10%;
    z-index: -2;
  }
  .homenursing_older_bk2{
    position: absolute;
    width: 49.07%;
    top: 0%;
    right: -16%;
    z-index: -2;
  }
  .homenursing_older_bk3{
    position: absolute;
    width: 30.98%;
    top: -14%;
    left: -11%;
    z-index: -2;
  }
  .homenursing_older_bk4{
    position: absolute;
    width: 56.01%;
    right: -20%;
    bottom: -20%;
    z-index: -2;
  }

}
@media (min-width:1024px){
  /* 装飾 */
  .homenursing_older_bk1{
    position: absolute;
    width: 42.01%;
    top: -5%;
    left: -6%;
    z-index: -2;
  }
  .homenursing_older_bk2{
    position: absolute;
    width: 50.07%;
    top: 3%;
    right: -30%;
    z-index: -2;
  }
  .homenursing_older_bk3{
    position: absolute;
    width: 36.98%;
    top: 10%;
    left: -10%;
    z-index: -2;
  }
  .homenursing_older_bk4{
    position: absolute;
    width: 58.01%;
    right: -20%;
    bottom: -42%;
    z-index: -2;
  }

}
@media (min-width:1200px){
  .pg_homenursing_older .section.sec2:before {
    width: 100vw;
    height: auto;
    top: 8.3%;
    bottom: 0.7%;
    right: 34%;
  }

  .homenursing_older_bk1 {
    position: absolute;
    width: 42.01%;
    top: -3%;
    left: -14%;
    z-index: -2;
  }
  .homenursing_older_bk2{
    position: absolute;
    width: 49.07%;
    top: 4%;
    right: -28%;
    z-index: -2;
  }

}
@media (min-width:1470px){
  /* 装飾 */
  .homenursing_older_bk1 {
    position: absolute;
    width: 43.01%;
    top: -6%;
    left: -11%;
    z-index: -2;
  }
  .homenursing_older_bk2{
    position: absolute;
    width: 78.07%;
    top: 10%;
    right: -50%;
    z-index: -2;
  }
  .homenursing_older_bk3{
    position: absolute;
    width: 50.01%;
    top: 14%;
    left: -32%;
    z-index: -2;
  }
  .homenursing_older_bk4{
    position: absolute;
    width: 76.98%;
    right: -42%;
    bottom: -39%;
    z-index: -2;
  }

}
@media (min-width:1720px){
  .pg_homenursing_older .section.sec3{
    padding-top: 120px;
  }

  /* 装飾 */
  .homenursing_older_bk1{
    position: absolute;
    width: 80.95%;
    top: -17%;
    left: -10%;
    z-index: -2;
  }
  .homenursing_older_bk2{
    position: absolute;
    width: 78.07%;
    top: 10%;
    right: -50%;
    z-index: -2;
  }
  .homenursing_older_bk3{
    position: absolute;
    width: 78.01%;
    top: 14%;
    left: -32%;
    z-index: -2;
  }
  .homenursing_older_bk4{
    position: absolute;
    width: 76.98%;
    right: -42%;
    bottom: -39%;
    z-index: -2;
  }

}

/*******************************
*　代表挨拶
********************************/
/* セクション設定 */
.pg_message{

}
.pg_message .section.sec1{
  position: relative;
}
.pg_message .section.sec1:before {
  content: "";
  display: block;
  width: 100vw;
  height: auto;
  background: var(--bk1-color);
  position: absolute;
  border-radius: 0;
  top: 17%;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.pg_message .section.sec2{
  padding-top: 100px;
  position: relative;
}
.pg_message .section.sec2:before {
  content: "";
  display: block;
  width: 100vw;
  height: auto;
  background: var(--bk1-color);
  border-radius: 0;
  position: absolute;
  top: 2%;
  left: 0;
  bottom: -1%;
  z-index: -1;
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .pg_message .section.sec1:before {
    top: 13%;
  }
  pg_message .section.sec2:before {
    width: 100vw;
    height: 100%;
    top: 2%;
    left: 15%;
  }
}
@media (min-width:1024px){
  .pg_message{

  }
  .pg_message .section.sec1{

  }
  .pg_message .section.sec1:before {
    width: 100vw;
    height: auto;
    border-radius: 0 100px 100px 0;
    top: 25%;
    right: 20%;
    bottom: 0;
  }
  .pg_message .section.sec2{
    padding-top: 150px;
    position: relative;
  }
  .pg_message .section.sec2:before {
    width: 100vw;
    height: 100%;
    border-radius: 100px 0 0 100px;
    top: 3%;
    left: 15%;
  }
}
@media (min-width:1200px){
  .pg_message .section.sec1:before {
    width: 100vw;
    height: 89%;
    border-radius: 0 100px 100px 0;
    top: 22%;
    right: 37.5%;
    bottom: 0;
    z-index: -1;
  }
  .pg_message .section.sec2 {
    padding-top: 250px !important;
  }
  .pg_message .section.sec2:before {
    width: 100vw;
    height: auto;
    border-radius: 100px 0 0 100px 0;
    top: 7%;
    right: 10%;
    bottom: -3%;
  }
}
@media (min-width:1470px){


}
@media (min-width:1720px){
  .pg_message{
    padding-top: 110px;
    padding-bottom: 90px;
  }
  .pg_message .section.sec1{

  }
  .pg_message .section.sec2{
    padding-top: 330px !important;
    position: relative;
  }
  .pg_message .section.sec2:before {
    width: 100vw;
    height: auto;
    top: 10%;
    left: 34%;
    bottom: -3.5%;
  }
}

/* メイン */
.cmn_about.right{

}
.cmn_about.right .cmn_about_box1{
  width: 100%;
}
.cmn_about.right .cmn_about_box2{
  width: 100%;
}
.cmn_about.right .cmn_about_head:before{
  background: var(--sub-color);
}
.cmn_about.right .cmn_about_box2_img {
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
}
.cmn_about.right .cmn_about_box2_img:before {
  padding-top: 60%;
}

/* 代表の想い */
.message_contets{

}
.message_contets .tt3_en{
  font-size: 45px;
  color: #e4ded7;
}
.cmn_tt_txt1{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 15px;
}
.message_contents_rows{
  margin-top: 30px;
}
.message_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/*.message_contents_row:nth-child(odd) .message_contents_box1{
    order: 1;
}
.message_contents_row:nth-child(odd) .message_contents_box2{
    order: 2;
    margin-right: 130px;
}
.message_contents_row:nth-child(even) .message_contents_box1{
    order: 2;
    margin-right: 145px;
}
.message_contents_row:nth-child(even) .message_contents_box2{
    order: 1;
}*/
.message_contents_row:nth-child(n+2){
  margin-top: 35px;
}
.message_contents_box1{
  width: 100%;
}
.message_contents_box2{
  width: 100%;
  margin-top: 20px;
}
.message_contents_img{
  border-radius: 30px;
}
.message_contents_img:before{
  padding-top: 70%;
}
.message_contents_tittle{

}
.message_contents_tittle:after{
  content: "";
  display: flex;
  width: auto;
  height: auto;
  aspect-ratio: 718 / 4;
  background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom4.png);
  background-repeat: no-repeat;
  margin-top: 15px;
  margin-bottom: 15px;
}
.message_contents_tittle_txt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2;
}
.message_contents_txt{

}



@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .message_contets .tt3_en {
    font-size: 60px;
  }
  .cmn_tt_txt1 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: center;
    margin-top: 15px;
  }
  .message_contents_tittle_txt{
    font-size: 22px;
  }
}
@media (min-width:1024px){
  /* メイン */
  .cmn_about.right{

  }
  .cmn_about.right .cmn_about_box1{
    /*width: 100%;*/
    width: 47.36%;
    order: 2;
    margin-top: -15px;
  }
  .cmn_about.right .cmn_about_box2{
    /*width: 100%;*/
    width: 46.05%;
    order: 1;
    margin-top: 0;
  }
  .cmn_about.right .cmn_about_head:before{
    background: var(--sub-color);
  }
  .cmn_about.right .cmn_about_box2_img {
    border-radius: 0 30px 30px 0;
    margin-left: var(--margin-for-device-side-w);
    margin-right: 0;
  }
  .cmn_about.right .cmn_about_box2_img:before {
    padding-top: 66.66%;
  }

  /* 代表の想い */
  .message_contets{

  }
  .message_contets .tt3_en{
    font-size: 110px;
    color: #e4ded7;
  }
  .cmn_tt_txt1{
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: center;
    margin-top: 25px;
  }
  .message_contents_rows{
    margin-top: 60px;
  }
  .message_contents_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .message_contents_row:nth-child(odd) .message_contents_box1{
    order: 1;
  }
  .message_contents_row:nth-child(odd) .message_contents_box2{
    order: 2;
    /*margin-right: 130px;*/
  }
  .message_contents_row:nth-child(even) .message_contents_box1{
    order: 2;
    /*margin-right: 145px;*/
  }
  .message_contents_row:nth-child(even) .message_contents_box2{
    order: 1;
  }
  .message_contents_row:nth-child(n+2){
    margin-top: 120px;
  }
  .message_contents_box1{
    /*width: 100%;*/
    width: 39.47%;
  }
  .message_contents_box2{
    /*width: 100%;*/
    width: 52.36%;
    margin-top: -25px;
  }
  .message_contents_img{
    border-radius: 30px;
  }
  .message_contents_img:before{
    padding-top: 75%;
  }
  .message_contents_tittle{

  }
  .message_contents_tittle:after{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 718 / 4;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom4.png);
    background-repeat: no-repeat;
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .message_contents_tittle_txt{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.075em;
    line-height: 2;
  }
  .message_contents_txt{

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


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


}
@media (min-width:1720px){
  /* メイン */
  .cmn_about.right{

  }
  .cmn_about.right .cmn_about_box1{
    /*width: 100%;*/
    width: 47.36%;
    order: 2;
    margin-top: -5px;
  }
  .cmn_about.right .cmn_about_box2{
    /*width: 100%;*/
    width: 46.05%;
    order: 1;
    margin-top: 0;
  }
  .cmn_about.right .cmn_about_head:before{
    background: var(--sub-color);
  }
  .cmn_about.right .cmn_about_box2_img {
    border-radius: 0 30px 30px 0;
    margin-left: var(--margin-for-device-side-w);
    margin-right: 0;
  }
  .cmn_about.right .cmn_about_box2_img:before {
    padding-top: 66.66%;
  }

  /* 代表の想い */
  .message_contets{

  }
  .message_contets .tt3_en{
    font-size: 120px;
    color: #e4ded7;
  }
  .cmn_tt_txt1{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.075em;
    text-align: center;
    margin-top: 35px;
  }
  .message_contents_rows{
    margin-top: 90px;
  }
  .message_contents_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .message_contents_row:nth-child(odd) .message_contents_box1{
    order: 1;
  }
  .message_contents_row:nth-child(odd) .message_contents_box2{
    order: 2;
    margin-right: 130px;
  }
  .message_contents_row:nth-child(even) .message_contents_box1{
    order: 2;
    margin-right: 145px;
  }
  .message_contents_row:nth-child(even) .message_contents_box2{
    order: 1;
  }
  .message_contents_row:nth-child(n+2){
    margin-top: 170px;
  }
  .message_contents_box1{
    /*width: 100%;*/
    width: 39.47%;
  }
  .message_contents_box2{
    /*width: 100%;*/
    width: 47.36%;
    margin-top: -25px;
  }
  .message_contents_img{
    border-radius: 30px;
  }
  .message_contents_img:before{
    padding-top: 75%;
  }
  .message_contents_tittle{

  }
  .message_contents_tittle:after{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 718 / 4;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom4.png);
    background-repeat: no-repeat;
    margin-top: 23px;
    margin-bottom: 48px;
  }
  .message_contents_tittle_txt{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.075em;
    line-height: 2;
  }
  .message_contents_txt{

  }
}

/*******************************
*　ご利用までの流れ
********************************/
/* セクション設定 */
.pg_flow{
  padding-bottom: 80px;
}
.pg_flow .section.sec1{
  position: relative;
}
.pg_flow .section.sec1:before {
  content: "";
  display: block;
  width: 100vw;
  height: 70%;
  background: var(--bk1-color);
  position: absolute;
  border-radius: 0;
  top: 30%;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.pg_flow .section.sec2{
  padding-top: 80px;
  position: relative;
}
.pg_flow .section.sec2:before {
  content: "";
  display: block;
  width: 100vw;
  height: auto;
  background: var(--bk1-color);
  border-radius: 0;
  position: absolute;
  top: 2%;
  right: 0;
  bottom: -3%;
  z-index: -1;
}

@media (max-width:374px){

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

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

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

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec1:before{
    top: 12%;
  }
  .pg_flow .section.sec2{
    padding-top: 100px;
  }
  .pg_flow .section.sec2:before {
    width: 100vw;
    height: 100%;
    top: 2%;
    right: 0;
    z-index: -1;
  }
}
@media (min-width:1024px){
  .pg_flow{

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{
    padding-top: 150px;
  }
  .pg_flow  .section.sec2:before{
    width: 100vw;
    height: 100%;
    border-radius: 0 100px 100px 0;
    top: 5%;
    right: 10%;
  }
}
@media (min-width:1200px){
  .pg_flow{

  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec1:before {
    width: 100vw;
    height: 78%;
    border-radius: 100px 0 0 100px;
    top: 29%;
    left: 27.5%;
    bottom: 0;
    z-index: -1;
  }
  .pg_flow .section.sec2{

  }
  .pg_flow .section.sec2:before {
    width: 100vw;
    height: 100%;
    top: 6%;
    right: 25%;
  }
}
@media (min-width:1470px){
  .pg_flow .section.sec2{
    padding-top: 200px;
  }
  .pg_flow .section.sec2:before {
    width: 100vw;
    height: 100%;
    top: 8%;
    right: 25%;
  }
}
@media (min-width:1720px){
  .pg_flow{
    padding-top: 105px;
    padding-bottom: 135px;
  }
  .pg_flow .section.sec1{

  }
  .pg_flow .section.sec2{
    padding-top: 320px;
  }
  .pg_flow .section.sec2:before {
    width: 100vw;
    height: 96%;
    top: 11%;
    right: 34%;
  }
}

/* メイン */
.pg_flow .cmn_about_box1 .tt2:before{
  display: none !important;
}
.pg_flow .cmn_about_box1 .tt2_ja{
  margin-top: 0;
}

/* ご利用までの流れ */
.flow_contents{

}
.flow_contents_head{

}
.flow_head_ja{

}
.flow_head_en.cmn_head_en{
  color: var(--main-color);
}
.flow_contents_rows{
  margin-top: 30px;
}
.flow_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #FFF;
  border-radius: 30px;
  position: relative;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
.flow_contents_row:nth-child(n+2){
  margin-top: 55px;
}
.flow_contents_row:after{
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 3;
  background-image: url(https://ks3.co.jp/system_panel/uploads/images/triangle.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  position: absolute;
  left: 0%;
  bottom: 0;
  transform: translateY(30px);
  pointer-events: none;
}
.flow_contents_row:last-child:after{
  display: none;
}

.flow_contents_box1{
  width: 100%;
}
.flow_contents_box2{
  width: 100%;
  margin-top: 20px;
}
.flow_contents_img{
  border-radius: 30px;
}
.flow_contents_img:before{
  padding-top: 75%;
}
.flow_contents_head{

}
.flow_contents_box2_head:after{
  content: "";
  display: flex;
  width: auto;
  height: auto;
  aspect-ratio: 958 / 4;
  background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom3.png);
  background-repeat: no-repeat;
  margin-top: 15px;
  margin-bottom: 15px;
}
.flow_contents_num{
  display: flex;
  margin-bottom: 15px;
}
.flow_contents_num p{
  width: auto;
  font-size: 15px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  background: var(--main-color);
  color: #FFF;
  text-align: center;
  border-radius: 50px;
  padding: 0 20px;
}
.flow_contents_title{
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.flow_contents_txt{

}



@media (max-width:374px){

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

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

}
@media (min-width:768px){
  .flow_contents_row{
    padding: 25px;
  }
  flow_contents_row:nth-child(n+2) {
    margin-top: 65px;
  }
  .flow_contents_num{
    margin-bottom: 20px;
  }
  .flow_contents_num p{
    font-size: 18px;
  }
  .flow_contents_title{
    font-size: 28px;
  }
}
@media (min-width:1024px){
  /* メイン */
  .pg_flow .cmn_about_box1 .tt2:before{
    display: none !important;
  }
  .pg_flow .cmn_about_box1 .tt2_ja{
    margin-top: 20px;
  }

  /* ご利用までの流れ */
  .flow_contents{

  }
  .flow_contents_head{

  }
  .flow_head_ja{

  }
  flow_head_en{

  }
  .flow_contents_rows{
    margin-top: 60px;
  }
  .flow_contents_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #FFF;
    border-radius: 30px;
    position: relative;
    padding: 25px;
  }
  .flow_contents_row:nth-child(n+2){
    margin-top: 65px;
  }
  .flow_contents_row:after{
    content: "";
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 3;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/triangle.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    position: absolute;
    left: 0%;
    bottom: 0;
    transform: translateY(30px);
  }
  .flow_contents_row:last-child:after{
    display: none;
  }

  .flow_contents_box1{
    /*width: 100%;*/
    width: 33.5%;
  }
  .flow_contents_box2{
    /*width: 100%;*/
    width: 60.81%;
    margin-top: 0;
  }
  .flow_contents_img{
    border-radius: 30px;
  }
  .flow_contents_img:before{
    padding-top: 75%;
  }
  .flow_contents_head{

  }
  .flow_contents_box2_head:after{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 958 / 4;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom3.png);
    background-repeat: no-repeat;
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .flow_contents_num{
    display: flex;
    margin-bottom: 20px;
  }
  .flow_contents_num p{
    width: auto;
    font-size: 18px;
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.8;
    background: var(--main-color);
    color: #FFF;
    text-align: center;
    border-radius: 50px;
    padding: 0 30px;
  }
  .flow_contents_title{
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .flow_contents_txt{

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


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


}
@media (min-width:1720px){
  /* メイン */
  .pg_flow .cmn_about_box1 .tt2:before{
    display: none !important;
  }
  .pg_flow .cmn_about_box1 .tt2_ja{
    margin-top: 20px;
  }

  /* ご利用までの流れ */
  .flow_contents{

  }
  .flow_contents_head{

  }
  .flow_head_ja{

  }
  flow_head_en{

  }
  .flow_contents_rows{
    margin-top: 80px;
  }
  .flow_contents_row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #FFF;
    border-radius: 30px;
    position: relative;
    padding: 60px 60px;
  }
  .flow_contents_row:nth-child(n+2){
    margin-top: 55px;
  }
  .flow_contents_row:after{
    content: "";
    width: 100%;
    height: auto;
    aspect-ratio: 8 / 3;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/triangle.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    position: absolute;
    left: 0%;
    bottom: 0;
    transform: translateY(30px);
  }
  .flow_contents_row:last-child:after{
    display: none;
  }

  .flow_contents_box1{
    /*width: 100%;*/
    width: 28.5%;
  }
  .flow_contents_box2{
    /*width: 100%;*/
    width: 68.81%;
  }
  .flow_contents_img{
    border-radius: 30px;
  }
  .flow_contents_img:before{
    padding-top: 75%;
  }
  .flow_contents_head{

  }
  .flow_contents_box2_head:after{
    content: "";
    display: flex;
    width: auto;
    height: auto;
    aspect-ratio: 958 / 4;
    background-image: url(https://ks3.co.jp/system_panel/uploads/images/border-bottom3.png);
    background-repeat: no-repeat;
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .flow_contents_num{
    display: flex;
    margin-bottom: 20px;
  }
  .flow_contents_num p{
    width: auto;
    font-size: 20px;
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.8;
    background: var(--main-color);
    color: #FFF;
    text-align: center;
    border-radius: 50px;
    padding: 0 30px;
  }
  .flow_contents_title{
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  .flow_contents_txt{

  }
}






/*******************************
*　works
********************************/

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

}
.pg_works .section.sec1{

}
.pg_works .section.sec2{
  padding-top: 0;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_works .section.sec1{
    padding-bottom: 30px;
    ;
  }

  .works_list .webgene-item .category{
    margin-top: 0;
  }

  .works_cate_list{
    display: none;
  }

  .pg_works .works_list{
    margin-top: 0;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_works{

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 0;
  }

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


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

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 50px;
  }

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


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


}

/* メイン部分 */

/*カテゴリ*/
.works_cate_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}

/*詳細*/
.works_detail{
  position: relative;
  padding-top: 30px;
}
.works_detail:before{
  content: "";
  display: block;
  width: 100vw;
  height: 500px;
  background: #e6e6e6;
  position:absolute;
  top: 0;
  pointer-events: none;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.works_detail .meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.works_detail .date{
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #000000;
  letter-spacing: 0;
  margin-right: 15px;
}
.works_detail .category{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 2px 10px;
  margin-top: 5px;
  background: #fff;
}
.works_detail .title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 10px;
}

@media (max-width:767px){
  .gallery_detail{
    margin-top: 40px;
  }

  .works_detail:before{
    height: 250px;
  }
}
@media (min-width:768px){
  /*カテゴリ*/
  .works_cate_list .webgene-blog{
    margin-inline:-13.5px;
  }
  .works_cate_list .webgene-item.contents_cate_item{
    padding-inline:13.5px;
  }

  /*詳細*/
  .works_detail:before{
    height: 480px;
  }
  .works_detail .category{
    margin-top: 0;
  }
  .works_detail .title{
    font-size: 20px;
  }
}
@media (min-width:1024px){
  .pg_works .webgene-pagination{
    margin-top: 100px;
  }

}
@media (min-width:1200px){
  /*カテゴリ*/
  .works_cate_list .webgene-blog{

  }
  .works_cate_list .webgene-item.contents_cate_item:nth-child(n+5){
    margin-top: 27px;
  }


  /*リスト*/
  .pg_works .works_list.noi_slide .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }

  /*詳細*/
  .works_detail{
    padding-top: 57px;
  }

  .works_detail:before{
    height: 717px;
    margin-right: 0;
    right: 0;
  }
  .works_detail .category{
    margin-top: 0;
  }
  .works_detail .title{

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


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


}




/*******************************
*　ブログ
********************************/

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

}
.pg_blog .section.sec1{

}
.pg_xxx .section.sec2{

}


/*詳細*/
.blog_detail{
  box-shadow: 0px 0px 12.75px 2.25px rgba(0, 0, 0, 0.1);
  padding: 30px 16px;
}
.blog_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog_detail .meta .date{
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: #000;
  letter-spacing: 0;
  margin-right: 16px;
}
.blog_detail .meta .category{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  display: inline-block;
  text-align: center;
  border: 1px solid #b3b3b3;
  padding: 1px 10px;
}
.blog_detail .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  border-bottom: 2px solid #313332;
  padding-bottom: 16px;
  margin-top: 16px;
}
.blog_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.125em;
  padding-top: 30px;
}
.blog_detail{

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

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

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

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

  }
  .pg_blog .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

  /*詳細*/
  .blog_detail{
    padding: 42px 24px;
  }
  .blog_detail .meta{

  }
  .blog_detail .meta .date{

  }
  .blog_detail .meta .category{

  }
  .blog_detail .title{
    margin-top: 30px;
    padding-bottom: 25px;
  }
  .blog_detail .post_content{
    padding-top: 40px;
  }
  .blog_detail{

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

  }
  .pg_blog .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

  /*詳細*/
  .blog_detail{
    padding: 42px 67px 70px;
  }
  .blog_detail .meta{

  }
  .blog_detail .meta .date{

  }
  .blog_detail .meta .category{

  }
  .blog_detail .title{

  }
  .blog_detail .post_content{

  }
  .blog_detail{

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


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


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


}

/* メイン部分 */
.pg_blog .blog_list .webgene-item .img:before{
  padding-top: 83.33%;
}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_blog .blog_list .webgene-item .box1{
    width: 29.81%;
  }
  .pg_blog .blog_list .webgene-item .box2{
    width: 65.83%;
  }
  .pg_blog .blog_list .webgene-item a:after{
    right: 12px;
  }
  .pg_blog .blog_list .webgene-item a:hover:after{
    right: 5px;
  }
}
@media (min-width:1024px){


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


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


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


}





/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #9e9c9c;
  padding: 10px 10px;
  font-weight: 500;
}
.company_tbl p{
  letter-spacing: 0.05em;
}
.company_tbl .table_rows_th{
  background: #f5f5f5;
  border-inline:none;
}
.company_tbl .table_rows_td{
  background: #FFF;
  border-inline:none;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

.gmap{
  margin-top: 40px;
}
.access_map iframe{
  border: none;
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{
  }
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom:1px solid #9e9c9c;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;

  }
  .company_tbl .table_rows_td{
    border-inline:none;
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }

  .gmap{
    margin-top: 48px;
  }
  .access_map iframe{
    height: 450px;
  }


  /* ギャラリー */
  .company_gallery_items{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .company_gallery_items{
    margin-top: 40px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 60px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }

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


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


}


/* カテゴリNav */
.cmn_cat_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav li a:after{
  content: "→";
  font-size: 10px;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav li.on a,
.cmn_cat_nav li a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 li a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 li a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 li a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp li{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp li{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp li{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp li{
    font-size: 10px;
  }

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav li{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav li a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav li a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav li{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav.col2 li{
    width: 50%;
  }
  .cmn_cat_nav.col3 li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 li{
    width: 25%;
  }
  .cmn_cat_nav.col5 li{
    width: 20%;
  }

}


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

/* 一覧（サムネあり） */
.news_list_thumb{

}
* + .news_list_thumb{
  margin-top: 50px;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.news_list_thumb .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list_thumb .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.news_list_thumb .webgene-item{

}
.news_list_thumb .webgene-item .inner{
  display: block;
  height: 100%;
  position: relative;
  z-index: 1;
  color: #000;
  background: #FFF;
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  border-radius: 30px 30px 0 0 ;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 72.22%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 14px;
  font-weight: 700;
  background: var(--sub-color);
  color: #fff;
  border-radius: 5px;
  padding: 0 16px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.075em;
  margin-right: 15px;
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 0;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .news_list_thumb .webgene-item{

  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px;
  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 13px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 16px;
    margin-right: 25px;
  }
  .news_list_thumb .webgene-item .title{

  }

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

  /* 一覧（サムネあり） */


  /* 3カラム */
  .news_list_thumb .webgene-item{
    width: 33.333%;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb .webgene-item:nth-child(n+4){
    margin-top: 15px;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

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

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 0px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -20px;
    margin-right: -20px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 20px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 30px;
  }

  .news_list_thumb .webgene-item .title{
    font-size: 18px;
    line-height: 2;
  }



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


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


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 30px;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: var(--bk1-color);
  color: var(--txt-color);
  padding: 6px 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left:0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 6px;
}
.posts_cat_item a{
  display: block;
  font-weight: 500;
  position: relative;
  padding-left: 33px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: var(--sub-color);
}

/* 詳細 */
.posts_detail{
  border: 0;
  border-bottom: 1px solid #b9ad98;
  /*padding: 15px 10px;*/
  padding-bottom: 15px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #b9ad98;
  padding-bottom: 8px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-right: 20px;
}
.posts_detail .meta .category span{
  display: inline-block;
  text-align: center;
  min-width: 90px;
  font-size: 15px;
  font-weight: 700;
  background: var(--sub-color);
  color: #fff;
  border-radius: 5px;
  padding: 0 15px;
}
.posts_detail .meta .date{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.075;
  margin-right: 15px;
}
.posts_detail .meta .title{
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  margin-top: 15px;

}
.posts_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .post_txt{
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }
}
@media (min-width:768px){

  .pg_news{
    padding-top: 0;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 55px;
  }

  /* 詳細 */
  .posts_detail{
    /*padding: 20px 30px;*/
    padding-bottom: 28px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 12px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    min-width: 90px;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
    margin-top: 10px;
  }
  .posts_detail .post_content{
    line-height: 2.25;
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }


}
@media (min-width:1024px){
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
  }

  .posts_layout_box1.wide{
    width: 76.31%;
  }
  .posts_layout_box2.wide{
    width: 16.77%;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_layout_box1 .read_more{
    margin-top: 60px;
  }

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

  .pg_news{
    padding-top: 110px;
  }

}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: tranparent;
}
.gallery_main .img.img_fit:before{
  padding-top: 75%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{
  border: 5px solid #000000;
  background: #eaeaea;
  padding: 12px 12px;
}
.gallery_detail .inner{
  background: #fff;
  padding: 16px;
}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  word-break: break-all;
  letter-spacing: 0.025em;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


/* コピー用 */
@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    padding-right: 36px;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;

  }
  .gallery_thumb .img{
    height: 100%;

  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 100%;
    margin-top: 50px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

  .gallery_detail .inner{
    padding: 32px 56px 32px 48px;
  }

  .pg_works .read_more{
    margin-top: 80px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 100%;
    margin-top: 30px;
    margin-top: 84px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

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


}







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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
