@charset "UTF-8";

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

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

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


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

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

#root{
  overflow: hidden;
}

u {
  display: inline-block;
  font-style: normal;
  text-decoration: none;
}
/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

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

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

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

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

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

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

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

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

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


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

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

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

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

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

}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
  color: var(--main-color);
}
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: 50px;
  padding: 10px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding:0 0 0 24px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo{
    margin-top: 10px;
  }
  .hdr_logo img{
    /*width: 180px;*/
  }

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

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv:after{
  content: "";
  display: block;
  width: 1515px;;
  aspect-ratio:1515 / 1862;
  background-image: url(/system_panel/uploads/images/mv_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 100px;
  right: 0;
  z-index: -1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 70px - 54px - 66px);
}
.mv_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 0 0 50px 0;
  z-index: 1;
}
.mv_img.img_fit img{
  border-radius: 0 0 50px 0;
}
.mv_inner{
  position: relative;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

.mv_inner_txt{
  font-family: "Shippori Mincho B1", serif;
  color: #fff;
  text-shadow: 0px 3px 4.3px rgba(0, 0, 0, 1);
  position: absolute;
  bottom: 13px;
  right: 0;
  z-index: 1;
}
.mv_inner_txt1{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.mv_inner_txt1:before{
  content: "";
  display: block;
  width: 100%;
  border-top: 2px solid #fff;
  margin-right: 30px;
}
.mv_inner_txt2{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  margin-right: -50px;
}
.mv_outer_txt{
  text-align: right;
  font-size: 19px;
  font-weight: 500;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.76em;
  margin-top: 20px;
}
.mv_outer_txt p{
  letter-spacing: 0;
}

.mv_cara{
  width: 19.21%;
  aspect-ratio:369 / 351;
  position: absolute;
  bottom: 0;
  left: 5.3%;
  z-index: 1;
}

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

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

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

  .mv_cara{
    width: 27.21%;
  }

  .mv_inner_txt{
    width: 100%;
    bottom: 70px;
  }
  .mv_inner_txt2{
    text-align: right;
    font-size: 36px;
    margin-right: -20px;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 600px;
  }
  .mv_img:after,
  .mv_img.img_fit img{
    border-radius: 0 0 100px 0;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_inner_txt{
    bottom: 50px;
    padding-right: 20px;
  }
  .mv_inner_txt1{
    font-size: 30px;
  }
  .mv_inner_txt2{
    font-size: 40px;
    margin-right: -20px;
  }

  .mv_outer_txt{
    font-size: 28px;
  }
  .mv_outer_txt p{
    margin-right: -22px;
  }

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


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

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_inner_txt{
    bottom: 50px;
    padding-right: 100px;
  }
  .mv_inner_txt1{
    font-size: 30px;
  }
  .mv_inner_txt2{
    font-size: 50px;
    margin-right: -30px;
  }

  .mv_outer_txt{
    font-size: 34px;
    padding-right: 100px;
  }
  .mv_outer_txt p{

  }

  .mv_inner{
    padding-right: 100px;
  }
}
@media (min-width:1200px){

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

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_inner_txt{
    bottom: 50px;
    padding-right: 100px;
  }
  .mv_inner_txt1{
    font-size: 40px;
  }
  .mv_inner_txt2{
    font-size: 60px;
    margin-right: -50px;
  }

  .mv_outer_txt{
    padding-right: 100px;
  }
}
@media (min-width:1470px){

}
@media (min-width:1536px){
  .mv_inner_txt{
    bottom: 13px;
    padding-right: 100px;
  }
  .mv_inner_txt1{
    font-size: 50px;
  }
  .mv_inner_txt2{
    font-size: 80px;
  }

  .mv_outer_txt{
    padding-right: 0;
  }
}
@media (min-width:1720px){

}


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

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

/* バナー */
.sidebar_bn{
  display: block;
  text-shadow    : 
    2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff;  
}
.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{

    width: 100px;
    top: 362px;
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
  }
  .sidebar_bn + .sidebar_bn{
    margin-top: 40px;
  }

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


}
@media (min-width:1024px){
  .sidebar{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
  }
  .sidebar_bn p{
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    font-family: "Cardo", serif;
    letter-spacing: 0.075em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-top: 13px;
  }
}
@media (min-width:1200px){

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

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.pg_header:before{
  content: "";
  display: block;
  width: 1515px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 100px;
  right: 0;
  z-index: -1;
}
.pg_header:before{
  aspect-ratio: 1515 / 701;
  background-image: url(/system_panel/uploads/images/po.png);
}
.pg_header.long:before{
  aspect-ratio: 1515 / 1601;
  background-image: url(/system_panel/uploads/images/kasou.png);
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_img.img_fit:before{
  padding-top: 180px;
}
.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_img img{
  border-radius: 0 0 50px 0;
}
.pg_header_inner{
  position: relative;
}

.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;
}


.pg_header_h1{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  color: #b89366;
  background: #ffffff;
  position: absolute;
  right: 0;
  bottom: 17.5%;
  z-index: 2;
  padding: 5px 30px;
}

@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_img img{
    border-radius: 0 0 100px 0;
  }
  .pg_header:before{
    content: "";
    display: block;
    width: 1000px;
  }

  .pg_header_h1{
    font-size: 36px;
    padding: 8px 97px 8px 78px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
    padding-right: 100px;
  }
  .pg_header:before{
    content: "";
    display: block;
    width: 1515px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 500px;
  }

  .pg_header_title_txt{

  }

  .pg_header_h1{
    font-size: 46px;
    padding: 8px 97px 8px 78px;
  }
}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img.img_fit:before{
    padding-top: 500px;
  }

  .pg_header_title_txt{

  }

}
@media (min-width:1470px){
  .pg_header_img.img_fit:before{
    padding-top:640px;
  }
}
@media (min-width:1536px){

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

}


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

.footer{
  margin-top: 80px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  font-weight: 400;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  position: absolute;
  left: 1%;
  top: 39%;
}
.ftr_copy p{
  letter-spacing: 0;
}

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

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

