@charset "UTF-8";
@keyframes photoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fuyo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fuyo2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6%, 6%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fuyo3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes pagetop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30% {
    transform: translateX(40%);
  }
  50% {
    transform: translateX(-40%);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
:root {
  --color-blue: #01b3c4;
  --color-bluelight: #55ccd7;
  --color-yellow: #f8d224;
  --color-pink: #f88cd3;
  --color-black: #000;
  --color-white: #fff;
  --color-gold: #8c6d1c;
  --color-gold2: #C1A04F;
  --color-gray: #888;
}

.p-news__ttl {
  margin-bottom: 6.2rem;
}
@media screen and (max-width: 767px) {
  .p-news__ttl {
    margin-bottom: 3.3rem;
  }
}
.p-news__pagination {
  margin-top: 6rem;
  transform: translateY(35px);
  opacity: 0;
}
.is-active .p-news__pagination {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-news__pagination {
    margin-top: 3.2rem;
  }
}
.p-news__list {
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-news__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    padding-top: 0;
    width: 97%;
  }
}
.p-news__list-item {
  position: relative;
  z-index: 1;
  margin-top: -1px;
}
@media (hover: hover) {
  .p-news__list-item {
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .p-news__list-item:hover {
    transform: translate(-5px, -5px);
  }
}
@media screen and (max-width: 767px) {
  .p-news__list-item {
    border-radius: 15px 0 15px 0;
  }
}
.p-news__list-item::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  background-color: var(--color-white);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-news__list-item::before {
    border-radius: 10px;
    top: 20%;
    left: 3.4%;
  }
}
.p-news__list-item::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  background-color: var(--color-white);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-news__list-item::after {
    border-radius: 10px;
    top: 11%;
    left: 1.8%;
  }
}
.p-news__list-item-inner {
  position: relative;
  z-index: 1;
  padding-right: 0;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  background-color: var(--color-white);
  padding: 6px 0;
  display: flex;
  text-decoration: none;
  color: var(--color-black);
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news__list-item-inner {
    padding: 1.3rem 5.5rem;
    border-radius: 10px;
    padding-left: 1.2rem;
  }
  .p-news__list-item-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 4.4rem;
    width: 1px;
    height: 83%;
    background: url(../img/common/dashed_line2.png) repeat-y 0 center;
    background-size: 1px;
    transform: translateY(-50%);
  }
  .p-news__list-item-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    width: 1.4rem;
    height: 100%;
    background: url(../img/common/arrow.svg) no-repeat center center;
    background-size: contain;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-news__list-item-inner {
    display: block;
    line-height: 1.5;
  }
}
.p-news__list-ttl {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  width: 15rem;
  position: relative;
  flex-shrink: 0;
  line-height: 1;
  padding-left: 2.8rem;
  display: flex;
  text-align: left;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-news__list-ttl {
    width: 100%;
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 2px;
  }
}
.p-news__list-ttl .p-in_year {
  font-size: 1.1rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-news__list-ttl .p-in_year {
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
}
.p-news__list-ttl .p-in_date {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-news__list-ttl .p-in_date {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }
}
.p-news__list-content {
  width: calc(100% - 15rem);
  font-size: 1.6rem;
  padding: 20px 0 22px;
  padding-right: 12rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news__list-content {
    width: 100%;
    margin-top: 0;
    padding: 0;
    font-size: 1.3rem;
  }
}
.p-news__list-content-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 7rem;
  height: 100%;
}
.p-news__list-content-arrow::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/dashed_line2.png) repeat-y 0 center;
  background-size: 1px;
}
.p-news__list-content-arrow::after {
  content: "";
  width: 17px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 2.5rem;
  background: url(../img/common/arrow.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-news__list-content-arrow::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .p-news__list-content-arrow {
    display: none;
  }
}
.p-news__list-content-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 767px) {
  .p-news__list-content-text {
    -webkit-line-clamp: 2;
  }
}
.p-news__back {
  margin-top: 55px;
  transform: translateY(35px);
  opacity: 0;
}
.is-active .p-news__back {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .p-news__back {
    margin-top: 42px;
  }
}

