@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  --main-color: #ea6532;
  --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: "Montserrat", sans-serif;
  --font-mincho: 'Noto Serif JP', 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;
}


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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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


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


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


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



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

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: auto;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 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){
  .header{
    position: relative;
    z-index: 2;
  }
  .hdr1 {
    justify-content: center;
  }
  .hdr_logo{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 200px;
  }

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

  .hdr_contact_btns{
    display: none;
  }

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo{
    position: absolute;
    top: 40px;
    left: 50px;
  }
  .hdr_logo img{
    /*width: 180px;*/
  }

  /* ヘッダースリム */
  .header.slim{
    background: rgba(0,0,0,0.5);
  }
  .header.slim .hdr_logo img{
    height: auto;
  }
  .header.slim .hdr_logo{
    top: 10px;
    left: 30px;
    width: 250px;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btns{
    display: flex;
  }
  .hdr_contact_box{
    width: 90px;
    height: 80px;
    transition: all .2s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hdr_contact_box.bk{
    background: #000000;
    color: #fff;
    text-align: center;
  }
  .hdr_contact_box.bk:hover{
    background: var(--main-color);
    color: #fff;
  }
  .hdr_contact_btn.mail{

  }
  .hdr_contact_btn.mail p{
    transition: all .2s;
  }
  .hdr_contact_btn.mail p:before{
    content:"\f0e0";
    display: block;
    font-size: 28px;
    font-family: "fontAwesome";
    color: var(--main-color);
    transition: all .2s;
  }
  .hdr_contact_box.bk:hover .hdr_contact_btn.mail p,
  .hdr_contact_box.bk:hover .hdr_contact_btn.mail p:before{
    color: #fff;
  }
  .hdr_contact_box p{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    font-family: var(--font-en);
  }

  .hdr_contact_box.wh{
    background: #e5e5e5;
  }
  .hdr_contact_box.wh p{
    color: #000;
  }
  .hdr_contact_box.wh:hover p{
    color:  var(--main-color);
  }
  .hdr_contact_box.wh:hover .btnHamburger .line{
    background: var(--main-color);
  }

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

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

  /* ロゴ */
  .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: 48px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before {
  /* padding-top: 250px; */
  padding-top: calc(100svh - 64px);
  padding-top: 75vh;
}
.mv_inner{
  position: relative;
}
.mav_cara{
  width: 400px;
  position: absolute;
  bottom: 0;
  left: 55%;
  transform:translateX(-50%);
  z-index: 2;
}
.mav_cara_items{

}
.mav_cara_item{

}
.mav_cara_item_img{

}


/* MVテキスト */
.mv_main{
  width: 100%;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 4;
  color: #fff;
  font-style: italic;
}
.mv_txt1{
  font-size: 40px;
  font-weight: 700;

  letter-spacing: 0;
}
.mv_txt2{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75em;
  margin-top: 13px;
}
.mv_txt2 p{
  letter-spacing: 0;
}
.mv_txt3{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  font-family: var(--font-en);
  line-height: 1;
  margin-top: 36px;
}


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

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

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

/*装飾*/
.mv_obj{
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.top_obj{
  width: 99.06%;
  ;
  aspect-ratio:1902 / 712;
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/top_obj.png);
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 1;
}
.btm_obj{
  width: 100%;
  ;
  aspect-ratio:1920 / 900;
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/btm_obj.png);
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 3;
}


/* Swiper本体 */
.mav_cara_items_outer{
  width: 100%;
  overflow: hidden; /* ← これ大事 */
  position: relative;
}

.mav_cara_items_outer.swiper{
  width: 100%;
}

/* wrapper */
.mav_cara .swiper-wrapper{
  align-items: center;
}

/* slide */
.mav_cara .swiper-slide{
  width: 100% !important;
  height: auto;
  flex-shrink: 0;
}

/* 中身 */
.mav_cara_item{
  width: 100%;
}

.mav_cara_item_img{
  width: 100%;
}

.mav_cara_item_img img{
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width:768px){

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

  }
  .mav_cara{
    width: 847px;
    width: 55.01%;
    ;
  }
  .mav_cara_items{

  }
  .mav_cara_item{

  }
  .mav_cara_item_img{

  }

  /* MVテキスト */
  .mv_main{
    top: 65%;
  }
  .mv_txt1{
    font-size: 60px;
  }
  .mv_txt2{
    font-size: 18px;
  }
  .mv_txt3{
    font-size: 16px;
    margin-top: 36px;
  }

  /*装飾*/
  .mv_obj{

  }
  .top_obj{

  }
  .btm_obj{

  }

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


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

  }
  .mav_cara{
    width: 847px;
    ;
    width: 44.01%;
    ;
  }
  .mav_cara_items{

  }
  .mav_cara_item{

  }
  .mav_cara_item_img{

  }


  /* MVテキスト */
  .mv_main{
    top: 65%;
  }
  .mv_txt1{
    font-size: 90px;
  }
  .mv_txt2{
    font-size: 20px;
  }
  .mv_txt3{
    font-size: 18px;
  }

  /*装飾*/
  .mv_obj{

  }
  .top_obj{

  }
  .btm_obj{

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

  /* MV */
  .mv{
  }
  .mv_inner{

  }
  .mav_cara{
    width: 44.01%;
    ;
  }
  .mav_cara_items{

  }
  .mav_cara_item{

  }
  .mav_cara_item_img{

  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 100vh;
  }

  /* MVテキスト */
  .mv_main{
    top: 65%;
  }
  .mv_txt1{
    font-size: 120px;
  }
  .mv_txt2{
    font-size:24px;
  }
  .mv_txt3{
    font-size: 20px;
  }

  /*装飾*/
  .mv_obj{

  }
  .top_obj{

  }
  .btm_obj{

  }

}
@media (min-width:1366px){
  .mav_cara{
    width: 44.01%;
    ;
  }
}
@media (min-width:1470px){
  .mav_cara{
    width: 44.01%;
    ;
  }
}
@media (min-width:1536px){
  .mav_cara{
    width: 44.01%;
    ;
  }
}
/*******************************
*　サイドバー
********************************/

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

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

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


@media (min-width:768px){

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

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


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

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

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

}


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

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




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

  .pg_header_title_txt{

  }

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

  .pg_header_title_txt{

  }

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

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

  .pg_header_title_txt{

  }

}



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

