@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  /*color: #383838;*/
  color: #181818;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
}
@media (max-width:782px){
  body.admin-bar{
  }
}

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 1;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  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);
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
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%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{

}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{

}
.tbl td{

}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}



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

.anchor {
  position: relative;
  top: -50px;
}
@media (min-width: 768px){
  .anchor {
	  top: -100px;
	}
}
@media (min-width: 1024px){
  
}
@media (min-width: 1200px){
  
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  /*width: 1140px;*/
  /*width: 1200px;*/
  padding: 0 15px;
  margin: 0 auto;
}
.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
/*@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}
@media (min-width: 768px){
  .container {
    width: 720px;
  }
}
@media only screen and (min-width:992px){
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px){
  .container {
    width: 1230px;
  }
}*/

@media (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}
@media (min-width: 768px){
  .container {
    width: 720px;
  }
}
@media only screen and (min-width:992px){
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px){
  .container {
    width: 1230px;
  }
}

/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{

}
.listbox .item .date{

}
.listbox .item .txt{

}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  position: relative;
}
header:before{
  content: "";
  background: url(/img/header_haikei.png)no-repeat center center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
header .hdr1{
  margin-top: -2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .hdr1 .hdr_logo{
  padding: 10px 44px;
  margin-top: -5px;
  width: 45%;
}
.pg_header{
  background-repeat: no-repeat;
  background-position: bottom center;
  height: 310px;
}
.pg_header .container{
  padding-top: 80px;
}

/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*width: 1067px;*/
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 17px 0 33px;
}
.gnav > ul > li{
  position: relative;
  padding: 0 13px;
  border-left: 1px solid;
}
.gnav li:first-child{
  border-left: none;
}
.gnav li:last-child{
  border-left: none;
}
.gnav li a{
  font-family: Noto Serif JP;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.075em;
  display: block;
  line-height: 1;
  white-space: nowrap
}
/*.gnav li a:after{
  content: "";
  border-right: 1px solid;
  padding-right: 15px;
}
.gnav li:last-child a:after{
  border-right: none;
}*/
.gnav li a:hover{
  text-decoration: none;
  color: #f39800;
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}
header .orange{
  padding: 0
}
header .orange a{
  width: 120px;
  font-family: Noto Serif JP;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.25;
  color: #fff;
  background: #f39800;
  text-align: center;
  padding: 20px 0 17px;
}
header .orange a:hover{
  background: #ffa000;
  color: #FFF;
}


.mv{
  position: relative;
  height: 880px;

  /*background: #CCC;*/
  /*  background-image: url('/img/mv1.png');*/
  /*background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;*/

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.mv .mv_box{

}
.mv .mv_box .txt{
  position: absolute;
  top: 262px;
  right: 293px;
  font-family: Noto Serif JP;
  font-weight: 500;
  font-size: 100px;
  letter-spacing: 0.2em;
  line-height: 0.85;
  writing-mode: vertical-rl;
  color: #fff;
  text-shadow: 1px 1.732px 3.96px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.mv .mv_box .txt span{
  margin-top: -47px;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.1em;
}
.mv .mv_box .slider{
  width: 100%;
  height: 880px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
.mv .mv_box .img img{
  width: 100%;
  object-fit: cover;
}
.mv .mv0{
  position: absolute;
  bottom: -1px;
}

.mv .slide_dots{
  display: flex;
  align-items: center;
  order: 2;
}
.mv .slide_dots li{
  font-size: 0;
  margin: 0 2.5px;
}
.mv .slide_dots li button,
.mv .slide_dots li button:before{
  width: 30px;
  height: 5px;
  font-size: 0;
  border: 0;
  border-radius: 0;
}
.mv .slide_dots li button:before{
  background: #e5e5e5;
  content: "";
  display: block;
}
.mv .slide_dots li.slick-active button:before {
  opacity: 1;
  background: #daecbc;
}
.mv_activate {
  width: 100%;
  padding: 0 15px;
  position: absolute;
  right: 0;
  bottom: -20px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.mv_activate .arrow-prev{
  margin-right: 10px;
  order: 1;
}
.mv_activate .arrow-next{
  margin-left: 10px;
  order: 3;
}
.mv .arrow-prev,
.mv .arrow-next{
  padding: 0;
  background: inherit;
  cursor: pointer;
}


@media only screen and (max-width: 767px){
  .gnav.active {
    transform: translateX(0%);
    text-align: center;
  }
  .gnav{
    margin-top: 3px;
    width: 100%;
    padding: 15px 0;
  }
  .gnav > ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 0 15px;
  }
  .gnav > ul > li{
    position: relative;
    padding: 0 13px;
    border-left: 1px solid;
  }
  .gnav li:first-child{
    border-left: none;
  }
  .gnav li a{
    font-family: Noto Serif JP;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.075em;
    display: block;
    line-height: 1;
  }
  .gnav li:last-child{
    padding: 10px 0;
  }
  header .orange a{
    width: 100%;
    padding: 10px 0;
  }
}
@media(max-width:767px){
  .pg_header{
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 150px;
  }
  .pg_header .container{
    padding-top: 50px;
  }
  .gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(200%);
    padding: 15px;
    margin-top: 0;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav > ul{
    display: block;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px dashed #CCC;
  }
  .gnav > ul > li + li,
  .gnav > ul > li:first-child,
  .gnav > ul > li:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav > ul > li a{
    padding: 10px 0;
  }
  .gnav .children, .gnav .sub-menu{
    display: block;
    position: static;
    background: #EEE;
  }
  header .hdr1{
    flex-wrap: wrap;
    margin-top: 0px;
    width: 100%;
  }
  .pg_slug_front-page header .hdr1 .hdr_logo{
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  header .hdr1 .hdr_logo{
    padding: 20px 0 15px;
    width: 100%;
    text-align: center;
  }
  header .hdr_logo a img{
    width: 150px;
  }
  .mv{
    height: 35svh;
    min-height: 250px;
  }
  .mv .mv_box .txt{
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    right: 20px;
    font-size: 35px;
  }
  .mv .mv_box .txt span{
    margin-top: -35px;
    font-size: 17px;
  }
  .mv .mv_box .img img{
    height: 35svh;
    min-height: 250px;
  }
  .gnav > ul.ftr_logos{
    display: flex;
    flex-wrap: wrap;
  }
  .gnav > ul.ftr_logos > li{
    width: 50%;
    border-bottom: 0;
  }
  
  
}
@media (min-width: 768px) and (max-width: 1023px) {
  /*ナビゲーション*/
  .gnav.tb {
    display: flex!important;
    position: fixed;
    left: 100%;
    z-index: 1000000000;
    height: 0;
    /* background: #47a3cd; */
    /* padding: 20px 15px; */
    font-size: 16px;
    overflow: hidden;
    border-radius: 15px;
    transition: all 1.8s;
    opacity: 0;
    background: #eaeaea;
    box-shadow: 0 0 4px 0px #666;
  }
  .gnav .gnav_box1{
    padding: 5px;
    text-align: center;
  }
  .gnav .gnav_box2{
    padding: 5px;
    text-align: center;
  }
  header .gnav_open,
  .gnav .gnav_box2 .gnav_open{
    font-size: 12px;
    line-height: 1;
    margin: 0;
    text-align: center;
    text-decoration: none;
  }
  header .gnav_open i,
  .gnav .gnav_box2 .gnav_open i{
    font-size: 28px;
    background: inherit;
    margin: 0;
  }
  header .gnav_open{
    margin-right: 30px;
    display: inline-block;
    vertical-align: middle;
  }
  .gnav .inner{

  }
  .gnav.tb.active{
    align-items: flex-start;
    left: 50%;
    right: inherit;
    top: 50%;
    height: auto;
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .gnav ul > li {
    width: 25%;
    padding: 100px 10px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.075em;
    text-align: center;
    color: #181818;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border-right: 1px solid #9f9f9f;
  }
  .gnav ul > li:hover{
    background: #cacaca;
    opacity: 1;
    text-decoration: none;
  }
  .gnav ul > li a{
    width: 100%;
    height: 100%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .gnav {
    align-items: center;
    font-size: 20px;
    width: calc(100% - 60px);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .gnav.active,
  .gjs-dashed .gnav {
    top: 50%;
    left: 30px;
    right: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .gnav.active .inner ul{
    display: flex;
    flex-wrap: wrap;
    border-radius: 0;
    /*border: 1px solid #000;*/
    border-right: 1px solid #9f9f9f;
    border-left: 1px solid #9f9f9f;
    background: #eaeaea;
  }

  .gnav .gnav_box1{
    width: 65px;
    padding: 30px 0;
    /**/
  }
  .gnav_box1 .hdr_sns{
    margin: 0;
    display: block;
  }
  .gnav_box1 .hdr_sns + .hdr_sns{
    margin-top: 15px;
  }
  .gnav .gnav_box2{
    width: 65px;
    padding: 30px 0;
    /**/
  }
  .gnav .inner{
    width: calc(100% - 65px - 65px);
  }
  .gnav .gnav_box1 .hdr_sns img{
    /*width: 35px;*/
  }
  .gnav .gnav_box2 .hdr_menu.gnav_open{
    font-size: 12px;
  }
  .gnav .gnav_item a{
    width: 100%;
    height: 100%;
    display: flex!important;
    align-items: center;
    justify-content: center;
  }
  .gnav ul > li:nth-last-child(n+5) {
    border-bottom: 1px solid #9f9f9f;
  }
  .gnav ul > li:nth-child(4n){
    border-right: 0;
  }

  .gnav .gnav_item:hover {
    opacity: 1;
  }
  .gnav .gnav_item:hover p{
    opacity: 0.8;
  }
  .gnav li:after{
    display: none;
  }
  header .orange{
    display: inline-block;
    vertical-align: middle;
  }
}
@media(min-width:768px){
  body{
    margin-top: 58px;
  }
  header{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
  }
  header .hdr1 .hdr_logo{
    padding: 0 10px;
    margin-top: 0px;
    width: auto;
  }
  .gnav > ul{
    padding: 0 0 0 15px;
  }
  .gnav > ul > li{
    padding: 0 5px;
  }
  .gnav li a{
    font-size: 11px;
  }
  .mv{
    height: 60svh;
  }
  .mv .mv_box .txt{
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    right: 70px;
    font-size: 77px;
  }
  .mv .mv_box .txt span{
    margin-top: -30px;
    font-size: 30px;
  }
  .mv .mv_box .img img{
    height: 60svh;
  }
  .mv_activate {
    padding: 0 50px;
    bottom: 0;
  }
  .mv .slide_dots li button,
  .mv .slide_dots li button:before {
    width: 40px;
  }
  header .orange a{
    width: auto;
    display: block;
    padding: 10px 20px;
  }
}
@media(min-width:1024px){
  header .hdr1{
    width: 100%;
  }
  .gnav > ul > li{
  }
  .gnav > ul > li.sp + li{
    border-left: 0;
  }
  .gnav > ul > li:last-child{
  }
  .gnav li a{
    font-size: 12px;
  }
  .gnav li{

  }
  .gnav li:last-child{
    padding: 0 0 0 10px;
  }
  header .orange a{
    width: 120px;
    padding: 23px 0 17px;
  }
  .mv_activate {
    padding: 0 100px;
    bottom: 10px;
  }
  .mv .slide_dots li button,
  .mv .slide_dots li button:before {
    width: 50px;
  }
}
@media(min-width:1200px){
  body{
    margin-top: 75px;
  }
  header .hdr1 .hdr_logo{
    padding: 3px 44px 0;
    margin-top: -5px;
    width: 45%;
  }
  .gnav > ul{
    margin: 0;
    padding: 0 0 0 30px;
  }
  .gnav > ul > li{
    padding: 0 14px;
  }
  .gnav li a{
    font-size: 16px;
  }
  .mv{
    height: 90vh;
  }
  .mv .mv_box .txt{
    right: 293px;
    font-size: 100px;
  }
  .mv .mv_box .txt span{
    margin-top: -47px;
    font-size: 32px;
  }
  .mv .mv_box .img img{
    height: 90vh;
  }
  .mv_activate {
    padding: 0 146px;
    bottom: 47px;
  }
}
@media(min-width:1500px){
  .mv{
    height: 884px;
  }
  .mv .mv_box .img img{
    height: 884px;
  }
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  margin-top: 271px;
  position: relative;
  z-index: 1;
}
footer:before{
  content: "";
  background: url(/img/footerb.png)no-repeat center center;
  position: absolute;
  height: 1460px;
  top: -120px;
  bottom: 0;
  width: 100%;
  z-index: -1;
}

footer .ftr1{
  text-align: center;
  margin-bottom: 30px;
}
footer .ftr1 .logos{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid;
  padding-bottom: 40px;
}
footer .ftr1 .logo1,
footer .ftr1 .logo2{
  padding: 0 17px;
}
footer .ftr1 .logo1{
  width: 30%;
}
footer .ftr1 .logo2{
  width: 20%;
}
footer .ftr1 .address{
  margin-top: 32px;
  line-height: 2;
}
footer .ftr1 .address,
footer .ftr2 .access{
  font-family: Noto Serif JP;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
}
footer .ftr2{
  margin-top: 40px;
}
footer .ftr2 .map{
  text-align: center;
}
footer .ftr2 .map iframe{
  width: 100%;
}
footer .ftr2 .access{
  margin-top: 30px;
  text-align: center;
}
footer .ftr2 .access .text1{
  margin-top: 3px;
}
footer .ftr2 .access .text2{
  margin-top: 4px;
}
footer .ftr3{
  margin-top: 45px;
}
footer .ftr3 .ftr_links,
footer .ftr3 .ftr_logos{
  display: flex;
  justify-content: center;
  font-family: Noto Serif JP;
  font-weight: 500;
}
footer .ftr3 .ftr_links{
  border-top: 1px solid;
  padding-top: 50px;
  font-size: 15px;
  letter-spacing: 0.2em;
}
footer .ftr3 .ftr_logos{
  margin-top: 38px;
  font-size: 14px;
  letter-spacing: 0.075em;
}
footer .ftr3 .ftr_links li{
  border-right: 1px solid #c9c9c9;
  text-align: center;
  line-height: 1;
  padding: 0 15.5px;
}
footer .ftr3 .ftr_logos li{
  text-align: center;
  padding: 0 20.5px;
}
footer .ftr3 .ftr_logos li a{
  padding-top: 8px;
  line-height: 2.3;
  display: inline-block;
  width: 120px;
  height: 93px;
}
footer .ftr3 .ftr_logos li a .name{
  line-height: 1.5;
}
footer .ftr3 .ftr_logos .b1{
  background: url(/img/logob1.png)no-repeat center center;
}
footer .ftr3 .ftr_logos .b2{
  background: url(/img/logob2.png)no-repeat center center;
}
footer .ftr3 .ftr_logos .b3{
  background: url(/img/logob3.png)no-repeat center center;
}
footer .ftr3 .ftr_logos .b4{
  background: url(/img/logob4.png)no-repeat center center;
}
footer .ftr3 .ftr_logos .b5{
  background: url(/img/logob5.png)no-repeat center center;
  width: 137px;
}
footer .ftr3 .ftr_logos .b6{
  background: url(/img/logob6.png)no-repeat center center;
}
footer .ftr3 .ftr_links li:first-child{
  border-left: 1px solid #c9c9c9;
}
footer .ftr3 .ftr_logos .b2 .img,
footer .ftr3 .ftr_logos .b3 .img,
footer .ftr3 .ftr_logos .b4 .img,
footer .ftr3 .ftr_logos .b6 .img{
  margin-top: 5px;
}
footer .ftr3 .ftr_logos .b2 .name,
footer .ftr3 .ftr_logos .b3 .name,
footer .ftr3 .ftr_logos .b4 .name,
footer .ftr3 .ftr_logos .b6 .name{
  margin-top: 7px;
}
footer .ftr3 .ftr_logos .b5 .name{
  margin-top: 9px;
}
footer .ftr3 .ftr_logos .b3 .name,
footer .ftr3 .ftr_logos .b4 .name,
footer .ftr3 .ftr_logos .b5 .name{
  letter-spacing: 0;
}

footer .copy{
  margin-top: 30px;
  text-align: center;
  font-family: Noto Serif JP;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.075em;
  padding: 20px 0 25px;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.btn1b{
  width: 42%;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 35%;
}
.footer_fix ul li.btn2{
  width: 20%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px 5px;
  background: #918b78;
  color: #FFF;
  text-decoration: none;
}
@media(max-width:767px){
  footer{
    padding-top: 50px;
    padding-bottom: 20px;
    margin-top: 50px;
  }
  footer:before{
    height: 100%;
    top: 0;
  }
  footer .ftr1{
    margin-bottom: 5px;
  }
  footer .ftr2{
    margin-top: 5px;
  }
  footer .ftr1 .logos{
    padding-bottom: 10px;
  }
  footer .ftr1 .address{
    margin-top: 5px;
  }
  footer .ftr1 .logo1{
    width: 100%;
  }
  footer .ftr1 .logo2{
    width: 50%;
  }
  footer .ftr1 .address,
  footer .ftr2 .access{
    font-size: 14px;
  }
  footer .ftr2 .map iframe{
    width: 90%;
    height: 200px;
  }
  footer .ftr2 .access{
    margin-top: 10px;
  }
  footer .ftr3{
    margin-top: 10px;
    display: none;
  }
  footer .ftr3 .ftr_links,
  footer .ftr3 .ftr_logos{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  footer .ftr3 .ftr_links{
    padding-top: 10px;
  }
  footer .ftr3 .ftr_links li{
    width: 50%;
    padding: 7px 14px;
  }
  footer .ftr3 .ftr_links li,
  footer .ftr3 .ftr_links li:first-child{
    border: none;
    text-align: start;
  }
  footer .ftr3 .ftr_logos li{
    padding: 10px 20.5px;
  }
  .footer_fix{
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #e5d3ae;
    z-index: 10;
  }
  footer .copy{
    margin-top: 10px;
    padding-bottom: 0;
  }
  .gnav > ul.ftr_logos{
    padding: 0;
  }
  body{
    padding-bottom: 50px;
  }
  
  .footer_fix ul{
    font-size: 12px;
  }
  .btn a{
    font-size: 14px;
    letter-spacing: 0;
  }
}
@media(max-width:320px){
  .footer_fix ul{
    font-size: 10px;
  }
  .btn a{
    font-size: 13px;
    letter-spacing: 0;
  }
}
@media(min-width:768px){
  footer .ftr1 .logo1{
    width: 35%;
  }
  footer .ftr3 .ftr_links,
  footer .ftr3 .ftr_logos{
    font-size: 12px;
  }
  footer .ftr3 .ftr_links li{
    padding: 0 6px;
  }
  footer .ftr3 .ftr_logos li{
    padding: 0 0.5px;
  }
}
@media(min-width:1024px){
  footer .ftr1 .logo1{
    width: 32.5%;
  }
  footer .ftr3 .ftr_links li{
    padding: 0 10px;
  }
  footer .ftr3 .ftr_logos li{
    padding: 0 5.5px;
  }
}
@media(min-width:1200px){
  footer .ftr1 .logo1{
    width: 30%;
  }
  footer .ftr3 .ftr_links{
    font-size: 15px;
  }
  footer .ftr3 .ftr_links li{
    padding: 0 15.5px;
  }
  footer .ftr3 .ftr_logos{
    font-size: 14px;
  }
  footer .ftr3 .ftr_logos li{
    padding: 0 20.5px;
  }
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{

}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{

}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}



/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{

}
.search_list .item + .item{

}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 145px;
  bottom: 260px;
  width: 125px;
  text-align: center;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 125px;
  display: block;
  opacity: 1;
}
.pagetop a:hover{
  text-decoration: none;
  opacity: 1;
}
.pagetop a .text{
  text-align: center;
  font-family: Noto Serif JP;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.075em;
  background: #59493f;
  color: #fff;
  margin-top: 3px;
  padding: 5px 27px;
}
.pagetop i{
  background: none;
}
@media(max-width:767px){
  .pagetop{
    right: 10px;
    bottom: 70px;
    width: 50px;
    text-align: center;
  }
  .pagetop a{
    display: block;
    font-size: 0;
    width: 50px;
  }
  .pagetop a .text{
    font-size: 9px;
    padding: 5px;
  }
  .pagetop a img{
    width: 30px;
  }
}
@media(min-width:768px){
  .pagetop{
    right: 30px;
    bottom: 50px;
    width: 95px;
  }
  .pagetop a{
    width: 95px;
  }
  .pagetop a .text{
    font-size: 12px;
    padding: 5px 17px;
  }
  .pagetop img{
    width: 50px;
  }
}
@media(min-width:1024px){
}
@media(min-width:1200px){
}
@media(min-width:1920px){
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.contact_form th,
.contact_form td{
  padding: 14.5px 10px 17.25px 27px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  background: #f0f0f0;
  width: 313px;
}
.contact_form th .require{
  display: inline-block;
  margin-top: 2px;
  padding: 6px 12px 7px;
  color: #FFF;
  background: #b80000;
  font-size: 13px;
  font-weight: normal;
  float: right;
  line-height: 1;
}
.contact_form th .unrequire.require {
  display: inline-block;
  padding: 2px 5px;
  color: #b80000;
  background: #FFF;
  font-size: 14px;
  font-weight: normal;
  float: right;
  border: solid 1px #b80000;/*線*/
  line-height: 1.5;
  padding-left: 10px;
  padding-right: 10px;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{

}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{

}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 500px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 150px;
  border: solid 1px #d6d8d8;
}
.contact_form td [name="addr1"]{
  width: 230px;
  height: 35px;
  padding-left: 6px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}

.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}
.posthumous_item{
  display: flex;
  flex-wrap: nowrap;
}

.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/


.contact_form_acceptance{
  text-align: center;
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: url(/img/btn.png)no-repeat center center;
  font-family: Noto Serif JP;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 15px 0;
  width: 340px;
  position: relative;
  border: none;
}
.contact_form_btns input[type="submit"]:before,
.contact_form_btns input[type="button"]:before{
 background: red; 
}
.contact_form_btns input[type="submit"]:before,
.contact_form_btns input[type="button"]:before,
.contact_form_btns input[type="submit"]:after,
.contact_form_btns input[type="button"]:after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.contact_form_btns input[name="submitBack"]{
  background: #ccc;
}
/*.contact_form_btns input[type="submit"]:before,
.contact_form_btns input[type="button"]:before{
  background: url(/img/btn_left.png)no-repeat center center;
  padding: 11px;
  left: 33px;
}
.contact_form_btns input[type="submit"]:after,
.contact_form_btns input[type="button"]:after{
  background: url(/img/btn_right.png)no-repeat center center;
  right: 29px;
  padding: 7px;
}*/
/*.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{

}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}*/
.contact_form_btns .contact{
  position: relative;
  transition: all .3s;
}
.contact_form_btns .contact:hover{
  filter: invert(1);
}

.contact_form_btns .contact:before{
  content: "";
  display: inline-block;
  background: url(/img/btn_left.png) no-repeat center center;
  padding: 11px;
  left: 33px;
  width: 21px;
  height: 21px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  transition: all .3s;
}
.contact_form_btns .contact:hover:before{
  transform-origin: center center; 
  transform: translateY(-50%) rotate(180deg);
}
/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{

}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;

  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_items .item .txt{

}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{

}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


.breadcrumb{
  margin: 25px -62px 105px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-family: Noto Serif JP;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.075em;
  /*overflow-x: auto;*/
}
.breadcrumb li{
  display: inline;
  white-space: normal;
}
.breadcrumb li + li{
  margin-left: 6px;
}
.breadcrumb li:last-child{
  /*font-weight: 500;*/
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
  display: block;
  /*width: 70px;*/
}
.breadcrumb li a:after{
  content: "＞";
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb li span{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.breadcrumb li:first-child a{
  /*padding-left: 15px;*/
}
@media(max-width:767px){
  .breadcrumb{
    margin: 0px 0px 50px;
  }
  .contact_form_btns input[type="submit"], .contact_form_btns input[type="button"]{
    width:280px;
    background-size: contain;
  }
  
  .contact_form_btns input[name="submitBack"]{
 margin-top: 30px;
}
}
@media(min-width:768px){
  .breadcrumb{
    margin: 15px 0px 50px;
  }
  
  .contact_form_btns input[name="submitBack"]{
 margin-left: 30px;
}
}
@media(min-width:1024px){
}
@media(min-width:1200px){
  .breadcrumb{
    margin: 25px -62px 105px;
  }
}

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 50px;
}

.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{
  font-family: Noto Serif JP;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-align: center;
  background: url(/img/tt2.png)no-repeat center center;
  background-size: contain;
  padding: 32px 0 50px;
}
.tt2 span{

}
.tt3{

}
.tt3 span{

}
.tt4{

}
.tt4 span{

}
.tt5{

}
.tt5 span{

}

@media(max-width:767px){
  .tt2{
    font-size: 18px;
    /*padding: 10px 0 20px;*/
    padding: 12px 0 42px;
    margin-bottom: 15px;
  }
}
@media(min-width:768px){
}
@media(min-width:1024px){
}
@media(min-width:1200px){
}

/* 詳しく見る サンプル */
.read_more{

}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
/*ボタン*/
.btn{
  text-align: center;
}
.btn a{
  display: inline-block;
  background: url(/img/btn.png)no-repeat center center;
  background-size: 100% 100%;
  font-family: Noto Serif JP;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 15px 0;
  max-width: 340px;
  width: 100%;
  position: relative;
  transition: 0.2s all;
}
.btn a:before,
.btn a:after{
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all;
}
.btn a:before{
  background: url(/img/btn_left.png)no-repeat center center;
  padding: 11px;
  left: 33px;
}
.btn a:after{
  background: url(/img/btn_right.png)no-repeat center center;
  right: 29px;
  padding: 7px;
}

.btn a:hover{
  filter: invert(1);
}
.btn a:hover:before{
  /*transform-origin: center center;*/
  transform: translateY(-50%) rotate(180deg);
}
.btn a:hover:after{
  margin-right: -5px;
}
.believers_moushikomi .item .btn a img{
  transition: 0s all;
}
.believers_moushikomi .item .btn a:hover img{
  filter: invert(1);
}

.btn00 a{
  /*font-size: 13px;*/
  letter-spacing: 0;
}
.btn00 a:before{
  left: 22px;
}

.pg_nav_selecter{
  display: none;
}
@media(max-width:767px){

  .pg_nav_selecter + .treasure_items{
    display: none !important;
  }
  .pg_nav_selecter + .pg_hall_items{
    display: none !important;
  }
  .pg_nav_selecter{
    display: block;
    /*margin-bottom: 30px;*/
    margin: -15px -15px 0;
    padding: 0 15px;
    background: #f5f1eb;
  }
  .pg_nav_selecter select{
    width: 100%;
    padding: 10px 10px;
    height: 50px;
  }

}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{

}
.pg_home .section#sec1{
  margin-top: 125px;
}
.pg_home .section#sec2{
  position: relative;
  margin-top: 272px;
  background: url(/img/top_bg1-3.jpg) left top;
}
.pg_home .section#sec3{
  margin-top: 327px;
}
.pg_home .section#sec2:before{
  content: "";
  /*background: url(/img/top_haikei2.png)no-repeat top center;
  background-position: center top;
  background-size: auto 100%;*/
  width: 100%;
  height: 30px;
  background: url(/img/top_bg1-1.jpg) no-repeat center top / 100% 100%;
  position: absolute;
  z-index: -1;
  top: -30px;
  left: 0;
}
.pg_home .section#sec2:after{
  content: "";
  width: 100%;
  height: 30px;
  background: url(/img/top_bg1-2.jpg) no-repeat center bottom / 100% 100%;
  position: absolute;
  z-index: -1;
  bottom: -30px;
  left: 0;
}



.top_news{
  margin: 0 -5px;
}
.top_news .category_list{
  margin-top: 50px;
}
.top_news .post_items{
  margin-top: 50px;
  display: none;
}
.top_news .post_items.on{
  display: block;
}
.top_news .post_item:nth-child(n+5){
  display: none;
}
.top_news .btn{
  margin-top: 50px;
}

.top_buddhist{
  margin-top: 144px;
}
.top_about .set,
.top_buddhist .set{
  position: relative;
}
.top_about .img{
  margin-top: 27px;
}
.top_buddhist .img{
  text-align: end;
  margin-top: 28px;
}
.top_about .text,
.top_buddhist .text{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: justify;
  width: 530px;
  height: 400px;
  position: absolute;
  z-index: 1;
}



.top_about .text{
  background: url(/img/about2.png) no-repeat center center;
  background-size: contain;
  bottom: -50px;
  right: 0px;
  padding: 105px 103px 0 127px;
}
.top_buddhist .text{
  background: url(/img/buddhist2.png) no-repeat center center;
  background-size: contain;
  bottom: -60px;
  left: -15px;
  padding: 168px 40px 0 67px;
}
.top_about .text:before,
.top_buddhist .text:before{
  content: "";
  position: absolute;
  background-size: contain;
}
.top_about .text:before{
  background: url(/img/about3.png) no-repeat center center;
  background-size: contain;
  top: -70px;
  right: 98px;
  width: 90px;
  height: 159px;
}
.top_buddhist .text:before{
  background: url(/img/buddhist3.png) no-repeat center center;
  background-size: contain;
  top: -107px;
  left: 15px;
  width: 234px;
  height: 240px;
}
.top_about .btn{
  margin-top: 68px;
}
.top_buddhist .btn{
  margin-top: 52px;
}
.top_list{
  margin: 122px -75px 0;
  display: flex;
  flex-wrap: wrap;
}
.top_list .item{
  width: 50%;
  padding: 0 30px;
}
.top_list .inner{

}
.top_list .img{
  margin-top: 18px;
  position: relative;
}
.top_list .img1:before,
.top_list .img2:before{
  content: "";
  position: absolute;
}
.top_list .img1:before{
  background: url(/img/top_multipurpose.png) no-repeat center center;
  background-size: contain;
  width: 162px;
  height: 142px;
  bottom: -19px;
  left: -2px;
}
.top_list .img2:before{
  background: url(/img/top_cemetery.png) no-repeat center center;
  background-size: contain;
  width: 201px;
  height: 135px;
  bottom: 0;
  right: -61px;
}
.top_list .text{
  margin-top: 21px;
  padding: 0 14px 0 23px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
}
.top_list .btn{
  margin-top: 33px;
}
.btn00 a{
  font-size: 13px;
}


.gallery{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.gallery .tt2,
.gallery .btn{
  width: 100%;
}
.gallery .img{
  margin-top: 48px;
  padding: 0 5px;
}
.gallery .img:nth-child(n+8){
  margin-top: 10px;
}
.gallery .btn{
  margin-top: 60px;
}
.sns{
  margin-top: 122px;
  display: flex;
  justify-content: center;
}
.facebook,
.instagram{
  width: 100%;
}
#fb-root,
.instagram .img{
  /*margin-top: 29px;*/
}
.fb_iframe_widget_fluid span iframe{
  width: 499px;
  height: 570px;
}
.facebook .btn,
.instagram .btn{
  margin-top: 20px;
}
.facebook .tt2{
  margin-bottom: 25px;
}
.instagram .tt2{
  margin-bottom: 14px;
}

#sb_instagram{
  padding-bottom: 0 !important;
}
#sb_instagram.sbi_col_3 #sbi_images{
  padding-bottom: 0 !important;
}

@media(max-width:767px){
  .pg_home .section#sec1{
    margin-top: 50px;
  }
  .pg_home .section#sec2,
  .pg_home .section#sec3{
    margin-top: 80px;
    padding-top: 40px;
  }
  .pg_home .section#sec2{
    padding-bottom: 50px;
  }
  .top_news .category_list{
    margin-top: 10px;
  }
  .top_news .post_items{
    margin-top: 20px;
  }
  .top_buddhist{
    margin-top: 70px;
  }
  .top_about .text,
  .top_buddhist .text{
    position: relative;
    background-size: contain;
    background-position: top center;
    width: 100%;
    font-size: 14px;
  }
  .top_about .text{
    margin-top: -40px;
    padding: 97px 20px 0;
    height:auto;
  }
  .top_buddhist .text{
    margin-top: -50px;
    padding: 120px 15px 0;
    height: 250px;
    left: 0;
  }
  .top_about .text:before{
    top: -10px;
    right: 10px;
    width: 50px;
    height: 100px;
  }
  .top_buddhist .text:before{
    top: -10px;
    left: 15px;
    width: 130px;
    height: 117px;
  }


  /* レスポンシブ用 */

  .top_about .text.resp,
  .top_buddhist .text.resp{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    right: 0;
    bottom: auto;
    font-size: 16px;
  }
  .top_about .text.resp{
    font-size: 16px;
    margin-top: 10px;
    padding-top: 30px;
    background: none;
  }
  .top_buddhist .text.resp{
    margin-top: -10%;
    padding-top: 75px;
  }
  .top_about .text.resp:after,
  .top_buddhist .text.resp:after{
    content: "";
    display: block;
  }
  .top_about .text.resp:after{
    /*padding-top: 75.90%;*/
  }
  .top_buddhist .text.resp:after{
    /*padding-top: 69.27%;*/
  }
  .top_about .text.resp .inner,
  .top_buddhist .text.resp .inner{
    line-height: 1.875;
    /*position: absolute;*/
    /*z-index: 1;*/
    position: static;
    /*padding-top: 20px;*/
  }
  .top_about .text.resp .inner{
    top: auto;
    left: 5%;
    right: 5%;
  }
  .top_buddhist .text.resp .inner{
    top: 35%;
    left: 5%;
    right: 5%;
  }
  .top_about .text.resp:before{
    top: -33%;
    right: 5%;
    width: 110px;
    height: 100px;
    background: url(/img/about3.png) no-repeat center top / 44% auto,
      url(/img/about2.png) no-repeat center bottom / contain;
  }
  .top_buddhist .text.resp{
    background: 0;
  }
  .top_buddhist .text.resp:before{
    top: -18%;
    left: 0;
    width: 126px;
    height: 113px;
    background: url(/img/buddhist3.png) no-repeat center center / 60% auto,
      url(/img/buddhist2.png) no-repeat center center / contain;
  }
  .top_about .text.resp .inner.ex{
    margin-top: 30px;
  }
  .top_about .btn.ex{
    margin-top: 40px;
  }

  .top_about .btn,
  .top_buddhist .btn{
    margin-top: 20px;
  }

  /**/
  .top_list{
    margin: 100px 0 0;
  }
  .top_list .item{
    width: 100%;
    padding: 0;
  }
  .top_list .item:nth-child(2){
    margin-top: 70px;
  }
  .top_list .img1:before{
    background-size: contain;
    width: 120px;
    height: 80px;
    bottom: 0px;
    left: 0px;
  }
  .top_list .img2:before{
    background-size: contain;
    width: 127px;
    height: 95px;
    bottom: 0;
    right: 0px;
  }
  .gallery .img{
    margin-top: 10px;
    padding: 0px;
  }
  .sns{
    flex-wrap: wrap;
  }
  .facebook,
  .instagram{
    padding: 0 10px;
    text-align: center;
  }
  .instagram{
    margin-top: 50px;
  }
  .fb_iframe_widget_fluid span iframe{
    width: 300px;
    height: 400px;
  }
}
@media(max-width:350px){
  .top_about .btn.ex {
      margin-top: 140px;
  }
  
  
}
@media(min-width:768px){
  .pg_home .section#sec1{
    margin-top: 35px;
  }
  .pg_home .section#sec2,
  .pg_home .section#sec3{
    margin-top: 100px;
  }
  .pg_home .section#sec2{
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .pg_home .section#sec2:before{
    height: 50px;
    top: -50px;
  }
  .pg_home .section#sec2:after{
    height: 50px;
    bottom: -50px;
  }
  .top_about .text,
  .top_buddhist .text{
    font-size: 14px;
    width: 55%;
    width: 60%;
  }
  .top_about .text{
    bottom: -170px;
    right: -30px;
    padding: 165px 40px 0;
  }
  .top_buddhist .text{
    bottom: -155px;
    left: -30px;
    padding: 185px 40px 0;
  }
  .top_about .text:before{
    top: 60px;
    right: 40px;
    width: 65px;
    height: 100px;
  }
  .top_buddhist .text:before{
    top: 10px;
    left: 10px;
    width: 155px;
    height: 185px;
  }
  .top_about .btn{
    margin-top: 155px;
  }
  .top_buddhist .btn{
    margin-top: 125px;
  }

  /*.top_about .text.resp{
    width: 527px;
    padding: 0;
    right: 0;
  }
  .top_about .text.resp:after{
    content: "";
    display: block;
    padding-top: 75.90%;
  }
  .top_about .text.resp .inner{
    position: absolute;
    z-index: 1;
    top: 26.5%;
    left: 24%;
    right: 19%;
  }
  .top_about .text.resp:before{
    top: -18%;
    right: 18%;
    width: 90px;
    height: 159px;
  }*/


  .top_list{
    margin: 122px -15px 0;
  }
  .top_list .item{
    width: 50%;
    padding: 0 15px;
  }
  .top_list .img1:before{
    width: 115px;
    height: 120px;
  }
  .top_list .img2:before{
    width: 150px;
    height: 105px;
    right: -30px;
  }
  .gallery .img{
    margin-top: 10px;
    width: 30.33%;
  }

  .sns{
    justify-content: space-between;
    margin-top: 100px;
  }
  .facebook,
  .instagram{
    width: 330px;
    padding: 0 0;
    text-align: center;
  }
  .facebook .btn,
  .instagram .btn{
    margin-top: 40px;
  }
  .facebook .fb_iframe_widget_fluid span,
  .facebook .fb_iframe_widget_fluid span iframe{
    height: 330px!important;
  }
}
@media(min-width:1024px){

  .pg_home .section#sec2{
    margin-top: 140px;
  }
  .pg_home .section#sec2:before{
    height: 148px;
    top: -148px;
  }
  .pg_home .section#sec2:after{
    height: 126px;
    bottom: -126px;
  }
  .pg_home .section#sec3{
    margin-top: 230px;
  }


  .top_about .text,
  .top_buddhist .text{
    width: 55%;
    font-size: 16px;
  }
  .top_about .text:before{
    top: 17px;
    right: 60px;
    width: 80px;
    height: 135px;
  }
  .top_buddhist .text:before{
    top: -10px;
    left: 10px;
    width: 190px;
    height: 200px;
  }
  .top_about .btn{
    margin-top: 175px;
  }
  .top_buddhist .btn{
    margin-top: 135px;
  }
  .top_list{
    margin: 122px -25px 0;
  }
  .top_list .item{
    padding: 0 25px;
  }
  .top_list .img1:before{
    width: 150px;
    height: 130px;
  }
  .top_list .img2:before{
    width: 180px;
    height: 125px;
  }

  .sns{
    /*justify-content: space-between;*/
  }
  .facebook,
  .instagram{
    /*padding: 0 0;*/
    /*text-align: center;*/
  }
  .facebook{
    width: 420px;
  }
  .instagram{
    width: 478px;

  }


  .facebook .fb_iframe_widget_fluid span,
  .facebook .fb_iframe_widget_fluid span iframe{
    height: 474px!important;
  }
}
@media(min-width:1200px){
  .pg_home .section#sec1{
    margin-top: 125px;
  }
  .pg_home .section#sec2{
    margin-top: 230px;
    padding-bottom: 108px;
  }
  .pg_home .section#sec2:before{
    height: 148px;
    top: -148px;
  }
  .pg_home .section#sec2:after{
    height: 176px;
    bottom: -176px;
  }
  .pg_home .section#sec3{
    margin-top: 254px;
  }
  .top_news{
  }
  .top_about{
  }
  .top_buddhist{
    margin: 144px 0 0;
  }
  .top_about .text{
    width: 57%;
    bottom: -50px;
    right: -80px;
    padding: 105px 182px 0 202px;
  }
  .top_buddhist .text{
    width: 42%;
    bottom: -60px;
    left: -4px;
    padding: 168px 24px 0 57px;
  }
  .top_about .text:before{
    top: -70px;
    right: 178px;
    width: 90px;
    height: 159px;
  }
  .top_buddhist .text:before{
    top: -105px;
    left: 4px;
    width: 234px;
    height: 240px;
  }
  .top_about .btn{
    margin-top: 68px;
  }
  .top_buddhist .btn{
    margin-top: 54px;
  }

  /*.top_about .text.resp{
    width: 527px;
  }
  .top_about .text.resp .inner{
    top: 26.5%;
    left: 24%;
    right: 19%;
  }
  .top_about .text.resp:before{
    top: -18%;
    right: 18%;
    width: 90px;
    height: 159px;
  }*/

  .top_list{
    margin: 122px -30px 0;
  }
  .top_list .item{
    padding: 0 30px;
  }
  .top_list .img1:before{
    width: 162px;
    height: 142px;
  }
  .top_list .img2:before{
    width: 201px;
    height: 135px;
    right: -61px;
  }
  .gallery .img{
    margin-top: 48px;
    width: 15%;
  }
  .gallery .img:nth-child(n+6){
    margin-top: 10px;
  }

  .sns{
  }
  .facebook,
  .instagram{
  }
  .facebook{
    width: 500px;
  }
  .instagram{
    width: 570px;
  }

  .facebook .fb_iframe_widget_fluid span,
  .facebook .fb_iframe_widget_fluid span iframe{
    height: 571px!important;
  }
  .facebook .fb_iframe_widget span,
  .facebook .fb_iframe_widget span iframe{
    height: 571px!important;
  }
}
@media(min-width:1920px){
  .gallery .img:nth-child(n+6){
    margin-top: 48px;
  }
  .gallery .img:nth-child(n+8){
    margin-top: 10px;
  }
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{

}
.pg_xxxx .section#sec1{

}
.pg_xxxx .section#sec2{

}
.pg_xxxx .section#sec3{

}
@media(max-width:767px){
  .btn a{
    font-size: 14px;
    letter-spacing: 0;
  }
  .btn00 a:before{
    left: 18px;
  }
  .pg_treasure .treasure_items.gakusya .item:first-child{
    margin-top: 0;
  }
  .footer_fix ul li a{
    padding: 10px 0;
  }
  .btn2 i{
    padding-right: 5px;
  }
  
  .pg_treasure .treasure_items{
    margin: 0;
  }
   .pg_treasure .treasure_items.terashi .item:first-child {
    margin-top: 40px;
  }
  .pg_treasure .section#sec3 .treasure_items .item:first-child,
  .pg_treasure .section#sec4 .treasure_items .item:first-child{
    margin-top: 0;
  }
  .pg_treasure .section#sec4 .secondtop{
   margin-top: 70px; 
  }
  .pg_treasure .section#sec3 .treasure_items.top .item:first-child{
   margin-top: 80px;   
  }
  header .hdr1 .hdr_logo{
    margin-top: 0;
  }
  .top_news{
    margin: 0;
  }
  
  .anchor#believers{
    position: relative;
    top: -50px;
  }
}

