.header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: var(--bg);
}
.header .headerNav {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(100vw);
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
@media (min-width: 1400px) {
  .header .headerNav {
    width: auto;
    height: auto;
    transform: none;
    position: relative;
    margin-left: auto;
  }
}
.header .headerNavContents {
  background-color: var(--black);
  padding-bottom: 64px;
  height: 100%;
  overflow-y: scroll;
}
@media (min-width: 1400px) {
  .header .headerNavContents {
    background-color: rgba(0, 0, 0, 0);
    padding-bottom: 0;
    overflow-y: hidden;
  }
}
.header .headerNavContents .big-ul {
  width: min(100% - var(--pad), var(--max));
  margin-inline: auto;
  padding-top: 32px;
}
@media (min-width: 1400px) {
  .header .headerNavContents .big-ul {
    display: flex;
    gap: 32px;
    justify-content: flex-end;
    align-items: center;
    padding-top: 0;
    width: 100%;
    margin-inline: 0;
  }
}
.header .headerNavContents .big-ul .big-li {
  border-bottom: 1px solid var(--yellow);
  line-height: 1.4;
}
.header .headerNavContents .big-ul .big-li a {
  font-size: 16px;
  display: block;
  padding: 16px 0;
  font-family: "paganini", serif;
  font-weight: 300;
  font-style: normal;
  color: var(--white);
  text-align: center;
}
@media (min-width: 1400px) {
  .header .headerNavContents .big-ul .big-li a {
    color: var(--yellow);
    padding: 0;
  }
}
.header .headerNavContents .big-ul .big-li a:hover {
  background-color: var(--yellow);
  transition: 0.3s;
}
@media (min-width: 1400px) {
  .header .headerNavContents .big-ul .big-li a:hover {
    background-color: rgba(0, 0, 0, 0);
    opacity: 0.7;
  }
}
@media (min-width: 1400px) {
  .header .headerNavContents .big-ul .big-li {
    border-bottom: none;
  }
}
.header .headerNavContents .big-ul .big-li .exlink {
  display: inline-block;
  position: relative;
  top: -1px;
  line-height: 0;
  width: 7px;
  height: 7px;
  border: 1px solid var(--white);
  position: relative;
  margin-left: 10px;
}
@media (min-width: 1400px) {
  .header .headerNavContents .big-ul .big-li .exlink {
    border: 1px solid var(--yellow);
  }
}
.header .headerNavContents .big-ul .big-li .exlink::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  top: 1px;
  left: -4px;
  border-bottom: 1px solid var(--white);
  border-left: 1px solid var(--white);
}
@media (min-width: 1400px) {
  .header .headerNavContents .big-ul .big-li .exlink::after {
    border-bottom: 1px solid var(--yellow);
    border-left: 1px solid var(--yellow);
  }
}
.header .headerNavContents .big-ul .big-li .contact_pc {
  width: 100%;
  text-align: center;
  line-height: 1.2;
  display: inline-block;
  padding: 16px 24px;
  color: var(--white);
}
@media (min-width: 1400px) {
  .header .headerNavContents .big-ul .big-li .contact_pc {
    background-color: var(--yellow);
    width: 182px;
  }
  .header .headerNavContents .big-ul .big-li .contact_pc:hover {
    color: var(--yellow);
    background-color: var(--black);
    transition: 0.3s;
    opacity: 1;
  }
}
.header .hamBtn {
  position: fixed;
  top: 18px;
  right: var(--s16_40);
  cursor: pointer;
  width: 30px;
  height: 20px;
  z-index: 1;
}
@media (min-width: 1400px) {
  .header .hamBtn {
    display: none;
  }
}
.header .hamBtn span,
.header .hamBtn::before,
.header .hamBtn::after {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--black);
}
.header .hamBtn span {
  top: 50%;
  translate: 0 -50%;
}
.header .hamBtn::before {
  top: 0;
  transition: 0.3s;
}
.header .hamBtn::after {
  bottom: 0;
  transition: 0.3s;
}
.header .headerNav.isOpen {
  transform: none;
}
.header .hamBtn.isOpen span {
  display: none;
  transition: 0.3s;
}
.header .hamBtn.isOpen::before {
  transition: 0.3s;
  transform: translateY(10px) rotate(-45deg);
  background-color: var(--yellow);
}
.header .hamBtn.isOpen::after {
  transition: 0.3s;
  transform: translateY(-10px) rotate(45deg);
  background-color: var(--yellow);
}
.top_img img {
  width: 100%;
  height: auto;
}
.content {
  width: min(100% - var(--pad), var(--max));
  margin-inline: auto;
  margin-top: var(--f64_80);
  margin-bottom: var(--f80_120);
}
h2 {
  font-size: var(--f20_32);
}
.en_name {
  font-size: var(--f12_20);
  margin-top: 4px;
  color: var(--yellow);
}
.desc {
  margin-top: var(--f24_48);
  font-size: var(--f14_16);
  margin-bottom: var(--f24_48);
}
.content_list {
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}
@media (min-width: 960px) {
  .content_list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px 0;
  }
}
.content_list .list {
  margin-inline: auto;
}
@media (min-width: 960px) {
  .content_list .list {
    max-width: 420px;
    margin-inline: 0;
  }
}
@media (min-width: 960px) and (min-width: 1024px) {
  .content_list .list {
    max-width: 480px;
  }
}
@media (min-width: 960px) {
  .content_list .list {
    max-width: 420px;
    margin-inline: 0;
  }
}
@media (min-width: 960px) and (min-width: 1024px) {
  .content_list .list {
    max-width: 480px;
  }
}
.content_list h3 {
  font-size: 18px;
  margin-top: 24px;
  font-weight: var(--sbd);
}
.content_list .small {
  display: inline-block;
  font-size: var(--f12_14);
  color: var(--black);
  margin-left: 4px;
}
.content_list p {
  font-size: var(--f14_16);
  margin-top: 4px;
}
@media (min-width: 960px) {
  .content_list p {
    min-height: 48px;
  }
}
.content_list .img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.content_list .Btn {
  position: relative;
  right: 8vw;
  font-family: "paganini", serif;
  font-weight: 300;
  font-style: normal;
  text-align: right;
  margin-top: 24px;
  font-size: var(--f14_16);
  margin-top: 16px;
  right: 8vw;
}
@media (min-width: 520px) {
  .content_list .Btn {
    right: 6vw;
  }
}
@media (min-width: 960px) {
  .content_list .Btn {
    right: 3vw;
  }
}
@media (min-width: 1400px) {
  .content_list .Btn {
    right: 2.2vw;
  }
}
.content_list .Btn:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.content_list .Btn::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 18px;
  height: 1px;
  background-color: var(--black);
  margin-left: 7px;
}
@media (min-width: 960px) {
  .content_list .Btn::after {
    width: 20px;
  }
}
.content_list .Btn .circle {
  position: absolute;
  top: -4px;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--yellow);
  margin-left: 12px;
}
@media (min-width: 720px) {
  .content_list .Btn .circle {
    top: -6px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 520px) {
  .content_list .Btn {
    right: 6vw;
  }
}
@media (min-width: 960px) {
  .content_list .Btn {
    right: 3vw;
  }
}
@media (min-width: 1400px) {
  .content_list .Btn {
    right: 2vw;
  }
}
.content_list .Btn .circle {
  top: -8px;
  margin-top: 4px;
}
@media (min-width: 720px) {
  .content_list .Btn .circle {
    top: -10px;
  }
}
footer {
  font-family: "paganini", serif;
  font-weight: 300;
  font-style: normal;
  font-size: var(--f12_14);
  text-align: center;
  line-height: 1;
  background-color: var(--yellow);
  color: var(--white);
  padding: 8px 0;
}
@media (min-width: 960px) {
  footer {
    padding: 16px 0;
  }
}
footer p {
  margin: 0;
}
/*# sourceMappingURL=web.min.css.map */
