@charset "UTF-8";
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.5;
}

p + p {
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  br.pc-br {
    display: none;
  }
}

br.sp-br {
  display: none;
}
@media screen and (max-width: 480px) {
  br.sp-br {
    display: block;
  }
}

.en {
  font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", sans-serif;
}

body {
  font-family: "Shippori Mincho", serif;
  opacity: 1;
  transition: opacity 0.6s ease;
  background: #f9f7f2;
}

body.is-loading {
  opacity: 0;
}

body.admin-bar .top__nav--area {
  top: 32px;
}
@media screen and (max-width: 480px) {
  body.admin-bar .top__nav--area {
    top: 46px;
  }
}

@media screen and (max-width: 480px) {
  body.admin-bar #wpadminbar {
    position: fixed;
  }
}
@media screen and (max-width: 480px) {
  body.admin-bar .navToggle {
    top: 56px;
  }
}

/* アニメーション */
.js_FadeIn {
  transform: translateX(-1%);
  opacity: 0;
}

.js_FadeIn.fadeUp {
  transform: translateY(15px);
  opacity: 0;
}

.js_FadeIn.fadeIn {
  transform: translateX(0%);
  opacity: 0;
}

.huwa {
  animation: huwa 1s ease-out forwards;
}

.huwaUp {
  animation: huwa 1s ease-out forwards;
}

.huwaFade {
  animation: huwa 1.5s ease-out forwards;
}

@keyframes huwa {
  to {
    transform: initial;
    opacity: 1;
  }
}
#page_top a {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
#page_top.scroll_active a {
  opacity: 1;
  visibility: visible;
}

.arrow-up {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
}

/*------------------------------------------------------------

nav

------------------------------------------------------------*/
.top__nav--area {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  /*display: flex;
  justify-content: flex-end;*/
  box-sizing: border-box;
  z-index: 999;
  transition: 0.3s;
}
.top__nav--area.bgColor {
  background: rgba(0, 0, 0, 0.7);
  transition: 0.3s;
}

.top__nav--box {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .top__nav--box {
    padding: 20px 10px;
  }
}
.top__nav--box .top__nav--logo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 300/96;
}
@media screen and (max-width: 480px) {
  .top__nav--box .top__nav--logo {
    max-width: 150px;
  }
}
.top__nav--box .top__nav--logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.top__nav--box .top__nav {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .top__nav--box .top__nav {
    display: none;
  }
}
.top__nav--box .top__nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}
.top__nav--box .top__nav li a span {
  font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", sans-serif;
  display: block;
  font-size: 0.7rem;
}
.top__nav--box .top__nav li a:hover {
  color: #ccc;
  transition: 0.3s;
}

