/*
Theme Name: Dharma world
Theme URI: 
Text Domain: Dharma world
Version: 2.0
Description: Dharma world Theme
Author: kk
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/*-------------------------------------------------
common
--------------------------------------------------*/
html {
  font-size: 62.5%;
}
body {
  font-family: Arial, "sans-serif";
  line-height: 1.6;
  color: #000;
  font-size: 1.6rem;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  /*width: 100%;*/
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
a:link {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.op:hover {
  opacity: 0.8;
}
.box-1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.box-1020 {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
}
.box-800 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
}
.dis-flex {
  display: webkit-flex;
  display: flex;
}
.jus-con-bet {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
/*-------------------------------------------------
btn
--------------------------------------------------*/
.btn {
  position: relative;
  padding: 1.5rem 4rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
  border: 1px solid #646464;
  color: #212529;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.btn::after {
  content: "\e5e1";
  position: relative;
  left: 20px;
  top: 3px;
  font-family: 'Material Icons';
}
.btn:hover {
  background: #646464;
  color: #fff;
}
.btn-video-hover {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-video-hover::after {
  content: "";
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: url("images/common/icon_movie.svg");
  background-repeat: no-repeat;
}
.list-cmn:hover .btn-video-hover,.btn-top-live:hover .btn-video-hover{
  opacity: 1;
}
/*-------------------------------------------------
tab
--------------------------------------------------*/
.box-btn-change-tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 60px;
  padding: 0 15px;
  list-style: none;
}
.btn-tab-item {
  position: relative;
  width: calc(100% / 4 - 20px);
  color: #fff;
  background: #89cee3;
  border-radius: 2px;
  height: 50px;
  /*padding: 15px 10px;*/
  font-weight: bold;
  text-align: center;
}
.btn-tab-item span {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  line-height: 18px;
}
.btn-tab-item:hover,
.tab-selected {
  background: #1d2088;
}
.series-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 30px auto;
  padding: 0;
  list-style: none;	
}
.series-list li {
  margin-bottom: 8px;
}
.series-tag {
  display: block;
  color: #000;
  padding: 5px 15px;
  border-right: 1px solid #646464;
}
.series-tag:hover {
  opacity: .7;
}
.series-selected a {
  font-weight: bold;
}
.series-selected::after {
  content: "";
  display: block;
  position: relative;
  top: -11px;
  height: 10px;
  background: #FBD580;
  margin: 0 10px;
  z-index: -1;
}
/*-------------------------------------------------
header reset
--------------------------------------------------*/
.header ul, .header ul li, .footer ul, .footer ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
/*-------------------------------------------------
header
--------------------------------------------------*/
.header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

.header h1,
.header .logo-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  font-size: 2em;
  margin: 0.67em 0;
}

.pc-logo {
  width: 347px;
  height: 65px;
  margin: 0 auto;
}
/*-------------------------------------------------
fixed header
--------------------------------------------------*/
#fixed-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: -81px;  
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
  /*border-bottom: 1px solid #1d2088;*/
  z-index: 100;
  transition: .5s;
}
#fixed-header.is-show {
  top: 0;
}
.fix-logo-menu {
  margin-right: 30px;
}
.fix-logo-menu img {
  width: 50px;
  height: 50px;
}
.fix-logo-menu a {
  display: block;
}
.fix-logo-menu a:hover {
  opacity: .7;
}
/*-------------------------------------------------
nav-menu
--------------------------------------------------*/
/*.nav-menu {
  width: 100%;
  background: #dedede;
}
.nav-menu ul {
  display: webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  max-width: 1020px;
  height: 50px;
  margin: 0 auto;
  padding: 0 10px;
}
.nav-menu ul li {
  width: -webkit-calc(100% / 5);
  width: calc(100% / 5);
  margin: 0;
  text-align: center;
  line-height: 1.2;
}
.nav-menu ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #4d4d4d;
  font-weight: 500;
}
.nav-menu ul li:hover a:after {
  width: 100%;
  max-width: 100%;
}
.nav-menu ul li a:after {
  content: '';
  position: relative;
  bottom: -12px;
  display: block;
  width: 0;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(to right, rgba(100,100,100,1) 0%, rgba(100,100,100,1) 50%, rgba(100,100,100,1) 99%);
  transition: width 0.3s ease-in-out;
}
.nav-menu ul .current_page_item a {
  color: #202020;
}
.nav-menu ul .current_page_item a:after {
  width: 100%;
  max-width: 100%;
}*/

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 2em 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #1d2088;
  font-weight: 700;
  transition: color 0.3s;
}

