/* ===================================
共通
=================================== */
/* 表示/非表示 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 1250px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* 改行 */
.pc-br {
  display: block;
}

.tb-br {
  display: none;
}

.tb_only-br {
  display: none;
}

.sp-br {
  display: none;
}

.se-br {
  display: none;
}

@media screen and (max-width: 1025px) {

  .tb-br,
  .tb_only-br {
    display: inline;
  }
}

@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }
}

@media screen and (max-width: 600px) {
  .tb_only-br {
    display: none;
  }
}

@media screen and (max-width: 449px) {
  .se-br {
    display: inline;
  }
}

/* ===================================
ヘッダー
=================================== */
header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: .3s;
}

#header.UpMove {
  top: -80px;
  height: 0;
}

#header.DownMove {
  top: 0;
  height: 0;
}

.header_inner {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px 15px;
  background-color: #fff;
  height: 80px;
  transition: .3s;
}

.header_right {
  display: flex;
}

/* ヘッダーロゴ */
.logo {
  max-width: 186px;
  padding-top: 5px;
  transition: .3s;
}

.logo:hover {
  opacity: 0.6;
}

.logo_02 a {
  display: flex;
  align-items: center;
  padding-top: 6px;
  transition: .3s;
}

.logo_02 a:hover {
  opacity: .6;
}

.logo_02 a .division_icon {
  height: 40px;
  margin-right: 6px;
}

.logo_02 a .division_icon[alt="九都県市"] {
  height: 40px;
  margin-right: 6px;
  max-width: 300px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .logo_02 a .division_icon[alt="九都県市"] {
    max-width: 100px;
  }
}
@media screen and (max-width: 400px) {
  .logo_02 a .division_icon[alt="九都県市"] {
    max-width: 50px;
  }
}

.logo_02 a .cross_img {
  height: 16px;
  margin-left: 10px;
  margin-right: 12px;
}

.logo_02 a .logo_icon {
  height: 24px;
  margin-top: -6px !important;
}

/* ヘッダーナビゲーション */
.nav_list {
  display: flex;
  padding-top: 12px;
}

.nav_list li a {
  display: block;
  padding: 5px 10px;
  /* margin-left: 10px; */
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4em;
  transition: .3s;
}

.nav_list li a:hover {
  opacity: .6;
}

/* ヘッダードロップメニュー */
.header_drop_box {
  padding-top: 5px;
  margin-left: 19px;
}

.header_drop_box .header_drop_inner {
  border: 1px solid #036EB8;
  border-radius: 5px;
  background-color: #fff;
  transition: .3s;
}

.header_drop_ttl {
  position: relative;
  cursor: pointer;
  padding: 12px;
  padding-right: 34px;
  padding-left: 10px;
  color: #036EB8;
  font-size: 1.3rem;
  font-weight: 700;
}

.header_drop_ttl .yaji {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  transform-origin: center;
  right: 10px;
  width: 9px;
  transition: .4s;
}

.header_drop_ttl .yaji.active {
  transform: translateY(-50%) rotate(180deg);
}

.header_drop_menu ul {
  padding-bottom: 5px;
}

.header_drop_menu li a {
  display: block;
  padding: 5px 10px;
  color: #036EB8;
  font-size: 1.3rem;
  transition: .3s;
}

.header_drop_menu li a:hover {
  opacity: .6;
}

.header_drop_menu li a[href*="yoshikawa-city"] {
  display: none;
}


/* ヘッダーCTA */
.header_cta_btn a {
  display: block;
  margin-left: 30px;
  padding: 17px;
  padding-right: 40px;
  padding-left: 15px;
  border-radius: 200px;
  background-color: #FFDB3F;
  border: 1px solid #FFDB3F;
  color: #4C4948;
  font-size: 1.3rem;
  font-weight: 700;
  background-image: url(../images/lp/cta_yaji.svg);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 20px;
  transition: .3s;
}

.header_cta_btn a:hover {
  background-color: #fff;
  color: #888;
}

/* ハンバーガー */
.hmb_btn {
  cursor: pointer;
  padding: 8px;
  margin-left: 15px;
}

.hmb_btn .btn_txt {
  color: #036EB8;
  font-size: 0.9rem;
}

