@charset "UTF-8";
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  line-height: 1.6;
  color: var(--black);
  font-size: 16px;
  font-style: normal;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: var(--bg_gray_light);
}
.content {
  max-width: 1040px;
  margin: 4rem auto;
  padding: 6rem 10rem;
  background: #fff;
  border-radius: 10px;
}
h1 {
  font-size: 30px;
  font-weight: 700;
}
.topic {
  margin-top: 3rem;
}
.table {
    margin: 1em 0 3em;
    width: 100%;
    max-width: 100%;
    border-top:1px solid var(--border_c);
    border-bottom:1px solid var(--border_c);
}
.table th {
    background: var(--bg_gray_light);
    padding: 0.5em;
}
.table td {
    padding: 0.5em;
}
.main {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 60px;
}
.main-img {
  width: 390px;
  transition: all 0.5s;
}
.main-desc {
  width: calc(100% - 450px);
  transition: all 0.5s;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border_c);
}
.main-desc__item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border_c);
}
.main-desc__item b {
  font-weight: 700;
  display: block;
}
.main-desc__tel {
  margin-top: 3rem;
  padding: 1.5rem 1rem;
  background: var(--bg_gray_light);
  border: 1px solid var(--border_c);
  font-size: 18px;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.main-desc__tel img {
  width: 1px;
  height: 30px;
}
.main-desc__tel a {
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.main-desc__tel span {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.main-desc__tel--tel::before {
  width: 20px;
  height: 20px;
  content: '';
  background-image: url(../images/tel.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.main-desc__tel--fax::before {
  width: 20px;
  height: 20px;
  content: '';
  background-image: url(../images/fax.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.main-map {
  margin-top: 2rem;
  padding-top: 2rem;
  border-bottom: 1px solid var(--border_c);
  border-top: 1px solid var(--border_c);
}
.main-map__btn {
  width: 360px;
  margin: 10px auto 20px auto;
}
.main-map__btn a {
  width: 100%;
  height: 64px;
  background: linear-gradient(to bottom, #1085CB 0%, var(--text_link_c) 100%);
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.main-map__btn a::before {
  width: 20px;
  height: 20px;
  margin-left: -10px;
  content: '';
  background-image: url(../images/pin.png);
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (max-width:1040px) {
  .content {
    padding: 6rem;
    border-radius: 0;
  }
}
@media screen and (max-width: 959px) {
  .main {
    gap: 20px;
  }
  .main-img {
    width: 311px;
  }
 .main-desc {
    width: calc(100% - 331px);
  }
  .main-desc__tel {
    gap: 15px;
  }
}
@media screen and (max-width: 813px) {
  .content {
    margin: 0;
    padding: 1rem;
    border-radius: 0;
  }
  .head {
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    font-size: 24px;
  }
  .main {
    margin-top: 1rem;
  }
  .main-img, .main-desc {
    width: 100%;
  }
  .main-desc__item {
    display: flex;
    gap: 20px;
  }
  .main-desc__item b {
    min-width: 50px;
    display: inline-block;
  }
  .main-desc__tel {
    margin-top: 0;
    font-size: 16px;
    gap: 10px;
  }
}
@media screen and (max-width: 813px) {
  .main-map__btn {
    width: 100%;
  }
  .main-map__btn a {
    height: 50px;
    font-size: 16px;
  }
  .main-map b {
    min-width: 50px;
    display: inline-block;
  }
}

footer {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.banner {
  width: 230px;
}
@media screen and (max-width: 813px) {
  .banner {
    width: calc((100% - 10px) / 2);
  }
}
