@charset "UTF-8";
body {
  font-family: "Open Sans", "Noto Sans JP", "メイリオ", "MS Pゴシック", sans-serif;
  font-size: min(25px, calc(1.25 * var(--vw1)));
  word-break: break-all;
}
@media screen and (max-width: 1600px) {
  body {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }
}

.small {
  font-size: 80%;
}

.nowrap {
  display: inline-block;
}

.nofix {
  color: #F55D3E;
}

.img-wrap img {
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.ex-link {
  display: inline-block;
  text-decoration: underline;
}
.ex-link > a {
  opacity: 1;
  transition: 0.2s;
}
@media (hover: hover) {
  .ex-link > a:hover {
    opacity: 0.6;
  }
}
.ex-link > a::after {
  content: url(../img/exlink.svg);
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background-repeat: no-repeat;
}

.header-sub {
  position: fixed;
  font-size: min(25px, calc(1.25 * var(--vw1)));
  top: 0;
  width: 100%;
  height: min(150px, calc(7.5 * var(--vw1)));
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .header-sub {
    font-size: 14px;
    height: 73px;
  }
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.header-mark {
  position: relative;
  width: min(358.75px, calc(17.9375 * var(--vw1)));
  height: min(150px, calc(7.5 * var(--vw1)));
  z-index: 2;
  transition: 0.2s;
}
@media screen and (max-width: 1600px) {
  .header-mark {
    width: 287px;
    height: 120px;
  }
}
@media screen and (max-width: 1000px) {
  .header-mark {
    width: 180px;
    height: 75px;
  }
}
@media screen and (max-width: 640px) {
  .header-mark {
    width: 35%;
    height: 120px;
  }
}
.header-mark::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
  opacity: 1;
}
.header-mark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  aspect-ratio: 10/7;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
  background-color: #fff;
  transform: translateX(-50%);
  z-index: -2;
}
@media screen and (max-width: 640px) {
  .header-mark::after {
    display: none;
  }
}
.header-mark > a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/hcd2025rogo_white.svg);
  background-size: 72%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #7e8279;
  transition: 0.2s;
  z-index: 2;
}
@media (hover: hover) {
  .header-mark > a:hover {
    opacity: 0.6;
  }
}
.header-mark > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  aspect-ratio: 5/7;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 1% 100%, 0 100%);
  background-color: #7e8279;
  transform: translateX(-1%);
  z-index: -1;
}
@media screen and (max-width: 640px) {
  .header-mark > a::after {
    display: none;
  }
}

.header-ul {
  display: flex;
  position: relative;
  top: 0;
  right: 0;
  height: min(95px, calc(4.75 * var(--vw1)));
  padding: 0 20px 0 40px;
  padding: 0 min(25px, calc(1.25 * var(--vw1))) 0 min(50px, calc(2.5 * var(--vw1)));
  border-bottom: 2px solid #7e8279;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}
@media screen and (max-width: 1000px) {
  .header-ul {
    height: 48px;
    padding: 0 12.5px 0 25px;
  }
}
@media screen and (max-width: 640px) {
  .header-ul {
    flex-wrap: wrap;
    width: 65%;
    height: 120px;
    padding: 0;
    background-color: #fff;
  }
}
.header-ul::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  aspect-ratio: 10/7;
  height: 2px;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
  background-color: #7e8279;
  transform: translateX(-50%) translateY(100%);
  z-index: -1;
}

