@charset "UTF-8";

:root {
  --main-color: #57b38a;
  --sub-color: #fd654e;
}
#root{

}
/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #3b3b3b;
  margin-top: 0 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#gt-nvframe {
  display: none !important;
  height: 0 !important;
}

/* ローディング用 */
.pg_loading{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10000000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,1);
}
.pg_loading.on{
  animation: pageFadeIn 1s; /*keyframesで命名したものを使う。2秒間で消える*/
  animation-fill-mode: both; /*0%の時と100%の時の状態を保つ*/
  pointer-events: none;
}
.pg_loading.off{
  animation: pageFadeOut 2s; /*keyframesで命名したものを使う。2秒間で消える*/
  animation-fill-mode: both; /*0%の時と100%の時の状態を保つ*/
  pointer-events: none;
}


@keyframes pageFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pageFadeOut {
  0% {
    opacity: 1; /*初めに存在する*/
  }
  100% {
    opacity: 0; /*最後に消える*/
  }
}

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

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

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

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

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

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

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

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

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

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

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


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

/* 指定デバイスで改行を消す */
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}

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

/*******************************
*　ヘッダー
********************************/
.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 0 10px;
  ;
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 55px;
}

/* メニュー全般 */
.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{
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{

}
.hdr_sns a + a{
  margin-left: 10px;
}
.sns_items{
  display: none;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  /* SNSボタン */

  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 100px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 11px 15px;
    transition: all .2s;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 13px;
  }
  .sns_items{
    display: block;
  }
  .sns_item img{
    position: relative;
    transition: all .2s;
  }
  .sns_item + .sns_item{
    margin-left: 26px;
  }
  .sns_item:hover img{
    transform: scale(1.05);
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    width: 70px;
    transition: all .2s;
  }
  .header.slim .hdr_logo img{
    width: 60px;
  }

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
  }

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    padding: 11px 97px 11px 15px;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
  }

  /* TELボタン */
  .hdr_tel{

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

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 82px;
  }

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

  }

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  width: 99%;
  position: relative;
  z-index: 1;
  margin-inline:auto;
  padding:10px;
}
.mv:before{
  content: "";
  display: block;
  width: 20.23%;
  height: 52.94%;
  ;
  border: 3px solid #b5d9c2;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.mv:after{
  content: "";
  display: block;
  width: 20.23%;
  height: 52.94%;
  ;
  border: 3px solid #b5d9c2;
  border-top: 0;
  border-right: 0;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 65vh;
}
.mv_inner{
  position: relative;
}

/* MVテキスト */
.mv_txt{
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  left:auto;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: italic;
  text-shadow: 2px 3.464px 4.8px rgba(24, 24, 24, 0.1);
}
.mv_txt1{
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.mv_txt2{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.mv_txt2:before{
  content: "";
  width: 16px;
  height: 1px;
  background: #fff;
}
.mv_txt2:after{
  content: "";
  width: 16px;
  height: 1px;
  background: #fff;
}


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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

/* ==========================
  Swiperのスタイルを調整
========================== */
.wrapper {
  position: relative;
}

.swiper-slide {
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================
  ページネーションの間隔を調整
========================== */
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.mv .swiper-pagination{
  display: flex;
  justify-content: flex-end;
  padding: 5px;
}
.mv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0 7px;
}

/* ==========================
  円形のページネーションを作成
========================== */
.circle-pagination {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 1;
  background-color: #222;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  margin: auto;
  cursor: pointer;
  font-size: 14px;
  opacity: 1;
}

.circle-pagination .circle-pagination_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  color: #BFBFBF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active .circle-pagination_inner {
  color: #222;
}

/* ==========================
  擬似要素でプログレスバーを作成
========================== */
.circle-pagination::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  transform-origin: right 20px;
  position: absolute;
  top: 0;
  left: -20px;
  z-index: 2;
}

.circle-pagination::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  transform-origin: left 20px;
  position: absolute;
  top: 0px;
  left: 20px;
  z-index: 3;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.circle-pagination::before {
  animation: circleRight 5s linear forwards;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.circle-pagination::after {
  animation: circleLeft 5s linear forwards;
}

/* ==========================
  アニメーションを定義
========================== */
@keyframes circleLeft {
  0% {
    transform: rotate(0deg);
    background-color: #fff;
  }

  50% {
    transform: rotate(180deg);
    background-color: #fff;
  }

  50.01% {
    transform: rotate(360deg);
    background-color: #222;
  }

  100% {
    transform: rotate(360deg);
    background-color: #222;
  }
}

@keyframes circleRight {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

@media (min-width:768px){

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

  /* MVテキスト */
  .mv_txt{

  }
  .mv_txt1{
    font-size: 55px;
  }
  .mv_txt2{
    font-size: 20px;
  }
  .mv_txt2:before,
  .mv_txt2:after{
    width: 30px;
    height: 3px;
    margin: 0 2px;
  }

  /* ==========================
    ページネーションの間隔を調整
  ========================== */
  .mv .swiper-pagination{
    display: flex;
    justify-content: flex-end;
    padding: 16px 26px;
  }
}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 122px - 50px);
  }

  /* MVテキスト */
  .mv_txt{

  }
  .mv_txt1{
    font-size: 70px;
  }
  .mv_txt2{
    font-size: 28px;
  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 122px - 50px);
  }

  /* MVテキスト */
  .mv_txt{

  }
  .mv_txt1{
    font-size: 85px;
  }
  .mv_txt2{
    font-size: 28px;
  }

}