.ftr_1{
  position: relative;
  z-index: 1;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom:50px;
}
.ftr_1_box1{
  text-align: center;
  width: 100%;
}
.ftr_logo{

}
.ftr_name{
  font-size: 24px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  margin-top: 30px;
}
.ftr_add{
  font-size: 16px;
  font-weight: 400;
  margin-top: 26px;
}
.ftr_add p{
  letter-spacing: 0.075em;
}
.ftr_1_box2{
  width: 100%;
  background: #f6f3ef;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 16px;
  margin-top: 40px;;
}
.ftr_1_box2_left{
  width: 100%;
}
.ftr_1_box2_left_h2{
  font-size: 28px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
}
.ftr_1_box2_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 16px;
}
.ftr_1_box2_desc p{
  letter-spacing: 0;
}
.ftr_1_box2_desc p + p{
  margin-top: 22px;
}
.ftr_1_box2_right{
  width: 100%;
  margin-top:30px;;
}
.ftr_1_box2_right_txt1{
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  font-family:var(--font-mincho);
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftr_1_box2_right_txt1:before{
  content: "";
  display: block;
  width: 30px;
  aspect-ratio:30 / 23;
  background-image: url(/system_panel/uploads/images/mail.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}
.ftr_1_box2_right .home_sec2_item_tt{
  margin-top: 30px;
  display: block;
  transition: all .2s;
}
.ftr_1_box2_right .home_sec2_item_tt:hover .home_sec2_item_h2.no1{
  color: #fff;
  background-image: url(/system_panel/uploads/images/no3_bg.png);
}
.ftr_1_box2_right .home_sec2_item_h2.no1{
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding: 20px 8px;
  position: relative;
  transition: all .2s;
}
.ftr_1_box2_right .home_sec2_item_h2.no1:after{
  content: "";
  display: block;
  width: 24px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arw.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.ftr_mv{
  position: relative;
}
.ftr_mv:before{
  content: "";
  display: block;
  width: 39.53%;;
  aspect-ratio:759 / 835;
  background-image: url(/system_panel/uploads/images/ftr_mask2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50%);
}
.ftr_mv_img{
  width: 74.06%;
  aspect-ratio:1422 / 950;
  margin-left: auto;
}
.ftr_mv_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/ftr_mak.png);
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .pg_header:before{
    width: 300px;
  }
  .pg_header.long:before{
    width: 1515px;
  }

  .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_logo{
    display: block;
    width: 160px;
    margin-inline: auto;
  }

  .ftr_links{
    display: none;
  }

  .ftr_mv:before{
    width: 58.53%;
  }
  .ftr_mv_img{
    width: 93.06%;
  }

  .ftr_copy{
    font-size: 13px;
    height: 100%;
    top: -8%;
  }

  .ftr_1_box2_left_h2{
    text-align: center;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }
  .ftr_copy{
    height:100%;
    top: 8%;
    font-size: 16px;
  }

  .ftr_1_box{
    margin-bottom: 114px;
  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_name{
    font-size: 32px;
    margin-top: 50px;
  }
  .ftr_add{
    font-size: 18px;
  }
  .ftr_add p{

  }
  .ftr_1_box2{
    align-items: center;
    padding: 80px 33px;
    margin-top: 50px;;
  }
  .ftr_1_box2_left{
    width: 53.79%;
    position: relative;
    padding-right: 16px;
  }
  .ftr_1_box2_left:after{
    content: "";
    display: block;
    height: 284px;
    border-right: 2px solid #b89366;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .ftr_1_box2_left_h2{
    font-size: 28px;
  }
  .ftr_1_box2_desc{

  }
  .ftr_1_box2_desc p{

  }
  .ftr_1_box2_right{
    width: 42.8%;
    margin-top: 0;
  }
  .ftr_1_box2_right_txt1{

  }
  .ftr_1_box2_right_txt1:before{

  }
  .ftr_1_box2_right .home_sec2_item_tt{

  }
  .ftr_1_box2_right .home_sec2_item_h2.no1{
    font-size: 16px;
  }
  .ftr_1_box2_right .home_sec2_item_h2.no1:after{
    right: 4%;
  }

  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .ftr_link{
    width: 20%;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    padding: 0 5px;
  }
  .ftr_link p{
    letter-spacing: 0.2em;
  }

  .ftr_mv{
    margin-top: -4%;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  .ftr_copy{
    height: auto;
    top: 39%;
    font-size: 16px;
  }

  .ftr_1_box2_right .home_sec2_item_h2.no1:after{
    right: 13%;
  }

  .ftr_link{
    font-size: 16px;
    text-align: left;
    width: auto;
  }
}
@media (min-width:1200px){
  .ftr_copy{
    font-size: 20px;
  }

  .ftr_1_box{

  }
  .ftr_1_box1{
    text-align: left;
    width: 30.26%;
  }
  .ftr_logo{

  }
  .ftr_name{

  }
  .ftr_add{

  }
  .ftr_add p{

  }
  .ftr_1_box2{        
    width: 61.51%;
    padding: 30px 33px;
    margin-top: 0;
  }
  .ftr_1_box2_left{

  }
  .ftr_1_box2_left_h2{

  }
  .ftr_1_box2_desc{

  }
  .ftr_1_box2_desc p{

  }
  .ftr_1_box2_right{

  }
  .ftr_1_box2_right_txt1{

  }
  .ftr_1_box2_right_txt1:before{

  }
  .ftr_1_box2_right .home_sec2_item_tt{

  }
  .ftr_1_box2_right .home_sec2_item_h2.no1{
    font-size: 15px;
  }
  .ftr_1_box2_right .home_sec2_item_h2.no1:after{
    right: 13%;
  }

  .ftr_link{
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
  }
}
@media (min-width:1470px){
  .ftr_link{
    font-size: 16px;
    font-weight: 500;
    padding: 0 19px;
  }
}
@media (min-width:1536px){

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

}

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


/* セクション */
.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{

}


/* テーブル用 */
.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: #FFF;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 250px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #b89366;
  background: #fff;
  /*border-radius: 27px;*/
  color: #000;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 12.28%;
  border-bottom: 1px solid #b89366;
  top: 50%;
  right:0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: #b89366;
}
.read_more a:hover:after{
  margin-right: 0;
  border-bottom: 1px solid #fff;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}

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

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



@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

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

  /* 見出し */



  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{

  }


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

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


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


  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }


  .table_rows_th{
    width: 285px;
  }
  .table_rows_td{

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



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

}
.pg_home .section.sec1{
  position: relative;
  z-index: 1;
  padding-top: 50px;
}
.pg_home .section.sec1 .container{
  position: relative;
}
.pg_home .section.sec2{
  position: relative;
  z-index: 1;
  padding-bottom: 100px;
}
.pg_home .section.sec3{
  position: relative;
  /*  background-image: url(/system_panel/uploads/images/bg_3.jpg);
    background-repeat: repeat;*/
}
.pg_home .section.sec3:before{
  content: "";
  display: block;
  width: 800px;
  aspect-ratio:1920 / 649;
  background-image: url(/system_panel/uploads/images/hdr2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -1.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.pg_home .section.sec3:after{
  content: "";
  display: block;
  background-image: url(/system_panel/uploads/images/bg_3.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pg_home .section.sec4{
  position: relative;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 100%;;
  aspect-ratio:1920 / 383;
  background-image: url(/system_panel/uploads/images/ftr2.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){
  .cara3{
    left: -4%;
  }

  .home_sec4_box1 .read_more{
    width: 100%;
  }

  .home_sec4_box1 .sub_tt{
    font-size: 26px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 15px;
  }
  .pg_home .section.sec2{
    padding-top: 20px;
    padding-bottom: 180px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec3:before{
    width: 100%;
    top: -2.5%;
  }
  .pg_home .section.sec4{
    padding-top: 120px;
  }
  .pg_home .section.sec4:before{
    top: -4%;
  }
  .pg_home .section.sec5{
    padding-top: 123px;
  }
  .pg_home .section.sec6{
    padding-bottom: 130px;

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec3:before{
    top: -2.5%;
  }
  .pg_home .section.sec4:before{
    top: -4%;
  }

}
@media (min-width:1200px){
  .pg_home .section.sec3:before{
    top: -5.5%;
  }
  .pg_home .section.sec4:before{
    top: -7%;
  }

}
@media (min-width:1470px){
  .pg_home .section.sec4:before{
    top: -11%;
  }

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


}

[class^="pg_"] .section.sec1,
[class*=" pg_"] .section.sec1 {
  position: relative;
  z-index: 1;
}

.onmask{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.onmask img {
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.cara{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.cara1{
  width: 120px;
  aspect-ratio:297 / 345;
  background-image: url(/system_panel/uploads/images/cara1.png);
  bottom: -15rem;
  right: 0;
}
.cara2{
  width: 50px;
  aspect-ratio:134 / 261;
  background-image: url(/system_panel/uploads/images/cara2.png);
  top: -36px;
  left: 20px;
  z-index: 2;
}
.cara3{
  width: 26.4%;
  aspect-ratio:192 / 113;
  background-image: url(/system_panel/uploads/images/cara3.png);
  top: -14%;
  left: -8%;
  z-index: 2;
}

/*main*/

/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_wrap_outer{
  position: relative;
}
.home_sec1_box1{
  width: 100%;
}
.home_sec1_box1_inner{

}
.home_sec1_box1_img{
  aspect-ratio: 850 / 934;
}
.home_sec1_box1_img img{
  -webkit-mask-image: url(/system_panel/uploads/images/bg1.png);
}
.home_sec1_box2{
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.home_sec1_box2_en{
  font-size: 36px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1;
  color: #b89366;
  letter-spacing: 0;
}
.home_sec1_box2_en.center{
  text-align: center;
}
.home_sec1_box2_en.tate{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home_sec1_box2_right{
  width: 82.88%; 
}
.sub_tt{
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1.3em;
  color: #78975f;
}
.sub_tt p{
  letter-spacing: 0;
}
.sub_tt.center{
  font-weight: 600;
  text-align: center;
}
.home_sec1_box2 .sub_tt{

}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
}
.content_desc p{
  letter-spacing: 0.075em;
}
.home_sec1_box2 .content_desc{
  margin-top: 27px;
}
.home_sec1_box2 .read_more{

}

/*sec2*/
.home_sec2_wrap .content_desc{
  margin-top: 32px;
}
.home_sec2_wrap .sub_tt{
  margin-top: 30px;
}
.home_sec2_items{
  display: flex;
  flex-wrap: wrap;
  gap:30px 0;
  margin-top: 36px;
}
.home_sec2_item{
  width: 100%;
}
.home_sec2_item_tt{
  text-align: center;
  position: relative;
  z-index: 2;
}
.home_sec2_item_h2{
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  padding: 8px 0;
}
.home_sec2_item_h2.no1{
  background-image: url(https://marukane-ringyo.co.jp/system_panel/uploads/images/no1_bg.png);
}
.home_sec2_item_h2.no2{
  background-image:url(https://marukane-ringyo.co.jp/system_panel/uploads/images/no2_bg.png);
}
.home_sec2_item_h2.no3{
  background-image: url(https://marukane-ringyo.co.jp/system_panel/uploads/images/no3_bg.png);
}
.home_sec2_item_img{

  margin-top: -28px;
}
.home_sec2_item_img img{
  border-radius: 50px;
}
.home_sec2_item_img:before{
  padding-top: 75%;
}
.home_sec2_item .content_desc{
  margin-top: 13px;
}

/*sec3*/
.home_sec3_wrap{
  position: relative;
  z-index: 1;
}
.home_sec3_wrap .content_desc.center{
  margin-top: 35px;
}
.home_sec3_wrap .content_desc.center p{
  letter-spacing: 0;
}
.home_sec3_wrap .sub_tt{
  margin-top: 18px;
}
.home_sec3_items{
  margin-top: 40px;
}
.home_sec3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec3_item:nth-child(n+2){
  margin-top: 50px;
}
.home_sec3_item_box1{
  width: 100%;
  position: relative;
}
.home_sec3_item_box1_img{
  aspect-ratio: 557 / 459;
}
.home_sec3_item_box1_img img{
  -webkit-mask-image:url(https://marukane-ringyo.co.jp/system_panel/uploads/images/bg2.png);
}
.home_sec3_item_box1_num{
  font-size: 60px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: 0;
  text-shadow    : 
    3px  3px 1px #ffffff,
    -3px  3px 1px #ffffff,
    3px -3px 1px #ffffff,
    -3px -3px 1px #ffffff,
    3px  0px 1px #ffffff,
    0px  3px 1px #ffffff,
    -3px  0px 1px #ffffff,
    0px -3px 1px #ffffff; 
  position: absolute;
  top: 14px;
}
.home_sec3_item:nth-child(odd) .home_sec3_item_box1_num{
  right: 0;
}
.home_sec3_item:nth-child(even) .home_sec3_item_box1_num{
  left: 0;
}
.home_sec3_item_box2{
  width: 100%;
}
.home_sec3_item_box2 .sub_tt{
  line-height: 1.6em;
  font-weight: 600;
}
.home_sec3_item_box2 .content_desc{
  margin-top: 20px;
}

/*sec4*/
.home_sec4_wrap{

}
.home_sec4_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec4_item:nth-child(n+2){
  margin-top: 50px;
}
.home_sec4_box1{
  display: contents;
  width: 100%;
}
.home_sec4_box1 .sub_tt{
  width: 100%;
  margin-top: 28px;
  order: 1;
}
.home_sec4_box1 .content_desc{
  width: 100%;
  margin-top: 20px;
  order: 3;
}
.home_sec4_box1 .read_more{
  order: 4;
}
.home_sec4_box2{
  width: 100%;

  display: contents;
}
.home_sec4_box2_img_item{

}
.home_sec4_box2_img{

}
.home_sec4_box2_img img{
  border-radius: 30px;
}
.home_sec4_item:nth-child(odd) .home_sec4_box2_img_item.no1{
  margin-left: auto;
}
.home_sec4_item:nth-child(odd) .home_sec4_box2_img_item.no2{
  margin-right: auto;
}
.home_sec4_item:nth-child(even) .home_sec4_box2_img_item.no1{
  margin-right: auto;
}
.home_sec4_item:nth-child(even) .home_sec4_box2_img_item.no2{
  margin-left: auto;
}
.home_sec4_box2_img_item.no1{
  width: 63.79%;
  order: 5;
  margin-top: 30px;
}
.home_sec4_box2_img_item.no1 .home_sec4_box2_img:before{
  padding-top: 81.08%;
}
.home_sec4_box2_img_item.no2{
  width: 83.59%;
  margin-top: -10%;
  position: relative;
  order: 6;
}
.home_sec4_box2_img_item.no2 .home_sec4_box2_img{
  border: 5px solid #fff;
  border-radius: 30px;
}
.home_sec4_box2_img_item.no2 .home_sec4_box2_img:before{
  padding-top: 71.01%;
}

/*sec5*/
.home_sec5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec5_box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;

}
.home_sec5_box1 .home_sec1_box2_en.tate{
  writing-mode: horizontal-tb;
  width: 100%;
  margin-bottom: 10px;;
}
.news_tt{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1;
  color: #78975f;
}
.news_tt.tate{

}
.home_sec5_box1 .news_tt{

}
.home_sec5_box2{
  width: 100%;
}
.news_list{

}
.news_list .webgene-blog{

}
.news_list .webgene-item{

}
.news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom:1px solid #b3b3b3;
  padding: 24px 0;
  position: relative;
}
.news_list .webgene-item a:after{
  content: "→";
  display: block;
  width: 34px;
  aspect-ratio:1;
  border: 1px solid #be9b72;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
}
.news_list .webgene-item .date{
  width: 126px;;
  font-size: 16px;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
}
.news_list.kasou .webgene-item .date{
  width: 111px;
}
.news_list .webgene-item .category{
  width: 159px;;
  text-align: center;
}
.news_list .webgene-item .category span{
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.075em;
  width: 100%;
  border: 1px solid #b89366;
  border-radius: 5px;
  padding: 8px 0px;
}
.news_list .webgene-item .title{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-top: 16px;
}
.news_list .webgene-item{

}

/*insta*/
.home_sec6_wrap .news_tt{
  margin-top: 17px;
}
.insta_box{
  margin-top: 40px;
}
.insta_box .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.insta_box .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.insta_box .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.insta_box .webgene-item a{

}
.insta_box .webgene-item .img_fit:before{
  padding-top: 132%;
}
.insta_box .webgene-item .img_fit,
.insta_box .webgene-item .img_fit img{
  border-radius: 10px;
}
.insta_box video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .sub_tt {
    font-size: 28px;
    margin-right: -16px;
  }
  .sub_tt p{
    letter-spacing: 0;
  }
  .home_sec1_box2 .sub_tt,
  .home_sec2_wrap .sub_tt{
    font-size: 26px;
  }

  .home_sec1_box1{
    width: 85%;
  }
  .home_sec1_box1_img{
    margin-left: -80px;
  }


  .news_list .webgene-item a:after{
    top: 34%;
  }

  .insta_box .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){
  .cara1{
    width: 200px;
    bottom: -5rem;
  }
  .cara2{
    width: 6rem;
    top: -2.5rem;
    left: 1.5rem;

  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{

  }
  .home_sec1_box1_inner{

  }
  .home_sec1_box1_img{

  }
  .home_sec1_box1_img img{

  }
  .home_sec1_box2{
    margin-top: 30px;
  }
  .home_sec1_box2_en{
    font-size: 50px;
  }
  .home_sec1_box2_right{

  }
  .sub_tt{
    font-size: 28px;
  }
  .sub_tt p{

  }
  .home_sec1_box2 .sub_tt{

  }
  .content_desc{
    line-height: 2.625em;
  }
  .content_desc p{

  }
  .home_sec1_box2 .content_desc{

  }
  .home_sec1_box2 .read_more{
    margin-top: 23px;
  }

  /*sec2*/
  .home_sec2_wrap .content_desc{
    margin-top: 32px;
    line-height: 2.25em;
  }
  .home_sec2_items{
    gap:40px;
    margin-top: 47px;
  }
  .home_sec2_item{
    width: calc(50% - 20px);
  }
  .home_sec2_item_tt{

  }
  .home_sec2_item_h2{
    font-size: 24px;
  }
  .home_sec2_item_img img{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_wrap .home_sec2_item .content_desc{
    line-height: 1.875em;
    margin-top: 13px;
  }

  /*sec3*/
  .home_sec3_wrap .content_desc.center{
    line-height: 2.25em;
  }

  .home_sec3_items{
    margin-top: 55px;
  }
  .home_sec3_item{

  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 50px;
  }
  .home_sec3_item_box1{

  }
  .home_sec3_item_box1_img{

  }
  .home_sec3_item_box1_img img{

  }
  .home_sec3_item_box1_num{
    font-size: 110px;
  }
  .home_sec3_item:nth-child(odd) .home_sec3_item_box1_num{
    right:0;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box1_num{
    left: 0;
  }
  .home_sec3_item_box2{

  }
  .home_sec3_item_box2 .sub_tt{

  }
  .home_sec3_item_box2 .content_desc{
    line-height: 2.25em;
    margin-top: 29px;
  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_item{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .home_sec4_item:nth-child(n+2) {
    margin-top: 100px;
  }
  .home_sec4_box1{

  }
  .home_sec4_box1 .sub_tt{

  }
  .home_sec4_box1 .content_desc{
    margin-top: 30px;
  }
  .home_sec4_box1 .read_more{

  }
  .home_sec4_box2{

  }
  .home_sec4_box2_img_item{

  }
  .home_sec4_box2_img{

  }
  .home_sec4_box2_img img{

  }
  .home_sec4_box2_img_item.no1{
    margin-top: 40px;
  }
  .home_sec4_box2_img_item.no1 .home_sec4_box2_img:before{

  }
  .home_sec4_box2_img_item.no2{

  }
  .home_sec4_box2_img_item.no2 .home_sec4_box2_img:before{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{

  }
  .home_sec5_box1 .home_sec1_box2_en{

  }
  .news_tt{
    font-size: 21px;
  }
  .news_tt.tate{

  }
  .home_sec5_box1 .news_tt{

  }
  .home_sec5_box2{

  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{
    padding: 30px 0;
  }
  .news_list.kasou .webgene-item:first-child a{
    padding-top: 0;
  }
  .news_list.kasou .webgene-item a:after{
    right: 3px;
  }
  .news_list.kasou .webgene-item:first-child a:after{
    top: 27%;
  }
  .news_list .webgene-item .date{
    width: 126px;;
  }
  .news_list.kasou .webgene-item .date{
    width: 111px;
  }
  .news_list .webgene-item .category{
    width: 159px;;
  }
  .news_list.kasou .webgene-item .category{
    width: 100px;
  }
  .news_list .webgene-item .category span{

  }
  .news_list .webgene-item .title{
    width: calc(100% - 126px - 159px - 50px);
    padding-left: 28px;
    margin-top: 0;
  }
  .news_list.kasou .webgene-item .title{
    width: calc(100% - 111px - 100px - 50px);
  }
  .news_list .webgene-item{

  }
  .pg_home .section.sec5 .read_more{
    margin-top: 97px;
  }

  /*insta*/
  .insta_box{
    margin-top: 50px;
  }
  .insta_box .webgene-blog{
    margin-inline:-4.5px;
  }
  .insta_box .webgene-item{
    width: 33.333%;
    padding-inline:4.5px;
  }
  .insta_box .webgene-item:nth-child(n+3){
    margin-top:0;
  }
  .insta_box .webgene-item:nth-child(n+4){
    margin-top: 9px;
    ;
  }
  .insta_box .webgene-item a{

  }
  .insta_box .webgene-item .img_fit:before{
    padding-top: 132%;
  }
}
@media (min-width:1024px){
  .cara1{
    width: 297px;
    top:auto;
    bottom: -11rem;
  }
  .cara2{
    width: 8rem;
    top: -3.5rem;
    left: 1.5rem;
  }

}
@media (min-width:1200px){
  .cara2{
    width: 6rem;
    top: -5.5rem;
    left: 0.5rem;
  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 32.23%;
  }
  .home_sec1_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_sec1_box1_img{
    margin-left: -160px;
  }
  .home_sec1_box1_img img{

  }
  .home_sec1_box2{
    width: 61.51%;
    padding-top: 107px;
    margin-top: 0;
  }
  .home_sec1_box2_en{
    font-size: 80px;
  }
  .home_sec1_box2 .home_sec1_box2_en{
    padding-top: 14px;
  }
  .home_sec1_box2_right{

  }
  .sub_tt{
    font-size: 40px;
  }
  .sub_tt.sm{
    font-size: 30px;
  }
  .sub_tt p{

  }
  .home_sec1_box2 .sub_tt{

  }
  .content_desc{

  }
  .content_desc p{

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

  }
  .home_sec1_box2 .read_more{

  }

  /*sec2*/
  .home_sec2_items{

  }
  .home_sec2_item{
    width: calc(33.333% - 26.66px);
  }
  .home_sec2_item_tt{

  }
  .home_sec2_item_h2{
    font-size: 30px;
  }
  .home_sec2_item_img img{

  }
  .home_sec2_item_img:before{

  }
  .home_sec2_item .content_desc{
    text-align: justify;
  }

  .home_sec3_items{

  }
  .home_sec3_item{
    width: 86.51%;
  }
  .home_sec3_item:nth-child(odd) {
    margin-right: auto;
  }
  .home_sec3_item:nth-child(even){
    margin-left: auto;
  }
  .home_sec3_item:nth-child(odd) .home_sec3_item_box1{
    order: 1;
  }
  .home_sec3_item:nth-child(odd) .home_sec3_item_box2{
    order: 2;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box1{
    order: 2;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box2{
    order: 1;
  }
  .home_sec3_item_box1{
    width: 42.2%;
  }
  .home_sec3_item_box1_img{

  }
  .home_sec3_item_box1_img img{

  }
  .home_sec3_item_box1_num{
    font-size: 110px;
  }
  .home_sec3_item:nth-child(odd) .home_sec3_item_box1_num{
    right: -48px;
  }
  .home_sec3_item:nth-child(even) .home_sec3_item_box1_num{
    left: -48px;
  }
  .home_sec3_item_box2{
    width: 50.57%;
    padding-top: 14px;
  }
  .home_sec3_item_box2 .sub_tt{
    margin-right: -30px;
  }
  .home_sec3_item_box2 .content_desc{

  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_item:nth-child(odd) .home_sec4_box1{
    order: 1;
  }
  .home_sec4_item:nth-child(odd) .home_sec4_box2{
    order: 2;
  }
  .home_sec4_item:nth-child(even) .home_sec4_box1{
    order: 2;
  }
  .home_sec4_item:nth-child(even) .home_sec4_box2{
    order: 1;
  }
  .home_sec4_box1{
    width: 36.51%;
    display: block;
    padding-top: 120px;
  }
  .home_sec4_box1 .sub_tt{

  }
  .home_sec4_box1 .content_desc{

  }
  .home_sec4_box1 .read_more{

  }
  .home_sec4_box2{
    width: 57.23%;
    display: flex;
    flex-wrap: wrap;
  }
  .home_sec4_box2_img_item{

  }
  .home_sec4_box2_img{

  }
  .home_sec4_box2_img img{

  }
  .home_sec4_box2_img_item.no1{
    order: 1;
    margin-top: 0;
  }
  .home_sec4_box2_img_item.no1 .home_sec4_box2_img:before{

  }
  .home_sec4_box2_img_item.no2{
    order: 2;
  }
  .home_sec4_box2_img_item.no2 .home_sec4_box2_img:before{

  }

  /*sec5*/
  .home_sec5_wrap{

  }
  .home_sec5_box1{
    width: 6.9%;
    padding-top: 24px;
  }
  .home_sec5_box1 .home_sec1_box2_en.tate{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    width: auto;
    margin-bottom: 0;
  }
  .news_tt{

  }
  .news_tt.tate{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_sec5_box1 .news_tt{

  }
  .home_sec5_box2{
    width: 86.51%;
  }
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .category span{

  }
  .news_list .webgene-item .title{

  }
  .news_list .webgene-item{

  }

  /*insta*/
  .insta_box{

  }
  .insta_box .webgene-blog{

  }
  .insta_box .webgene-item{
    width: 16.66%;
  }
  .insta_box .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .insta_box .webgene-item a{

  }
  .insta_box .webgene-item .img_fit:before{
    padding-top: 132%;
  }
}
@media (min-width:1470px){
  .cara2{
    width: 8rem;
    top: -12rem;
    left: 6rem;
  }

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

  .sub_tt{
    font-size: 50px;
  }
}
@media (min-width:1720px){
  .sub_tt{
    font-size: 60px;
  }

}




/*******************************
*　staff
********************************/

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

}
.pg_staff .section.sec1{

}
.pg_staff .section.sec2{
  position: relative;
  z-index: 1;
}
.pg_staff .section.sec3{

}
.pg_staff .section.sec4{

}
.pg_staff .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  }
  .pg_staff .section.sec1{

  }
  .pg_staff .section.sec2{
    padding-top: 133px;
  }
  .pg_staff .section.sec3{

  }
  .pg_staff .section.sec4{

  }
  .pg_staff .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  }
  .pg_staff .section.sec1{

  }
  .pg_staff .section.sec2{

  }
  .pg_staff .section.sec3{

  }
  .pg_staff .section.sec4{

  }
  .pg_staff .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */
/*sec1*/
.tt_box{
  margin-bottom: 30px;
}
.pg_head.home_sec1_wrap{

}
.pg_head.home_sec1_wrap .home_sec1_box1{
  width: 85%;
  order: 2;
  margin-top: 30px;
}
.pg_head.home_sec1_wrap .home_sec1_box1_img{
  aspect-ratio:882 / 849;
  margin-left: -60px;
}
.pg_head.home_sec1_wrap .home_sec1_box1_img img{
  -webkit-mask-image: url(https://marukane-ringyo.co.jp/system_panel/uploads/images/mask4.png);
}
.pg_head.home_sec1_wrap .home_sec1_box2{
  display: block;
  order: 1;
}
.news_tt.lg{
  font-weight: 500;
  color: #282828;
  margin-top: 9px;
}

/*sec2*/
.section_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.section_head_box1{

}
.home_sec1_box2_en.multi{
  line-height: 1.05em;
}
.section_head_box2{

}

.staff_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 37px 60px 50px 0;
}
.staff_items .staff_item{
  padding: 37px 16px 50px 0;
}
.staff_item:before{
  content: "";
  display: block;
  width: 86.51%;
  height: 100%;
  background: #edf2f6;
  border-radius: 20px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.staff_items .staff_item:before{
  width: 96.64%;
}
.staff_item_box1{
  width: 100%;
}
.staff_item_box1_img:before{
  padding-top: 122.52%;
}
.staff_item_box1_img img{
  border-radius: 20px;
}
.staff_item_box2{

}
.staff_item_box2_txt1{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0;
}
.staff_item_box2_txt2{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: 0.075em;;
  display: inline-block;
  background: #fff;
  padding: 9px 13px;
  margin-top: 15px;
}
.daihyo_txt_h2{
  font-size: 22px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  border-bottom: 1px solid #beb7ac;
  padding-bottom: 10px;
  margin-top: 27px;
}
.daihyo_meta{
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-mincho);
  margin-top: 24px;
}
.daihyo_meta p{
  letter-spacing: 0.075em;
}
.daihyo_meta p:first-child:after{
  content: "／";
  margin: 0 18px;
}
.daihyo_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}
.daihyo_desc p{
  letter-spacing: 0.075em;
}

.staff_items{
  display: flex;
  flex-wrap: wrap;
  gap:60px 0;
  margin-top: 100px;
}
.staff_items .staff_item{
  width: 100%;
}
.staff_items .staff_item .staff_item_box1{

}

.staff_items .staff_item .staff_item_box1_img:before{
  padding-top: 132.6%;
}
.staff_items .staff_item .staff_item_box2{

}
.people_items{
  margin-top: 18px;
}
.people_item{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.66em;
}
.people_item p{
  letter-spacing: 0.075em;
}
.people_item + .people_item{
  margin-top: 20px;
}

.staff_items .staff_item .staff_item_box3{
  width: 100%;
  padding-top: 30px;
}
.interview_item{
  font-size: 16px;
  line-height: 2.25em;
}
.interview_item_tt{
  font-weight: 700;
  letter-spacing: 0.075em; 
}
.interview_item_desc{
  font-weight: 400;
  letter-spacing: 0.075em; 
}
.staff_item_box3_inner{
  border-top: 1px solid #bfbfbf;
  padding-top: 14px;
}
@media (max-width:767px){
  .section_head_box1{
    width: 100%;
  }

  .section_head_box2 .sub_tt{
    font-size: 26px;
  }

  .staff_items{
    margin-top: 60px;
  }
  .staff_item{
    padding: 37px 16px;
  }
  .staff_item:before,
  .staff_items .staff_item:before{
    width: 100%;
    height: 92%;
    bottom: 0;
    top: 150px;
  }
  .daihyo_meta{
    font-size: 14px;
  }

  .staff_item_box2{
    margin-top: 20px;
  }

  .staff_item .staff_item_box1_img{
    margin-top: -60px;
  }

  .staff_item:before{
    /*    display: none;*/
  }
  /*  .staff_item_box2{
      width: 100%;
      position: relative;
      margin-top: 0;
      padding-top: 20px;
      padding-bottom: 30px;
    }
    .staff_item_box2:before{
      content: "";
      display: block;
          width: 110%;
      height: 100%;
      background: #edf2f6;
      border-radius: 20px;
      position: absolute;
      top: 0;
  left: 50%;
    transform: translateX(-50%);
      z-index: -1;
    }*/
}
@media (min-width:768px){
  /*sec1*/
  .tt_box{
    margin-bottom: 43px;
  }
  .pg_head.home_sec1_wrap{

  }
  .pg_head.home_sec1_wrap .home_sec1_box1{
    width: 100%;
    margin-top: 30px;
  }
  .pg_head.home_sec1_wrap .home_sec1_box1_img{
    margin-left: -100px;;
  }
  .pg_head.home_sec1_wrap .home_sec1_box1_img img{

  }
  .pg_head.home_sec1_wrap .home_sec1_box2{

  }

  /*sec2*/
  .section_head{
    margin-bottom: 124px;
  }
  .section_head_box1{

  }
  .section_head_box2{
    width: 67.76%;
    padding-top: 15px;
  }

  staff_item{
    padding: 37px 55px 37px 0;
  }
  .staff_item_box1{
    width: 36.51%
  }
  .staff_item_box1_img:before{

  }
  .staff_item_box1_img img{

  }
  .staff_item_box1_img{
    margin-top: -87px;
  }
  .staff_item_box2{
    width: 57.23%
  }
  .staff_item_box2_txt1{
    font-size: 20px;
  }
  .staff_item_box2_txt2{
    font-size: 20px;
  }
  .daihyo_txt_h2{
    font-size: 26px;
    padding-bottom: 15px;
  }
  .daihyo_meta{
    font-size: 18px;
  }
  .daihyo_meta p{

  }
  .daihyo_desc{
    margin-top: 34px;
  }
  .daihyo_desc p{

  }

  .staff_items{
    gap: 100px 0;
    margin-top:160px;
  }
  .staff_items .staff_item{
    padding: 37px 16px 22px 0;
  }
  .staff_items .staff_item .staff_item_box1{
    width: 41.26%;
  }
  .staff_items .staff_item .staff_item_box1_img{
    margin-top: -67px;
  }
  .staff_items .staff_item .staff_item_box2{
    width: 52.69%;
  }
  .people_items{

  }
  .people_item{
    font-size: 18px;
  }
  .people_item + .people_item{
    margin-top: 32px;
  }

  .staff_items .staff_item .staff_item_box3{
    padding-left: 48px;
  }
  .interview_item{

  }
  .interview_item_tt{

  }
  .interview_item_desc{

  }
  .staff_item_box3_inner{

  }
}
@media (min-width:1024px){
  /*sec2*/
  .staff_item_box1{
    width: 36.51%
  }
  .staff_item_box1_img:before{

  }
  .staff_item_box1_img img{

  }
  .staff_item_box2{
    width: 57.23%
  }
}
@media (min-width:1200px){
  /*sec1*/
  .pg_head.home_sec1_wrap{

  }
  .pg_head.home_sec1_wrap .home_sec1_box1{
    width: 44.73%; 
    margin-top: 94px;
    order: 1;
  }
  .pg_head.home_sec1_wrap .home_sec1_box1_img{
    margin-left: 0;
  }
  .pg_head.home_sec1_wrap .home_sec1_box1_img img{

  }
  .pg_head.home_sec1_wrap .home_sec1_box2{
    width: 49.01%; 
    order: 2;
  }
  .news_tt.lg{
    font-size: 24px;
  }

  staff_item{

  }
  .staff_item_box1{

  }
  .staff_item_box1_img:before{

  }
  .staff_item_box1_img{
    margin-top: -87px;
  }
  .staff_item_box1_img img{

  }
  .staff_item_box2{

  }
  .staff_item_box2_txt1{

  }
  .staff_item_box2_txt2{

  }
  .daihyo_txt_h2{

  }
  .daihyo_meta{

  }
  .daihyo_meta p{

  }
  .daihyo_desc{

  }
  .daihyo_desc p{

  }

  .staff_items{
    gap: 90px 30px;
    margin-top: 233px;
  }
  .staff_items .staff_item{
    width: calc(50% - 15px);
  }
  .staff_items .staff_item .staff_item_box1{

  }
  .staff_items .staff_item .staff_item_box2{

  }
  .people_items{

  }
  .people_item{

  }

  .staff_items .staff_item .staff_item_box3{

  }
  .interview_item{

  }
  .interview_item_tt{

  }
  .interview_item_desc{

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


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


}




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

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

}
.pg_requirements .section.sec1{

}
.pg_requirements .section.sec2{

}
.pg_requirements .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_requirements .section.sec1,
  .pg_company .section.sec1{
    padding-top: 150px;
  }
  .pg_requirements .section.sec2{
    padding-top: 79px;
  }
  .pg_requirements .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

}
@media (min-width:1024px){
  .pg_requirements .section.sec1,
  .pg_company .section.sec1{
    padding-top: 223px;
  }

  .company_form_wrap .tt_box{
    margin-bottom: 57px;
  }

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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */
.gmap{
  margin-top: 30px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /* メイン部分 */
  .gmap{
    margin-top: 45px;
  }
  .access_map iframe{
    height: 380px;
  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .gmap{

  }
  .access_map iframe{

  }

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


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


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


}



/*******************************
*　採用
********************************/

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

}
.pg_recruit .section.sec1{

}
.pg_recruit .section.sec2{

}
.pg_recruit .section.sec3{

}
.pg_recruit .section.sec4{

}
.pg_recruit .section.sec5{

}
.pg_recruit .section.sec6{

}


@media (max-width:374px){

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

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

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

  }
  .pg_recruit .section.sec1{
    padding-bottom: 24px;
  }
  .pg_recruit .section.sec2{
    padding-top: 0;
  }
  .pg_recruit .section.sec3{
    padding-top: 190px;
    padding-bottom: 187px;
  }
  .pg_recruit .section.sec4{

  }
  .pg_recruit .section.sec5{

  }
  .pg_recruit .section.sec6{

  }

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


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

  }
  .pg_recruit .section.sec1{

  }
  .pg_about.pg_recruit .section.sec2{
    padding-top: 122px;
  }
  .pg_about.pg_recruit .section.sec3{
    padding-top: 181px;
    padding-bottom: 187px;
  }
  .pg_recruit .section.sec4{

  }
  .pg_recruit .section.sec5{

  }
  .pg_recruit .section.sec6{

  }

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


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


}

/* メイン部分 */
.about_head.recruit .about_head_img{
  -webkit-mask-image: url(https://marukane-ringyo.co.jp/system_panel/uploads/images/recruit_bg1.png);
}
.about_head.recruit .about_head_img:before{
  padding-top: 102.38%;
}
.about_belief.recruit .about_belief_img{
  -webkit-mask-image: url(https://marukane-ringyo.co.jp/system_panel/uploads/images/tama.png);
}
.about_belief.recruit .about_belief_img:before{
  padding-top: 57.82%;
}
.about_belief.recruit .about_points{
  order: 3;
}

.pg_recruit .section.sec3 .about_belief + .about_belief{
  margin-top: 50px;
}
.pg_recruit .section.sec3 .about_belief .about_points{
  order: 3;
}

.pg_recruit .section.sec4 .about_belief .about_points .about_points_item .about_points_item_img{
  border: 1px solid #c1d5e7;
}
@media (max-width:767px){
  .body_recruit .pg_header.long:before{
    width: 1420px;
  }
  .about_head.recruit .about_head_img{
    margin-left: -30px;
  }
  .about_belief.recruit .about_belief_img{
    margin-right: 25px;
  }
}
@media (min-width:768px){
  .pg_recruit .section.sec2 .read_more{
    margin-top: 88px;
  }

  .pg_recruit .section.sec3 .about_belief + .about_belief{
    margin-top: 165px;
  }
}
@media (min-width:1024px){
  .pg_recruit .section.sec2 .about_belief .about_points .about_points_item_head,
  .pg_recruit .section.sec3 .about_belief .about_points .about_points_item_head{
    font-size: 19px;
  }

  .about_belief.recruit .about_belief_img{
    margin-right: -120px;
  }

}
@media (min-width:1200px){
  .pg_about.pg_recruit .section.sec1{
    padding-top: 39px;
  }

  .pg_about.pg_recruit .section.sec2 .about_points_item_head{
    font-size: 22px;
  }
  .about_head.recruit .about_head_box1{
    width: 44.73%;
    padding-top: 0;
  }
  .about_head.recruit .about_head_img{
    margin-left: -65px;
  }
  .about_head.recruit .about_head_box2{
    width: 49.01%;
    padding-top: 76px;
  }
  .about_head.recruit .about_head_box2 .tt_box{
    margin-bottom: 47px;
  }
  .about_head.recruit .about_head_box2 .content_desc{
    margin-top: 25px;
  }

  .about_belief.recruit{

  }
  .about_belief.recruit .about_belief_box1{
    width: 42.76%;
  }
  .about_belief.recruit .about_belief_box2{

    width: 49.01%;
    padding-top: 51px;
  }
  .about_belief.recruit .home_sec1_box2_en{
    margin-right: -20px;
  }
  .about_belief.recruit .about_belief_img{
    margin-right: -150px;
  }
  .about_belief.recruit .about_belief_box2 .content_desc{
    margin-top: 20px;
  }

  .about_belief.recruit .about_belief_box4 .sub_tt{
    margin-right: -85px;
  }
  .about_belief.recruit .sub_tt{
    margin-top: 48px;
  }
  .about_belief.rvs .about_belief_box4.long{
    width: 49.01%;
  }
  .about_belief_box4.long .tt_box{
    margin-bottom: 50px;
  }

  .pg_about.pg_recruit .section.sec3 .read_more{
    margin-top: 88px;
  }
  .pg_recruit .section.sec2 .about_belief .about_points .about_points_item_head,
  .pg_recruit .section.sec3 .about_belief .about_points .about_points_item_head{
    font-size: 21px;
  }

  .pg_recruit .section.sec4 .about_belief .about_belief_box4{
    width: 47.2%;
  }
  .pg_recruit .section.sec4 .read_more{
    margin-top: 88px;
  }
}
@media (min-width:1470px){
  .about_belief.recruit .about_points{
    gap: 73px 65px;
    margin-top: 56px;
  }

  .pg_about.pg_recruit .section.sec2 .about_points_item_head{
    font-size: 24px;
  }

  .pg_recruit .section.sec3 .about_belief .about_points,
  .pg_recruit .section.sec4 .about_belief .about_points{
    gap: 44px 27px;
    margin-top: 89px;
  }
  .pg_recruit .section.sec3 .about_belief .about_points .about_points_item,
  .pg_recruit .section.sec4 .about_belief .about_points .about_points_item{
    width: calc((100% - 81px) / 4);
  }

}
@media (min-width:1720px){
  .pg_about.pg_recruit .section.sec2 .about_points_item_head{

  }
  .pg_recruit .section.sec2 .about_belief .about_points .about_points_item_head{
    font-size: 30px;
  }
  .pg_recruit .section.sec3 .about_belief .about_points .about_points_item_head{
    font-size: 28px;
  }

}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


/*******************************
*　会社概要
********************************/

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #beb7ac;
  padding: 10px 10px;
}
.company_tbl .table_rows_th p,
.company_tbl .table_rows_td p{
  letter-spacing: 0.075em;
}
.company_tbl .table_rows_th{
  background: #f3f6f9;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  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: 74.28%;
}

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #beb7ac;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #beb7ac;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


  /* ギャラリー */
  .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;
  }


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


}
@media (min-width:1200px){
  .company_tbl_wrap .tt_box{
    margin-bottom: 59px;
  }

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 255px;
  }
  .company_tbl .table_rows_td{
    padding-left: 34px;
  }

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

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


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


}



/* カテゴリNav */
.cmn_cat_nav{

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item 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 .webgene-item 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 .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav .webgene-item a:hover:after{
  margin-right: -2px;
}

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

@media (max-width:767px){

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

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

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

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

  }

  .cmn_cat_nav .webgene-item a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav .webgene-item 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 .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

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

}


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

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

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

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #2850a1;
  color: #FFF;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

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


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

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

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

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

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

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

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
  }



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #007394;
  color: #FFF;
  padding: 13px 10px;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 4px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 31px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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

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


/* 動画 */
.post_video{

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


/*詳細*/
.news_detail{
  border-bottom: 1px solid #181818;
  padding-bottom: 30px;
}
.news_detail .meta{
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.news_detail .date{
  font-size: 16px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 23px;
}
.news_detail .category{
  margin-right: 25px;
}
.news_detail .category span{
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  width: 100%;
  border: 1px solid #b89366;
  border-radius: 5px;
  padding: 7px 20px;

}
.news_detail .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #181818;
  padding-bottom: 10px;
}
.news_detail .post_content{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25em;
  letter-spacing: 0;
  padding-top: 30px;

}
.news_detail .post_content img{
  margin-bottom: 37px;
}

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

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

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

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

  .pg_news .tt_box{
    margin-bottom: 42px;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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

  /*詳細*/
  .news_detail{
    padding-bottom: 88px;
  }
  .news_detail .meta{

  }
  .news_detail .date{

  }
  .news_detail .category{

  }
  .news_detail .category span{
    padding: 7px 46px;

  }
  .news_detail .title{
    font-size: 20px;
  }
  .news_detail .post_content{
    padding-top: 40px;

  }

  .pg_news .read_more{
    margin-top: 76px;
  }
}
@media (min-width:1024px){
  .pg_news .tt_box{
    margin-bottom: 42px;
  }


  /* リスト */
  .posts_list{

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

  }

  /*詳細*/
  .news_detail{

  }
  .news_detail .meta{

  }
  .news_detail .date{

  }
  .news_detail .category{

  }
  .news_detail .category span{

  }
  .news_detail .title{

  }
  .news_detail .post_content{

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

  .pg_news{
    padding-top: 227px;
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


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

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

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

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

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

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

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

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

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

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

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


}





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

.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 #b2b2b2;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.formTh {
  padding: 16px 15px 16px 20px;
  background: #f3f6f9;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.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 input[name="age"],
.formTd input[name="calear"]{
  max-width: 44px;
  margin-right: 8px;
}

.checkArea .d-inline-block{
  margin-left: 29px;
}
.checkArea .d-inline-block input[type=checkbox]{
  margin-right: 5px;
}
.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: 40px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  display: inline;
  font-weight: 600;
}
.formWrap .privacyLabel a{
  color: #007394;
}
.formBtn.formSend {
  display: block;
  min-width: 250px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #b89366;
  background: #fff;
  /* border-radius: 27px; */
  color: #000;
  padding: 20px 12px;
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.formBtn.formSend:after{
  content: "";
  position: absolute;
  z-index: 1;
  width: 12.28%;
  border-bottom: 1px solid #b89366;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.formBtn.formSend:hover{
  color: #FFF;
  background: #b89366;
}
.formBtn.formSend:hover:after{
  margin-right: 0;
  border-bottom: 1px solid #fff;
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline{
  margin-right: 25px;
}
.radioArea input[type=radio] {
  margin-right: 10px;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.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;
}

@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%;
  }

  .formBtn.formSend{
    min-width: 283px;
    margin-top: 60px;
  }

  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c1d5e7;
  letter-spacing: 0.04em;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
  font-weight: 500;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

.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: 500;
  letter-spacing: 0.2em;
  margin-bottom: 47px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

.privacy_item_box {
  padding: 30px 43px 30px 24px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #808080;
  margin-top: 0;
  color: #000000;
  margin-top: 56px;
  margin-bottom: 0;
}
@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: 155px;
  }
  .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 {
    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;
  }
  .contact_tt {
    margin-bottom: 20px;
  }



  .contact_info_bg {
    padding: 18px 10px;
  }

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }

  .privacy_item_box{
    padding: 30px 10px; 
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

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


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

}
.pg_contact .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_contact .section.sec1{
    padding-top: 150px;
  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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

  }
  .pg_contact .section.sec1{
    padding-top: 227px;
  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

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


}