.newsletter-btn a {
  color: #fff !important;
  background-color: #f6ab00;
  padding: 8px 15px;
  font-weight: 700;
}

.nav-menu ul li a:hover {
  opacity: .7;
}

.nav-menu .search-btn img {
  width: 24px;
  height: 24px;
}

/* スマホのトグルボタン pc時*/
#js-nav-toggle,
#js-nav-search {
  display: none;
}
/*-------------------------------------------------
breadcrumb-list[パンくずリスト]
--------------------------------------------------*/
.breadcrumb-list ul, .breadcrumb-list li {
  margin: 0;
  padding: 0;
}
.breadcrumb-border {
  width: 100%;
  border-top: 2px solid #1d2088;
}
.breadcrumb-list {
  display: block;
  width: 100%;
  max-width: 1020px;
  margin: 10px auto;
  padding: 0 10px;
  font-size: 1.2rem;
}
.breadcrumb-list ul {
  display: -webkit-flex; /* Safari */
  display: flex;
  -webkit-flex-direction: row; /* Safari */
  flex-direction: row;
}
.breadcrumb-list li {
  position: relative;
  list-style-type: none;
  padding-right: 20px;
  color: #1d2088;
}
.breadcrumb-list li:after {
  content: " / ";
  position: absolute;
  top: 0;
  right: 8px;
  display: block;
}
.breadcrumb-list li:last-child {
  padding-right: 0;
}
.breadcrumb-list li:last-child:after {
  display: none;
}
.breadcrumb-list a {
  color: #1d2088;
}
.breadcrumb-list a:hover {
  opacity: 0.7;
}
.breadcrumb-list img {
  width: 100%;
  max-width: 20px;
}
/*-------------------------------------------------
wrapper
--------------------------------------------------*/
.wrapper {
  width: 100%;
}
/*-------------------------------------------------
contents-main
--------------------------------------------------*/
.contents-main {
  position: relative;
  width: 100%;
}
/*-------------------------------------------------
list-cmn
--------------------------------------------------*/
.archive-list-content {
  padding-top: 60px;
}
.series-list + .archive-list-content {
  padding-top: 0;
}
.wrap-list-cmn {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list-cmn {
  width: calc(100% / 4);
  margin-bottom: 40px;
  padding: 0 15px 0 15px;
}
.list-cmn:not(:first-child) {
  border-left: 1px solid #d7d7d7;
}
.list-cmn:nth-of-type(4n+1) {
  border-left: none;
}
.list-cmn-dummy {
  width: calc(100% / 4);
  height: 1px;
}
/* 3カラム */
.archive-arti-content .list-cmn {
  width: calc(100% / 3);
  margin-bottom: 40px;
  padding: 0 15px 0 15px;
}
.archive-arti-content .list-cmn:not(:first-child) {
  border-left: 1px solid #d7d7d7;
}
.archive-arti-content .list-cmn:nth-of-type(3n+1) {
  border-left: none;
}
.archive-arti-content .list-cmn-dummy {
  width: calc(100% / 3);
  height: 1px;
}
.list-cmn a {
  color: #000;
}
.list-cmn .box-img-list-cmn {
  position: relative;
  width: 100%;
  height: auto;
}
.list-cmn .box-img-list-cmn::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.list-cmn .box-img-list-cmn .img-list-cmn {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;'; /*IE対策*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.list-cmn:hover a .box-img-list-cmn {
  opacity: .8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.list-cmn .ttl-list-cmn {
  padding: 4px 0 8px 0;
  display: inline-block;
  line-height: 1.25em;
  font-weight: bold;
  min-height: 30px;
}
.list-cmn .ttl-list-cmn > br {
  display: none;
}
.list-cmn .ttl-list-notag {
  padding: 15px 0 0 0;
}
.wrap-tag-date {
  display: flex;
  justify-content: space-between;
}
.list-cmn .box-tag-list-cmn,.list-cmn .box-date-list-cmn {
  /*display: inline-block;*/
  padding-top: 8px;
}
.list-cmn .box-tag-list-cmn,.list-cmn .box-date-list-notag {
  width: 100%;
  padding-top: 0px;
}
/*.list-cmn .box-tag-list-cmn {
  word-break: auto-phrase;
  white-space: normal;
}*/
.list-cmn .box-date-list-notag .date-list-cmn {
  display: block;
  text-align: right;
}
.list-cmn .box-date-list-cmn {
  display: block;
  text-align: right;
  font-size: 12px;
}
.list-cmn .box-sub-ttl-list-cmn {
  margin-top: -12px;
}
.list-cmn .box-sub-ttl-list-cmn .sub-ttl-list-cmn {
  display: inline-block;
  padding-top: 8px;
  font-size: 12px;
  line-height: 12px;
}
.tag-list-cmn {
  position: relative;
  display: inline;
  background: #1d2088;
  padding: 4px 8px;
  margin: 4px 10px 8px 0;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 1.2rem;
  font-weight: bold;
  align-items: flex-start;
}
/*-------------------------------------------------
archive
--------------------------------------------------*/
.h2-cmn-result {
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  padding: 0 0 15px;
  border-bottom: 2px solid #89cee3;
}
.sec-archive{
  background:#f0f4f4;
  padding: 50px 0;
}
.wrap-archive-list {
  padding: 35px 0 35px;
}
.archive-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.archive-item a {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 25px 0;
  color: #000;
}
.archive-item:not(last-child) {
  border-bottom: #d7d7d7 1px solid;
}
.archive-item:has(+ .list-cmn-dummy) {
	border-bottom: none;
}
.archive-item .box-img-list-cmn {
    position: relative;
    width: 350px;
    height: auto;
}
.archive-item .box-img-list-cmn::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.box-img-list-cmn img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.box-item-list-cmn {
  width: calc(100% - 380px);
}
.archive-link {
  display: block;
  padding: 15px 30px;
}
.archive-link:hover img {
  opacity: .8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.box-date-list-cmn {
  text-align: right;
}
.archive-date,
.archive-sub-ttl {
  font-size: 12px;
}
.archive-ttl {
  display: inline-block;
  width: calc(100% - 80px);
  vertical-align: top;
  color: #000;
  font-size: 1.125em;
  line-height: 1.25em;
  font-weight: bold;
}
.archive-tag {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background-color: #1d2088;
  padding: 4px 8px;
  margin-right: 8px;
}
.archive-desc {
  font-family: "Times New Roman";
  display: block;
  padding-top: 20px;
  color: #333;
  font-size: 14px;
}
.article-desc {
  font-family: "Times New Roman";
  display: block;
  padding-top: 3px;
  color: #333;
  font-size: 14px;
}
/*-------------------------------------------------
page nation
--------------------------------------------------*/
.page-nation {
  text-align: center;
  padding-bottom: 60px;
}
.page-nation .page-numbers {
  display: inline-block;
  margin: 0 8px;
  background: #8E8FC3;
  border: 2px solid #8E8FC3;
  border-radius: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #fff;
}
.page-nation .page-numbers:hover {
  opacity: .8;
}
.page-nation .page-numbers.current:hover {
  opacity: 1;
}
.page-nation .page-numbers.current {
  background: #fff;
  color: #1d2088;
  border: 2px solid #1d2088;
}
.page-nation .page-numbers.next,.page-nation .page-numbers.prev,.page-nation .page-numbers.dots {
  color: #1d2088;
  background: none;
  border: 2px solid #fff;
  width: 20px;
}
.page-nation .page-numbers.next::after {
  content: "";
  display: inline-block;
  position: relative;
  top: -3px;
  right: 0;
  width: 20px;
  height: 15px;
  background-image: url('/wp-content/themes/dharma-world/images/common/paginate_next.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.page-nation .page-numbers.prev::after {
  content: "";
  display: inline-block;
  position: relative;
  top: -3px;
  right: 0;
  width: 20px;
  height: 15px;
  background-image: url('/wp-content/themes/dharma-world/images/common/paginate_prev.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
/*-------------------------------------------------
area-ttl h1-cmn
--------------------------------------------------*/
.area-ttl {
  position: relative;
  width: 100%;
  padding: 0;
  /*border-top: 1px solid #1d2088;*/
  overflow: hidden;
}
.box-h1-cmn {
  display: flex;
  max-width: 1200px;
  height: 200px;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding: 0 15px;
}
.h1-cmn {
  font-family: "Times New Roman";
  font-style: normal;
  font-size: 2.6em;
  font-weight: 700;
  letter-spacing: -0.25px;
  color: #1d2088;
  /*text-shadow: 0px 1px 4px #fff;*/
  padding: 0;
  margin: 0;
  min-width: 200px;
}
.box-h1-cmn::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  height: 200px;
  width: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05)),
  url("images/common/mv_articles_2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 60%;
  z-index: -1;
}
.cat-desc {
  margin-left: 120px;
  width: fit-content;
}
/*-------------------------------------------------
h1 bg setting
--------------------------------------------------*/
.page-id-100 .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
  url("images/common/mv_about_2.jpg");
  background-position: 50% 20%;
}
.page-id-121 .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)),
  url("images/common/mv_latest.jpg");
  background-position: 50% 44%;
}
.category-buddhism .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2)),
  url("images/common/mv_buddhism_2.jpg");
  background-position: 50% 25%;
}
.category-lotus-sutra .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3)),
  url("images/common/mv_lotus_2.jpg");
  background-position: 50% 70%;
}
.category-kosei-kai .box-h1-cmn::after,
.tax-series .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.25)),
  url("images/common/mv_koseikai.jpg");
  background-position: 50% 43%;
}
.category-dialogue .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5)),
  url("images/common/mv_interfaith_3.jpg");
  background-position: 50% 20%;
}
.post-type-archive-video .box-h1-cmn::after,
.single-video .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3)),
  url("images/common/mv_video_2.jpg");
  background-position: 50% 50%;
}
.post-type-archive-magazine .box-h1-cmn::after,
.single-magazine .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3)),
  url("images/common/mv_magazine_2.jpg");
  background-position: 50% 10%;
}
.page-id-123 .box-h1-cmn::after,
.page-id-551 .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.4)),
  url("images/common/mv_contact.jpg");
  background-position: 50% 60%;
}
.page-id-125 .box-h1-cmn::after,
.page-id-553 .box-h1-cmn::after,
.page-id-556 .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.4)),
  url("images/common/mv_newsletter.jpg");
  background-position: 50% 50%;
}
.page-id-153 .box-h1-cmn::after,
.search .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.3)),
  url("images/common/mv_search.jpg");
  background-position: 50% 41%;
}
.page-id-529 .box-h1-cmn::after,
.tag .box-h1-cmn::after,
.tax-video_tag .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.5)),
  url("images/common/mv_tag.jpg");
  background-position: 50% 55%;
}
.page-id-532 .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)),
  url("images/common/mv_sitepolicy.jpg");
  background-position: 50% 55%;
}
.page-id-534 .box-h1-cmn::after {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.45)),
  url("images/common/mv_privacy.jpg");
  background-position: 50% 20%;
}
/*-------------------------------------------------
js-page-top
--------------------------------------------------*/
.js-page-top {
  position: fixed;
  display: block;
  right: 2rem;
  bottom: -5.5rem;
  width: 55px;
  height: 55px;
  z-index: 200;
  transition: all 0.3s;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50px;
}
.js-page-top.ani {
  right: 2rem;
  bottom: 2.5rem;
}
.js-page-top:hover {
  opacity: 1;
}
/*-------------------------------------------------
footer
--------------------------------------------------*/
/*.footer {
  background: #F9F8F5;
}
.footer-inner {
  width: 100%;
  max-width: 1020px;
  height: auto;
  margin: 0 auto;
  padding: 10px;
}
.footer-list ul {
  display: webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.footer-list ul li {
  padding: 0 4px;
}
.copyright {
  text-align: center;
  font-size: 1.2rem;
}*/