.header-li {
  font-size: min(25px, calc(1.25 * var(--vw1)));
  height: 100%;
  padding: min(12.5px, calc(0.625 * var(--vw1))) min(25px, calc(1.25 * var(--vw1)));
  transition: 0.2s;
}
@media screen and (max-width: 1000px) {
  .header-li {
    font-size: 14px;
    padding: 7px 12.5px;
  }
}
@media screen and (max-width: 640px) {
  .header-li {
    font-size: 14px;
    width: 50%;
    height: 50%;
    text-align: center;
    border: solid #eee5cc;
    border-width: 0;
    border-bottom-width: 1px;
    color: #7e8279;
  }
  .header-li:nth-child(odd) {
    border-right-width: 1px;
  }
  .header-li:nth-last-child(-n+2) {
    border-bottom-width: 0;
  }
}
@media (hover: hover) {
  .header-li:hover {
    opacity: 0.5;
  }
}
.header-li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.main-sub {
  margin-top: min(400px, calc(20 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .main-sub {
    margin-top: 200px;
  }
}

.h1 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: min(17.5px, calc(0.875 * var(--vw1)));
  width: 100%;
  min-width: 400px;
  color: #7e8279;
  font-size: min(50px, calc(2.5 * var(--vw1)));
  font-weight: 700;
  margin: 0 auto;
  margin-bottom: min(105px, calc(5.25 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .h1 {
    gap: 14px;
    font-size: 40px;
    margin-bottom: 84px;
  }
}
@media screen and (max-width: 640px) {
  .h1 {
    min-width: auto;
    gap: 7px;
    font-size: 22px;
    margin-bottom: 56px;
  }
}

.h1-title {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .h1-title {
    margin: 0 20px;
  }
}

.h1-border-wrap {
  display: flex;
  height: 6px;
  margin: 0 auto;
  width: min(500px, calc(25 * var(--vw1)));
  justify-content: space-between;
  gap: min(12.5px, calc(0.625 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .h1-border-wrap {
    width: 400px;
    gap: 10px;
  }
}
@media screen and (max-width: 640px) {
  .h1-border-wrap {
    width: calc(100% - 50px);
    max-width: 300px;
    margin: 0 20px;
  }
}

.h1-border {
  position: relative;
  height: 100%;
}
.h1-border::before, .h1-border::after {
  content: "";
  position: absolute;
  top: 0;
  aspect-ratio: 10/7;
  height: 100%;
  background-color: #7e8279;
}
.h1-border::before {
  left: 0;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}
.h1-border::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
  transform: translateX(50%);
}

.h1-border-main {
  background-color: #7e8279;
  width: 100%;
}

.h1-border-sub {
  width: min(50px, calc(2.5 * var(--vw1)));
  background-color: #eee5cc;
  flex-shrink: 0;
}
@media screen and (max-width: 1600px) {
  .h1-border-sub {
    width: 40px;
  }
}
.h1-border-sub::before, .h1-border-sub::after {
  background-color: #eee5cc;
}

.h2 {
  margin-bottom: 70px;
  margin-bottom: min(87.5px, calc(4.375 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .h2 {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 640px) {
  .h2 {
    margin-bottom: 40px;
  }
}

.h2-main {
  position: relative;
  display: inline-block;
  font-size: min(68.75px, calc(3.4375 * var(--vw1)));
  font-weight: 400;
  font-family: "STIX Two Text", "Zen Old Mincho", serif, "メイリオ", "MS Pゴシック", sans-serif;
  letter-spacing: 0.2em;
  color: #fff;
  max-width: calc(100% - 100px);
  min-width: min(600px, calc(30 * var(--vw1)));
  padding: min(22.5px, calc(1.125 * var(--vw1))) min(112.5px, calc(5.625 * var(--vw1))) min(11.25px, calc(0.5625 * var(--vw1))) min(75px, calc(3.75 * var(--vw1)));
  background-color: #7e8279;
}
@media screen and (max-width: 1600px) {
  .h2-main {
    font-size: 55px;
    min-width: 480px;
    padding: 18px 90px 9px 60px;
  }
}
@media screen and (max-width: 640px) {
  .h2-main {
    font-size: 26px;
    padding: 12px 20px 6px;
    min-width: 240px;
  }
}
.h2-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: min(1250px, calc(62.5 * var(--vw1)));
  height: 100%;
  transform: translateX(-99%);
  background-color: #7e8279;
  z-index: -1;
}
.h2-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  aspect-ratio: 5/7;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 1% 100%, 0 100%);
  background-color: #7e8279;
  transform: translateX(-1%);
}

.h2-main-jp {
  font-size: min(30px, calc(1.5 * var(--vw1)));
  font-family: "Open Sans", "Noto Sans JP", "メイリオ", "MS Pゴシック", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.6em;
  padding: min(22.5px, calc(1.125 * var(--vw1))) min(30px, calc(1.5 * var(--vw1))) min(22.5px, calc(1.125 * var(--vw1))) min(75px, calc(3.75 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .h2-main-jp {
    font-size: 24px;
    padding: 18px 24px 18px 60px;
  }
}
@media screen and (max-width: 640px) {
  .h2-main-jp {
    font-size: 16px;
    padding: 6px 8px 6px 20px;
  }
}

.h2-main-long {
  font-size: 48px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1600px) {
  .h2-main-long {
    font-size: 48px;
  }
}
@media screen and (max-width: 640px) {
  .h2-main-long {
    font-size: 22px;
  }
}

.h2-sub {
  position: relative;
  display: inline-block;
  font-size: min(35px, calc(1.75 * var(--vw1)));
  font-weight: 500;
  font-family: "STIX Two Text", "Zen Old Mincho", serif, "メイリオ", "MS Pゴシック", sans-serif;
  letter-spacing: 0.2em;
  color: #7e8279;
  padding: min(17.5px, calc(0.875 * var(--vw1))) min(112.5px, calc(5.625 * var(--vw1))) min(7.5px, calc(0.375 * var(--vw1))) min(75px, calc(3.75 * var(--vw1)));
  background-color: #eee5cc;
}
@media screen and (max-width: 1600px) {
  .h2-sub {
    font-size: 28px;
    padding: 14px 90px 6px 60px;
  }
}
@media screen and (max-width: 640px) {
  .h2-sub {
    font-size: 14px;
    padding: 8px 20px 3px;
    min-width: 130px;
  }
}
.h2-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  width: min(1250px, calc(62.5 * var(--vw1)));
  height: 100%;
  transform: translateX(-100%);
  background-color: #eee5cc;
}
.h2-sub::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  aspect-ratio: 5/7;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 1% 100%, 0 100%);
  background-color: #eee5cc;
  transform: translateX(-1%);
}

.sec-basic {
  width: 100%;
  width: min(2000px, calc(100 * var(--vw1)));
  margin: 0 auto;
  margin-bottom: min(175px, calc(8.75 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .sec-basic {
    max-width: 1600px;
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 640px) {
  .sec-basic {
    margin-bottom: 80px;
  }
}

.sec-content {
  width: min(2000px, calc(100 * var(--vw1)));
  margin: 0 auto;
  padding: 0 min(75px, calc(3.75 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .sec-content {
    max-width: 1600px;
    width: 100%;
    padding: 0 60px;
  }
}
@media screen and (max-width: 640px) {
  .sec-content {
    padding: 0 20px;
  }
}

.button {
  width: min(1212.5px, calc(60.625 * var(--vw1)));
  letter-spacing: 0.3em;
  font-weight: 500;
  transition: 0.2s;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .button {
    width: 100%;
    max-width: 970px;
  }
}
@media (hover: hover) {
  .button:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) {
  .button.off:hover {
    opacity: 1;
  }
}
.button > a {
  display: block;
  height: 100%;
}

.button-title {
  display: flex;
  position: relative;
  text-align: center;
  font-size: min(35px, calc(1.75 * var(--vw1)));
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: min(37.5px, calc(1.875 * var(--vw1))) min(105px, calc(5.25 * var(--vw1))) min(37.5px, calc(1.875 * var(--vw1))) min(50px, calc(2.5 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .button-title {
    font-size: 28px;
    padding: 30px 84px 30px 40px;
  }
}
@media screen and (max-width: 640px) {
  .button-title {
    font-size: 20px;
    padding: 24px 60px 24px 20px;
  }
}
.button-title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: min(50px, calc(2.5 * var(--vw1)));
  width: min(43.75px, calc(2.1875 * var(--vw1)));
  height: 100%;
  background-image: url(../img/arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s;
}
@media screen and (max-width: 1600px) {
  .button-title::after {
    right: 40px;
    width: 35px;
  }
}
@media screen and (max-width: 640px) {
  .button-title::after {
    right: 20px;
    width: 28px;
  }
}

.button.off .button-title::after {
  display: none;
}

@media (hover: hover) {
  .button:hover .button-title::after {
    right: min(37.5px, calc(1.875 * var(--vw1)));
  }
}
@media screen and (hover: hover) and (max-width: 1600px) {
  .button:hover .button-title::after {
    right: 30px;
  }
}
@media (hover: hover) {
  .button.off:hover .button-title::after {
    right: min(50px, calc(2.5 * var(--vw1)));
  }
}
@media screen and (hover: hover) and (max-width: 1600px) {
  .button.off:hover .button-title::after {
    right: 40px;
  }
}
.button-green {
  color: #fff;
  background-color: #7e8279;
}

.button-white {
  color: #575953;
  background-color: #fff;
  border: 1px solid #7e8279;
}
.button-white .button-title::after {
  background-image: url(../img/arrow_gray.svg);
}

.gotop {
  position: fixed;
  right: 0;
  bottom: 0;
  width: min(150px, calc(7.5 * var(--vw1)));
  height: min(150px, calc(7.5 * var(--vw1)));
  background-color: #7e8279;
  z-index: 2;
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  opacity: 1;
  transition: 0.2s;
  transform: translateY(100%);
}
@media screen and (max-width: 1600px) {
  .gotop {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 640px) {
  .gotop {
    width: 60px;
    height: 60px;
  }
}
.gotop > a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/gotop.svg);
  background-color: #7e8279;
  transition: 0.2s;
}
@media (hover: hover) {
  .gotop > a:hover {
    opacity: 0.6;
  }
}
.gotop::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: -1;
  opacity: 1;
}

.gotop.fixed {
  transform: translateY(0);
}

.anchor {
  padding-top: 140px !important;
  margin-top: -140px !important;
}
@media screen and (max-width: 640px) {
  .anchor {
    padding-top: 160px !important;
    margin-top: -160px !important;
  }
}

.footer {
  position: relative;
  border-top: 1px solid #7e8279;
  letter-spacing: 0.1em;
  background-color: #7e8279;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
}
@media screen and (max-width: 640px) {
  .footer::after {
    display: none;
  }
}

.footer-inner {
  position: relative;
  display: flex;
  width: min(2000px, calc(100 * var(--vw1)));
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 1600px) {
  .footer-inner {
    max-width: 1600px;
  }
}
@media screen and (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
  }
}

.footer-rogo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 30%;
  background-color: #7e8279;
  padding: 0 min(37.5px, calc(1.875 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .footer-rogo {
    padding: 0, 30px;
  }
}
@media screen and (max-width: 640px) {
  .footer-rogo {
    width: 100%;
    height: 120px;
    padding: 24px 20px;
  }
  .footer-rogo > .img-wrap {
    width: 180px;
  }
}

.img-wrap-footer {
  width: 100%;
}

.footer-content {
  padding: min(60px, calc(3 * var(--vw1)));
  background-color: #fff;
}
@media screen and (max-width: 1600px) {
  .footer-content {
    padding: 48px;
  }
}
@media screen and (max-width: 640px) {
  .footer-content {
    padding: 40px 20px 20px;
  }
}

.footer-content-title {
  margin-bottom: 18px;
  margin-bottom: min(22.5px, calc(1.125 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .footer-content-title {
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 640px) {
  .footer-content-title {
    margin-bottom: 16px;
  }
}

.footer-content-groupname {
  font-size: min(35px, calc(1.75 * var(--vw1)));
  font-weight: 600;
  margin-bottom: min(37.5px, calc(1.875 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .footer-content-groupname {
    font-size: 28px;
    margin-bottom: 46px;
  }
}
@media screen and (max-width: 640px) {
  .footer-content-groupname {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

.footer-content-data-wrap {
  margin-bottom: min(62.5px, calc(3.125 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .footer-content-data-wrap {
    margin-bottom: 42px;
  }
}

.footer-content-data {
  display: flex;
  gap: min(25px, calc(1.25 * var(--vw1)));
  padding-right: min(112.5px, calc(5.625 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .footer-content-data {
    padding-right: 90px;
  }
}
@media screen and (max-width: 640px) {
  .footer-content-data {
    padding-right: 0;
  }
}
.footer-content-data:not(:last-child) {
  margin-bottom: min(17.5px, calc(0.875 * var(--vw1)));
}
@media screen and (max-width: 1600px) {
  .footer-content-data:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .footer-content-data:not(:last-child) {
    margin-bottom: 12px;
  }
}

.footer-content-data-category {
  width: 5em;
  flex-shrink: 0;
}

.footer-content-copy {
  font-size: min(17.5px, calc(0.875 * var(--vw1)));
  padding-right: min(20px, calc(1 * var(--vw1)));
  word-break: normal;
}
@media screen and (max-width: 1600px) {
  .footer-content-copy {
    font-size: 14px;
    padding-right: 70px;
  }
}
@media screen and (max-width: 640px) {
  .footer-content-copy {
    font-size: 10px;
  }
}/*# sourceMappingURL=common.css.map */