:root {
  --color-red: #D2313B;
  --color-black: #121212;
  --color-wh: #FFFFFF;
  --color-darkgray: #606060;
  --color-gray: #DADADA;
  --color-blue: #096BDE;
  --color-orange: #FF5C00;
  --color-brown: #6F5456;
  --color-bg-red: #F7F1F1;
  --color-light-red: #FFF3F3;
  --color-light-orange: #FFF7EA;
  --color-light-blue: #EDF7FF;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-kosugi: "Kosugi", sans-serif;
  --font-bizudp: "BIZ UDPGothic", sans-serif;
  --font-mplus1: "M PLUS 1p", sans-serif;
  --font-zenmaru: "Zen Maru Gothic", serif;
  --font-ubuntu: "Ubuntu", sans-serif;
  --font-zenoldmin: "Zen Old Mincho", serif;
  --m-width-xs: 320px;
  --m-width-sm: 810px;
  --m-width-m: 1080px;
  --m-width-lg: 1440px;
  --m-width-xl: 1920px;
  --grade-bg-grade: linear-gradient(264deg, #E55454 0.72%, #FEDFC5 100%);
}

header {
  border-top: 24px solid var(--color-red);
  background-color: var(--color-wh);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em 1.75em;
  width: 100%;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 999;
}
header .header .header-left {
  display: flex;
  align-items: center;
}
header .header .header-left h1 img {
  height: 1.25em;
  width: auto;
}
header .header .header-left .logo100 {
  margin: 0 0.8em;
}
header .header .header-left .logo100 img {
  height: 3em;
  width: auto;
}
header .header .header-right {
  display: flex;
}
header .header .header-right ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header .header-right li {
  margin-right: 1rem;
}
header .header .header-right li:last-child {
  margin-right: 0;
}
header .header .header-right a {
  display: flex;
  align-items: center;
  color: var(--color-red);
  font-family: var(--font-noto);
  font-weight: 700;
  padding: 0rem 0.1rem;
}
header .header .header-right a img {
  width: 2em;
  margin-right: 0.5em;
}

@media screen and (max-width: 1000px) {
  header .header .header-left h1 img {
    height: 1em;
    width: auto;
  }
  header .header .header-left .logo100 {
    margin: 0 0.8em;
  }
  header .header .header-left .logo100 img {
    height: 1.2em;
    width: auto;
  }
  header .header .header-right li {
    margin-right: 0.5rem;
  }
  header .header .header-right li:last-child {
    margin-right: 0;
  }
  header .header .header-right a {
    display: flex;
    align-items: center;
    color: var(--color-red);
    font-family: var(--font-noto);
    font-weight: 700;
    padding: 0.5rem 0.1rem;
  }
  header .header .header-right a img {
    width: 2em;
    margin-right: 0.5em;
  }
}
@media screen and (max-width: 820px) {
  .hamburger {
    display: block;
    width: 32px;
    height: 4px;
    position: relative;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background-color: var(--color-wh);
    cursor: pointer;
  }
  .hamburger span,
  .hamburger span::after,
  .hamburger span::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 4px;
    background-color: var(--color-red);
    transition: all 0.5s;
  }
  .hamburger span::before {
    top: -10px;
  }
  .hamburger span::after {
    bottom: -10px;
  }
  .hamburger.open span {
    background-color: transparent;
  }
  .hamburger.open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.open span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  nav {
    /* position: fixed;
    width: 100%;
    height: 100dvh; */
    /* top: -110vh; */
    /* top: calc(36px + 20px + 4em + 5px);
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1em 0;
    transition: all 0.5s;
    border-top: 1px solid var(--color-bg-red);
    z-index: -1;

    &.open {
        top: calc(36px + 20px + 4em + 5px);
        z-index: 100;
    } */
    display: none;
  }
  header {
    border-top: 20px solid var(--color-red);
  }
  header .header {
    padding: 12px;
  }
  header .header .header-right ul {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
  header .header .header-right ul li {
    padding: 1em 5%;
    border-bottom: 1px solid var(--color-gray);
    width: 90%;
  }
  header .header .header-right a {
    font-size: 1.2em;
  }
  header .header .header-left {
    display: flex;
    align-items: flex-start;
  }
  header .header .header-left h1 img {
    height: 0.9em;
    width: auto;
  }
  header .header .header-left .logo100 {
    margin: 0 0.8em;
  }
  header .header .header-left .logo100 img {
    height: 3em;
    width: auto;
  }
}
main {
  background-color: var(--color-bg-red);
  margin-top: 102px;
}

@media screen and (max-width: 820px) {
  main {
    margin-top: 92px;
  }
}
.bread {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bread ul {
  width: 100%;
  display: flex;
  padding: 12px 1.75em;
}
@media screen and (max-width: 480px) {
  .bread ul {
    padding: 12px 1em 56px;
  }
}
.bread li {
  color: var(--color-black);
  font-family: var(--font-noto);
  font-weight: 400;
  font-size: 16px;
}
.bread svg {
  width: 12px;
  margin: 0 0.5rem;
}
.bread svg .path {
  fill: var(--color-black);
}
.bread a {
  color: var(--color-brown);
  font-family: var(--font-noto);
  font-weight: 500;
  font-size: 16px;
}

.fv {
  width: calc(100% - 4em);
  max-width: 1720px;
  height: 382px;
  background-color: var(--color-wh);
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-light-red);
}
@media screen and (max-width: 480px) {
  .fv {
    width: calc(100% - 1em);
    height: 137px;
    margin: 0 0.5em;
  }
}
.fv .wrap {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .fv .wrap {
    height: 138px;
  }
}
.fv .wrap .img {
  display: flex;
  height: 100%;
}
.fv .wrap .img .main-pc {
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.fv .wrap .img .main-sp {
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: none;
}
@media screen and (max-width: 480px) {
  .fv .wrap .img .main-pc {
    display: none;
  }
  .fv .wrap .img .main-sp {
    display: block;
  }
}
.fv .wrap .title {
  background: linear-gradient(90deg, rgba(210, 49, 59, 0.9) 0%, rgba(210, 49, 59, 0.9) 22%);
  width: 750px;
  max-width: 90%;
  padding: 32px 52px;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.fv .wrap .title h2 {
  color: var(--color-wh);
  font-family: var(--font-bizudp);
  font-weight: 700;
  font-size: clamp(28px, 5cqi, 44px);
}
@media screen and (max-width: 1280px) {
  .fv .wrap .title {
    background: linear-gradient(90deg, rgba(210, 49, 59, 0.7) 0%, rgba(210, 49, 59, 0.7) 22%);
  }
  .fv .wrap .title h2 {
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 480px) {
  .fv .wrap .title {
    width: 230px;
    padding: 12px;
  }
  .fv .wrap .title h2 {
    font-size: 20px;
    line-height: 28px;
  }
}
.fv .wrap .clip {
  position: absolute;
  top: 0;
  right: 0;
  max-width: calc(100% - 600px);
  height: 100%;
}
.fv .wrap .clip .clip-pc {
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.fv .wrap .clip .clip-sp {
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: none;
}
@media screen and (max-width: 480px) {
  .fv .wrap .clip {
    max-width: calc(100% - 180px);
  }
  .fv .wrap .clip .clip-pc {
    display: none;
  }
  .fv .wrap .clip .clip-sp {
    display: block;
  }
}

.c-wrap {
  background: var(--grade-bg-grade);
}
.c-wrap .grade {
  background: linear-gradient(180deg, #F7F1F1 0%, rgba(247, 241, 241, 0) 100%);
  width: 100%;
  height: 565px;
}
@media screen and (max-width: 480px) {
  .c-wrap .grade {
    margin-top: -1px;
    height: 373px;
  }
}
.c-wrap .contact {
  margin-top: -120px;
}
@media screen and (max-width: 810px) {
  .c-wrap .contact {
    margin-top: 0;
  }
}
.c-wrap .contact .contact-h3 p {
  text-align: center;
  font-family: var(--font-noto);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-wh);
}
@media screen and (max-width: 480px) {
  .c-wrap .contact .contact-h3 p {
    font-size: 20px;
    line-height: normal;
  }
}
.c-wrap .contact .contact-h3 h3 {
  text-align: center;
  font-family: var(--font-ubuntu);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 249, 205, 0.75) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  font-size: 96px;
  margin-top: 12px;
}
@media screen and (max-width: 480px) {
  .c-wrap .contact .contact-h3 h3 {
    font-size: 64px;
  }
}
.c-wrap .contact .contact-a {
  display: flex;
  justify-content: center;
  container-type: inline-size;
  height: 357px;
  padding: 63px 0 186px;
}
@media screen and (max-width: 810px) {
  .c-wrap .contact .contact-a {
    height: 520px;
    padding: 56px 0 154px;
  }
}
.c-wrap .contact .contact-a a {
  background-color: var(--color-wh);
  margin: 0 3%;
  width: 494.83px;
  border-radius: 150px;
  position: relative;
}
.c-wrap .contact .contact-a a .a-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 58px;
}
.c-wrap .contact .contact-a a .a-arrow img {
  width: 48px;
  height: 48px;
  margin-right: 14px;
}
.c-wrap .contact .contact-a a .a-arrow p {
  color: var(--color-red);
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 28px;
  line-height: 28px;
}
.c-wrap .contact .contact-a a svg {
  fill: var(--color-red);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40.66px;
  height: 16px;
  width: auto;
}
@media screen and (max-width: 1280px) {
  .c-wrap .contact .contact-a a {
    width: 420px;
  }
}
@media screen and (max-width: 1080px) {
  .c-wrap .contact .contact-a a {
    width: 350px;
  }
}
@media screen and (max-width: 810px) {
  .c-wrap .contact .contact-a a {
    display: block;
    width: 90%;
    margin: 0 auto 78px;
  }
}
@media screen and (max-width: 810px) {
  .c-wrap .contact .contact-a {
    display: block;
  }
}

footer {
  background-color: var(--color-wh);
  color: var(--color-darkgray);
  border-top: 1px solid var(--color-gray);
  padding-top: 44px;
}
footer .ft-top {
  width: 90%;
  margin: 0 auto;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
footer .ft-top ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 10px 0;
}
footer .ft-top ul li::after {
  content: "|";
  margin: 0 1em;
}
footer .ft-top ul li:last-child::after {
  content: none;
  margin: 0;
}
footer .footer-bottom {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding: 35px 0 40px;
  font-family: var(--font-noto);
  font-size: 14px;
  font-weight: 400;
}
footer .copyright {
  background-color: var(--color-red);
  color: var(--color-wh);
  text-align: center;
  font-family: var(--font-noto);
  font-size: 10px;
  font-weight: 400;
  padding: 10px 0;
}
@media screen and (max-width: 810px) {
  footer .ft-top ul {
    justify-content: flex-start;
  }
  footer .footer-bottom {
    padding: 35px 0;
    font-size: 12px;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 810px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.title-h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 0em auto 2em;
}
.title-h3 h3 {
  font-family: var(--font-zenmaru);
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}
.title-h3 .h3-line {
  width: 80px;
  height: 0px;
  border-radius: 150px;
  border: 4px solid var(--color-red);
}
@media screen and (max-width: 480px) {
  .title-h3 h3 {
    font-size: 28px;
  }
}

.title-desc {
  text-align: center;
  font-family: var(--font-noto);
  margin: 4em auto;
}
.title-desc p {
  width: 90%;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */
