@charset "utf-8";

/*
  File Name   : top.css
  Description : Write top content styles
*/

/* mv
============================================================ */
.mv {
  padding-block: 20px 50px;
  position: relative;
}
.mv-copy {
  position: absolute;
  font-size: clamp(40px, calc(68 / 1200 * 100vw), 80px);
  color: #fff;
  z-index: 1;
  left: 14%;
  top: 10%;
}

.mv-pv {
  position: absolute;
  right: 12%;
  top: 7%;
  z-index: 1;
}

.mv-pv img{
	width: 100%;
	max-width: 250px;
}


@media screen and (max-width: 1080px) {
	
.mv-pv img{
	max-width: 230px;
}
	
}


@media screen and (max-width: 870px) {
	
.mv-pv img{
	max-width: 200px;
}
	
}

@media screen and (max-width: 599px) {
.mv-pv {
    right: 3%;
}
}


@media screen and (max-width: 480px) {
	
.mv-pv img{
	max-width: 150px;
}
	
}

@media screen and (max-width: 400px) {
	
.mv-pv img{
	max-width: 130px;
}
	
}


.mv-copy-text {
  position: relative;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.mv-copy-text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #6b94dd;
  animation: passing-bar 1s ease 2s both;
  z-index: 1;
}
.mv-copy-text span {
  opacity: 0;
  animation: passing-txt 1s ease 2s both;
}
.mv-copy-text:nth-child(2) {
  margin-top: 20px;
}

@media screen and (max-width: 870px) {
	
.mv-copy-text:nth-child(2) {
  margin-top: 15px;
}
	
}



@media print {
  .mv-copy-text span {
    opacity: 1;
    animation: none;
  }
  .mv-copy-text::before {
    content: none;
  }
}

@keyframes passing-bar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}

.passing .passing-bar {
}

.mv .splide__slide img {
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  max-height: 700px;
  min-height: 500px;
}
.mv .splide__arrow {
  background: transparent;
  border-top: 2px solid #6b94dd;
  border-right: 2px solid #6b94dd;
  border-radius: 0;
}
.mv .splide__arrow--next {
  right: 7.5%;
  transform: translateY(-50%) rotate(45deg);
}
.mv .splide__arrow--prev {
  left: 7.5%;
  transform: translateY(-50%) rotate(-135deg);
}

@media screen and (max-width: 1024px) {
  .mv {
    padding-block: 20px 40px;
  }
}

@media screen and (max-width: 599px) {
  .mv {
    padding-block: 0;
  }
  .mv-copy {
    font-size: 34px;
    left: 4%;
    top: 8%;
  }
  .mv .splide__slide img {
    border-radius: 0;
    max-height: 380px;
    min-height: 380px;
  }
}



/* topnews
============================================================ */


.fluffy {
    animation: fluffy1 3s ease infinite;
}