/*******************************
*　サイドバー
********************************/
.sidebar{
  display: none;
}



@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    display: block;
    position: fixed;
    z-index: 2;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .sidebar_bn{
    display: block;
    transition: all .2s;
  }
  .sidebar_bn{
    height: 190px;
    border-radius: 5px 0 0 5px;
    padding: 5px 0 5px 5px;
  }
  .sidebar_bn + .sidebar_bn{
    margin-top: 28px;
  }
  .sidebar_bn.or{
    background: linear-gradient(90deg, rgba(242,140,41,1) 0%, rgba(253,102,78,1) 100%);
  }
  .sidebar_bn.gr{
    background: #1ba96e;
  }
  .sidebar_bn:hover{
    transform: scale(1.05);
  }
  .sidebar_bn_inner{
    display: flex;
    height: 100%;
    border-radius: 5px 0 0 5px;
    border:1px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 13px 5px 10px 5px;
  }
  .sidebar_bn_inner p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .sidebar_bn_inner p:after{
    content: "";
    display: block;
    width: 25px;
    aspect-ratio:1 / 1;
    background-image: url(/system_panel/uploads/images/circle.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 6px;
  }

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


}
@media (min-width:1024px){
  .sidebar_bn_inner{
    padding: 13px 19px 10px 11px;
  }
}
@media (min-width:1200px){

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

}



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

.footer{
  margin-top: 0;
  padding-top: 60px;
}

.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;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 7px;
  margin-top: 30px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid var(--main-color);
}
.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: 38%;
  border-right: 1px solid var(--main-color);
}
.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: #90bda9;
}
.pagetop a i{
  font-size: 40px;
}