.footer{
  background: #fff;
  margin-top: 50px;
}

.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{

}

.gmap{

}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

.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: 8px;
  margin-top: 40px;
}
.ftr_copy a:hover{
  color: #fff;
  opacity: 0.5;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #ef7f1a;
}
.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: #ffbd5b;
}
.pagetop a i{
  font-size: 40px;
}

.ftr_contact_wrap{
  background: var(--main-color);
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 47px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt2_en{
  font-size: 40px;
  font-weight: 500;
  text-shadow:none;
  font-family: var(--font-en);
  color: #1e3769;
  letter-spacing: 0;
}
.ftr_contact_box1 .en_tt{
  font-size: clamp(2rem, 1.4rem + 3vw, 5rem);
}
.ftr_contact_box1 .tt2_en:first-letter{
  font-size: inherit;
}
.ftr_contact_box1 .content_desc{
  font-size: 15px;
  font-weight: 500;
  line-height: 2em;
  color: #fff;
  margin-top: 24px;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
  text-align: center;
}
.ftr_contact_box2_item_tt{
  position: relative;
  text-align: center;
  color: #fff;
}
.ftr_contact_box2_item_tt:after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #a39c92;
  margin: 25px auto 0;
  display: none;
}
.ftr_contact_box2_item_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 24px;
  margin-inline:auto;
  margin-bottom: 16px;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 24;
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/tel.png);

}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_tt:before{
  width: 25px;
  aspect-ratio:25 / 18;

  background-image: url(https://passionandtrust.com/system_panel/uploads/images/mail.png);
}
.ftr_contact_box2_item_h2{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.ftr_contact_box2_item_link{
  margin-top: 32px;
}
.ftr_contact_box2_ite_tel{
  text-align: center;
}
.ftr_contact_box2_ite_tel1{
  font-size: 28px;
  font-weight: 600;
  font-family:var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}
.ftr_contact_box2_ite_tel1 a:hover{
  color: #000;
}
.ftr_contact_box2_ite_tel2{
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 240px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  border-radius: 23.5px;
  border: 1px solid  #181818;
  margin-inline:auto;
  padding: 13px 0;
}
.link_1.entry{
  width: 100%;
  max-width: 314px;
  margin-top: 30px;
}
.link_1:hover{
  background: #fff;
  color: #181818;
}
.link_1 p{
  letter-spacing: 0;
}

.ftr_1{
  background: #ffffff;
  padding-top: 46px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 53px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
}
.ftr_add_items{

}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_left{
  position: relative;
  padding-right: 9px;
  margin-right: 19px;
}
.ftr_add_left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

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

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

  .ftr_contact_box2_item{
    border-top: 1px solid #fff;
    padding-top: 30px;
  }
  .ftr_contact_box2_item{
    margin-top: 30px;
  }
  .ftr_contact_box2_item:first-child{
    border-top:none;
  }
  .ftr_contact_box1{
    text-align: center
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: auto;
    margin-inline:auto;
  }
  .ftr_logo img{
    width: 200px;
  }

  .ftr_contact_box1 .content_desc p{
    letter-spacing: 0;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }
  .gmap{

  }
  .access_map iframe{
    height: 450px;
  }
  .ftr_copy{
    margin-top: 74px;
  }

  .ftr_contact_box1 .tt2_en{
    font-size: 60px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    margin-top: 40px;
  }
  .ftr_contact_box2_item{
    width: 50%;
    position: relative;
    padding: 40px 0 75px;
  }
  .ftr_contact_box2_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_ite_tel2{

  }
  .link_1.entry{
    margin-top: 53px;
  }
  .link_1{
    max-width: 200px;
  }

  .ftr_1{

    padding-top: 79px;
  }
  .ftr_1 a:hover{
    color: var(--main-color);
  }
  .ftr_1_box{
    justify-content: space-between;
    align-items: flex-start;
  }
  .ftr_1_box1{
    width: 44.23%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_left{

  }
  .ftr_add_left:after{

  }
  .ftr_logo img{
    width: 200px;
    height: auto;
  }
  .ftr_1_box2{
    width: 50%;
  }
  .ftr_links {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;
    position: relative;
  }
  .ftr_link {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 15px;
  }


  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio:1;
    background-image: url(https://passionandtrust.com/system_panel/uploads/images/arrr4.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 227px;
  }
  .gmap{

  }
  .access_map iframe{
    height:600px;
  }

  .ftr_contact_box1{
    width: 48.23%;
  }
  .ftr_contact_box1 .tt2_en{
    font-size: 70px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 50.98%;
    margin-top:0;
  }
  .ftr_contact_box2_item{

  }
  .ftr_contact_box2_item_tt{

  }
  .ftr_contact_box2_item_h2{

  }
  .ftr_contact_box2_item_link{

  }
  .ftr_contact_box2_ite_tel{

  }
  .ftr_contact_box2_ite_tel1{
    font-size: 30px;
  }


  .link_1{
    max-width: 200px;
  }

  .ftr_link {
    width: 50%;
  }
  .ftr_contact_box2_item:before{
    content: "";
    display: block;
    width: 1px;
    height: 260px;
  }
  .ftr_contact_box2_item:last-child:after{
    content: "";
    display: block;
    width: 1px;
    height: 260px;
  }

  .ftr_1_box1{
    width: 32.23%;
  }
  .ftr_1_box2{
    width: 62.51%;
  }

  .ftr_link p:after {
    width: 100%;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1200px){
  .link_1{
    max-width: 240px;
  }
  .ftr_1_box1{
    width: 29.23%;
  }
  .ftr_1_box2{
    width: 70.51%;
    /*     width: 61.51%;*/
    /*    width: 55.39%;
        display: flex;
        flex-wrap: wrap;
        padding-top: 32px;*/
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    width: 33.333%;
    font-size: 14px;
    padding-inline: 15px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 16px;
  }
  .ftr_link p:after {
    width: 100%;
  }

}
@media (min-width:1366px){
  .ftr_contact_box1{
    width: 36.23%;
  }
  .ftr_logo img{
    width: auto;
    height: auto;
  }
}
@media (min-width:1720px){
  .ftr_1_box1{
    width: 32.23%;
  }
  .ftr_1_box2{
    width: 61.51%;
  }
  .ftr_link{
    font-size: 16px;
  }
}

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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{

  min-width: 320px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align:left;
  border: 1px solid transparent;
  background: #000;
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more.sm a{
  min-width: 300px;
}
.read_more.or a{
  background: var(--main-color);
}
.read_more.or a:hover{
  background: #000;
  color: #fff;
}
.read_more.or a:after{
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/arr3_wh.png);
}
.read_more.or a:hover:after{
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/arr3.png);
}
.read_more a p{
  letter-spacing: 0.05em;
}
.read_more a:after{
  content: "";
  display: block;
  width: 24px;
  aspect-ratio:1;
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/arr3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #000;
  background: var(--main-color);
}
.read_more a:hover:after{
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/arr3_bk.png);
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more.insta a:after{

  background-image: url(https://passionandtrust.com/system_panel/uploads/images/aq.png);
  width: 18px;
  aspect-ratio:1;
}
.read_more.insta a:hover{
  border: 1px solid #000;
}
.read_more.insta a:hover:after{
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/aq_bk.png);
}

/* 見出し */
.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;
}


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

}


