@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #002e73;
  --sub-color: #eeeeee;
  --txt-color: #181818;
  --bk-logo-color: #f7f7f7;

  /* フォント関連 */
  --font-ja: "Noto Sans JP";
  --font-en: "Oswald", sans-serif;
  --font-en1: "Outfit", '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: "Noto Sans JP", 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.05em;
}
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: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
}

.hdr1{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 0;
}
.hdr_logo .invert {
  color: #000;
}
.hdr_logo img{
  display: block;
  width: 150px;
  height: var(--logo-height);
  height: auto;
  transition: 0.2s all;
}
.hdr_logo1{
  margin-left: 15px;
}
.hdr_logo_txt{
  margin-left: 20px;
}

/* メニュー全般 */
.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: 20px;*/
}
.hdr_contact a{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gra1);
  color: #FFF !important;
  width: 110px;
  height: 100px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.5s all;
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  background-color: #000;
}
.hdr_contact a:before{
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 31 / 31;
  background-image: url(https://sit-4013555.sibloo.com/system_panel/uploads/images/envelope.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 12px;
  margin-bottom: 4px;
}
.hdr_contact a:hover{
  background: #000;
  color: #FFF;
}

/* 採用ボタン */
.hdr_recruit{
  display: flex;
  align-items: center;
  margin-left: 50px;
}
.hdr_recruit a{
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gra3);
  color: #FFF !important;
  width: 110px;
  height: 100px;
  padding: 10px 5px;
  text-align: center;
  transition: all 0.5s;
  ;
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  background-color: #000;
}
.hdr_recruit a:before{
  content: "";
  display: inline-block;
  width: 30px;
  aspect-ratio: 31 / 31;
  background-image: url(https://sit-4013555.sibloo.com/system_panel/uploads/images/people-group.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 4px;
  margin-bottom: 10px;
}
.hdr_recruit a:hover{
  background: #000;
  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){
  .hdr_logo{
    width: auto;
  }
  .hdr_logo img {
    display: block;
    width: 150px;
    height: var(--logo-height);
    height: auto;
    transition: 0.2s all;
    position: absolute;
    top: 30px;
    z-index: 2;
  }
  .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){
  .hdr_logo {
    padding: 0px 0 0 50px;
  }

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 25px;
  }
  .header{
    --logo-height: 50px;
    background: none;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .2s;
    padding-top: 23px;
  }
  .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 25px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*    width: 80px;*/
  }
  .header .hdr_logo img.logo_blue{
    display: none;
  }

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

  .hdr_logo .logo_white{

  }
  .header.slim .hdr_logo .logo_white{
    display: none;
  }
  .header.slim .hdr_logo .logo_blue{
    display: block;
  }

  /* TELボタン */
  .hdr_tel{

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


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

  .hdr1{

  }

  /* ロゴ */
  .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){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 20px;
  }
  .header{
    --logo-height: 50px;
  }
  /* ロゴ */
  .hdr_logo{
    padding: 0 0 0 50px;
  }
  .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:1470px){
  .hdr1{
    padding: 0 0 0 25px;
  }
}
@media (min-width:1720px){
  .header{
    --logo-height: 50px;
  }
  /* ロゴ */
  .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;
  margin-right: auto;
  position: relative;
  border-radius: 0;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*  padding-top: 46.51%;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(95vh - 64px);
}
.mv_img_title{
  font-size: 30px;
  font-weight: 900;
  font-family: var(--font-ja);
  line-height: 1em;
  color: #FFF;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
  writing-mode: vertical-rl;
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 3;
}
.mv_img_title p:nth-child(n+2) {
  margin-right: 8px;
}
.mv_img_title p{
  letter-spacing: 0.025em;
}

/* MVテキスト */
.mv_inner{
  position: relative;
}
/*.mv_inner:before{
  content: "";
  display: block;
  width: 100vw;
  height: 110%;
  background: #f2f2f2;
  position: absolute;
  top: 6%;
  z-index: -1;
}*/
.mv_txt_box{
  width: 100%;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.mv_txt_box1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 28px;
  font-weight: 700;
  font-family: var(--font-ja);
  line-height: 0.9em;
  color: var(--txt-color);
  position: relative;
}
.mv_txt_box1 p{
  position: relative;
}
.mv_txt_box:before{
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 13 / 25;
  background-image: url(/system_panel/uploads/images/mv_cormer1.png) ;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: auto;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}
/*.mv_txt_box1:before{
  content: "";
  display: inline-block;
  width: 27px;
  aspect-ratio: 13 / 25;
  background-image: url(/system_panel/uploads/images/mv_cormer2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
 top: auto;
  right: 0;
  left: auto;
  bottom: 22px;
  transform: translateY(-50%);
}*/
.mv_txt_box1 p:after{
  content: "";
  display: inline-block;
  width: 26px;
  aspect-ratio: 13 / 25;
  background-image: url(/system_panel/uploads/images/mv_cormer2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: auto;
  right: -25px;
  left: auto;
  bottom: -27px;
  transform: translateY(-50%);
}

.mv_txt_box1 p:nth-child(n+2) {
  padding-left: 20px;
  padding-right: 10px;
}
.mv_txt_box1 p{
  letter-spacing: 0.075em;
  line-height: 1;
  background: #FFF;
  padding: 10px 10px;
}


/* スライダーの場合 */
.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: 0;
  }
  .mv_img{
    width: 97.41%;
    border-radius: 30px;
  }
  .mv_img.img_fit:before{
    padding-top: 60.45%;
  }

  /* MVテキスト */
  .mv_txt_box{
    top: auto;
    left: 8px;
    bottom: 0;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    padding-left: 30px;
  }

  .mv_txt_box1{
    font-size: 35px;
  }
  .mv_txt_box:before{
    width: 16px;
    top: auto;
    right: 0;
    left: 0;
    transform: translateY(-50%);
  }
  .mv_txt_box1 p:after{
    width: 30px;
    top: auto;
    right: -30px;
    left: auto;
    bottom: -30px;
    transform: translateY(-50%);
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{

  }
  .mv_img.img_fit:before{
    padding-top: 55.45%;
  }
  .mv_img_title {
    font-size: 50px;
    right: 5%;
  }

  /* MVテキスト */
  .mv_txt_box{
    top: auto;
    left: 8px;
    bottom: 0;
  }
  .mv_txt_box1{
    font-size: 45px;
  }
  .mv_txt_box:before {
    width: 20px;
    top: auto;
    right: 0;
    left: 0;
    transform: translateY(-50%);
  }
  .mv_txt_box1:before {
    width: 36px;
    top: auto;
    right: -5px;
    left: auto;
    bottom: 27px;
    transform: translateY(-50%);
  }
  .mv_txt_box1 p:after {
    width: 35px;
    top: auto;
    right: -32px;
    left: auto;
    bottom: -35px;
    transform: translateY(-50%);
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
    padding: 0;
  }
  .mv_img{
    width: 97.91%;
  }
  .mv_img.img_fit:before{
    padding-top: 50.45%;
  }

  /* MVテキスト */
  .mv_txt_box {
    top: auto;
    left: 8px;
    bottom: 0;
  }
  .mv_txt_box1 {
    font-size: 45px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    padding-left: 40px;
  }
  .mv_txt_box:before {
    width: 20px;
    top: auto;
    right: 0;
    left: 0;
    transform: translateY(-50%);
  }
  .mv_txt_box1:before {
    width: 36px;
    top: auto;
    right: 0;
    left: auto;
    bottom: 27px;
    transform: translateY(-50%);
  }
  .mv_txt_box1 p:after {
    width: 35px;
    top: auto;
    right: -34px;
    left: auto;
    bottom: -36px;
    transform: translateY(-50%);
  }
}
@media (min-width:1360px){
  .mv_scroll:before{
    height: 148px;
  }

  .mv_txt_box1 {
    font-size: 58px;
  }
  .mv_txt_box:before {
    width: 20px;
    top: auto;
    right: 0;
    left: 0;
    transform: translateY(-50%);
  }
  .mv_txt_box1:before {
    width: 41px;
    top: auto;
    right: -4px;
    left: auto;
    bottom: 38px;
    transform: translateY(-50%);
  }
  .mv_txt_box1 p:after {
    width: 42px;
    top: auto;
    right: -41px;
    left: auto;
    bottom: -42px;
    transform: translateY(-50%);
  }
}
@media (min-width:1470px){
  /* MV */.mv_img {
    width: 97.91%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .mv_img.img_fit:before{
    padding-top: 47.48%;
  }
  .mv_img_title {
    font-size: 60px;
    right: 10%;
  }

  /* MVテキスト */
  .mv_txt_box {
    top: auto;
    left: 8px;
    bottom: 0;
  }
  .mv_txt_box1 {
    font-size: 67px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    padding-left: 95px;
  }
  .mv_txt_box1 p {
    /*    padding: 28px 20px;*/
  }

  .mv_txt_box:before {
    width: 20px;
    top: auto;
    right: 0;
    left: 0;
    transform: translateY(-50%);
  }
  .mv_txt_box1:before {
    width: 47px;
    top: auto;
    right: 47px;
    left: auto;
    bottom: 40px;
    transform: translateY(-50%);
  }
  .mv_txt_box1 p:after {
    width: 46px;
    top: auto;
    right: -44px;
    left: auto;
    bottom: -45px;
    transform: translateY(-50%);
  }
}
@media (min-width:1720px){
  .mv_img {
    width: 97.91%;
    margin-left: auto;
    margin-right: auto;
  }
  .mv_img_title{
    font-size: 80px;
    font-weight: 900;
    font-family: var(--font-ja);
    line-height: 1em;
    color: #FFF;
    text-shadow: 0 0 20px rgba(0,0,0,0.35);
    text-shadow: 0px 0px 16px rgba(24, 24, 24, 1);
    writing-mode: vertical-rl;
    position: absolute;
    top: 10%;
    right: 9.3%;
    z-index: 3;
  }
  .mv_img_title p:nth-child(n+2) {
    margin-right: 22px;
  }
  .mv_img_title p{
    letter-spacing: 0.025em;
  }

  .mv_txt_box{
    width: 100%;
    position: absolute;
    top: auto;
    left: 20px;
    bottom: 0;
  }
  /* MVテキスト */
  .mv_txt_box1 {
    font-size: 67px;
  }
  .mv_txt_box1 p {
    padding: 26px 5px 26px 20px;
  }
  .mv_txt_box1 p:nth-child(n+2) {
    padding-left: 180px;
    padding-right: 0px;
  }

  .mv_txt_box:before {
    width: 20px;
    top: auto;
    right: 0;
    left: 0;
    transform: translateY(-50%);
  }
  .mv_txt_box1 p:after {
    width: 64px;
    top: auto;
    right: -64px;
    left: auto;
    bottom: -65.2px;
    transform: translateY(-50%);
  }

}

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

/* サイドバー */
.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: 50px;
  position: relative;
  z-index: 0;
  padding: 8px;
}
.pg_header_mv_img{
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border-radius: 30px;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 200px;
}
/*.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}*/

.pg_header_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_line_title{
  display: flex;
  flex-direction: column;
  align-items: center;
  /*  margin-top: 15px;*/
}
.pg_header_title_en{
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1.5;
  color: #fff;
  background: var(--main-color);
  padding: 0 5px;
}
.pg_header_title_ja{
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.025em;
  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: 97.91%;
}
.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;
    padding: 0;
  }
  .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;
  }
  /* MVタイトル */
  .pg_header_line_title{
    margin-top: 5px;
  }

}
@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: 20px;
    padding: 0px 10px;
  }
  .pg_header_title_ja{
    font-size: 40px;
    margin-top: -18px;
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 150px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 450px;
  }

  .pg_header_title_txt{

  }

  .pg_header_mv_inr{
    padding: 100px 0 100px;
  }
  /* MVタイトル */
  .pg_header_line_title{
    margin-top: 15px;
  }

  .pg_header_title_ja{
    font-size: 60px;
  }
}
@media (min-width: 1720px) {
  .pg_header {
    margin-bottom: 150px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 600px;
  }
}


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

.footer{
  margin-top: 80px;
}


/* お問い合わせ */
.ftr_contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 25px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box2{
  width: 100%;
}

.ftr_contact_head{
  margin-bottom: 20px;
}
.ftr_contact_head_en{
  font-size: 42px;
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--txt-color);
}
.ftr_contact_head_ja{
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 2;
  margin-top: 30px;
}
.ftr_contact_head_ja + .ftr_contact_head_ja{
  margin-top: 0;
}