.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    text-align: center;
    border-radius: 5px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 47px;
    border-bottom: solid 4px #fff;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 23px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle span:nth-child(4) {
    font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", sans-serif;
    border: none;
    color: #fff;
    font-size: 11px;
    top: 45px;
  }
  .navToggle.nav_active span {
    box-shadow: none;
    text-shadow: none;
    border-bottom: solid 4px #000;
  }
  .navToggle.nav_active span:nth-child(1) {
    top: 22px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
  .navToggle.nav_active span:nth-child(4) {
    border: none;
    color: #000;
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
}

.globalMenuSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .globalMenuSp {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    background: url(../img/sp-bg.webp);
    background-size: cover;
    color: #000;
    text-align: right;
    transform: translateX(5%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
  }
  .globalMenuSp ul {
    background-size: cover;
    margin: 0 auto;
    padding: 100px 50px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .globalMenuSp ul li {
    font-size: 1.1rem;
    list-style-type: none;
    padding: 0;
    width: 100%;
    /*border-bottom: 1px dotted #fff;*/
  }
  .globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .globalMenuSp ul li .sub-menu {
    padding: 0;
  }
  .globalMenuSp ul li .sub-menu a {
    color: #888888;
  }
  .globalMenuSp ul li a {
    display: block;
    color: #000;
    font-weight: bold;
    padding: 0.6em 0;
    font-size: 1.1em;
    text-shadow: 1px 1px 3px #fff;
  }
  .globalMenuSp ul li a span {
    font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", sans-serif;
    display: block;
    font-size: 0.7rem;
    margin-top: 5px;
  }
  .globalMenuSp ul li a:hover {
    background: rgba(245, 245, 245, 0.8);
  }
  .globalMenuSp.nav_active {
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
  }
}

.swiper__hero--area {
  position: relative;
  height: calc(100vh - 104px);
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .swiper__hero--area {
    height: 40vh;
  }
}

.hero-bg {
  position: absolute;
  top: 0;
  inset: 0;
  z-index: 0;
}
.hero-bg .swiper-slide {
  background-size: cover;
  background-position: center;
}

main {
  width: 100%;
  overflow: hidden;
}

.contents {
  padding: 70px 0 100px 0;
}
@media screen and (max-width: 480px) {
  .contents {
    padding: 50px 10px;
  }
}
.contents.contents-wht {
  background: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 20px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 480px) {
  .section-title h2 {
    font-size: 1.5rem;
  }
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #a63d40;
}
.section-title h2 .en-ttl {
  font-size: 1rem;
  font-weight: bold;
  display: block;
  color: #666666;
}
.section-title h2 .sub-ttl {
  font-size: 1.5rem;
  display: block;
  color: #666666;
  font-weight: 500;
}

.about__flex--area {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.about-flex {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .about-flex {
    flex-wrap: wrap;
  }
}
.about-flex .about-flex-txt {
  width: calc(70% - 20px);
}
@media screen and (max-width: 480px) {
  .about-flex .about-flex-txt {
    width: 100%;
    padding: 10px;
  }
}
.about-flex .about-flex-img {
  max-width: 500px;
  aspect-ratio: 800/533;
}
.about-flex .about-flex-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__grid--area {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-item {
  background: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}
.news-item.is-show {
  opacity: 1;
  transform: translateY(0);
}

.news-img {
  aspect-ratio: 3/2;
  width: 100%;
}
.news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-content {
  padding: 20px;
}

.news-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 10px;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.top-btn {
  margin-top: 50px;
  text-align: center;
}
.top-btn a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  padding: 20px 70px;
  background-size: 200% 100%;
  background-image: linear-gradient(to right, transparent 50%, rgb(215, 215, 215) 50%);
  transition: background-position 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s, color 0.5s ease 0s, background-color 0.5s ease;
}
.top-btn a:hover {
  background-color: #000;
  background-position: -100% 100%;
}

footer {
  background: url(../img/bg1.png), rgb(46, 46, 46);
  color: #fff;
  padding: 60px 4% 20px;
  text-align: center;
}
footer .footer-logo {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 300/96;
  margin-inline: auto;
  margin-bottom: 20px;
}
footer .footer-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
footer p {
  letter-spacing: 0.05rem;
}

.copyright {
  margin-top: 60px;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
}

.tel a {
  color: #fff;
}

.sub__hero--area {
  position: relative;
  height: 50vh;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .sub__hero--area {
    height: 20vh;
  }
}

.sub_hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.sub_hero-bg .sub_hero {
  background-size: cover;
  background-position: center;
}

/*------------------------------------------------------------

k境内案内

------------------------------------------------------------*/
.guide__section > .section-title--sub:not(:first-of-type) {
  margin-top: 100px;
}

.image-group-box {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .image-group-box {
    padding: 0;
  }
}

.main-img-area {
  width: 100%;
}

.mainImage {
  position: relative;
  width: 100%;
  aspect-ratio: 1300/867;
  overflow: hidden;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.mainImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: opacity 0.3s ease;
}
.mainImage p {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 0 #555;
}
.mainImage::before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  max-width: 35px;
  aspect-ratio: 52/101;
  background: url(../img/arrow-l.webp);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  cursor: pointer;
  left: 10px;
  z-index: 3;
}
@media screen and (max-width: 480px) {
  .mainImage::before {
    max-width: 25px;
    left: 0;
  }
}
.mainImage::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  max-width: 35px;
  aspect-ratio: 52/101;
  background: url(../img/arrow-r.webp);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  cursor: pointer;
  right: 10px;
  z-index: 3;
}
@media screen and (max-width: 480px) {
  .mainImage::after {
    max-width: 25px;
    right: 0;
  }
}
.mainImage .temp-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.mainImage .temp-img.temp-img-show {
  opacity: 1;
}

.thumbnails-flex {
  width: 100%;
  display: flex;
  gap: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.thumbnails {
  width: calc((100% - 20px) / 3);
  aspect-ratio: 1300/867;
  cursor: pointer;
}
.thumbnails img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumbnails.current {
  position: relative;
}
.thumbnails.current::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.portrait-flex {
  width: 100%;
  max-width: 1300px;
  display: flex;
  gap: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .portrait-flex {
    flex-wrap: wrap;
  }
}

.portrait-img {
  width: calc((100% - 10px) / 3);
  aspect-ratio: 667/1000;
}
@media screen and (max-width: 480px) {
  .portrait-img {
    width: calc((100% - 10px) / 2);
  }
}
.portrait-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.other-grid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 10px;
}
@media screen and (max-width: 480px) {
  .other-grid {
    grid-template-columns: 1fr;
  }
}

.other-item .other-item-img {
  aspect-ratio: 800/533;
}
.other-item .other-item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.other-item .other-item-txt {
  text-align: center;
  padding: 5px;
}

/*------------------------------------------------------------

永代供養

------------------------------------------------------------*/
.kagetudou__section--img {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  aspect-ratio: 1300/867;
}
.kagetudou__section--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kagetudou__box--flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;
  margin: 50px auto 0;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .kagetudou__box--flex {
    flex-direction: column;
    gap: 0;
    margin: 20px auto 0;
  }
}
.kagetudou__box--flex .kagetudou__box--text {
  width: calc(75% - 20px);
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .kagetudou__box--flex .kagetudou__box--text {
    width: 100%;
  }
}
.kagetudou__box--flex .kagetudou__box--text h3 {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .kagetudou__box--flex .kagetudou__box--text h3 {
    font-size: 1.5rem;
  }
}
.kagetudou__box--flex .kagetudou__box--text h3::after {
  content: "かげつどう";
  position: absolute;
  left: 0.5rem;
  top: -1rem;
  font-size: 0.5em;
  color: #666666;
}
.kagetudou__box--flex .kagetudou__box--text p {
  line-height: 1.75;
}
.kagetudou__box--flex .kagetudou__box--text p + p {
  margin-top: 20px;
}
.kagetudou__box--flex .kagetudou__box--text.circle-bg {
  position: relative;
}
.kagetudou__box--flex .kagetudou__box--text.circle-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: url(../img/circle.webp);
  width: 350px;
  height: 350px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .kagetudou__box--flex .kagetudou__box--text.circle-bg::after {
    width: 250px;
    height: 250px;
  }
}
.kagetudou__box--flex .kagetudou__box--img {
  width: 25%;
}
@media screen and (max-width: 480px) {
  .kagetudou__box--flex .kagetudou__box--img {
    width: 100%;
  }
}
.kagetudou__box--flex .kagetudou__box--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.kagetudou__section--text {
  width: 100%;
  max-width: 1300px;
  margin: 50px auto;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .kagetudou__section--text {
    margin: 0 auto;
  }
}
.kagetudou__section--text h4 {
  font-size: 1.3rem;
  font-weight: bold;
}
.kagetudou__section--text p + h4 {
  margin-top: 20px;
}
.kagetudou__section--text h4 + p {
  margin-top: 20px;
}
.kagetudou__section--text p + p {
  margin-top: 20px;
}
.kagetudou__section--text.musubi {
  padding: 30px;
  border-radius: 10px;
  border: solid 3px #ccc;
  background: #fff;
}
.kagetudou__section--text.musubi h4 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}