.footer {
  border-top: 2px solid #1d2088;
}

.footer-navi {
  padding: 40px 0 25px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  text-decoration: none;
  padding: 4px 0;
}

.footer ul li a {
  color: #1d2088;
}

.footer ul li a:hover {
  opacity: .7;
}

.grid-foot {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  /*justify-content: space-evenly;*/
  gap: 100px;
}

.footer-logo {
  width: 265px;
  height: 27px;
  margin: 0 auto;
}

.footer-navi-bottom {
  max-width: 900px;
  margin: 0 auto;
}

.footer-navi-bottom ul {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 10px;
  font-size: 14px;
}

.copyright {
  padding-top: 5px;
  margin: 0;
  font-size: 12px;
  color: #1d2088;
}

/*-------------------------------------------------
break point 960px Tablet
--------------------------------------------------*/
@media only screen and (max-width: 960px) {
  /*---------fixed header--------*/
  .fix-logo-menu {
    margin-right: 20px;
  }
  .nav-menu ul {
    gap: 20px;
  }
  .subscribe-wrapper {
    margin-top: 60px !important;
  }
  /*---------list-cmn------------*/	
  .list-cmn {
    width: calc(100% / 2);
    margin-bottom: 40px;
    padding: 0 15px 0 15px;
  }
  .list-cmn:nth-of-type(2n+1) {
    border-left: none;
  }
  /*---------archive--------------*/
  .archive-ttl {
    width: calc(100% - 0px);
  }
  .archive-desc {
    padding-top: 10px;
  }
  /*---------footer--------------*/
  .footer-navi {
    padding: 40px 20px 25px;
  }
}
/*-------------------------------------------------
break point 768px SP
--------------------------------------------------*/
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .header {
	justify-content: center;
    align-items: flex-start;
    position: fixed;
	top: 0;
	left: 0;
	height: 60px;
	background: rgba(255, 255, 255, 0.9);
	/*border-bottom: 1px solid #1d2088;*/
	z-index: 200;
  }
  .wrapper {
	margin-top: 60px;	
  }
  .header h1,
  .header .logo-wrap {
	padding: 0 0 0 15px;
	margin: 0;
  }
  .sp-logo {
    width: 200px;
    height: 60px;
    margin: 0 auto;
  }
  #fixed-header.is-show,
  .nav-menu .search-btn {
    display: none;
  }
  /*---------トグルボタン---------*/
  #js-nav-toggle div {
    position: relative;
  }
  #js-nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #2b368c;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  #js-nav-toggle span:nth-child(1) {
    top: 3px;
  }
  #js-nav-toggle span:nth-child(2) {
    top: 11px;
  }
  #js-nav-toggle span:nth-child(3) {
    top: 19px;
  }
  #js-nav-toggle {
    position: fixed;
    top: 13px;
    right: 10px;
    z-index: 1000;
    display: block;
    width: 36px;
    height: 36px;
    padding: 5px;
    border-radius: 2px;
    cursor: pointer;
  }
  .open #js-nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #js-nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #js-nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  #js-nav-search {
    position: fixed;
    top: 13px;
    right: 55px;
    z-index: 1000;
    display: block;
    width: 34px;
    height: 34px;
    padding: 5px;
    cursor: pointer;
  }
  #js-nav-search img {
    width: 100%;
  }
  /*---------nav-menu sp--------------*/
  .nav-menu {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    background: none;
  }
  .open .nav-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: block;
    background: #fff;
  }
  .nav-menu:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0;
  }
  .open .nav-menu:before {
    opacity: .95;
  }
  .nav-menu ul {
    position: static;
    z-index: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
	padding-top: 30px;
  }
  .nav-menu ul li {
    position: static;
    width: 100%;
    margin: 0;
    padding: 10px 10px;
    text-align: center;
    line-height: 1.2;
  }
  .nav-menu ul li a {
    position: relative;
    z-index: 1000;
    font-size: 2rem;
  }
  .nav-menu ul li a:after {
    display: none;
  }
  /*---------area-ttl h1-cmn--------------*/
  .box-h1-cmn {
    width: 100%;
    height: auto;
	min-height: 150px;
    align-items: flex-start;
	justify-content: center;
    flex-direction: column;
	padding: 15px;
  }
  .h1-cmn {
    font-size: 2.1em;
	line-height: 1em;
  }
  .cat-desc {
    margin-left: 0;
    width: fit-content;
  }
  /*---------h1 bg setting--------------*/
  .box-h1-cmn::after {
    background-position: 60% 50%;
  }
  .page-id-100 .box-h1-cmn::after {
    background-position: 50% -30px;
  }
  .page-id-121 .box-h1-cmn::after {
    background-position: 50% 40%;
  }
  .category-buddhism .box-h1-cmn::after {
    background-position: 30% 50%;
  }
  .category-lotus-sutra .box-h1-cmn::after {
    background-position: 50% -20px;
  }
  .category-kosei-kai .box-h1-cmn::after,
  .tax-series .box-h1-cmn::after {
    background-position: 50% 10%;
  }
  .category-dialogue .box-h1-cmn::after {
    background-position: 50% 57%;
  }
  .post-type-archive-video .box-h1-cmn::after,
  .single-video .box-h1-cmn::after {
    background-position: 50% -30px;
  }
  .post-type-archive-magazine .box-h1-cmn::after,
  .single-magazine .box-h1-cmn::after {
    background-position: 50% 50%;
  }
  .page-id-123 .box-h1-cmn::after,
  .page-id-551 .box-h1-cmn::after {
    background-position: 0% -50px;
  }
  .page-id-125 .box-h1-cmn::after,
  .page-id-553 .box-h1-cmn::after,
  .page-id-556 .box-h1-cmn::after {
    background-position: 0% -10px;
  }
  .page-id-153 .box-h1-cmn::after,
  .search .box-h1-cmn::after {
    background-position: 50% -13px;
  }
  .page-id-529 .box-h1-cmn::after,
  .tag .box-h1-cmn::after,
  .tax-video_tag .box-h1-cmn::after {
    background-position: 50% -20px;
  }
  .page-id-532 .box-h1-cmn::after {
    background-position: 30% -40px;
  }
  .page-id-534 .box-h1-cmn::after {
    background-position: 10% 20%;
  }
  /*---------tab--------------*/
  .box-btn-change-tab {
    margin-top: 20px;
    padding: 0;
  }
  .btn-tab-item {
    width: calc(100% / 2 - 10px);
    height: 50px;
    margin: 5px;
    padding: 5px;
    line-height: 40px;
  }
  .series-list-sp {
    display: flex;
    align-items: center;
    position: relative;
	width: 95%;
	margin: 10px auto 20px;
  }
  .series-list-sp::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #3d40a8;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
  }
  .series-list-sp select {
    appearance: none;
    width: 100%;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: none;
    border-bottom: 2px solid #1d2088;
    background-color: #fff;
    color: #1d2088;
    font-size: 1em;
	font-weight: bold;
    cursor: pointer;
  }
  .series-list-sp select:focus {
    outline: none;
  }
  /*---------list-cmn--------------*/
  .archive-list-content {
    padding-top: 30px;
  }
  .archive-video-content {
    padding-top: 30px;
  }
  .series-list-sp + .archive-list-content {
    padding-top: 0;
  }
  .wrap-list-cmn {
    flex-direction: column;
  }
  .list-cmn, .archive-arti-content .list-cmn {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 0 15px 0;
	border-bottom: #d7d7d7 1px solid;
  }
  .list-cmn:not(:first-child),
  .archive-arti-content .list-cmn:not(:first-child) {
    border-left: none;
  }
  .list-cmn:has(+ .list-cmn-dummy) {
	border-bottom: none;
  }
  /*---------archive--------------*/
  .wrap-archive-list {
    padding: 30px 0 20px;
  }
  .archive-item a {
    flex-direction: column;
	padding: 20px 0;
  }
  .archive-ttl, .box-item-list-cmn {
    width: 100%;
  }
  .archive-item .box-img-list-cmn {
    width: 100%;
  }
  .archive-desc {
    padding-top: 10px;
  }
  /*---------pagenation--------------*/
  .page-nation {
    padding-bottom: 50px;
  }
  .page-nation .page-numbers {
    margin: 0px 4px;
  }
  /*---------breadcrumb-list--------------*/
  .breadcrumb-list ul {
    overflow-x: auto;
    white-space: nowrap;
  }
  .breadcrumb-list img {
    width: 20px;
  }
  /*---------js-page-top--------------*/
  .js-page-top {
    right: 1rem;
    bottom: -5.5rem;
  }
  .js-page-top.ani {
    right: 1rem;
    bottom: 1.5rem;
  }
  /*---------footer--------------*/
  .grid-foot {
    width: 100%;
    margin: 0 auto;
	flex-direction: column;
	align-items: center;
	text-align: center;
    gap: 20px;
  }
  .footer-navi-bottom ul {
    justify-content: center;
    margin-top: 30px;
  }
  .copyright {
    text-align: center;
  }
}