@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #1f1f1f;
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "Yu Gothic UI", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

.zen {
  font-family: "Zen Kaku Gothic New", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", YuGothic, "Yu Gothic", sans-serif;
}

.noto {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "Yu Gothic UI", sans-serif;
}

.aks {
  font-family: "Akshar", "Gadugi", "San Fransisco", "Helvetica", sans-serif;
}

.arial {
  font-family: "Arial", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

* {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}

@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}

@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.upper {
  text-transform: uppercase;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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

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

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

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

a {
  color: #1f1f1f;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.6;
}

.cont {
  width: 89.3%;
  max-width: 1100px;
  margin: 0 auto;
}

li {
  list-style: none;
}

.header .header_btn a {
  font-size: 1.8rem;
  letter-spacing: 0;
  padding: 11px 40px 13px;
  font-weight: 500;
}

.header.HeightMin {
  background: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1400px) {
  .ham_block {
    display: none;
  }
  .header {
    z-index: 11;
    position: fixed;
    width: 100%;
    padding: 20px 38px 20px 42px;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .header_logo {
    width: 235px;
    margin-top: 5px;
  }
  .header .header_logo a {
    display: block;
  }
  .header .header_logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .header__inner {
    padding: 0 40px 0 45px;
    width: 100%;
    height: 100%;
  }
  .header .header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .gnav ul {
    gap: 25px;
    margin-right: 35px;
  }
  .header .gnav li a {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2;
    display: block;
    letter-spacing: 0;
    color: #fff;
    -webkit-font-feature-settings: "palt" 1;
            font-feature-settings: "palt" 1;
  }
}
.header_tel {
  margin-right: 14px;
}
@media screen and (max-width: 767.9px) {
  .header_tel {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.header_tel img {
  width: 28px;
  margin-right: 5px;
  -webkit-filter: brightness(0) saturate(100%) invert(36%) sepia(38%) saturate(5934%) hue-rotate(15deg) brightness(97%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(36%) sepia(38%) saturate(5934%) hue-rotate(15deg) brightness(97%) contrast(101%);
}
.header_tel a {
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.header_tel p {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin-left: 2px;
}

@media screen and (max-width: 1399.9px) {
  .header {
    top: 0;
    display: block;
    width: 100%;
    z-index: 80;
    position: fixed;
    padding: 20px 20px 14px;
  }
  .header .header_logo {
    width: 200px;
  }
}
@media screen and (max-width: 1399.9px) and (max-width: 767.9px) {
  .header .header_logo {
    width: 160px;
  }
}
@media screen and (max-width: 1399.9px) {
  .header .ham_block.btn {
    position: absolute;
    top: 13px;
    right: 48px;
  }
}
@media screen and (max-width: 1399.9px) and (max-width: 767.9px) {
  .header .ham_block.btn {
    top: 15px;
  }
}
@media screen and (max-width: 1399.9px) {
  .header .ham_block.btn a {
    font-size: 1.8rem;
    height: 54px;
    padding: 0 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 5rem;
    border-radius: 27px;
  }
}
@media screen and (max-width: 1399.9px) and (max-width: 767.9px) {
  .header .ham_block.btn a {
    font-size: 1.2rem;
    border-radius: 15px;
    height: 30px;
    line-height: 2.6rem;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1399.9px) {
  .header .header__inner {
    padding: 0 18px;
    height: 100%;
  }
  .header .header-wrap {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    overflow: auto;
    display: block;
    margin: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    background: #1f1f1f;
    padding: 30px;
  }
  .header .header-wrap .wrap {
    background: #fff;
    padding-right: 0;
    padding-top: 15px;
    padding-left: 38px;
    padding-bottom: 24px;
    padding-right: 38px;
  }
  .header .header-wrap .tel_box {
    max-width: 300px;
    margin: 0 auto 60px;
  }
  .header .gnav ul {
    display: block;
    margin-bottom: 30px;
  }
  .header .gnav ul li a {
    display: block;
    font-size: 1.6rem;
    line-height: 2;
    padding: 20px 12px;
    border-bottom: solid 1px #fff;
    color: #fff;
  }
  .header .header_tel {
    margin-bottom: 50px;
  }
  .header .header_btn a {
    padding-left: 70px;
    padding-right: 70px;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1399.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 48px;
    height: 48px;
    position: fixed;
    top: 16px;
    right: 10px;
    z-index: 99;
    border-radius: 50%;
    border: none;
    background: transparent;
  }
  /*activeクラスが付与されると線が回転して×になる*/
}
@media screen and (max-width: 1399.9px) and (max-width: 767.9px) {
  .hamburger {
    top: 8px;
  }
}
@media screen and (max-width: 1399.9px) {
  .hamburger__line,
  .hamburger__line::before {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 30px;
    height: 1px;
    background: #fff;
  }
  .hamburger__line {
    top: 18px;
    left: 0px;
  }
  .hamburger__line::before {
    content: "";
    top: 8px;
    left: 0;
  }
  .hamburger.active span {
    top: 16px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 34px;
  }
  .hamburger.active span::before {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 34px;
  }
  .header-wrap.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}
.video_wrap {
  width: 100%;
  aspect-ratio: 1400/788;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .video_wrap {
    aspect-ratio: 1080/1500;
  }
}
.video_wrap video {
  width: 100%;
  height: 100%;
}

.btn a {
  font-size: 2.4rem;
  padding: 16px 52px 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  color: #fff;
  display: block;
  margin: 0 auto;
  background: #da5301;
  border: solid 2px #da5301;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .btn a {
    font-size: 1.8rem;
    padding: 16px 30px 18px;
  }
}

.btn a:hover {
  color: #da5301;
  background: #fff;
  opacity: 1;
}

.cv {
  background-image: url('../img/cv_bg.webp');
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 68px 0 92px;
}
@media screen and (max-width: 767.9px) {
  .cv {
    padding: 40px 0 55px;
  }
}
.cv h2 {
  text-align: center;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .cv h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.top_section {
  position: relative;
}
.top_section::before, .top_section::after {
  content: "";
  background: #da5301;
  position: absolute;
  z-index: 2;
}
.top_section::before {
  top: 0;
  left: 0;
  width: 200px;
  height: 260px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 767.9px) {
  .top_section::before {
    width: 130px;
    height: 180px;
  }
}
.top_section::after {
  right: 0;
  bottom: 0;
  width: 1090px;
  height: 1430px;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (max-width: 1024px) {
  .top_section::after {
    width: 78.57%;
    height: auto;
    aspect-ratio: 1100/1900;
  }
}
@media screen and (max-width: 430px) {
  .top_section::after {
    aspect-ratio: unset;
    height: calc(100% - 400px);
  }
}

.shadow {
  -webkit-box-shadow: 0px 14px 56px 8px rgba(19, 19, 19, 0.17);
          box-shadow: 0px 14px 56px 8px rgba(19, 19, 19, 0.17);
}

.anchor {
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
}

.section1 {
  margin-top: -135px;
  position: relative;
  margin-bottom: 90px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .section1 {
    margin-top: -80px;
  }
}
@media screen and (max-width: 767.9px) {
  .section1 {
    margin-top: -60px;
    margin-bottom: 50px;
  }
}
.section1 .cont {
  background: #f6f7f7;
  padding: 30px 54px 40px;
  border-radius: 5px;
}
@media screen and (max-width: 767.9px) {
  .section1 .cont {
    padding: 20px 30px 30px;
  }
}
.section1 .heading_wrap {
  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: 25px;
  margin-bottom: 25px;
}
.section1 .heading_wrap h2 {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .section1 .heading_wrap h2 {
    font-size: 2rem;
  }
}
.section1 .heading_wrap h2 span {
  color: #084697;
}
.section1 .heading_wrap .bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 165px;
}
@media screen and (max-width: 767.9px) {
  .section1 .heading_wrap .bar {
    display: none;
  }
}
.section1 .heading_wrap .bar::before, .section1 .heading_wrap .bar::after {
  content: "";
  width: calc(100% - 15px);
  height: 2px;
  background: #da5301;
  display: block;
}
.section1 .heading_wrap .bar::before {
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 10px;
}
.section1 .heading_wrap .bar2::before {
  margin-right: auto;
  margin-left: 0;
}
.section1 .heading_wrap .bar2::after {
  margin-right: 0;
  margin-left: auto;
}
.section1 .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.section1 .flex p {
  width: calc((100% - 30px) / 3);
  background: #fff;
  display: grid;
  place-content: center;
  border-radius: 5px;
  color: #da5301;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  padding: 30px 20px 40px;
}
@media screen and (max-width: 767.9px) {
  .section1 .flex p {
    width: 100%;
    font-size: 1.8rem;
    padding: 10px 20px 15px;
  }
}

.orange {
  color: #da5301;
}

.heading {
  font-size: 5.2rem;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .heading {
    font-size: 2.6rem;
    line-height: 1.3;
  }
}
.heading span {
  font-weight: 900;
}
.heading .arial {
  font-weight: 700;
}

.heading-m {
  font-size: 4.6rem;
}
@media screen and (max-width: 767.9px) {
  .heading-m {
    font-size: 2.4rem;
  }
}

.about {
  padding-bottom: 100px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .about {
    padding-bottom: 60px;
  }
}
.about h2 {
  margin-bottom: 30px;
}
.about .video_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
  height: auto;
  aspect-ratio: 950/530;
  border-radius: 10px;
  overflow: hidden;
}
.about .video_wrap iframe {
  width: 100%;
  height: 100%;
}

.worries {
  padding-top: 70px;
}
@media screen and (max-width: 767.9px) {
  .worries {
    padding-top: 50px;
  }
}
.worries .heading {
  margin-bottom: 30px;
}
.worries .list_box {
  background: #ebebeb;
  position: relative;
  -webkit-filter: drop-shadow(0px 14px 24px rgba(19, 19, 19, 0.25));
          filter: drop-shadow(0px 14px 24px rgba(19, 19, 19, 0.25));
}
.worries .list_box::after {
  content: "";
  width: 230px;
  height: 40px;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #ebebeb;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -39px;
}
@media screen and (max-width: 767.9px) {
  .worries .list_box::after {
    width: 100px;
    height: 30px;
    bottom: -29px;
  }
}
.worries .cont {
  max-width: 1200px;
}

.list_box {
  padding: 100px 75px;
  border-radius: 30px;
}
@media screen and (max-width: 767.9px) {
  .list_box {
    padding: 80px 20px 60px;
    border-radius: 10px;
  }
}
.list_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 87px;
}
@media screen and (max-width: 767.9px) {
  .list_box ul {
    gap: 70px;
  }
}
.list_box li {
  background: #fff;
  border-radius: 10px;
  padding: 60px 54px 30px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .list_box li {
    padding: 50px 20px 30px;
  }
}
.list_box li img {
  position: absolute;
  width: 126px;
  top: -72px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .list_box li img {
    width: 90px;
    top: -52px;
  }
}
.list_box li h3 {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .list_box li h3 {
    font-size: 2rem;
  }
}
.list_box li h3 span {
  font-style: italic;
  font-size: 3.6rem;
  font-weight: 500;
  margin-right: 8px;
}
@media screen and (max-width: 767.9px) {
  .list_box li h3 span {
    font-size: 2.2rem;
  }
}
.list_box li p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6111111111;
}
@media screen and (max-width: 767.9px) {
  .list_box li p {
    font-size: 1.5rem;
  }
}

.resolution {
  position: relative;
  padding-top: 105px;
  padding-bottom: 95px;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .resolution {
    padding-top: 60px;
    padding-bottom: 80px;
    margin-bottom: 30px;
  }
}
.resolution::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url('../img/resolution_bg.webp');
  background-size: cover;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.resolution .cont {
  max-width: 1154px;
}
.resolution .heading {
  margin-bottom: 13px;
}
@media screen and (max-width: 767.9px) {
  .resolution .heading {
    margin-bottom: 20px;
  }
}
.resolution .heading .aks {
  font-size: 10.2rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 767.9px) {
  .resolution .heading .aks {
    font-size: 5.2rem;
  }
}
.resolution .description {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.96;
  margin-bottom: 60px;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .resolution .description {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.resolution ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .resolution ol {
    margin-bottom: 20px;
  }
}
.resolution ol li {
  width: 51%;
  display: grid;
  place-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: auto;
  aspect-ratio: 600/319;
  padding-left: 2%;
  padding-bottom: 2%;
  margin-bottom: -10px;
}
@media screen and (max-width: 767.9px) {
  .resolution ol li {
    padding-left: 4%;
    width: 100%;
    margin-bottom: -20px;
  }
}
.resolution ol li p {
  text-align: center;
  color: #da5301;
  font-size: 3.4rem;
  line-height: 1.3235294118;
  font-weight: 900;
}
@media screen and (max-width: 1299px) {
  .resolution ol li p {
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767.9px) {
  .resolution ol li p {
    font-size: 1.6rem;
  }
}
.resolution ol li:first-child {
  width: 100%;
  background-image: url('../img/resolution1.webp');
  height: auto;
  aspect-ratio: 1093/375;
  padding-left: 9%;
  padding-bottom: 3%;
  margin-bottom: -30px;
}
@media screen and (max-width: 767.9px) {
  .resolution ol li:first-child {
    margin-bottom: -15px;
    background-image: url('../img/resolution1-sp.webp');
    aspect-ratio: 600/319;
    padding-bottom: 2%;
    margin-bottom: -20px;
    padding-left: 4%;
  }
}
.resolution ol li:first-child p {
  font-size: 4.44rem;
}
@media screen and (max-width: 1299px) {
  .resolution ol li:first-child p {
    font-size: 3.17vw;
  }
}
@media screen and (max-width: 767.9px) {
  .resolution ol li:first-child p {
    font-size: 1.6rem;
  }
}
.resolution ol li:first-child p span {
  font-size: 5.25rem;
  font-weight: 600;
}
@media screen and (max-width: 1299px) {
  .resolution ol li:first-child p span {
    font-size: 3.7vw;
  }
}
@media screen and (max-width: 767.9px) {
  .resolution ol li:first-child p span {
    font-size: 1.8rem;
  }
}
.resolution ol li:nth-child(2) {
  background-image: url('../img/resolution2.webp');
}
.resolution ol li:nth-child(3) {
  background-image: url('../img/resolution3.webp');
  margin-left: -20%;
}
@media screen and (max-width: 767.9px) {
  .resolution ol li:nth-child(3) {
    margin-left: 0;
  }
}
.resolution ol li:nth-child(4) {
  background-image: url('../img/resolution4.webp');
}
.resolution ol li:nth-child(5) {
  background-image: url('../img/resolution5.webp');
  margin-left: -20%;
}
@media screen and (max-width: 767.9px) {
  .resolution ol li:nth-child(5) {
    margin-left: 0;
  }
}
.resolution ol li:nth-child(6) {
  background-image: url('../img/resolution6.webp');
}
.resolution ol li:nth-child(7) {
  background-image: url('../img/resolution7.webp');
  margin-left: -20%;
}
@media screen and (max-width: 767.9px) {
  .resolution ol li:nth-child(7) {
    margin-left: 0;
  }
}

.future {
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .future {
    margin-bottom: 60px;
  }
}
.future .heading {
  margin-bottom: 30px;
}
.future .cont {
  max-width: 1200px;
}
.future .list_box {
  background: #da5301;
  padding-bottom: 75px;
  padding-top: 120px;
}
@media screen and (max-width: 767.9px) {
  .future .list_box {
    padding: 80px 20px 60px;
  }
}
.future .list_box li {
  min-height: 215px;
}
@media screen and (max-width: 767.9px) {
  .future .list_box li {
    min-height: unset;
  }
}
.future .list_box li img {
  width: 190px;
}
@media screen and (max-width: 767.9px) {
  .future .list_box li img {
    width: 130px;
  }
}
.future .list_box li h3 {
  color: #da5301;
  font-weight: 900;
}
.future .list_box li h3 .arial {
  font-weight: bold;
}

.strong_point {
  padding-top: 92px;
  overflow: hidden;
  position: relative;
  padding-bottom: 410px;
}
@media screen and (max-width: 767.9px) {
  .strong_point {
    padding-top: 60px;
    padding-bottom: 240px;
  }
}
.strong_point::before, .strong_point::after {
  content: "";
  background: #da5301;
  position: absolute;
  z-index: -1;
}
.strong_point::before {
  top: 0;
  left: 0;
  width: 380px;
  height: 490px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 767.9px) {
  .strong_point::before {
    width: 130px;
    height: 180px;
  }
}
.strong_point::after {
  right: 0;
  bottom: 0;
  width: auto;
  aspect-ratio: 1640/2450;
  height: calc(100% - 185px);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media (min-width: 2100px) {
  .strong_point::after {
    width: 90vw;
    height: auto;
  }
}
.strong_point .heading {
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .strong_point .heading {
    margin-bottom: 30px;
  }
}
.strong_point ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .strong_point ul {
    gap: 40px;
  }
}
.strong_point li h3 {
  margin-bottom: -130px;
}
@media screen and (max-width: 767.9px) {
  .strong_point li h3 {
    margin-bottom: -30px;
  }
}
.strong_point li h3 span {
  padding: 2px 20px 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #fff;
  background: #1f1f1f;
  margin-bottom: 6px;
  font-size: 4.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .strong_point li h3 span {
    font-size: 2.2rem;
  }
}
.strong_point li p {
  position: relative;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.7619047619;
  padding: 150px 0 45px 58px;
  margin-left: 90px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767.9px) {
  .strong_point li p {
    font-size: 1.6rem;
    margin-left: 20px;
    padding: 40px 0 30px 20px;
  }
}
.strong_point li p::before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  margin-bottom: 100px;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  -webkit-box-shadow: 0px 14px 56px 8px rgba(19, 19, 19, 0.17);
          box-shadow: 0px 14px 56px 8px rgba(19, 19, 19, 0.17);
}
.strong_point li:nth-child(3) h3 {
  margin-bottom: -42px;
}
@media screen and (max-width: 767.9px) {
  .strong_point li:nth-child(3) h3 {
    margin-bottom: -30px;
  }
}
.strong_point li:nth-child(3) p {
  padding-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .strong_point li:nth-child(3) p {
    padding-top: 40px;
  }
}

.why {
  margin-top: -395px;
}
@media screen and (max-width: 767.9px) {
  .why {
    margin-top: -260px;
  }
}
.why .why_heading {
  position: relative;
  margin-bottom: 110px;
}
@media screen and (max-width: 767.9px) {
  .why .why_heading {
    margin-bottom: 20px;
  }
}
.why .why_heading .bg_text {
  position: absolute;
  top: 57%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  font-size: 30rem;
  color: #fff;
  opacity: 0.1;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .why .why_heading .bg_text {
    font-size: 13rem;
  }
}
.why .why_heading h2 {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .why .why_heading h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .why .why_heading h2 {
    font-size: 2.6rem;
  }
}
.why .why_heading h2 .f-l {
  font-size: 8rem;
  font-weight: 900;
  display: block;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  .why .why_heading h2 .f-l {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .why .why_heading h2 .f-l {
    font-size: 4rem;
    line-height: 1.2;
  }
}
.why .why_heading h2 .aks {
  font-size: 5.6rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .why .why_heading h2 .aks {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 767.9px) {
  .why .why_heading h2 .aks {
    font-size: 3.4rem;
    line-height: 1.4;
  }
}
.why ul {
  position: relative;
  overflow: hidden;
}
.why li {
  background-size: cover;
  background-position: center;
  position: relative;
  gap: 5%;
  padding: 46px 0 67px;
}
@media screen and (max-width: 767.9px) {
  .why li {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    padding: 26px 0 50px;
  }
}
.why li * {
  color: #fff;
}
.why li .no {
  font-size: 45rem;
  font-weight: 600;
  line-height: 1;
  margin-left: -137px;
  margin-bottom: -63px;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 767.9px) {
  .why li .no {
    font-size: 16rem;
    margin-left: -50px;
    margin-bottom: 0;
  }
}
.why li .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .why li .detail {
    width: 90%;
    margin: 0 auto;
  }
}
.why li .detail h3 {
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.3777777778;
}
@media screen and (max-width: 767.9px) {
  .why li .detail h3 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    padding-bottom: 5px;
  }
}
.why li .detail p {
  padding-right: 9%;
  font-size: 2.3rem;
  line-height: 1.8260869565;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .why li .detail p {
    font-size: 1.5rem;
    padding-right: 0;
  }
}
.why img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.why li:nth-child(1) .no {
  letter-spacing: 0;
}
@media screen and (max-width: 767.9px) {
  .why li:nth-child(1) .no {
    letter-spacing: -0.02em;
  }
}

.price {
  padding-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .price {
    padding-top: 60px;
    margin-bottom: 60px;
  }
}
.price .heading {
  margin-bottom: 7px;
  margin-inline: -1%;
}
.price .heading .orange2 {
  color: #ed813f;
}
.price .note {
  text-align: right;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .price .note {
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
}
.price .price_box1 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.price .price_box1 tr td {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.price .price_box1 tr td .aks {
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
@media screen and (max-width: 767.9px) {
  .price .price_box1 tr td .aks {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}
.price .price_box {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  .price .price_box {
    margin-bottom: 20px;
  }
}
.price .price_box h3 {
  background: #da5301;
  color: #fff;
  padding: 8px 36px 13px;
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .price .price_box h3 {
    font-size: 1.8rem;
    padding: 4px 20px 5px;
  }
}
.price .price_box table,
.price .price_box tbody {
  display: block;
}
.price .price_box tr {
  border-bottom: solid 2px #d1d1d1;
}
.price .price_box tr th {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #ebebeb;
  /*font-size: 3.4rem;*/
  font-size: 2.4rem;
  font-weight: 700;
  padding-left: 50px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .price .price_box tr th {
    font-size: 1.5rem;
    padding: 10px;
  }
}
.price .price_box tr th span {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: -18px;
  margin-top: -30px;
  margin-right: 2px;
}
@media screen and (max-width: 767.9px) {
  .price .price_box tr th span {
    font-size: 1rem;
    margin-left: -8px;
    margin-top: -21px;
    margin-right: 0px;
  }
}
.price .price_box tr td {
  width: 70.8%;
  background: #fff;
  /*font-size: 4rem;*/
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 13px;
}
@media screen and (max-width: 767.9px) {
  .price .price_box tr td {
    font-size: 1.8rem;
    padding: 10px;
  }
}
.price .price_box tr td .aks {
  font-size: 4.3rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .price .price_box tr td .aks {
    font-size: 2.1rem;
  }
}
.price .price_box .basic td {
  /*width: 35.4%;*/
  width: 23.4%;
}
.price .price_box .basic td:last-child {
  border-left: dotted 2px #d1d1d1;
}
.price .price_box .basic tr:nth-child(1) td {
  background: #f7dccb;
  color: #da5301;
}
.price .price_box .detail h3 {
  background: #1f1f1f;
}
.price .price_box .detail td p {
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .price .price_box .detail td p {
    font-size: 1rem;
  }
}
.price .add {
  margin-bottom: 150px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767.9px) {
  .price .add {
    margin-bottom: 80px;
  }
}
.price .add h3 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .price .add h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
.price .add p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #686868;
}
@media screen and (max-width: 767.9px) {
  .price .add p {
    font-size: 1.3rem;
  }
}
.price .add p a {
  font-weight: 700;
  color: #da5301;
  text-decoration: underline;
  text-underline-offset: 10px;
}
.price .add2 {
  margin-bottom: 0;
}
.price .option h3 {
  background: #ed813f;
}
.price .option tr td {
  font-size: 2.4rem;
  width: auto;
  vertical-align: middle;
  text-align: left;
  padding: 18px;
}
@media screen and (max-width: 767.9px) {
  .price .option tr td {
    font-size: 1.8rem;
    padding: 10px;
  }
}
.price .option tr .f-m {
  font-size: 3rem;
}
@media screen and (max-width: 767.9px) {
  .price .option tr .f-m {
    font-size: 1.5rem;
  }
}
.price .option tr .td1 {
  width: 32%;
  background: #ebebeb;
  padding-left: 50px;
}
@media screen and (max-width: 767.9px) {
  .price .option tr .td1 {
    padding-left: 10px;
    width: 20%;
    font-size: 1.5rem;
  }
}
.price .option tr .td1 span {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: -18px;
  vertical-align: top;
  margin-right: 2px;
}
@media screen and (max-width: 767.9px) {
  .price .option tr .td1 span {
    font-size: 1rem;
    margin-left: -8px;
    margin-right: 0px;
  }
}
.price .option tr .td2 {
  width: 22%;
  background: #f7dccb;
  padding-left: 40px;
}
@media screen and (max-width: 767.9px) {
  .price .option tr .td2 {
    padding-left: 10px;
    font-size: 1.5rem;
  }
}
.price .option tr .td3 {
  width: 31%;
  background: #fff;
  padding-left: 30px;
}
@media screen and (max-width: 767.9px) {
  .price .option tr .td3 {
    padding-left: 10px;
  }
}
.price .option tr:nth-child(4) .td3 p {
  font-size: 3rem;
  line-height: 1.2;
  padding-left: 34px;
  position: relative;
  margin-top: 14px;
}
@media screen and (max-width: 767.9px) {
  .price .option tr:nth-child(4) .td3 p {
    font-size: 1.7rem;
    padding-left: 24px;
  }
}
.price .option tr:nth-child(4) .td3 p::before {
  content: "";
  width: 26px;
  min-width: 26px;
  height: 2px;
  background: #da5301;
  position: absolute;
  left: 0;
  top: 20px;
}
@media screen and (max-width: 767.9px) {
  .price .option tr:nth-child(4) .td3 p::before {
    width: 18px;
    min-width: 18px;
    height: 1px;
    top: 12px;
  }
}
.price .option tr:nth-child(4) .td3 p span {
  font-size: 3.3rem;
}
@media screen and (max-width: 767.9px) {
  .price .option tr:nth-child(4) .td3 p span {
    font-size: 1.9rem;
  }
}
.price .option tr:nth-child(4) .td3 .comment {
  margin-left: 34px;
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 767.9px) {
  .price .option tr:nth-child(4) .td3 .comment {
    font-size: 1.2rem;
    margin-left: 0;
  }
}

.offer {
  padding-top: 100px;
  background-image: url('../img/offer_bg.webp');
  background-size: cover;
  background-position: top center;
  padding-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  .offer {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  .offer .offer_heading {
    margin-inline: -4%;
  }
}
.offer .offer_heading p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 34px;
  position: relative;
  background: #1f1f1f;
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  padding: 4px 72px;
}
@media screen and (max-width: 767.9px) {
  .offer .offer_heading p {
    font-size: 2.4rem;
    padding: 4px 50px;
  }
}
.offer .offer_heading p span {
  font-size: 4.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .offer .offer_heading p span {
    font-size: 2.7rem;
  }
}
.offer .offer_heading p::after {
  content: "";
  width: 22px;
  height: 19px;
  background: #1f1f1f;
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
@media screen and (max-width: 767.9px) {
  .offer .offer_heading p::after {
    bottom: -12px;
  }
}
.offer .offer_heading h2 {
  color: #fff;
  text-align: center;
  font-size: 6.8rem;
  font-weight: 900;
  line-height: 1.1;
}
@media screen and (max-width: 767.9px) {
  .offer .offer_heading h2 {
    font-size: 3.4rem;
    margin-bottom: 5px;
  }
}
.offer .offer_heading h2 .f-l {
  display: block;
  font-size: 8rem;
}
@media screen and (max-width: 767.9px) {
  .offer .offer_heading h2 .f-l {
    font-size: 3.4rem;
  }
}
.offer .offer_heading h2 .aks {
  font-size: 8.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767.9px) {
  .offer .offer_heading h2 .aks {
    font-size: 4rem;
  }
}
.offer .description {
  color: #fff;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.8260869565;
  margin-bottom: 40px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767.9px) {
  .offer .description {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.offer .description span {
  color: #da5301;
  background: #fff;
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 5px;
  margin-right: 5px;
}
.offer .offer_price {
  font-size: 5.5rem;
  font-weight: 700;
  color: #da5301;
}
@media screen and (max-width: 767.9px) {
  .offer .offer_price {
    font-size: 2.6rem;
  }
}
.offer .offer_price * {
  line-height: 1.1;
}
.offer .offer_price .aks {
  font-size: 9.8rem;
  font-weight: 600;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .offer .offer_price .aks {
    font-size: 6rem;
  }
}
.offer .plan {
  background: #fff;
  border-radius: 10px;
  padding: 40px 20px 35px;
  text-align: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .offer .plan {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 767.9px) {
  .offer .plan {
    padding: 25px 20px;
  }
}
.offer .plan .ttl {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .offer .plan .ttl {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}
.offer .plan .left {
  width: 53.8%;
  position: relative;
  padding-right: 4%;
}
@media screen and (max-width: 1024px) {
  .offer .plan .left {
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
  }
}
.offer .plan .left::after {
  content: "";
  width: 1px;
  height: 170px;
  background-image: url('../img/shape.webp');
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .offer .plan .left::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-image: url('../img/shape2.webp');
  }
}
.offer .plan .left .ttl {
  padding-right: 6%;
}
.offer .plan .left .offer_price {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.offer .plan .left .offer_price p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.offer .plan .left .offer_price .zeinuki {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 900;
  right: -5px;
  top: 20px;
}
@media screen and (max-width: 767.9px) {
  .offer .plan .left .offer_price .zeinuki {
    font-size: 1.1rem;
    right: -8px;
    top: 12px;
  }
}
.offer .plan .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1024px) {
  .offer .plan .right {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    width: 100%;
  }
}
.offer .plan .right .offer_price {
  font-size: 6.8rem;
}
@media screen and (max-width: 767.9px) {
  .offer .plan .right .offer_price {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .offer .plan .right .noto {
    font-size: 1.4rem;
  }
}
.offer .plan .right .ttl {
  margin-bottom: 5px;
}
.offer .plus {
  margin: 20px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 54px;
  padding-left: 55px;
}
@media screen and (max-width: 767.9px) {
  .offer .plus {
    padding: 0;
    gap: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.offer .plus .mark {
  width: 100px;
  height: 100px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .offer .plus .mark {
    width: 50px;
    height: 50px;
  }
}
.offer .plus .mark::before, .offer .plus .mark::after {
  content: "";
  width: 18px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 41px;
}
@media screen and (max-width: 767.9px) {
  .offer .plus .mark::before, .offer .plus .mark::after {
    width: 10px;
  }
}
.offer .plus .mark::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.offer .plus p {
  font-size: 6.4rem;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .offer .plus p {
    font-size: 3.2rem;
  }
}
.offer .plus p span {
  font-size: 7.2rem;
  letter-spacing: 0.013em;
}
@media screen and (max-width: 767.9px) {
  .offer .plus p span {
    font-size: 3.4rem;
  }
}
.offer .present {
  border-radius: 10px;
  background: #1f1f1f;
  padding: 35px 20px 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767.9px) {
  .offer .present {
    padding: 30px 20px 40px;
  }
}
.offer .present .ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767.9px) {
  .offer .present .ttl {
    font-size: 2rem;
  }
}
.offer .present .ttl span {
  position: absolute;
  left: -20px;
  font-size: 1.8rem;
  top: 0;
}
@media screen and (max-width: 767.9px) {
  .offer .present .ttl span {
    dz: 1.4rem;
  }
}
.offer .present .offer_price {
  color: #fff;
  text-align: center;
}
.offer .present .offer_price .aks {
  color: #da5301;
}
.offer .present .f-l {
  font-size: 6.2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  line-height: 1.1;
}
@media screen and (max-width: 767.9px) {
  .offer .present .f-l {
    font-size: 3.4rem;
    line-height: 1.2;
    margin-top: 2px;
  }
}
.offer .present .f-l .orange {
  font-size: 7.2rem;
  line-height: 1.1;
}
@media screen and (max-width: 767.9px) {
  .offer .present .f-l .orange {
    font-size: 4.2rem;
    line-height: 1.4;
  }
}
.offer .add {
  margin-bottom: 100px;
  margin-left: 20px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767.9px) {
  .offer .add {
    margin-bottom: 40px;
  }
}
.offer .add h3 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .offer .add h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
.offer .add p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .offer .add p {
    font-size: 1.3rem;
  }
}
.offer .present_movie {
  max-width: 1200px;
  border: solid 10px #fff;
  border-radius: 10px;
  padding: 30px 68px 68px;
}
@media screen and (max-width: 767.9px) {
  .offer .present_movie {
    border-width: 5px;
    padding: 30px 20px;
  }
}
.offer .present_movie h2 {
  font-size: 6.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 13px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .offer .present_movie h2 {
    font-size: 3rem;
  }
}
.offer .present_movie p {
  font-size: 2.3rem;
  margin-bottom: 30px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767.9px) {
  .offer .present_movie p {
    font-size: 1.6rem;
  }
}
.offer .present_movie .video_wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 1047/589;
}
.offer .present_movie .video_wrap iframe {
  width: 100%;
  height: 100%;
}

.flow {
  background: #f6f7f7;
  padding-top: 90px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767.9px) {
  .flow {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.flow h2 {
  font-size: 5.2rem;
  font-weight: 900;
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .flow h2 {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
}
.flow ol {
  gap: 3.4%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .flow ol {
    gap: 35px;
  }
}
.flow ol li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 10.75%;
}
@media screen and (max-width: 767.9px) {
  .flow ol li {
    width: 100%;
  }
}
.flow ol li .step {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .flow ol li .step {
    font-size: 1.5rem;
  }
}
.flow ol li .content {
  white-space: nowrap;
  display: grid;
  place-content: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 45px 0;
  font-size: 3.2rem;
  font-weight: 700;
  background: #fff;
  border-radius: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .flow ol li .content {
    font-size: 1.8rem;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    padding: 10px 20px;
  }
}
.flow ol li .content::after {
  content: "";
  width: 12%;
  height: auto;
  aspect-ratio: 14/34;
  background: #1f1f1f;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 47%;
  right: -22%;
}
@media screen and (max-width: 767.9px) {
  .flow ol li .content::after {
    width: 24px;
    aspect-ratio: 34/14;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
            clip-path: polygon(100% 0, 0 0, 50% 100%);
    top: auto;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -22px;
  }
}
.flow ol li:last-child {
  width: 15%;
}
@media screen and (max-width: 767.9px) {
  .flow ol li:last-child {
    width: 100%;
  }
}
.flow ol li:last-child .content {
  background: #da5301;
  color: #fff;
  font-size: 4.2rem;
}
@media screen and (max-width: 767.9px) {
  .flow ol li:last-child .content {
    font-size: 2.2rem;
  }
}
.flow ol li:last-child .content::after {
  content: none;
}

.profile {
  position: relative;
  margin-top: -35px;
  padding-bottom: 146px;
  padding-top: 35px;
  overflow: hidden;
}
@media screen and (max-width: 767.9px) {
  .profile {
    margin-top: -20px;
    padding-bottom: 80px;
    padding-top: 20px;
  }
}
.profile::before, .profile::after {
  content: "";
  background-color: rgb(52, 52, 52);
  position: absolute;
  z-index: 1;
}
.profile::before {
  top: 0;
  left: 0;
  width: 220px;
  height: 290px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media screen and (max-width: 767.9px) {
  .profile::before {
    width: 100px;
    height: 150px;
  }
}
.profile::after {
  right: 0;
  bottom: 0;
  width: auto;
  aspect-ratio: 1250/1557;
  height: calc(100% - 225px);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (max-width: 767.9px) {
  .profile::after {
    height: calc(100% - 500px);
    aspect-ratio: 1250/2000;
  }
}
.profile .wrapper {
  background: #fff;
  padding-top: 90px;
}
@media screen and (max-width: 767.9px) {
  .profile .wrapper {
    padding-top: 60px;
  }
}
.profile h2 {
  font-size: 5.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  padding: 0 50px;
}
@media screen and (max-width: 767.9px) {
  .profile h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
    padding: 0;
  }
}
.profile .cont {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}
.profile .mvv {
  height: auto;
  aspect-ratio: 1194/542;
  margin-bottom: 14px;
}
.profile .mvv img {
  width: 100%;
}
.profile .profile_wrap {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 60px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .profile .profile_wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.profile .profile_wrap .inner {
  position: relative;
  padding: 0 36px 40px;
  width: 493px;
  max-width: 100%;
}
.profile .profile_wrap .inner::before {
  content: "";
  width: 100%;
  height: calc(100% - 60px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #e50012;
  opacity: 0.95;
  z-index: -1;
}
.profile .profile_wrap .inner .img {
  width: 100%;
  height: auto;
  aspect-ratio: 420/538;
  margin-bottom: 20px;
}
.profile .profile_wrap .inner .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.profile .profile_wrap .inner h3 {
  color: #fff;
  font-size: 3.7rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .profile .profile_wrap .inner h3 {
    font-size: 2.4rem;
  }
}
.profile .profile_wrap .inner p {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 2;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  margin-inline: 1px;
}
@media screen and (max-width: 767.9px) {
  .profile .profile_wrap .inner p {
    font-size: 1.6rem;
  }
}

.promise {
  background-image: url('../img/promise_bg.webp');
  background-size: cover;
  background-position: center bottom;
  padding-top: 100px;
  padding-bottom: 190px;
}
@media screen and (max-width: 767.9px) {
  .promise {
    padding-top: 80px;
    padding-bottom: 140px;
  }
}
.promise * {
  color: #fff;
}
.promise .promise_heading {
  margin-bottom: 90px;
}
@media screen and (max-width: 767.9px) {
  .promise .promise_heading {
    margin-bottom: 40px;
  }
}
.promise .promise_heading p {
  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;
  font-size: 3.2rem;
  font-weight: 700;
  gap: 14px;
}
@media screen and (max-width: 767.9px) {
  .promise .promise_heading p {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.promise .promise_heading p::before, .promise .promise_heading p::after {
  content: "";
  width: 118px;
  height: 2px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .promise .promise_heading p::before, .promise .promise_heading p::after {
    width: 60px;
    height: 1px;
  }
}
.promise .promise_heading h2 {
  text-align: center;
  font-size: 7.2rem;
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 767.9px) {
  .promise .promise_heading h2 {
    font-size: 3.6rem;
  }
}
.promise .description {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 70px;
}
@media screen and (max-width: 767.9px) {
  .promise .description {
    font-size: 1.6rem;
    margin-bottom: 50px;
    line-height: 1.8;
  }
}
.promise .sign {
  text-align: right;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .promise .sign {
    font-size: 1.8rem;
  }
}

.melit {
  padding-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .melit {
    padding-top: 30px;
  }
}
.melit h2 {
  font-size: 5.2rem;
  font-weight: 900;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .melit h2 {
    font-size: 2.6rem;
  }
}
.melit .melit_content {
  padding-top: 60px;
  padding-bottom: 70px;
  background-image: url('../img/cv2_bg.webp');
  background-size: cover;
  background-position: bottom center;
}
.melit .melit_content h3 {
  text-align: center;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 45px;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .melit .melit_content h3 {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }
}
.melit .melit_content ul {
  max-width: 930px;
  margin: 0 auto 62px;
}
@media screen and (max-width: 767.9px) {
  .melit .melit_content ul {
    margin-bottom: 40px;
  }
}
.melit .melit_content ul li {
  margin-bottom: 19px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 7px 30px 6px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .melit .melit_content ul li {
    font-size: 2rem;
  }
}
.melit .melit_content ul li .aks {
  font-size: 3.2rem;
  font-weight: 600;
  margin-right: 15px;
}
@media screen and (max-width: 767.9px) {
  .melit .melit_content ul li .aks {
    font-size: 2.2rem;
  }
}
.melit .melit_content .btn a {
  width: 100%;
  font-size: 3.2rem;
  text-align: center;
  padding: 21px 41px 23px;
}
@media screen and (max-width: 767.9px) {
  .melit .melit_content .btn a {
    font-size: 1.8rem;
  }
}
.melit .melit_content .description {
  max-width: 930px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6666666667;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media screen and (max-width: 767.9px) {
  .melit .melit_content .description {
    font-size: 1.5rem;
  }
}

.footer {
  background: #fff;
  padding: 50px 0 20px;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding-top: 40px;
  }
}
.footer .cont {
  max-width: 1190px;
}
.footer .fnav {
  margin-bottom: 50px;
}
.footer .fnav ul {
  gap: 12px 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer .fnav ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767.9px) {
  .footer .fnav ul li a {
    font-size: 1.5rem;
  }
}
.footer .f_logo {
  width: 426px;
  max-width: 100%;
  display: block;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_logo {
    max-width: 200px;
  }
}
.footer .f_logo img {
  width: 100%;
}
.footer small,
.footer .f_pp {
  color: #9a9a9a;
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .footer small,
  .footer .f_pp {
    font-size: 1.4rem;
  }
}
.footer small {
  text-align: center;
}
.footer .f_pp {
  margin-top: -25px;
  margin-right: 30px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767.9px) {
  .footer .f_pp {
    margin-top: 10px;
    margin-right: auto;
  }
}

#scroll-top {
  position: fixed;
  z-index: 2;
  bottom: 12px;
  right: 24px;
  width: 60px;
  height: 60px;
  display: none;
  -webkit-transition: bottom 0.3s;
  transition: bottom 0.3s;
}

@media screen and (max-width: 767.9px) {
  #scroll-top {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    right: 8px;
    bottom: 0;
  }
}
#scroll-top:hover {
  bottom: 16px;
}

@media screen and (max-width: 767.9px) {
  #scroll-top:hover {
    bottom: 6px;
  }
}
#scroll-top a {
  width: 100%;
  height: 100%;
  display: block;
}

#scroll-top a span {
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 29px;
  right: 11px;
}

#scroll-top a span::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: 3px;
  background: #999;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  position: absolute;
  top: 9px;
  right: 9px;
}/*# sourceMappingURL=style.css.map */