.kagetudou__price--text {
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .kagetudou__price--text {
    margin: 0 auto;
  }
}
.kagetudou__price--text h4 {
  font-size: 1.3rem;
  font-weight: bold;
  border-bottom: dotted 1px #ccc;
  padding: 10px;
}
.kagetudou__price--text p + h4 {
  margin-top: 20px;
}
.kagetudou__price--text h4 + p {
  margin-top: 10px;
}
.kagetudou__price--text p + p {
  margin-top: 10px;
}

.eitai__price--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;
  margin: 50px auto;
}

@media screen and (max-width: 1024px) {
  .eitai__price--left {
    width: 100%;
  }
}

.eitai__price--right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 450px;
}
@media screen and (max-width: 1024px) {
  .eitai__price--right {
    max-width: 600px;
    margin: 0 auto;
  }
}
.eitai__price--right .eitai__price--right--img {
  aspect-ratio: 800/533;
}
.eitai__price--right .eitai__price--right--img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-title--sub {
  max-width: 1300px;
  margin: 0 auto 30px;
}
.section-title--sub h3 {
  position: relative;
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .section-title--sub h3 {
    font-size: 1.3rem;
  }
}
.section-title--sub h3::after {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  left: 0;
  bottom: -5px;
  background: #f15929;
  background: linear-gradient(to right, rgb(220, 220, 220), transparent);
  z-index: 1;
}

