@charset "UTF-8";
body {
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  background-color: #F9F8F8;
  cursor: default;
}
@media screen and (max-width: 767px) {
  body.is-fixed {
    overflow: hidden;
  }
}
body.is-fixed .header__inner {
  border-bottom: 1px solid #CECECE;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: #BC0D0D;
}

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

@media screen and (max-width: 1040px) {
  .hidden-tb {
    display: none;
  }
}

.hidden-pc {
  display: none;
}

.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.smalltext {
  font-size: 12px;
}

.inner {
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1104px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.inner--wide {
  max-width: 1344px;
}

.section-title {
  font-family: "Inter", sans-serif;
  font-size: 74px;
  position: relative;
  font-weight: 700;
  line-height: 1.25;
}
.section-title::before {
  content: attr(data-ja);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  display: block;
  padding-left: 14px;
  color: #BC0D0D;
}
.section-title::after {
  content: "";
  display: block;
  background-color: #BC0D0D;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 3.5px;
}
@media screen and (max-width: 1040px) {
  .section-title {
    font-size: max(7.69vw, 54px);
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: max(7.03vw, 32px);
  }
  .section-title::before {
    font-size: 12px;
  }
}

.section-title--white {
  color: #FFF;
}
.section-title--white::before {
  color: #FFF;
}
.section-title--white::after {
  background-color: #FFF;
}

.more-btn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  border-bottom: 1px solid #222;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.more-btn.material-symbols-rounded {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.more-btn::before {
  font-family: "Material Icons";
  content: "\e5c8";
  color: #BC0D0D;
  position: absolute;
  height: 24px;
  width: 24px;
  right: -40px;
  bottom: -4px;
}
.more-btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #BC0D0D;
  position: absolute;
  right: -35px;
  bottom: -2px;
}
.more-btn:hover {
  opacity: 0.7;
  color: #222;
}

.more-btn--right {
  right: 35px;
}

.bgc-image {
  position: relative;
  z-index: 1;
}
.bgc-image img {
  border-radius: 10px;
}
.bgc-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  background: #BC0D0D;
  width: 100%;
  border-radius: 10px;
  z-index: -1;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header.headerColorScroll {
  background: #FFF;
  -webkit-box-shadow: 0 2px 4px rgba(220, 220, 220, 0.1);
          box-shadow: 0 2px 4px rgba(220, 220, 220, 0.1);
}

.header__inner {
  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;
  padding: 20px 32px;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1312px;
  }
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__logo a img {
  width: 180px;
  display: block;
}
@media screen and (max-width: 767px) {
  .header__logo a img {
    width: 120px;
  }
}

.header__nav {
  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: 767px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 100px;
    z-index: -1;
    background: #F9F8F8;
    width: 100%;
    height: 100vh;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1312px;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .header__link {
    display: block;
    margin-top: 16px;
    font-weight: bold;
  }
}

.header__button {
  padding: 10px 30px;
  display: inline-block;
  border-radius: 28.5px;
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__button:hover {
  opacity: 0.8;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .header__button {
    margin-top: 40px;
  }
}

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

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  left: 0px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #222;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.header__dropdown-menu {
  position: relative;
}
.header__dropdown-menu:hover .header__dropdown-menu-list {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .header__dropdown-menu {
    opacity: 1;
  }
}

.header__dropdown-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__dropdown-ttl span {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__dropdown-ttl {
    font-weight: bold;
  }
  .header__dropdown-ttl span {
    display: block;
    font-size: 10px;
    padding-right: 4px;
  }
}

.header__dropdown-menu-list {
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 4px rgba(220, 220, 220, 0.1);
          box-shadow: 0 2px 4px rgba(220, 220, 220, 0.1);
  left: -20px;
  position: absolute;
  top: 100%;
  visibility: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .header__dropdown-menu-list {
    background-color: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    position: unset;
    -webkit-transition: unset;
    transition: unset;
    visibility: unset;
    margin-top: 10px;
    opacity: 1;
  }
}

