@charset "UTF-8";
.js-show-up {
  opacity: 0;
  transform: translate(0, 80px);
}
.js-show-up.is-show {
  opacity: 1;
  transform: none;
}

.js-show-left {
  opacity: 0;
  transform: translate(80px, 0);
}
.js-show-left.is-show {
  opacity: 1;
  transform: none;
}

.js-show-right {
  opacity: 0;
  transform: translate(-80px, 0);
}
.js-show-right.is-show {
  opacity: 1;
  transform: none;
}

html {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0 !important;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  color: #121212;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 572px) {
  html {
    font-size: 14px;
  }
}

input {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  margin: 0;
}

dt,
th {
  font-weight: 400;
}

.container {
  position: relative;
  overflow: hidden;
}

.wrap {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 1240px);
}

.wrap-tb {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 964px);
}

.wrap-tb-s {
  margin-inline: auto;
  padding: 0 20px;
  width: min(100%, 768px);
}

.mt-150 {
  margin-top: 150px;
}
@media screen and (max-width: 572px) {
  .mt-150 {
    margin-top: 100px;
  }
}

.mt-100 {
  margin-top: 100px;
}
@media screen and (max-width: 572px) {
  .mt-100 {
    margin-top: 80px;
  }
}

.mt-50 {
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .mt-50 {
    margin-top: 30px;
  }
}

@media screen and (max-width: 572px) {
  .sm-hide {
    display: none;
  }
}

.sm-disp {
  display: none;
}
@media screen and (max-width: 572px) {
  .sm-disp {
    display: block;
  }
}

.more-btn {
  background-color: transparent;
  border-radius: 30px;
  border: 1px solid currentColor;
  display: block;
  font-size: 0.925rem;
  line-height: 50px;
  margin: 50px auto 0;
  position: relative;
  text-align: center;
  transition: 0.3s;
  width: 300px;
}
@media screen and (max-width: 572px) {
  .more-btn {
    margin: 30px auto 0;
  }
}
.more-btn:hover {
  opacity: 0.7;
}

.page-top {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  line-height: 1.4;
  background-color: #FFFF00;
  border: 1px double currentColor;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  border-radius: 50%;
}
.page-top > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-top.is-show {
  visibility: visible;
  opacity: 1;
}
.page-top:hover {
  color: #111;
  background-color: #fff;
  border: 1px double #111;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  -webkit-animation: fadeIn 1.5s forwards;
          animation: fadeIn 1.5s forwards;
}

.scroll-off {
  overflow: hidden;
}

.header {
  width: 100%;
  padding: 0 20px;
}
.header__logo {
  margin: 20px auto 0;
  width: min(540px, 70%);
}
.header__logo > a {
  display: block;
  transition: 0.3s;
  width: 100%;
}
.header__logo > a:hover {
  opacity: 0.7;
}
.header__logo > a > img {
  width: 100%;
  height: auto;
}
.header__nav {
  font-weight: bold;
  margin: 20px 0;
}
@media screen and (max-width: 964px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-item {
  position: relative;
  height: 100%;
}
.header__nav-item:hover .header__nav-sub {
  visibility: visible;
  opacity: 1;
}
.header__nav-item:last-child > a {
  border-right: 1px solid currentColor;
}
.header__nav-item > a {
  display: block;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25em 0.75em;
  border-left: 1px solid currentColor;
}
.header__nav-item > a:hover {
  opacity: 0.7;
}
.header__nav-sub {
  position: absolute;
  background-color: #fff;
  color: #121212;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  font-weight: 500;
  z-index: 10;
}
.header__nav-sub > li > a {
  display: block;
  padding: 0.5em 2em;
  transition: 0.3s;
}
.header__nav-sub > li > a:hover {
  opacity: 0.8;
}

.hamburger {
  aspect-ratio: 1/1;
  background-color: #fff;
  top: 20px;
  right: 20px;
  position: fixed;
  width: 60px;
  z-index: 30;
  transition: 0.3s;
  border-radius: 50%;
  border: 1px solid currentColor;
}
@media screen and (max-width: 572px) {
  .hamburger {
    width: 40px;
  }
}
.hamburger span {
  display: block;
  width: 30px;
  background-color: currentColor;
  height: 2px;
  border-radius: 3px;
  transition: 0.5s;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    width: 30px;
  }
}
@media screen and (max-width: 572px) {
  .hamburger span {
    width: 20px;
  }
}
.hamburger span:nth-child(1) {
  position: absolute;
  top: 40%;
  transform: translateX(-50%);
}
.hamburger span:nth-child(2) {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
}
.hamburger span:nth-child(3) {
  position: absolute;
  top: 60%;
  transform: translateX(-50%);
}