@keyframes fluffy1 {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

.topnews {
	width: 100%;
    padding: 40px 0;
/*    margin-bottom: 50px;*/
    background-color: #fee2e0;
}


@media screen and (max-width: 1024px) {
.topnews {
/*    margin-bottom: 20px;*/
}
}

.topnews h2 {
	text-align: center;
	margin-bottom: 20px;
}
.topnews h2 img {
	width: 300px;
}


@media screen and (max-width: 767px) {
.topnews h2 img {
    width: 220px;
}
}

.topnews-inner {
	width: 100%;
	max-width: 1230px;
	margin: 0 auto;
	padding:  0 4%;

}


.topnews-lists {
	width: 100%;
	background-color: #fff;
	padding: 20px 40px;
	border-radius: 10px;
	font-size:  130%;
}

.topnews-lists li {
	width: 100%;
	font-weight: bold;
    margin: 15px 0;
}

.topnews-lists li .date {
	display: table-cell;
    width: 160px;
    color: #e06555;
}
.topnews-lists li .title {
	display: table-cell;
	width: auto;
}
.topnews-lists li .title a:link {
    text-decoration: underline;
}

.topnews-lists li .new {
	background-color: #faf7a1;
    padding: 3px 10px;
    font-size: 70%;
    margin-left: 10px;
    border-radius: 3px;
}



@media screen and (max-width: 599px) {

/*
.topnews h2 img {
	width: 290px;
}
*/
	
.topnews {
        margin-bottom: 0;
	    padding: 40px 0 30px 0;
    }

.topnews-lists {
	padding: 0px 20px 0px 20px;
}


.topnews-lists li {
	margin-bottom: 0;
	padding: 20px 0;
	margin: 0;
	border-bottom: 1px solid #ccc;
}
.topnews-lists li:last-child {
	border-bottom: none;
}

.topnews-lists li .date {
	display: block;
	width: 100%;
}
.topnews-lists li .title {
	display: block;
	width: 100%;
}


}



@media screen and (max-width: 420px) {
.topnews {
	padding: 30px 0 20px 0;
    }
	
.topnews-inner {
    padding: 0 20px;
}
}




/* news
============================================================ */
.news {
  position: relative;
  background: url(../images/home/topics_pc.jpg) no-repeat center center;
  background-size: cover;
  padding-block: 70px;
}
.news-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
}
.news-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.news-list a {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
  border-radius: 10px;
  height: 100%;
}
.news-list a:hover .thumb img {
  opacity: 1;
}
.news-list .thumb {
  order: 1;
  position: relative;
}
@media (hover: hover) {
  .news-list a:hover {
    opacity: 1;
  }
  .news-list a:hover .thumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    border-radius: 10px 10px 0 0;
  }
}
.news-list .thumb img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.news-list .list-category-mark {
  position: absolute;
  font-size: 14px;
  padding: 4px 10px;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: bold;
  z-index: 2;
}
.news-list .list-category-bukatu {
  background: #8aaeff;
}
.news-list .list-category-hiraku {
  background: #e878cb;
}
.news-list .list-category-seitokai {
  background: #29a6a5;
}
.news-list .list-category-ptakatudo {
  background: #cece15;
}
.news-list .list-category-toshokan {
  background: #ff9284;
}
.news-list .list-category-topics {
  background: #ae87dc;
}
.news-list .title {
  order: 2;
  padding: 20px 20px 12px 20px;
  font-size: 14px;
  font-weight: bold;
}
.news-list .date {
  text-align: right;
  order: 3;
  margin-top: auto;
  padding-block: 10px;
  margin-inline: 20px;
  border-top: 1px solid #ccc;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0;
  color: #6b94dd;
}

