@charset "UTF-8";

html,
body {
  overflow-x: hidden;
}

.sp_nav {
  display: none;
}

.yellow {
  position: relative;
  color: #000 !important;
}

.yellow::before {
  content: "";
  position: absolute;
  background-color: #ffff00;
  width: 100%;
  height: 30px;
  z-index: -1;
}

.posting_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 30px;
}

.posting_inner h1 {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 18px;
}

.posting_inner h1 img {
  width: 150px;
}

.posting_contact_wrap {
  display: flex;
  gap: 12.5px;
}

.posting_tel_box {
  background-color: #de0000;
}

.posting_mail_box {
  background-color: #6b96bf;
}

.posting_tel_box a,
.posting_mail_box a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 50px;
  font-size: 18px;
  gap: 12.5px;
  color: #fff;
  font-family: "biz-udpgothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.posting_tel_box a:hover,
.posting_mail_box a:hover {
  color: #fff;
}

.posting_tel_box a:hover {
  background-color: #b70000 !important;
}

.posting_mail_box a:hover {
  background-color: #1e73be;
}

.posting_tel_box img {
  width: 25px;
}

.posting_mail_box img {
  width: 30px;
}

.nav_contents .flex {
  display: flex;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  gap: 50px;
  font-size: 24px;
  margin-bottom: 100px;
}

/* バナー */

.posting_bnr {
  background-color: #e5f5fd;
  padding: 50px 0;
}

.posting_bnr h3 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 25px;
}

.bnr_flex {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.tel_bnr a:hover .tel_bnr_top {
  background-color: #b70000;
}

.tel_bnr a:hover dl {
  border: 3px solid #b70000;
}

.mail_bnr a:hover .mail_bnr_top {
  background-color: #1e73be;
}

.mail_bnr a:hover .mail_bnr_txt {
  border: 3px solid #1e73be;
}

.tel_bnr_top,
.mail_bnr_top {
  color: #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 450px;
  height: 90px;
}

.tel_bnr_top {
  background-color: #de0000;
  transition: all 0.35s ease;
}

.mail_bnr_top {
  background-color: #6b96bf;
  transition: all 0.35s ease;
  line-height: 1.2;
}

.bnr_top_txt {
  text-align: center;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 12.5px 0;
}

.tel_bnr_top div,
.mail_bnr_top div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 0 25px 12.5px;
}

.tel_bnr_top div img,
.mail_bnr_top div img {
  width: 35px;
}

.tel_bnr_top div p,
.mail_bnr_top div p {
  font-family: "biz-udpgothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
}

.tel_bnr dl {
  background-color: #fff;
  font-size: 28px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-weight: bold;
  padding: 12.5px 0;
  border: 3px solid #de0000;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 110px;
  transition: all 0.35s ease;
}

.tel_bnr dl div {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.tel_bnr dl div dt {
  text-align: center;
  width: 180px;
}

.tel_bnr dl div dt span {
  font-size: 14px;
}

.mail_bnr_top div p {
  font-size: 24px;
}

.mail_bnr_txt {
  background-color: #fff;
  border: 3px solid #6b96bf;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 12.5px 0;
  height: 110px;
  transition: all 0.35s ease;
}

.mail_bnr_txt {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  gap: 7px;
}

.mail_bnr_txt .big {
  font-size: 28px;
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  width: 50px;
  margin: 5px 0;
  height: 3px;
  background: #333;
  border-radius: 3px;
}

/* active状態で変化 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.sp_only {
  display: none !important;
}

/* バナー END */

/*フェードイン*/

.effect-fade {
  opacity: 0;
  transform: translate(0, 100px);
  /* フェードインで動く高さを指定 */
  transition: all 1000ms !important;
  /* フェードインにかかる時間を指定 */
}

.effect-fade.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.grid_item_anim {
  opacity: 0;
}

/*フェードイン*/

/*フェードイン(左右)*/

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease-in-out, transform 1s ease-in-out;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease-in-out, transform 1s ease-in-out;
}

