@charset "UTF-8";
/* ============================================
  パンクズリスト用　Start
============================================ */
.breadcrumb {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style: none;
  margin: 32px 0 0;
  font-size: 16px;
  gap: 8px;
}

.breadcrumb li {
  padding-right: 22px;
  position: relative;
}

.breadcrumb li::before {
  content: '›';
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  font-size: 16px;
  color: #333;
  position: absolute;
  top: 46%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.breadcrumb li:last-child::before {
  content: none;
}

.breadcrumb a {
  text-decoration: none;
  color: #352CA0;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 900px) {
  .breadcrumb {
    margin: 16px 0 0;
  }
}

/* ============================================
  パンクズリスト用　End
============================================ */
/* ============================================
  神社詳細ページ用　Start
============================================ */
.shrine__wrapper {
  margin: 24px 0 0;
}

.shrine__title {
  font-size: 40px;
  margin: 48px 0 0;
}

.shrine__title span {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 -2px;
  display: block;
}

.shrine__subtitle {
  font-size: 24px;
  margin: 24px auto 0;
  border-bottom: 2px solid #A4B814;
  display: inline-block;
}

.shrine__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin: 24px auto 0;
}

.shrine__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.shrine__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

.shrine__item {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shrine__term {
  width: 30%;
  width: 25%;
  border: 2px solid #A4B814;
  color: #fff;
  background: #A4B814;
  padding: 4px 16px;
  border-radius: 4px;
  text-align: center;
}

.shrine__desc {
  width: 70%;
}

.shrine__desc a {
  word-break: break-all;
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-underline-offset: 5px;
  -webkit-text-decoration-color: #043F76;
          text-decoration-color: #043F76;
}

.shrine__description--txt {
  font-size: 16px;
}

.shrine__photo {
  width: 42.55%;
  position: relative;
  z-index: 0;
}

.shrine__description {
  margin: 80px auto 0;
}

.shrine__description--content {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 24px auto 0;
}

.shrine__access {
  margin: 80px auto 0;
}

.shrine__access--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  margin: 24px auto 0;
}

.shrine__access--item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 32px;
  position: relative;
}

.shrine__access--item-car:before, .shrine__access--item-train:before, .shrine__access--item-bus:before, .shrine__access--item-ferry:before, .shrine__access--item-plane:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  position: absolute;
  left: -32px;
  top: 4px;
  background-size: cover;
  background-position: 100% 100%;
}

.shrine__access--item-car:before {
  background: url(https://www.sanpai-navi.jp/assets/images/icon-car.svg) 100% 100%/cover;
}

.shrine__access--item-train:before {
  background: url(https://www.sanpai-navi.jp/assets/images/icon-train.svg) 100% 100%/cover;
}

.shrine__access--item-bus:before {
  background: url(https://www.sanpai-navi.jp/assets/images/icon-bus.svg) 100% 100%/cover;
}

.shrine__access--item-ferry:before {
  background: url(https://www.sanpai-navi.jp/assets/images/icon-ferry.svg) 100% 100%/cover;
}

.shrine__access--item-plane:before {
  background: url(https://www.sanpai-navi.jp/assets/images/icon-plane.svg) 100% 100%/cover;
}

.shrine__map {
  margin: 32px 0 0;
}

.shrine__tag {
  margin: 80px auto 0;
}

.shrine__tag--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 24px auto 0;
}

.shrine__tag--list li {
  font-size: 16px;
  border: 1px solid #A4B814;
  color: #A4B814;
  border-radius: 5px;
  text-align: center;
  padding: 6px 16px;
  background: #fff;
}

.shrine__tag--list li a {
  color: #A4B814;
}

@media screen and (max-width: 900px) {
  .shrine__wrapper {
    margin: 16px 0 0;
  }
  .shrine__title {
    font-size: 24px;
    margin: 24px 0 0;
  }
  .shrine__title span {
    font-size: 16px;
  }
  .shrine__subtitle {
    font-size: 20px;
    margin: 16px auto 0;
  }
  .shrine__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    margin: 16px auto 0;
  }
  .shrine__info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shrine__photo {
    width: 100%;
  }
  .shrine__list {
    gap: 16px;
  }
  .shrine__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    width: 100%;
  }
  .shrine__term, .shrine__desc {
    width: 100%;
  }
  .shrine__term {
    padding: 2px 16px;
  }
  .shrine__description {
    margin: 40px auto 0;
  }
  .shrine__description--content {
    margin: 16px auto 0;
  }
  .shrine__access {
    margin: 40px auto 0;
  }
  .shrine__access--list {
    margin: 16px auto 0;
  }
  .shrine__access--list li {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .shrine__access--list li p {
    width: 100%;
  }
  .shrine__tag {
    margin: 40px auto 0;
  }
}

/* ============================================
  神社詳細ページ用　End
============================================ */
/* ============================================
  神社詳細ページスライダー用　Start
============================================ */
.splide {
  z-index: -1;
}

.splide__slide img {
  height: auto;
  width: 100%;
}

.splide__pagination {
  bottom: -3em;
  padding: 0;
}

.splide__pagination__page {
  background: #fff;
  height: 16px;
  opacity: 1;
  width: 16px;
  border: 2px solid #A4B814;
}

.splide__pagination__page.is-active {
  background: #A4B814;
  -webkit-transform: scale(1);
          transform: scale(1);
  z-index: 1;
}

/* ============================================
  神社詳細ページスライダー用　End
============================================ */
/* ============================================
  検索ページ用　Start
============================================ */
.search__wrapper {
  margin: 24px auto 0;
}

.search__header {
  margin: 24px 0 0;
}

.search__list {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.search__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
      grid-template-rows: subgrid;
}

.search__item--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin: 8px 0 0;
}

.search__item--txt {
  font-size: 16px;
}

.search__item--txt span {
  font-size: 10px;
  line-height: 1.5;
  margin: 0 0 -2px;
  display: block;
}

.search__item--area {
  background: #A4B814;
  border-radius: 5px;
  padding: 2px 0;
  width: 100px;
  height: 28px;
  color: #fff;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 900px) {
  .search__wrapper {
    width: 100%;
    margin: 24px auto 0;
  }
  .search__list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .search__item--txt {
    font-size: 16px;
  }
  .search__item--area {
    margin: 4px 0 0;
  }
}

/* ============================================
  検索ページ用　End
============================================ */
/* ============================================
  記事詳細ページ用　Start
============================================ */
.page__wrapper {
  margin: 24px auto 0;
}

.page__main {
  max-width: 900px;
  width: 90%;
  margin: 48px auto 0;
  word-break: break-all;
}

.page__title {
  font-size: 40px;
  margin: 0px 0px 24px;
}

.page__txtarea--txt {
  font-size: 18px;
  margin-bottom: 16px;
}

.page__txtarea--item {
  font-size: 18px;
  width: 100%;
}

.page__txtarea--img {
  margin-top: 16px;
}

.page__txtarea--list {
  margin-top: 16px;
  margin-left: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.page__txtarea h1, .page__txtarea h2, .page__txtarea h5, .page__txtarea h6 {
  font-size: 24px;
  border-bottom: 2px solid #A4B814;
  padding: 0 0 4px;
  display: inline-block;
}

.page__txtarea h3, .page__txtarea h4 {
  font-size: 20px;
  border-bottom: 2px dotted #A4B814;
  padding: 0 0 4px;
  display: inline-block;
}

.page__txtarea h1, .page__txtarea h2 {
  margin: 48px 0px 16px;
}

.page__txtarea h3, .page__txtarea h4, .page__txtarea h5 h6 {
  margin: 32px 0 16px;
}

.page__txtarea ul, .page__txtarea ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  font-size: 16px;
  margin: 0 0 0 16px;
  list-style: outside;
  margin-bottom: 16px;
}

.page__txtarea ol {
  list-style: auto;
}

.page__txtarea li {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .page__wrapper, .page__main {
    width: 100%;
    margin: 24px auto 0;
  }
  .page__title {
    font-size: 24px;
  }
  .page__txtarea--txt, .page__txtarea--item {
    font-size: 16px;
  }
}

/* ============================================
  記事詳細ページ用　End
============================================ */
/* ============================================
  記事一覧ページ用　Start
============================================ */
.pagelist__wrapper {
  margin: 24px auto 0;
}

.pagelist__list {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.pagelist__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
      grid-template-rows: subgrid;
}

.pagelist__item--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 8px 0 0;
}

.pagelist__item--txt {
  font-size: 16px;
}

.pagelist__item--txt rt {
  font-size: 10px;
  line-height: 1.5;
  margin: 0 0 4px;
}

.pagelist__item--area {
  background: #A4B814;
  border-radius: 5px;
  padding: 2px 0;
  width: 100px;
  height: 28px;
  color: #fff;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 900px) {
  .pagelist__wrapper {
    width: 100%;
    margin: 24px auto 0;
  }
  .pagelist__list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
  .pagelist__item--txt {
    font-size: 16px;
  }
  .pagelist__item--area {
    margin: 4px 0 0;
  }
}

@media screen and (max-width: 900px) {
  .pagelist__list {
    gap: 16px;
    margin: 16px 0 0;
  }
}

/* ============================================
  記事一覧ページ用　End
============================================ */
/* フッター全体 */
.nav-fade {
  background: #A4B814;
  color: #fff;
}

.nav-fade a {
  color: #fff;
}

.nav-fade__wrapper {
  padding: 5vw;
}

.nav-fade__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1128px;
  width: 100%;
  margin: 0 auto;
}