.p-news_detail {
  transform: translateY(35px);
  opacity: 0;
}
.is-active .p-news_detail {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-news_detail {
    width: 97%;
  }
}
.p-news_detail__ttl {
  position: relative;
}
.p-news_detail__ttl::before, .p-news_detail__ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-news_detail__ttl::before, .p-news_detail__ttl::after {
    border-radius: 10px;
  }
}
.p-news_detail__ttl::before {
  top: 1.6rem;
  left: 1.3%;
}
@media screen and (max-width: 767px) {
  .p-news_detail__ttl::before {
    top: 1.1rem;
    left: 3.5%;
  }
}
.p-news_detail__ttl::after {
  top: 0.8rem;
  left: 0.7%;
}
@media screen and (max-width: 767px) {
  .p-news_detail__ttl::after {
    top: 0.6rem;
    left: 1.8%;
  }
}
.p-news_detail__ttl-inner {
  position: relative;
  z-index: 1;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 4.7rem 5rem 4.5rem;
}
@media screen and (max-width: 767px) {
  .p-news_detail__ttl-inner {
    padding: 2rem 1.3rem 1.6rem;
    border-radius: 10px;
  }
}
.p-news_detail__data-date {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-news_detail__data-date {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
}
.p-news_detail__data-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-news_detail__data-ttl {
    line-height: 1.4;
    font-size: 1.7rem;
  }
}
.p-news_detail__content {
  line-height: 1.75;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content {
    line-height: 1.75;
    font-size: 13px;
  }
}
.p-news_detail__content::before, .p-news_detail__content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content::before, .p-news_detail__content::after {
    border-radius: 10px;
  }
}
.p-news_detail__content::before {
  top: 1.6rem;
  left: 1.3%;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content::before {
    top: 1.1rem;
    left: 3.5%;
  }
}
.p-news_detail__content::after {
  top: 0.8rem;
  left: 0.7%;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content::after {
    top: 0.6rem;
    left: 1.8%;
  }
}
.p-news_detail__content-inner {
  position: relative;
  z-index: 1;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 5rem 5rem 8rem;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content-inner {
    border-radius: 10px;
    padding: 2.9rem 1.3rem 3.9rem;
  }
}
.p-news_detail__content-inner::after {
  content: "";
  width: 97%;
  height: 2px;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/dashed_line.jpg) repeat-x center center;
  background-size: 9px;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content-inner::after {
    width: 90%;
    top: -1px;
    height: 1px;
    background-size: 6px;
  }
}
.p-news_detail__content b, .p-news_detail__content span {
  vertical-align: baseline;
}
.p-news_detail__content h2 {
  background: linear-gradient(90deg, #f3d68c 0%, #cda846 100%);
  padding: 5px 11px 6px;
  letter-spacing: 1px;
  position: relative;
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content h2 {
    padding: 5px 8px;
    line-height: 1.3;
    font-size: 17px;
    margin-bottom: 25px;
  }
}
.p-news_detail__content h3 {
  line-height: 1.5;
  position: relative;
  padding-left: 19px;
  font-size: 23px;
  letter-spacing: 1px;
  margin-bottom: 32px;
  padding-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content h3 {
    font-size: 1.7rem;
    line-height: 1.3;
    padding-left: 14px;
    margin-bottom: 22px;
    padding-bottom: 10px;
  }
}
.p-news_detail__content h3::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--color-blue);
  box-sizing: border-box;
}
.p-news_detail__content h3::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 1rem;
  left: 0;
  background: url(../img/common/icon_h3.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content h3::before {
    width: 1.1rem;
    height: 1.1rem;
    top: 0.5rem;
  }
}
.p-news_detail__content h4 {
  line-height: 1.5;
  font-size: 20px;
  padding-bottom: 8px;
  margin-top: 28px;
  margin-bottom: 23px;
  letter-spacing: 1px;
  position: relative;
}
.p-news_detail__content h4::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/common/dashed_line.jpg) repeat-x 0 center;
  background-size: 6px;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content h4::before {
    background-size: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-news_detail__content h4 {
    line-height: 1.3;
    font-size: 1.6rem;
    padding-bottom: 11px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.p-news_detail__content h5 {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content h5 {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.p-news_detail__content a {
  color: var(--color-gold);
}
@media (hover: hover) {
  .p-news_detail__content a:hover {
    text-decoration: none;
  }
}
.p-news_detail__content strong {
  vertical-align: baseline;
}
.p-news_detail__content iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 768px) {
  .p-news_detail__content iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 767px) {
  .p-news_detail__content iframe {
    height: 45vw !important;
  }
}
.p-news_detail__content dl {
  display: flex;
  flex-wrap: wrap;
}
.p-news_detail__content dl dt {
  flex-shrink: 0;
  width: 12.5rem;
  padding-right: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content dl dt {
    width: 9rem;
    padding-right: 0.5rem;
  }
}
.p-news_detail__content dl dt::before {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
}
.p-news_detail__content dl dd {
  position: relative;
  margin-top: -0.1rem;
  width: calc(100% - 12.5rem);
  line-height: 1.8;
}
.p-news_detail__content ul {
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content ul {
    margin: 10px 0;
  }
}
.p-news_detail__content ul li {
  padding-left: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content ul li {
    padding-left: 0.9rem;
  }
}
.p-news_detail__content ul li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 1.3rem;
  left: 0;
  background-color: var(--color-black);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content ul li::before {
    top: 0.9rem;
    width: 0.3rem;
    height: 0.3rem;
  }
}
.p-news_detail__content .wp-block-image {
  margin: 20px 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-news_detail__content .wp-block-image {
    margin: 15px 0;
  }
}
.p-news_detail__content .wp-block-image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news_detail__content .wp-block-image.size-large {
    max-width: 800px !important;
  }
}

.wp-block-buttons {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .wp-block-buttons {
    margin-top: 20px;
  }
}
.wp-block-buttons + .wp-block-buttons {
  margin-top: 39px;
}
@media screen and (max-width: 767px) {
  .wp-block-buttons + .wp-block-buttons {
    margin-top: 15px;
  }
}

.is-content-justification-center {
  display: flex;
}

.wp-block-button {
  text-align: center;
  background-color: var(--color-black);
  border-radius: 100px;
  display: block;
  margin: 0 auto;
  width: 55%;
  max-width: 400px;
  box-shadow: 0 0 0 1px var(--color-black);
}
@media screen and (max-width: 767px) {
  .wp-block-button {
    width: 21.6rem;
  }
}
@media (hover: hover) {
  .wp-block-button {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .wp-block-button:hover {
    background-color: var(--color-gold);
    transform: scale(0.97);
  }
}
.wp-block-button__link {
  text-decoration: none;
  display: block !important;
  padding: 23px 15% 23px !important;
  color: var(--color-white) !important;
  font-weight: 700;
  font-size: 15px !important;
  position: relative;
  background-color: transparent !important;
}
@media screen and (max-width: 767px) {
  .wp-block-button__link {
    padding: 11px 15% 12px !important;
    font-size: 12px !important;
  }
}

.wp-block-image {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wp-block-image {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-image.size-large {
    max-width: 800px !important;
  }
}
.wp-block-image.size-full {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .wp-block-image.size-full {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.wp-block-image.size-full img {
  width: 100%;
}
.wp-block-image img {
  height: 100%;
}

.wp-element-caption {
  text-align: left;
  margin-top: 6px;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.aligncenter .wp-element-caption {
  text-align: center;
}
.alignright .wp-element-caption {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .wp-element-caption {
    font-size: 10px;
    margin-top: 5px;
  }
}

.aligncenter img {
  margin: 0 auto;
}

.alignright img {
  margin-left: auto;
}

.has-small-font-size {
  font-size: 13px !important;
}
@media screen and (max-width: 767px) {
  .has-small-font-size {
    font-size: 10px !important;
  }
}

@media screen and (min-width: 768px) {
  .wp-block-embed {
    max-width: 800px;
  }
}

.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .wp-block-columns {
    display: block !important;
    margin-top: 20px;
  }
}
.wp-block-columns .wp-block-column {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .wp-block-columns .wp-block-column {
    width: 100%;
    margin-right: 0;
  }
}

.wp-block-column {
  width: 48.5%;
  margin: 0 0 3%;
}
.wp-block-column:nth-child(2n) {
  margin-right: 0;
}