.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width:1100px) {

  body {
    padding-bottom: 0 !important;
  }

  header {
    position: relative;
    transition: top 0.3s ease;
    z-index: 1000;
    background-color: #fff;

  }

  header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  #click_to_call_bar {
    display: none !important;
  }

  .posting_contact_wrap {
    display: none;
  }

  .posting_inner {
    padding: 0 0 0 20px;
  }

  /* 1100px以下で表示 */
  .hamburger {
    display: flex;
  }

  #g-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
  }

  #g-nav.active {
    display: block;
    z-index: 10001;
    height: 100svh;
  }

  .tab_blk {
    display: block !important;
  }

  #g-nav ul {
    list-style: none;
    margin: 50px 0;
    padding: 0;
  }

  #g-nav li {
    border-bottom: 1px solid #ddd;
  }

  #g-nav a {
    display: flex;
    padding: 15px 20px;
    font-family: "Noto Sans JP", sans-serif;
  }

  #g-nav a:hover {
    background-color: #1e73be;
    color: #fff;
  }

  #g-nav.active .posting_contact_wrap {
    flex-direction: column;
    margin: 0 20px;
    display: flex;
  }

  #g-nav .posting_contact_wrap a {
    padding: 0;
    width: 100%;
  }

  .official_link a {
    height: 50px;
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  /* バナー */

  .tel_bnr dl {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }

  .tel_bnr dl div {
    gap: 12.5px;
  }

  .mail_bnr_txt {
    font-size: 16px;
    padding: 0;
    justify-content: center;
  }

  .mail_bnr_txt .big {
    font-size: 20px;
  }

}

@media screen and (max-width:767px) {

  .sp_nav {
    display: block;
  }

  .pc_only {
    display: none !important;
  }

  .sp_only {
    display: flex !important;
  }

  .yellow::before {
    height: 15px;
  }

  .posting_inner h1 {
    font-size: 14px;
    gap: 12.5px;
  }

  .posting_inner h1 img {
    width: 120px;
  }

  .posting_bnr h3 {
    text-align: justify;
    font-size: 24px;
    padding: 0 5%;
    line-height: 1.8;
  }

  .bnr_flex {
    flex-direction: column;
    padding: 0 5%;
    gap: 25px;
  }

  .bnr_top_txt {
    font-size: 16px;
  }

  .bnr_top_txt p {
    font-size: 16px;
  }

  .tel_bnr_top,
  .mail_bnr_top {
    width: 100%;
  }

  .tel_bnr_top div p,
  .mail_bnr_top div p {
    font-size: 24px;
  }

  .mail_bnr_top div p {
    font-size: 16px;
  }

  .mail_bnr_txt {
    font-size: 16px;
    text-align: justify;
  }

}

@media screen and (min-width:768px) and (max-width:1100px) {

  .yellow::before {
    height: 20px;
  }

  .nav_contents {
    display: none;
  }

  .posting_contact_wrap {
    display: none;
  }

  .tab_blk {
    display: block;
  }

  .posting_bnr h3 {
    font-size: 28px;
  }

  .bnr_flex {
    gap: 25px;
  }

  .tel_bnr_top,
  .mail_bnr_top {
    width: 350px;
  }

  .tel_bnr dl {
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }

  .tel_bnr dl div dt {
    width: 150px;
  }

  .bnr_top_txt {
    font-size: 16px;
  }

  .tel_bnr_top div,
  .mail_bnr_top div {
    gap: 12.5px;
  }

  .tel_bnr_top div img,
  .mail_bnr_top div img {
    width: 30px;
  }

  .tel_bnr_top div p,
  .mail_bnr_top div p {
    font-size: 24px;
  }

  .mail_bnr_top div p {
    font-size: 18px;
  }

  .mail_bnr_txt {
    font-size: 16px;
    padding: 0;
    justify-content: center;
  }

  .mail_bnr_txt .big {
    font-size: 20px;
  }

  #g-nav ul {
    margin: 100px 0;
  }

  #g-nav a {
    padding: 25px 20px;
  }

  .official_link a,
  .posting_tel_box a,
  .posting_mail_box a {
    height: 64px;
  }
}