@charset "UTF-8";

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

  /* カラー(ボタン背景色など) */
  /*--main-color: #172f57;*/
  /*--sub-color: #7d0000;*/
  --main-color: #2c2640; /* 青 */
  --sub-color:  #541a27; /* 赤 */
  --sub2-color: #8fc21d; /* 緑 */
  --sub3-color: #6a005f; /* 紫 */
  --sub4-color: #e6e7e9; /* シルバー */
  --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: "Alex Brush",  'Shippori Mincho B1', sans-serif;
  --font-mincho: 'Shippori Mincho B1', serif;
}


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

  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/body_bg1.jpg');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  -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: 4;
  }
}

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

*{
  letter-spacing: inherit;
}
p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  /*letter-spacing: 0.075em;*/
}
h1, h2, h3, h4, h5, h6{
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1.5;
  letter-spacing: 0.075em;
}

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

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

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

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

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

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

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


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


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

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


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



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

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 8px 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(--main-color);
  color: #FFF;
}

.hdr_contact a.tel{
  width: 250px;
  background: var(--sub-color);
  color: #FFF;
}
.hdr_contact a.tel:hover{
  /*background: #7d0000;*/
  opacity: 0.9;
}
.hdr_contact a.tel{
  font-size: 14px;
}
.hdr_contact_tel_txt1{
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 2px;
}
.hdr_contact_tel_txt2{
  /*font-size: 34px;*/
  font-size: 2.42em;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
}
.hdr_contact_tel_txt3{
  /*font-size: 15px;*/
  font-size: 1.071em;
  font-weight: 500;
  margin-top: 4px;
}

/**/
.hdr_contact_btns{
  display: flex;
  flex-wrap: wrap;
  width: 205px;
  gap: 5px 0;
  margin-left: 20px;
  transition: 0.2s all;
}
.hdr_contact_btns + .hdr_contact_btns{
  margin-left: 10px;
}
.hdr_contact_btns_a{
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 10px 5px 10px;
}
.hdr_contact_btns_a:hover{
  opacity: 0.8;
}
.hdr_contact_btns_a p{
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr_contact_btns_a.btn1{
  /*background: #f6d601;*/
  background: #8fc21d;
  padding-top: 8px;
  padding-bottom: 8px;
  color: #FFF;
}
.hdr_contact_btns_a.btn1 p:before{
  content:"";
  width: 26px;
  aspect-ratio: 26 / 27;
  margin-right: 10px;
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/hdr_btn_icon1_wh.png?2');
  background-size: contain;
  background-repeat: no-repeat;
}
.hdr_contact_btns_a.btn1:hover{
  /*background-color: #f6d601;*/
  /*background-color: #72912e;*/
}
.hdr_contact_btns_a.btn1:hover p:before{
  /*background-image: url('https://memorial-hall.jp/system_panel/uploads/images/hdr_btn_icon1_wh.png');*/
}
.hdr_contact_btns_a.btn2{
  background: var(--main-color);
  color: #FFF;
}
.hdr_contact_btns_a.btn2 p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact_btns_a.btn2:hover{
  /*background: #3f5b8b;*/
  /*color: #FFF;*/
}


.hdr_contact_btns.membership{
  width: 90px;
}
.hdr_contact_btns_a.btn3{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  background: #42a5f3;
  color: #FFF;
}
.hdr_contact_btns_a.btn3 p{
  flex-wrap: wrap;
  justify-content: center;
}
.hdr_contact_btns_a.btn3 p em{
  width: 100%;
  font-style: normal;
}
.hdr_contact_btns_a.btn3 p:before{
  content: "";
  width: 1.3em;
  aspect-ratio: 1 / 1;
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/user-plus-solid.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.hdr_contact_btns_a.btn3:hover{
  /*background: #6a005f;
  background: #4f87b4;
  color: #FFF;*/
}

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
    padding: 10px 10px;
  }

  /* お問い合わせボタン */
  .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;
  }


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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 0 0 0 30px;
  }

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

  .hdr_contact a.tel {
    width: 220px;
  }
  .hdr_contact a.tel{
    font-size: 12px;
  }

  .hdr_contact_btns{
    width: 160px;
  }
  .hdr_contact_btns_a{
    font-size: 13px;
  }

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

  .header.slim .hdr_contact a.tel{
    font-size: 10px;
  }
  .header.slim .hdr_contact_btns_a{
    font-size: 11px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header.slim .hdr_contact_btns_a.btn1{
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .header.slim .hdr_contact_btns_a.btn1 p:before{
    width: 18px;
    /*padding-top: 6px;*/
    /*padding-bottom: 6px;*/
  }
  .header.slim .hdr_contact_btns.membership{
    width: 70px;
  }
  .header.slim .hdr_contact_btns_a.btn3{
    height: 70px;
  }

  /* TELボタン */
  .hdr_tel{

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



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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact a.tel{
    font-size: 12px;
  }
  .hdr_contact a.tel {
    width: 220px;
  }
  .hdr_contact_btns{
    width: 170px;
  }
  .hdr_contact_btns_a{
    font-size: 13px;
    padding: 8px 5px 8px;
  }

  .hdr_contact_btns_a.btn1{
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .hdr_contact_btns_a.btn3{
    height: 80px;
  }
}
@media (min-width:1470px){
  .header{
    --logo-height: 35px;
  }
}
@media (min-width:1720px){
  .header{
    --logo-height: 50px;
  }

  .hdr_contact a.tel{
    font-size: 14px;
  }
  .hdr_contact a.tel {
    width: 250px;
  }
  .hdr_contact_btns{
    width: 205px;
  }
  .hdr_contact_btns_a{
    font-size: 15px;
    padding: 10px 5px 10px;
  }

  .hdr_contact_btns_a.btn1{
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hdr_contact_btns_a.btn3{
    height: 90px;
  }

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.mv_img{
  margin-right: var(--margin-for-device-side-w);
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
  padding-top: 500px;
}

.mv_img_slider{

}
.mv_img_slider .mv_img{
  width: 1000px;
  margin: 0;
}

.mv_box1{
  width: 100%;
  padding-top: 0;
  margin-top: -285px;
  position: relative;
  z-index: 2;
  order: 2;
}
.mv_box2{
  width: calc(100% - 365px);
  width: calc(100% + 30px);
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  position: relative;
  z-index: 1;
  order: 1;
}
.mv_box3{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
  margin-top: -65px;
  position: relative;
  z-index: 3;
  order: 3;
}
.mv_box3_1{
  width: 100%;
}
.mv_box3_2{
  /*width: calc(100% - 745px);*/
  width: 100%;
  padding-bottom: 0;
}


/* MVキャッチ */
.mv_catch{
  padding-left: 20px;
  text-shadow    : 
    2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff; 
}
.mv_catch_box1{
  display: flex;
  justify-content: flex-start;
}
.mv_catch_box2{
  margin-top: 0;
  margin-left: 0;
}
.mv_catch_txt1{
  font-size: 30px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1.6;
  letter-spacing: 0.075em;
  /*-ms-writing-mode: tb-rl;*/
  /*writing-mode: vertical-rl;*/
  margin-left: 0;
}
.mv_catch_txt2{
  font-size: 14px;
  font-family: var(--font-mincho);
  line-height: 1.875;
  text-align: left;
  letter-spacing: 0;
}

.mv_catch2{

}
.mv_catch2_txt{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  margin-right: 0;
  margin-top: 10px;
  text-align: center;
}

/*  MVアイコン */
.mv_icons{
  display: flex;
  gap: 0 12px;
}
.mv_icons_item{

}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (max-width:767px){
  .mv_catch{
    /*text-shadow:
    0 0 2px #fff,0 0 2px #fff0 0 2px #fff,0 0 2px #fff0 0 2px #fff,0 0 2px #fff0 0 2px #fff,0 0 2px #fff0 0 2px #fff,0 0 2px #fff0 0 2px #fff,0 0 2px #fff0 0 2px #fff,0 0 2px #fff0 0 2px #fff,0 0 2px #fff0 0 2px #fff,0 0 2px #fff;
    */
    text-shadow:none;
    /*filter: drop-shadow(0 0 2px #FFF) drop-shadow(0 0 2px #FFF) drop-shadow(0 0 2px #FFF) drop-shadow(0 0 2px #FFF);*/

    text-shadow:
      0 0 2px #fff,
      0 0 4px #fff,
      0 0 6px #fff,
      0 0 2px #fff,
      0 0 4px #fff,
      0 0 6px #fff,
      0 0 2px #fff,
      0 0 4px #fff,
      0 0 6px #fff;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
    border-radius: 50px 0 0 50px;
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }


  .mv_box1{
    margin-top: -335px;
  }
  .mv_box2{
    width: 100%;
    margin: 0;
  }
  .mv_box3{
    padding: 0 55px;
  }

  .mv_catch_txt1{
    font-size: 40px;
  }
  .mv_catch_txt2{
    font-size: 16px;
  }

  .mv_catch2_txt{
    font-size: 26px;
  }



  /*  MVアイコン */
  .mv_icons{
    gap: 0 12px;
  }

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


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

  .mv_box1{
    width: 230px;
    padding-top: 55px;
    margin-top: 0;
    order: 1;
  }
  .mv_box2{
    width: calc(100% - 230px);
    margin: 0;
    order: 2;
  }
  .mv_box3{
    width: 100%;
    margin-top: -35px;
    padding: 0;
    order: 3;
  }
  .mv_box3_1{
    width: 500px;
  }
  .mv_box3_2{
    width: calc(100% - 500px - 30px);
    padding-bottom: 25px;
    margin-left: auto;
  }

  /* MVキャッチ */
  .mv_catch{
    padding-left: 0;
    text-shadow:none;
  }
  .mv_catch_box1{
    justify-content: center;
  }
  .mv_catch_box2{
    margin-top: -20px;
    margin-left: -5px;
  }
  .mv_catch_txt1{
    font-size: 36px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-left: -15px;
  }
  .mv_catch_txt2{
    font-size: 15px;
    line-height: 1.875;
    text-align: left;
  }

  .mv_catch2{

  }
  .mv_catch2_txt{
    font-size: 24px;
    margin-right: -25px;
    margin-top: 45px;
    text-align: left;
  }

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

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

  .mv_catch_txt2 {
    font-size: 13px;
  }
}
@media (min-width:1470px){

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

  .mv_box1{
    width: 365px;
    padding-top: 55px;
  }
  .mv_box2{
    width: calc(100% - 365px);
  }
  .mv_box3{
    width: 100%;
    margin-top: -98px;
  }
  .mv_box3_1{
    width: 745px;
  }
  .mv_box3_2{
    width: calc(100% - 745px);
    padding-bottom: 25px;
  }

  /* MVキャッチ */
  .mv_catch{
  }
  .mv_catch_box1{
  }
  .mv_catch_box2{
    margin-top: -20px;
    margin-left: -5px;
  }
  .mv_catch_txt1{
    font-size: 60px;
    margin-left: -15px;
  }
  .mv_catch_txt2{
    font-size: 15px;
    text-align: center;
  }

  .mv_catch2{

  }
  .mv_catch2_txt{
    font-size: 28px;
  }
}
@media (min-width:1720px){


  .mv_catch_txt2{
    font-size: 15px;
  }
  .mv_catch2_txt{
    font-size: 36px;
  }

}

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

/* サイドバー */
.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;
  margin-right: var(--margin-for-device-side-w);
  border-radius: 20px 0 0 20px;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}

.pg_header_title{
  background: #a79bca;
  color: #FFF;
  text-align: center;
  margin-top: 35px;
}
.pg_header_title_txt{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  padding-bottom: 4px;
  padding-bottom: 0.111em;;
}
.pg_header_title_txt em{
  font-size: 0.666em;
  font-style: normal;
}




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

  .pg_header_title{
    margin-top: 50px;
  }
  .pg_header_title_txt{
    font-size: 30px;

  }

}
@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: 120px;
  }
  .pg_header_mv_img{
    border-radius: 50px 0 0 50px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 500px;
  }

  .pg_header_title{
    margin-top: 82px;
  }
  .pg_header_title_txt{
    font-size: 36px;
  }

}



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


/* コンタクト */
.ftr_contact_illust{
  display: none;
  text-align: center;
}
.ftr_contact_illust img{
  height: 100px;
}
.gjs-dashed .ftr_contact_illust{
  display: block;
}


.ftr_contact_sec{
  background: #2b2640;
  margin-top: 100px;
  margin-top: 0;
}
.ftr_contact_sec_inner{
  display: flex;
  flex-wrap: wrap;
  color: #FFF;
}
.ftr_contact_sec_box1{
  width: 100%;
  padding-top: 50px;
  padding-bottom: 30px;
}
.ftr_contact_sec_box2{
  width: 100%;
}
.ftr_contact_sec_head{
  margin-bottom: 20px;
}
.ftr_contact_sec_head_en{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_sec_head_ja{
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  margin-top: 15px;
}
.ftr_contact_sec_txt{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.875;
}
.ftr_contact_sec_bg{
  height: 100%;
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
}
.ftr_contact_sec_bg.img_fit:before{
  padding-top: 0;
  height: 250px;
}

.ftr_contact_sec_btns{
  margin-top: 30px;
}
.ftr_contact_sec_btns_a{
  display: flex;
  align-items: center;
  width: 585px;
  max-width: 100%;
  height: 60px;
  padding-left: 15px;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  position: relative;
  z-index: 1;
}
.ftr_contact_sec_btns_a + .ftr_contact_sec_btns_a{
  margin-top: 15px;
}
.ftr_contact_sec_btns_a.email{
  background: #FFF;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  color: var(--txt-color);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.ftr_contact_sec_btns_a.email:hover{
  /*background: var(--sub-color);*/
  /*color: #FFF;*/
  background: var(--sub-color);;
  color: #FFF;
  /*color: var(--sub-color);*/
  border-color: var(--sub-color);;
}
.ftr_contact_sec_btns_a.email:before{
  content: "";
  width: 2px;
  height: 46px;
  background: currentColor;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 64px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.ftr_contact_sec_btns_a.email:after{
  content: "";
  width: 10px;
  aspect-ratio: 13 / 15;
  background: currentColor;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);

  position: absolute;
  z-index: 1;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.ftr_contact_sec_btns_a.tel{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  font-size: 13px;
  font-weight: 600;
  padding-right: 15px;
}
.ftr_contact_sec_btns_a.tel:hover{
  background: var(--sub-color);;
  border-color: #FFF;
  color: #fff;

  /*background: #00b7ee;*/
  /*color: #FFF;*/
  /*border-color: #00b7ee;*/
}
.ftr_contact_sec_btns_txt2{
  font-size: 1em;
}
.ftr_contact_sec_btns_txt3{
  font-size: 1.6em;
  letter-spacing: 0.075em;
}

/* フッター */
.footer{
  margin-top: 70px;
}
.pg_home + .footer{
}
.pg_home + .footer .ftr_contact_illust{
  display: block;
}


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



.ftr_copy{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
  /*background: var(--main-color);*/
  background: #FFF;
  /*color: #FFF;*/
  color: var(--txt-color);
  padding: 10px 0;
  margin-bottom: 0;
}
.ftr_copy a:hover{
  color: var(--txt-color);
  opacity: 0.8;
}

.gnav_item_en{
  color: var(--sub-color);
}

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

.footer_fix .footer_fix_item_1.tel{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px 7px;
  background: var(--sub-color);
  color: #FFF;
}
.footer_fix .footer_fix_item_1.tel .fa{
  width: 30px;
  font-size: 30px;
  margin-bottom: 0;
}
.footer_fix .footer_fix_item_1.tel img{
  width: 54px;
  margin-right: 10px;
}
.footer_fix .footer_fix_item_1.tel p{
  font-size: 11px;
  font-weight: 700;
}
.footer_fix .footer_fix_item_1.tel p strong{
  font-size: 28px;
  font-family: var(--font-mincho);
  font-weight: 500;
}

/* ftr1 */
.ftr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
.ftr1_box1{
  width: 270px;
}
.ftr1_box2{

}
.ftr1_box3{
  width: 265px;
}

/* ftr2 */
.ftr2{
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  margin-top: 30px;
}
.ftr2_box1{
  width: 365px;
}
.ftr2_box2{
  width: 680px;
}

/* おもてなし */
.ftr_msg{
  font-family: var(--font-mincho);
  text-align: center;
}
.ftr_msg_txt1{
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.075em;
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}
.ftr_msg_txt1:after{
  content: "";
  height: 1px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 7px;
  left: 0.20em;
  right: 12px;
  right: 0.35em;
}
.ftr_msg_txt2{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-top: 20px;
}

/* SNSアイコン */
.ftr_sns{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px 19px;
}
.ftr_sns_item{
  width: 54px;
}

/* 店舗情報 */
.ftr_name{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
}
.ftr_addr{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 2.125;
  margin-top: 20px;
}

/* リンク */
.ftr_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_links.left{
  gap: 10px 65px;
  justify-content: center;
  /*justify-content: flex-start;*/
}
.ftr_links + .ftr_links{
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--main-color);
}
.ftr_links_category{
  width: 100%;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 8px;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_links_item{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

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



@media (min-width:375px){

}
@media (min-width:414px){
  .footer_fix .footer_fix_item_1.tel .fa{
    width: 40px;
    font-size: 40px;
    margin-bottom: 0;
  }
  .footer_fix .footer_fix_item_1.tel p{
  }
}
@media (max-width:767px){

  body{
    padding-bottom: 56px;
  }

  .ftr1{
    flex-wrap: wrap;
  }
  .ftr1_box1{
    width: 100%;
    text-align: center;
  }
  .ftr1_box2{
    width: 100%;
    margin-top: 30px;
  }
  .ftr1_box3{
    width: 100%;
    margin-top: 20px;
  }
  .ftr2{
    display: flex
  }
  .ftr2_box1{
    width: 100%;
  }
  .ftr2_box2{
    display: none;
  }

  .ftr_logo img{
    width: 150px;
  }
  .ftr_msg_txt1{
    font-size: 20px;
    padding-bottom: 8px;
  }
  .ftr_msg_txt2{
    font-size: 14px;
    margin-top: 10px;
  }
  .ftr_sns{
    justify-content: center;
  }
  .ftr_sns_item{
    width: 36px;
  }

  .ftr_name{
    font-size: 16px;
    text-align: center;
    margin-bottom: 15px;
  }
  .ftr_addr{
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .footer_fix{
    display: flex;
  }

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

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }
}
@media (min-width:768px){



  /* コンタクト */
  .ftr_contact_illust{
  }
  .ftr_contact_illust img{
    height: 150px;
  }
  .ftr_contact_sec{
    /*margin-top: 100px;*/
  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    /*width: 61.50%;*/
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ftr_contact_sec_box2{
    /*width: 38.5%;*/
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 60px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 15px;
    /*line-height: 2.125;*/
  }
  .ftr_contact_sec_bg.img_fit:before{
    height: 500px;
  }


  .ftr_contact_sec_btns{
    margin-top: 30px;
  }
  .ftr_contact_sec_btns_a{
    width: 585px;
    height: 70px;
    padding-left: 25px;
    margin: 0 auto;
  }
  .ftr_contact_sec_btns_a + .ftr_contact_sec_btns_a{
    margin-top: 20px;
  }
  .ftr_contact_sec_btns_a.email{
    font-size: 20px;
  }
  .ftr_contact_sec_btns_a.email:before{
    height: 46px;
    right: 74px;
  }
  .ftr_contact_sec_btns_a.email:after{
    width: 13px;
    right: 30px;
  }
  .ftr_contact_sec_btns_a.tel{
    font-size: 18px;
    padding-right: 15px;
  }


  /* フッター */
  .footer{
    margin-top: 70px;
  }


  /* ftr1 */
  .ftr1{
    flex-wrap: wrap;
    margin-top: 100px;
  }
  .ftr1_box1{
    width: 200px;
  }
  .ftr1_box2{
    /*width: 200px;*/
  }
  .ftr1_box3{
    width: 80px;
  }

  /* ftr2 */
  .ftr2{
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 70px;
  }
  .ftr2_box1{
    width: 100%;
    text-align: center;
  }
  .ftr2_box2{
    width: 100%;
    margin-top: 50px;
  }

  /* おもてなし */
  .ftr_msg{
  }
  .ftr_msg_txt1{
    font-size: 22px;
    padding-bottom: 8px;
  }
  .ftr_msg_txt1:after{
    left: 0.20em;
    right: 0.35em;
  }
  .ftr_msg_txt2{
    font-size: 16px;
    margin-top: 10px;
  }

  /* SNSアイコン */
  .ftr_sns{
    gap: 5px 10px;
  }
  .ftr_sns_item{
    width: 36px;
  }

  /* 店舗情報 */
  .ftr_name{
    font-size: 20px;
  }
  .ftr_addr{
    font-size: 16px;
    line-height: 2.125;
    margin-top: 20px;
  }

  /* リンク */
  .ftr_links{
  }
  .ftr_links.left{
    /*justify-content: flex-start;*/
    gap: 10px 40px;
  }
  .ftr_links + .ftr_links{
    margin-top: 30px;
  }
  .ftr_links_category{
    padding-bottom: 8px;
    margin-bottom: 5px;
    font-size: 17px;
  }
  .ftr_links_item{
    font-size: 17px;
  }


  .ftr_copy{
    margin-top: 70px;
  }

  .pagetop{
    bottom: 60px;
  }
  .body_home .pagetop{
    bottom: 135px;
  }

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


  .ftr2_box1{
    width: 100%;
    width: 38%;
    text-align: left;
  }
  .ftr2_box2{
    width: 60%;
    margin-top: 50px;
  }
  .ftr_links.left{
    justify-content: flex-start;
    gap: 10px 15px;
  }


  /* コンタクト */
  .ftr_contact_sec{

  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    width: 61.50%;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-right: 30px;
  }
  .ftr_contact_sec_box2{
    width: 38.5%;
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 70px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 16px;
    line-height: 2.125;
  }
  .ftr_contact_sec_bg{
    margin-left: 0;
    margin-right: var(--margin-for-device-side-w);
  }

  .ftr_contact_sec_btns{
    margin-top: 30px;
  }
  .ftr_contact_sec_btns_a{
    width: 500px;
    height: 70px;
    padding-left: 25px;
    margin: 0;
  }

  /* フッター */
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_sec_bg.img_fit:before{
    height: 350px;
  }
}
@media (min-width:1200px){

  /* フッター */
  .footer{
    margin-top: 100px;
  }

  /* ftr1 */
  .ftr1{
    align-items: center;
    justify-content: space-between;
    margin-top: 150px;
  }
  .ftr1_box1{
    width: 270px;
  }
  .ftr1_box2{

  }
  .ftr1_box3{
    width: 265px;
  }

  /* ftr2 */
  .ftr2{
    justify-content: space-between;
    margin-top: 105px;
  }
  .ftr2_box1{
    width: 365px;
  }
  .ftr2_box2{
    width: 680px;
    margin-top: 0;
  }

  /* おもてなし */
  .ftr_msg{
  }
  .ftr_msg_txt1{
    font-size: 34px;
    padding-bottom: 16px;
  }
  .ftr_msg_txt1:after{
    left: 0.20em;
    right: 0.35em;
  }
  .ftr_msg_txt2{
    font-size: 16px;
    margin-top: 20px;
  }

  /* SNSアイコン */
  .ftr_sns{
    gap: 5px 19px;
  }
  .ftr_sns_item{
    width: 54px;
  }

  /* 店舗情報 */
  .ftr_name{
    font-size: 20px;
  }
  .ftr_addr{
    font-size: 18px;
    line-height: 2.125;
    margin-top: 20px;
  }

  /* リンク */
  .ftr_links{
  }
  .ftr_links.left{
    justify-content: flex-start;
    gap: 10px 65px;
  }
  .ftr_links + .ftr_links{
    margin-top: 30px;
  }
  .ftr_links_category{
    padding-bottom: 8px;
    margin-bottom: 5px;
    font-size: 17px;
  }
  .ftr_links_item{
    font-size: 17px;
  }

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

  /* コンタクト */
  .ftr_contact_illust{
  }
  .ftr_contact_illust img{
    height: 235px;
  }
  .ftr_contact_sec{
    /*margin-top: 145px;*/
  }
  .ftr_contact_sec_inner{
  }
  .ftr_contact_sec_box1{
    width: 61.50%;
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .ftr_contact_sec_box2{
    width: 38.5%;
  }
  .ftr_contact_sec_head{
    margin-bottom: 38px;
  }
  .ftr_contact_sec_head_en{
    font-size: 90px;
  }
  .ftr_contact_sec_head_ja{
    font-size: 16px;
    margin-top: 15px;
  }
  .ftr_contact_sec_txt{
    font-size: 16px;
  }
  .ftr_contact_sec_btns{
    margin-top: 85px;
  }
  .ftr_contact_sec_btns_a{
    width: 585px;
    /*height: 70px;*/
  }
  .ftr_contact_sec_btns_a.email{
    font-size: 24px;
  }
  .ftr_contact_sec_btns_a.email:before{
    /*height: 46px;*/
    /*right: 74px;*/
  }
  .ftr_contact_sec_btns_a.email:after{
  }
  .ftr_contact_sec_btns_a.tel{
    font-size: 20px;
  }

  .ftr_links.left{
    justify-content: flex-start;
    gap: 10px 65px;
  }

  /* フッター */
  .footer{
    margin-top: 200px;
  }

  .ftr_copy{
    margin-top: 120px;
  }
}
@media (min-width: 1720px){
  .ftr_contact_sec {
    /*margin-top: 200px;*/
  }
}



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


/* テーブル用 */
.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 #888888;
  vertical-align: middle;
  padding: 10px 15px;
  font-weight: 500;
  letter-spacing: 0;

}
.table_rows_th{
  background-color: #e6eaee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #FFF;;
  vertical-align: middle;
  border-left: 0;
  letter-spacing: 0.075em;
}
.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;
  gap: 15px 15px;
  margin-top: 20px;
  margin-top: 30px;
}

.read_more a{
  /*display: inline-block;*/
  min-width: 200px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  border-bottom: 1px solid var(--main-color);
  text-align: center;
  padding: 0 15px;
  padding-bottom: 3px;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
}
.read_more a:before {
  content: "";
  width: 15px;
  aspect-ratio: 15 / 9;
  background: var(--main-color);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.read_more a:hover{
  transform: scale(1.02);
  color: var(--main-color);
}

.read_more2{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 15px;
  margin-top: 30px;
}
.read_more2 a{
  border-radius: 5px;
  background: var(--main-color);
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  width: 280px;
  max-width: 100%;
  padding: 11px 10px 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.read_more2 a p{
  display: flex;
  align-items: center;
  justify-content: center;
}
.read_more2 a p:after{
  content: "";
  width: 20px;
  aspect-ratio: 1 / 1;
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/right-long-solid.svg');
  background-size: contain;
  background-repeat: no-repeat;
  /*position: absolute;
  z-index: 1;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
  margin-left: 15px;
}

.read_more2 a.external p:after{
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/square-arrow-up-right-solid.svg');
}
.read_more2 a.pdf{

}
.read_more2 a.pdf p:after{
  aspect-ratio: 289 / 348;
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/pdf_icon1.svg');
}
.read_more2 a:hover{
  background-color: var(--sub-color);
  color: #FFF;
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 20px;
}
.tt2_en{
  font-size: 20px;
  font-size: 24px;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  color: var(--sub-color);
}
.tt2_ja{
  font-size: 20px;
  font-size: 24px;
  font-size: 30px;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  line-height: 1.535;
  color: #808992;
  margin-top: 5px;
}
.tt2_ja.small{
  font-size: 18px;
  margin-top: 15px;
}
.tt2_ja.large{
  font-size: 24px;
  font-size: 26px;
  font-size: 30px;
  margin-top: 10px;
}
.tt2_ja em{
  font-size: 0.5em;
  font-style: normal;
}
.tt2_ja em{
  font-size: 0.5em;
  font-style: normal;
}
.tt2_ja u{
  display: inline-block;
  font-size: 1em;
  font-style: normal;
  text-decoration: none;
}
.tt2_sub{
  font-size: 16px;
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
  margin-top: 30px;
}

.tt2.left{
  text-align: left;
}

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

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

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

/* セクション見出し */
.sec_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.sec_head_box1{
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.sec_head_box1:after{
  display: none;
  content: "";
  width: 1px;
  background: var(--main-color);
  position: absolute;
  z-index: 1;
  top: 12px;
  bottom: 0;
  right: 0;
}
.sec_head_box2{
  width: 100%;
  padding-left: 0;
}
.sec_head_ttl{
  font-size: 20px;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  color: #808992;
  text-align: center;
}
.sec_head_ttl_txt1{
  font-weight: 400;
  line-height: 1.3;
}
.sec_head_ttl_txt2{
  font-size: 1.526em;
  font-weight: 400;
  line-height: 1.3;
}
.sec_head_txt{
  font-weight: 500;
}

.sec_head_icons{
  display: flex;
  justify-content: center;
  gap: 0 8px;
}
* + .sec_head_icons{
  margin-top: 20px;
}
.sec_head_icons_item{

}


@media (max-width:374px){

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

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

  .tt2_ja{
    letter-spacing: 0;
  }
  
  /* スマホ用テーブル */
  .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;
  }

  body{
    font-size: 14px;
  }
  .cmn_txt{
    font-size: 14px;
  }

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

  .anchor{
    top: -170px;
  }

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

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 24px;
  }
  .tt2_ja{
    font-size: 36px;
  }
  .tt2_ja.small{
    font-size: 28px;
    margin-top: 32px;
  }
  .tt2_ja.large{
    font-size: 40px;
    font-size: 35px;
  }
  .tt2_sub{
    text-align: center;
  }

  /* セクション見出し */
  .sec_head{
    margin-bottom: 105px;
  }
  .sec_head_box1{
    /*width: 658px;*/
    /*padding-right: 88px;*/
    /*margin-bottom: 0;*/
  }
  .sec_head_box1:after{
    /*display: block;
    width: 1px;
    top: 12px;
    bottom: 0;
    right: 0;*/
  }
  .sec_head_box2{
    /*width: calc(100% - 658px);*/
    /*padding-left: 88px;*/
  }
  .sec_head_ttl{
    font-size: 30px;
  }
  .sec_head_ttl_txt1{
  }
  .sec_head_ttl_txt2{
    font-size: 1.526em;
  }

  .sec_head_icons{
    gap: 0 8px;
  }
  * + .sec_head_icons{
    margin-top: 40px;
  }
  .sec_head_icons_item{

  }


  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }

  .read_more2{
    margin-top: 50px;
  }
  .read_more2 a{
    font-size: 18px;
    width: 350px;
  }

  .table_rows_th{
    width: 200px;
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 2;
  }
  .table_rows_td{

  }


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

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



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

  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }

  .table_rows_th{
    width: 285px;
  }

  /* セクション見出し */
  .sec_head{
    margin-bottom: 105px;
  }
  .sec_head_box1{
    width: 420px;
    padding-right: 40px;
    margin-bottom: 0;
  }
  .sec_head_box1:after{
    display: block;
    width: 1px;
    top: 12px;
    bottom: 0;
    right: 0;
  }
  .sec_head_box2{
    width: calc(100% - 420px);
    padding-left: 40px;
  }
  .sec_head_ttl{
    font-size: 32px;
    text-align: left;
  }
  .sec_head_icons{
    justify-content: flex-start;
  }
  * + .sec_head_icons{
    margin-top: 40px;
  }
}

@media (min-width:1366px){

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

  /* セクション見出し */
  .sec_head{
    margin-bottom: 105px;
  }
  .sec_head_box1{
    width: 600px;
    padding-right: 88px;
    margin-bottom: 0;
  }
  .sec_head_box1:after{
    top: 12px;
  }
  .sec_head_box2{
    width: calc(100% - 600px);
    padding-left: 88px;
  }
  .sec_head_ttl{
    font-size: 34px;
  }

  .read_more2{
    margin-top: 80px;
  }

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

  /* 見出し */
  .tt2{
    margin-bottom: 58px;
  }
  .tt2.mb40{
    margin-bottom: 40px;
  }
  .tt2_en{
    font-size: 32px;
  }
  .tt2_en.small{
    font-size: 28px;
  }
  .tt2_ja{
    font-size: 48px;
  }
  .tt2_ja.small{
    font-size: 34px;
  }
  .tt2_ja.large{
    font-size: 52px;
  }

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

  .sec_head_ttl{
    font-size: 38px;
  }

  .tt2.mb140{
    margin-bottom: 70px;
  }
  .tt2_ja.large{
    font-size: 56px;
  }
}

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


/* コンテンツ */
.cmn_contents{

}
.cmn_contents_row{
  background: #FFF;
  border: 1px solid #2b2640;
  border-radius: 10px;
  margin-left: 0;
  padding: 20px 20px;
  min-height: 360px;
  position: relative;
  z-index: 1;
}
.cmn_contents_row + .cmn_contents_row{
  margin-top: 20px;
}
.cmn_contents_box1{
  width: 100%;
}
.cmn_contents_box2{
  width: 100%;
  margin-top: 15px;
}
.cmn_contents_img{
  border-radius: 10px;
}
.cmn_contents_img.img_fit:before{
  padding-top: 78.261%;
}
.cmn_contents_head{
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
  border-bottom: 2px solid;
  margin-bottom: 20px;
}
.cmn_contents_head_num{
  width: 70px;
  font-size: 45px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1;
  color: var(--sub-color);
}
.cmn_contents_head_ttl{
  width: calc(100% - 70px);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: -2px;
}
.cmn_contents_head_ttl em{
  font-style: normal;
}
.cmn_contents_txt{
  font-weight: 600;
}

/*.cmn_contents.each{
  
}
.cmn_contents.each .cmn_contents_row{
  width: 920px; 
}
.cmn_contents.each .cmn_contents_row:nth-child(even){
  margin-left: auto;
}*/

.cmn_contents_head_ttl em{
  display: inline-block;
}

@media (max-width:767px){

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



  /* コンテンツ */
  .cmn_contents{
    --cmn-contents-row-ml: 100px;
  }
  .cmn_contents_row{
    margin-left: var(--cmn-contents-row-ml);
    padding: 25px 30px 20px 210px;
    min-height: 280px;
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 50px;
  }
  .cmn_contents_box1{
    width: 280px;
    top: -15px;
    /*left: -100px;*/
    left: calc(var(--cmn-contents-row-ml) * -1);
    position: absolute;
    z-index: 1;
  }
  .cmn_contents_box2{
    margin-top: 0;
  }
  .cmn_contents_head{
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .cmn_contents_head_num{
    width: 70px;
    font-size: 50px;
  }
  .cmn_contents_head_ttl{
    width: calc(100% - 70px);
    font-size: 22px;
    margin-bottom: -2px;
  }
  .cmn_contents_txt{
  }

  .cmn_contents.each{

  }
  .cmn_contents.each .cmn_contents_row{
    width: calc(100% - var(--cmn-contents-row-ml)); 
  }
  .cmn_contents.each .cmn_contents_row:nth-child(even){
    /*margin-left: auto;*/
  }

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




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

  /* コンテンツ */
  .cmn_contents{
    --cmn-contents-row-ml: 150px;
  }
  .cmn_contents_row{
    /*margin-left: 150px;*/
    padding: 25px 65px 20px 250px;
    min-height: 320px;
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 50px;
  }
  .cmn_contents_box1{
    width: 350px;
    top: -15px;
    /*left: -150px;*/
  }
  .cmn_contents_box2{
  }
  .cmn_contents_head{
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .cmn_contents_head_num{
    width: 70px;
    font-size: 50px;
  }
  .cmn_contents_head_ttl{
    width: calc(100% - 70px);
    font-size: 24px;
  }
  .cmn_contents_txt{
  }

  .cmn_contents.each{

  }
  .cmn_contents.each .cmn_contents_row{
    width: 850px; 
  }
  .cmn_contents.each .cmn_contents_row:nth-child(even){
    margin-left: auto;
  }

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

  /* コンテンツ */
  .cmn_contents{
    --cmn-contents-row-ml: 205px;
  }
  .cmn_contents_row{
    /*margin-left: 205px;*/
    padding: 25px 65px 20px 350px;
    min-height: 360px;
  }
  .cmn_contents_row + .cmn_contents_row{
    margin-top: 50px;
  }
  .cmn_contents_box1{
    width: 460px;
    top: -15px;
    /*left: -205px;*/
  }
  .cmn_contents.each .cmn_contents_row{
    width: 920px; 
  }

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



}



/*******************************
*　HOME
********************************/
.pg_home{
  padding-top: 50px;
}
.pg_home .section.sec1{

}
.pg_home .section.sec1 .infiniteslide_wrap{
  margin-top: -8px;
}
.pg_home .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec4{
  padding-top: 50px;
}
.pg_home .section.sec5{
  padding-top: 0;
  padding-bottom: 50px;
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/body_bg2.jpg');
  background-size: 100% auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.pg_home .section.sec6{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec7{
  padding-top: 50px;
}
.pg_home .section.sec8{
  padding-top: 0;
}
.pg_home .section.sec9{
  padding-top: 0;
}

@media (max-width:767px){

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

  .pg_home{
    padding-top: 100px;
  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec1 .infiniteslide_wrap{
    margin-top: 40px;
  }
  .pg_home .section.sec2{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_home .section.sec3{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_home .section.sec4{
    padding-top: 75px;
  }
  .pg_home .section.sec5{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_home .section.sec6{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_home .section.sec7{
    padding-top: 75px;
  }
  .pg_home .section.sec8{
    padding-top: 75px;
  }
  .pg_home .section.sec9{
    padding-top: 75px;
  }

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

  .pg_home .news_list_thumb + .read_more,
  .pg_home .news_list2 + .read_more,
  .pg_home .insta_list + .read_more{
    margin-top: 75px;
  }

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

  .pg_home{
    padding-top: 200px;
  }
  .pg_home .section.sec1{

  }
  .pg_home .section.sec1 .infiniteslide_wrap{
    margin-top: 60px;
  }
  .pg_home .section.sec2{
    padding-top: 160px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 80px;
  }
  .pg_home .section.sec5{
    padding-top: 180px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec7{
    padding-top: 150px;
  }
  .pg_home .section.sec8{
    padding-top: 95px;
  }
  .pg_home .section.sec9{
    padding-top: 125px;
  }

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


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


}


/* 想い */
.home_thought{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_thought_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_thought_box2{
  width: 100%;
  order: 1;
}
.home_thought_imgs{
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}
.home_thought_imgs_item1{
  width: 72.05%;
  border-radius: 20px;
}
.home_thought_imgs_item1.img_fit:before{
  /*padding-top: 126.531%;*/
  padding-top: 82.85%;
}
.home_thought_imgs_item2{
  width: 32.35%;
  border-radius: 20px;
  margin-top: -160px;
  /*margin-top: -23.52%;*/
  margin-top: -29.41%;
  margin-left: auto;
  z-index: 2;
}
.home_thought_imgs_item2.img_fit:before{
  padding-top: 116.364%;
}
.home_thought_imgs:after{
  content: "";

  width: 64.70%;
  aspect-ratio: 44 / 37;
  background: #f0eef6;
  border-radius: 20px;
  position: absolute;
  z-index: 0;
  left: 16.17%;
  bottom: 0;
}
.home_thought_txt{
  font-weight: 500;
}


/* ギャラリー */
.home_gallery_slider{
  position: relative;
  z-index: 1;
}
.home_gallery{
  display: flex !important;
  align-items: flex-start;
  width: 1024px;
  position: relative;
  z-index: 1;
  padding-left: 17px;
}
.gjs-dashed .home_gallery{
  margin-top: 30px;
}
.home_gallery_img{
  border-radius: 20px;
}
.home_gallery_img.img_fit.pos1{
  width: 16.666%;
}
.home_gallery_img.img_fit.pos1:before{
  padding-top: 159.375%;
}
.home_gallery_img.img_fit.pos2{
  width: 16.145%;
  z-index: 2;
  transform: translate(0%, 46.8%);
  left: 2.916%;
}
.home_gallery_img.img_fit.pos2:before{
  padding-top: 80.645%;
}
.home_gallery_img.img_fit.pos3{
  width: 18.229%;
  transform: translate(0%, 85.45%);
  left: -2%;
}
.home_gallery_img.img_fit.pos3:before{
  padding-top: 78.571%;
}
.home_gallery_img.img_fit.pos4{
  width: 19.791%;
  transform: translate(0%, 0%);
  left: -0.44%;
}
.home_gallery_img.img_fit.pos4:before{
  padding-top: 74.737%;
}
.home_gallery_img.img_fit.pos5{
  width: 12.239%;
  transform: translate(0%, 95.74%);
  left: -3.95%;
}
.home_gallery_img.img_fit.pos5:before{
  padding-top: 100%;
}
.home_gallery_img.img_fit.pos6{
  width: 15.520%;
  transform: translate(0%, 13.33%);
  /*transform: translate(0%, 0%);*/
  /*bottom: 0;*/
  left: -0.667%;
}
.home_gallery_img.img_fit.pos6:before{
  padding-top: 151.007%;
}

/* 斎場の案内 */
.home_halls{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.home_halls_item{
  width: 100%;
  background: var(--sub4-color);
  border-radius: 10px;
  overflow: hidden;
}
.home_halls_item_img{
  display: block; 
}
.home_halls_item_img.img_fit:before{
  padding-top: 62.500%;
}
.home_halls_item_img img{
  display: block;
  transition: 0.2s all;
}
.home_halls_item_img:hover img{
  transform: scale(1.02);
}
.home_halls_item_inner{
  padding: 20px 25px 20px;
}
.home_halls_item_desc{

}
.home_halls_item_desc_name{
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.home_halls_item_desc_txt{
  font-size: 14px;
  font-weight: 500;
}
.home_halls_item_desc_txt + .home_halls_item_desc_txt{
  margin-top: 5px;
}
.home_halls_item_tags{
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin-top: 20px;
}
.home_halls_item_tags p{
  min-width: 100px;
  background: var(--sub-color);
  color: #FFF;
  border-radius: 5px;
  font-size: 15px;
  text-align: center;
  padding: 3px 5px 4px;
}
.home_halls_item_tags p.color1{
  background: var(--sub-color);
}
.home_halls_item_tags p.color2{
  background: var(--main-color);
}
.home_halls_item_btn{
  padding: 0px 15px 15px;
}
.home_halls_item_btn_a{
  display: block;
  background: #eceaf5;
  color: #181818;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-mincho);
  text-align: center;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  padding: 7px 10px;
}

.home_halls_item_img:hover + * + * .home_halls_item_btn_a,
.home_halls_item_btn_a:hover{
  background: #541a27;
  color: #FFF;
}

/* ご葬儀プラン */
.home_plans{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 27px;
}
.home_plans_item{
  width: 100%;
  border: 1px solid var(--main-color);
  padding: 35px 20px 20px;
  background: #FFF;
}
.home_plans_item_head{
  font-family: var(--font-mincho);
  text-align: center;
  margin-bottom: 15px;
}
.home_plans_item_head_txt1{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: -10px;
  margin-right: -10px;
}
.home_plans_item_head_txt2{
  font-size: 26px;
  letter-spacing: 0;
  margin-top: 5px;
}
.home_plans_item_head_txt2 em{
  font-size: 0.588em;
  font-style: normal;
}
.home_plans_item_head_txt3{
  display: inline-block;
  width: 210px;
  max-width: 100%;
  background: var(--sub2-color);;
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 13px;
  margin-top: 8px;
}
.home_plans_item_head_txt4{
  background: #f8f6f2;
  background: var(--main-color);
  color: #FFF;
  border-radius: 13px;
  border: 1px solid var(--main-color);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 0;
  padding: 3px 5px 5px;
  margin-bottom: 15px;
}
* + .home_plans_item_head_txt4{
  margin-top: 15px;
}

.home_plans_item_txt{
  font-size: 14px;
  font-weight: 600;
  line-height: 1.625;
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 8px;
}
.home_plans_item_price{

}
.home_plans_item_price.bdr{
  margin-top: 15px;
  padding-top: 10px;
  border-top: 2px solid var(--main-color);
}
.home_plans_item_price_dl{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 15px 0;
}
.home_plans_item_price_dl + .home_plans_item_price_dl{
  border-top: 1px dotted;
}
.home_plans_item_price_dt{
  width: 80px;
  padding: 3px 3px 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-mincho);
  text-align: center;
  border-radius: 5px;
  color: #FFF;
}
.home_plans_item_price_dt.color1{
  background: var(--sub-color);
}
.home_plans_item_price_dt.color2{
  background: #2b2640;
  margin-top: 0;
}
.home_plans_item_price_dd{
  width: calc(100% - 80px - 10px);
  font-size: 26px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: 0.075em;
  text-align: right;
  margin-bottom: 3px;
}
.home_plans_item_price_dd_txt{

}
.home_plans_item_price_dd_txt + .home_plans_item_price_dd_txt{
  margin-top: 10px;
}
.home_plans_item_price_dd_txt.notax{
  /*font-size: 28px;*/
  font-size: 26px;
}
.home_plans_item_price_dd_txt.intax{
  font-size: 20px;
}
.home_plans_item_price_dd_txt.notax:not(.color2){
  font-size: 16px;
  margin-top: 6px;
}
.home_plans_item_price_dd_txt.color2{
  color: var(--sub-color);
}

.home_plans_item_price_dd em{
  font-size: 0.4411em;
  font-size: 15px;
  font-weight: 600;
  font-style: normal;
}
.home_plans_item_img{
  border-radius: 10px;
}
.home_plans_item_img.img_fit:before{
  padding-top: 56.962%;
}
.home_plans_item_btn{

}
.home_plans_item_btn_a{
  display: block;
  background: #eceaf5;
  border: 1px solid#c9c9c9;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
  text-align: center;
  padding: 12px 10px 12px;
}
.home_plans_item_btn_a:hover{
  background: var(--sub-color);
  color: #FFF;
}

/* 葬儀関連サービス */
.home_service{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
.home_service_item{
  width: 100%;
}
.home_service_item_img{
  border-radius: 10px;
}
.home_service_item_img.img_fit:before{
  padding-top: 71.111%;
}
.home_service_item_desc{
  margin-top: 10px;
}
.home_service_item_desc_ttl{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.home_service_item_desc_txt{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}
.home_service_item .read_more{
  margin-top: 20px;
}
/*
.home_service_item_btn{
  text-align: right;
  margin-top: 20px;
}
.home_service_item_btn_a{
  display: inline-block;
  width: 200px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  border-bottom: 1px solid var(--main-color);
  text-align: center;
  padding-bottom: 3px;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
}
.home_service_item_btn_a:before{
  content: "";
  width: 15px;
  aspect-ratio: 15 / 9;
  background: var(--main-color);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}*/

/* 動画 */
.home_videos{
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px
}
* + .home_videos{
  margin-top: 50px;
}
.home_videos_item{
  width: 100%;
}
.home_videos_item iframe{
  border: 0;
}
.home_videos{

}

/* 採用情報 */
.home_recruit{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_recruit_box1{
  width: 100%;
  order: 1;
}
.home_recruit_box2{
  width: 100%;
  order: 2;
}
.home_recruit_imgs{
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}
.home_recruit_imgs_item1,
.home_recruit_imgs_item2,
.home_recruit_imgs_item3{
  border-radius: 10px;
}
.home_recruit_imgs_item1{
  width: 28.02%;
  margin-left: 19.75%;
  z-index: 2;
}
.home_recruit_imgs_item1.img_fit:before{
  padding-top: 86.344%;
}
.home_recruit_imgs_item2{
  width: 60.46%;
  z-index: 1;
  margin-top: -9.87%;
  margin-left: auto;
}
.home_recruit_imgs_item2.img_fit:before{
  padding-top: 83.061%;
}
.home_recruit_imgs_item3{
  width: 43.20%;
  margin-top: -115px;
  margin-top: -14.19%;
  z-index: 2;
}
.home_recruit_imgs_item3.img_fit:before{
  padding-top: 72%;
}
.home_recruit .read_more{
  margin-top: 30px;
}

/* バナー */
.home_banner{
  text-align: center;
}
* + .home_banner{
  margin-top: 85px;
}
.home_banner_item{
  display: inline-block;
  transition: 0.2s all;
}
.home_banner_item:hover{
  transform: scale(1.02);
}

@media (max-width:374px){

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

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

  .home_plans_item_head_txt3{
    padding-bottom: 1px;
  }

  .home_recruit_box2{
    margin-top: 40px;
  }
  .home_recruit_imgs{
    padding-bottom: 0;
  }
}
@media (min-width:414px){
  .home_plans_item_head_txt4{
    font-size: 14px;
  }
}
@media (min-width:768px){

  /* 想い */
  .home_thought{
  }
  .home_thought_box1{
  }
  .home_thought_box2{
  }
  .home_thought_imgs{
    padding-bottom: 70px;
  }
  .home_thought_imgs_item1{
    border-radius: 20px;
  }
  .home_thought_imgs_item2{
    border-radius: 20px;
  }

  /* ギャラリー */
  .home_gallery{
    width: 1024px;
    padding-left: 17px;
  }
  .home_gallery_img{
    border-radius: 20px;
  }

  /* 斎場の案内 */
  .home_halls{
    gap: 15px 15px;
  }
  .home_halls_item{
    width: calc(33.333% - 10px);
    border-radius: 10px;
  }
  .home_halls_item_inner{
    padding: 20px 10px 20px;
  }
  .home_halls_item_desc{

  }
  .home_halls_item_desc_name{
    font-size: 18px;
    /*margin-bottom: 20px;*/
  }
  .home_halls_item_desc_txt{
    font-size: 15px;
  }
  .home_halls_item_desc_txt + .home_halls_item_desc_txt{
    margin-top: 5px;
  }
  .home_halls_item_tags{
    gap: 5px 5px;
    margin-top: 20px;
  }
  .home_halls_item_tags p{
    min-width: 90px;
    font-size: 14px;
    /*padding: 3px 5px;*/
  }
  .home_halls_item_btn_a{
    /*font-size: 16px;*/
    /*padding: 7px 10px;*/
  }

  .home_halls_item{
    display: flex;
    flex-wrap: wrap;
  }
  .home_halls_item > *{
    width: 100%;
  }
  .home_halls_item_btn{
    align-self: flex-end;
  }

  /* ご葬儀プラン */
  .home_plans{
    gap: 15px 20px;
  }
  .home_plans_item{
    width: calc(50% - 10px);
    padding: 35px 20px 20px;
  }
  .home_plans_item_head{
    margin-bottom: 15px;
  }
  .home_plans_item_head_txt1{
    font-size: 14px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .home_plans_item_head_txt2{
    font-size: 26px;
  }
  .home_plans_item_head_txt2 em{
    font-size: 0.588em;
  }
  .home_plans_item_head_txt3{
    width: 210px;
    font-size: 16px;
    border-radius: 13px;
    margin-top: 8px;
  }
  .home_plans_item_head_txt4{
    font-size: 16px;
    padding: 1px 5px 3px;
  }
  .home_plans_item_txt{
    font-size: 15px;
  }
  .home_plans_item_price{

  }
  .home_plans_item_price.bdr{
    margin-top: 20px;
    padding-top: 10px;
  }
  .home_plans_item_price_dl{
    padding: 15px 0;
  }
  .home_plans_item_price_dt{
    width: 80px;
    padding: 3px 3px 4px;
    margin-top: 3px;
    font-size: 15px;
  }
  .home_plans_item_price_dd{
    width: calc(100% - 80px - 10px);
    font-size: 26px;
    margin-bottom: 3px;
  }
  .home_plans_item_price_dd em{
    /*font-size: 0.4411em;*/
  }
  .home_plans_item_price_dd_txt.notax{
    /*font-size: 34px;*/
  }
  .home_plans_item_price_dd_txt.intax{
    /*font-size: 24px;*/
  }
  .home_plans_item_btn_a{
    font-size: 16px;
    padding: 12px 10px 12px;
  }

  /* 葬儀関連サービス */
  .home_service{
    gap: 30px 15px;
  }
  .home_service_item{
    width: calc(33.333% - 10px);
  }
  .home_service_item_desc_ttl{
    font-size: 20px;
    padding-bottom: 5px;
    margin-bottom: 16px;
  }
  .home_service_item_desc_txt{
    font-size: 16px;
    line-height: 1.875;
  }
  /*.home_service_item_btn{
    text-align: right;
    margin-top: 20px;
  }
  .home_service_item_btn_a{
    width: 200px;
    font-size: 15px;
    padding-bottom: 3px;
  }
  .home_service_item_btn_a:before{
    width: 15px;
  }*/

  /* 動画 */
  .home_videos{
    gap: 15px 30px
  }
  * + .home_videos{
    margin-top: 100px;
  }
  .home_videos_item{
    width: calc(50% - 15px);
  }

  /* 採用情報 */
  .home_recruit{
  }
  .home_recruit_box1{
    /*width: 43.42%;*/
  }
  .home_recruit_box2{
    /*width: 53.28%;*/
  }
  .home_recruit_imgs{
    padding-bottom: 70px;
  }
  .home_recruit_imgs_item1,
  .home_recruit_imgs_item2,
  .home_recruit_imgs_item3{
    border-radius: 20px;
  }
  .home_recruit .read_more{
    margin-top: 65px;
  }

  /* バナー */
  .home_banner{
  }
  * + .home_banner{
    margin-top: 85px;
  }

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

  /* 想い */
  .home_thought{
  }
  .home_thought_box1{
    width: 44.73%;
    order: 1;
    margin-top: 0;
  }
  .home_thought_box2{
    width: 49.01%;
    order: 2;
    padding-bottom: 50px;
  }
  .home_thought_imgs{
    padding-bottom: 70px;
  }
  .home_thought_imgs_item1{
    border-radius: 20px;
  }
  .home_thought_imgs_item2{
    border-radius: 20px;
  }

  .home_thought.rvs{

  }
  .home_thought.rvs .home_thought_box1{
    order: 2;
  }
  .home_thought.rvs .home_thought_box2{
    order: 1;
  }

  .home_thought_box2_larger{
    margin-left: -50px;
  }

  /* ギャラリー */
  .home_gallery{
    width: 1200px;
    padding-left: 17px;
  }
  .home_gallery_img{
    border-radius: 20px;
  }

  /* 斎場の案内 */
  .home_halls{
    gap: 15px 20px;
  }
  .home_halls_item{
    width: calc(33.333% - 13.333px);
  }
  .home_halls_item_inner{
    padding: 20px 15px 20px;
  }
  .home_halls_item_desc{

  }
  .home_halls_item_desc_name{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .home_halls_item_desc_txt{
    font-size: 16px;
  }
  .home_halls_item_tags{
    margin-top: 20px;
  }
  .home_halls_item_tags p{
    min-width: 120px;
  }
  .home_halls_item_btn_a{
    font-size: 16px;
    padding: 7px 10px;
  }

  /* ご葬儀プラン */
  .home_plans{
    gap: 30px 30px;
  }
  .home_plans_item{
    width: calc(50% - 15px);
    padding: 35px 20px 20px;
  }
  .home_plans_item_price_dd{
    font-size: 30px;
    margin-bottom: 0;
  }
  .home_plans_item_price.bdr{
    margin-top: 30px;
    padding-top: 10px;
  }

  .home_plans_item_price_dd_txt.notax{
    font-size: 34px;
  }
  .home_plans_item_price_dd_txt.intax{
    font-size: 22px;
  }
  .home_plans_item_price_dd_txt.notax:not(.color2){
    font-size: 18px;
    margin-top: 6px;
  }

  /* 葬儀関連サービス */
  .home_service{
    gap: 30px 30px;
  }
  .home_service_item{
    width: calc(33.333% - 20px);
  }
  .home_service_item_desc_ttl{
    font-size: 22px;
    padding-bottom: 5px;
    margin-bottom: 16px;
  }
  .home_service_item_desc_txt{
    font-size: 16px;
    line-height: 1.875;
  }

  /* 採用情報 */
  .home_recruit{
  }
  .home_recruit_box1{
    width: 43.42%;
    width: 47%;
    order: 1;
  }
  .home_recruit_box2{
    width: 53.28%;
    width: 50%;
    order: 2;
  }
  .home_recruit_imgs{
    padding-bottom: 0;
  }
  .home_recruit .read_more{
    margin-top: 30px;
  }

  /* バナー */
  .home_banner{
  }
  * + .home_banner{
    margin-top: 85px;
  }


}

@media (min-width:1200px){

  /* ご葬儀プラン */
  .home_plans{
    gap: 30px 30px;
  }
  .home_plans_item{
    width: calc(33.333% - 20px);
    padding: 35px 20px 20px;
  }
  .home_plans_item_head{
    margin-bottom: 15px;
  }
  .home_plans_item_head_txt1{
    font-size: 14px;
  }
  .home_plans_item_head_txt2{
    font-size: 28px;
  }
  .home_plans_item_head_txt3{
    font-size: 14px;
  }
  .home_plans_item_price_dl{
    padding: 15px 0;
  }
  .home_plans_item_price_dt{
    width: 70px;
    font-size: 12px;
    /*margin-top: 2px;*/
  }
  .home_plans_item_price_dd{
    width: calc(100% - 70px - 10px);
    font-size: 20px;
    margin-bottom: 4px;
  }

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

  .home_thought_box2_larger{
    margin-left: -130px;
  }

  /* ギャラリー */
  .home_gallery{
    width: 1470px;
  }

  /* 斎場の案内 */
  .home_halls{
    gap: 15px 40px;
  }
  .home_halls_item{
    width: calc(33.333% - 26.666px);
  }
  .home_halls_item_inner{
    padding: 20px 25px 20px;
  }
  .home_halls_item_desc{

  }
  .home_halls_item_desc_name{
    font-size: 24px;
  }
  .home_halls_item_desc_txt{
    font-size: 16px;
  }
  .home_halls_item_tags{
  }
  .home_halls_item_tags p{
    min-width: 120px;
  }
  .home_halls_item_btn_a{
    font-size: 16px;
    padding: 7px 10px;
  }

  /**/
  .home_plans{
    gap: 30px 30px;
  }
  .home_plans_item{
    width: calc(33.333% - 20px);
  }
  .home_plans_item_price_dt{
    width: 80px;
    font-size: 15px;
    padding-bottom: 5px;
  }
  .home_plans_item_price_dd{
    width: calc(100% - 80px - 10px);
    font-size: 26px;
    margin-bottom: 3px;
  }

  /* 葬儀関連サービス */
  .home_service{
    gap: 30px 85px;
  }
  .home_service_item{
    width: calc(33.333% - 56.666px);
  }

  /* 動画 */
  .home_videos{
    gap: 15px 30px
  }
  * + .home_videos{
    margin-top: 200px;
  }
  .home_videos_item{
    width: calc(50% - 15px);
  }

  /* 採用情報 */
  .home_recruit{
  }
  .home_recruit_box1{
    width: 43.42%;
    order: 1;
  }
  .home_recruit_box2{
    width: 53.28%;
    order: 2;
  }
  .home_recruit_imgs{
    padding-bottom: 0;
  }
  .home_recruit .read_more{
    margin-top: 65px;
  }

  /* バナー */
  .home_banner{
  }
  * + .home_banner{
    margin-top: 145px;
  }
}
@media (min-width:1720px){

  /* ギャラリー */
  .home_gallery{
    width: 1920px;
  }

  .home_plans{
    gap: 55px 50px;
  }
  .home_plans_item{
    width: calc(33.333% - 33.333px);
  }
  .home_plans_item_price_dt{
    width: 123px;
    font-size: 15px;
  }
  .home_plans_item_price_dd{
    width: calc(100% - 123px - 10px);
    font-size: 34px;
    margin-bottom: 0;
    padding-right: 0;
  }
  .home_halls_item_inner{
    padding-bottom: 30px;
  }
  .home_plans_item_txt{
    font-size: 16px;
  }
  .home_halls_item_btn{
    padding: 0 25px 30px;
  }

  .home_thought_box2_larger{
    margin-left: -130px;
  }
}


/*******************************
*　Instagram
********************************/
.insta_list{
  margin-top: 0;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline: -3.5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline: 3.5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}

.insta_list .webgene-item .img{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.insta_list .webgene-item .img:before{
  padding-top: 133%;
}
.insta_list .webgene-item .img video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}
@media (min-width:768px){

  .insta_list{
    margin-top: 0;
  }
  .insta_list .webgene-blog{

  }
  .insta_list .webgene-item{
    width: 33.333%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 10px;
  }
}
@media (min-width:1024px){



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


  .insta_list{
    margin-top: 0;
  }
  .insta_list .webgene-blog{
    margin-inline: -4px;
  }
  .insta_list .webgene-item{
    width: 16.666%;
    padding-inline: 4px;
  }
  .insta_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+7){
    margin-top: 4px;
  }

}
@media (min-width:1470px){
  .insta_list{
    margin-top: 0;
  }
}


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

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

}
.pg_offering .section.sec1{

}
.pg_offering .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_offering{

  }
  .pg_offering .section.sec1{

  }
  .pg_offering .section.sec2{
    padding-top: 100px
  }

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


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


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


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


}

/* メイン部分 */

.home_thought_imgs.offering{

}
.home_thought_imgs.offering:after{
  left: 17.17%;
}
.home_thought_imgs.offering .home_thought_imgs_item1{

}
.home_thought_imgs.offering .home_thought_imgs_item1.img_fit:before{
  padding-top: 82.65%;
}
.home_thought_imgs.offering .home_thought_imgs_item2{
  margin-top: -27.52%;
}
.home_thought_imgs.offering .home_thought_imgs_item2.img_fit:before{
  padding-top: 116.364%;
}

/* 御供物のご案内 */
.offering_guide{
  background: #e6e7e9;
  padding: 25px 25px;
  border-radius: 10px;
}
.offering_guide_msg{
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.065em;
  text-align: justify;
  margin-bottom: 20px;
}
.offering_guide_contacts{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}
.offering_guide_contacts_item{
  /*width: calc(33.333% - 48px);*/
  width: 100%;
}


/* 御供物ラインナップ */
.offering_lineup{

}
* + .offering_lineup{
  margin-top: 50px;
}
.offering_lineup_grp{

}
.offering_lineup_grp + .offering_lineup_grp{
  margin-top: 50px;
}
.offering_lineup_grp_head{
  background: var(--main-color);
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 7px 15px 8px;
  margin-bottom: 20px;
}
.offering_lineup_list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 10px;
}
.offering_lineup_list_item{
  width: calc(50% - 5px);
}
/*.offering_lineup_list.col3 .offering_lineup_list_item{
  width: calc(33.333% - 20px);
}
.offering_lineup_list.col4 .offering_lineup_list_item{
  width: calc(25% - 22.5px);
}*/
.offering_lineup_list_item_img{
  border-radius: 10px;
}
.offering_lineup_list.col3 .offering_lineup_list_item_img.img_fit:before{
  padding-top: 96.708%;
}
.offering_lineup_list.col4 .offering_lineup_list_item_img.img_fit:before{
  padding-top: 126.050%;
}
.offering_lineup_list_item_desc{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 2px solid var(--main-color);
  margin-top: 10px;
  padding-bottom: 0;
}
.offering_lineup_list_item_desc_box1{

}
.offering_lineup_list_item_desc_box2{
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  font-family: var(--font-mincho);
  padding-bottom: 6px;
}
.offering_lineup_list_item_ttl{
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  color: #2b2640;
}
.offering_lineup_list_item_price1{
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: right;
}
.offering_lineup_list_item_price1_sub{
  font-size: 0.44em;
  font-weight: 600;
  letter-spacing: 0.075em;
}

@media (max-width:767px){


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

  /* 御供物のご案内 */
  .offering_guide{
    padding: 38px 50px 45px;
  }
  .offering_guide_msg{
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
  }
  .offering_guide_contacts{
    gap: 38px 20px;
  }
  .offering_guide_contacts_item{
    width: calc(33.333% - 13.333px);
  }


  /* 御供物ラインナップ */
  .offering_lineup{

  }
  * + .offering_lineup{
    margin-top: 75px;
  }
  .offering_lineup_grp{

  }
  .offering_lineup_grp + .offering_lineup_grp{
    margin-top: 75px;
  }
  .offering_lineup_grp_head{
    font-size: 22px;
    padding: 7px 25px 8px;
    margin-bottom: 30px;
  }
  .offering_lineup_list{
    gap: 40px 20px;
  }
  .offering_lineup_list_item{
    width: calc(50% - 10px);
  }
  /*.offering_lineup_list.col3 .offering_lineup_list_item{
    width: calc(33.333% - 20px);
  }
  .offering_lineup_list.col4 .offering_lineup_list_item{
    width: calc(25% - 22.5px);
  }*/
  .offering_lineup_list_item_desc{
    margin-top: 15px;
    padding-bottom: 5px;
  }
  .offering_lineup_list_item_desc_box1{

  }
  .offering_lineup_list_item_desc_box2{
    font-size: 24px;
    padding-bottom: 2px;
  }
  .offering_lineup_list_item_ttl{
    font-size: 22px;
  }
  .offering_lineup_list_item_price1{
  }
  .offering_lineup_list_item_price1_sub{
  }

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

  /* 御供物ラインナップ */
  .offering_lineup{

  }
  * + .offering_lineup{
    margin-top: 100px;
  }
  .offering_lineup_grp{

  }
  .offering_lineup_grp + .offering_lineup_grp{
    margin-top: 150px;
  }
  .offering_lineup_grp_head{
    font-size: 26px;
    padding: 7px 25px 8px;
    margin-bottom: 50px;
  }
  .offering_lineup_list{
    gap: 80px 30px;
  }
  .offering_lineup_list.col3 .offering_lineup_list_item{
    width: calc(33.333% - 20px);
  }
  .offering_lineup_list.col4 .offering_lineup_list_item{
    width: calc(25% - 22.5px);
  }


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

  /* 御供物のご案内 */
  .offering_guide{
    padding: 38px 70px 45px;
  }
  .offering_guide_msg{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .offering_guide_contacts{
    gap: 38px 72px;
  }
  .offering_guide_contacts_item{
    width: calc(33.333% - 48px);
  }

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

  /* 御供物のご案内 */
  .offering_guide{
    padding: 38px 135px 45px;
  }
  .offering_guide_msg{
    font-size: 24px;
    margin-bottom: 40px;
  }
  .offering_guide_contacts{
    gap: 38px 72px;
  }
  .offering_guide_contacts_item{
    width: calc(33.333% - 48px);
  }


  .offering_lineup_list_item_desc{
    margin-top: 30px;
    padding-bottom: 5px;
  }
  .offering_lineup_list_item_desc_box2{
    font-size: 34px;
    padding-bottom: 6px;
  }
  .offering_lineup_list_item_ttl{
    font-size: 26px;
  }
}
@media (min-width:1720px){


}



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

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

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

}
.pg_plan .section.sec5{
  padding-top: 0;
  padding-bottom: 10px;
}
.pg_plan .section.sec6{
  padding-top: 0;
}
.pg_plan .section.sec7{
  padding-bottom: 50px;

}
.pg_plan .section.sec8{
  padding-top: 0;
  padding-bottom: 80px;
}

.pg_plan .section:last-child{
  padding-bottom: 80px;
}

.pg_plan .container + .container{
  margin-top: 50px;
}
.pg_plan + .footer{
  margin-top: 0;
}

@media (max-width:374px){

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

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

  .pg_plan .section.sec2 .tt2{
    margin-bottom: 35px;
  }

  .pg_plan .section.sec4{
    padding-top: 0;
  }
  .pg_plan .section.sec8 .tt2_ja{
    /*font-size: 16px;*/
    /*margin-bottom: 5px;*/
  }

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

  .pg_plan .section.sec1{
    padding-bottom: 105px;
  }
  .pg_plan .section.sec2{
    padding-top: 80px;
    padding-bottom: 30px;
  }
  .pg_plan .section.sec2 .tt2{
    margin-bottom: 45px;
  }
  .pg_plan .section.sec3{
    padding-top: 70px;
  }
  .pg_plan .section.sec4{

  }
  .pg_plan .section.sec5{
    padding-top: 70px;
    padding-bottom: 10px;
  }
  .pg_plan .section.sec6{
    padding-top: 0;
  }
  .pg_plan .section.sec7{
    padding-bottom: 50px;
  }
  .pg_plan .section.sec8{
    padding-bottom: 95px;
  }
  .pg_plan .section.sec8 .tt2_ja{
    font-size: 32px;
  }

  .pg_plan .section:last-child{
    padding-bottom: 100px;
  }

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


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

  .pg_plan .section.sec2{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .pg_plan .section.sec6{
    padding-top: 50px;
  }

  .pg_plan .section:last-child{
    padding-bottom: 200px;
  }
}
@media (min-width:1470px){


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

  .pg_plan .section.sec8 .tt2_ja{
    font-size: 48px;
  }
}
@media (min-width:1720px){


}

/* メイン部分 */

/* プラン */
.plan_cat_nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 30px;
}
.plan_cat_nav.mb0{
  margin-bottom: 0;
}
.plan_cat_nav + .plan_cat_nav{
  border-top: 1px solid #848484;
  margin-top: 30px;
  padding-top: 30px;
}
.plan_cat_nav_item{
  width: calc(50% - 5px);
  text-align: center;
  background: var(--main-color);
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  border: 2px solid #000000;
  border-radius: 20px;
  padding: 5px 8px;
}
.plan_cat_nav_item:hover{
  background-color: var(--sub-color);
  color: #FFF;
}
.plan_cat_nav.nobdr .plan_cat_nav_item{
  border: 0;
}
.plan_cat_nav_item.color1{
  background-color: var(--main-color);
}
.plan_cat_nav_item.color1:hover{
  background-color: var(--sub-color);
}
.plan_cat_nav_item.color2{
  background-color: #541a27;
}
.plan_cat_nav_item.color2:hover{
  background-color: var(--main-color);
}
.plan_cat_nav_item.color3{
  background-color: #8fc21d;
}
.plan_cat_nav_item.color3:hover{
  background-color: #a79bca;
  color: #FFF;
}
.plan_cat_nav_item{

}



/* 詳細 */
.plan_details_wrap{
  position: relative;
  z-index: 1;
}
.plan_details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 25px 15px ;
  background: #FFF;
  border: 1px solid var(--main-color);
}
.plan_details .anchor{
  width: 100%;
}
.plan_details_slides{
  width: 100%;
}
.plan_details_slides_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 2px;
}
.plan_details_slides_item_label{
  display: none;
}
.gjs-dashed .plan_details_slides_item_label{
  display: block;
  width: 100%;
  background: var(--sub-color);
  color: #FFF;
  padding: 5px;
  text-align: center;
}
.gjs-dashed .plan_details_slides_item{
  border: 5px dashed #CCC;
}
.gjs-dashed .plan_details_slides_item + .plan_details_slides_item{
  margin-top: 20px;
}

/* スライドタブ */
.plan_details_slides_tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 20px;
}
.plan_details_slides_tabs_item{
  width: calc(33.333% - 6.666px);
  border: 1px solid var(--main-color);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  text-align: center;
  border-radius: 21px;
  padding: 7px 5px;
  cursor: pointer;
  transition: 0.2s all;
}
.plan_details_slides_tabs_item.on,
.plan_details_slides_tabs_item:hover{
  background: var(--main-color);
  color: #FFF;
}

.plan_details.familiy .plan_details_slides_tabs_item{
  border-color: var(--sub-color);
  color: var(--sub-color);
}
.plan_details.familiy .plan_details_slides_tabs_item.on,
.plan_details.familiy .plan_details_slides_tabs_item:hover{
  background: var(--sub-color);
  color: #FFF;
}

.plan_details.familiy .plan_contents_set_head{
  background: var(--sub-color);
}
.plan_details.familiy .plan_details_ttl{
  color: var(--sub-color);
}

.plan_details_wrap .gallery-button-prev,
.plan_details_wrap .gallery-button-next{

}
.plan_details_wrap .gallery-button-prev{
  transform: translate(calc(-100% - 35px), -50%);
}
.plan_details_wrap .gallery-button-next{
  transform: translate(calc(100% + 35px), -50%);
}
.gallery-button-prev,
.gallery-button-next{
  cursor: pointer;
  transition: 0.2s all;
}
.gallery-button-prev:hover,
.gallery-button-next:hover{
  opacity: 0.9;
}


/**/
.plan_details_box1{
  width: 100%;
}
.plan_details_box2{
  width: 100%;
  margin-top: 20px;
}
.plan_details_box3{
  width: 100%;
  margin-top: 20px;
}
.plan_details_box4{
  width: 100%;
  margin-top: 20px;
}
.plan_details_hall{
  display: inline-block;
  min-width: 240px;
  background: var(--main-color);

  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  padding: 3px 10px 5px;
  border-radius: 22px;
  margin: 0 auto;
}
.plan_details_hall.color2{
  background: #541a27;
}

/* 複数店舗の場合用 */
.plan_details_halls{
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: center;
  gap: 10px 10px;
}
.plan_details_halls .plan_details_hall{
  min-width: 120px;
  margin: 0!important;

}
.plan_details_halls .plan_details_hall{
}

.plan_details .plan_details_hall{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}
.plan_details .plan_details_halls{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
}
.plan_details .plan_details_halls .plan_details_hall{
  position: static;
  transform: none;
}

.tt2 .plan_details_hall{
  margin-top: 15px;
}
.tt2 .plan_details_halls{
  margin-top: 15px;
}
.plan_details_ttl{
  font-size: 22px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  color: #2b2640;
  margin-bottom: 10px;
}
.plan_details_ttl em{
  font-size: 0.85em;
  font-weight: 500;
  font-style: normal;
  font-family: var(--font-mincho);
  letter-spacing: 0;
}
.plan_details_txt{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.875;
  text-align: justify;
}
.plan_details_type{
  background: var(--sub2-color);
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
  padding: 3px 10px 5px;
  border-radius: 18px;
}
.plan_details_img{

}
.plan_details_img.img_fit:before{
  padding-top: 72%;
}
.plan_details_img_txt{
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}


/* セット内容 */
.plan_contents_set_head{
  background: var(--main-color);
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  padding: 5px 10px 7px;
  margin-bottom: 15px;
}
.plan_contents_set{
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.plan_contents_set_item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(50% - 2.5px);
  padding: 5px 3px 5px 8px;
  background: #eceaf5;

}
.plan_contents_set_item_img{
  width: 40px;
}
.plan_contents_set_item_txt{
  width: calc(100% - 40px - 5px);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

/* セットに含まれないもの */
.plan_contents_not_set{
  border: 1px solid #808992;
  padding: 10px 10px;
}
* + .plan_contents_not_set{
  margin-top: 15px;
}
.plan_contents_not_set_ttl{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  text-align: center;
}
.plan_contents_not_set_txt{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-align: justify;
}


/* オプション */
.home_service.option{

}
.home_service.option .home_service_item_desc_ttl{
  text-align: center;
}
.home_service.option .home_service_item_img.img_fit:before{
  padding-top: 78.652%;
}

/* サポート */
.home_service.support{
}
.home_service.support .home_service_item_desc_ttl{
  text-align: left;
}
.home_service.support .home_service_item_img.img_fit:before{
  padding-top: 74.074%;
}

/* 特徴 */
.home_service.feature{

}
.home_service.feature .home_service_item_desc_ttl{

}
.home_service.feature .home_service_item_img.img_fit:before{
  /*padding-top: 78.652%;*/
}

/* 葬儀の流れ */
.cmn_contents.flow{

}
.cmn_contents.flow .cmn_contents_row{
}
.cmn_contents.flow .cmn_contents_row:after{
  content: "";
  background: var(--sub-color);
  width: 30px;
  aspect-ratio: 30 /15;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  z-index: 1;
  top: calc(100% + 1px);
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.cmn_contents.flow .cmn_contents_row +  .cmn_contents_row{

}
.cmn_contents.flow .cmn_contents_img.img_fit:before{
  padding-top: 69.565%;
}


.plan_flow_img{
  margin-top: 30px
}

/* 会員特典 */
.plan_membership{
  padding: 25px 15px ;
  background: #FFF;
  border: 1px solid var(--main-color);
}
.plan_membership + .formWrap{
  margin-top: 30px;
}
.plan_membership_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
}
.plan_membership_list p{
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  letter-spacing: 0.075em;
  padding-left: 25px;
  padding-left: 1.25em;
  position: relative;
  z-index: 1;
}
.plan_membership_list p:before{
  content: "";
  width: 1em;
  aspect-ratio: 1 / 1;
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/check-square-solid.svg?2');
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
}
.plan_membership_list p:nth-child(odd){
  /*width: 52.17%;*/
}
.plan_membership_list p:nth-child(even){
  /*width: 41.30%;*/
}
.plan_membership_use{
  background: #eceaf5;
  border-radius: 10px;
  padding: 20px 15px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: justify;
}
* + .plan_membership_use{
  margin-top: 30px;
}
.plan_membership_use p{

}
.plan_membership_use_head{

}
.plan_membership_use_txt{
  text-indent: -1em;
  padding-left: 1em;
}
.plan_membership_use_txt strong{
  font-weight: 700;
}

.plan_membership_head{
  background: var(--main-color);
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  text-align: center;
  padding: 3px 10px;
  margin-bottom: 20px;
}
* + .plan_membership_head{
  margin-top: 30px;
}
.plan_membership_illust{
  width: 100%;
  text-align: center;
}


.js-add-plans{
  display: none;
}
.js-add-plans-key{
  background: #CCC;
  text-align: center;
  padding: 10px 10px;
}
.gjs-dashed .js-add-plans{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.gjs-dashed .js-add-plans:before{
  width: 100%;
  content: "※TOPページ掲載のプラン内容が反映されます。";
  text-align: center;
}

.js-add-membership{
}
.gjs-dashed .js-add-membership{
  background: #CCC;
  font-size: 20px;
  text-align: center;
}

@media (max-width:767px){

  .plan_cat_nav.sp_col1{

  }
  .plan_cat_nav.sp_col1 .plan_cat_nav_item{
    width: 100%;
  }

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

  /* プラン */
  .plan_cat_nav{
    gap: 10px 30px;
    margin-bottom: 105px;
  }
  .plan_cat_nav_item{
    width: calc(50% - 15px);
    font-size: 16px;
    border-radius: 20px;
    padding: 5px 10px;
  }
  .plan_cat_nav.col3{

  }
  .plan_cat_nav.col3 .plan_cat_nav_item{
    width: calc(33.333% - 20px);
  }


  /* 葬儀の流れ */
  .cmn_contents.flow{
    padding-top: 2px;
  }
  .cmn_contents.flow .cmn_contents_row:after{
    left: calc(50% - var(--cmn-contents-row-ml) / 2);
  }
  .cmn_contents.flow .cmn_contents_row{
    margin-top: 52px;
    min-height: 310px;
  }
  .cmn_contents.flow .cmn_contents_row +  .cmn_contents_row{
    margin-top: 90px;
  }
  .cmn_contents.flow .cmn_contents_box1{
    top: -50px;
  }

  /* サポート */
  .home_service.support{
    gap: 50px 15px;
  }
  .home_service.support .home_service_item{
    width: calc(50% - 7.5px);
  }
  .home_service.support .home_service_item_desc_ttl{
    font-size: 19px;
    letter-spacing: 0;
  }

  /* 詳細 */
  .plan_details{
    padding: 50px 30px;
  }
  .plan_details_box1{
    width: 48%;
  }
  .plan_details_box2{
    width: 48%;
    margin-top: -18px;
    margin-top: 0;
  }
  .plan_details_box3{
    margin-top: 35px;
  }
  .plan_details_box4{
    margin-top: 35px;
  }
  .plan_details_hall{
    min-width: 350px;
    /*font-size: 23px;*/
    font-size: 20px;
    padding: 3px 20px 6px;
    border-radius: 30px;
  }
  .plan_details_ttl{
    font-size: 24px;
    margin-bottom: 15px;
  }
  .plan_details_txt{
    font-size: 16px;
  }
  .plan_details_type{
    font-size: 20px;
    margin-top: 10px;
    padding: 3px 10px 5px;
    border-radius: 18px;
  }
  .plan_details_img_txt{
    margin-top: 20px;
    font-size: 15px;
  }

  /* スライドタブ */
  .plan_details_slides_tabs{
    gap: 20px 20px;
    margin-bottom: 65px;
  }
  .plan_details_slides_tabs_item{
    width: calc(20% - 16px);
    font-size: 18px;
    border-radius: 21px;
    padding: 7px 5px;
  }
  .plan_details_wrap .gallery-button-prev{
    transform: translate(calc(-100% - 5px), -50%);
  }
  .plan_details_wrap .gallery-button-next{
    transform: translate(calc(100% + 5px), -50%);
  }

  /* セット内容 */
  .plan_contents_set_head{
    font-size: 20px;
    padding: 5px 10px 7px;
    margin-bottom: 30px;
  }
  .plan_contents_set{
    gap: 6px 10px;
  }
  .plan_contents_set_item{
    width: calc(33.333% - 6.666px);
    padding: 5px 3px 5px 15px;
  }
  .plan_contents_set_item_img{
    width: 60px;
  }
  .plan_contents_set_item_txt{
    width: calc(100% - 60px - 10px);
    font-size: 15px;
  }

  /* セットに含まれないもの */
  .plan_contents_not_set{
    padding: 10px 10px;
  }
  * + .plan_contents_not_set{
    margin-top: 30px;
  }
  .plan_contents_not_set_ttl{
    font-size: 20px;
  }
  .plan_contents_not_set_txt{
    font-size: 16px;
    text-align: center;
  }


  /* 会員特典 */
  .plan_membership{
    padding: 40px 50px;
  }
  .plan_membership_list{
    gap: 15px 0;
  }
  .plan_membership_list p{
    font-size: 20px;
    /*padding-left: 25px;*/
    letter-spacing: 0.075em;
  }
  .plan_membership_list p:before{
    top: 5px;
  }
  .plan_membership_list p:nth-child(odd){
    /*width: 52.17%;*/
  }
  .plan_membership_list p:nth-child(even){
    /*width: 41.30%;*/
  }
  .plan_membership_use{
    padding: 30px 65px;
    font-size: 16px;
  }
  * + .plan_membership_use{
    margin-top: 30px;
  }
  .plan_membership_head{
    font-size: 20px;
    padding: 3px 10px;
    margin-bottom: 40px;
  }
  * + .plan_membership_head{
    margin-top: 30px;
  }




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

  .plan_cat_nav_item{
    width: calc(50% - 15px);
    font-size: 18px;
    border-radius: 20px;
    padding: 5px 10px;
  }

  /* オプション */
  .home_service.option{
    gap: 50px 22px;
  }
  .home_service.option .home_service_item{
    width: calc(33.333% - 14.666px);
  }
  .home_service.option .home_service_item_desc_ttl{
    font-size: 26px;
  }

  /* サポート */
  .home_service.support{
    gap: 50px 30px;
  }
  .home_service.support .home_service_item{
    width: calc(50% - 15px);
  }
  .home_service.support .home_service_item_desc_ttl{
    font-size: 22px;
    letter-spacing: 0.075em;
  }

  /* 特徴 */
  .home_service.feature{
    row-gap: 50px;
  }
  .home_service.feature .home_service_item_desc_ttl{
    font-size: 26px;
  }

  /* 葬儀の流れ */
  .cmn_contents.flow{

  }
  .cmn_contents.flow .cmn_contents_row{

  }
  .cmn_contents.flow .cmn_contents_row +  .cmn_contents_row{
    margin-top: 90px;
  }

  /* 詳細 */
  .plan_details{
    padding: 60px 30px 55px;
  }
  .plan_details_box1{
    width: 48.46%;
  }
  .plan_details_box2{
    width: 41.83%;
    width: 46%;
    /*margin-top: -18px;*/
  }
  .plan_details_box3{
    margin-top: 35px;
  }
  .plan_details_box4{
    margin-top: 35px;
  }
  .plan_details_hall{
    /*width: 313px;*/
    /*font-size: 26px;*/
    /*padding: 1px 20px 5px;*/
  }
  .plan_details_ttl{
    font-size: 35px;
    margin-bottom: 25px;
  }
  .plan_details_txt{
    font-size: 16px;
  }
  .plan_details_type{
    font-size: 23px;
    margin-top: 10px;
    padding: 3px 10px 5px;
  }
  .plan_details_img_txt{
    margin-top: 20px;
    font-size: 15px;
  }

  /* セット内容 */
  .plan_contents_set{
    gap: 6px 10px;
  }
  .plan_contents_set_item{
    width: calc(25% - 7.5px);
  }
  .plan_contents_set_item_img{
    width: 60px;
  }
  .plan_contents_set_item_txt{
    width: calc(100% - 60px - 10px);
    font-size: 14px;
  }

  /* 会員特典 */
  .plan_membership{
    padding: 40px 50px;
  }
  .plan_membership_list{
    gap: 20px 0;
  }
  .plan_membership_list p{
    font-size: 18px;
  }
  .plan_membership_list p:before{
  }
  .plan_membership_list p:nth-child(odd){
    width: 52.17%;
  }
  .plan_membership_list p:nth-child(even){
    width: 41.30%;
  }
  .plan_membership_use{
    padding: 30px 65px;
  }
  * + .plan_membership_use{
    margin-top: 50px;
  }
  .plan_membership_head{
    margin-bottom: 60px;
  }
  * + .plan_membership_head{
    margin-top: 65px;
  }

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

  .plan_details_wrap .gallery-button-prev{
    transform: translate(calc(-100% - 10px), -50%);
  }
  .plan_details_wrap .gallery-button-next{
    transform: translate(calc(100% + 10px), -50%);
  }

  /* サポート */
  .home_service.support{
    gap: 50px 30px;
  }
  .home_service.support .home_service_item{
    width: calc(50% - 15px);
  }
  .home_service.support .home_service_item_desc_ttl{
    font-size: 26px;
  }

  /* セット内容 */
  .plan_contents_set{
    gap: 10px 10px;
  }
  .plan_contents_set_item{
    width: calc(20% - 8px);
  }

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

  /* 特徴 */
  .home_service.feature{
    column-gap: 50px;
  }
  .home_service.feature .home_service_item {
    width: calc(33.333% - 33.333px);
  }
  .home_service.feature .home_service_item_desc_ttl{
    font-size: 26px;
  }

  /* 詳細 */
  .plan_details{
    padding: 60px 65px 55px;
  }
  .plan_details_box1{
    width: 48.46%;
  }
  .plan_details_box2{
    width: 41.83%;
    /*margin-top: -18px;*/
  }
  .plan_details_box3{
    margin-top: 35px;
  }
  .plan_details_box4{
    margin-top: 35px;
  }
  .plan_details_hall{
    min-width: 400px;
    min-width: 350px;
    font-size: 26px;
    font-size: 22px;
    padding: 4px 20px 8px;
  }
  .plan_details_ttl{
    font-size: 35px;
    margin-bottom: 25px;
  }
  .plan_details_txt{
    font-size: 16px;
  }
  .plan_details_type{
    font-size: 23px;
    margin-top: 10px;
    padding: 3px 10px 5px;
  }
  .plan_details_img_txt{
    margin-top: 20px;
    font-size: 15px;
  }

  .plan_details_wrap .gallery-button-prev{
    transform: translate(calc(-100% - 35px), -50%);
  }
  .plan_details_wrap .gallery-button-next{
    transform: translate(calc(100% + 35px), -50%);
  }

  /* 会員特典 */
  .plan_membership{
    padding: 42px 95px 45px;
  }
  .plan_membership_list{
    gap: 20px 0;
  }
  .plan_membership_list p{
    font-size: 20px;
  }
  .plan_membership_list p:before{
  }
  .plan_membership_list p:nth-child(odd){
    width: 52.17%;
  }
  .plan_membership_list p:nth-child(even){
    width: 41.30%;
  }
  .plan_membership_use{
    padding: 30px 65px;
  }
  * + .plan_membership_use{
    margin-top: 50px;
  }
  .plan_membership_head{
    margin-bottom: 60px;
  }
  * + .plan_membership_head{
    margin-top: 65px;
  }

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

  /* 特徴 */
  .home_service.feature{
    column-gap: 85px;
    row-gap: 80px;
  }
  .home_service.feature .home_service_item {
    width: calc(33.333% - 56.666px);
  }
  .home_service.feature .home_service_item_desc_ttl{
    font-size: 26px;
  }


}







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

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

}
.pg_guide .section.sec1{
  padding-bottom: 0;
  padding-bottom: 30px;
}
.pg_guide .section.sec2{

}
.pg_guide .section.sec3{
  margin-top: 50px;
  padding-bottom: 50px;
}
.pg_guide + .footer{
  margin-top: 0;
}

.guide_bg1,
.guide_bg2{
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.guide_bg1{
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/guide_bg1.jpg');
}
.guide_bg2{
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/guide_bg2.jpg');
}


@media (max-width:374px){

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

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

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

  .pg_guide{

  }
  .pg_guide .section.sec1{
    /*padding-bottom: 0;*/
  }
  .pg_guide .section.sec2{

  }
  .pg_guide .section.sec3{
    margin-top: 75px;
    padding-bottom: 75px;
  }

  .pg_guide .section.sec3 .tt2{
    margin-bottom: 95px;
  }
}
@media (min-width:1024px){


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

  .pg_guide{

  }
  .pg_guide .section.sec1{
    /*padding-bottom: 150px;*/
  }
  .pg_guide .section.sec2{

  }
  .pg_guide .section.sec3{
    margin-top: 180px;
    padding-top: 120px;
    padding-bottom: 100px
  }
  .pg_guide .section.sec1 + .sec3{
    margin-top: 0;
  }
  .pg_guide .section.sec3 .tt2{
    margin-bottom: 95px;
  }

  .guide_bg1,
  .guide_bg2{
    padding-bottom: 105px;
  }

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

  .pg_guide .section.sec3{
    padding-bottom: 200px
  }
}
@media (min-width:1720px){


}

/* メイン部分 */

/* 納棺の儀とは */

.guide_about{

}
.guide_about_ttl{
  font-size: 19px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 15px;
}
.guide_about_ttl em{
  display: inline-block;
  font-style: normal;
}
.guide_about_txt{
  font-weight: 500;
  text-align: justify;
}

@media (max-width:767px){

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

  /* 納棺の儀とは */
  .guide_about{

  }
  .guide_about_ttl{
    font-size: 28px;
    margin-bottom: 20px;
  }
  .guide_about_txt{
  }

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



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

  /* 納棺の儀とは */
  .guide_about{

  }
  .guide_about_ttl{
    font-size: 34px;
    margin-bottom: 50px;
  }
  .guide_about_txt{
    text-align: center;
  }

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

  /* 納棺の儀とは */
  .guide_about .tt2{
    margin-bottom: 30px;
  }

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


}




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

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

}
.pc_inheritance .section.sec1{
  padding-bottom: 50px;
}
.pc_inheritance .section.sec2{
  padding-top: 50px;
}
.pc_inheritance .section.sec3{
}


@media (max-width:374px){

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

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

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

  .pc_inheritance .section.sec1{
    padding-bottom: 75px;
  }
  .pc_inheritance .section.sec2{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pc_inheritance .section.sec3{
    padding-top: 75px;
  }


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


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

  .pc_inheritance .section.sec1{
    padding-bottom: 140px;
  }
  .pc_inheritance .section.sec2{
    padding-top: 115px;
    padding-bottom: 140px;
  }
  .pc_inheritance .section.sec3{
    padding-top: 115px;
  }

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


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


}

/* 悩み */
.inheritance_nayami{
  background: #f0eef6;
  border-radius: 10px;
  padding: 30px 10px;
}
* + .inheritance_nayami{
  margin-top: 50px;
}
.inheritance_nayami_head{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-mincho);
  letter-spacing: 0.075em;
  text-align: center;
  color: var(--sub-color);
  margin-bottom: 15px;
}
.inheritance_nayami_list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
}
.inheritance_nayami_list p{
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding-left: 1.25em;
  position: relative;
  z-index: 1;
}
.inheritance_nayami_list p:before{
  content: "";
  width: 1em;
  aspect-ratio: 1 / 1;
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/check-circle-solid.svg?2');
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 0;
}
.inheritance_nayami_msg{
  margin-top: 20px;
  font-weight: 500;
  text-align: justify;
}

@media (max-width:767px){

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


  /* 悩み */
  .inheritance_nayami{
    padding: 30px 50px;
  }
  * + .inheritance_nayami{
    margin-top: 80px;
  }
  .inheritance_nayami_head{
    font-size: 28px;
    margin-bottom: 35px;
  }
  .inheritance_nayami_list{
    gap: 24px 0;
  }
  .inheritance_nayami_list p{
    /*width: 50%;*/
    font-size: 20px;
  }
  .inheritance_nayami_list p:before{
    top: 5px;
  }
  .inheritance_nayami_msg{
    margin-top: 42px;
    text-align: center;
  }

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


  .inheritance_nayami_list p{
    width: 50%;
    font-size: 18px;
  }

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

  /* 悩み */
  .inheritance_nayami{
    /*padding: 30px 205px;*/
  }
  * + .inheritance_nayami{
    margin-top: 80px;
  }
  .inheritance_nayami_head{
    font-size: 35px;
    margin-bottom: 35px;
  }
  .inheritance_nayami_list{
    gap: 24px 0;
  }
  .inheritance_nayami_list p{
    width: 50%;
    font-size: 20px;
  }
  .inheritance_nayami_list p:before{
    top: 5px;
  }
  .inheritance_nayami_msg{
    margin-top: 42px;
    text-align: center;
  }

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

  /* 悩み */
  .inheritance_nayami{
    padding: 30px 100px;
  }
  * + .inheritance_nayami{
    margin-top: 80px;
  }

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

  /* 悩み */
  .inheritance_nayami{
    padding: 30px 205px;
  }

}



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

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

}
.pg_recruit .section.sec1{
  padding-bottom: 50px;
}
.pg_recruit .section.sec2{
  padding-bottom: 50px;
}
.pg_recruit .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_recruit .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url('https://memorial-hall.jp/system_panel/uploads/images/body_bg3.jpg');
  background-size: 100% auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.pg_recruit .section.sec5{
  padding-top: 50px;

}
.pg_recruit .section.sec6{
  padding-top: 50px;
  padding-bottom: 70px;
}
.pg_recruit + .footer{
  margin-top: 0;
}

@media (max-width:374px){

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

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

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

  .pg_recruit .section.sec1{
    padding-bottom: 75px;
  }
  .pg_recruit .section.sec2{
    padding-bottom: 75px;
  }
  .pg_recruit .section.sec3{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_recruit .section.sec4{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_recruit .section.sec5{
    padding-top: 75px;

  }
  .pg_recruit .section.sec6{
    padding-top: 75px;
  }

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


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

  .pg_recruit .section.sec1{
    padding-bottom: 100px;
  }
  .pg_recruit .section.sec2{
    padding-bottom: 145px;
  }
  .pg_recruit .section.sec3{
    padding-top: 130px;
    padding-bottom: 135px;
  }
  .pg_recruit .section.sec4{
    padding-top: 160px;
    padding-bottom: 205px;
  }
  .pg_recruit .section.sec5{
    padding-top: 100px;

  }
  .pg_recruit .section.sec6{
    padding-top: 95px;
    padding-bottom: 200px;
  }

  .pg_recruit .section.sec4 .tt2{
    margin-bottom: 85px;
  }

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


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


}

/* メイン部分 */

/* 福利厚生 */
.recruit_benefit{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px; 
}
* + .recruit_benefit{
  margin-top: 30px;
}
.recruit_benefit_item{
  width: calc(50% - 5px);
  text-align: center;
}

@media (max-width:767px){

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

  /* 福利厚生 */
  .recruit_benefit{
    gap: 10px 10px; 
  }
  * + .recruit_benefit{
    margin-top: 30px;
  }
  .recruit_benefit_item{
    width: calc(33.333% - 6.666px);
  }

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

  /* 福利厚生 */
  .recruit_benefit{
    gap: 10px 10px; 
  }
  * + .recruit_benefit{
    margin-top: 30px;
  }
  .recruit_benefit_item{
    width: calc(16.666% - 8.333px);
  }

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


  .entry_tbl{

  }
  .entry_tbl .table_rows_th,
  .entry_tbl .table_rows_td{
    padding: 18.5px 15px;
    line-height: 2;
  }
  .entry_tbl .table_rows_th{
    padding-left: 35px;
  }
  .entry_tbl .table_rows_td{
    padding-left: 35px;
  }

}
@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_halls{

}
.pg_halls .section.sec1{

}
.pg_halls .section.sec2{
  padding-top: 0;
  padding-bottom: 50px;
}
.pg_halls .section.sec3{
  padding-top: 50px;
}
.pg_halls .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_halls .section.sec5{
  padding-top: 50px;
}


@media (max-width:374px){

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

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

  .pg_halls .section.sec2 .home_thought_box1{
    /*order: 1;*/
  }
  .pg_halls .section.sec2 .home_thought_box2{
    /*order: 2;*/
  }

  .pg_halls .section.sec2 .home_thought_box1 .home_thought_imgs_item1{
    margin-left: auto;
    margin-right: auto;
  }
  .pg_halls .section.sec2 .home_thought_box1 .home_thought_imgs.offering:after{
    left: 32.17%;
  }

  .pg_halls .section.sec2 .home_thought_box2_larger .tt2_ja.large{
    font-size: 29px;
  }
}
@media (min-width:768px){

  .pg_halls .section.sec1{

  }
  .pg_halls .section.sec2{
    padding-top: 75px;
    padding-bottom: 50px;
  }
  .pg_halls .section.sec3{
    padding-top: 75px;
  }
  .pg_halls .section.sec4{
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .pg_halls .section.sec5{
    padding-top: 75px;
  }

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


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


  .pg_halls .section.sec1{

  }
  .pg_halls .section.sec2{
    padding-top: 130px;
    padding-bottom: 85px;
  }
  .pg_halls .section.sec3{
    padding-top: 150px;
  }
  .pg_halls .section.sec4{
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .pg_halls .section.sec5{
    padding-top: 150px;
  }

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


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


}

/* メイン部分 */

.halls_nav{

}
.halls_nav + .halls_nav{
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #848484;
}

.halls_nav .tt2_ja.small{
  margin-top: 0;
}
.halls_nav .tt2{
  margin-bottom: 8px;
}

/* 会館詳細 */
.halls_details{

}
.halls_nav + .halls_details{
  margin-top: 50px;
}
.halls_details + .halls_details{
  margin-top: 50px;
}
.gjs-dashed .anchor{
  position: static;
  padding: 10px;
  background: #CCC;
}

/* ロゴ */
.halls_details_logo{
  text-align: center;
  margin-bottom: 50px;
}
.halls_details_logo.type1 img{
  height: 30px;
}
.halls_details_logo.type2 img{
  height: 80px;
}

/* ギャラリー */
.halls_details_gallery{
}
.halls_details_gallery_main{
  position: relative;
  z-index: 1;
}
.halls_details_gallery_main .swiper{
  margin: 0 30px;
}
.halls_details_gallery_thumb{
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.halls_details_gallery_thumb .swiper{
  margin: 0 30px;
}

.halls_details_gallery_item{

}

.halls_details_gallery_main .halls_details_gallery_item.img_fit:before{
  padding-top: 67.39%;
}
.halls_details_gallery_thumb .halls_details_gallery_item.img_fit:before{
  padding-top: 67.85%;
}

.gallery-button-prev,
.gallery-button-next{
  width: 24px;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.gallery-button-prev{
  left: 0;
}
.gallery-button-next{
  right: 0;
}

.gjs-dashed .halls_details_gallery{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.gjs-dashed .halls_details_gallery_item{
  width: calc(25% - 11.25px);
  border: 10px solid #CCC;
}

/* 施設案内 */
.halls_details_facility{
  background: #eceaf5;
  border-radius: 10px;
  padding: 25px 20px ;
}
* + .halls_details_facility{
  margin-top: 30px;
}
.halls_details_facility_head{
  font-size: 22px;
  font-weight: 400;
  font-family: var(--font-mincho);
  color: var(--sub-color);
  text-align: center;
  letter-spacing: 0.075em;
  margin-bottom: 14px;
}
.halls_details_facility_msg{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  text-align: justify;
  margin-bottom: 38px;
}
.halls_details_facility_row{

}
.halls_details_facility_row + .halls_details_facility_row{
  margin-top: 30px;
}
.halls_details_facility_ttl{
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1.2;
  background: #FFF;
  text-align: center;
  padding: 2px 10px 4px;
  margin-bottom: 10px;
}
.halls_details_facility_txt{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  text-align: justify;
}


/* 会館概要 */
.halls_details_data{

}
* + .halls_details_data{
  margin-top: 30px;
}

@media (max-width:767px){

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

  .halls_nav .tt2_ja.small{
    font-size: 30px;
  }

  /* 会館詳細 */
  .halls_details{

  }
  .halls_details + .halls_details{
    margin-top: 125px;
  }

  /* ロゴ */
  .halls_details_logo{
    margin-bottom: 50px;
  }
  .halls_details_logo.type1 img{
    height: auto;
  }
  .halls_details_logo.type2 img{
    height: auto;
  }

  /* ギャラリー */
  .halls_details_gallery{
  }
  .halls_details_gallery_main{
  }
  .halls_details_gallery_main .swiper{
    margin: 0 50px;
  }
  .halls_details_gallery_thumb{
  }
  .halls_details_gallery_thumb .swiper{
    margin: 0 50px;
  }
  .gallery-button-prev,
  .gallery-button-next{
    width: 30px;
  }


  /* 施設案内 */
  .halls_details_facility{
    padding: 25px 65px 30px;
  }
  * + .halls_details_facility{
    margin-top: 90px;
  }
  .halls_details_facility_head{
    font-size: 28px;
    margin-bottom: 14px;
  }
  .halls_details_facility_msg{
    font-size: 14px;
    text-align: justify;
    margin-bottom: 38px;
  }
  .halls_details_facility_row{

  }
  .halls_details_facility_row + .halls_details_facility_row{
    margin-top: 53px;
  }
  .halls_details_facility_ttl{
    font-size: 16px;
    padding: 2px 10px 4px;
    margin-bottom: 23px;
  }
  .halls_details_facility_txt{
    font-size: 14px;
  }


  /* 会館概要 */
  .halls_details_data{

  }
  * + .halls_details_data{
    margin-top: 60px;
  }


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


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

  /* 会館詳細 */
  .halls_details{

  }
  .halls_nav + .halls_details{
    margin-top: 150px;
  }
  .halls_details + .halls_details{
    margin-top: 125px;
  }
  .halls_nav .plan_cat_nav_item{
    font-size: 20px;
  }

  /* ロゴ */
  .halls_details_logo{
    margin-bottom: 50px;
  }
  .halls_details_logo.type1 img{
    height: auto;
  }
  .halls_details_logo.type2 img{
    height: 129px;
  }

  /* ギャラリー */
  .halls_details_gallery{
  }
  .halls_details_gallery_main{
  }
  .halls_details_gallery_main .swiper{
    margin: 0 95px;
  }
  .halls_details_gallery_thumb{
  }
  .halls_details_gallery_thumb .swiper{
    margin: 0 95px;
  }
  .gallery-button-prev,
  .gallery-button-next{
    width: 50px;
  }


  /* 施設案内 */
  .halls_details_facility{
    padding: 25px 65px 30px;
  }
  * + .halls_details_facility{
    margin-top: 90px;
  }
  .halls_details_facility_head{
    font-size: 28px;
    margin-bottom: 14px;
  }
  .halls_details_facility_msg{
    font-size: 14px;
    text-align: center;
    margin-bottom: 38px;
  }
  .halls_details_facility_row{

  }
  .halls_details_facility_row + .halls_details_facility_row{
    margin-top: 53px;
  }
  .halls_details_facility_ttl{
    font-size: 16px;
    padding: 2px 10px 4px;
    margin-bottom: 23px;
  }
  .halls_details_facility_txt{
    font-size: 14px;
  }


  /* 会館概要 */
  .halls_details_data{

  }
  * + .halls_details_data{
    margin-top: 60px;
  }

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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }
  .pg_company .section.sec3{

  }
  .pg_company .section.sec4{

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #153853;
  border-color: #888888;
  padding: 10px 10px;
  font-weight: 500;
}
.company_tbl .table_rows_th{
  background: #e4ecf3;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
  line-height: 1.88em;
}
.company_tbl .table_rows_td p{
  letter-spacing: 0.075em;
}

/* マップ */
.company_map{

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

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

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

/*沿革*/
.company_tbl.enkaku{

}
.company_tbl.enkaku .table_rows_th,
.company_tbl.enkaku .table_rows_td{
  border-color: #153853;
}
.company_tbl.enkaku .table_rows_th{
  background: #fff;
  background: none;
  border-color: #181818;
}
.company_tbl.enkaku .table_rows_td{
  background: none;
  border-color: #828282;
}

.company_tbl.works .table_rows_th,
.company_tbl.works .table_rows_td{

}
.company_tbl.works .table_rows_th{

}
.company_tbl.works .table_rows_td{

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

  .company_tbl.enkaku .table_rows_th,
  .company_tbl.enkaku .table_rows_td{
    border: none;

  }
  .company_tbl.enkaku .table_rows_th{
    border-top: 1px solid #181818;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 17px;
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }
  .company_tbl .table_rows_td .block:nth-child(n+2){
    margin-top: 26px;
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 60px;
  }
  .company_map iframe{
    height: 450px;
  }


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

  /*沿革*/
  .company_tbl.enkaku{

  }
  .company_tbl.enkaku .table_rows_th,
  .company_tbl.enkaku .table_rows_td{
    border: none;

    padding: 24px 13px 20px;
  }
  .company_tbl.enkaku .table_rows_th{
    border-top:1px solid #181818;
  }
  .company_tbl.enkaku .table_rows_td{
    border-top:1px solid #828282;
    padding-left: 19px;
  }
  .company_tbl.enkaku .table_rows_tr:last-child .table_rows_th{
    border-bottom:1px solid #181818;
  }
  .company_tbl.enkaku .table_rows_tr:last-child .table_rows_td{
    border-bottom:1px solid #828282;
  }

  .company_tbl.works .table_rows_th,
  .company_tbl.works .table_rows_td{

  }
  .company_tbl.works .table_rows_th{
    border-top: 1px solid #153853;
  }
  .company_tbl.works .table_rows_td{
    border-top: 1px solid #5984a5;
  }
}
@media (min-width:1024px){


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16px 13px 16px;
  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{
    padding-left: 18px;
  }

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

}
@media (min-width:1470px){
  .company_tbl.enkaku .table_rows_td{
    padding-left: 5px;
  }

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


}




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

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

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

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

@media (max-width:767px){

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

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

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

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

  }

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

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

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

  }

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

}









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

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

.checkArea input[type=checkbox]{
  margin-right: 5px;
}
.formWrap .checkArea .d-inline-block{
  margin-right: 26px;
}
@media (max-width:1023px){

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

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

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


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

/* フォーム */
.formTbl{
  border: 1px solid #7e7e7e;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #7e7e7e;
}
.formTh {
  padding: 12px 15px 16px 20px;
  background: #e6eaee;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
  ;
}
.formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.formTd.a-center{
  display: flex;
  align-items: center;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;

}
.formTd input[name="year"]{
  max-width: 70px;
  margin-right: 11px;
}
.formTd input[name="month"],
.formTd input[name="day"],
.formTd input[name="calear"]{
  max-width: 42px;
  margin-right: 11px;
}
.formWrap .formTd.calear .d-inline-block{
  margin-left: 28px;
}
.formWrap .formTd.calear input[type=checkbox],
.formWrap .formTd.sex input[type=radio]{
  margin-right: 5px;
}
.formWrap .formTd.sex{
  display: flex;
  align-items: center;
}
.formWrap .formTd.sex .d-inline{
  margin-right: 31px;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 55px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
}
.formWrap .privacyLabel a{
  color: #13b5b1;
}
.formBtn.formSend {
  display: block;
  min-width: 200px;
  max-width: 100%;
  /*width: 100%;*/
  width: auto;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  border: 0;
  /*border: 1px solid transparent;*/
  border-bottom: 1px solid var(--main-color);
  background: none;
  /* border-radius: 27px; */
  color: #181818;
  padding: 5px 30px 8px;
  margin: 5px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;

}
.formBtn.formSend:after{
  /*content: "\f105";
  font-family: "fontAwesome";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 23px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;*/
  content: "";
  width: 15px;
  aspect-ratio: 15 / 9;
  background: var(--main-color);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.formBtn.formSend:hover{
  transform: scale(1.02);
  color: var(--main-color);
}
.formBtn.formSend:hover:after{

}

.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 28px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}

@media only screen and (min-width: 768px){
  .formTd {
    align-content: center;
  }
}
@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 29px;
  font-weight: 500;
  color: #153853;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding: 8px 15px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  border-left: 6px solid var(--sub-color);;
  color: #153853;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt p{
  letter-spacing: 0.04em;
}

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

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

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

.contact_tt.privacy {
  margin-bottom: 46px;

}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}

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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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



  .contact_info_bg {
    padding: 18px 10px;
  }

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

  .privacy_box{
    padding: 30px 10px;
  }
  .formTd.born .selectArea{
    display: flex;
    align-items: center;
  }
}

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

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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
/*  .body_large-group .pg_plan .section.sec5{
    padding-bottom: 50px;
  }*/
}
@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){


}
