@charset "UTF-8";

/* ===== message ===== */
#message .content {
  gap: 80px;
}
#message .content img {
  width: 270px;
  height: 350px;
  object-fit: cover;
  aspect-ratio: 270 / 350;
  border-radius: 15px;
}
#message .content .position {
  display: block;
  font-weight: 700;
  color: var(--color-navy);
  text-align: center;
  margin-top: 16px;
}
#message .content .name {
  display: block;
  font-size: var(--fs-24);
  color: var(--color-navy);
  font-weight: 700;
  text-align: center;
}
#message .content p {
  flex: 1;
  font-size: var(--fs-18);
  line-height: 2.5;
  font-weight: 700;
}
@media screen and (max-width: 980px) {
  #message .content {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  #message .content {
    flex-direction: column;
    gap: 24px;
  }
  #message .content img {
    margin: 0 auto;
    width: 220px;
    height: auto;
  }
  #message .content p {
    line-height: 2;
  }
}

/* ===== overview ===== */
#overview .cmn-block .table1 {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-18);
  font-weight: 700;
  border-top: 1px solid var(--color-gray2);
}
#overview .cmn-block .table1 th {
  padding: 24px 0 24px 56px;
  border-bottom: 1px solid var(--color-gray2);
  text-align: left;
  white-space: nowrap;
}
#overview .cmn-block .table1 td {
  padding: 24px 24px 24px 100px;
  border-bottom: 1px solid var(--color-gray2);
}
#overview .cmn-block .table1 td li {
  list-style: disc;
  list-style-position: inside;
  padding-left: 24px;
  padding-bottom: 4px;
  text-indent: -24px;
}
#overview .cmn-block .table1 td li:last-of-type {
  padding-bottom: 0;
}
@media screen and (max-width: 1200px) {
  #overview .cmn-block .table1 th {
    padding: 24px 0 24px 24px;
  }
  #overview .cmn-block .table1 td {
    padding: 24px 24px 24px 40px;
  }
}
@media screen and (max-width: 768px) {
  #overview .cmn-block .table1 {
    font-size: var(--fs-16);
  }
  #overview .cmn-block .table1,
  #overview .cmn-block .table1 th,
  #overview .cmn-block .table1 td,
  #overview .cmn-block .table1 tr {
    display: block;
    width: 100%;
  }
  #overview .cmn-block .table1 th {
    padding: 12px;
    padding-left: 16px;
    border-bottom: none;
    background-color: var(--color-skyblue-light);
  }
  #overview .cmn-block .table1 td {
    border-bottom: none;
    padding: 12px;
    padding-left: 16px;
  }
  #overview .cmn-block .table1 tr:last-of-type td {
    padding-bottom: 0;
  }
  #overview .cmn-block .table1 td li {
    padding-left: 20px;
    text-indent: -20px;
  }
}

/* ===== order ===== */
#order .cmn-block .table2 {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-18);
  font-weight: 700;
  border-top: 1px solid var(--color-gray2);
  text-align: center;
}
#order .cmn-block .table2 th {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-gray2);
  width: 33.33%;
  background-color: var(--color-skyblue-light);
  letter-spacing: 0.2em;
}
#order .cmn-block .table2 td {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-gray2);
  width: 33.33%;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  #order .cmn-block .table2 {
    font-size: var(--fs-16);
  }
  #order .cmn-block .table2 th {
    padding: 12px 0;
  }
  #order .cmn-block .table2 td {
    padding: 12px 0;
  }
}

/* ===== org ===== */
#org .org-img-wrap {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 8px solid var(--color-skyblue-light);
  padding: 0 112px;
}
#org .org-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  #org .org-img-wrap {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #org .org-img-wrap {
    overflow-x: auto;
    padding: 0;
  }
  #org .org-img {
    width: 600px;
    min-width: 600px;
  }
}

/* ===== history ===== */
#history .cmn-block .timeline {
  position: relative;
}

#history .cmn-block .timeline::before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  top: -16px;
  bottom: 0;
  width: 4px;
  height: calc(100% + 32px);
  background-color: var(--color-skyblue);
  border-radius: 30px;
}

#history .cmn-block .timeline dl {
  margin: 0;
}

#history .cmn-block .timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  font-size: var(--fs-18);
}

#history .cmn-block .timeline dt {
  position: relative;
  font-weight: 700;
  color: var(--color-skyblue);
  margin: 0;
  padding-left: 20px;
  min-width: 120px;
  flex-shrink: 0;
}

#history .cmn-block .timeline dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: var(--color-skyblue);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  z-index: 1;
}

#history .cmn-block .timeline dd {
  margin: 0;
  padding-left: 0;
  font-weight: 700;
  line-height: 2;
  flex: 1;
  text-align: justify;
  letter-spacing: 0.08em;
}

#history .cmn-block .timeline dd ul {
  margin: 8px 0 0 0;
}

@media screen and (max-width: 960px) {
  #history .cmn-block .timeline-item {
    flex-direction: column;
    gap: 8px;
    font-size: var(--fs-16);
  }

  #history .cmn-block .timeline dt {
    min-width: auto;
  }

  #history .cmn-block .timeline dd {
    padding-left: 20px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #history .cmn-block .timeline-item {
    margin-bottom: 16px;
  }
  #history .cmn-block .timeline::before {
    height: calc(100% + 16px);
    top: -8px;
  }
  #history .cmn-block .timeline dt {
    padding-left: 15px;
  }
  #history .cmn-block .timeline dt::before {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }
  #history .cmn-block .timeline dd {
    padding-left: 16px;
  }
}