.price--img {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}
.price--img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.price--img.price1--img {
  aspect-ratio: 800/206;
}
.price--img.price2--img {
  aspect-ratio: 800/355;
}

span.price {
  font-size: 1.2rem;
  font-weight: bold;
}

/*------------------------------------------------------------

交通案内

------------------------------------------------------------*/
.access__section--txt {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 50px;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .access__section--txt {
    flex-wrap: wrap;
  }
}
.access__section--txt .access__section--txt--box {
  text-align: center;
}
.access__section--txt .access__section--txt--box h2 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 20px;
  color: #fff;
  background: url(../img/bg1.png), rgb(46, 46, 46);
  min-width: 280px;
}
.access__section--txt .access__section--txt--box p {
  line-height: 1.75;
}
.access__section--txt .access__section--txt--box p + h2 {
  margin-top: 20px;
}
.access__section--txt .access__section--txt--box h2 + p {
  margin-top: 5px;
}
.access__section--txt .access__section--txt--box p + p {
  margin-top: 10px;
}

.gmap--box {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
}

.gmap {
  position: relative;
  padding-bottom: 450px;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
}
.gmap iframe,
.gmap object,
.gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 450px;
}

.map {
  width: 100%;
  margin: 0 auto;
}

.map img {
  width: 100%;
}

