@charset "utf-8";

.contactInner {
  padding: 0 20px;
}
.col3List {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
.col3List__item {
  width: calc(100% / 3 - 30px * 2 / 3);
}
@media screen and (max-width: 1279px) {
  .col3List__item {
    width: calc(100% / 2 - 30px * 1 / 2);
  }
  .contactLinkItem--large {
    min-height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .col3List {
    gap: 20px;
  }
  .col3List__item {
    width: 100%;
  }
}

.col2Block {
  display: flex;
  flex-flow: row wrap;
  gap: 10px 30px;
  margin-top: 10px;
}
.col2Block__item {
  width: calc(100% / 2 - 30px * 1 / 2);
}
.col2Block__item--info {
  border-radius: 4px;
  background: #F0F1F3;
}
@media screen and (max-width: 767px) {
  .col2Block__item {
    width: 100%;
  }
}

.contactLinkItem {
  display: flex;
  align-items: center;
  gap: 0 20px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px 20px;
  min-height: 100px;
  text-decoration: none;
  color: #000;
}
.contactLinkItem--large {
  min-height: 180px;
}

.contactLinkItem--large .contactLinkItem__image {
  width: 80px;
  flex-shrink: 0;
}
.contactLinkItem__image {
  width: 60px;
  flex-shrink: 0;
}
.contactLinkItem__title {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  word-break: auto-phrase;
}
.contactLinkItem__arrow {
  width: 18px;
  flex-shrink: 0;
}
@media screen and (max-width: 1279px) {
  .contactLinkItem--large {
    min-height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .contactLinkItem__image {
    width: 40px;
  }
}

.noteTxt {
  margin-top: 10px;
  font-size: 1.4rem;
}

.telItem {
  display: flex;
  align-items: center;
  gap: 0 20px;
  width: 100%;
  padding: 10px 20px;
  min-height: 100px;
}
.telItem.hasTitle {
  flex-flow: column;
  align-items: flex-start;
}
.telItem__title {
  width: 100%;
  font-size: 1.8rem;
}
.telItem__body {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.telItem__image {
  width: 60px;
  flex-shrink: 0;
}
.telItem a[href^="tel:"]{
  pointer-events:none;
  cursor: default;
  text-decoration: none;
  color: var(--site-color-main);
}
.telItem__info {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 30px;
}
.telItem__title {
  font-size: 1.6rem;
  font-weight: 700;
}
.telItem__number {
  font-size: 3rem;
  font-weight: 700;
}
.telItem__mail {
  font-size: 1.6rem;
  font-weight: 700;
}
.telItem__mail a {
  color: #000;
  text-decoration: none;
}
.telItem__mail a:hover {
  text-decoration: underline;
}
.telItem__note {
  font-size: 1.4rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .telItem__image {
    width: 40px;
  }
  .telItem a[href^="tel:"]{
    pointer-events: auto;
  }
}
