@charset "UTF-8";
header {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}
header .logo {
  display: block;
  width: 400px;
  margin: 0 0 60px 50px;
  padding: 80px 0 0;
}
@media screen and (max-width: 1100px) {
  header .logo {
    margin: 0 0 50px 30px;
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 768px) {
  header .logo {
    margin: 0 0 80px 30px;
    width: 50%;
  }
}
header .logo img {
  width: 100%;
  height: auto;
}
header .navi {
  position: absolute;
  left: 30px;
  top: 250px;
  margin: 0 0 60px 50px;
}
@media screen and (max-width: 1100px) {
  header .navi {
    margin: 0 0 40px 30px;
  }
}
@media screen and (max-width: 768px) {
  header .navi {
    display: none;
  }
}
header .navi li {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 25px;
  position: relative;
  width: 150px;
}
header .navi li::after {
  position: absolute;
  right: -80px;
  top: 50%;
  background-color: #000078;
  /* 横線の色 */
  content: "";
  height: 1px;
  /* 横線の高さ */
  width: 40px;
  /* 横線の長さ */
  transition: .6s;
  opacity: 0;
}
@media screen and (max-width: 1100px) {
  header .navi li::after {
    width: 25px;
  }
}
header .navi li:hover::after {
  right: -20px;
  opacity: 1;
}
header .navi li a {
  font-size: 14px;
  color: #000078;
  position: relative;
}
header .page-title {
  position: absolute;
  left: 30px;
  top: 620px;
  display: block;
  font-size: 48px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000078;
  margin: 0 50px 60px;
}
@media screen and (max-width: 1100px) {
  header .page-title {
    margin: 0 0 40px 35px;
  }
}
@media screen and (max-width: 768px) {
  header .page-title {
    font-size: 34px;
  }
}
header .tel {
  display: block;
  position: absolute;
  top: 80px;
  right: 100px;
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
}
@media screen and (max-width: 1100px) {
  header .tel {
    display: none;
  }
}
header .tel br {
  display: none;
}
@media screen and (max-width: 1100px) {
  header .tel br {
    display: block;
  }
}
header .tel span {
  margin-left: 30px;
  font-size: 30px;
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 1100px) {
  header .tel span {
    font-size: 24px;
    display: block;
    margin: 0;
  }
}

#container {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  #container {
    width: 90%;
  }
}

h2 {
  font-size: 35px;
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin-bottom: 50px;
}

.thum_box {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
  border-radius: 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}
.thum_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.title {
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1100px) {
  .title {
    font-size: 24px;
  }
}

.time {
  color: #828282;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  text-align: center;
  margin-bottom: 30px;
}

.text {
  width: 100%;
  margin-bottom: 50px;
}
.text p {
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

.btn {
  width: 150px;
  margin: 0 auto 80px;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
  padding: 15px;
  border-radius: 20px;
  transition: .6s;
}
.btn:hover {
  background-color: #000078;
}
.btn:hover a {
  color: #fff;
}
.btn a {
  display: block;
  text-align: center;
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  transition: .6s;
}
@media screen and (max-width: 1100px) {
  .btn a {
    font-size: 16px;
  }
}

#footer {
  width: 1200px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 1250px) {
  #footer {
    width: 90%;
  }
}
#footer .inner {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 48%;
  column-gap: 4%;
}
@media screen and (max-width: 1250px) {
  #footer .inner {
    display: block;
  }
}
#footer .inner .map {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 1250px) {
  #footer .inner .map {
    height: 300px;
    margin-bottom: 30px;
  }
}
#footer .inner .map iframe {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
#footer .inner .info {
  width: 100%;
}
#footer .inner .info .logo {
  width: 250px;
  display: block;
  margin-bottom: 30px;
}
#footer .inner .info .navi {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 520px) {
  #footer .inner .info .navi {
    display: none;
  }
}
#footer .inner .info .navi li {
  padding: 0 20px 0 0;
}
#footer .inner .info .navi li a {
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
}
#footer .inner .info .text {
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 20px;
}
#footer .inner .info .address {
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 10px;
  line-height: 1.7;
  margin-bottom: 20px;
  display: block;
}
#footer .inner .info .address span {
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 15px;
}
#footer .inner .info .tel a {
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
}

.copy {
  text-align: center;
}
.copy small {
  color: #000078;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 9px;
}

/*# sourceMappingURL=single.css.map */