.header__dropdown-menu-item {
  border-bottom: 1px solid rgb(220, 220, 220);
}
@media screen and (max-width: 767px) {
  .header__dropdown-menu-item {
    border-bottom: unset;
    font-weight: bold;
  }
}

.header__dropdown-menu-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-decoration: none;
  width: 100%;
  padding: 16px;
}
@media screen and (max-width: 767px) {
  .header__dropdown-menu-item {
    height: unset;
    padding: 0 0 10px 16px;
  }
}

.mv {
  background-image: url(../img/index/ph_mv.png);
  background-size: contain;
  background-position: 74% center;
  background-repeat: no-repeat;
  width: 100%;
  height: 920px;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  .mv {
    height: max(88.46vw, 740px);
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: 60vh;
    background-size: contain;
    background-color: rgba(249, 248, 248, 0.6);
    background-blend-mode: lighten;
  }
}

.mv__inner {
  height: 100%;
  position: relative;
}
.mv__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mv__lead {
  font-size: 36px;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 1040px) {
  .mv__lead {
    font-size: max(3.46vw, 24px);
  }
}
@media screen and (max-width: 767px) {
  .mv__lead {
    font-size: max(3.46vw, 20px);
    letter-spacing: 1px;
  }
}
.mv__lead span {
  color: #BC0D0D;
  font-size: 54px;
  letter-spacing: 5.4px;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}
@media screen and (max-width: 1040px) {
  .mv__lead span {
    font-size: max(5.19vw, 36px);
  }
}
@media screen and (max-width: 767px) {
  .mv__lead span {
    font-size: max(5.19vw, 24px);
    letter-spacing: 0;
    margin-left: -0.5em;
    margin-right: -0.5em;
  }
}

.service {
  overflow-x: hidden;
  position: relative;
}

.service__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.service__title {
  max-width: 1280px;
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
  padding: 80px 80px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 160px;
  position: relative;
  z-index: -1;
}
.service__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100vw;
  width: calc(100vw + 1px);
  height: 100%;
  background-color: #A40202;
}
@media screen and (max-width: 1340px) {
  .service__title {
    width: 96%;
    gap: 96px;
  }
}
@media screen and (max-width: 1040px) {
  .service__title {
    padding: 64px 64px 96px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 64px;
  }
}
@media screen and (max-width: 767px) {
  .service__title {
    -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: start;
    gap: 20px;
    padding: 50px 32px 96px;
  }
}

.service__description {
  color: #FFF;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1040px) {
  .service__description br {
    display: none;
  }
}

.service__content {
  max-width: 1280px;
  background: #FFF;
  margin-top: -56px;
  margin-left: auto;
  margin-right: 0;
  padding: 80px;
  position: relative;
}
.service__content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  background: #FFF;
}
@media screen and (max-width: 1340px) {
  .service__content {
    width: 96%;
  }
}
@media screen and (max-width: 1040px) {
  .service__content {
    padding: 64px;
  }
}
@media screen and (max-width: 767px) {
  .service__content {
    padding: 32px 16px 48px;
  }
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 58px;
}
@media screen and (max-width: 767px) {
  .service-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.service-kaiyaku {
  margin-top: 160px;
}
@media screen and (max-width: 1040px) {
  .service-kaiyaku {
    margin-top: 96px;
  }
}
@media screen and (max-width: 767px) {
  .service-kaiyaku {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.service-item__body {
  width: 54.5%;
}
@media screen and (max-width: 767px) {
  .service-item__body {
    width: 100%;
  }
}

.service-item__header {
  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-bottom: 1px solid #CECECE;
  padding-bottom: 18px;
}

.service-kaiyaku .service-item__header {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.service-item__title {
  color: #BC0D0D;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3.6px;
}
@media screen and (max-width: 1040px) {
  .service-item__title {
    font-size: 30px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .service-item__title {
    font-size: max(3.9vw, 24px);
  }
}

.service-item__description {
  margin-top: 16px;
}

.service-item__lead {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 1040px) {
  .service-item__lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .service-item__lead {
    font-size: 18px;
  }
}

.service-item__details {
  margin-top: 24px;
  letter-spacing: 1.6px;
}

.service-item__image {
  width: 45%;
}
.service-item__image::after {
  padding-top: 75%;
}
@media screen and (max-width: 767px) {
  .service-item__image {
    width: 96%;
    margin-left: 16px;
  }
}

.news {
  margin-top: 136px;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 80px;
  }
}

.news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news__title {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .news__title {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-right: 35px;
  }
}

.news__title .section-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .news__title .section-title {
    margin-bottom: 0;
  }
}

.news__contents {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .news__contents {
    width: 100%;
  }
}

.news-list__item {
  width: 100%;
  height: 100%;
  border-bottom: 2px dotted #CECECE;
  padding: 24px 32px;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .news-list__item {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.news-list__link {
  display: block;
  width: 100%;
  height: 100%;
}

.news-list__tag {
  font-family: "Inter", sans-serif;
  margin-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 9px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  background: #ADADAD;
  font-size: 12px;
}

.company {
  margin: 120px auto 0;
  position: relative;
  padding-top: 68px;
  overflow: hidden;
}
.company::after {
  content: "";
  display: block;
  background-image: url(../img/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1037.751px;
  height: 588.214px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  bottom: -376px;
  right: -160px;
  opacity: 0.7;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .company::after {
    bottom: -284px;
    right: unset;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .company {
    margin-top: 96px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .company {
    padding-top: 156px;
  }
}

.company_inner {
  max-width: 1440px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .company_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company_inner::after {
  content: "";
  display: block;
  max-width: 1344px;
  width: 96%;
  height: 100%;
  background-color: #FFF;
  position: absolute;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .company_inner::after {
    max-width: 1312px;
  }
}
.company_inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100vw;
  width: calc(100vw + 1px);
  height: 100%;
  background-color: #FFF;
}

.company_contents {
  padding: 80px 80px 124px 0;
}
@media screen and (max-width: 767px) {
  .company_contents {
    padding: 40px 32px 96px 0;
  }
}

.company__list--top {
  margin-top: 28px;
  margin-left: 80px;
}
@media screen and (max-width: 767px) {
  .company__list--top {
    margin-left: 0;
    width: 100%;
  }
}

.company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  border-bottom: 1px solid #CECECE;
  padding: 12px;
}
@media screen and (max-width: 767px) {
  .company__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5em;
  }
}
.company__item div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.company__item-dt {
  width: 112px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .company__item-dt {
    width: 100%;
  }
}

.company__item-dd span {
  display: block;
  font-weight: bold;
}

.company__image {
  width: 48%;
  position: absolute;
  right: 16px;
  top: -68px;
}
.company__image::after {
  padding-top: 56.25%;
}
@media screen and (max-width: 767px) {
  .company__image {
    width: 300px;
    top: -40px;
    right: 0;
  }
}
@media screen and (max-width: 599px) {
  .company__image {
    top: -156px;
  }
}
@media screen and (max-width: 374px) {
  .company__image {
    top: -140px;
    width: 280px;
  }
}

.footer {
  position: relative;
  z-index: 2;
}

.footer__top {
  background-color: #222;
}

.footer__top-inner {
  color: #FFF;
  padding-top: 80px;
  padding-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__top-inner {
    padding-top: 56px;
    padding-bottom: 56px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.footer__info-logo {
  width: 180px;
}

.footer__info-address {
  font-size: 14px;
  margin-top: 16px;
}
.footer__info-address p:last-of-type {
  margin-top: 16px;
}
.footer__info-address .tbsp {
  display: none;
}
@media screen and (max-width: 1040px) {
  .footer__info-address .tbsp {
    display: block;
  }
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 767px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(206, 206, 206, 0.5);
  }
}

@media screen and (max-width: 767px) {
  .footer__menu-service {
    margin-top: 20px;
  }
}

.head-dot {
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.head-dot::before {
  content: "";
  display: block;
  background-color: #FFF;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}
.head-dot span {
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.footer__menu-service-list {
  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;
  margin-top: 6px;
}

.footer__menu-service-item {
  font-size: 14px;
  padding-left: 12px;
}

.footer__menu-individual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.footer__bottom {
  background: #000;
  color: #FFF;
}

.footer__bottom-inner {
  color: #FFF;
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__bottom-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.footer__term-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer__term-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

.footer__term-item {
  font-size: 12px;
  text-align: center;
}

.footer__copy {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    text-align: center;
  }
}

.page {
  padding-top: 100px;
  padding-bottom: 124px;
}
@media screen and (max-width: 767px) {
  .page {
    padding-top: 68px;
    padding-bottom: 96px;
  }
}

.page-title {
  font-size: 54px;
  position: relative;
  font-weight: 700;
  line-height: 1.25;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
}
.page-title::before {
  content: attr(data-ja);
  font-weight: 400;
  font-size: 14px;
  padding-left: 14px;
  color: #BC0D0D;
}
@media screen and (max-width: 1040px) {
  .page-title {
    font-size: max(5.19vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .page-title {
    font-size: max(5.2vw, 30px);
  }
  .page-title::before {
    font-size: 12px;
  }
}

.page-desc {
  text-align: center;
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  line-height: 2.25;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .page-desc {
    line-height: 2;
  }
}

.page-table-line {
  border-bottom: 1px solid #CECECE;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  body .page-table-line.is-layout-flex {
    gap: 8px !important;
  }
}

.p-mv {
  max-width: 1440px;
  padding-top: 190px;
  padding-bottom: 124px;
  position: relative;
  overflow-x: hidden;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
}
.p-mv::after {
  content: "";
  display: block;
  background-image: url(../img/bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
  width: 1070.818px;
  height: 617.309px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.5;
  position: absolute;
  z-index: -1;
  right: -20%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding-top: 132px;
    padding-bottom: 96px;
    margin-top: -64px;
  }
}

.p-mv__inner {
  text-align: center;
}

.page-title--en {
  font-family: "Inter", sans-serif;
}

.mv__desc {
  text-align: left;
  max-width: 810px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 54px;
  line-height: 2.25;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .mv__desc {
    line-height: 2;
  }
}

.p-shirube-lead {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1px;
  padding-bottom: 90px;
  position: relative;
}
.p-shirube-lead::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100vw;
  width: calc(100vw + 1px);
  height: calc(100% - 90px);
  background-color: #A40202;
}
@media screen and (max-width: 767px) {
  .p-shirube-lead {
    padding-bottom: 0;
  }
}

.p-shirube-lead__inner {
  max-width: 1040px;
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
  padding: 80px 80px 80px;
  position: relative;
}
@media screen and (max-width: 1340px) {
  .p-shirube-lead__inner {
    width: 96%;
  }
}
@media screen and (max-width: 1040px) {
  .p-shirube-lead__inner {
    padding: 64px 64px 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lead__inner {
    padding: 50px 30px 50px;
  }
}

.p-shirube-lead__index {
  color: #FFF;
  font-size: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1040px) {
  .p-shirube-lead__index {
    font-size: max(2.3vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lead__index {
    font-size: max(2.6vw, 16px);
  }
}
.p-shirube-lead__index span {
  background: #FFF;
  color: #BC0D0D;
  font-size: 36px;
  font-weight: bold;
  padding: 0 10px;
  margin-top: 6px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-lead__index span {
    font-size: max(3.46vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lead__index span {
    font-size: max(3.64vw, 24px);
    padding: 0 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lead__index br {
    display: block;
  }
}

.p-shirube-lead__desc {
  color: #FFF;
  letter-spacing: 0.08em;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-shirube-lead__desc {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lead__desc br {
    display: none;
  }
}

.p-shirube-lead__image {
  width: 28vw;
  max-width: 418px;
  height: auto;
  position: absolute;
  left: 78%;
  right: 0;
  top: 24%;
}
@media screen and (max-width: 1240px) {
  .p-shirube-lead__image {
    left: 70%;
    top: 60%;
  }
}
@media screen and (max-width: 1040px) {
  .p-shirube-lead__image {
    width: max(25%, 182px);
    height: auto;
    position: absolute;
    left: 78%;
    top: 64%;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lead__image {
    width: max(36%, 192px);
    top: -20%;
    left: 63%;
  }
}
@media screen and (max-width: 516px) {
  .p-shirube-lead__image {
    display: none;
  }
}

.p-shirube-plan {
  margin-top: 124px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-plan {
    margin-top: 96px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-plan {
    margin-top: 64px;
  }
}

.p-shirube-plan__contents {
  background: #FFF;
  padding: 64px 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shirube-plan__contents {
    padding: 40px 16px;
  }
}

.p-shirube-plan__index {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-plan__index {
    font-size: max(3.46vw, 20px);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-shirube-plan__index span {
  font-weight: 700;
  color: #FFF;
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
  padding: 10px;
  margin-right: 14px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-plan__index span {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-plan__index br {
    display: block;
  }
}

.p-shirube-plan__desc {
  text-align: center;
  margin-top: 14px;
}

.p-shirube-plan__flex {
  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;
  gap: 32px;
  margin-top: 54px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-plan__flex {
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-plan__flex {
    -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: start;
    gap: 8px;
    margin-top: 32px;
  }
}

.p-shirube-plan__price {
  border-radius: 5px;
  border: 3px solid #BC0D0D;
  padding: 24px 6px 24px 14px;
  text-align: center;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-shirube-plan__price {
    width: 100%;
    display: inline;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.p-shirube-plan__price p:first-child {
  font-size: 24px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-plan__price p:first-child {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-plan__price p:first-child {
    display: inline;
  }
}
.p-shirube-plan__price p:nth-child(2) {
  font-size: 24px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-plan__price p:nth-child(2) {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-plan__price p:nth-child(2) {
    display: inline;
  }
}
.p-shirube-plan__price p:nth-child(2) span:first-child {
  font-family: "Inter", sans-serif;
  color: #BC0D0D;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-plan__price p:nth-child(2) span:first-child {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-plan__price p:nth-child(2) span:first-child {
    font-size: 32px;
  }
}
.p-shirube-plan__price p:nth-child(2) span:last-child {
  font-size: 16px;
  margin-left: -8px;
}
.p-shirube-plan__price p:last-child {
  font-size: 12px;
}

.p-shirube-plan__benefits {
  font-size: 18px;
  letter-spacing: 1.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: left;
}
@media screen and (max-width: 1040px) {
  .p-shirube-plan__benefits {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-plan__benefits {
    font-size: 14px;
  }
}

.p-shirube-plan__benefits-item {
  position: relative;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-shirube-plan__benefits-item::after {
  content: "";
  display: block;
  background-color: #BC0D0D;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-shirube-lecture {
  margin-top: 124px;
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture {
    margin-top: 64px;
  }
}

.p-shirube-lecture__index {
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
  font-size: 36px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  padding: 80px 32px 160px;
  line-height: 2;
}
.p-shirube-lecture__index span {
  background: #FFF;
  color: #BC0D0D;
  font-weight: 700;
  padding: 10px 14px;
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__index span {
    padding: 10px;
  }
}
@media screen and (max-width: 1040px) {
  .p-shirube-lecture__index {
    font-size: max(3.46vw, 20px);
    padding: 64px 32px 128px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__index {
    padding: 40px 16px 80px;
  }
}

.p-shirube-lecture__inner {
  margin-top: -80px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-lecture__inner {
    margin-top: -64px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__inner {
    margin-top: -50px;
  }
}

.p-shirube-lecture__contents {
  background: #FFF;
  padding: 60px 80px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-lecture__contents {
    padding: 60px 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__contents {
    padding: 40px 16px;
  }
}

.p-shirube-lecture__contents-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1040px) {
  .p-shirube-lecture__contents-title {
    font-size: max(2.3vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__contents-title {
    font-size: 18px;
  }
}

.p-shirube-lecture__movie {
  margin-top: 16px;
}
.p-shirube-lecture__movie p {
  text-align: right;
}

.shirube-mov {
  width: 90%;
  margin-top: 0.5em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  background-color: #292929;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.shirube-mov::after {
  content: "別タブで動画を再生します";
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFF;
  z-index: 2;
}
.shirube-mov .shirube-mov-link {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.shirube-mov:hover .shirube-mov-link {
  opacity: 0.4;
  border: none;
}
.shirube-mov:hover::after {
  display: block;
}
@media screen and (max-width: 767px) {
  .shirube-mov {
    width: 100%;
  }
}

.p-shirube-lecture__lesson {
  margin-top: 96px;
}
.p-shirube-lecture__lesson .smalltext {
  padding-left: 80px;
  margin-top: 20px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-lecture__lesson {
    margin-top: 64px;
  }
  .p-shirube-lecture__lesson .smalltext {
    padding-left: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__lesson {
    margin-top: 40px;
  }
  .p-shirube-lecture__lesson .smalltext {
    padding-left: 16px;
  }
}

.p-shirube-lecture__lesson-title {
  position: relative;
  text-align: center;
}
.p-shirube-lecture__lesson-title::before {
  content: "";
  display: block;
  height: 1px;
  background: #BC0D0D;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-shirube-lecture__lesson-title p {
  color: #BC0D0D;
  font-weight: 700;
  font-size: 20px;
  display: inline-block;
  padding: 2px 24px;
  background: #FFF;
  position: relative;
  z-index: 1;
}
.p-shirube-lecture__lesson-title p span {
  font-size: 16px;
  font-weight: 700;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__lesson-title p {
    font-size: 18px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__lesson-title p br {
    display: block;
  }
}

.p-shirube-lecture__lesson-lead {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__lesson-lead {
    font-size: 16px;
  }
}

.p-shirube-lecture__lesson-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  font-size: 15px;
  padding-left: 80px;
  padding-right: 80px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-lecture__lesson-list {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__lesson-list {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 16px;
  }
}

.p-shirube-lecture__lesson-list--num {
  gap: 30px 54px;
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__lesson-list--num {
    gap: 20px;
  }
}
.p-shirube-lecture__lesson-list--num li {
  width: calc((100% - 54px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}
.p-shirube-lecture__lesson-list--num li::before {
  content: attr(data-num);
  display: block;
  font-family: "Inter", sans-serif;
  color: #FFF;
  background: #BC0D0D;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  padding: 8px;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__lesson-list--num li {
    width: 100%;
  }
  .p-shirube-lecture__lesson-list--num li::before {
    font-size: 14px;
    width: 20px;
    height: 20px;
  }
}

.p-shirube-lecture__message {
  margin-top: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-shirube-lecture__message span {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 3.6px;
  color: #FFF;
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
  padding: 10px 16px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-lecture__message span {
    font-size: max(3.46vw, 20px);
  }
}
@media screen and (max-width: 1040px) {
  .p-shirube-lecture__message {
    margin-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-lecture__message {
    margin-top: 40px;
  }
}

.p-shirube-service {
  margin-top: 124px;
}
@media screen and (max-width: 1040px) {
  .p-shirube-service {
    margin-top: 96px;
  }
}
@media screen and (max-width: 767px) {
  .p-shirube-service {
    margin-top: 64px;
  }
}

.head-dot-title {
  position: relative;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 36px;
  font-weight: 700;
}
.head-dot-title::before {
  content: "";
  display: block;
  background-color: #BC0D0D;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1040px) {
  .head-dot-title {
    font-size: max(3.46vw, 20px);
  }
}
.p-service-detail__list {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-service-detail__list {
    margin-top: 0;
  }
}

.p-service-detail__item {
  border-bottom: 2px dotted #CECECE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-service-detail__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-service-detail__item-dt {
  font-weight: 700;
  padding-left: 10px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .p-service-detail__item-dt {
    width: 100%;
    padding-right: 10px;
  }
}

.p-service-detail__item-dd {
  width: calc(100% - 200px);
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-service-detail__item-dd {
    width: 100%;
    padding-left: 10px;
    margin-top: 6px;
  }
}

.form {
  margin-top: 40px;
}

.form__agree {
  text-align: center;
}

.form-checkbtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-checkbtn input {
  margin-right: 10px;
}

.form-checkbox__link {
  border-bottom: 1px solid #222;
}
.form-checkbox__link:hover {
  border-bottom: 1px solid #BC0D0D;
}

.form__btn {
  margin: 30px auto 0;
  position: relative;
  text-align: center;
}
.form__btn input[type=submit] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  padding: 0;
  z-index: -1;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  cursor: default;
  z-index: 1;
  outline: none;
}
.form__btn.is-checked input[type=submit] {
  z-index: -1;
}
.form__btn .form-btn {
  background: #989898;
  position: relative;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  border: 1px solid #989898;
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 20px 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form__btn.is-checked .form-btn {
  background: #BC0D0D;
  border: 1px solid #BC0D0D;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form__btn.is-checked .form-btn:hover {
  opacity: 0.7;
}

.p-kaiyaku-lead {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1px;
  position: relative;
}
.p-kaiyaku-lead::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -100vw;
  width: calc(100vw + 1px);
  height: 100%;
  background-color: #A40202;
}
@media screen and (max-width: 767px) {
  .p-kaiyaku-lead {
    padding-bottom: 0;
  }
}

.p-kaiyaku-lead__inner {
  max-width: 1040px;
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
  padding: 80px 440px 80px 80px;
  position: relative;
}
@media screen and (max-width: 1340px) {
  .p-kaiyaku-lead__inner {
    width: 96%;
  }
}
@media screen and (max-width: 1040px) {
  .p-kaiyaku-lead__inner {
    padding: 64px 64px 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-kaiyaku-lead__inner {
    padding: 50px 30px 50px;
  }
}

.p-kaiyaku-lead__index {
  color: #FFF;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 5.4px;
  line-height: 1.2;
}
@media screen and (max-width: 1040px) {
  .p-kaiyaku-lead__index {
    font-size: max(3.75vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-kaiyaku-lead__index {
    font-size: max(5.2vw, 24px);
  }
}
.p-kaiyaku-lead__index span {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 1040px) {
  .p-kaiyaku-lead__index span {
    font-size: max(2.77vw, 32px);
  }
}
@media screen and (max-width: 767px) {
  .p-kaiyaku-lead__index span {
    font-size: max(4.16vw, 18px);
  }
}

.p-kaiyaku-lead__desc {
  color: #FFF;
  letter-spacing: 0.08em;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-kaiyaku-lead__desc {
    margin-top: 20px;
  }
}

.p-kaiyaku-lead__image {
  width: 40vw;
  max-width: 540px;
  height: auto;
  position: absolute;
  right: 0;
  bottom: -124px;
}
.p-kaiyaku-lead__image img {
  border-radius: 5px;
}
@media screen and (max-width: 1040px) {
  .p-kaiyaku-lead__image {
    bottom: 0;
    top: -14%;
  }
}
@media screen and (max-width: 767px) {
  .p-kaiyaku-lead__image {
    top: -50px;
    right: -10px;
  }
}

.p-kaiyaku-service {
  margin-top: 248px;
}
@media screen and (max-width: 1040px) {
  .p-kaiyaku-service {
    margin-top: 96px;
  }
}
@media screen and (max-width: 767px) {
  .p-kaiyaku-service {
    margin-top: 64px;
  }
}

.p-kaiyaku-service__item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.p-kaiyaku-service__item-flex .material-symbols-outlined {
  font-size: 16px;
}

.p-kaiyaku-service__img {
  width: 160px;
}

.p-kaiyaku-service__item-link {
  display: block;
  text-decoration: underline;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-kaiyaku-service__item-link:hover {
  color: #BC0D0D;
}

.p-news {
  margin: 0 auto;
}
.p-news::before {
  content: "";
  display: block;
  height: 360px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
}
@media screen and (max-width: 1040px) {
  .p-news::before {
    height: 200px;
  }
}

.p-news__inner {
  margin-top: -264px;
}
@media screen and (max-width: 1040px) {
  .p-news__inner {
    margin-top: -136px;
  }
}

.p-news__wrap {
  background: #FFF;
  padding-top: 72px;
  padding-bottom: 96px;
  width: 100%;
}
@media screen and (max-width: 1040px) {
  .p-news__wrap {
    padding-top: 40px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-news__wrap {
    padding-top: 16px;
    padding-bottom: 40px;
  }
}

.p-news__contents {
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-news__contents {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.p-company__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width: 1040px) {
  .p-company__contents {
    gap: 56px;
  }
}
@media screen and (max-width: 767px) {
  .p-company__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.p-company__contents-item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .p-company__contents-item {
    width: 100%;
  }
}
@media screen and (max-width: 1040px) {
  .p-company__contents-item .company__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5em;
  }
}

.p-company__image {
  position: relative;
  left: 16px;
}
@media screen and (max-width: 767px) {
  .p-company__image {
    left: 8px;
  }
}
.p-company__image::after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  background: #BC0D0D;
  width: 100%;
  border-radius: 10px;
  z-index: -1;
  padding-top: 75%;
}
.p-company__image img {
  border-radius: 10px;
}

.p-access {
  margin-top: 124px;
}
@media screen and (max-width: 767px) {
  .p-access {
    margin-top: 64px;
  }
}

.p-access__map {
  width: 100%;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-access__map {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-access__map iframe {
    height: 280px;
  }
}
.p-access__map p {
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .p-access__map p {
    font-size: 16px;
  }
}

.post__title {
  font-size: 32px;
  -moz-text-align-last: left;
       text-align-last: left;
  margin-bottom: 16px;
}
@media screen and (max-width: 1040px) {
  .post__title {
    font-size: max(3.07vw, 24px);
  }
}

.post__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.post-btn {
  border-radius: 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  background: #222;
  border: 1px solid #222;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.post-btn:hover {
  opacity: 0.7;
  color: #FFF;
}

.p-contents {
  margin: 0 auto;
}
.p-contents::before {
  content: "";
  display: block;
  height: 360px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#A40202), to(#D58400));
  background: linear-gradient(90deg, #A40202 0%, #D58400 100%);
}
@media screen and (max-width: 1040px) {
  .p-contents::before {
    height: 200px;
  }
}

.p-contents__inner {
  margin-top: -264px;
}
@media screen and (max-width: 1040px) {
  .p-contents__inner {
    margin-top: -136px;
  }
}

.p-contents__article {
  background: #FFF;
  padding: 80px 32px;
}
@media screen and (max-width: 767px) {
  .p-contents__article {
    padding: 64px 16px;
  }
}

.contact-form {
  text-align: left;
}

.contact-form label {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form .form-button {
  background-color: #BC0D0D;
  color: #FFF;
  border: none;
  padding: 12px;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 280px;
  display: block;
  margin: 40px auto 0;
}

.contact-form .form-button:hover {
  opacity: 0.7;
}

.p-nf__text {
  text-align: center;
}