.hamburger.on-click span:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateX(-50%) rotate(390deg);
}
.hamburger.on-click span:nth-child(2) {
  opacity: 0;
}
.hamburger.on-click span:nth-child(3) {
  position: absolute;
  top: 50%;
  transform: translateX(-50%) rotate(-390deg);
}

.ham-menu {
  display: flex;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  position: fixed;
  z-index: 25;
  transition: 0.3s;
  background-color: #fff;
  top: 0;
  left: 0;
}
.ham-menu.is-show {
  opacity: 1;
  visibility: visible;
}
.ham-menu__inner {
  width: 100%;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.ham-menu__logo {
  width: min(500px, 90%);
  display: block;
}
.ham-menu__logo > a {
  display: block;
  width: 100%;
}
.ham-menu__logo > a > img {
  width: 100%;
  height: auto;
}
.ham-menu__nav {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .ham-menu__nav {
    margin-top: 10px;
  }
}
.ham-menu__nav-list {
  width: 100%;
  text-align: center;
}
.ham-menu__nav-list > li {
  font-size: 1.125rem;
}
@media screen and (max-width: 572px) {
  .ham-menu__nav-list > li {
    font-size: 1rem;
  }
}
.ham-menu__nav-list > li:not(:first-child) {
  margin-top: 10px;
}
.ham-menu__nav-list > li > a {
  display: inline-block;
  text-align: center;
  transition: 0.3s ease;
}
.ham-menu__nav-list > li > a:hover {
  opacity: 0.7;
}
.ham-menu__sns {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .ham-menu__sns {
    margin-top: 30px;
  }
}
.ham-menu__sns > a {
  display: block;
}
.ham-menu__sns > a > img {
  width: 35px;
  display: block;
}

.footer {
  margin-top: 80px;
  background-color: #FFFF00;
  padding: 50px 0;
}
@media screen and (max-width: 572px) {
  .footer {
    margin-top: 60px;
    padding: 30px 0;
  }
}
.footer__logo {
  margin: 20px auto 0;
  width: min(540px, 90%);
}
.footer__logo > a {
  display: block;
  transition: 0.3s;
  width: 100%;
}
.footer__logo > a:hover {
  opacity: 0.7;
}
.footer__logo > a > img {
  width: 100%;
  height: auto;
}
.footer__nav {
  font-weight: bold;
  margin: 30px 0 0;
}
@media screen and (max-width: 964px) {
  .footer__nav {
    display: none;
  }
}
.footer__nav-list {
  display: flex;
  justify-content: center;
}
.footer__nav-item {
  position: relative;
  height: 100%;
}
.footer__nav-item:hover .header__nav-sub {
  visibility: visible;
  opacity: 1;
}
.footer__nav-item:last-child > a {
  border-right: 1px solid currentColor;
}
.footer__nav-item > a {
  display: block;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25em 0.75em;
  border-left: 1px solid currentColor;
}
.footer__nav-item > a:hover {
  opacity: 0.7;
}
.footer__nav-sub > li > a {
  font-size: 0.937rem;
  display: block;
  padding: 0.25em;
  transition: 0.3s;
}
.footer__nav-sub > li > a::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}
.footer__nav-sub > li > a:hover {
  opacity: 0.8;
}
.footer__copylight {
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .footer__copylight {
    margin-top: 30px;
  }
}

.container .news-picup {
  transform: translateY(50%);
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(800px, 96%);
  padding: 0.5em 0;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .container .news-picup {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5em 50px 0.5em 20px;
    font-size: 1rem;
  }
}
.container .news-picup::after {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.container .news-picup:hover {
  box-shadow: none;
}
.container .news-picup .ttl {
  margin-left: 30px;
}
@media screen and (max-width: 572px) {
  .container .news-picup .ttl {
    margin-left: 0;
  }
}
.container .bousai {
  padding: 60px 0;
  background-color: #FFFF00;
}
@media screen and (max-width: 572px) {
  .container .bousai {
    padding: 80px 0 60px;
  }
}
.container .bousai .wrap-tb-s {
  position: relative;
}
.container .bousai__content {
  position: relative;
  margin-top: 30px;
}
.container .bousai__content-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 572px) {
  .container .bousai__content-title {
    font-size: 1.125rem;
  }
}
.container .bousai__content-title::before {
  content: "";
  display: block;
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 110%;
  height: 10px;
  background-color: #fff;
}
@media screen and (max-width: 572px) {
  .container .bousai__content-title::before {
    width: 100%;
  }
}
.container .bousai__content-msg {
  text-align: center;
  margin-top: 30px;
  line-height: 2;
}
@media screen and (max-width: 572px) {
  .container .bousai__content .img-inner {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.container .bousai__content .bousai-accent-img1 {
  position: absolute;
  width: 220px;
  right: 95%;
  top: -50px;
  display: inline-block;
}
@media screen and (max-width: 964px) {
  .container .bousai__content .bousai-accent-img1 {
    width: 140px;
    right: 90%;
    top: -30px;
  }
}
@media screen and (max-width: 572px) {
  .container .bousai__content .bousai-accent-img1 {
    position: static;
    width: 40%;
  }
}
.container .bousai__content .bousai-accent-img2 {
  position: absolute;
  width: 220px;
  left: 90%;
  bottom: -80px;
  display: inline-block;
}
@media screen and (max-width: 964px) {
  .container .bousai__content .bousai-accent-img2 {
    width: 160px;
    left: 85%;
    bottom: -130px;
  }
}
@media screen and (max-width: 572px) {
  .container .bousai__content .bousai-accent-img2 {
    position: static;
    width: 40%;
  }
}
.container .bousai__katudou {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  border: 3px solid currentColor;
  margin-top: 30px;
}
@media screen and (max-width: 572px) {
  .container .bousai__katudou {
    padding: 10px;
  }
}
.container .bousai__katudou-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #1d2087;
}
.container .bousai__katudou-list {
  margin-top: 1rem;
  counter-reset: num 0;
}
.container .bousai__katudou-list > li {
  display: flex;
}
.container .bousai__katudou-list > li:not(:first-child) {
  margin-top: 0.5rem;
}
.container .bousai__katudou-list > li::before {
  content: counter(num);
  counter-increment: num 1;
  width: 25px;
  height: 25px;
  display: inline-block;
  border-radius: 50%;
  color: #fff;
  background-color: #121212;
  font-weight: bold;
  margin-right: 5px;
  text-align: center;
  flex-shrink: 0;
}
.container .scheme {
  padding: 60px 0;
}
.container .scheme__image {
  margin-top: 30px;
  width: 100%;
}
.container .scheme__image img {
  width: 100%;
  height: auto;
  display: inline-block;
}
.container .character {
  padding: 120px 0;
  background-color: #FFFF00;
  -webkit-clip-path: polygon(0 0, 100% calc(0% + 5vw), 100% 100%, 0 calc(100% - 5vw));
          clip-path: polygon(0 0, 100% calc(0% + 5vw), 100% 100%, 0 calc(100% - 5vw));
}
@media screen and (max-width: 572px) {
  .container .character {
    padding: 60px 0;
  }
}
.container .character__content {
  margin-top: 50px;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 572px) {
  .container .character__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 0;
  }
}
.container .character__content-image {
  width: 160px;
}
.container .character__content-image > img {
  width: 100%;
  height: auto;
}
.container .character__content-msg {
  margin-top: 20px;
  line-height: 2;
  flex: 1;
  font-size: 1.125rem;
}
@media screen and (max-width: 572px) {
  .container .character__content-msg {
    line-height: 1.6;
  }
}
.container .works {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .container .works {
    margin-top: 60px;
  }
}
.container .works__list {
  margin-top: 50px;
}
@media screen and (max-width: 572px) {
  .container .works__list {
    margin-top: 30px;
  }
}
.container .works__list > li {
  padding: 1rem;
  display: flex;
  gap: 30px;
  border-top: 1px solid currentColor;
}
@media screen and (max-width: 572px) {
  .container .works__list > li {
    flex-direction: column;
    gap: 5px;
    padding: 1rem 0;
  }
}
.container .works__list > li:last-child {
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 572px) {
  .container .works__list > li > p:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 572px) {
  .container .works__list > li > p:nth-child(2) {
    width: 100%;
  }
}
.container .works__gallery {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 572px) {
  .container .works__gallery {
    gap: 20px;
  }
}
.container .works__gallery > img {
  width: 200px;
  height: auto;
  border-radius: 20px;
}
@media screen and (max-width: 572px) {
  .container .works__gallery > img {
    width: 100%;
  }
}
.container .part {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .container .part {
    margin-top: 60px;
  }
}
.container .part__touch {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .container .part__touch {
    margin-top: 30px;
  }
}
.container .part__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media screen and (max-width: 964px) {
  .container .part__list {
    gap: 20px;
  }
}
@media screen and (max-width: 572px) {
  .container .part__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.container .part__list-item {
  display: block;
  transition: 0.3s ease;
}
.container .part__list-item:hover {
  opacity: 0.8;
}
.container .part__list-item > img {
  width: 100%;
  height: auto;
}
.container .bousai-gallery {
  margin-top: 100px;
}
@media screen and (max-width: 572px) {
  .container .bousai-gallery {
    margin-top: 80px;
  }
}
.container .bousai-gallery .bousai-slider {
  height: 300px;
}
@media screen and (max-width: 572px) {
  .container .bousai-gallery .bousai-slider {
    height: 200px;
  }
}
.container .bousai-gallery .bousai-slider__wrap {
  display: flex;
  overflow: hidden;
  height: 100%;
}
@-webkit-keyframes slider-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slider-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.container .bousai-gallery .bousai-slider__list {
  display: flex;
  list-style: none;
  padding: 0;
  -webkit-animation: slider-scroll-left 60s infinite linear 0.5s both;
          animation: slider-scroll-left 60s infinite linear 0.5s both;
  height: 100%;
}
@media screen and (max-width: 572px) {
  .container .bousai-gallery .bousai-slider__list {
    -webkit-animation: slider-scroll-left 30s infinite linear 0.5s both;
            animation: slider-scroll-left 30s infinite linear 0.5s both;
  }
}
.container .bousai-gallery .bousai-slider__image {
  height: 100%;
  margin-right: 2em;
}
@media screen and (max-width: 572px) {
  .container .bousai-gallery .bousai-slider__image {
    margin-right: 1em;
  }
}
.container .bousai-gallery .bousai-slider__image.img-vertical {
  display: grid;
  grid-template-columns: 1;
  gap: 1em;
}
.container .bousai-gallery .bousai-slider__image > img {
  height: 100%;
}
.container .news {
  margin-top: 100px;
}
@media screen and (max-width: 572px) {
  .container .news {
    margin-top: 80px;
  }
}
.container .instagram {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .container .instagram {
    margin-top: 60px;
  }
}
.container .step {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .container .step {
    margin-top: 60px;
  }
}
.container .step__msg {
  text-align: center;
  margin-top: 30px;
  font-weight: bold;
  line-height: 2;
}
.container .step__image {
  margin-top: 30px;
  width: 100%;
}
.container .step__image img {
  width: 100%;
  height: auto;
}
.container .step__text {
  text-align: center;
  margin-top: 30px;
  line-height: 2;
}
.container .faq {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .container .faq {
    margin-top: 60px;
  }
}
.container .faq__list {
  margin-top: 50px;
  counter-reset: num 0;
}
@media screen and (max-width: 572px) {
  .container .faq__list {
    margin-top: 30px;
  }
}
.container .faq__list-dt {
  margin-top: 30px;
  padding-left: 50px;
  position: relative;
}
.container .faq__list-dt::before {
  counter-increment: num 1;
  content: "Q" counter(num);
  display: inline-block;
  color: #fff;
  font-weight: bold;
  background-color: #00b7de;
  text-align: center;
  width: 40px;
  height: 30px;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 572px) {
  .container .faq__list-dt::before {
    height: 25px;
  }
}
.container .faq__list-dd {
  margin-top: 10px;
  padding-left: 50px;
  position: relative;
}
.container .faq__list-dd::before {
  content: "A" counter(num);
  display: inline-block;
  color: #fff;
  font-weight: bold;
  background-color: #ea6d8d;
  width: 40px;
  height: 30px;
  text-align: center;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 572px) {
  .container .faq__list-dd::before {
    height: 25px;
  }
}
.container .contact {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .container .contact {
    margin-top: 60px;
  }
}
.container .contact__msg {
  margin-top: 50px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .container .contact__msg {
    margin-top: 30px;
  }
}
.container .contact__block {
  margin-top: 30px;
  padding: 20px;
  border: 3px solid currentColor;
}
.container .contact__block .contact-name {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 572px) {
  .container .contact__block .contact-name {
    font-size: 1.25rem;
  }
}
.container .contact__block .contact-tel {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  display: block;
}
@media screen and (max-width: 572px) {
  .container .contact__block .contact-tel {
    font-size: 1.25rem;
  }
}
.container .contact__block .contact-address {
  text-align: center;
}

.sec-head {
  font-size: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 572px) {
  .sec-head {
    font-size: 1.5rem;
  }
}
.sec-head > img {
  position: absolute;
  right: 105%;
  top: 50%;
  transform: translate(0, -50%);
  width: 50px;
  display: block;
}
@media screen and (max-width: 572px) {
  .sec-head > img {
    position: static;
    margin-inline: auto;
    width: 40px;
  }
}
.sec-head > h2 {
  position: relative;
  line-height: 1;
  text-align: center;
  font-weight: bold;
}
.sec-head > h2 .furigana {
  position: absolute;
  display: inline-block;
  bottom: 120%;
  left: 5px;
  font-size: 0.425em;
}
.sec-head > h2 span {
  font-size: 0.5em;
}

.news-content {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 964px) {
  .news-content {
    gap: 20px;
  }
}
@media screen and (max-width: 572px) {
  .news-content {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
}
.news-content__item {
  display: block;
  transition: 0.3s ease;
}
.news-content__item:hover {
  opacity: 0.7;
}
.news-content__item-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-content__item-image > img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-content__item-block {
  margin-top: 1em;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
}
.news-content__item-block .news-title {
  line-height: 1.4;
  font-size: 1.125rem;
  font-weight: bold;
  width: 100%;
}
.news-content__item-block .news-date {
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 500;
  padding-left: 3px;
}
.news-content__item-block .news-excerpt {
  margin-top: 5px;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
.news-content .more-btn {
  margin: 50px auto 0;
  border: 1px solid currentColor;
  width: 260px;
  line-height: 2.4;
  transition: 0.3s;
  display: block;
  text-align: center;
}
.news-content .more-btn:hover {
  opacity: 0.7;
}

.p-404 {
  width: 100%;
  padding: 200px 20px;
  text-align: center;
  color: #121212;
}
@media screen and (max-width: 572px) {
  .p-404 {
    padding: 150px 20px;
  }
}
.p-404 .title {
  font-size: 2rem;
  font-weight: bold;
}
.p-404 .text {
  margin-top: 30px;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-404 .btn-home {
  display: block;
  padding: 0.6em 4em;
  text-align: center;
  width: 250px;
  margin: 50px auto 0;
  font-size: 0.9em;
  font-weight: bold;
  color: #C1272D;
  transition: 0.3s;
  background-color: #fff;
  border: 1px solid #C1272D;
}
@media screen and (max-width: 572px) {
  .p-404 .btn-home {
    width: 200px;
  }
}
.p-404 .btn-home:hover {
  opacity: 0.7;
}

.a-news {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .a-news {
    margin-top: 60px;
  }
}

.pagination {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .pagination {
    margin-top: 50px;
  }
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  width: 50px;
  height: 50px;
  margin-right: 1em;
  font-size: 1.25rem;
  font-weight: 400;
  transition: 0.5s;
  border-radius: 50%;
  font-weight: bold;
}
@media screen and (max-width: 572px) {
  .nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
    width: 40px;
    height: 40px;
    margin-right: 5px;
    font-size: 1.1rem;
  }
}

.nav-links a.page-numbers:hover {
  opacity: 0.7;
}

.nav-links .current {
  font-weight: bold;
  background-color: #FFFF00;
  padding: 0;
}

/* 前への「＜」、次への「＞」 */
.nav-links a.prev,
.nav-links a.next {
  color: currentColor;
  position: relative;
  border: none;
  background-color: transparent;
}

.nav-links .dots {
  background: transparent;
  border: none;
}

.next.page-numbers {
  position: relative;
}
.next.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(0, -50%);
}
.next.page-numbers::after {
  content: "･･･";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-75%, -50%);
  font-size: 14px;
}

.prev.page-numbers {
  position: relative;
}
.prev.page-numbers::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  transform: translate(0, -50%);
}
.prev.page-numbers::after {
  content: "･･･";
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  transform: translate(-25%, -50%);
  font-size: 14px;
}