.nav-fade__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-fade__about {
  width: 100%;
}

.nav-fade__logo {
  font-size: 24px;
  margin-bottom: 16px;
}

.nav-fade__desc {
  font-size: 16px;
}

.nav-fade__nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nav-fade__area {
  width: 100%;
}

.nav-fade__area--ttl {
  font-size: 20px;
}

.nav-fade__area--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 16px;
  gap: 16px;
  margin: 16px 0 0;
  text-align: center;
}

.nav-fade__area--item {
  border: 1px solid #fff;
  padding: 4px 0;
  width: 100px;
}

.nav-fade__area--item a {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-fade__gorieki {
  width: 100%;
}

.nav-fade__gorieki--ttl {
  font-size: 20px;
}

.nav-fade__gorieki--list {
  font-size: 16px;
  gap: 16px;
  margin: 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nav-fade__gorieki--item {
  width: auto;
}

.nav-fade__bottom {
  width: 100%;
  text-align: center;
}

.nav-fade__bottom--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}

.nav-fade__bottom--list li {
  font-size: 16px;
}

.nav-fade__copy {
  margin: 16px 0 0;
  font-size: 12px;
}

@media screen and (max-width: 900px) {
  .nav-fade__top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
  .nav-fade__nav {
    width: 100%;
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .nav-fade__area {
    width: 100%;
  }
  .nav-fade__gorieki {
    width: 100%;
  }
  .nav-fade__bottom--list {
    gap: 16px;
  }
  .nav-fade__bottom--list li {
    font-size: 14px;
  }
}

/* ============================================
  お問い合わせページ用　Start
============================================ */
.contact__wrapper {
  margin: 24px auto 0;
  max-width: 860px;
}

.contact__content {
  gap: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.contact__content--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
  width: 100%;
}

.contact__content-01 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.contact__content-01 img {
  width: 200px;
}

.contact__content-02 img {
  width: 200px;
}

.contact__content-03 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.contact__content-03 img {
  width: 300px;
}

.contact__content--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  max-width: 494px;
}

.contact__content--ttl {
  font-size: 36px;
  color: #A4B814;
}

.contact__content--txt {
  font-size: 16px;
}

.contact__catch {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: #429624;
  color: #fff;
  font-size: 36px;
  padding: 24px 0;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .contact__wrapper {
    width: 100%;
    margin: 24px auto 0;
  }
  .contact__content {
    gap: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .contact__content--box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
  .contact__content-01, .contact__content-02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .contact__content-01 img, .contact__content-02 img {
    width: 150px;
  }
  .contact__content-03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .contact__content-03 img {
    width: 200px;
  }
  .contact__content--ttl {
    font-size: 24px;
  }
  .contact__catch {
    font-size: 24px;
    padding: 24px 12px;
  }
}

.steps {
  margin: 64px auto 0;
  text-align: center;
}

.steps__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.steps__title {
  font-size: 20px;
}

.steps__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.steps__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 420px;
  padding: 24px;
  border: 1px solid #9db600;
}

.steps__step {
  color: #9db600;
  font-size: 16px;
  margin-bottom: 16px;
}

.steps__icon {
  width: 64px;
  height: 64px;
  background-color: #9db600;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.steps__icon img {
  width: 100%;
  height: 100%;
}

.steps__label {
  font-size: 16px;
  margin-bottom: 12px;
}

.steps__desc {
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}

@media screen and (max-width: 900px) {
  .steps__inner {
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .steps__grid {
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .steps__item {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
}

.form {
  margin: 48px auto 0;
  text-align: center;
}

.form__title {
  font-size: 24px;
  color: #A4B814;
  margin-bottom: 8px;
}

.form__lead {
  margin-bottom: 40px;
  font-size: 16px;
}

.form__form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.form__label {
  display: block;
  margin-bottom: 20px;
  font-size: 16px;
}

.form__label .required {
  color: red;
  margin-left: 4px;
}

.form__input {
  width: 100%;
  font-size: 16px;
  padding: 12px;
  border: 1px solid #999;
  border-radius: 6px;
  margin-top: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.form__input--file {
  border: 1px dashed #aaa;
  background: #f7f7f7;
  text-align: center;
  padding: 40px;
  color: #666;
  font-size: 14px;
  width: 100%;
  margin-top: 8px;
}

.form__checkbox {
  margin: 24px 0;
  font-size: 14px;
}

.form__submit {
  text-align: center;
  margin-top: 32px;
}

.form__button {
  background: #A4B814;
  color: #fff;
  font-size: 16px;
  padding: 14px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 250px;
}

.form__button:hover {
  background: #829300;
}

/* ============================================
  お問い合わせページ用　End
============================================ */
/* ============================================
  404ページ用　Start
============================================ */
.notfound__wrapper {
  margin: 24px auto 0;
  max-width: 900px;
}

.notfound__content {
  gap: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.notfound__box {
  width: 50%;
}

.notfound__txt {
  font-size: 20px;
}

.notfound__img {
  width: 40%;
}

@media screen and (max-width: 900px) {
  .notfound__wrapper {
    width: 100%;
    margin: 24px auto 0;
  }
  .notfound__content {
    gap: 24px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .notfound__box {
    width: 100%;
  }
  .notfound__txt {
    font-size: 16px;
  }
  .notfound__img {
    width: 60%;
  }
}

/* ============================================
  404ページ用　End
============================================ */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0;
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #A4B814;
  border-radius: 50%;
  color: #A4B814;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}

.pagination__item:hover {
  background: #A4B814;
  color: #fff;
}

.pagination__item.is-current {
  background: #A4B814;
  color: #fff;
  pointer-events: none;
}

.pagination__item--next {
  font-weight: bold;
}

.pagination__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #A4B814;
  font-size: 14px;
  padding: 0 4px;
}
/*# sourceMappingURL=layout.css.map */