:root {
  --color-blue: #014d9f;
  --color-blue2: #014ea7;
  --gradient-bg: linear-gradient(to right, #02bfcf, #0945d8);
  --arrow-bg: #014d9f;
}
body {
  font-family: "小塚ゴシック Pro", "游ゴシック", "YuGothic",
    "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
  color: #000;
}

.flex {
  display: flex;
}
a {
  text-decoration: none;
}
.inner {
  max-width: 1080px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.sp-b {
  display: none;
}
.sp-n {
  display: block;
}
/* ヘッダー */
.hamburger {
  display: none;
}
.l-container {
  align-items: center;
}

.header {
  background-color: #fff;
  padding: 10px 0;
  width: 100%;
  margin: 0 auto;
}
.header__container,
.footer__container {
  display: flex;
  justify-content: space-around;
}

.header__logo,
.footer__logo {
  width: 26%;
  display: flex;
  align-items: center;
}

.header__logo a,
.footer__logo a {
  width: 100%;
}
.header__logo img {
  margin-right: 8px;
}

.header__contact,
.footer__contact {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: right;
  width: 57%;
  margin-top: 1.3rem;
}

.header__tel,
.footer__tel {
  font-size: 2vw;
  color: var(--color-blue);
  font-weight: bold;
  align-items: center;
}
.header__tel img,
.header__mail img,
.footer__tel img,
.footer__mail img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.header__mail,
.footer__mail {
  color: var(--color-blue);
  padding: 5px 12px;
  font-size: 1.2vw;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid var(--color-blue);
  width: 40%;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 3px 3px;
}
.header__mail {
  width: 26%;
}
.header__nav {
  background-color: #fff;
  padding: 10px 0;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.header__nav-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__nav-item a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 1.2vw;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}
.header__nav-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #56abe9;
  transition: width 0.3s ease;
}

.header__nav-item a:hover {
  color: #56abe9;
}

.header__nav-item a:hover::after {
  width: 100%;
}
.header__nav-item {
  padding: 0 10px;
  position: relative;
}

.header__nav-item + .header__nav-item::before {
  content: "";
  position: absolute;
  background: #000;
  left: -6px;
  top: 0;
  height: 100%;
  color: #000;
  width: 2px;
}
#sp__nav {
  display: none;
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 9999px;
  position: relative;
  transition: background 0.3s, box-shadow 0.3s;
}

.btn--primary:hover {
  background: linear-gradient(to bottom, #ffcb47, #ffa733);
  box-shadow: 0 2px 0 #cc7800;
}

.btn__text {
  margin-right: 12px;
}

.btn__icon {
  display: inline-block;
  background: white;
  border-radius: 50%;
  font-size: 12px;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 1.5rem;
  line-height: 24px;
  text-align: center;
}
.btn__icon img {
  width: 53%;
  margin: 5px auto 0 7px;
  display: block;
}

.btn--gradient-border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 27px 40px;
  width: 39vw;
  font-size: 2vw;
  font-weight: bold;
  color: white;
  background: linear-gradient(to bottom, #fd8d01, #ffb300);
  border-radius: 50px;
  border: 4px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(to bottom, #ff9900, #ffcc00),
    linear-gradient(to top, #f08000, #ffc000);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.contact_area {
  background: linear-gradient(to right, #02bfcf, #0940d7);
  text-align: center;
  padding: 40px 20px;
  color: white;
}

.contact_area__heading {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1.4;
  margin-bottom: 24px;
}

.contact_area__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.contact_area__icon {
  position: absolute;
  left: 1rem;
}

.contact_area__btn {
  display: inline-flex;
  justify-content: center;
  position: relative;
  align-items: center;
  background: white;
  color: #014ea7;
  border-radius: 40px;
  font-weight: bold;
  padding: 5px 24px;
  font-size: 2.3rem;
  text-decoration: none;
  transition: 0.3s;
  width: 49%;
}

.contact_area__btn:hover {
  opacity: 0.85;
}

.contact_area__icon {
  margin-right: 8px;
  width: 30px;
}

.news {
  background: #e4eff5;
  padding: 60px 20px;
  text-align: center;
}

.news__title {
  font-weight: bold;
  color: #0053bd;
  margin-bottom: 40px;
}

.news__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}

.news__item {
  margin-bottom: 24px;
}

.news__date {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.news__text a {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #014ea7;
}

.footer__contact {
  margin-bottom: 1.3rem;
}
.footer_contact_fixed {
  display: none;
}

/* アニメーション */

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
  will-change: transform, opacity;
}

.fadein-left {
  transform: translateX(-50px);
}

.fadein-right {
  transform: translateX(50px);
}

.fadein-up {
  transform: translateY(50px);
}

.fadein.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
