@charset "UTF-8";
/* --------------------------------------------------------

 components.css

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

/* Breadcrumb
--------------------------------------------------------*/
.breadcrumb {
  padding: 1.25rem 0;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  list-style-type: none;
}
.breadcrumb-list li:not(:last-child)::after {
  content: "/";
  padding: 0 5px;
}
.breadcrumb-list li a:hover {
  text-decoration: underline;
}


/* Page
--------------------------------------------------------*/
.page-title {
  color: var(--main);
  font-size: 2.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 0.625rem 0;
  margin-bottom: 3.75rem;
  border-bottom: 3px solid;
}
.page-contact {
  width: 100%;
  text-align: center;
  padding: 3.125rem 0;
  background: url(../images/bg-contact.webp) no-repeat center;
  background-size: cover;
}
.page-contact p {
  color: var(--white);
  font-weight: 600;
}
.page-contact .contact-heading {
  font-size: 1.25em;
}
.page-contact .icon-phone {
  width: 2rem;
  height: 2.625rem;
}
.page-contact a {
  color: #ffff43;
  font-family: var(--marugo);
  font-weight: 900;
  font-style: normal;
  font-size: 3.6rem;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 2.143rem;
  }
}


/* Section
--------------------------------------------------------*/
.section-heading {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}
.section-title {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.4;
  padding: 0.75rem 1rem;
  margin-bottom: 1.563rem;
  background: var(--main);
  border-radius: 5px;
}
.section-text p + p{
  padding-top: 1rem;
}
.section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .section-title {
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
}


/* News List
--------------------------------------------------------*/
.news-list-item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  margin-bottom: 2px;
  background: var(--white);
}
.news-list dt,
.news-list dd {
  font-weight: 600;
}
.news-list dd a {
  color: var(--main);
  text-decoration: underline;
}


/* Red Box
--------------------------------------------------------*/
.red-box {
  padding: 1rem 1.25rem;
  border: 1px solid var(--red);
  background: var(--white);
}
.red-heading {
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 700;
}


/* Card
--------------------------------------------------------*/
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.card {
  width: 30%;
  max-width: 22.5rem;
  padding: 0.75rem 1.25rem 1.25rem;
  border: 1px solid var(--pale-blue);
  background: var(--white);
}
.card-heading {
  font-weight: 600;
  padding-bottom: 0.313rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid;
}
.card-text {
  font-size: 0.875rem;
  line-height: 1.6;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .card {
    width: 100%;
    max-width: 100%;
  }
  .card-text {
    font-size: 1rem;
  }
}


/* Definition List
--------------------------------------------------------*/
.definition-list {
  padding: 2rem 0 1rem;
}
.definition-list dt {
  font-weight: 600;
}
.definition-list dd {
  margin-bottom: 1rem;
}


/* Item List
--------------------------------------------------------*/
.item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.188rem 2.5rem;
}
.item {
  width: 21.67rem;
  max-width: 16.25rem;
}
.item dt {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .item-list {
    gap: 1.75rem 1rem;
  }
 .item {
    width: calc(50% - 0.5rem);
 } 
}


/* Summary List
--------------------------------------------------------*/
.summary-list dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 3.438rem;
  padding: 1.25rem;
  margin-bottom: 2px;
  background: var(--white);
}
.summary-list dl:first-of-type {
  border-radius: 1rem 1rem 0 0;
}
.summary-list dl:last-of-type {
  border-radius: 0 0 1rem 1rem;
}
.summary-list dl dt {
  width: 6em;
  font-weight: 600;
}
.summary-list dl dt span.fz-small {
  display: block;
  color: var(--light-gray);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
}
.summary-list dl dd {
  width: calc(100% - calc(6em + 3.438rem));
}
@media screen and (max-width: 767px) {
  .summary-list dl dt,
  .summary-list dl dd {
    width: 100%;
  }
  .summary-list dl dt {
    margin-bottom: 0.5rem;
  }
}


/* Map
--------------------------------------------------------*/
.map {
  margin-top: 1rem;
}
iframe[src*="www.google.com/maps/embed"] {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  iframe[src*="www.google.com/maps/embed"] {
    aspect-ratio: 4 / 3;
  }
}


/* Highlight
--------------------------------------------------------*/
.highlight {
  display: inline-block;
  padding: 0.313rem 0.625rem;
  background: yellow;
}


/* Contents Menu
--------------------------------------------------------*/
.contents-menu {
  margin-top: 1.563rem;
}
.contents-menu-list li {
  margin-bottom: 5px;
}
.contents-menu-list li a {
  display: block;
  color: var(--main);
  font-weight: 600;
  padding: 0.75rem;
  border: 1px solid var(--pale-blue);
  border-radius: 5px;
  background: var(--white);
  transition: all 0.15s ease;
}
.contents-menu-list li a::before {
  display: inline-block;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.5rem;
  background: url(../images/icon-arrow.svg) no-repeat;
  background-size: contain;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.contents-menu-list li a:hover {
  border-color: var(--white);
  background: var(--pale-blue);
}


/* Button
--------------------------------------------------------*/
.btn {
  display: block;
  width: 15rem;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 0.85rem;
  margin-top: 1.563rem;
  background: var(--sub);
  transition: all 0.3s ease;
}
.btn:hover {
  background: var(--main);
}
@media screen and (max-width: 767px) {
  .btn {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Animation
--------------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.is-animated {
  opacity: 1;
  transform: translateY(0);
}