@charset "UTF-8";
header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 6px solid #c1d72e;
  padding: 30px 40px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  gap: 24px;
  z-index: 10000;
  position: fixed;
  top: 0;
  background-color: #fff;
}

@media screen and (max-width: 1200px) {
  header {
    padding: 24px 24px 0;
    gap: 16px;
  }
}

@media screen and (max-width: 1103px) {
  header {
    padding: 24px 16px 8px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

header .header-content {
  position: relative;
}

.header-logo {
  width: clamp(160px, calc(10rem + ((1vw - 12px) * 30)), 220px);
  height: auto;
}

@media screen and (max-width: 900px) {
  .header-logo {
    width: 140px;
  }
}

.header-menu-pc {
  display: block;
}

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

.header-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 1200px) {
  .header-list {
    gap: 16px;
  }
}

.header-list .header-menu-list {
  list-style-type: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(16px, calc(1rem + ((1vw - 12.65px) * 0.6107)), 20px);
  min-height: 0vw;
}

.header-contact-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.header-contact-tel .body-sm {
  line-height: 1.47;
}

.header-contact-tel .body-xs {
  margin-top: 2px;
}

@media screen and (max-width: 1103px) {
  .header-contact-tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 90%;
    margin-left: 16px;
    margin-top: 40px;
  }
  .header-contact-tel .header-contact-tel-text-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0px;
    width: 100%;
  }
}

.header-contact-tel-img-arrrow {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.47;
  letter-spacing: 0.02em;
  text-align: right;
  color: #ababab;
  margin-left: 4px;
}

.header-img-tel {
  width: 200px;
}

@media screen and (max-width: 1103px) {
  .header-img-tel {
    -o-object-fit: contain;
    object-fit: contain;
    width: 80%;
    max-width: 300px;
    margin-top: 20px;
  }
}

.header-menu {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}

.header-menu .header-menu-pc-text {
  margin: 0;
  padding: 0;
  max-height: 0;
  width: 200px;
  position: absolute;
  top: 57px;
  left: -30px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  overflow: hidden;
}