.hmb_btn .btn_bar {
  position: relative;
  margin: 5px auto;
  width: 16px;
  height: 14px;
}

.hmb_btn .btn_bar span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  background-color: #036EB8;
  width: 100%;
  height: 2px;
  transition: .3s;
}

.hmb_btn .btn_bar span:nth-of-type(1) {
  top: 0;
}

.hmb_btn .btn_bar span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hmb_btn .btn_bar span:nth-of-type(3) {
  bottom: 0;
}

.hmb_btn .btn_bar.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hmb_btn .btn_bar.active span:nth-of-type(2) {
  left: 70%;
  opacity: 0;
}

.hmb_btn .btn_bar.active span:nth-of-type(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(45deg);
}

/* ハンバーガーメニュー */
.header_inner.active {
  box-shadow: 0 0 10px rgb(0 175 231 / 10%);
}

.hmb_menu_box {
  position: absolute;
  top: -350px;
  z-index: -1;
  width: 100%;
  padding: 25px 0 20px;
  background-color: #fff;
  text-align: center;
  transition: .4s;
  opacity: .95;
}

.hmb_menu_list li {
  font-size: 1.6rem;
  line-height: 1.5em;
  padding: 16px 0;
  color: #036EB8;
}

.hmb_menu_box.open {
  top: 70px;
}

/* 固定CTA */
.fixed_cta_btn {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.fixed_cta_btn a {
  display: block;
  margin: auto;
  padding: 20px;
  padding-right: 60px;
  padding-left: 25px;
  max-width: 350px;
  border-radius: 200px 0 0 200px;
  background-color: #FFDB3F;
  border: 2px solid #FFDB3F;
  color: #4C4948;
  font-size: 2.0rem;
  font-weight: 700;
  background-image: url(../images/lp/cta_yaji.svg);
  background-repeat: no-repeat;
  background-position: center right 18px;
  background-size: 25px;
  transition: .3s;
}

.fixed_cta_btn a:hover {
  background-color: #fff;
  color: #888;
}

@media screen and (max-width: 767px) {
  .logo {
    max-width: 138px;
    padding-top: 13px;
  }
}

@media screen and (max-width: 600px) {
  .header_inner {
    height: 70px;
    padding: 10px 15px 10px;
  }

  .logo {
    max-width: 110px;
    padding-top: 15px;
  }

  .header_drop_box {
    padding-top: 7px;
    margin-left: 0;
  }

  .header_drop_ttl {
    padding: 11px;
    padding-right: 25px;
    padding-left: 8px;
  }

  .hmb_btn {
    padding: 8px 10px;
    margin-right: -10px;
    margin-left: 0;
  }

  .logo_02 a {
    padding-top: 14px;
  }

  .logo_02 a .division_icon {
    height: 25px;
    margin-right: 6px;
  }

  .logo_02 a .cross_img {
    height: 14px;
    margin-left: 3px;
    margin-right: 8px;
  }

  .logo_02 a .logo_icon {
    height: 20px;
    margin-bottom: 2px;
  }
}

@media screen and (max-width: 449px) {
  .fixed_cta_btn a {
    font-size: 1.8rem;
  }

  .hmb_btn {
    padding: 10px;
  }

  .logo_02 a {
    padding-top: 12px;
  }

  .logo_02 a .division_icon {
    height: 28px;
    margin-right: 0;
  }

  .logo_02 a .cross_img {
    height: 10px;
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .logo_02 a .logo_icon {
    height: 20px;
    margin-bottom: 0;
  }

  .header_drop_ttl {
    padding: 11px;
    padding-right: 20px;
    padding-left: 4px;
  }
}

@media screen and (max-width: 374px) {
  .header_inner {
    height: 75px;
  }

  .logo_02 a {
    padding-top: 0;
    flex-direction: column;
  }

  .logo_02 a .division_icon {
    height: 25px;
    margin-right: 0;
  }

  .logo_02 a .cross_img {
    height: 8px;
    margin-left: 0;
    margin-right: 0;
  }

  .logo_02 a .logo_icon {
    height: 17px;
  }

  .header_drop_box {
    padding-top: 9px;
  }
}