/* ===== access ===== */
#access .map {
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: 32px;
}
#access .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
#access .info {
  gap: 16px 72px;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 2;
}
#access .info-item {
  font-weight: 700;
  position: relative;
  padding-left: 24px;
}
#access .info-tel {
  gap: 16px;
}
#access .info-item a {
  pointer-events: none;
}
#access .info-item::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 100%;
  background-color: var(--color-skyblue-light);
  border-radius: 30px;
  left: 0;
  top: 0;
}
#access .info-item .info-note {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 960px) {
  #access .map {
    height: 360px;
  }
}
@media screen and (max-width: 768px) {
  #access .map {
    height: 240px;
  }
  #access .info-item a {
    pointer-events: auto;
  }
}
@media screen and (max-width: 600px) {
  #access .info-tel {
    flex-direction: column;
    gap: 0;
  }
}

/* ===== member-list ===== */
#member-list .cmn-block .list-wrap .list-ttl-wrap {
  position: relative;
  padding-top: 56px;
  padding-bottom: 56px;
}
#member-list .cmn-block .list-wrap:first-of-type .list-ttl-wrap {
  padding-top: 0;
}
#member-list .cmn-block .list-wrap .list-ttl-wrap h3 {
  display: flex;
  gap: 8px;
  font-weight: 700;
  font-size: var(--fs-18);
  position: relative;
}
#member-list .cmn-block .list-wrap .list-ttl-wrap h3 img {
  width: 27px;
  height: auto;
  object-fit: contain;
}
#member-list .cmn-block .list-wrap .list-ttl-wrap .list-ttl-info {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
  font-size: var(--fs-14);
  font-weight: 700;
}
#member-list .cmn-block .list-ttl-info .ttl {
  position: relative;
  padding-left: calc(16px + 8px);
}
#member-list .cmn-block .list-wrap .list-ttl-info .ttl::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: var(--color-skyblue);
  border-radius: 5px;
  transform: translateY(-50%);
}
#member-list .cmn-block .list-wrap .list-ttl-info .address,
#member-list .cmn-block .list-wrap .list-ttl-info .tel {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1100px) {
  #member-list .cmn-block .list-wrap:last-child .list-ttl-wrap {
    padding-bottom: 16px;
  }
  #member-list .cmn-block .list-wrap .list-ttl-wrap .list-ttl-info {
    position: sticky;
    padding-top: 16px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #member-list .cmn-block .list-wrap .list-ttl-wrap {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  #member-list .cmn-block .list-wrap .list-ttl-wrap h3 {
    font-size: var(--fs-16);
  }
}
@media screen and (max-width: 600px) {
  #member-list .cmn-block .list-wrap .list-ttl-wrap {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
#member-list .cmn-block .table3 {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-16);
  font-weight: 700;
  border-top: 1px solid var(--color-gray2);
  text-align: center;
}
#member-list .cmn-block .table3 th {
  padding: 24px 8px;
  border-bottom: 1px solid var(--color-gray2);
  background-color: var(--color-skyblue-light);
  letter-spacing: 0.2em;
  border-right: 1px solid var(--color-gray2);
}
#member-list .cmn-block .table3 th:last-of-type {
  border-right: none;
}
#member-list .cmn-block .table3 td {
  padding: 24px 8px;
  border-bottom: 1px solid var(--color-gray2);
  letter-spacing: 0.08em;
  border-right: 1px solid var(--color-gray2);
}
#member-list .cmn-block .table3 td:last-of-type {
  border-right: none;
}
#member-list .cmn-block .table3 td a {
  text-decoration: none;
  color: var(--color-skyblue);
}
#member-list .cmn-block .table3 td a[href^="tel:"] {
  text-decoration: none;
  pointer-events: none;
}
#member-list .cmn-block .table3 td:first-of-type,
#member-list .cmn-block .table3 td:nth-of-type(2) {
  text-align: left;
}
#member-list .cmn-block .table3 td a {
  color: var(--color-skyblue);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--color-skyblue);
}
@media screen and (max-width: 960px) {
  #member-list .cmn-block .table3-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #member-list .cmn-block .table3 th {
    padding: 12px 4px;
  }
  #member-list .cmn-block .table3 td {
    padding: 12px 4px;
  }
  #member-list .cmn-block .table3 td:first-of-type {
    width: 30%;
  }
  #member-list .cmn-block .table3 td:nth-of-type(2) {
    width: 30%;
  }
  #member-list .cmn-block .table3 td:nth-of-type(3),
  #member-list .cmn-block .table3 td:nth-of-type(4) {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  #member-list .cmn-block .table3-wrap .table3 {
    width: 600px;
    min-width: 600px;
    border-collapse: collapse;
  }
}
@media screen and (max-width: 600px) {
  #member-list .cmn-block .table3-wrap .table3 {
    width: 500px;
    min-width: 500px;
    border-collapse: collapse;
  }
  #member-list .cmn-block .table3 td a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
  #member-list .cmn-block .table3 td a[href^="tel:"]:hover {
    transform: translateY(0);
    color: var(--color-skyblue);
  }
}