.ftr_contact_btns{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_btns_item{
  width: 100%;
  padding: 25px 15px;
  text-align: center;
}
.ftr_contact_btns_item{
}
.ftr_contact_btns_item_title{
  margin-bottom: 20px;
}
.ftr_contact_btns_item_tel{
  text-align: center;
}
.ftr_contact_btns_item_tel_txt1{
  font-size: 24px;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
}
.ftr_contact_btns_item_tel_txt2{
  font-size: 14px;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.ftr_contact_btns_item_link{
  display: flex;
  justify-content: center;
}
.ftr_contact_btns_item_link_a{
  width: 200px;
  background: var(--main-color);
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  border-radius: 5px;
  padding: 10px 10px;
}
.ftr_contact_btns_item_link_a:hover{
  background-color: var(--sub-color);
  color: var(--txt-color);
}

/*  */
.ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.ftr1_box1{
  width: 365px;
}
.ftr1_box2{
  width: 745px;
  margin-top: 10px;
}

.ftr2{
  margin-top: 50px;
}

.ftr_logo{
  text-align: center;
  margin-bottom: 20px;
}
.ftr_logo img{
  width: 140px;
}
.ftr_addr{
  font-size: 14px;
  line-height: 1.875;
  text-align: center;
}
.ftr_addr + .ftr_addr{
  margin-top: 10px;
}
.ftr_sns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  margin-top: 30px;
}
.ftr_sns_item{
  margin-left: 10px;
}
.ftr_sns_item:first-child{
  margin-left: 0;
}
.ftr_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.ftr_links_item{
  /*width: 20%;*/
  text-align: center;
  margin: 5px 0;
  /*border-right: 1px solid #a7a7a7;*/
}
.ftr_links_item + .ftr_links_item{

}
.ftr_links_item_a{
  font-size: 15px;
  line-height: 1;
}

/**/
.ftr_copy{
  font-size: 14px;
  font-family: var(--font-ja);
  font-weight: 400;
  text-align: center;
  background: var(--main-color);
  color: #FFF;
  border-top: 1px solid #fff;
  padding: 5px 5px;
  margin-top: 30px;
}
.ftr_copy a:hover{
  color: var(--sub-color);
}

/**/
.ftr_1{
  background: var(--main-color);
  margin-top: 50px;
  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: 10px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2.25em;
  color: #FFF;
}
.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: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ftr_add_txt2{
  padding-left: 16px;
}
.ftr_add_txt2 a:hover{
  color: #808080;
}
.ftr_1_box2{
  width:100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  background: #eeeeee;
  position: relative;
  z-index: 1;
}
.ftr_links{
  width: 100%;
}
.ftr_link{

}


/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  border-top: 1px solid #FFF;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a,
.footer_fix > div{
  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 > a:hover,
.footer_fix > div:hover{
  color: #FFF;
}
.footer_fix .footer_fix_item_1{
  width: 40%;
  /*width: 33.3333%;*/
  /*width: 33.3333%;*/
  border-right: 1px solid #FFF;
}
.footer_fix .footer_fix_item_1.recruit{
  background: var(--sub-color);
  color: #FFF;
}
.footer_fix .footer_fix_item_1:nth-child(3n){
  border-right: 0;
}
.footer_fix .footer_fix_item_2{
  width: 20%;
  background: var(--main-color);
}
.footer_fix > a i,
.footer_fix > div 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: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  /**/
  .ftr_contact_head{
    text-align: center;
  }
  .ftr_contact_head_en{
    font-size: 30px;
  }
  .ftr_contact_head_ja{
    margin-top: 15px;
    font-size: 12px;
  }
  .ftr_contact_btns_item{
    border-top: 1px solid #a39c92;
  }
  .ftr_contact_btns_item{

  }
  .ftr_contact_btns_item_title img{
    height: 70px;
  }

  .ftr_addr{
    font-size: 12px;
  }

  .ftr_links{
    display: none;
  }

  .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_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_item{
    width: 295px;
    margin-inline: auto;
    justify-content: center;
  }

  .mv_txt_box1 p{
    padding: 10px 25px;
  }
  .mv_txt_box1 p:nth-child(n+2){
    padding-right: 40px;
    border-radius: 0 20px 0 0;
  }
  .mv_txt_box1 p:after{
    width: 28px;
    aspect-ratio: 19 / 44;
    right: -23px;
    left: auto;
    bottom: -49px;
  }
  .mv_txt_box1 p:nth-child(2):after{
    width: 36px;
    right: -29.5px;
    bottom: -73px;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  /* お問い合わせ */
  .ftr_contact{
    padding-top: 25px;
    padding-bottom: 25px;
    align-items: center;
  }
  .ftr_contact_box1{
    width: 100%;
  }
  .ftr_contact_box2{
    width: 100%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: center;
  }
  .ftr_contact_head_en{
    font-size: 42px;
  }
  .ftr_contact_head_ja{
    font-size: 15px;
    line-height: 2;
    margin-top: 20px;
  }


  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    width: 50%;
    padding: 40px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #bfbfbf;
  }
  .ftr_contact_btns_item:nth-child(2n){
    border-right: 1px solid #bfbfbf;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 30px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 14px;
    margin-top: 10px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
    font-size: 15px;
    padding: 12px 10px;
  }

  /*  */
  .ftr1{
    margin-top: 85px;
  }
  .ftr1_box1{
    width: 285px;
  }
  .ftr1_box2{
    width: calc(100% - 285px - 30px);
    margin-top: 10px;
  }
  .ftr_logo{
    text-align: center;
    margin-bottom: 25px;
  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: center;
  }
  .ftr_addr + .ftr_addr{
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: flex-start;
    /*margin-bottom: 40px;*/
  }
  .ftr_sns_item{
    margin-left: 20px;
  }
  .ftr_links{
    margin-top: 0;
  }
  .ftr_links_item{
  }
  .ftr_links_item:nth-child(n+2){
    border-left: 1px solid #CCC;
  }
  .ftr_links_item_a{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
  }
  .ftr_links_item{
    padding-left: 15px;
    padding-right: 15px;
  }

  /**/
  .ftr_1{
    margin-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: 36.72%;
    position: relative;
    padding: 0 20px 20px;
  }
  /*  .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: 215px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #000;
    padding-bottom: 0;
    padding-top: 16px;
  }
  .ftr_link:before{
    content: "\f054";
    font-family: 'FontAwesome';
    display: block;
    width: 22px;
    aspect-ratio: 1 / 1;
    background: #000;
    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.025em;
  }

  .ftr_copy{
    padding: 10px 0;
    margin-top: 70px;
  }

}
@media (min-width:768px) and (max-width:1023px){
  .ftr_links_item{
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .ftr_links_item:nth-child(5n+1){
    border: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 175px;
  }

  /* お問い合わせ */
  .ftr_contact{
    align-items: center;
  }
  .ftr_contact_box1{
    width: 45.5%
  }
  .ftr_contact_box2{
    width: 62.5%;
    width: 51.31%;
  }

  .ftr_contact_head{
    margin-bottom: 20px;
    text-align: left;
  }
  .ftr_contact_head_en{
    font-size: 32px;
  }
  .ftr_contact_head_ja{
    font-size: 12px;
    margin-top: 20px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    padding: 25px 15px;
  }
  .ftr_contact_btns_item{
    border-left: 1px solid #bfbfbf;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_title img{
    height: 60px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{
    font-size: 24px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 12px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
  }

  /**/
  .ftr_1{

  }
  .ftr_1_box{

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

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 55.72%;
    position: relative;
    padding: 0 0 16px;
  }
  .ftr_links{
    width: 50%;
  }
  .ftr_link{
    width: 215px;
  }
}
@media (min-width:1200px){

  /*  */
  .ftr1{
    margin-top: 85px;
  }
  .ftr1_box1{
    width: 365px;
  }
  .ftr1_box2{
    width: 745px;
    width: 430px;
    margin-top: 10px;
  }
  .ftr2{
    margin-top: 80px;
  }
  .ftr_logo{
    text-align: center;
    margin-bottom: 25px;
  }
  .ftr_logo img{
    width: auto;
  }
  .ftr_addr{
    font-size: 16px;
    text-align: center;
  }
  .ftr_addr + .ftr_addr{
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: flex-start;
    /*margin-bottom: 65px;*/
  }
  .ftr_sns_item{
    margin-left: 20px;
  }
  .ftr_links{
  }
  .ftr_links_item{
  }
  .ftr_links_item_a{
    font-size: 15px;
  }

  #chatbot-btn{
    right: 70px !important;
  }

  /**/
  .ftr_1{

  }
  .ftr_1_box{
    width: auto;
  }
  .ftr_1_box1{
    width: 29.01%;
    margin-top: 10px;
  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 38px;
  }
  .ftr_add_txt{

  }
  .ftr_add_item{

  }
  .ftr_add_txt1{

  }
  .ftr_add_txt2{

  }
  .ftr_1_box2{
    width: 66.72%;
    padding: 5px 10px 20px;
  }
  .ftr_links:after {
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5%;
    right: 0px;
    /*        transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after {
    border-right: 0;
  }
  /*  .ftr_1_box2:after {
      content: "";
      display: block;
      width: 1px;
      height: 125px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 50%;
      right: 0px;
      left: 613px;
       transform: translateY(-50%) translateX(-50%);
    }*/
  .ftr_links{
    width: 33.333%;
    margin-top: 10px;
    padding-inline: 10px;
  }
  .ftr_link{
    width: 100%;
    padding-top: 0;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 10px;
  }

}
@media (min-width:1470px){
  /* お問い合わせ */
  .ftr_contact{
    padding-top: 18px;
    padding-bottom: 18px;
    align-items: center;
  }
  .ftr_contact_box1{
   width: 45.5%
  }
  .ftr_contact_box2{
    width: 50.98%;
  }

  .ftr_contact_head{
    margin-bottom: 0;
    text-align: left;
  }
  .ftr_contact_head_en{
    font-size: 42px;
  }
  .ftr_contact_head_ja{
    font-size: 15px;
    margin-top: 30px;
  }

  .ftr_contact_btns{
  }
  .ftr_contact_btns_item{
    padding: 40px 15px;
    border-left: 1px solid #a39c92;
    margin-top: 12px;
  }
  .ftr_contact_btns_item:nth-child(3n){
    border-right: 0;
  }
  .ftr_contact_btns_item_title{
    margin-bottom: 30px;
  }
  .ftr_contact_btns_item_title img{
    height: 87px;
  }
  .ftr_contact_btns_item_tel{
  }
  .ftr_contact_btns_item_tel_txt1{

    font-size: 30px;
  }
  .ftr_contact_btns_item_tel_txt2{
    font-size: 14px;
    margin-top: 5px;
  }
  .ftr_contact_btns_item_link{
  }
  .ftr_contact_btns_item_link_a{
    width: 200px;
    padding: 7px 10px;
  }

  /**/
  .ftr_1 {
    margin-top: 150px;
    padding-top: 80px;
  }
  .ftr1_box2{
    margin-top: 0;
  }
  .ftr_links:after {
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5%;
    right: 0px;
    left: auto;
    /* transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_1_box2{
    width: 66.72%;
    padding: 15px 10px 20px;
  }
  /*  .ftr_1_box2:after {
      content: "";
      display: block;
      width: 1px;
      height: 125px;
      border-right: 1px dashed #b3b3b3;
      position: absolute;
      top: 50%;
      right: 0px;
      left: 66.3%;
       transform: translateY(-50%) translateX(-50%);
    }*/
  .ftr_links_item{
    padding-left: 15px;
    padding-right: 15px;
  }
  .ftr_links {
    width: 33.333%;
    margin-top: 0;
    padding-inline: 20px;
  }
}
@media (min-width:1720px){
  /* お問い合わせ */
  .ftr_contact{
    padding-top: 18px;
    padding-bottom: 18px;
    align-items: center;
  }

  .ftr_links_item{
    padding-left: 37px;
    padding-right: 37px;
  }

  /**/
  .ftr_1 {
    margin-top: 150px;
    padding-top: 80px;
  }
  .ftr_1_box2{
    width: 60.72%;
    padding: 20px 10px 40px;
  }
  .ftr_links:after {
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5%;
    right: 0px;
    left: auto;
    /* transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links {
    width: 33.333%;
    margin-top: 12px;
    padding-inline: 30px;
  }
}


/*******************************
*　共通パーツ
********************************/
/* テキスト */
.cmn_txt{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ja);
  line-height: 2.25;
  letter-spacing: 0.05em;
  color: var(--txt-color);
  text-align: justify;
}
.cmn_txt.wh{
  color: #FFF;
}
/* テーブル用 */
.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,
.link_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  /*  margin-left: -5px;
    margin-right: -5px;*/
}
.read_more a.ja,
.link_more a.ja{
  min-width: 285px;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--main-color);
  background-color: #e8e8e8;
  border-radius: 10px;
  color: var(--txt-color);
  padding: 17px 10px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a.en{
  min-width: 285px;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--main-color);
  background-color: #e8e8e8;
  color: var(--txt-color);
  border-radius: 10px;
  padding: 17px 10px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p,
.link_more a p{
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
}
.read_more a p:after{
  content: "→";
  font-family: var(--font-ja);
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--txt-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a.en p:after{
  right: 18px;
}

.read_more a:hover,
.link_more a:hover{
  background-color: var(--main-color);
  /*  background: transparent;*/
  color: #FFF;
  border: 1px solid var(--sub-color);
}
.read_more a:hover p:after,
.link_more a:hover p:after{
  margin-right: -5px;
  color: #FFF;
}

/* 丸ボタン */
.read_more.circle{
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
}
.read_more_a.ciecle{
  align-items: center;
  min-width: 110px !important;
  min-height: 110px !important;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.5 !important;
  text-align: center;
  border: 1px solid var(--main-color)  !important;
  background: #FFF !important;
  border-radius: 50%  !important;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.2s all;
}
.read_more_a.ciecle p{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
  padding-top: 15px;
}
.read_more_a.ciecle p:after{
  content: "→";
  font-family: var(--font-ja);
  display: block;
  font-size: 15px !important;
  font-weight: 500;
  color: var(--txt-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all;
  display: var;
}
.read_more_a.ciecle:hover {
  background: var(--main-color) !important;
  color: #FFF !important;
}
.home_interview:hover .read_more_a.ciecle p:after{
  right: none !important;
  color: #FFF !important;
  transform: none;
}
.home_interview .read_more_a.ciecle p:after{
  -webkit-transform: none;
}
.home_interview:hover .read_more_a.ciecle p:after{
  color: #181818!important;
}
.home_interview .read_more_a.ciecle:hover p:after{
  color: #fff!important;
}

/* Instagramボタン */
.link_more{

}
.link_more_a p:after{
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 16 / 16;
  background-image: url(/system_panel/uploads/images/right.png) ;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: all .2s;
}
.link_more_a:hover p:after{
  content: "";
  display: inline-block;
  width: 16px;
  aspect-ratio: 16 / 16;
  background-image: url(/system_panel/uploads/images/right_wh.png) ;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.tt3{
  margin-bottom: 25px;
}
.tt2.center{
  text-align: center;
}
.tt2_en{
  font-size: 65px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
  position: relative;
}
.tt2_en.wh{
  color: #FFF;
}
.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: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 2
}
.tt2_ja.wh{
  color: #FFF;
}
.tt2_ja2{
  font-size: 16px;
  font-weight: 900;
  margin-top: 5px;
  line-height: 1;
  letter-spacing: 0.025em;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.tt2_wh_box{
  display: block;
  width: 100%;
  height: 32px;
  background: #FFF;
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.tt2_gray_box{
  background: var(--sub-color);
}
.tt2_bl_box{
  background: var(--main-color);
}
.tt2_en::after{
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: var(--main-color);
  z-index: 2;
}
.tt2_en.wh::after{
  background: #FFF;
}
/* セクション */
.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;
}

.recruit_tbl_item.company_tbl .table_rows_th{
  background: #f2f2f2;
}
@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: -100px;
  }

  /* ページネーション */
  .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: 30px;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 300px;
    font-size: 16px;
    padding: 10px 7px 10px 32px;
    margin: 0;
  }
  /*  .read_more a:after{
      content: "";
  
    }*/
  .read_more a:hover p:after{

  }

  /* 丸ボタン */
  .read_more.circle{
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .read_more_a.ciecle{
    min-width: 120px !important;
    min-height: 120px !important;
  }
  .read_more_a.ciecle p{
    padding-top: 5px;
  }
  .read_more_a.ciecle p:after{
    font-size: 15px !important;
    top: auto;
    right: 46%;
    bottom: 16%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }

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

  .tt2_ja2{
    font-size: 18px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }

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

  }

  /* 募集要項 */
  .recruit_tbl_item.company_tbl .table_rows_th {
    border-right: 0;
    vertical-align: middle;
  }
  .recruit_tbl_item.company_tbl .table_rows_td {
    border-left: 0;
  }
}
@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: 30px;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    min-width: 300px;
    font-size: 16px;
    padding: 10px 7px 10px 32px;
    margin: 0;
  }

  /* 丸ボタン */
  .read_more.circle{
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .read_more_a.ciecle{
    min-width: 120px !important;
    min-height: 120px !important;
  }
  .read_more_a.ciecle p{
    padding-top: 15px;
  }
  .read_more_a.ciecle p:after{
    font-size: 15px !important;
    top: auto;
    right: 46%;
    bottom: 16%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }

  /* Instagramボタン */
  .link_more{
    margin-top: 55px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt3{
    margin-bottom: 50px;
  }
  /* .tt2_en{
      font-size: 100px;
    }*/
  .tt2_ja{
    font-size: 16px;
  }
  .tt2_wh_box {
    height: 35px;
    top: auto;
    left: 0;
    bottom: 0;
    z-index: 0;
  }
  .tt2_en::after{
    top: auto;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 1px;
  }
}
@media (min-width:1200px){
  .sec_sub_tt{
    font-size: 40px;
  }
  .content_desc{

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

  .content_desc.msg{
    font-size: 21px;
  }
  /* 見出し */
  .tt2_en{
    font-size: 100px;
  }
  .tt2_ja {
    font-size: 16px;
  }
  .tt2_wh_box {
    height: 35px;
    top: auto;
    left: 0;
    bottom: 0;
    z-index: 0;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
    margin-top: 65px;
  }
  .read_more.right{
    justify-content: flex-end;
  }

  /* 丸ボタン */
  .read_more.circle{
    bottom: 77px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .read_more_a.ciecle{
    min-width: 140px !important;
    min-height: 140px !important;
  }
  .read_more_a.ciecle p{
    padding-top: 11px;
  }
  .read_more_a.ciecle p:after{
    font-size: 15px !important;
    top: auto;
    right: 46%;
    bottom: 16%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 10px;
  }
  .tt3{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 120px;
  }
  .tt3_en{
    font-size: 150px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 16px;
  }
}
@media (min-width:1720px){

  /* 見出し */
  .tt3{
    margin-bottom: 10px;
  }
  .tt2_en{
    font-size: 164px;
  }
  .tt3_en{
    font-size: 150px;
  }
  .tt2_ja {
    margin-top: -28px;
    line-height: 2;
  }
  .tt2_wh_box{
    width: 100%;
    height: 45px;
    top: auto;
    left: 0;
    bottom: 0;
  }
  .tt2_en::after{
    top: auto;
    left: 0;
    right: 0;
    bottom: 36px;
    height: 1px;
  }
  /* 丸ボタン */
  .read_more.circle{
    bottom: 77px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .read_more_a.ciecle{
    min-width: 160px !important;
    min-height: 160px !important;
    line-height: 1.75 !important;
  }
  .read_more_a.ciecle p{
    padding-top: 11px;
  }
  .read_more_a.ciecle p:after{
    font-size: 15px !important;
    top: auto;
    right: 46%;
    bottom: 16%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
}



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

}
.pg_home .section.sec1{
  padding-top: 30px;
  position: relative;
}
.pg_home .section.sec2{
  /*  background: var(--main-color);*/
  position: relative;
}
.pg_home .section.sec2:after{
  content: "";
  background: var(--main-color);
  height: 350px;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.pg_home .section.sec3{
  padding-top: 30px;
  background: var(--sub-color);
}
.pg_home .section.sec4{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_home .section.sec5{
  padding-bottom: 60px;
  position: relative;
  background: var(--main-color);
}
.pg_home .section.sec6{
  padding-top: 20px;
}

@media (max-width:374px){

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

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

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

  }
  .pg_home .section.sec1{
    padding-top: 50px;
  }
  .pg_home .section.sec2{
    padding-bottom: 45px;
  }
  .pg_home .section.sec3{
    padding-top: 30px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-bottom: 65px;
  }
  .pg_home .section.sec6{
    padding-top: 20px;
  }
}
@media (min-width:1024px){
  .pg_home{

  }
  .pg_home .section.sec1{
    padding-top: 85px;
  }
  .pg_home .section.sec2:after {
    height: 400px;
  }
  .pg_home .section.sec2{
    padding-bottom: 50px;
  }
  .pg_home .section.sec3{
    padding-top: 30px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-bottom: 65px;
  }
  .pg_home .section.sec6{

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

  }
  .pg_home .section.sec1{
    padding-top: 85px;
  }
  .pg_home .section.sec2:after {
    height: 430px;
  }
  .pg_home .section.sec2{
    padding-bottom: 60px;
  }
  .pg_home .section.sec3{
    padding-top: 30px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-bottom: 75px;
  }
  .pg_home .section.sec6{
    padding-top: 25px;
  }

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

  }
  .pg_home .section.sec1{
    padding-top: 70px;
    padding-bottom: 160px;
  }
  .pg_home .section.sec2:after {
    height: 520px;
  }
  .pg_home .section.sec2{
    padding-bottom: 75px;
  }
  .pg_home .section.sec3{
    padding-top: 30px;
    padding-bottom: 140px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-bottom: 83px;
  }
  .pg_home .section.sec6{
    padding-top: 30px;
  }
}
@media (min-width:1720px){
  .pg_home{

  }
  .pg_home .section.sec1{
    padding-top: 70px;
    padding-bottom: 160px;
  }
  .pg_home .section.sec2:after {
    height: 545px;
  }
  .pg_home .section.sec2{
    padding-bottom: 75px;
  }
  .pg_home .section.sec3{
    padding-top: 30px;
    padding-bottom: 140px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-bottom: 83px;
  }
  .pg_home .section.sec6{
    padding-top: 30px;
  }
}


/* メイン */
.home_slide_txt p{
  font-size: 75px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px var(--main-color);
}
.home_slide_txt.wh p{
  -webkit-text-stroke:0;
  color: var(--main-color);
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}
.pg_about .section.sec2 .home_slide_txt.wh p{
  margin-right: 30px;
}
.home_bk_txt{
  position: absolute;
  width: 120%;
  top: auto;
  left: 60px;
  right: 0;
  bottom: 0;
  aspect-ratio: 2179 / 1515;
  z-index: -1;
}
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}
.home_about_box1{
  width: 100%;
}
.home_about_box1_img{
  border-radius: 20px;
}
.home_about_box1_img:before{
  padding-top: 110%;
}
.home_about_box2{
  width: 100%;
  margin-top: 25px;
}
.home_contents_head{

}
.home_contents_head_en{
  font-size: 45px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
.home_contents_head_ja.center,
.home_contents_head_en.center{
  text-align: center;
}
.home_contents_title{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-ja);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--txt-color);
  margin-top: 30px;
  margin-bottom: 25px;
}
.home_contents_txt .cmn_txt{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ja);
  line-height: 2.25;
  letter-spacing: 0.05em;
  color: var(--txt-color);
}

/* SERVICE */
.home_service{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.home_service_item{
  width: 100%;
}
.home_service_item:nth-child(n+2){
  margin-top: 30px;
}
.home_service_item_inner{

}
.home_service_item_img img{
  transition: transform .6s ease;
  transform: scale(1);
}
.home_service_item_img:hover img{
  transform: scale(1.08);
}
.home_service_item_img:before{
  padding-top: 120%;
}
.home_house_item_box{
  position: relative;
}
.home_house_item_title_link{
  z-index: 2;
}
.home_house_item_title_link:after{
  content: "→";
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-ja);
  color: var(--txt-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: auto;
  right: 12px;
  bottom: -13px;
  width: 46px;
  height: 46px;
  background: none;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transition: 0.2s all;
  z-index: 2;
}
.home_service_item:hover .home_house_item_title_link:after{
  background: #FFF;
}
.home_service_item_title{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  line-height: 1;
  letter-spacing: 0.075em;
  color: #FFF;
  margin-top: 18px;
  margin-bottom: 15px;
  border-bottom: 1px solid #FFF;
  padding-bottom: 20px;
}
.home_service_item_txt{
  letter-spacing: 0.075em;
  line-height: 1.625;
}

/* WORK */
.works_list.home{
  margin-top: 40px;
}
.works_list.home .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.works_list.home .webgene-item{
  width: 60%;
}
.works_list.home .box1{

}
.works_list.home .box1 img{
  border-radius: 20px;
}
.works_list.home .box1 .img:before{
  padding-top: 118.90%;
}

/* INTERVIEW */
.home_interview{
  display: block;
  position: relative;
  cursor: pointer;
}
.home_interview_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_interview_box1{
  width: 100%;
}
.home_interview_box1_img{

}
.home_interview_box1_img:before{
  padding-top: 74.29%;
}
.home_interview_box2{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home_interview_box2_top{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 50.06%;
}
.home_interview_box2_top1{
  /*width: 100%;*/
  width: 47.64%;
}
.home_interview_box2_top2{
  /*width: 100%;*/
  width: 52.36%;
}
.home_interview_box2_top1_img{
  height: 100%;
}
.home_interview_box2_top1_img:before{
  padding-top: 200px;
  /* height: 100%;
}
.home_interview_box2_top2_img{
height: 100%;
}
.home_interview_box2_top2_img:before{
/*  padding-top: 0;*/
  height: 100%;
}
.home_interview_box2_btm{
  height: 49.94%;
}
.home_interview_box2_btm_img{
  height: 130%;
}
.home_interview_box2_btm_img:before{
  padding-top: 0;
  height: 100%;
}


/* TOPICS */
.home_slide_txt.wh{
  position: absolute;
  top: 25px;
  left: 0;
  bottom: auto;
  /*  transform: translateX(-50%);*/
}
home_slide_txt.wh p {
  -webkit-text-stroke: 1px #FFF;
}
.home_topics{
  margin-top: 90px;
}
.home_topic_head{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.home_topic_head_en{
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-en1);
  line-height: 1.1;
  letter-spacing: 0;
  color: #FFF;
  border-right: 1px solid #FFF;
  padding-right: 20px;
}
.home_topic_head_ja{
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-ja);
  letter-spacing: 0.075em;
  color: #FFF;
  padding-left: 20px;
}
.home_topics .topics_list{
  margin-top: 25px;
}
.home_topics .topics_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-inline: -20px;
}
.home_topics .topics_list .webgene-item{
  width: 50%;
  border-right: 1px solid #FFF;
  padding-inline: 20px;
  padding-bottom: 20px;
}
.home_topics .topics_list .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.home_topics .topics_list .webgene-item:last-child{
  border-right: 0;
}
.home_topics .topics_list .webgene-item .box1{

}
.home_topics .topics_list .webgene-item .box1 .img_fit:before{
  padding-top: 80%;
}
.home_topics .topics_list .webgene-item .box2{
  margin-top: 5px;
}
.home_topics .topics_list .webgene-item .meta{

}
.home_topics .topics_list .webgene-item .category{
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-ja);
  line-height: 1.875;
  letter-spacing: 0;
  color: var(--txt-color);
  display: inline-block;
  background: #FFF;
  padding: 0px 15px;
}
.home_topics .topics_list .webgene-item .title{
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-ja);
  line-height: 1.75;
  letter-spacing: 0;
  text-align: justify;
  color: #FFF;
  margin-top: 8px;
}
.home_topics .read_more{

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

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

}
@media (max-width:767px){
  .pg_home .section.sec2 {
    background: var(--main-color);
    position: relative;
  }
  .pg_home .section.sec2:after {
    content: "";
    background: #FFF;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 0;
  }

  .home_contents_title{
    line-break: 1.4em;
  }
}
@media (min-width:768px){
  /* メイン */
  .home_slide_txt p{
    font-size: 155px;
  }
  .home_bk_txt{
    width: 120%;
    top: auto;
    left: 120px;
    right: 0;
    bottom: 80px;
    aspect-ratio: 2179 / 1515;
    z-index: -1;
  }
  .home_about{
    margin-top: 85px;
  }
  .home_about_box1{

  }
  .home_about_box1_img{
    border-radius: 20px;
  }
  .home_about_box1_img:before{
    padding-top: 100%;
  }
  .home_about_box2{
    margin-top: 30px;
  }
  .home_contents_head{

  }
  .home_contents_head_en{
    font-size: 70px;
  }
  .home_contents_title{
    font-size: 30px;
    margin-top: 30px;
    margin-bottom: 25px;

  }
  .home_contents_txt .cmn_txt{
    font-size: 16px;
  }


  /* SERVICE */
  .home_service{
    margin-top: 40px;
  }
  .home_service_item{
    width: 31.57%;
  }
  .home_service_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_service_item_inner{

  }
  .home_service_item_img img{
    transition: transform .6s ease;
    transform: scale(1);
  }
  .home_service_item_img:hover img{
    transform: scale(1.08);
  }
  .home_service_item_img:before{
    padding-top: 133%;
  }
  .home_house_item_box{
    position: relative;
  }
  .home_house_item_title_link{
    z-index: 2;
  }
  .home_house_item_title_link:after{
    font-size: 16px;
    right: 6px;
    bottom: -13px;
    width: 34px;
    height: 34px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  .home_service_item:hover .home_house_item_title_link:after{
    background: #FFF;
  }
  .home_service_item_title{
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .home_service_item_txt{
    letter-spacing: 0.075em;
    line-height: 1.625;
  }

  /* WORK */
  .works_list.home{
    margin-top: 40px;
  }
  .works_list.home .webgene-blog{
  }
  .works_list.home .webgene-item{
    width: 24%;
  }
  .works_list.home .box1{

  }
  .works_list.home .box1 img{
    border-radius: 20px;
  }
  .works_list.home .box1 .img:before{
    padding-top: 118.90%;
  }

  /* INTERVIEW */
  .home_interview{

  }
  .home_interview_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_interview_box1{
    width: 55.72%;
  }
  .home_interview_box1_img{

  }
  .home_interview_box1_img:before{
    padding-top: 94.29%;
  }
  .home_interview_box2{
    width: 44.28%;
  }
  .home_interview_box2_top{
    height: 50.06%;
  }
  .home_interview_box2_top1{
    width: 47.64%;
  }
  .home_interview_box2_top2{
    width: 52.36%;
  }
  .home_interview_box2_top1_img{
    height: 100%;
  }
  .home_interview_box2_top1_img:before{
    padding-top: 0;
    height: 100%;
  }
  .home_interview_box2_top2_img{
    height: 100%;
  }
  .home_interview_box2_top2_img:before{
    padding-top: 0;
    height: 100%;
  }
  .home_interview_box2_btm{
    height: 49.94%;
  }
  .home_interview_box2_btm_img{
    height: 100%;
  }
  .home_interview_box2_btm_img:before{
    padding-top: 0;
    height: 100%;
  }

  /* TOPICS */
  .home_slide_txt.wh{
    top: -22px;
    left: 50%;
    bottom: auto;
    /*transform: translateX(-50%);*/
  }
  .home_topics{
    margin-top: 180px;
  }
  .home_topic_head{

  }
  .home_topic_head_en{
    font-size: 42px;
    padding-right: 33px;
  }
  .home_topic_head_ja{
    font-size: 24px;
    padding-left: 50px;
  }
  .home_topics .topics_list{
    margin-top: 48px;
  }
  .home_topics .topics_list .webgene-blog{
    margin-left: -5px;
    margin-right: -5px;
    margin-inline: -20px;
  }
  .home_topics .topics_list .webgene-item{
    width: 50%;
    border-right: 1px solid #FFF;
    padding-inline: 20px;
    padding-bottom: 20px;
  }
  .home_topics .topics_list .webgene-item:last-child{
    border-right: 0;
  }
  .home_topics .topics_list .webgene-item .box1{

  }
  .home_topics .topics_list .webgene-item .box1 .img_fit:before{
    padding-top: 80%;
  }
  .home_topics .topics_list .webgene-item .box2{
    margin-top: 5px;
  }
  .home_topics .topics_list .webgene-item .meta{

  }
  .home_topics .topics_list .webgene-item .category{
    font-size: 14px;
    padding: 0px 40px;
  }
  .home_topics .topics_list .webgene-item .title{
    font-size: 16px;
    margin-top: 15px;
  }
  .home_topics .read_more{
    margin-top: 50px;
  }
}
@media (max-width:1023px){
  .home_topics .topics_list .webgene-item:nth-child(2n){
    border-right: 0;
  }
  .pg_about .section.sec2 .home_slide_txt.wh p{
    margin-right: 20px;
    color:var(--main-color);
    position: relative;
  }
  /*  .pg_about .section.sec2 .home_slide_txt.wh p:before{
      content: "The Vision of Next Ark";
       position: absolute;
    inset: 0;
    color: transparent;
    z-index: 1;
    text-stroke: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff;
    }*/

  /*  .home_slide_txt.wh p{
      text-shadow: 0 0 0.1px #fff, 0 0 5.5px #fff, 0 0 2.3px #fff, 0 0 2px #fff;
    }*/

}
@media (min-width:1024px){
  /* メイン */
  .home_slide_txt p{
    font-size: 164px;
  }
  .home_bk_txt{
    width: 120%;
    top: 0;
    left: 230px;
    right: 0;
    bottom: auto;
  }
  .home_about{
    margin-top: 100px;
  }
  .home_about_box1{
    width: 42.76%;
  }
  .home_about_box1_img{
    border-radius: 20px;
  }
  .home_about_box1_img:before{
    padding-top: 123.07%;
  }
  .home_about_box2{
    width: 51.98%;
    margin-top: 40px;
  }
  .home_contents_head{

  }
  .home_contents_head_en{
    font-size: 70px;
  }
  .home_contents_title{
    font-size: 25px;
    line-height: 1.3;
    margin-top: 35px;
    margin-bottom: 25px;
  }
  .home_contents_txt .cmn_txt{
    font-size: 16px;
  }

  /* SERVICE */
  .home_service{
    margin-top: 40px;
  }
  .home_service_item{
    width: 31.57%;
  }
  .home_service_item_inner{

  }
  .home_service_item_img img{
    transition: transform .6s ease;
    transform: scale(1);
  }
  .home_service_item_img:hover img{
    transform: scale(1.08);
  }
  .home_service_item_img:before{
    padding-top: 133%;
  }
  .home_house_item_box{
    position: relative;
  }
  .home_house_item_title_link{
    z-index: 2;
  }
  .home_house_item_title_link:after{
    font-size: 16px;
    right: 10px;
    bottom: -11px;
    width: 40px;
    height: 40px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  .home_service_item:hover .home_house_item_title_link:after{
    background: #FFF;
  }
  .home_service_item_title{
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .home_service_item_txt{
    letter-spacing: 0.075em;
    line-height: 1.625;
  }

  /* WORK */
  .works_list.home{
    margin-top: 40px;
  }
  .works_list.home .webgene-blog{
  }
  .works_list.home .webgene-item{
    width: 33.333%;
  }
  .works_list.home .box1{

  }
  .works_list.home .box1 img{
    border-radius: 20px;
  }
  .works_list.home .box1 .img:before{
    padding-top: 118.90%;
  }

  /* TOPICS */
  .home_slide_txt.wh{
    top: -22px;
    left: 0;
    bottom: auto;
  }
  .home_topics{
    margin-top: 150px;
  }
  .home_topic_head{

  }
  .home_topic_head_en{
    font-size: 42px;
    padding-right: 33px;
  }
  .home_topic_head_ja{
    font-size: 24px;
    padding-left: 50px;
  }
  .home_topics .topics_list{
    margin-top: 48px;
  }
  .home_topics .topics_list .webgene-blog{
    margin-left: -5px;
    margin-right: -5px;
    margin-inline: -20px;
  }
  .home_topics .topics_list .webgene-item{
    width: 25%;
    border-right: 1px solid #FFF;
    padding-inline: 20px;
    padding-bottom: 20px;
  }
  .home_topics .topics_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .home_topics .topics_list .webgene-item:last-child{
    border-right: none;
  }
  .home_topics .topics_list .webgene-item .box1{

  }
  .home_topics .topics_list .webgene-item .box1 .img_fit:before{
    padding-top: 80%;
  }
  .home_topics .topics_list .webgene-item .box2{
    margin-top: 5px;
  }
  .home_topics .topics_list .webgene-item .meta{

  }
  .home_topics .topics_list .webgene-item .category{
    font-size: 14px;
    padding: 0px 40px;
  }
  .home_topics .topics_list .webgene-item .title{
    font-size: 16px;
    margin-top: 15px;
  }
  .home_topics .read_more{
    margin-top: 50px;
  }

  .pg_about .section.sec2 .home_slide_txt.wh p{
    margin-right: 60px;
  }
}
@media (min-width:1200px){
  /* メイン */
  .home_slide_txt p{
    font-size: 164px;
  }
  .home_bk_txt{
    width: 120%;
    top: 0;
    left: 320px;
    right: 0;
    bottom: auto;
  }
  .home_about{
    margin-top: 135px;
  }
  .home_about_box1{
    width: 42.76%;
  }
  .home_about_box1_img{
    border-radius: 20px;
  }
  .home_about_box1_img:before{
    padding-top: 123.07%;
  }
  .home_about_box2{
    width: 50.98%;
    margin-top: 65px;
  }
  .home_contents_head{

  }
  .home_contents_head_en{
    font-size: 80px;
  }
  .home_contents_title{
    font-size: 28px;
    line-height: 1;
    margin-top: 60px;
    margin-bottom: 42px;
  }
  .home_contents_txt .cmn_txt{
    font-size: 16px;
  }

  /* SERVICE */
  .home_service{
    margin-top: 40px;
  }
  .home_service_item{
    width: 31.57%;
  }
  .home_service_item_inner{

  }
  .home_service_item_img img{
    transition: transform .6s ease;
    transform: scale(1);
  }
  .home_service_item_img:hover img{
    transform: scale(1.08);
  }
  .home_service_item_img:before{
    padding-top: 133%;
  }
  .home_house_item_box{
    position: relative;
  }
  .home_house_item_title_link{
    z-index: 2;
  }
  .home_house_item_title_link:after{
    font-size: 16px;
    right: 12px;
    bottom: -13px;
    width: 52px;
    height: 52px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  .home_service_item:hover .home_house_item_title_link:after{
    background: #FFF;
  }
  .home_service_item_title{
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .home_service_item_txt{
    letter-spacing: 0.075em;
    line-height: 1.625;
  }

  /* WORK */
  .works_list.home{
    margin-top: 40px;
  }
  .works_list.home .webgene-blog{
  }
  .works_list.home .webgene-item{
    width: 24%;
  }
  .works_list.home .box1{

  }
  .works_list.home .box1 img{
    border-radius: 20px;
  }
  .works_list.home .box1 .img:before{
    padding-top: 118.90%;
  }

  /* INTERVIEW */
  .home_interview{

  }
  .home_interview_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_interview_box1{
    width: 55.72%;
  }
  .home_interview_box1_img{

  }
  .home_interview_box1_img:before{
    padding-top: 74.29%;
  }
  .home_interview_box2{
    width: 44.28%;
  }
  .home_interview_box2_top{
    height: 50.06%;
  }
  .home_interview_box2_top1{
    width: 47.64%;
  }
  .home_interview_box2_top2{
    width: 52.36%;
  }
  .home_interview_box2_top1_img{
    height: 100%;
  }
  .home_interview_box2_top1_img:before{
    padding-top: 0;
    height: 100%;
  }
  .home_interview_box2_top2_img{
    height: 100%;
  }
  .home_interview_box2_top2_img:before{
    padding-top: 0;
    height: 100%;
  }
  .home_interview_box2_btm{
    height: 49.94%;
  }
  .home_interview_box2_btm_img{
    height: 100%;
  }
  .home_interview_box2_btm_img:before{
    padding-top: 0;
    height: 100%;
  }

  /* TOPICS */
  .home_slide_txt.wh{
    top: -2.4em;
    left: 0;
    bottom: auto;
  }
  .home_topics{
    margin-top: 150px;
  }
  .home_topic_head{

  }
  .home_topic_head_en{
    font-size: 42px;
    padding-right: 33px;
  }
  .home_topic_head_ja{
    font-size: 24px;
    padding-left: 50px;
  }
  .home_topics .topics_list{
    margin-top: 48px;
  }
  .home_topics .topics_list .webgene-blog{
    margin-left: -5px;
    margin-right: -5px;
    margin-inline: -20px;
  }
  .home_topics .topics_list .webgene-item{
    width: 25%;
    border-right: 1px solid #FFF;
    padding-inline: 20px;
    padding-bottom: 20px;
  }
  .home_topics .topics_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .home_topics .topics_list .webgene-item:last-child{
    border-right: none;
  }
  .home_topics .topics_list .webgene-item .box1{

  }
  .home_topics .topics_list .webgene-item .box1 .img_fit:before{
    padding-top: 80%;
  }
  .home_topics .topics_list .webgene-item .box2{
    margin-top: 5px;
  }
  .home_topics .topics_list .webgene-item .meta{

  }
  .home_topics .topics_list .webgene-item .category{
    font-size: 14px;
    padding: 0px 40px;
  }
  .home_topics .topics_list .webgene-item .title{
    font-size: 16px;
    margin-top: 15px;
  }
  .home_topics .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1470px){
  /* メイン */
  .home_slide_txt p{
    font-size: 164px;
  }
  .home_bk_txt{
    width: 120%;
    top: 0;
    left: 350px;
    right: 0;
  }
  .home_about{
    margin-top: 135px;
  }
  .home_about_box1{
    width: 42.76%;
  }
  .home_about_box1_img{
    border-radius: 20px;
  }
  .home_about_box1_img:before{
    padding-top: 123.07%;
  }
  .home_about_box2{
    width: 50.98%;
    margin-top: 65px;
  }
  .home_contents_head{

  }
  .home_contents_head_en{
    font-size: 80px;
  }
  .home_contents_title{
    font-size: 35px;
    margin-top: 60px;
    margin-bottom: 42px;
  }
  .home_contents_txt .cmn_txt{
    font-size: 16px;
  }

  /* SERVICE */
  .home_service{
    margin-top: 40px;
  }
  .home_service_item{
    width: 31.57%;
  }
  .home_service_item_inner{

  }
  .home_service_item_img img{
    transition: transform .6s ease;
    transform: scale(1);
  }
  .home_service_item_img:hover img{
    transform: scale(1.08);
  }
  .home_service_item_img:before{
    padding-top: 133%;
  }
  .home_house_item_box{
    position: relative;
  }
  .home_house_item_title_link{
    z-index: 2;
  }
  .home_house_item_title_link:after{
    font-size: 16px;
    right: 12px;
    bottom: -13px;
    width: 52px;
    height: 52px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  .home_service_item:hover .home_house_item_title_link:after{
    background: #FFF;
  }
  .home_service_item_title{
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .home_service_item_txt{
    letter-spacing: 0.075em;
    line-height: 1.625;
  }

  /* WORK */
  .works_list.home{
    margin-top: 40px;
  }
  .works_list.home .webgene-blog{
  }
  .works_list.home .webgene-item{
    width: 24%;
  }
  .works_list.home .box1{

  }
  .works_list.home .box1 img{
    border-radius: 20px;
  }
  .works_list.home .box1 .img:before{
    padding-top: 118.90%;
  }

  /* INTERVIEW */
  .home_interview{

  }
  .home_interview_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_interview_box1{
    width: 55.72%;
  }
  .home_interview_box1_img{

  }
  .home_interview_box1_img:before{
    padding-top: 74.29%;
  }
  .home_interview_box2{
    width: 44.28%;
  }
  .home_interview_box2_top{
    height: 50.06%;
  }
  .home_interview_box2_top1{
    width: 47.64%;
  }
  .home_interview_box2_top2{
    width: 52.36%;
  }
  .home_interview_box2_top1_img{
    height: 100%;
  }
  .home_interview_box2_top1_img:before{
    padding-top: 0;
    height: 100%;
  }
  .home_interview_box2_top2_img{
    height: 100%;
  }
  .home_interview_box2_top2_img:before{
    padding-top: 0;
    height: 100%;
  }
  .home_interview_box2_btm{
    height: 49.94%;
  }
  .home_interview_box2_btm_img{
    height: 100%;
  }
  .home_interview_box2_btm_img:before{
    padding-top: 0;
    height: 100%;
  }

  /* TOPICS */
  .home_slide_txt.wh{
    top: -35px;
    left: 0;
    bottom: auto;
  }
  .home_topics{
    margin-top: 220px;
  }
  .home_topic_head{

  }
  .home_topic_head_en{
    font-size: 42px;
    padding-right: 33px;
  }
  .home_topic_head_ja{
    font-size: 24px;
    padding-left: 50px;
  }
  .home_topics .topics_list{
    margin-top: 48px;
  }
  .home_topics .topics_list .webgene-blog{
    margin-left: -5px;
    margin-right: -5px;
    margin-inline: -20px;
  }
  .home_topics .topics_list .webgene-item{
    width: 25%;
    border-right: 1px solid #FFF;
    padding-inline: 20px;
    padding-bottom: 20px;
  }
  .home_topics .topics_list .webgene-item:last-child{
    border-right: none;
  }
  .home_topics .topics_list .webgene-item .box1{

  }
  .home_topics .topics_list .webgene-item .box1 .img_fit:before{
    padding-top: 80%;
  }
  .home_topics .topics_list .webgene-item .box2{
    margin-top: 5px;
  }
  .home_topics .topics_list .webgene-item .meta{

  }
  .home_topics .topics_list .webgene-item .category{
    font-size: 14px;
    padding: 0px 40px;
  }
  .home_topics .topics_list .webgene-item .title{
    font-size: 16px;
    margin-top: 15px;
  }
  .home_topics .read_more{
    margin-top: 50px;
  }
  .home_topics .topics_list .webgene-item:nth-child(2n) {
    border-right: 1px solid #FFF;
  }
  .home_topics .topics_list .webgene-item:nth-child(3n) {
    border-right: 1px solid #FFF;
  }
  .home_topics .topics_list .webgene-item:last-child {
    border-right: 0;
  }
}
@media (min-width:1720px){
  /* メイン */
  .home_slide_txt p{
    font-size: 164px;
  }
  .home_bk_txt{
    width: 120%;
    top: 0;
    left: 520px;
    right: 0;
  }
  .home_about{
    margin-top: 120px;
  }
  .home_about_box1{
    width: 42.76%;
  }
  .home_about_box1_img{
    border-radius: 20px;
  }
  .home_about_box1_img:before{
    padding-top: 123.07%;
  }
  .home_about_box2{
    width: 50.98%;
    margin-top: 65px;
  }
  .home_contents_head{

  }
  .home_contents_head_en{
    font-size: 80px;
  }
  .home_contents_title{
    font-size: 38px;
    margin-top: 60px;
    margin-bottom: 42px;
  }
  .home_contents_txt .cmn_txt{
    font-size: 16px;
  }

  /* SERVICE */
  .home_service{
    margin-top: 40px;
  }
  .home_service_item{
    width: 31.57%;
  }
  .home_service_item_inner{

  }
  .home_service_item_img img{
    transition: transform .6s ease;
    transform: scale(1);
  }
  .home_service_item_img:hover img{
    transform: scale(1.08);
  }
  .home_service_item_img:before{
    padding-top: 133%;
  }
  .home_house_item_box{
    position: relative;
  }
  .home_house_item_title_link{
    z-index: 2;
  }
  .home_house_item_title_link:after{
    font-size: 16px;
    right: 12px;
    bottom: -13px;
    width: 52px;
    height: 52px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
  }
  .home_service_item:hover .home_house_item_title_link:after{
    background: #FFF;
  }
  .home_service_item_title{
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .home_service_item_txt{
    letter-spacing: 0.075em;
    line-height: 1.625;
  }

  /* WORK */
  .works_list.home{
    margin-top: 40px;
  }
  .works_list.home .webgene-blog{
  }
  .works_list.home .webgene-item{
    width: 24%;
  }
  .works_list.home .box1{

  }
  .works_list.home .box1 img{
    border-radius: 20px;
  }
  .works_list.home .box1 .img:before{
    padding-top: 118.90%;
  }

  /* INTERVIEW */
  .home_interview{

  }
  .home_interview_inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_interview_box1{
    width: 55.72%;
  }
  .home_interview_box1_img{

  }
  .home_interview_box1_img:before{
    padding-top: 74.29%;
  }
  .home_interview_box2{
    width: 44.28%;
  }
  .home_interview_box2_top{
    height: 50.06%;
  }
  .home_interview_box2_top1{
    width: 47.64%;
  }
  .home_interview_box2_top2{
    width: 52.36%;
  }
  .home_interview_box2_top1_img{
    height: 100%;
  }
  .home_interview_box2_top1_img:before{
    padding-top: 0;
    height: 100%;
  }
  .home_interview_box2_top2_img{
    height: 100%;
  }
  .home_interview_box2_top2_img:before{
    padding-top: 0;
    height: 100%;
  }
  .home_interview_box2_btm{
    height: 49.94%;
  }
  .home_interview_box2_btm_img{
    height: 100%;
  }
  .home_interview_box2_btm_img:before{
    padding-top: 0;
    height: 100%;
  }
}

/* Instagram */
.home_insta_inner{
  width: 100%;
  background: none;
  padding: 20px 10px 0;
  margin-left: auto;
  margin-right: auto;
}
.home_insta_title{

}
.home_insta_title_en{
  font-size: 50px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0;
  color: #FFF;
  text-align: center;
  line-height: 1;
}

* + .insta_list{
  margin-top: 20px;
}
.insta_list{
  margin-top: -0.5em;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-inline:-5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.insta_list .webgene-item a{
  background: #FFF;
  background-image: url('/system_panel/uploads/images/noimage.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.insta_list_item_inner:before{
  padding-top: 133.69%;
}
.insta_list_item_inner video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}

.home_insta_outer{
  position: relative;
  padding: 30px 10px;
}
.home_insta_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: -1;
}
.insta_list .img:before{
  padding-top: 133.333%;
}
@media (max-width:1023px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  /*isnta*/
  .home_insta_title_en{
    font-size: 80px;
  }
  .insta_list{
    margin-top: -1em;
  }
  .insta_list .webgene-blog{
    margin-inline: -5px;
  }
  .insta_list .webgene-item{
    padding-inline: 5px;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

  }
  .home_insta_outer{
    padding: 34px 0 60px;
  }
  .home_insta_outer:before{
    content: "";
    display: block;
    width: 81.57%;
  }
  .home_insta_outer .read_more{
    margin-top: 60px;
  }
}
@media (min-width:1024px){

  /*isnta*/
  .insta_list{
    margin-top: 2.5em;
  }
  .home_insta_title_en{
    font-size: 100px;
  }
  .insta_list .webgene-blog{
    margin-inline: -2px;
  }
  .insta_list .webgene-item{
    width: 16.44%;
    padding-inline: 2px;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+7){
    margin-top:6px;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

  }

}
@media (min-width:1200px){
  .home_insta_inner{
    width: 100%;
    padding: 0px 10px 0;
  }
  .home_insta_title_en{
    font-size: 120px;
  }
}
@media (max-width:1023px){
  .read_more a:hover,
  .link_more a:hover,
  .read_more a:active,
  .link_more a:active,
  .read_more a:focus,
  .link_more a:focus{
    background: var(--main-color);
    color: #FFF;
    border: 1px solid var(--sub-color);
  }
}
/*******************************
*　ABOUT
********************************/
.pg_about{

}
.pg_about .section.sec1{
  padding-bottom: 80px;
  position: relative;
}
.pg_about .section.sec2{
  padding-top: 50px;
  padding-bottom: 100px;
  background: var(--main-color);
  position: relative;
}
.pg_about .section.sec3{
  padding-top: 60px;
}

@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 50px;
    padding-bottom: 200px;
  }
  .pg_about .section.sec3{
    padding-top: 60px;
  }
}
@media (min-width:1024px){
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-bottom: 100px;
  }
  .pg_about .section.sec2{
    padding-top: 60px;
    padding-bottom: 200px;
  }
  .pg_about .section.sec3{
    padding-top: 80px;
    padding-bottom: 15px;
  }
}
@media (min-width:1200px){
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-bottom: 120px;
  }
  .pg_about .section.sec2{
    padding-top: 60px;
    padding-bottom: 200px;
  }
  .pg_about .section.sec3{
    padding-top: 80px;
    padding-bottom: 20px;
  }
}
@media (min-width:1470px){
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-bottom: 150px;
  }
  .pg_about .section.sec2{
    padding-top: 80px;
    padding-bottom: 225px;
  }
  .pg_about .section.sec3{
    padding-top: 100px;
    padding-bottom: 20px;
  }
}
@media (min-width:1720px){
  .pg_about{

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

/* 背景 */
.cmn_bk_txt {
  position: absolute;
  width: 120%;
  top: -70px;
  left: 20px;
  right: 0;
  bottom: 0;
  aspect-ratio: 2179 / 1515;
  z-index: -1;
}

/* メイン */
.cmn_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_about_box1{
  width: 100%;
}
.home_contents_head_ja{
  font-size: 15px;
  font-weight: 900;
  font-family: var(--font-ja);
  line-height: 1;
  letter-spacing: 0.075em;
  color: var(--main-color);
  margin-bottom: 10px;
}
.cmn_about_box2{
  width: 100%;
  margin-top: 25px;
}
.cmn_about_img{
  border-radius: 20px;
}
.cmn_about_img:before{
  padding-top: 110%;
}

/* THOUGHT */
.about_thought{

}
.about_thought_lists{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 85px;
}
.about_thought_list{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--sub-color);
  border-radius: 20px;
  position: relative;
}
.about_thought_list:nth-child(n+2){
  margin-top: 75px;
}
.about_thought_num{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 98px;
  height: 98px;
  background: #FFF;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  font-size: 15px;
  text-align: center;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
}
.about_thought_num_p1{
  font-size: 1em;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
.about_thought_num_p2{
  font-size: 3.33em;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
.about_thought_list_inner {
  padding: 60px 15px 40px;
}
.about_thought_list_title{
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-ja);
  line-height: 1.25;
  letter-spacing: 0.05em;
  color: var(--txt-color);
  text-align: center;
  margin-bottom: 15px;
}
.about_thought{

}
.about_thought_list_txt{

}
.about_slide_txt.wh{
  top: auto;
  left: 0;
  bottom: -1.4em;
}

/* REASON */
.about_reason{

}
.about_reason_contents_rows{
  margin-top: 35px;
}
.about_reason_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_reason_contents_row:nth-child(n+2){
  margin-top: 35px;
}
.about_reason_contents_row:nth-child(odd) .about_reason_contents_box1{
  order: 1;
}
.about_reason_contents_row:nth-child(odd) .about_reason_contents_box2{
  order: 1;
}
.about_reason_contents_row:nth-child(even) .about_reason_contents_box1{
  order: 1;
}
.about_reason_contents_row:nth-child(even) .about_reason_contents_box2{
  order: 1;
}
.about_reason_contents_box1{
  width: 100%;
}
.about_reason_contents_box1_img{
  border-radius: 20px;
}
.about_reason_contents_box1_img:before{
  padding-top: 70%;
}
.about_reason_contents_box2{
  width: 100%;
  margin-top: 25px;
}
.about_reason_contents_head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.about_reason_contents_head_num{
  font-size: 35px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 0.8;
  letter-spacing: 0.05em;
  color: var(--main-color);
  border-right: 1px solid var(--main-color);
  padding-right: 10px;
}
.about_reason_contents_head_title{
  font-size: 19px;
  font-weight: 800;
  font-family: var(--font-ja);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--txt-color);
  padding-left: 11px;
}
.about_reason_txt{

}
.about_reason_contents_box2 .read_more.left{
  margin-top: 25px;
}

/* SERVICE */
.cmn_about.left .cmn_about_box1{
  order: 2;
}
.cmn_about.left .cmn_about_box2{
  order: 1;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .about_reason_contents_box2 .read_more.left{
    margin-top: 25px;
    margin-bottom: 20px;
  }

  .about_slide_txt.wh{
    bottom: -0.75em;
  }
}
@media (min-width:768px){
  /* 背景 */
  .cmn_bk_txt {
    top: -190px;
    left: 50px;
    right: 0;
    bottom: 0;
  }

  /* THOUGHT */
  .about_thought_list{
    width: 50%;
    margin-inline: -5px;
  }
  .about_thought_list:nth-child(n+2){
    margin-top: 0;
  }
  .about_thought_list:nth-child(n+3){
    margin-top: 75px;
  }

  /* REASON */
  .about_reason_contents_rows {
    margin-top: 55px;
  }
  .about_reason_contents_head_num{
    font-size: 50px;
    padding-right: 10px;
  }
  .about_reason_contents_head_title{
    font-size: 28px;
    padding-left: 11px;
  }

  /* REASON */
  .about_reason_contents_row:nth-child(n+2){
    margin-top: 55px;
  }
}
@media (min-width:1024px){
  /* 背景 */
  .cmn_bk_txt {
    width: 120%;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
  }

  /* メイン */
  .cmn_about_box1{
    width: 54.11%;
    margin-top: 5px;
  }
  .home_contents_head_ja{
    font-size: 25px;
    margin-bottom: 20px;
  }
  .cmn_about_box2{
    width: 39.76%;
    margin-top: 0;
  }
  .cmn_about_img{
    border-radius: 20px;
  }
  .cmn_about_img:before{
    padding-top: 123.07%;
  }

  /* THOUGHT */
  .about_thought{

  }
  .about_thought_lists{
    margin-top: 65px;
  }
  .about_thought_list{

  }
  .about_thought_list:nth-child(n+2){

  }
  .about_thought_num{
    width: 110px;
    height: 110px;
    font-size: 15px;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about_thought_num_p1{
    font-size: 1em;
  }
  .about_thought_num_p2{
    font-size: 3.33em;
  }
  .about_thought_list_inner {
    padding: 80px 15px 30px;
  }
  .about_thought_list_title{
    font-size: 25px;
    margin-bottom: 15px;

  }
  .about_thought{

  }
  .about_thought_list_txt{

  }
  .about_slide_txt.wh{
    top: auto;
    left: 0;
    bottom: -7px;
  }

  /* REASON */
  .about_reason{

  }
  .about_reason_contents_rows{
    margin-top: 60px;
  }
  .about_reason_contents_row{

  }
  .about_reason_contents_row:nth-child(n+2){
    margin-top: 80px;
  }
  .about_reason_contents_row:nth-child(odd) .about_reason_contents_box1{
    order: 1;
  }
  .about_reason_contents_row:nth-child(odd) .about_reason_contents_box2{
    order: 2;
  }
  .about_reason_contents_row:nth-child(even) .about_reason_contents_box1{
    order: 2;
  }
  .about_reason_contents_row:nth-child(even) .about_reason_contents_box2{
    order: 1;
  }
  .about_reason_contents_box1{
    width: 40.76%;
  }
  .about_reason_contents_box1_img{
    border-radius: 20px;
  }
  .about_reason_contents_box1_img:before{
    padding-top: 76.92%;
  }
  .about_reason_contents_box2{
    width: 55.98%;
    margin-top: 0;
  }
  .about_reason_contents_head{
    margin-bottom: 35px;
  }
  .about_reason_contents_head_num{
    font-size: 50px;
    padding-right: 11px;
  }
  .about_reason_contents_head_title{
    font-size: 28px;
    padding-left: 11px;
  }
  .about_reason_txt{

  }
  .about_reason_contents_box2 .read_more.left{
    margin-top: 25px;
  }
}
@media (min-width:1200px){
  /* 背景 */
  .cmn_bk_txt {
    width: 120%;
    top: auto;
    left: -50px;
    right: 0;
    bottom: 0;
  }

  /* メイン */
  .cmn_about_box1{
    width: 51.11%;
    margin-top: 10px;
  }
  .home_contents_head_ja{
    font-size: 25px;
    margin-bottom: 25px;
  }
  .cmn_about_box2{
    width: 42.76%;
  }
  .cmn_about_img{
    border-radius: 20px;
  }
  .cmn_about_img:before{
    padding-top: 123.07%;
  }

  /* THOUGHT */
  .about_thought{

  }
  .about_thought_lists{
    margin-top: 95px;
  }
  .about_thought_list{
    width: 23.48%;
    margin-inline: 0;
  }
  .about_thought_list:nth-child(n+2){
    margin-top: 0;
  }
  .about_thought_list:nth-child(n+3){
    margin-top: 0;
  }
  .about_thought_num{
    width: 110px;
    height: 110px;
    font-size: 15px;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about_thought_num_p1{
    font-size: 1em;
  }
  .about_thought_num_p2{
    font-size: 3.33em;
  }
  .about_thought_list_inner {
    padding: 80px 20px 40px;
  }
  .about_thought_list_title{
    font-size: 25px;
    margin-bottom: 15px;
  }
  .about_thought{

  }
  .about_thought_list_txt{

  }
  .about_slide_txt.wh{
    top: auto;
    left: 0;
    bottom: -1.4em;
  }

  /* REASON */
  .about_reason{

  }
  .about_reason_contents_rows{
    margin-top: 90px;
  }
  .about_reason_contents_row{

  }
  .about_reason_contents_row:nth-child(n+2){
    margin-top: 100px;
  }
  .about_reason_contents_row:nth-child(odd) .about_reason_contents_box1{
    order: 1;
  }
  .about_reason_contents_row:nth-child(odd) .about_reason_contents_box2{
    order: 2;
  }
  .about_reason_contents_row:nth-child(even) .about_reason_contents_box1{
    order: 2;
  }
  .about_reason_contents_row:nth-child(even) .about_reason_contents_box2{
    order: 1;
  }
  .about_reason_contents_box1{
    width: 42.76%;
  }
  .about_reason_contents_box1_img{
    border-radius: 20px;
  }
  .about_reason_contents_box1_img:before{
    padding-top: 76.92%;
  }
  .about_reason_contents_box2{
    width: 50.98%;
  }
  .about_reason_contents_head{
    margin-bottom: 35px;
  }
  .about_reason_contents_head_num{
    font-size: 55px;
    padding-right: 15px;
  }
  .about_reason_contents_head_title{
    font-size: 30px;
    padding-left: 15px;
  }
  .about_reason_txt{

  }
  .about_reason_contents_box2 .read_more.left{
    margin-top: 25px;
  }
}
@media (min-width:1470px){
  /* 背景 */
  .cmn_bk_txt {
    width: 120%;
    top: auto;
    left: -50px;
    right: 0;
    bottom: -250px;
  }
  .cmn_bk_txt{
    top: -250px;
  }

  /* メイン */
  .cmn_about_box1{
    width: 51.11%;
    margin-top: 10px;
  }
  .home_contents_head_ja{
    font-size: 25px;
    margin-bottom: 30px;
  }
  .cmn_about_box2{
    width: 42.76%;
  }
  .cmn_about_img{
    border-radius: 20px;
  }
  .cmn_about_img:before{
    padding-top: 123.07%;
  }

  /* THOUGHT */
  .about_thought{

  }
  .about_thought_lists{
    margin-top: 65px;
  }
  .about_thought_list{
    width: 23.48%;
  }
  .about_thought_num{
    width: 110px;
    height: 110px;
    font-size: 15px;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about_thought_num_p1{
    font-size: 1em;
  }
  .about_thought_num_p2{
    font-size: 3.33em;
  }
  .about_thought_list_inner {
    padding: 80px 15px 40px;
  }
  .about_thought_list_title{
    font-size: 28px;
    margin-bottom: 15px;

  }
  .about_thought{

  }
  .about_thought_list_txt{

  }
  .about_slide_txt.wh{
    top: auto;
    left: 0;
    bottom: -1.4em;
  }

  /* REASON */
  .about_reason{

  }
  .about_reason_contents_rows{
    margin-top: 90px;
  }
  .about_reason_contents_row{

  }
  .about_reason_contents_row:nth-child(n+2){
    margin-top: 100px;
  }
  .about_reason_contents_row:nth-child(odd) .about_reason_contents_box1{
    order: 1;
  }
  .about_reason_contents_row:nth-child(odd) .about_reason_contents_box2{
    order: 2;
  }
  .about_reason_contents_row:nth-child(even) .about_reason_contents_box1{
    order: 2;
  }
  .about_reason_contents_row:nth-child(even) .about_reason_contents_box2{
    order: 1;
  }
  .about_reason_contents_box1{
    width: 42.76%;
  }
  .about_reason_contents_box1_img{
    border-radius: 20px;
  }
  .about_reason_contents_box1_img:before{
    padding-top: 76.92%;
  }
  .about_reason_contents_box2{
    width: 50.98%;
  }
  .about_reason_contents_head{
    margin-bottom: 53px;
  }
  .about_reason_contents_head_num{
    font-size: 90px;
    padding-right: 13px;
  }
  .about_reason_contents_head_title{
    font-size: 36px;
    padding-left: 28px;
  }
  .about_reason_txt{

  }
  .about_reason_contents_box2 .read_more.left{
    margin-top: 25px;
  }
}
@media (min-width:1720px){
  /* 背景 */
  .cmn_bk_txt {
    width: 120%;
    top: auto;
    left: -50px;
    right: 0;
    bottom: -370px;
  }

  .pg_about .cmn_bk_txt{
    top: auto;
  }

  /* メイン */
  .cmn_about_box1{
    width: 51.11%;
    margin-top: 10px;
  }
  .home_contents_head_ja{
    font-size: 25px;
    margin-bottom: 30px;
  }
  .cmn_about_box2{
    width: 42.76%;
  }
  .cmn_about_img{
    border-radius: 20px;
  }
  .cmn_about_img:before{
    padding-top: 123.07%;
  }

  /* THOUGHT */
  .about_thought{

  }
  .about_thought_lists{
    margin-top: 65px;
  }
  .about_thought_list{
    width: 23.48%;
  }
  .about_thought_num{
    width: 110px;
    height: 110px;
    font-size: 15px;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
  }
  .about_thought_num_p1{
    font-size: 1em;
  }
  .about_thought_num_p2{
    font-size: 3.33em;
  }
  .about_thought_list_inner {
    padding: 80px 35px 40px;
  }
  .about_thought_list_title{
    font-size: 32px;
    margin-bottom: 15px;

  }
  .about_thought{

  }
  .about_thought_list_txt{

  }
  .about_slide_txt.wh{
    top: auto;
    left: 0;
    bottom: -21px;
  }

  /* REASON */
  .about_reason{

  }
  .about_reason_contents_rows{
    margin-top: 90px;
  }
  .about_reason_contents_row{

  }
  .about_reason_contents_row:nth-child(n+2){
    margin-top: 100px;
  }
  .about_reason_contents_row:nth-child(odd) .about_reason_contents_box1{
    order: 1;
  }
  .about_reason_contents_row:nth-child(odd) .about_reason_contents_box2{
    order: 2;
  }
  .about_reason_contents_row:nth-child(even) .about_reason_contents_box1{
    order: 2;
  }
  .about_reason_contents_row:nth-child(even) .about_reason_contents_box2{
    order: 1;
  }
  .about_reason_contents_box1{
    width: 42.76%;
  }
  .about_reason_contents_box1_img{
    border-radius: 20px;
  }
  .about_reason_contents_box1_img:before{
    padding-top: 76.92%;
  }
  .about_reason_contents_box2{
    width: 50.98%;
  }
  .about_reason_contents_head{
    margin-bottom: 53px;
  }
  .about_reason_contents_head_num{
    font-size: 90px;
    padding-right: 13px;
  }
  .about_reason_contents_head_title{
    font-size: 38px;
    padding-left: 32px;
  }
  .about_reason_txt{

  }
  .about_reason_contents_box2 .read_more.left{
    margin-top: 25px;
  }
}


/*******************************
*　SERVICE
********************************/
.pg_service{

}
.pg_service .section.sec1{
  position: relative;
}
.pg_service .section.sec2{
  margin-bottom: 80px;
  background: var(--sub-color);
  position: relative;
  z-index: 0;
}


@media (max-width:374px){

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

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

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

  }
  .pg_service .section.sec1{
    padding-bottom: 80px;
  }
  .pg_service .section.sec2{
    padding-top: 80px;
    margin-bottom: 160px;
  }
}
@media (min-width:1024px){
  .pg_service{

  }
  .pg_service .section.sec1{
    padding-bottom: 100px;
  }
  .pg_service .section.sec2{
    padding-top: 80px;
    margin-bottom: 230px;
  }
}
@media (min-width:1200px){
  .pg_service{

  }
  .pg_service .section.sec1{
    padding-bottom: 125px;
  }
  .pg_service .section.sec2{
    padding-top: 100px;
    margin-bottom: 230px;
  }
}
@media (min-width:1470px){
  .pg_service{

  }
  .pg_service .section.sec1{
    padding-bottom: 155px;
  }
  .pg_service .section.sec2{
    padding-top: 100px;
    margin-bottom: 316px;
  }
}
@media (min-width:1720px){
  .pg_service{

  }
  .pg_service .section.sec1{
    padding-bottom: 155px;
  }
  .pg_service .section.sec2{
    padding-top: 100px;
    margin-bottom: 316px;
  }
}

/* 背景 */
.service_bk_txt{

}
.service_bl_bk{
  content: "";
  background: var(--main-color);
  width: 100vw;
  height: 60%;
  position: absolute;
  top: auto;
  left: 50%;
  right: 0;
  bottom: -30px;
  transform: translateX(-50%);
  z-index: -1;
}

/* メイン */
.cmn_about.left .cmn_about_box1{
  order: 1;
}
.cmn_about.left .cmn_about_box2{
  order: 2;
}

/* カテゴリ */
.service_contents_cate{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
  margin-bottom: 45px;
}
.service_contents_cate_item{
  width: 100%;
}
.service_contents_cate_item:nth-child(n+2){
  margin-top: 15px;
}
.service_contents_cate_item a{
  display: block;
  background: #fff;
  border: 1px solid var(--main-color);
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 10px;
  position: relative;
}
.service_contents_cate_item a:after{
  content: "→";
  font-family: var(--font-ja);
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--txt-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transition: 0.2s all;
}
.service_contents_cate_item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.service_contents_cate_item a:hover:after{
  color: #FFF;
  margin-right: -5px;
}

/* 事業について */
.service_feature_contents{

}
.service_feature_content{
  position: relative;
}
.service_feature_content:nth-child(n+2){
  margin-top: 110px;
}
.service_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_contents_box1{
  width: 100%;
}
.service_contents_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 10px;
}
.service_contents_head_title_ja{
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-ja);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
.service_contents_head_title_en{
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  color: #a5b7d2;
}
.service_contents_title{
  line-height: 1.75;
  margin-top: 15px;
  margin-bottom: 20px;
}
.service_contents_txt{

}
.service_contents_box2{
  width: 100%;
  margin-top: 25px;
}
.service_contents_img{
  border-radius: 20px;
}
.service_contents_img:before{
  padding-top: 75.3%;
}

/* FEATURE */
.service_feature{
  margin-top: 35px;
}
.service_feature_contents_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 35px;
}
.service_feature_contents_item{
  width: 100%;
}
.service_feature_contents_item:nth-child(n+2){
  margin-top: 25px;
}
.service_feature_contents_img{

}
.service_feature_contents_img:before{
  padding-top: 75.58%;
}
.service_feature_contents_title{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-ja);
  line-height: 1;
  letter-spacing: 0.075em;
  color: #FFF;
  border-bottom: 1px solid #FFF;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.service_feature_txt{
  line-height: 1.625;
  letter-spacing: 0.075em;
}

/* POINT */
.point_lists{
  width: 100%;
  background: #fff;
  border-radius: 10px;
  margin-top: 60px;
  padding: 20px 10px;
}
.point_lists_inner{
  display: flex;
  flex-wrap: wrap;
}
.point_list_title{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-ja);
  line-height: 1;
  letter-spacing: 0.075em;
  color: var(--main-color);
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}
.point_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-inline: 0;
}
.point_list_txt{
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  line-height: 1.3;
  letter-spacing: 0.075em;
  color: var(--main-color);
  padding: 11px 0;
}
.point_list_txt:nth-child(2n){
  padding-left: 0;
}
.point_list_txt p{
  letter-spacing: 0.075em;
}
.point_list_txt::before {
  content:"\f058";
  font-family: "fontAwesome";
  flex-shrink: 0;
  color: var(--main-color);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 9px;
}

@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* 背景 */
  .service_bl_bk{
    content: "";
    width: 100vw;
    height: 62%;
    top: auto;
    left: 50%;
    right: 0;
    bottom: -60px;
    transform: translateX(-50%);
    z-index: -1;
  }

  /* カテゴリ */
  .service_contents_cate{
    margin-top: 40px;
    margin-bottom: 80px;
  }
  .service_contents_cate_item{
    width: 31.97%;
  }
  .service_contents_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .service_contents_cate_item a{
    font-size: 16px;
    padding: 8px 10px;
  }
  .service_contents_cate_item a:after{
    font-size: 16px;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transition: 0.2s all;
  }

  /* 事業について */
  .service_feature_contents{

  }
  .service_feature_content{
    position: relative;
  }
  .service_feature_content:nth-child(n+2){
    margin-top: 140px;
  }
  .service_contents_row{

  }
  .service_contents_box1{

  }
  .service_contents_head{
    padding-bottom: 15px;
  }
  .service_contents_head_title_ja{
    font-size: 35px;
  }
  .service_contents_head_title_en{
    font-size: 30px;
    color: #a5b7d2;
  }
  .service_contents_title{
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .service_contents_txt{

  }
  .service_contents_box2{

  }
  .service_contents_img{
    border-radius: 20px;
  }
  .service_contents_img:before{
    padding-top: 72.3%;
  }

  /* FEATURE */
  .service_feature{
    margin-top: 80px;
  }
  .service_feature_contents_items{
    margin-top: 50px;
  }
  .service_feature_contents_item{

  }
  .service_feature_contents_item:nth-child(n+2){
    margin-top: 45px;
  }
  .service_feature_contents_img{

  }
  .service_feature_contents_img:before{
    padding-top: 74.58%;
  }
  .service_feature_contents_title{
    font-size: 28px;
    margin-top: 27px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .service_feature_txt{
    line-height: 1.625;
    letter-spacing: 0.075em;
  }

  /* POINT */
  .point_lists{
    width: 100%;
    margin-top: 60px;
    padding: 25px 20px;
  }
  .point_lists_inner{

  }
  .point_list_title{
    font-size: 28px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .point_list{
    padding-inline: 30px;
  }
  .point_list_txt{
    font-size: 23px;
    padding: 11px 0;
  }
  .point_list_txt:nth-child(2n){
    padding-left: 0;
  }
  .point_list_txt::before {
    font-size: 25px;
    padding-right: 9px;
  }
}
@media (min-width:1024px){
  /* 背景 */
  .service_bl_bk{
    content: "";
    width: 100vw;
    height: 1020px;
    top: auto;
    left: 50%;
    right: 0;
    bottom: -70px;
    transform: translateX(-50%);
    z-index: -1;
  }

  /* メイン */
  .cmn_about.left .cmn_about_box1{
    order: 2;
  }
  .cmn_about.left .cmn_about_box2{
    order: 1;
  }

  /* カテゴリ */
  .service_contents_cate{
    margin-top: 70px;
    margin-bottom: 120px;
  }
  .service_contents_cate_item{
    width: 31.97%;
  }
  .service_contents_cate_item a{
    font-size: 16px;
    padding: 8px 10px;
  }
  .service_contents_cate_item a:after{
    font-size: 16px;
    top: 50%;
    right: 23px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transition: 0.2s all;
  }

  /* 事業について */
  .service_feature_contents{

  }
  .service_feature_content{
    position: relative;
  }
  .service_feature_content:nth-child(n+2){
    margin-top: 160px;
  }
  .service_contents_row{

  }
  .service_contents_box1{
    width: 52.98%;
  }
  .service_contents_head{
    padding-bottom: 15px;
  }
  .service_contents_head_title_ja{
    font-size: 35px;
  }
  .service_contents_head_title_en{
    font-size: 30px;
    color: #a5b7d2;
  }
  .service_contents_title{
    margin-top: 20px;
    margin-bottom: 25px;
  }
  .service_contents_txt{

  }
  .service_contents_box2{
    width: 42.76%;
    margin-top: 0;
  }
  .service_contents_img{
    border-radius: 20px;
  }
  .service_contents_img:before{
    padding-top: 92.30%;
  }

  /* FEATURE */
  .service_feature{
    margin-top: 80px;
  }
  .service_feature_contents_items{
    margin-top: 50px;
  }
  .service_feature_contents_item{
    width: 31.57%;
  }
  .service_feature_contents_item:nth-child(n+2) {
    margin-top: 0;
  }
  .service_feature_contents_img{

  }
  .service_feature_contents_img:before{
    padding-top: 84.58%;
  }
  .service_feature_contents_title{
    font-size: 18px;
    margin-top: 15px;
    line-height: 1.3;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .service_feature_txt{
    line-height: 1.625;
    letter-spacing: 0.075em;
  }

  /* POINT */
  .point_lists{
    width: 100%;
    margin-top: 60px;
    padding: 33px 0;
  }
  .point_lists_inner{

  }
  .point_list_title{
    font-size: 28px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
  }
  .point_list{
    padding-inline: 180px;
  }
  .point_list_txt{
    width: 100%;
    font-size: 23px;
    padding: 11px 0;
  }
  .point_list_txt:nth-child(2n){
    padding-left: 0;
  }
  .point_list_txt::before {
    font-size: 25px;
    padding-right: 9px;
  }
}
@media (min-width:1200px){
  /* 背景 */
  .service_bk_txt{

  }
  .service_bl_bk{
    content: "";
    width: 100vw;
    height: 1020px;
    top: auto;
    left: 50%;
    right: 0;
    bottom: -120px;
    transform: translateX(-50%);
    z-index: -1;
  }

  /* メイン */
  .cmn_about.left .cmn_about_box1{
    order: 2;
  }
  .cmn_about.left .cmn_about_box2{
    order: 1;
  }

  /* カテゴリ */
  .service_contents_cate{
    margin-top: 70px;
    margin-bottom: 120px;
  }
  .service_contents_cate_item{
    width: 31.97%;
  }
  .service_contents_cate_item a{
    font-size: 16px;
    padding: 8px 10px;
  }
  .service_contents_cate_item a:after{
    font-size: 16px;
    top: 50%;
    right: 23px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transition: 0.2s all;
  }

  /* 事業について */
  .service_feature_contents{

  }
  .service_feature_content{
    position: relative;
  }
  .service_feature_content:nth-child(n+2){
    margin-top: 240px;
  }
  .service_contents_row{

  }
  .service_contents_box1{
    width: 52.98%;
  }
  .service_contents_head{
    padding-bottom: 25px;
  }
  .service_contents_head_title_ja{
    font-size: 45px;
  }
  .service_contents_head_title_en{
    font-size: 40px;
    color: #a5b7d2;
  }
  .service_contents_title{
    margin-top: 20px;
    margin-bottom: 45px;
  }
  .service_contents_txt{

  }
  .service_contents_box2{
    width: 42.76%;
  }
  .service_contents_img{
    border-radius: 20px;
  }
  .service_contents_img:before{
    padding-top: 92.30%;
  }

  /* FEATURE */
  .service_feature{
    margin-top: 80px;
  }
  .service_feature_contents_items{
    margin-top: 50px;
  }
  .service_feature_contents_item{
    width: 32.57%;
  }
  .service_feature_contents_img{

  }
  .service_feature_contents_img:before{
    padding-top: 84.58%;
  }
  .service_feature_contents_title{
    font-size: 22px;
    line-height: 1.5;
    margin-top: 15px;
    line-height: 1.3;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .service_feature_txt{
    line-height: 1.625;
    letter-spacing: 0.075em;
  }

  /* POINT */
  .point_lists{
    width: 100%;
    margin-top: 60px;
    padding: 33px 0;
  }
  .point_lists_inner{

  }
  .point_list_title{
    font-size: 28px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
  }
  .point_list{
    padding-inline: 15px;
  }
  .point_list_txt{
    width: 50%;
    font-size: 20px;
    line-height: 1;
    padding: 11px 0;
    padding-left: 40px;
  }
  .point_list_txt:nth-child(2n){
    padding-left: 50px;
  }
  .point_list_txt::before {
    font-size: 22px;
    padding-right: 9px;
  }
}
@media (min-width:1470px){
  /* 背景 */
  .service_bk_txt{

  }
  .service_bl_bk{
    content: "";
    width: 100vw;
    height: 1020px;
    top: auto;
    left: 50%;
    right: 0;
    bottom: -120px;
    transform: translateX(-50%);
    z-index: -1;
  }

  /* メイン */
  .cmn_about.left .cmn_about_box1{
    order: 2;
  }
  .cmn_about.left .cmn_about_box2{
    order: 1;
  }

  /* カテゴリ */
  .service_contents_cate{
    margin-top: 70px;
    margin-bottom: 120px;
  }
  .service_contents_cate_item{
    width: 31.97%;
  }
  .service_contents_cate_item a{
    font-size: 16px;
    padding: 8px 10px;
  }
  .service_contents_cate_item a:after{
    font-size: 16px;
    top: 50%;
    right: 23px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transition: 0.2s all;
  }

  /* 事業について */
  .service_feature_contents{

  }
  .service_feature_content{
    position: relative;
  }
  .service_feature_content:nth-child(n+2){
    margin-top: 240px;
  }
  .service_contents_row{

  }
  .service_contents_box1{
    width: 50.98%;
  }
  .service_contents_head{
    padding-bottom: 25px;
  }
  .service_contents_head_title_ja{
    font-size: 45px;
  }
  .service_contents_head_title_en{
    font-size: 40px;
    color: #a5b7d2;
  }
  .service_contents_title{
    margin-top: 20px;
    margin-bottom: 45px;
  }
  .service_contents_txt{

  }
  .service_contents_box2{
    width: 42.76%;
  }
  .service_contents_img{
    border-radius: 20px;
  }
  .service_contents_img:before{
    padding-top: 92.30%;
  }

  /* FEATURE */
  .service_feature{
    margin-top: 80px;
  }
  .service_feature_contents_items{
    margin-top: 50px;
  }
  .service_feature_contents_item{
    width: 31.57%;
  }
  .service_feature_contents_img{

  }
  .service_feature_contents_img:before{
    padding-top: 84.58%;
  }
  .service_feature_contents_title{
    font-size: 26px;
    line-height: 1.3;
    margin-top: 18px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .service_feature_txt{
    line-height: 1.625;
    letter-spacing: 0.075em;
  }

  /* POINT */
  .point_lists{
    width: 100%;
    margin-top: 60px;
    padding: 33px 0;
  }
  .point_lists_inner{

  }
  .point_list_title{
    font-size: 28px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
  }
  .point_list{
    padding-inline: 135px;
  }
  .point_list_txt{
    width: 50%;
    font-size: 23px;
    line-height: 1;
    padding: 11px 0;
  }
  .point_list_txt:nth-child(2n){
    padding-left: 80px;
  }
  .point_list_txt::before {
    font-size: 25px;
    padding-right: 9px;
  }
}
@media (min-width:1720px){
  /* 背景 */
  .cmn_bk_txt.service_bk_txt{
    width: 120%;
    top: auto;
    left: -20px;
    right: 0;
    bottom: -360px;
  }
  .service_bl_bk{
    content: "";
    width: 100vw;
    height: 1020px;
    top: auto;
    left: 50%;
    right: 0;
    bottom: -120px;
    transform: translateX(-50%);
    z-index: -1;
  }

  /* メイン */
  .cmn_about.left .cmn_about_box1{
    order: 2;
  }
  .cmn_about.left .cmn_about_box2{
    order: 1;
  }

  /* カテゴリ */
  .service_contents_cate{
    margin-top: 70px;
    margin-bottom: 120px;
  }
  .service_contents_cate_item{
    width: 31.97%;
  }
  .service_contents_cate_item a{
    font-size: 16px;
    padding: 8px 10px;
  }
  .service_contents_cate_item a:after{
    font-size: 16px;
    top: 50%;
    right: 23px;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transition: 0.2s all;
  }

  /* 事業について */
  .service_feature_contents{

  }
  .service_feature_content{
    position: relative;
  }
  .service_feature_content:nth-child(n+2){
    margin-top: 240px;
  }
  .service_contents_row{

  }
  .service_contents_box1{
    width: 50.98%;
  }
  .service_contents_head{
    padding-bottom: 25px;
  }
  .service_contents_head_title_ja{
    font-size: 45px;
  }
  .service_contents_head_title_en{
    font-size: 40px;
    color: #a5b7d2;
  }
  .service_contents_title{
    margin-top: 20px;
    margin-bottom: 45px;
  }
  .service_contents_txt{

  }
  .service_contents_box2{
    width: 42.76%;
  }
  .service_contents_img{
    border-radius: 20px;
  }
  .service_contents_img:before{
    padding-top: 92.30%;
  }

  /* FEATURE */
  .service_feature{
    margin-top: 80px;
  }
  .service_feature_contents_items{
    margin-top: 50px;
  }
  .service_feature_contents_item{
    width: 31.57%;
  }
  .service_feature_contents_img{

  }
  .service_feature_contents_img:before{
    padding-top: 84.58%;
  }
  .service_feature_contents_title{
    font-size: 28px;
    line-height: 1;
    margin-top: 27px;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
  .service_feature_txt{
    line-height: 1.625;
    letter-spacing: 0.075em;
  }

  /* POINT */
  .point_lists{
    width: 100%;
    margin-top: 60px;
    padding: 33px 0;
  }
  .point_lists_inner{

  }
  .point_list_title{
    font-size: 28px;
    margin-bottom: 35px;
    margin-left: auto;
    margin-right: auto;
  }
  .point_list{
    padding-inline: 205px;
  }
  .point_list_txt{
    width: 50%;
    font-size: 23px;
    line-height: 1;
    padding: 11px 0;
  }
  .point_list_txt:nth-child(2n){
    padding-left: 80px;
  }
  .point_list_txt::before {
    font-size: 25px;
    padding-right: 9px;
  }
}


/*******************************
*　インタビュー
********************************/
.pg_interview{

}
.pg_interview .section.sec1{
  position: relative;
}
.pg_interview .section.sec2{
  padding-bottom: 10px;
}

@media (max-width:374px){

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

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

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

  }
  .pg_interview .section.sec1{

  }
  .pg_interview .section.sec2{
    padding-top: 60px;
    padding-bottom: 10px;
  }

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

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

  }
  .pg_interview .section.sec1{

  }
  .pg_interview .section.sec2{
    padding-top: 80px;
    padding-bottom: 15px;
  }


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

  }
  .pg_interview .section.sec1{
    position: relative;
  }
  .pg_interview .section.sec2{
    padding-top: 80px;
    padding-bottom: 15px;
  }

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

}


/* インタビュー */
.interview_contents{
  margin-top: 25px;
}
* + .interview_contents{
  margin-top: 30px;
}
.interview_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.interview_contents_row-re{
  flex-direction: row-reverse;
}
.interview_contents_row + .interview_contents_row{
  margin-top: 35px;
}
.interview_contents_box1{
  width: 100%;
}
.interview_contents_box2{
  width: 100%;
  margin-top: 15px;
}
.interview_contents_box3{
  width: 100%;
}
.interview_contents_img{
  border-radius: 20px;
}
.interview_contents_img.img_fit:before{
  padding-top: 75.92%;
}
.interview_contents_img2{
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  border-radius: 0;
}
.interview_contents_img2.img_fit:before{
  padding-top: 250px;
}

.interview_contents_title1{
  margin-bottom: 20px;
}
.interview_contents_title1_line{
  display: flex;
  font-size: 16px;
  font-weight: 700;
  color: var(--sub-color);
  text-align: justify;
}
.interview_contents_title1_line + .interview_contents_title1_line{
  margin-top: 12px;
}
.interview_contents_title1_line p{
  background: var(--main-color);
  padding: 5px 10px 7px;
  letter-spacing: 0.025em;
  line-height: 1.5;
}
.interview_contents_title1_line:first-child p:before{
  content: "Q.";
}
.interview_contents_title1_line:nth-child(n+2) p{
  padding-left: 28px;
}

.interview_contents_title2{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.31;
  text-indent: 0;
  padding-left: 0;
  text-align: left;
  color: var(--txt-color);
}
.interview_contents_txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2.25;
  text-align: justify;
  margin-top: 15px;
  padding-top: 0;
}

.interview_contents + .read_more{
  margin-top: 40px;
}

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

}
@media (min-width:768px){
  /* インタビュー */
  .interview_contents{
    margin-top: 25px;
  }
  * + .interview_contents{
    margin-top: 40px;
  }

  .interview_contents_title1_line{
    font-size: 22px;
  }
  .interview_contents_title1_line p{
    line-height: 1.5;
  }
  .interview_contents_title1_line:nth-child(n+2) p{
    padding-left: 35px;
  }
  .interview_contents_title2{
    font-size: 28px;
  }
  .interview_contents_txt{
    font-size: 16px;
    margin-top: 20px;
  }

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

  .interview_contents + .read_more{
    margin-top: 50px;
  }

  .interview_contents_box2{
    margin-top: 30px;
  }

}
@media (min-width:1024px){
  /* インタビュー */
  .interview_contents{
    margin-top: 30px;
  }
  * + .interview_contents{
    /*margin-top: 110px;*/
  }
  .interview_contents_row{
  }
  .interview_contents_row + .interview_contents_row{
    margin-top: 70px;
  }
  .interview_contents_box1{
    width: 42.67%;
  }
  .interview_contents_box2{
    width: 52.98%;
    margin-top: 0;
  }
  .interview_contents_title1{
    margin-bottom: 20px;
  }
  .interview_contents_title1_line{
    font-size: 20px;
  }
  .interview_contents_title1_line + .interview_contents_title1_line{
    margin-top: 12px;
  }
  .interview_contents_title1_line p{
    padding: 2px 15px 5px;
  }
  .interview_contents_title1_line p{
    line-height: 1.2;
  }
  .interview_contents_title1_line:nth-child(n+2) p{
    padding-left: 38px;
  }

  .interview_contents_title2{
    font-size: 25px;
  }
  .interview_contents_txt{
    /*font-size: 18px;*/
    /*line-height: 2.777;*/
    /*margin-top: 35px;*/
  }

  .interview_contents_row:nth-child(odd) .interview_contents_box1{

  }
  .interview_contents_row:nth-child(odd) .interview_contents_box2{

  }
  .interview_contents_row:nth-child(even) .interview_contents_box1{
    order: 2;
  }
  .interview_contents_row:nth-child(even) .interview_contents_box2{
    order: 1;
  }
  .interview_contents_row.no_reverse:nth-child(even)  .interview_contents_box1{
    order: 1;
  }
  .interview_contents_row.no_reverse:nth-child(even)  .interview_contents_box2{
    order: 2;
  }
  .interview_contents_row.no_reverse:nth-child(odd)  .interview_contents_box1{
    order: 2;
  }
  .interview_contents_row.no_reverse:nth-child(odd)  .interview_contents_box2{
    order: 1;
  }
  /*  .interview_contents_row:nth-child(odd) .interview_contents_img{
      margin-left: var(--margin-for-device-side-w);
    }
    .interview_contents_row:nth-child(even) .interview_contents_img{
      margin-right: var(--margin-for-device-side-w);
    }*/
  .interview_contents_img.img_fit:before{
    padding-top: 76.92%;
  }
}
@media (min-width:1200px){
  .interview_contents_title1_line{
    font-size: 22px;
  }
}
@media (min-width:1470px){
  /* インタビュー */
  .interview_contents{
    margin-top: 30px;
  }
  * + .interview_contents{
    margin-top: 110px;
  }
  .interview_contents_row{
  }
  .interview_contents_row + .interview_contents_row{
    margin-top: 80px;
  }
  .interview_contents_box1{
    width: 42.76%;
  }
  .interview_contents_box2{
    width: 50.98%;
  }
  .interview_contents_title1{
    margin-bottom: 20px;
  }
  .interview_contents_title1_line{
    font-size: 24px;
  }
  .interview_contents_title1_line + .interview_contents_title1_line{
    margin-top: 10px;
  }
  .interview_contents_title1_line p{
    padding: 2px 15px 5px;
  }
  .interview_contents_title1_line:nth-child(n+2) p{
    padding-left: 42px;
  }

  .interview_contents_title2{
    font-size: 36px;
  }

  .interview_contents_img2.img_fit:before{
    padding-top: 500px;
  }

  .interview_contents + .read_more{
    margin-top: 70px;
  }
}
@media (min-width:1720px){
  /* 背景 */
  .interview_bk_txt.cmn_bk_txt{
    width: 120%;
    top: auto;
    left: 0px;
    right: 0;
    bottom: -460px;
  }

  /* インタビュー */
  .interview_contents{
    margin-top: 30px;
  }
  * + .interview_contents{
    margin-top: 95px;
  }
  .interview_contents_row{
  }
  .interview_contents_row + .interview_contents_row{
    margin-top: 120px;
  }
  .interview_contents_box1{
    width: 42.67%;
  }
  .interview_contents_box2{
    width: 50.98%;
  }
  .interview_contents_title1{
    margin-bottom: 25px;
  }
  .interview_contents_title1_line{
    font-size: 30px;
  }
  .interview_contents_title1_line + .interview_contents_title1_line{
    margin-top: 12px;
  }
  .interview_contents_title1_line p{
    padding: 2px 15px 5px;
  }
  .interview_contents_title1_line:nth-child(n+2) p{
    padding-left: 50px;
  }

  .interview_contents_title2{
    font-size: 38px;
    margin-bottom: 0;
  }
  .interview_contents_txt{
    margin-top: 33px;
  }

  .interview_contents_box3{
    padding-top: 12px;
  }
  .interview_contents_img2.img_fit:before{
    padding-top: 26.04%;
  }

  .interview_contents + .read_more{
    margin-top: 90px;
  }

}


/*******************************
*　会社概要
********************************/
.pg_companny{

}
.pg_companny .section.sec1{

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

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

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

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

  }
  .pg_companny .section.sec1{

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

  }
  .pg_companny .section.sec1{
    padding-bottom: 10px;
  }
}
@media (min-width:1200px){


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

  }
  .pg_companny .section.sec1{
    padding-bottom: 15px;
  }
}
@media (min-width:1720px){

}


/* 会社概要 */
.company_tbl{
  margin-top: 30px;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: var(--txt-color);
  border-color: #7e7e7e;
  padding: 10px 10px;
  font-family: var(--font-ja);
  font-weight: 400;
}
.company_tbl p{
  letter-spacing: 0.075em;
}
.company_tbl .table_rows_th{
  background: #e8e8e8;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.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;
    border-inline: 0;
    line-height: 1.875;
  }
  .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){

  /* 会社概要 */
  .home_contents_head.center{
    margin-top: -30px;
  }
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 12px 20px 12px;
  }
  .company_tbl .table_rows_th{
    width: 200px;

  }
  .company_tbl .table_rows_td{

  }

  /* マップ */
  .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){
  .gmap{
    margin-top: 60px;
  }

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

  /* 会社概要 */
  .company_tbl{
    margin-top: 45px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 14px 16px 13px;
  }
  .company_tbl .table_rows_th{
    width: 285px;
  }
  .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){
  .company_tbl{
    margin-top: 75px;
  }

}
@media (min-width:1720px){
  .home_contents_head.center{
    margin-top: -30px;
  }

}