@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: 400px;
    font-size: 18px;
    padding: 19px 30px;
    margin: 5px 5px;
  }
  .read_more a:after{
    right: 18px;
  }

  /* 見出し */
  .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;
  }


}
@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;
  }*/

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


}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }

}

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



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

}
.pg_home .section.sec1{
  padding-top: 60px;
  position: relative
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width: 100%;
  height: 25.44%;
  background: var(--main-color);
  opacity: 0.2;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
}
.pg_home .section.sec2{
  background: var(--main-color);
  padding-top: 0;
}
.pg_home .section.sec3{

}
.pg_home .section.sec4{
  position: relative;
  padding-top: 0;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{
  background: #f7f7f7;
}
.pg_home .section.sec8{

}

@media (max-width:767px){
  .pg_home .section.sec1:after{
    height: 17.44%;
  }


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

  .pg_home .section.sec1{
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding-bottom: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding-top: 90px;
  }
  .pg_home .section.sec6{
    padding-top: 70px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 113px;
    padding-bottom: 133px;
  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 90px;
    padding-bottom: 140px;
  }
  .pg_home .section.sec2{
    padding-bottom: 139px;
  }
  .pg_home .section.sec3{
    padding-top: 120px;
    padding-bottom: 189px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-bottom: 137px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}

/*main*/
/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_sec1_box1_inner{

}
.home_sec1_box1_img:before{
  padding-top: 71.42%;
}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.en_tt{
  font-size: clamp(2.5rem, 1rem + 7.5vw, 10rem);
  font-weight: 600;
  font-style: italic;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.en_tt.sm{
  font-size: clamp(2.5rem, 1.125rem + 6.88vw, 9.375rem);
  font-size: clamp(2rem, 0.525rem + 7.38vw, 9.375rem);
}
.en_tt.clear{
  color: #fff;
  filter: drop-shadow(0px 0px 1px #ea6532);
}
.cover_tt{
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color);
  position: relative;
}
.cover_tt p{
  display: inline-block;
  background: #000000;
  padding: 0 13px;
}
.home_sec1_box2 .cover_tt{
  margin-top: -10px;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.5em;
  text-align: justify;
}
.home_sec1_box2 .content_desc{
  margin-top: 20px;
}

.home_sec1_slide{
  margin-top:40px;
}
.home_sec1_slide_items{
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start!important;
}
.home_sec1_slide_item{
  width: 200px;
  position: relative;
  margin-right: 10px;
}
.home_sec1_slide_item:nth-child(even){
  margin-top: 30px;
}
.home_sec1_slide_item:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ea6532;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 0;
}
.home_sec1_slide_item{

}
.home_sec1_slide_item_img{
  position: relative;
  z-index: 1;
}
.home_sec1_slide_item_img:before{
  padding-top: 75%;
}

/*sec2*/
.lg_ja{
  text-align: center;
  font-size: clamp(1.75rem, -0.15rem + 9.5vw, 11.25rem);
  font-weight: 700;
  letter-spacing: 0;
  font-style: italic;
  color: var(--main-color);
  filter: drop-shadow(0px 0px 1px #fff);
  margin-right: -5.2%;
}
.home_sec2_wrap{

}
.home_sec2_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_head_box1{
  width: 100%;
}
.en_tt.ex_sm{
  font-size: clamp(2.5rem, 1.5rem + 5vw, 7.5rem);
}
.en_tt.wh{
  color: #fff;
}
.tt2_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.tt2_ja:before{
  content: "・";
}
.home_sec2_head_box2{
  width: 100%;
  margin-top: 30px;
}
.home_sec2_head_links{
  display: flex;
  flex-wrap: wrap;
}
.home_sec2_head_link{
  width: 100%;
}
.home_sec2_head_link:nth-child(n+2){
  margin-top: 10px;
}
.home_sec2_head_link_inner{
  display: block;
  background: #000000;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 16px 0 70px;
}
.home_sec2_head_link_inner:after{
  content: "";
  display: block;
  width: 24px;
  aspect-ratio:1;
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/arr1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform:translateX(-50%);
  transition: all .2s;
}
.home_sec2_head_link_inner:hover{
  color: var(--main-color);
}
.home_sec2_head_link_inner:hover:after{
  bottom: 20px;
}
.home_sec2_head_link_tt1{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-en);
}
.home_sec2_head_link_tt2{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  ;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.home_sec2_main{
  margin-top: 40px;
}
.home_sec2_main_items{

}
.home_sec2_main_item{
  background: #fff;
  padding: 30px 16px;
}
.home_sec2_main_item:nth-child(n+2){
  margin-top: 50px;
}
.home_sec2_main_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec2_main_head_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_sec2_main_head_tt{
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
.home_sec2_main_head_num{
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-en);
  color: var(--main-color);
  letter-spacing: 0;
  margin-right: 18px;
}
.home_sec2_main_head_h3{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_sec2_main_head .content_desc{
  line-height: 2.25em;
  margin-top: 20px;
}
.home_sec2_main_head_box2{
  width: 100%;
  order: 1;
}
.home_sec2_main_head_img:before{
  padding-top: 75%;
}
.home_sec2_main_btm{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.home_sec2_main_btm_box1{
  width: 100%;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  padding: 25px 31px;
}
.home_sec2_main_btm_tt{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.home_sec2_main_btm_check{

}
.home_sec2_main_btm_check_txt{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000;
  padding-bottom:0;
  position: relative;
  padding-left: 32px;
}
.home_sec2_main_btm_check_txt:nth-child(n+2){
  margin-top: 15px;
}
.home_sec2_main_btm_check_txt:before{
  content:"\f058";
  font-family: "FontAwesome";
  color: var(--main-color);
  margin-right: 16px;
  position: absolute;
  left: 0;
  top: 0;
}
.home_sec2_main_btm_box2{
  width: 100%;
  margin-top: 20px;
}
.home_sec2_main_btm_lists{

}
.home_sec2_main_btm_list{
  background: #f2f2f2;
  padding: 28px 25px;
}
.home_sec2_main_btm_list:nth-child(n+2){
  margin-top: 6px;
}
.home_sec2_main_btm_list_txt{
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 23px;
  position: relative;
  padding-left: 20px;
}
.home_sec2_main_btm_list_txt:before{
  content: "";
  background: var(--main-color);
  width: 10px;
  aspect-ratio:1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}
.home_sec2_main_btm_list_txt.price{
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-en);
}
.home_sec2_main_btm_list_txt.price:before{
  display: none;
}

.home_sec2_main_rec{
  margin-top: 49px;
}
.home_sec2_main_rec_tt{
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
}
.home_sec2_main_rec_tt_en{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  font-style: italic;
  font-family: var(--font-en);
  line-height: 1;
  color: var(--main-color);
}
.home_sec2_main_rec_tt_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 11px;
}
.home_sec2_main_rec_tt_ja strong{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_sec2_main_rec_items{
  display:flex;
  flex-wrap: wrap;
  margin-top: 44px;
}
.home_sec2_main_rec_item{
  width: 100%;
}
.home_sec2_main_rec_item:nth-child(n+2){
  margin-top: 30px;
}
.home_sec2_main_rec_item_inner{
  background: #f2f2f2;
  padding: 16px;
}
.home_sec2_main_rec_item_img:before{
  padding-top: 64.51%;
}
.home_sec2_main_rec_item_inside{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
}
.home_sec2_main_rec_item_cate{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 5px 9px;
}
.home_sec2_main_rec_item_name{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
.home_sec2_main_rec_item_inside .content_desc{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14em;
  margin-top: 15px;
}
.link_3{
  display: block;
  width: 185px;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  margin-left: auto;
  position: relative;
  margin-top: 21px;
}
.link_3:after{
  content: "";
  display: block;
  width: 16px;
  aspect-ratio:1;
  background-image: url(https://passionandtrust.com/system_panel/uploads/images/s.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.link_3:hover{
  color: var(--main-color);
}

/*sec3*/
.en_tt.or{
  text-align: center;
  color: var(--main-color);
}
.home_sec3_wrap{

}
.home_sec3_box{
  margin-top: 43px;
  position: relative;
}
.home_sec3_box:before{
  content: "";
  display: block;
  width: 70.31%;
  height: 130.89%;
  background: #f7f7f7;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
.artist_list_box{

}
.artist_list_box .artist_list{

}
.artist_list_box .artist_list .infiniteslide_wrap{
  overflow: visible!important;
}
.artist_list_box .artist_list .webgene-blog{
  flex-wrap: nowrap;
}
.artist_list_box .artist_list .webgene-item{
  width: 250px;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin-right: 10px;
}
.artist_list_box .artist_list .webgene-item .box1 .img:before{
  padding-top: 75%;
}
.artist_list_box .artist_list .webgene-item:nth-child(n+2){
  margin-top: 0;
}
.artist_list_box .artist_list .webgene-item:nth-child(n+3){
  margin-top: 0;
}
.artist_list_box .artist_list .webgene-item:after{
  display: none;
}
.home_sec3_box .read_more{

}

/*sec4*/
.home_sec4_img{

}
.home_sec4_img:before{
  padding-top: 800px;
}
.home_sec4_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  position: absolute;
  top:0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_sec4_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.home_sec4_wrap{

}
.home_sec4_outer .en_tt{
  margin-bottom: 40px;
}
.home_sec4_wrap .news_list{

}

/*sec5*/

.home_sec5_wrap{
  background: var(--main-color);
  padding: 20px 16px;
}
.home_sec5_wrap .en_tt{
  text-align: center;
  margin-bottom: 15px;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline: -5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline: 5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 8px;
  ;
}
.insta_list .webgene-item:nth-child(n+5){
  display: none;
}
.insta_list .webgene-item .img_fit:before{
  padding-top: 132%;
}

.pg_home .section.sec6 .en_tt{
  margin-bottom: 44px;
}


.company_tbl .table_rows_td a:hover{
  color: var(--main-color);
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_sec2_main_btm_list_txt{
    display: block;
    text-align: left;
  }

  .home_sec2_main_btm_box1{
    padding: 25px 10px;
  }
  .home_sec2_main_btm_check_txt{
    font-size: 16px;
    letter-spacing: 0;
    padding-left: 20px;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{

  }
  .home_sec1_box1_inner{

  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{

  }
  .home_sec1_box2 .cover_tt{
    margin-top: -10px;
  }
  .en_tt{

  }
  .en_tt.clear{

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

  }
  .home_sec1_box2 .content_desc{
    margin-top: 43px;
  }

  .home_sec1_slide{
    margin-top: 134px;
  }
  .home_sec1_slide_items{

  }
  .home_sec1_slide_item{
    width: 300px;
    margin-right: 20px;
  }
  .home_sec1_slide_item:nth-child(even){
    margin-top: 60px;
  }
  .home_sec1_slide_item{

  }
  .home_sec1_slide_item_img:before{

  }

  /*sec2*/
  .lg_ja{

  }
  .home_sec2_wrap{

  }
  .home_sec2_head{

  }
  .home_sec2_head_box1{

  }
  .en_tt.ex_sm{

  }
  .en_tt.wh{

  }
  .tt2_ja{
    font-size: 22px;
  }
  .tt2_ja:before{

  }
  .home_sec2_head_box2{
    margin-top: 40px;
  }
  .home_sec2_head_links{
    margin-inline:-5px;
  }
  .home_sec2_head_link{
    width: 33.333%;
    padding-inline:5px;
  }
  .home_sec2_head_link:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec2_head_link_inner{
    padding: 30px 0 87px;
  }
  .home_sec2_head_link_tt1{
    font-size: 24px;
  }
  .home_sec2_head_link_tt2{
    font-size: 18px;
  }

  .home_sec2_main{
    margin-top: 100px;
  }
  .home_sec2_main_items{

  }
  .home_sec2_main_item{
    padding: 50px 60px;
  }
  .home_sec2_main_item:nth-child(n+2){
    margin-top: 59px;
  }
  .home_sec2_main_head{

  }
  .home_sec2_main_head_box1{
    margin-top: 30px;
  }
  .home_sec2_main_head_tt{

  }
  .home_sec2_main_head_num{
    font-size: 60px;
  }
  .home_sec2_main_head_h3{
    font-size: 30px;
  }
  .home_sec2_main_head .content_desc{
    margin-top: 28px;
  }
  .home_sec2_main_head_box2{

  }
  .home_sec2_main_head_img:before{

  }
  .home_sec2_main_btm{
    margin-top: 51px;
  }
  .home_sec2_main_btm_box1{

  }
  .home_sec2_main_btm_tt{
    font-size: 18px;
  }
  .home_sec2_main_btm_check{

  }
  .home_sec2_main_btm_check_txt{
    font-size: 18px;
  }
  .home_sec2_main_btm_check_txt:before{

  }
  .home_sec2_main_btm_box2{
    margin-top: 30px;
  }
  .home_sec2_main_btm_lists{

  }
  .home_sec2_main_btm_list{

  }
  .home_sec2_main_btm_list_txt{
    font-size: 20px;
  }
  .home_sec2_main_btm_list_txt.price{
    font-size: 30px;
  }

  .home_sec2_main_rec{
    margin-top: 49px;
  }
  .home_sec2_main_rec_tt{

  }
  .home_sec2_main_rec_tt_en{
    font-size: 30px;
  }
  .home_sec2_main_rec_tt_ja strong{
    font-size: 16px;
  }
  .home_sec2_main_rec_tt_ja{
    font-size: 20px;
  }
  .home_sec2_main_rec_items{

  }
  .home_sec2_main_rec_item{

  }
  .home_sec2_main_rec_item_inner{
    padding: 30px;
  }
  .home_sec2_main_rec_item_img:before{

  }
  .home_sec2_main_rec_item_inside{
    margin-top: 30px;
  }
  .home_sec2_main_rec_item_cate{

  }
  .home_sec2_main_rec_item_name{
    font-size: 20px;
  }
  .home_sec2_main_rec_item_inside .content_desc{

  }
  .link_3{

  }

  /*sec3*/
  .en_tt.or{

  }
  .home_sec3_wrap{

  }
  .home_sec3_box{

  }
  .artist_list_box{

  }
  .artist_list_box .artist_list{

  }
  .artist_list_box .artist_list .webgene-blog{

  }
  .artist_list_box .artist_list .webgene-item{
    width: 350px;
    margin-right: 30px;
  }
  .home_sec3_box .read_more{
    margin-top: 55px;
  }

  /*sec4*/
  .home_sec4_img:before{
    padding-top: 1200px;
  }

  .home_sec4_wrap .news_list_thumb .webgene-blog{
    margin-inline:-20px;
  }
  .home_sec4_wrap .news_list_thumb .webgene-item{
    padding-inline:20px;
  }
  .home_sec4_wrap .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 40px;
  }
  .home_sec4_wrap .news_list_thumb .webgene-item .box2{
    padding: 20px 35px 11px;
  }
  .home_sec4_wrap .news_list_thumb .webgene-item .meta .category{
    font-size: 15px;
    padding: 3px 20px;
  }
  .home_sec4_wrap .news_list_thumb .webgene-item .title{
    font-size: 20px;
    margin-top: 7px;
    margin-bottom: 18px;
  }
  .home_sec4_wrap .news_list_thumb .webgene-item .txt{
    font-size: 16px;
  }
  .home_sec4_wrap .read_more{
    margin-top: 54px;
  }

  /*sec5*/
  .home_sec5_wrap{
    padding: 21px 40px;
  }
  .insta_list .webgene-blog{
    margin-inline: -8.5px;
  }
  .insta_list .webgene-item{
    width: 33.333%;
    padding-inline: 8.5px;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 8.5px;
    ;
  }
  .insta_list .webgene-item:nth-child(n+5){
    display:block;
  }
  .insta_list .webgene-item .img_fit:before{
    padding-top: 132%;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_box2 .cover_tt{
    margin-top: -20px;
  }

  .home_sec2_main_rec_items{
    margin-inline:  -20px;
  }
  .home_sec2_main_rec_item{
    width: 50%;
    padding-inline:20px;
  }
  .home_sec2_main_rec_item_inner{
    height: 100%;
  }
  .home_sec2_main_rec_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec2_main_rec_item:nth-child(n+3){
    margin-top: 50px;
    ;
  }

  /*sec4*/
  .home_sec4_img:before{
    padding-top: 900px;
  }
  .home_sec4_wrap .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
}
@media (min-width:1200px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 32.89%;
    order: 1;
    padding-top: 51px;
    margin-top: 0;
  }
  .home_sec1_box1_inner{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_sec1_box1_img:before{

  }
  .home_sec1_box2{
    width: 61.51%;
    order: 2;
    padding-left: 18px;
  }
  .en_tt{

  }
  .en_tt.clear{

  }
  .home_sec1_box2 .en_tt{
    margin-left: -46px;
  }
  .home_sec1_box2 .cover_tt{
    margin-top: -30px;
  }
  .cover_tt{
    font-size: 36px;
  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{

  }

  .home_sec1_slide_items{

  }
  .home_sec1_slide_item{
    width: 480px;
  }
  .home_sec1_slide_item{

  }
  .home_sec1_slide_item_img:before{

  }

  /*sec2*/
  .lg_ja{

  }
  .home_sec2_wrap{

  }
  .home_sec2_head{

  }
  .home_sec2_head_box1{
    width: 36.51%;
  }
  .en_tt.ex_sm{

  }
  .en_tt.wh{

  }
  .tt2_ja{
    font-size: 30px;
  }
  .tt2_ja:before{

  }
  .home_sec2_head_box2{
    width: 56.57%;
    padding-top: 20px;
    margin-top: 0;
  }
  .home_sec2_head_links{

  }
  .home_sec2_head_link{

  }
  .home_sec2_head_link_inner{

  }
  .home_sec2_head_link_tt1{

  }
  .home_sec2_head_link_tt2{

  }

  .home_sec2_main{

  }
  .home_sec2_main_items{

  }
  .home_sec2_main_item{

  }
  .home_sec2_main_head{

  }
  .home_sec2_main_head_box1{
    width: 62.85%;
    order: 1;
    margin-top: 0;
  }
  .home_sec2_main_head_tt{

  }
  .home_sec2_main_head_num{
    font-size: 80px;
  }
  .home_sec2_main_head_h3{
    font-size: 30px;
  }
  .home_sec2_main_head .content_desc{

  }
  .home_sec2_main_head_box2{
    width: 34.28%;
    order: 2;
    padding-top: 10px;
  }
  .home_sec2_main_head_img:before{

  }
  .home_sec2_main_btm{

  }
  .home_sec2_main_btm_box1{
    width: 41.42%;
  }
  .home_sec2_main_btm_tt{

  }
  .home_sec2_main_btm_check{

  }
  .home_sec2_main_btm_check_txt{

  }
  .home_sec2_main_btm_check_txt:before{

  }
  .home_sec2_main_btm_box2{
    width: 57.14%;
    margin-top: 0;
  }
  .home_sec2_main_btm_lists{

  }
  .home_sec2_main_btm_list{

  }
  .home_sec2_main_btm_list_txt{

  }

  .home_sec2_main_rec{

  }
  .home_sec2_main_rec_tt{

  }
  .home_sec2_main_rec_tt_en{
    font-size: 40px;
  }
  .home_sec2_main_rec_tt_ja{

  }
  .home_sec2_main_rec_items{

  }
  .home_sec2_main_rec_item{

  }
  .home_sec2_main_rec_item_inner{

  }
  .home_sec2_main_rec_item_img:before{

  }
  .home_sec2_main_rec_item_inside{

  }
  .home_sec2_main_rec_item_cate{

  }
  .home_sec2_main_rec_item_name{
    font-size: 30px;
  }
  .home_sec2_main_rec_item_inside .content_desc{

  }
  .link_3{

  }

  /*sec3*/
  .en_tt.or{

  }
  .home_sec3_wrap{

  }
  .home_sec3_box{

  }
  .artist_list_box{

  }
  .artist_list_box .artist_list{

  }
  .artist_list_box .artist_list .webgene-blog{

  }
  .artist_list_box .artist_list .webgene-item{
    width: 480px;
    margin-right: 60px;
  }
  .home_sec3_box .read_more{

  }

  /*sec4*/
  .home_sec4_img:before{
    padding-top: 1021px;
  }

  /*sec5*/
  .home_sec5_wrap{
    padding: 21px 98px 55px;
  }
  .insta_list .webgene-blog{
    margin-inline: -8.5px;
  }
  .insta_list .webgene-item{
    width: 20%;
    padding-inline: 8.5px;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+6){
    margin-top: 0;
  }
  .insta_list .webgene-item .img_fit:before{
    padding-top: 132%;
  }
}
@media (min-width:1470px){
  .cover_tt{
    font-size: 48px;
  }
  .home_sec2_main_head_h3{
    font-size: 40px;
  }
  .home_sec2_main_btm_check_txt{
    font-size: 20px;
  }
}
@media (min-width:1720px){


}
@media (max-width:1199px){
  .home_sec1_box2 .cover_tt{
    margin-bottom: 30px;
  }

}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}
@media (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{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}
@media (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{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}
@media (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{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}
@media (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{

}

.insta_list video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}
.insta_list .box1{
  background: #000;
}
@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
