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

 components

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

/* Breadcrumb
--------------------------------------------------------*/
.breadcrumb {
  background: var(--main);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  list-style-type: none;
}
.breadcrumb-list li {
  color: var(--white);
}
.breadcrumb-list li + li::before {
  display: inline-block;
  content: "/";
  margin: 0 0.75rem;
}
.breadcrumb-list li a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .breadcrumb-list li {
    font-size: 0.813rem;
  }
}


/* Page
--------------------------------------------------------*/
.page-header {
  color: var(--white);
  padding-top: 8.75rem;
  padding-bottom: var(--40px);
  background-color: var(--main);
}
.page-title {
  font-size: 2.375rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
}
.page-subtitle {
  display: inline-block;
  font-size: 1.313rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 1.25rem;
}
.page-subtitle::before {
  display: inline-block;
  content: "/";
  padding-right: 0.5rem;
}
.page-menu {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background: var(--gray-f4);
}
.page-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem var(--60px);
}
.page-menu-list li a {
  display: block;
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
}
.page-menu-list li a::before {
  display: inline-block;
  content: "";
  width: 1rem;
  height: 1rem;
  margin-right: 0.75rem;
  background: url("../images/icon-chevron-right.svg") no-repeat center;
  background-size: contain;
}
.page-menu-list li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .page-header {
    padding-top: 5rem;
    padding-bottom: 1.25rem;
  }
  .page-title {
    font-size: 1.75rem;
  }
  .page-subtitle {
    display: block;
    padding-top: 0.5rem;
    margin-left: 0;
  }
  .page-menu-list li {
    width: 100%;
  }
  .page-menu-list li a {
    display: block;
    font-size: 1rem;
  }
  .page-menu-list li a::before {
    margin-right: 0.25rem;
  }
}


/* Contents
--------------------------------------------------------*/
.contents-fbox {
  display: flex;
  gap: 0 var(--120px);
  margin-bottom: var(--20px);
  position: relative;
}
.contents-box {
  flex: 1;
}
.contents-fbox::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  border-left: 1px dashed var(--gray-88);
}
.contents-title {
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contents-fig {
  width: 80%;
  max-width: 25rem;
  margin: var(--40px) auto 0;
}
.contents-text p + p {
  padding-top: 1.5rem;
}
.contents-btn-area {
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .contents-fbox {
    flex-direction: column;
    gap: var(--60px);
  }
  .contents-fbox::before {
    display: none;
  }
  .contents-title {
    font-size: 1.5rem;
  }
  .contents-btn-area {
    padding: 2rem 0;
  }
}


/* Section
--------------------------------------------------------*/
.section {
  margin-bottom: 8.75rem;
}
.section:last-of-type {
  margin-bottom: 0;
}
.section-title {
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.section-fbox {
  display: flex;
  align-items: flex-start;
  gap: var(--20px) 5.86%;
}
@media screen and (max-width: 767px) {
  .section-fbox {
    flex-direction: column;
  }
  .section {
    margin-bottom: 6rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
}


/* Definition List
--------------------------------------------------------*/
.definition-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%; 
}
.definition-list > dt:first-of-type {
  border-top: 1px solid var(--gray-de);
}
.definition-list > dt {
  display: flex;
  font-weight: 600;
  padding-top: 1.5rem;
}
.definition-list > dd {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-de);
}
@media screen and (max-width: 767px) {
  .definition-list > dt,
  .definition-list > dd {
    width: 100%;
  }
  .definition-list > dt {
    padding-bottom: 0.5rem;
  }
  .definition-list > dd:first-of-type {
    padding-bottom: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .definition-list > dt {
    width: 10em;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-de);
  }
  .definition-list > dd {
    width: calc(100% - 10em);
    padding-top: 1.5rem;
  }
  .definition-list > dd:first-of-type {
    border-top: 1px solid var(--gray-de);
  }
}


/* Contact
--------------------------------------------------------*/
.contact {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 3rem;
  background: var(--main-10);
}
.contact-heading {
  color: var(--black);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contact-fbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--20px) 4.063rem;
  width: 100%;
  margin: 1.563rem 0;
}
.contact-box {
  width: 100%;
  max-width: 23.75rem;
}
.contact-title {
  color: var(--white);
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: var(--20px);
}
.contact .tel .contact-title { background:var(--blue); }
.contact .fax .contact-title { background:var(--green); }
.contact .number {
  color: var(--black);
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.5rem 0 0.25rem;
}
.contact .mail {
  max-width: 51.875rem;
  padding: 1.563rem;
  margin: 0 auto;
  border-radius: var(--20px);
  background: var(--white);
}
@media screen and (max-width: 767px) {
  .contact-heading {
    font-size: 5.4vw;
  }
  .contact .number {
    font-size: 7vw;
  }
}