/* カテゴリ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%;
  }

}


/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
  margin-top: 30px;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.08em;
  background: #e8e8e8;
  padding: 11px 15px 11px 20px;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-family: var(--font-fa);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.5;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.formTd {
  font-size: 15px;
  line-height: 2.07em;
  padding: 12px 19px;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 50px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.08em;
  display: inline;
}
.formWrap .privacyLabel a{
  color: var(--main-color);
}
.text-center.formBtn{
  padding-top: 45px;
}
.formBtn.formSend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-width: 285px;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--main-color);
  background: #e8e8e8;
  border-radius: 10px;
  color: var(--txt-color);
  padding: 17px 10px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
}
.formBtn.formSend:after{
  content: "→";
  font-family: var(--font-ja);
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--txt-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  background: var(--main-color) !important;
  color: #FFF;
  transition: 0.2s all;
}
.formBtn.formSend:hover:after{
  right: 13px;
  color: #FFF;
  transition: 0.2s all;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0.08em;
  line-height: 2em;
  margin-left: 9px;
}
.radioArea .d-inline-block{
  margin-right: 26px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.formTd.caution{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.fileArea:nth-child(n+2){
  margin-top: 9px;
}
@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .thanks_text{
    text-align: center !important;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid var(--main-color);
  letter-spacing: 0.04em;
}
.estimate_form .privacy_ttl{
  border-color: var(--sub-color);
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

.contact_tt.privacy {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-top: 30px;
  margin-bottom: 45px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

.privacy_box {
  padding: 0 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 50px;
}
@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 170px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .privacyLabel {
    font-size: 15px;
  }

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

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    font-size: 19px;
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }
}
@media (min-width:1024px){
  .formTbl {
    margin-top: 45px;
  }
}
@media (min-width:1470px){
  .formTbl {
    margin-top: 74px;
  }
}
/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: justify;
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
    margin-top: 30px;
  }

  .privacy_box{
    padding: 0 10px;
  }
}


/*******************************
*　
********************************/
.pg_XXX{

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

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

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

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

  }


  .service_contents_cate.work .webgene-item a.on{
    background: #3763a5;
    color: #fff;
  }
  .service_contents_cate.work .webgene-item a.on:after{
    color: #fff;
  }
}
@media (min-width:1024px){
  .pg_XXX{

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


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

  }

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

}


/* メイン */


@media (max-width:374px){

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

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

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

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

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


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


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