.header-menu .header-menu-pc-text a {
  display: block;
  text-decoration: none;
  height: auto;
  border-bottom: 1px solid #d7d7d7;
  padding: 12px 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-menu .header-menu-pc-text a:last-child {
  border-bottom: none;
}

.header-menu .header-menu-pc-text a:hover {
  background-color: #111111;
  color: #fff;
}

.header-menu:hover .header-menu-pc-text {
  height: auto;
  max-height: 500px;
}

.header-menu-text {
  text-decoration: none;
  font-size: clamp(14px, calc(0.875rem + ((1vw - 10px) * 1)), 18px);
}

@media screen and (max-width: 1103px) {
  .header-menu-text {
    margin-top: 4px;
  }
}

/* ヘッダーのオンマウスの時の動き ここから*/
.header-menu {
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.header-menu::after {
  content: "";
  width: 0%;
  /*最初はwidth:0にする*/
  height: 3px;
  background: #c1d72e;
  position: absolute;
  bottom: 18px;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*アニメーションの長さ*/
}

.header-menu.active::after {
  width: 100%;
}

.header-menu:hover::after {
  width: 100%;
}

/* ヘッダーのオンマウスの時の動き ここまで */
.header-contact-button {
  padding-bottom: 10px;
}

.header-contact-button .header-contact {
  width: 200px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 4px;
  margin-left: 5px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 4px;
  text-align: center;
  text-decoration: none;
  border: #c1d72e solid 1px;
  border-radius: 4px;
  color: #fff;
  background-color: #c1d72e;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 通常の矢印画像 */
  /* ホバー時の矢印画像 */
}

.header-contact-button .header-contact .header-arrow {
  width: 24px;
  height: 24px;
}

.header-contact-button .header-contact:hover {
  background-color: #fff;
  color: #c1d72e;
}

.header-menu-sp {
  display: none;
}

.header-menu-sp .menu-icon {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #c1d72e;
  position: absolute;
  right: 24px;
  top: 12px;
  border-radius: 999px;
  z-index: 10001;
}

@media screen and (max-width: 900px) {
  .header-menu-sp .menu-icon {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 600px) {
  .header-menu-sp .menu-icon {
    width: 44px;
    height: 44px;
  }
}

.header-menu-sp .menu-text {
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}

@media screen and (max-width: 600px) {
  .header-menu-sp .menu-text {
    font-size: 8px;
  }
}

@media screen and (max-width: 1103px) {
  .header-menu-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1010;
    max-width: 100vw;
    /* メニューが表示されたときのスタイル */
  }
  .header-menu-sp .header-menu-list {
    list-style-type: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
  .header-menu-sp .header-menu-sp {
    z-index: 10000;
  }
  .header-menu-sp .menu-sp {
    list-style: none;
    margin: 0;
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #fff;
    z-index: 10000;
    height: 100vh;
    width: 100vw;
    padding: 40px 0 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .header-menu-sp .menu-sp .header-menu-list-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-menu-sp .menu-sp .header-menu-list-sp .list-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col:first-of-type
    details {
    border-right: 1px solid #d7d7d7;
  }
  .header-menu-sp .menu-sp .header-menu-list-sp .list-col:last-of-type details {
    border-left: 1px solid #d7d7d7;
  }
  .header-menu-sp .menu-sp .header-menu-list-sp .list-col details {
    width: 100%;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details
    .header-menu-sp-title {
    height: 60px;
    border-bottom: 1px solid #d7d7d7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 11px 16px;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details
    .header-menu-sp-title
    a {
    text-decoration: none;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details
    .header-menu-sp-title
    .h4 {
    font-size: 14px;
    line-height: 2;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details
    .header-menu-sp-title
    .header-menu-sp-title-icon {
    width: 16px;
    height: 16px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details
    .header-menu-sp-title
    ::marker {
    display: none;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details
    .header-menu-sp-text {
    padding-left: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details
    .header-menu-sp-text
    a {
    display: block;
    line-height: 1.87;
    text-decoration: none;
    font-size: 14px;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details[open]
    summary {
    border-bottom: none;
  }
  .header-menu-sp
    .menu-sp
    .header-menu-list-sp
    .list-col
    details[open]
    .header-menu-sp-title-icon {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
  }
  .header-menu-sp .menu-sp .header-text-link-list {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 16px 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .header-menu-sp .menu-sp .header-text-link-list .header-text-link {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 4px;
    column-gap: 4px;
    row-gap: 8px;
  }
  .header-menu-sp .menu-sp .header-menu-sp-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin-top: 16px;
    padding: 0 16px 40px;
  }
  .header-menu-sp .menu-sp .header-menu-sp-cta .common-btn {
    min-width: 260px;
  }
  .header-menu-sp .menu-sp .header-menu-sp-cta a {
    text-decoration: none;
  }
  .header-menu-sp .menu-sp .header-menu-sp-cta .new-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
  }
  .header-menu-sp .menu-sp .header-menu-sp-cta .new-tab img {
    width: 14px;
    height: 14px;
  }
  .header-menu-sp .menu-toggle:checked ~ .menu-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .header-menu-sp .menu-toggle:checked ~ .menu-icon .open-icon {
    display: none;
  }
  .header-menu-sp .menu-toggle:checked ~ .menu-icon .close-icon {
    display: block;
  }
  .header-menu-sp .menu-toggle {
    display: none;
  }
  .header-menu-sp .bar-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header-menu-sp .bar {
    background-color: #fff;
    height: 1px;
    width: 45%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin: 0;
  }
  .header-menu-sp .open-icon {
    display: block;
  }
  .header-menu-sp .close-icon {
    display: none;
  }
  .header-menu-sp .header-menu {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