/* Gallery
--------------------------------------------------------*/
.gallery {
  display: flex;
  justify-content: space-between;
  gap: var(--20px) 0;
  padding: var(--60px) 0;
}
.gallery img {
  width: 32%;
  border-radius: var(--20px);
}
@media screen and (max-width: 767px) {
  .gallery {
    flex-direction: column;
  }
  .gallery img {
    width: 100%;
    min-width: inherit;
  }
}


/* Slider
--------------------------------------------------------*/
.slider{
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
}
.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.slider-group {
  display: flex;
}
.slider-group img {
  width: 26.25rem;
  height: 17.5rem;
  object-fit: cover;
  border-radius: 1.25rem;
  margin-right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .slider-group img {
    width: 13.125rem;
    height: 8.75rem;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Button
--------------------------------------------------------*/
.btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 19.375rem;
  height: 4.375rem;
  color: var(--white);
  font-weight: 600;
  margin: 0 auto;
  padding-right: var(--20px);
  border-radius: 2.188rem;
  background-color: var(--orange);
  background-image: url("../images/icon-circle-right.svg");
  background-position: right var(--10px) center;
  background-repeat: no-repeat;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary:hover {
  opacity: 0.75;
}
.btn-secondary {
  display: inline-block;
  color: var(--black);
  font-weight: 500;
}
.btn-secondary span:not(.icon-circle-arr) {
  border-bottom: 1px solid;
}
.btn-secondary .fbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn-secondary:hover .icon-circle-arr {
  transform: translateX(5px);
}
.btn-outline {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 15rem;
  height: 4.375rem;
  color: var(--black);
  font-weight: 600;
  padding-right: var(--10px);
  border: 1px solid var(--gray-de);
  border-radius: 2.188rem;
  background: var(--white);
}
.btn-cancel {
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  padding: var(--20px) 3em;
  border-radius: var(--10px);
  background: #ccc;
  cursor: pointer;
}


/* Icon
--------------------------------------------------------*/
.icon-circle-arr {
  display: inline-block;
  width: var(--50px);
  height: var(--50px);
  border-radius: 50%;
  background: var(--black);
  position: relative;
  transition: 0.2s ease;
}
.icon-circle-arr::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(../images/icon-arrow-right.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.icon-circle-arr-large {
  width: 6.875rem;
  height: 6.875rem;
  border-radius: 50%;
  background: var(--main);
  position: absolute;
  z-index: 10;
  transition: 0.2s ease;
}
.icon-circle-arr-large::before {
  display: inline-block;
  content: "";
  width: var(--30px);
  height: var(--30px);
  background: url("../images/icon-arrow-right.svg") no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (max-width: 559px) {
  .icon-circle-arr-large {
    width: 5rem;
    height: 5rem;
  }
}


/* Shape
--------------------------------------------------------*/
.wave-shape {
  position: relative;
}
.wave-shape::after {
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background: var(--main);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}


/* External Link
--------------------------------------------------------*/
a.external-link::after {
  display: inline-block;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 6px;
  background-image: url(../images/icon-external.svg);
  background-position: center;
  background-repeat: none;
  background-size: contain;
}