.s-news {
  margin-top: 80px;
}
@media screen and (max-width: 572px) {
  .s-news {
    margin-top: 60px;
  }
}
.s-news__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.s-news__date {
  color: #C1272D;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 572px) {
  .s-news__date {
    margin-top: 5px;
  }
}
.s-news__image {
  width: 100%;
  margin-top: 30px;
}
.s-news__image > img {
  width: 100%;
  height: auto;
}
.s-news__content {
  margin-top: 50px;
  line-height: 1.8;
}
@media screen and (max-width: 572px) {
  .s-news__content {
    margin-top: 30px;
    line-height: 1.6;
  }
}
.s-news__content h2 {
  font-size: 1.5rem;
  border-bottom: 3px solid #C1272D;
  font-weight: bold;
  margin-top: 2.5em;
  padding-bottom: 10px;
}
.s-news__content h3 {
  font-size: 1.25rem;
  padding-left: 0.5em;
  font-weight: bold;
  border-left: 3px solid #C1272D;
  margin-top: 2.5em;
}
.s-news__content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 2em;
}
.s-news__content p {
  margin-top: 1em;
}
.s-news__content p a {
  text-decoration: underline;
  color: #C1272D;
  transition: 0.3s;
}
.s-news__content p a:hover {
  opacity: 0.7;
}
.s-news__content figure {
  margin-top: 1em;
}
.s-news__content figure img {
  width: 100%;
}
.s-news .btn-back {
  display: block;
  padding: 0.6em 4em;
  text-align: center;
  width: 250px;
  margin: 50px auto 0;
  font-size: 0.9em;
  font-weight: bold;
  color: #C1272D;
  transition: 0.3s;
  background-color: #fff;
  border: 1px solid #C1272D;
}
@media screen and (max-width: 572px) {
  .s-news .btn-back {
    width: 200px;
  }
}
.s-news .btn-back:hover {
  opacity: 0.7;
}
/*# sourceMappingURL=style.css.map */