/*------------------------------------------------------------

お問い合わせ

------------------------------------------------------------*/
.contact__section--txt {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  padding: 30px;
  background: #fff;
}
.contact__section--txt p {
  font-size: 1.3rem;
}
@media screen and (max-width: 480px) {
  .contact__section--txt p {
    font-size: 1rem;
  }
}
.contact__section--txt p.contact-p {
  border-bottom: solid 1px #ccc;
  padding: 5px;
}
.contact__section--txt p.tel {
  font-family: "Century Gothic", "Arial", YuGothic, "Yu Gothic", sans-serif;
  font-size: 2.5rem;
}
@media screen and (max-width: 480px) {
  .contact__section--txt p.tel {
    font-size: 1.8rem;
  }
}
.contact__section--txt p.tel a {
  color: #000;
  font-weight: bold;
}
.contact__section--txt p.policy {
  font-size: 1rem;
  margin-top: 20px;
}
.contact__section--txt p.policy a {
  display: inline-block;
  color: #fff;
  background: #4682b4;
  padding: 10px 20px;
  border-radius: 50px;
}
.contact__section--txt h2 {
  font-size: 2rem;
  font-weight: bold;
  margin: 20px 0;
}
@media screen and (max-width: 480px) {
  .contact__section--txt h2 {
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------------

プライバシーポリシー

------------------------------------------------------------*/
.policy__section--txt {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
}
.policy__section--txt h2 {
  font-size: 1.2rem;
  font-weight: bold;
}
.policy__section--txt p {
  line-height: 1.75;
}
.policy__section--txt p + h2 {
  margin-top: 20px;
}
.policy__section--txt h2 + p {
  margin-top: 10px;
}
.policy__section--txt p + p {
  margin-top: 10px;
}
.policy__section--txt ul {
  list-style-type: disc;
  list-style-position: inside;
  margin: 10px 0 20px;
}
.policy__section--txt ul li {
  line-height: 1.75;
}

/*------------------------------------------------------------

Wordpress レイアウト

------------------------------------------------------------*/
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.wp-block-image img {
  width: 100% !important;
  height: auto !important;
}

p + .wp-block-image img {
  margin-top: 20px;
}

.cat_ttl {
  font-size: 2em;
  padding: 30px 0;
  text-align: center;
  color: #00008b;
}
@media screen and (max-width: 480px) {
  .cat_ttl {
    font-size: 1.5em;
  }
}

.pan-list ol {
  display: flex;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.9em;
  padding: 10px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .pan-list ol {
    padding: 10px;
    flex-wrap: wrap;
    line-height: 1.5em;
  }
}
.pan-list ol li {
  padding: 0 10px;
}
.pan-list ol li a {
  position: relative;
  border-bottom: solid 1px #00008b;
}
.pan-list ol li a::after {
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: inline-block;
  content: ">";
}

.wpmain-box {
  display: flex;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  justify-content: space-around;
  padding: 50px 0;
  box-sizing: border-box;
  gap: 30px;
}
@media screen and (max-width: 480px) {
  .wpmain-box {
    flex-wrap: wrap;
    padding: 0;
  }
}

.wp-main {
  width: calc(75% - 15px);
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .wp-main {
    width: 100%;
  }
}
.wp-main .wp-list {
  padding: 0;
}

.wp-sub {
  width: calc(25% - 15px);
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .wp-sub {
    width: 100%;
    padding: 30px 10px;
  }
}
.wp-sub ul {
  padding: 10px 10px 10px 24px;
}
.wp-sub ul li {
  list-style-position: outside;
  line-height: 1.5;
}
.wp-sub ul li + li {
  margin-top: 10px;
}

.news-post {
  box-sizing: border-box;
}
.news-post li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.news-post h3, .news-post h4 {
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .news-post h3, .news-post h4 {
    width: 100%;
    margin-bottom: 10px;
  }
}

.single_cat {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: solid 2px;
  -o-border-image: linear-gradient(to right, #ccc 0%, #f5f5f5 100%);
     border-image: linear-gradient(to right, #ccc 0%, #f5f5f5 100%);
  border-image-slice: 1;
}

.state {
  font-size: 0.9em;
  color: #696969;
}
@media screen and (max-width: 480px) {
  .state {
    width: 100%;
    text-align: right;
  }
}

h2.sidebar {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: solid 2px;
  -o-border-image: linear-gradient(to right, #ccc 0%, #f5f5f5 100%);
     border-image: linear-gradient(to right, #ccc 0%, #f5f5f5 100%);
  border-image-slice: 1;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  h2.sidebar {
    font-size: 1em;
  }
}

.wp-news li, .category li, .archive li {
  list-style-type: disc;
  list-style-position: inside;
}

.wp-ttl, .wp-ttl2 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.wp-ttl2 {
  font-weight: bold;
  border-bottom: solid 2px;
  -o-border-image: linear-gradient(to right, #ccc 0%, #f5f5f5 100%);
     border-image: linear-gradient(to right, #ccc 0%, #f5f5f5 100%);
  border-image-slice: 1;
  margin-bottom: 10px;
}
.wp-ttl2 h2 {
  font-size: 1.3em;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .wp-ttl2 h2 {
    font-size: 1.1em;
    line-height: 1.5em;
  }
}

.single_date {
  border-radius: 50px;
  font-size: 0.9em;
  color: #4682b4;
}
@media screen and (max-width: 480px) {
  .single_date {
    margin-left: auto;
  }
}

.entry_main {
  background: #fff;
  box-sizing: border-box;
  padding: 50px;
}
@media screen and (max-width: 480px) {
  .entry_main {
    padding: 20px 10px;
  }
}
.entry_main h2 {
  font-size: 1.3em;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .entry_main h2 {
    font-size: 1.1em;
    line-height: 1.5em;
  }
}
.entry_main p {
  line-height: 1.75em;
}
.entry_main h2 + p {
  margin-top: 10px;
}
.entry_main p + h2 {
  margin-top: 30px;
}
.entry_main p + p {
  margin-top: 10px;
}

.single-pager {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .single-pager {
    justify-content: space-between;
  }
}
.single-pager li a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 1.2em;
  color: #fff;
  background: #000;
}
@media screen and (max-width: 480px) {
  .single-pager li a {
    font-size: 1em;
  }
}

/* p */
.wrap p {
  line-height: 1.8em;
  padding: 5px 0;
}

/* img */
.wrap img {
  width: 100% !important;
  max-width: 800px !important;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

/* 引用 */
blockquote {
  position: relative;
  padding: 30px 15px 8px 15px;
  box-sizing: border-box;
  background: #EFEFEF;
  color: #555;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 3px;
  content: "“";
  color: #CFCFCF;
  font-size: 90px;
  line-height: 1;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 1.2em;
  color: #fff;
  background: #ccc;
  border-radius: 50%;
  overflow: hidden;
}
.page-numbers.next {
  color: #ccc;
  background: none;
}
.page-numbers.prev {
  color: #ccc;
  background: none;
}
.page-numbers.current {
  background: #000;
}
.page-numbers.current::after {
  content: none;
}

.wp-list {
  padding: 50px 0;
}
@media screen and (max-width: 480px) {
  .wp-list {
    padding: 10px;
  }
}
.wp-list li {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.wp-ttl {
  display: flex;
  width: 100%;
  padding: 10px;
  border-bottom: dotted 1px #ccc;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .wp-ttl {
    flex-direction: column;
  }
}
.wp-ttl h3 {
  margin-right: auto;
  font-size: 1.3em;
}
@media screen and (max-width: 480px) {
  .wp-ttl h3 {
    font-size: 1.1em;
  }
}
.wp-ttl h3 span {
  margin-left: 10px;
}
.wp-ttl h3 a {
  font-size: 1.1em;
  font-weight: bold;
  color: #4682b4;
}
@media screen and (max-width: 480px) {
  .wp-ttl h3 a {
    font-size: 1em;
  }
}
.wp-ttl h4 {
  margin-right: auto;
  font-size: 1.1rem;
}
@media screen and (max-width: 480px) {
  .wp-ttl h4 {
    width: 100%;
    font-size: 1rem;
    margin-right: unset;
  }
}
.wp-ttl h4 span {
  margin-left: 10px;
}
@media screen and (max-width: 480px) {
  .wp-ttl h4 span {
    margin-left: 0;
  }
}
.wp-ttl h4 a {
  font-weight: bold;
  color: #4682b4;
}
@media screen and (max-width: 480px) {
  .wp-ttl h4 a {
    display: block;
    font-size: 1em;
    margin-bottom: 10px;
  }
}
.wp-ttl .state {
  font-size: 0.9em;
}
@media screen and (max-width: 480px) {
  .wp-ttl .state {
    margin-left: auto;
  }
}

.wp__ttl--flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .wp__ttl--box {
    width: 100%;
  }
}

p.faicon {
  padding: 10px;
}
p.faicon a {
  font-size: 2em;
  color: #000;
}

.wp__cat-box {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .wp__cat-box {
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 5px;
  }
}

.wp__cat {
  display: inline-block;
  font-size: 0.7em;
  padding: 10px 15px;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  background: #4682b4;
}/*# sourceMappingURL=style.css.map */