.ftr_contact_wrap{
  position: relative;
  margin-top:80px;
}
.ftr_contact_wrap_img{

}
.ftr_contact_wrap_img .img_fit:before{
  padding-top: 650px;
}
.ftr_contact_box{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.ftr_contact_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_item{
  width: 100%;
}
.ftr_contact_item + .ftr_contact_item{
  margin-top: 30px;
}
.ftr_contact_item_outer{
  display: block;
  background:rgba(255,255,255,0.7);
  padding: 5px;
  transition: all .2s;
}
.ftr_contact_item_outer:hover .ftr_contact_item_inner{
  color: #fff;
}
.ftr_contact_item_outer:hover .ftr_contact_item_inner:before{
  background: var(--main-color);
  color: #fff;
}
.ftr_contact_item_inner{
  border: 1px solid #57b38a;
  position:relative;
  padding: 36px 16px;
  transition: all .2s;
}
.ftr_contact_item_inner:before{
  content: "";
  display: block;
  width: 98.11%;
  height: 96.666%;
  background:rgba(255,255,255,0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
  transition: all .2s;
}
.ftr_contact_item_inner .sec_title{
  text-align: center;
  position: relative;
  z-index: 2;
}
.ftr_contact_item_inner .sec_title_en{
  font-size:64px;
  letter-spacing: 0.02em;
}
.ftr_contact_item_inner .sec_title_ja.tate{
  font-size: 16px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  align-items: center;
  margin-top: 10px;
}
.ftr_contact_item_outer:hover .sec_title_ja.tate:before{
  background: #fff;
}
.ftr_contact_item_content{
  position: relative;
  z-index: 2;
}
.ftr_contact_item_content .content_desc{

}
.ftr_contact_num{
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.ftr_contact_num1{
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}
.ftr_contact_num2{
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
}

.ftr_1{
  text-align: center;
}
.ftr_logo{

}
.ftr_add{
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1333em;
  margin-top: 20px;
}
.ftr_1 .sns_items{
  margin-top: 30px;
}
.ftr_1 .sns_item{

}

.ftr_2{

}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }
  .ftr_2{
    display: none;
  }

}
@media (min-width:768px){
  .footer{
    margin-top: 0;
    padding-top: 60px;
  }
  .ftr_copy{
    margin-top: 50px;
  }

  .ftr_contact_wrap{
    margin-top: 100px;
  }
  .ftr_contact_wrap_img{

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

  }
  .ftr_contact_items{

  }
  .ftr_contact_item{
    width: 48.64%;
  }
  .ftr_contact_item + .ftr_contact_item{
    margin-top: 0;
  }
  .ftr_contact_item_outer{
    height: 100%;
  }
  .ftr_contact_item_inner{
    height: 100%;
    padding: 36px 16px;
  }
  .ftr_contact_item_inner .sec_title{

  }
  .ftr_contact_item_inner .sec_title_en{
    font-size: 70px;
  }
  .ftr_contact_item_inner .sec_title_ja.tate{
    font-size: 18px;
  }
  .ftr_contact_item_content{

  }
  .ftr_contact_item_content .content_desc{

  }

  .ftr_contact_num{
    margin-top: 24px;
  }
  .ftr_contact_num1{
    font-size: 24px;
  }
  .ftr_contact_num2{

  }

  .ftr_add{
    margin-top: 24px;
  }
  .ftr_1 .sns_items{
    margin-top: 40px;
  }

  .ftr_2{
    margin-top: 50px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .ftr_links:hover .ftr_link{
    opacity: 0.5
  }
  .ftr_link{
    text-align: center;
    width: 25%;
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding: 0;
    border-right: 1px solid;
  }
  .ftr_link:last-child{
    border-right: 0;
  }
  .ftr_link:nth-child(4){
    border-right: 0;
  }
  .ftr_link:nth-child(n+5){
    margin-top: 16px;
  }
  .ftr_links .ftr_link:hover{
    opacity: 1;
    color: var(--main-color);
  }
  .ftr_link p{
    letter-spacing: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top:0;
    padding-top: 80px;
  }

  .ftr_contact_wrap{
    margin-top: 200px;
  }
  .ftr_contact_wrap_img{

  }
  .ftr_contact_wrap_img .img_fit:before{
    padding-top: 508px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_items{

  }
  .ftr_contact_item{

  }
  .ftr_contact_item_outer{

  }
  .ftr_contact_item_inner{

  }
  .ftr_contact_item_inner .sec_title{

  }
  .ftr_contact_item_inner .sec_title_en{
    font-size: 110px;
  }
  .ftr_contact_item_inner .sec_title_ja{

  }
  .ftr_contact_item_content{

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

  }
  .ftr_contact_num1{
    font-size: 32px;
  }
  .ftr_contact_num2{

  }

  .ftr_2{
    margin-top: 80px;
  }
  .ftr_links{

  }
  .ftr_link{
    font-size: 14px;
    width: auto;
    text-align: left;
    padding: 0 10px;
  }
  .ftr_link p{
    letter-spacing: 0.06em;
  }
  .ftr_link:nth-child(n+5){
    margin-top: 0;
  }
  .ftr_link:nth-child(4){
    border-right: 1px solid;
  }
}
@media (min-width:1200px){
  .ftr_link{
    padding: 0 22px;
  }
}


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


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

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

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


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

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

/*タイトル*/
.sec_title{
  margin-bottom: 30px;
}
.sec_title_en{

  font-weight: 400;
  font-style: italic;
  font-family: "Bebas Neue", sans-serif;


}
.sec_title_en.s{
  font-size:50px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.sec_title_en{
  font-size:60px;
  line-height: 0.85em;
  ;
  letter-spacing: 0;
}

.sec_title_ja{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 17px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.075em;
}
.sec_title_ja:before{
  width: 50px;
  content: "";
  display: block;
  height: 2px;
  background: var(--main-color);
  margin-right: 16px;
}
.sec_title_ja.tate{
  align-items: flex-start;
  flex-direction: column;
}
.sec_title_ja.tate:before{
  content: "";
  display: block;
  height: 2px;
  background: var(--main-color);
  transition: all .2s;
}
.sec_title_ja.tate:before{
  width: 65px;
}
.sec_title_ja.tate:before{
  margin-bottom: 16px;
}


/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a,
.read_more .a{
  max-width: 250px;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  text-align: center;
  border: none;
  background: var(--main-color);
  border-radius: 22.5px;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a:before,
.read_more .a:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #93c889;
  border-radius: 22.5px;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 0;
  transition: all .2s;
}
.read_more a:after,
.read_more .a:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  border-radius: 22.5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all .2s;
}
.read_more.s a{
  max-width:190px;
}
.read_more a p,
.read_more .a p{
  /*letter-spacing: 0;*/
  position: relative;
  z-index: 2;
}
.read_more a p:after,
.read_more .a p:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -5px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover:after,
.read_more .a:hover:after{
  color: #FFF;
  background: #93c889;
}
.read_more a:hover:before,
.read_more .a:hover:before{
  background: var(--main-color);
}
.original_list .read_more .a:hover:before{
  background: #93c889;
}
.original_list .read_more .a:hover:after {
  background: var(--main-color);
}
.original_list .webgene-item a:hover .read_more .a:before{
  background: var(--main-color);
}
.original_list .webgene-item a:hover .read_more .a:after{
  background: #93c889;
}

/* 見出し */
.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;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

/*サブタイトル*/
.sec_sub_title{
  font-size: 20px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

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

}


/*共通左右*/
.contents_layout_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents_layout_box1{
  width: 100%;
}
.contents_layout_box2{
  width: 100%;
}
.contents_layout_box2_img:before{
  padding-top: 128.08%;
}

.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2em;
  text-align: justify;
  margin-top: 20px;
}

@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{
    width: 285px;
    font-size: 16px;
    padding: 11px 20px;
    margin: 5px 5px;
  }
  .read_more a:after,
  .read_more .a:after{
    content: "";
    top: 0;
    left:0;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /*タイトル*/
  .sec_title{
    margin-bottom: 0;
  }
  .sec_title_en.s{
    font-size: 90px;
  }
  .sec_title_en{
    font-size:84px;
  }
  .sec_title_en:after{

  }
  .sec_title_ja{
    font-size: 18px;
  }
  .sec_title_ja:before{
    width: 50px;
    margin-right:32px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }

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

  /*サブタイトル*/
  .sec_sub_title{
    font-size: 24px;
  }

  /*共通左右*/
  .contents_layout_box{

  }
  .contents_layout_box1{
    width:51.35%;
  }
  .contents_layout_box2{
    width:40.09%;
  }

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

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

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

  /*タイトル*/
  .sec_title{

  }
  .sec_title_en.s{
    font-size: 110px;
  }
  .sec_title_en{
    font-size:130px;
  }
  .sec_title_en:after{

  }
  .sec_title_ja{

  }
  .sec_title_ja:before{
    width: 125px;
  }

  /*サブタイトル*/
  .sec_sub_title{
    font-size: 32px;
  }

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


}



/*******************************
*　HOME
********************************/
.pg_home{
  overflow: hidden;
}
.pg_home .section.sec1{
  padding-top: 0;
  padding-bottom: 50px;
  margin-top:50px;
}
.pg_home .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #f5f4ef;
}
.pg_home .section.sec3{
  padding:50px 0;
}
.pg_home .section.sec4{
  border-top: 1px solid #e5e5e5;
  padding:50px 0;
}
.pg_home .section.sec5{
  padding-top: 50px;
  padding-bottom: 60px;
}
.pg_home .section.sec6{
  position: relative;
  padding: 0;
}


/*お知らせ*/
.home_news_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_news_box1{
  width: 100%;
}
.home_news_box .read_more{
  width: 100%;
}
.home_news_box2{
  width: 100%;
  margin-top: 20px;
  ;
}
.home_news_box2 .webgene-blog{

}
.home_news_box2 .webgene-item {

}
.home_news_box2 .webgene-item a{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #d2d2d2;
  padding: 16px 0;
  position: relative;
}
.home_news_box2 .webgene-item a:hover{
  color: var(--main-color);
}
.home_news_box2 .webgene-item a:after{
  content: "";
  display: block;
  width:40px;
  aspect-ratio:1 / 1;
  background-image: url(/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right:0;
  ;
  transform: translateY(-50%);
}
.body_news .home_news_box2 .webgene-item a:after{
  display: none;
}
.home_news_box2 .webgene-item:last-child a{
  border-bottom: 1px solid #d2d2d2;
}
.home_news_box2 .webgene-item .date{
  font-size: 15px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #777777;
}
.home_news_box2 .webgene-item .category{
  width: 95px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-align: center;
  background: #fff3b9;
  padding: 2px 0;
  margin-left: 16px;
}
.home_news_box2 .webgene-item .title{
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-top: 16px;
}

/*共通左右*/
.home_about_wrap .contents_layout_box1{

}
.home_about_wrap .contents_layout_box2{
  position: relative;
  z-index: 0;
  margin-top: 40px;
}

/*スライド*/
.home_slide_wrap{
  margin-top: 36px;
}
.home_slide_wrap .webgene-blog {
  display: flex;
  margin: 0;
}
.home_slide_wrap .webgene-item{
  width: 275px;
}
.home_slide_wrap .webgene-item .inner{
  position: relative;
}
.home_slide_wrap .webgene-item .inner:hover{
  color: var(--main-color);
}
.home_slide_wrap .webgene-item .category{
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background:rgba(245,245,245,0.8);
  position: absolute;
  top: 10px;
  left: 10px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  z-index: 2;
  padding: 10px 5px;
}
.home_slide_wrap .webgene-item .img_fit{
  overflow: hidden;
  background-image: url(/system_panel/uploads/images/noimage.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home_slide_wrap .webgene-item .img_fit:before{
  padding-top: 79.41%;
}
.home_slide_wrap .webgene-item .box1{
  padding: 5px;
  border: 1px solid #d2d2d2;
}
.home_slide_wrap .webgene-item .read_more .a{
  padding: 11px 20px;
}
.home_slide_wrap .webgene-item .title{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2;
  margin-top: 11px;
}
.home_slide_wrap .item-prev,
.home_slide_wrap .item-next{
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 105px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 3;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all .2s;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.home_slide_wrap .item-prev{
  left: calc(50% - 160px);
  background-image: url(/system_panel/uploads/images/left.png);
}
.home_slide_wrap .item-next{
  right: calc(50% - 160px);
  background-image: url(/system_panel/uploads/images/right_t.png);
}
.home_slide_box{
  position: relative;
  z-index: 1;
}

/*イメージ*/
.home_image_box{
  position: relative;
}
.home_image_box:before{
  content: "";
  display: block;
  width: 22.52%;
  height: 33.333%;
  border: 3px solid #b5d9c2;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: -5px;
  right: -5px;
  ;
}
.home_image_box:after{
  content: "";
  display: block;
  width: 22.52%;
  height: 33.333%;
  border: 3px solid #b5d9c2;
  border-top: 0;
  border-right: 0;
  position: absolute;
  bottom: -5px;
  left: -5px;
}
.home_image:before{
  padding-top: 300px;
}

/*パートナー*/
.home_partner_wrap{
  position: relative;
  padding: 50px 0;
}
.home_partner_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f9f9f9;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: absolute;
  top: 0;
  z-index: -1;
}
.home_partner_wrap .contents_layout_box1{

}
.home_partner_wrap .contents_layout_box2{
  margin-top: 50px;
  ;
}
.home_partner_wrap .home_partner_img_top{

}
.home_partner_wrap .home_partner_img_top:before{
  padding-top: 67.36%;
}
.home_partner_wrap .home_partner_img_bottom{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 5px;
}
.home_partner_wrap .home_partner_img_bottom_img{
  width: 49.74%;
}
.home_partner_wrap .home_partner_img_bottom_img:before{
  padding-top: 106.38%;
}
/* コピー用 */
@media (max-width:374px){

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

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

  .home_news_box2 .webgene-item a{
    padding-right: 40px;
  }
  
}
@media (min-width:768px){

  .pg_home .section.sec1{
    padding-top: 0;
    padding-bottom:70px;
    margin-top: 90px;
  }
  .pg_home .section.sec2{
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec3{
    padding: 100px 0;
  }
  .pg_home .section.sec4{
    padding:90px 0;
  }
  .pg_home .section.sec5{
    padding-top: 10px;
    padding-bottom:60px;
  }
  .pg_home .section.sec6{
    /*   padding: 80px 0; */
  }
  .pg_home .section.sec6:before{

  }

  /*お知らせ*/
  .home_news_box{

  }
  .home_news_box1{

  }
  .home_news_box1 .read_more{

    justify-content: flex-start;
    margin-top: 56px;
  }
  .home_news_box .read_more{
    width: 100%;
  }
  .home_news_box2{

    padding-top: 10px;
    margin-top: 30px;
    ;
  }
  .home_news_box2 .webgene-blog{

  }
  .home_news_box2 .webgene-item {

  }
  .home_news_box2 .webgene-item a{
    padding: 29px 0;
  }
  .home_news_box2 .webgene-item .date{
    width: 95px;
    font-size: 16px;
  }
  .home_news_box2 .webgene-item .category{
    margin-left: 0;
  }
  .home_news_box2 .webgene-item .title{
    width: calc(100% - 95px - 95px - 45px);
    padding-left: 20px;
    margin-top: 0;
  }
  .body_news .home_news_box2 .webgene-item .title{
    width: calc(100% - 95px - 95px);
  }

  /*共通左右*/
  .home_about_wrap .contents_layout_box{
    position: relative;
  }
  .home_about_wrap .contents_layout_box1{
    padding-top: 11%;
  }
  .home_about_wrap .contents_layout_box1 .sec_title{
    position: absolute;
    top: -52px;
    left: 0;
    z-index: 1;
  }
  .home_about_wrap .contents_layout_box2{
    margin-top: 0;
    padding-top: 20px;
  }
  .contents_layout_box1 .read_more{
    justify-content: flex-start;
    margin-top: 45px;
  }

  /*スライド*/
  .home_slide_wrap{
    margin-top: 55px;
  }
  .home_slide_wrap .webgene-item{
    width: 490px;
  }
  .home_slide_wrap .webgene-item .read_more{
    margin-top: 53px;
  }
  .home_slide_wrap .item-prev,
  .home_slide_wrap .item-next{
    top: 198px;
  }
  .home_slide_wrap .item-prev{
    left: calc(50% - 265px);
  }
  .home_slide_wrap .item-next{
    right: calc(50% - 265px);
  }
  .home_slide_wrap .read_more{
    margin-top: 55px;
  }

  /*イメージ*/
  .home_image:before{
    padding-top: 400px;
  }
  .home_image_box:before{
    top: -10px;
    right: -10px;
    ;
  }
  .home_image_box:after{
    bottom: -10px;
    left: -10px;
  }

  /*パートナー*/
  .home_partner_wrap{
    padding: 100px 0;
  }
  .home_partner_wrap:before{
    right: 8.5%;
    margin-right: 0;
  }
  .home_partner_wrap .contents_layout_box1{
    width: 57.20%;
  }
  .home_partner_wrap .contents_layout_box1 .sec_sub_title{
    margin-top: 33px;
  }
  .home_partner_wrap .contents_layout_box1 .content_desc{
    padding-right: 16px;
    margin-top: 30px;
  }
  .home_partner_wrap .contents_layout_box2{
    width: 40.09%;
    margin-top: 0;
  }
  .home_partner_wrap .home_partner_img_top{

  }
  .home_partner_wrap .home_partner_img_top:before{

  }
  .home_partner_wrap .home_partner_img_bottom{

  }
  .home_partner_wrap .home_partner_img_bottom_img{

  }
  .home_partner_wrap .home_partner_img_bottom_img:before{

  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 0;
    padding-bottom: 140px;
    margin-top: 110px;
  }
  .pg_home .section.sec2{
    padding-top: 187px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec3{
    padding: 150px 0;
  }
  .pg_home .section.sec4{
    padding:90px 0;
  }
  .pg_home .section.sec5{
    padding-top: 70px;
    padding-bottom: 110px;
  }
  .pg_home .section.sec6{
    /*   padding: 100px 0; */
  }

  /*お知らせ*/
  .home_news_box{

  }
  .home_news_box1{
    width: 22.97%;
  }
  .home_news_box .read_more{
    width: auto;
  }
  .home_news_box2{
    width: 74.32%;
    margin-top: 0;
  }
  .home_news_box2 .webgene-blog{

  }
  .home_news_box2 .webgene-item {

  }
  .home_news_box2 .webgene-item .date{

  }
  .home_news_box2 .webgene-item .category{

  }
  .home_news_box2 .webgene-item .title{

  }

  /*共通左右*/
  .contents_layout_box1 .read_more{
    justify-content: flex-start;
    margin-top: 45px;
  }

  /*スライド*/
  .home_slide_wrap .webgene-item{
    width: 260px;
  }
  .home_slide_wrap .item-prev,
  .home_slide_wrap .item-next{
    top: 102px;
  }
  .home_slide_wrap .item-prev{
    left: calc(50% - 436px);
  }
  .home_slide_wrap .item-next{
    right: calc(50% - 436px);
  }

  /*イメージ*/
  .home_image:before{
    padding-top: 450px;
  }

  /*パートナー*/
  .home_partner_wrap{
    padding: 150px 0;
  }
  .home_partner_wrap .contents_layout_box1{

  }
  .home_partner_wrap .contents_layout_box1 .content_desc{
    padding-right: 20px;
  }
  .home_partner_wrap .contents_layout_box2{
    padding-top: 0;
  }
  .home_partner_wrap .home_partner_img_top{

  }
  .home_partner_wrap .home_partner_img_top:before{

  }
  .home_partner_wrap .home_partner_img_bottom{

  }
  .home_partner_wrap .home_partner_img_bottom_img{

  }
  .home_partner_wrap .home_partner_img_bottom_img:before{

  }
}
@media (min-width:1200px){
  /*スライド*/
  .home_slide_wrap .item-prev,
  .home_slide_wrap .item-next{
    top: 170px;
  }
  .home_slide_wrap .webgene-item{
    width: 368px;
  }
  .home_slide_wrap .item-prev{
    left: calc(50% - 598px);
  }
  .home_slide_wrap .item-next{
    right: calc(50% - 598px);
  }

  /*パートナー*/
  .home_partner_wrap .contents_layout_box1 .content_desc{
    padding-right: 67px;
  }
  .home_partner_wrap .contents_layout_box1{
    width: 57.20%;
  }
  .home_partner_wrap .contents_layout_box2{
    width: 42.79%;
  }

}
@media (min-width:1300px){
  /*スライド*/
  .home_slide_wrap .webgene-item{
    width: 405px;
  }
  .home_slide_wrap .item-prev,
  .home_slide_wrap .item-next{
    top: 170px;
  }
  .home_slide_wrap .item-prev{
    left: calc(50% - 650px);
  }
  .home_slide_wrap .item-next{
    right: calc(50% - 650px);
  }
}
@media (min-width:1400px){
  /*スライド*/

  .home_slide_wrap .webgene-item{
    width: 405px;
  }

}
@media (min-width:1500px){
  /*スライド*/
  .home_slide_wrap .webgene-item{
    width: 350px;
  }
  .home_slide_wrap .item-prev,
  .home_slide_wrap .item-next{
    top: 140px;
  }
  .home_slide_wrap .item-prev{
    left: calc(50% - 574px);
  }
  .home_slide_wrap .item-next{
    right: calc(50% - 574px);
  }

}

/*******************************
*　about
********************************/
.pg_about{

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

/*見出し*/
.content_hdr_box{

}
.content_hdr_tt{
  text-align: center;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}
.content_hdr_box .content_desc{

}
.content_hdr_items{
  display: flex;
  flex-wrap: wrap;
  margin: 50px -5px 0;
  position: relative;
}
.content_hdr_items:before{
  content: "";
  display: block;
  width: 22.52%;
  height: 66.07%;
  border: 4px solid #b5d9c2;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: -4px;
  right:1px;
}
.content_hdr_items:after{
  content: "";
  display: block;
  width: 22.52%;
  height: 66.07%;
  border: 4px solid #b5d9c2;
  border-right: 0;
  border-top: 0;
  position: absolute;
  bottom: -4px;
  left: 1px;
}
.content_hdr_item{
  width: 50%;
  padding: 0 5px
}
.content_hdr_item:first-child{
  padding-top: 20px;
}
.content_hdr_item_img:before{
  padding-top: 72.72%;
}

/*繰り返し*/
.about_reason_items{
  margin-top: 36px;
}
.about_reason_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.about_reason_item:nth-child(even){
  padding: 40px 0;
}
.about_reason_item:nth-child(even):before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f5f4ef;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.about_reason_item:nth-child(n+2){
  margin-top: 40px;
}
.about_reason_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.sec_sub_title_outer{

}
.about_reason_box1 .sec_sub_title{

}
.about_reason_box1 .content_desc{

}
.about_reason_box2{
  width: 100%;
  order: 1;
}
.about_reason_box2_img:before{
  padding-top: 128.08%;
}
.about_reason_box2_img:after{
  content: "";
  display: block;
  width: 33.03%;
  height: 43.85%;
  border: 4px solid #b5d9c2;
  border-top: 0;
  position: absolute;
  bottom: -4px;
}
.about_reason_item:nth-child(odd) .about_reason_box2_img:after{
  border-left: 0;
  right: -4px;
}
.about_reason_item:nth-child(even) .about_reason_box2_img:after{
  border-right: 0;
  left: -4px;
}
/* コピー用 */
@media (max-width:374px){

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

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

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

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

  /*見出し*/
  .content_hdr_box{

  }
  .content_hdr_tt{
    font-size: 1.5rem;
  }
  .content_hdr_box .content_desc{
    margin-top: 30px;
  }
  .content_hdr_items{
    margin-top:60px;
  }
  .content_hdr_item{

  }
  .content_hdr_item:first-child{
    padding-top: 60px;
  }
  .content_hdr_item_img:before{

  }

  /*繰り返し*/
  .about_reason_items{
    margin-top: 50px;
  }
  .about_reason_item{

  }
  .about_reason_item:nth-child(even){
    padding-top: 25px;
    padding-bottom: 10px;
  }
  .about_reason_item:nth-child(even):before{
    height: 350px;
  }
  .about_reason_item:nth-child(n+2){
    margin-top: 60px;
  }
  .about_reason_item:nth-child(odd) .about_reason_box1{
    order: 1;
  }
  .about_reason_item:nth-child(odd) .about_reason_box2{
    order: 2;
  }
  .about_reason_item:nth-child(even) .about_reason_box1{
    order: 2;
  }
  .about_reason_item:nth-child(even) .about_reason_box2{
    order: 1;
  }
  .about_reason_box1{
    width: 51.35%;
    margin-top: 0;
  }
  .sec_sub_title_outer{

  }
  .about_reason_box1 .sec_sub_title{

  }
  .about_reason_box1 .content_desc{

  }
  .about_reason_box2{
    width: 40.09%;
  }
  .about_reason_box2_img:before{

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

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

  /*見出し*/
  .content_hdr_box{

  }
  .content_hdr_tt{
    font-size: 2rem;
  }
  .content_hdr_box .content_desc{
    text-align: center;
  }
  .content_hdr_items{
    margin-top: 77px;
  }
  .content_hdr_item{

  }
  .content_hdr_item_img:before{

  }

  /*繰り返し*/
  .about_reason_items{
    margin-top: 65px;
  }
  .about_reason_item{

  }
  .about_reason_item:nth-child(even){
    padding-top: 60px;
    padding-bottom:0;
  }
  .about_reason_item:nth-child(even):before{
    height: 530px;
  }
  .about_reason_item:nth-child(n+2){
    margin-top: 110px;
  }
  .about_reason_box1{

  }
  .sec_sub_title_outer{

  }
  .about_reason_box1 .sec_sub_title{
    margin-right: -16px;
  }
  .about_reason_box1 .content_desc{
    margin-top: 30px;
  }
  .about_reason_box2{
    padding-top: 13px;
  }
  .about_reason_box2_img:before{

  }
}
@media (min-width:1200px){
  /*繰り返し*/
  .about_reason_item:nth-child(even){
    padding-top: 90px;
  }
  .about_reason_item:nth-child(even):before{
    height: 570px;
  }

}

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

}
.pg_company .section.sec1{
}
.pg_company .section.sec2{
  padding-top: 30px;
}
.pg_company .section.sec3{
}

/*理念*/
.company_philo_box{
  position: relative;
  border: 3px solid #f5f4ef;
  padding: 36px 16px 40px;
  margin-top: 36px;
}
.company_philo_box:before{
  content: "";
  display: block;
  width: 22.52%;
  height: 66.07%;
  border: 4px solid #b5d9c2;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: -8px;
  right: -8px;
}
.company_philo_box:after{
  content: "";
  display: block;
  width: 22.52%;
  height: 66.07%;
  border: 4px solid #b5d9c2;
  border-right: 0;
  border-top: 0;
  position: absolute;
  bottom: -8px;
  left: -8px;
}
.company_philo_tt{
  font-size: 15px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}
.company_philo_title{
  text-align: center;
}
.company_philo_tt_box{
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  position: relative;
}
.company_philo_tt_box:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.company_philo_tt{
  position: relative;
  z-index: 1;
  background: var(--main-color);
  padding: 0 20px;
}
.company_philo_desc{
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 1.40em;
  text-align: justify;
  margin-top: 8px;
}

/*テーブル*/
.company_tbl{
  margin-top: 36px;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  border: 1px solid #d2d2d2;
  font-size: 16px;
  font-weight: 400;
}
.company_tbl .table_rows_th{
  background: #f3f1f1;
}
.company_tbl .table_rows_td{
  background: #fff;
  line-height: 2em;
}

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

/*ギャラリー*/
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin: 36px -5px 0;
}
.company_gallery_item{
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img:before{
  padding-top: 80%;
}
@media (max-width:374px){

}
@media (min-width:375px){
  .company_philo_tt{
    font-size: 18px;
  }
}
@media (max-width:767px){
  .company_vision_wrap .contents_layout_box{
    position: relative;
  }
  .company_vision_wrap .contents_layout_box .sec_title{
    position: absolute;
    top: 0;
    left: 0;
  }
  .company_vision_wrap .contents_layout_box1{
    order: 2;
    margin-top: 20px;
  }
  .company_vision_wrap .contents_layout_box2{
    order: 1;
    padding-top:130px;
  }

  /*テーブル*/
  .company_tbl{
    margin-top: 55px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    border-bottom: none;
    display: block;
    width: 100%;
  }
  .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_td{

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

  }
  .pg_company .section.sec1{
  }
  .pg_company .section.sec2{
    padding-top: 100px;
  }
  .pg_company .section.sec3{
    padding-top: 70px;
  }

  /*理念*/
  .company_philo_box{
    padding: 50px 16px 45px;
    margin-top: 40px;
  }
  .company_philo_tt_box{
    padding: 1px 60px;
  }
  .company_philo_tt{
    font-size: 20px;
  }
  .company_philo_desc{
    font-size: 24px;
    text-align: center;
  }

  /*目指すもの*/
  .company_vision_wrap .contents_layout_box1{
    width: 57.20%;
  }

  /*テーブル*/
  .company_tbl{
    margin-top: 55px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 15.5px 16px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    border-right: none;
  }
  .company_tbl .table_rows_td{
    border-left: none;
    padding-left: 26px;
  }

  /*地図*/
  .gmap{
    margin-top: 60px;
  }
  .access_map iframe{
    height: 350px;
  }

  /*ギャラリー*/
  .company_gallery_items{
    margin: 65px -15px 0;
  }
  .company_gallery_item{
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 24px;
  }
  .company_gallery_item_img:before{

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

  }
  .pg_company .section.sec1{
  }
  .pg_company .section.sec2{
    padding-top: 140px;
  }
  .pg_company .section.sec3{
  }

  /*理念*/
  .company_philo_box{
    padding: 50px 16px 45px;
    margin-top: 50px;
  }
  .company_philo_tt_box{
    padding: 1px 112px;
  }
  .company_philo_tt{
    font-size: 22px;
  }
  .company_philo_desc{
    font-size: 32px;
  }

  /*目指すもの*/
  .company_vision_wrap .contents_layout_box1 .content_desc{
    padding-right: 67px;
  }

  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{

  }

  /*地図*/
  .gmap{
    margin-top: 70px;
  }
  .access_map iframe{
    height: 400px;
  }

  /*ギャラリー*/
  .company_gallery_items{

  }
  .company_gallery_item{

  }
  .company_gallery_item_img:before{

  }

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


}




/*******************************
*　
********************************/
.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_detail .contact a{
  font-family: "Zen Kaku Gothic Antique", serif;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid #c6cfe6;
}
.pg_contact .label{
  padding-left: 2px;
}
/* コピー用 */
@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;
  }


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


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


}