.news-link {
  text-align: right;
  margin-top: 40px;
}
.news-link .com-btn {
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .news-inner {
    grid-template-columns: 1fr;
  }
  .news-lists {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .news {
    padding-block: 35px 45px;
    background: url(../images/home/topics_sp.jpg) no-repeat center center;
  }
  .news-lists {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .news-list a {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .news-list .list-category-mark {
    font-size: 11px;
    padding: 2px 10px;
  }
  .news-list .thumb {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .news-list .thumb img {
    border-radius: 10px 0 0 10px;
    height: 100%;
  }
  @media (hover: hover) {
    .news-list a:hover .thumb::before {
      border-radius: 10px 0 0 10px;
    }
  }
  .news-list .date {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-top: none;
    text-align: left;
    padding-block: 15px 0;
    margin-inline: 12px;
    font-size: 10px;
  }
  .news-list .title {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 0 12px 12px 12px;
    font-size: 12px;
  }
  .news-link {
    margin-top: 35px;
    text-align: center;
  }
}

/* news
============================================================ */
.tab-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2%;
}
.tab-list button {
  font-weight: bold;
  text-align: center;
  padding-block: 15px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  color: #fff;
}
.tab-list button._blue {
  background: #8aaeff;
}
.tab-list button._blue.is-active {
  color: #8aaeff;
}
.tab-list button._pink {
  background: #e878cb;
}
.tab-list button._pink.is-active {
  color: #e878cb;
}
.tab-list button._green {
  background: #29a6a5;
}
.tab-list button._green.is-active {
  color: #29a6a5;
}
.tab-list button._yellow {
  background: #cece15;
}
.tab-list button._yellow.is-active {
  color: #cece15;
}
.tab-list button._orange {
  background: #ff9284;
}
.tab-list button._orange.is-active {
  color: #ff9284;
}
.tab-list button._white {
  background: #6b94dd;
  color: #fff;
}
.tab-list button._white.is-active {

  color: #6b94dd;
}
.tab-list button.is-active {
  background: #fff;
}

.tab-panels {
  margin-top: 45px;
}

[role="tabpanel"] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
[role="tabpanel"].is-active {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .tab-list button {
    font-size: 16px;
    padding-block: 12px;
  }
}
@media screen and (max-width: 599px) {
  .tab-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .tab-list button {
    font-size: 13px;
  }
  .tab-panels {
    margin-top: 27px;
  }
}

/* section-title
============================================================ */
.section-title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.section-title-main {
  font-size: 24px;
  margin-left: 20px;
  color: #6b94dd;
}
.section-title-sub {
  text-transform: uppercase;
  font-size: 63px;
  font-weight: bold;
  line-height: 1;
}
.u-passing-text {
  position: relative;
  font-weight: bold;
  height: fit-content;
  width: fit-content;
}
.u-passing-text._white::before {
  background-color: #fff;
}
.u-passing-text::before {
  content: "";
  position: absolute;
  width: fit-content;
  height: 100%;
  z-index: 1;
  background-color: #6b94dd;
  opacity: 0;
}
.u-passing-text.is-show::before {
  animation: passing-bar 1s ease 0.3s both;
}
.u-passing-text .u-passing-text-bg {
  opacity: 0;
  display: block;
}
.u-passing-text.is-show .u-passing-text-bg {
  animation: passing-txt 1s ease 0.3s both;
}

@media print {
  .u-passing-text::before {
    opacity: 1;
  }
  .u-passing-text .u-passing-text-bg {
    opacity: 1;
    animation: none;
  }
}

@keyframes passing-bar {
  0% {
    opacity: 1;
    left: 0;
    width: 0;
  }
  50% {
    opacity: 1;
    left: 0;
    width: 100%;
  }
  51% {
    opacity: 1;
    left: 0;
    width: 100%;
  }
  100% {
    opacity: 1;
    left: 100%;
    width: 0;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* white */
.section-title._white .section-title-main {
  color: #e5e16c;
}
.section-title._white .section-title-sub {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .section-title {
    -ms-writing-mode: unset;
    writing-mode:  horizontal-tb;
    display: grid;
  }
  .section-title-main {
    order: 2;
    margin-left: 0;
    margin-top: 10px;
  }
  .section-title-sub {
    order: 1;
  }
}
@media screen and (max-width: 599px) {
  .news-inner {
    gap: 25px;
  }
  .section-title-main {
    margin-top: 15px;
    font-size: 13px;
  }
  .section-title-sub {
    font-size: 50px;
  }
}


/* about
============================================================ */
.about {
  background: linear-gradient(90deg, #6b94dd 0%, #6b94dd calc(50% - 300px), #a0bbe8 calc(50% - 300px), #a0bbe8 100% );
  padding-block: 70px 80px
}
.about-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
}
.about-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 60px;
  margin-right: 10px;
}
.about-list-link {
  border-radius: 10px;
  position: relative;
  display: block;
  z-index: 1;
}
.about-list-link::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  right: -10px;
  bottom: -10px;
  background:repeating-linear-gradient(-45deg,#a0bbe8 0,#a0bbe8 5px,#fff 5px,#fff 10px);
  border-radius: 10px;
  z-index: -1;
}
.about-list-bg {
  border-radius: 10px;
  position: relative;
  display: block;
}
.about-list-bg img {
  border-radius: 10px;
}
@media (hover: hover) {
  .about-list-link:hover {
    opacity: 1;
  }
  .about-list-link:hover .about-list-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    border-radius: 10px;
  }
}
.about-list-inner {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 50%;
  width: 75%;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.about-list-title {
  font-weight: bold;
  font-size: 26px;
}
.about-list-text {
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 15px;
}
.about-list-text._orange {
  color: #ffa277;
}
.about-list-text._green {
  color: #48d5a6;
}
.about-list-text._yellow {
  color: #dcd735;
}
.about-list-text._purple {
  color: #e18df5;
  font-size: 15px;
}

@media screen and (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-lists {
    gap: 30px;
  }
  .about-list-inner {
    height: 60%;
    width: 85%;
  }
  .about-list-title {
    font-size: 22px;
  }
  .about-list-text,
  .about-list-text._purple {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .about {
    padding-block: 35px 55px;
    background: linear-gradient(#6b94dd 0%, #6b94dd 250px, #a0bbe8 250px, #a0bbe8 100% );
  }
  .about-inner {
    gap: 40px;
  }
  .about-lists {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .about-list-link::after {
    right: -7px;
    bottom: -7px;
  }
  .about-list-inner {
    height: 50%;
    width: 75%;
  }
  .about-list-text._purple {
    font-size: 10px;
  }
}


/* schedule
============================================================ */
.schedule {
  padding-block: 70px 320px;
  position: relative;
}
.schedule::before,
.schedule::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  z-index: -1;
  left: 0;
}
.schedule::before {
  top: 0;
  background-image: url(/theme/sn-default/images/home/schedule_bg01.jpg);
  background-size: cover;
}
.schedule::after {
  bottom: 0;
  background-image: url(/theme/sn-default/images/schedule_bg04.jpg);
  background-size: cover;
}
.schedule-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
}
.schedule-calendar {
  position: relative;
  z-index: 1;
  border: 5px solid #a0bbe8;
  background: #fff;
  padding: 65px 60px 55px;
}
.schedule-bg {
  position: absolute;
  width: 370px;
  height: auto;
  left: 10px;
  bottom: 50px;
  z-index: 0;
}

@media print {
  .schedule-calendar iframe {
    width: 100% !important;
  }
}

@media screen and (max-width: 1024px) {
  .schedule {
    padding-block: 70px 250px;
  }
  .schedule-inner {
    grid-template-columns: 1fr;
  }
  .schedule-calendar {
    padding: 40px;
  }
  .schedule-calendar iframe {
    height: 90vw;
  }
  .schedule-bg {
    width: 200px;
    right: 50px;
    left: auto;
    bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .schedule {
    padding-block: 50px 180px;
  }
  .schedule-title .section-title-sub {
    font-size: 35px;
    text-align: center;
  }
  .schedule-title .section-title-main {
    font-size: 12px;
    text-align: center;
  }
  .schedule-inner {
    grid-template-columns: 1fr;
    border: 5px solid #a0bbe8;
    background: #fff;
    max-width: calc(100vw - (var(--padding-sp) * 1.5));
    padding: 20px 15px;
    gap: 35px;
  }
  .schedule-calendar {
    padding: 0;
    border: none;
    background: transparent;
  }
  .schedule-calendar iframe {
    height: 70vw;
    min-height: 400px;
  }
  .schedule-bg {
    width: 137px;
    left: 24px;
    bottom: 28px;
  }
}


/* top-banner
============================================================ */

.top-banner{
	padding: 30px 0;
}

.top_c_bnr {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	justify-content: center;
}

.top_c_bnr li {
    width: 32%;
    margin: 0 0.5% 5px 0.5%;
}

.top_c_bnr li img {
    border-radius: 10px;
	border: 1px solid #c4d9f2;
}


@media screen and (max-width: 700px) {
.top_c_bnr li {
    width: 48%;
}
	
}

@media screen and (max-width: 480px) {
	
.top-banner {
    padding: 30px;
}
	
	
.top_c_bnr li img {
    border-radius: 8px;
	}
	
.top_c_bnr li {
    width: 100%;
}
	
}


/* gallery
============================================================ */
.gallery {
  padding-block: 65px 60px;
  position: relative;
  background: #e0edfc;
}
.gallary-title {
  max-width: 360px;
  margin-inline: auto;
}
.gallery-text {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  color: #6b94dd;
  font-size: 20px;
  line-height: 1.6;
}
.gallery-button {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 599px) {
  .gallery{
    padding-block: 35px;
  }
  .gallery-text {
    margin-top: 15px;
    font-size: 15px;
  }
}

/* banner
============================================================ */
.banner {
  padding-block: 50px;
}
.banner ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.banner ul li {
  width: calc(33.333% - (40px * 2 / 3));
  border-radius: 10px;
}
.banner ul li  img {
  border-radius: 10px;
  border: 1px solid #6b94dd;
}

@media screen and (max-width: 1024px) {
  .banner ul li {
    width: calc(50% - (40px / 2));
  }
}
@media screen and (max-width: 599px) {
  .banner {
    padding-block: 40px 45px;
  }
  .banner ul {
    gap: 40px;
    max-width: 90%;
    margin-inline: auto;
  }
  .banner ul li {
    width: 100%;
  }
}

/* banner
============================================================ */
.contact {
  background: #6b94dd;
  padding-block: 60px 70px;
}
.contact-title {
  -ms-writing-mode: unset;
  writing-mode: horizontal-tb;
  text-align: center;
}
.contact-title .section-title-main {
  font-size: 16px;
  margin-top: 16px;
}
.contact-title .section-title-sub {
  font-size: 59px;
}
.contact-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
  margin-inline: auto;
}
.contact-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px 15px 10px 15px;
}
.contact-card-title {
  font-size: 24px;
  text-align: center;
  position: relative;
}
.contact-card-title::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 70px;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #e5e16c;
}
.contact-card-numbers {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-top: 40px;
  font-weight: bold;
}
.contact-card-tel {
  font-size: 24px;
  line-height: 1;
}
.contact-card-tel img {
  width: 24px;
  height: auto;
}
.contact-card-fax {
  font-size: 14px;
  font-weight: bold;
  pointer-events: none;
}
.contact-card-button {
  margin-top: 15px;
  text-align: center;
}
.contact-card-button .com-btn._small {
  font-size: 10px;
  padding-left: 15px;
}
.contact-card-button .com-btn:hover._small {
  background: #6b94dd;
  color: #fff;
}
.contact-card-button .com-btn:hover._small::after{
  border-color: #e5e16c;
}
.contact-card-button img {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

@media screen and (max-width: 1024px) {
  .contact-cards {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .contact-card {
    padding: 35px 15px 20px 35px;
  }
}
@media screen and (max-width: 599px) {
  .contact {
    padding-block: 40px 55px;
  }
  .contact-title {
    text-align: left;
  }
  .contact-title .section-title-sub {
    font-size: 49px;
  }
  .contact-title .section-title-main {
    font-size: 13px;
  }
  .contact-cards {
    margin-top: 35px;
    gap: 25px;
  }
  .contact-card {
    padding: 35px 15px 20px 15px;
  }
  .contact-card-title {
    font-size: 20px;
  }
  .contact-card-title::after {
    height: 3px;
    width: 60px;
    bottom: -20px;
  }
  .contact-card-numbers {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .contact-card-tel {
    font-size: 31px;
    letter-spacing: 0;
  }
  .contact-card-tel img {
    width: 30px;
    position: relative;
    top: 2px;
  }
  .contact-card-fax {
    font-size: 18px;
  }
  .contact-card-button {
    min-width: 230px;
    margin-top: 22px;
  }
  .contact-card-button .com-btn._small {
    font-size: 13px;
    padding: 10px 40px 10px 20px;
  }
}


/* sect-emergency
============================================================ */
.sect-emergency {
  max-width: calc(1100px + (var(--padding-pc) * 2));
  margin-inline: auto;
  padding: 0 var(--padding-pc) 70px;
  font-weight: bold;
}
.sect-emergency .section-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  background: #C1272D;
  padding: 20px;
}
.sect-emergency .title-wrap .title {
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sect-emergency .title-wrap .title::before {
  content: '\f12a';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #C1272D;
  background: #e5e16c;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  height: 20px;
  width: 20px;
  display: inline-grid;
  font-size: 12px;
  padding: 5px;
  top: 1px;
  place-items: center;
}
.emergency-lists {
  background: #fff;
}
.emergency-lists-item {
  padding: 20px;
}
.emergency-lists-item a {
  display: grid;
  gap: 10px;
  font-weight: bold;
}
.emergency-lists-item .date {
  color: #C1272D;
}
.emergency-lists-item .title {
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  .sect-emergency .section-inner {
    grid-template-columns: 1fr;
	margin-top: 30px;
  }
  .sect-emergency .title-wrap .title {
    justify-content: center;
  }
  .emergency-lists {
    margin-top: 20px;
  }
  .emergency-lists-item {
  }
  .emergency-lists-item a {
    gap: 5px;
  }
  .emergency-lists-item a .title {
    font-size: 16px;
  }
}

/* アニメーション */
.fade-up {
  opacity: 0;
}
.fade-up.is-show {
  opacity: 1;
  animation: fade-up 0.5s ease both;
}

@media print {
  .fade-up {
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