@media(max-width:336px){
  .btn a{
    font-size: 13px;
    letter-spacing: 0;
  }
  .btn00 a:before{
    left: 14px;
  }
  .footer_fix ul li a{
    padding: 10px 0;
  }
  
 
  .pg_treasure .section#sec3 .treasure_items{
    margin: 0;
  }
  
 
  
}

@media(min-width:768px){
  .pg_treasure .section#sec3 .treasure_items{
    margin: 0 -30px;
  }
  
  .anchor#believers{
    position: relative;
    top: -150px;
  }
}
@media(min-width:1024px){
}
@media(min-width:1200px){
}

/*パスワードページ*/
.pg_password h2{
  display: none;
}
.pg_password .post-password-form p{
  text-align: justify;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.pg_password .post-password-form p + p{
  width: 100%;
}
.pg_password .post-password-form label[for="pwbox-9"]{
  margin-top: 30px;
  display: block;
  text-align: center;
}
.pg_password input[name="post_password"]{
  max-width: 350px;
  width: 100%;
  height: 50px;
  border: 1px solid;
  padding: 10px;
  border-radius: 0;
  display: block;
  margin: 10px auto 0;
}
.pg_password input[name="Submit"]{
  width: 250px;
  height: 50px;
  padding: 10px;
  margin: 40px auto 0;
  border-radius: 0;
  border: 1px solid;
  letter-spacing: 0.1em;
  display: block;
}
