@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1050px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 1049.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  color: #000;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

h1, h2, h3, h4, h5, h6, pre, a, p, span, body, .width100 {
  font-family: "Noto Sans JP", sans-serif !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 767px) {
  main {
    overflow: hidden;
  }
}

img {
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a,
button {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
}

button {
  cursor: pointer;
}

.quote {
  word-break: break-all;
}

/*========================
common
========================*/
.inner {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 32px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.side-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 767px) {
  .side-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.side-flex .left {
  position: sticky;
}
@media screen and (max-width: 767px) {
  .side-flex .left {
    position: inherit;
    top: inherit !important;
    width: 100% !important;
  }
}
.side-flex .left .en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  left: 0;
  font-size: 15px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .side-flex .left .en {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    position: inherit !important;
    left: inherit !important;
    top: inherit !important;
    margin-top: 4px;
    margin-left: 20px;
  }
}
.side-flex .left .box {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 26px;
  font-weight: 600;
  position: relative;
  line-height: 1.5;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .side-flex .left .box {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin: 0 !important;
    text-align: left !important;
    padding: 15px 20px 16px !important;
    letter-spacing: 2px !important;
  }
}
@media screen and (max-width: 767px) {
  .side-flex .right {
    width: 100% !important;
  }
}
.side-flex.side-flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .side-flex.side-flex-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.side-flex.side-flex-reverse .en {
  left: inherit;
  right: 0;
}

.center {
  text-align: center;
}

/*========================
header  
========================*/
.header {
  background: #fff;
  -webkit-box-shadow: 6px 3px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 6px 3px 6px rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 10px 16px;
}
@media screen and (max-width: 767px) {
  .header {
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    padding: 7px 16px;
  }
}

.header__flex {
  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;
  max-width: 1065px;
  margin: 0 auto;
}

.header__logo {
  width: 151px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.header__nav-item {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}
.header__nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #1F3975;
  border-radius: 50%;
}

.header__contact {
  text-align: right;
}
.header__contact .tel {
  font-size: 25px;
  font-weight: bold;
  padding-left: 25px;
  position: relative;
}
.header__contact .tel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/lp/tel.svg) no-repeat center center/contain;
  width: 19px;
  height: 19px;
}
.header__contact p {
  font-size: 12px;
  line-height: 1;
}

/*========================
drawer
========================*/
.hamburger-menu {
  position: fixed;
  top: 6px;
  right: 8px;
  width: 40px;
  height: 40px;
  background-color: #1F3975;
  border: 1px solid #1F3975;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  z-index: 10001;
}
.hamburger-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: white;
  margin: 2.5px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
}
.hamburger-menu.active {
  background: white;
}
.hamburger-menu.active span {
  background: #1F3975;
}
.hamburger-menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}

.drawer {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding: 20px 16px 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer.open {
  opacity: 1;
  visibility: visible;
}
.drawer .header__nav {
  -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;
  max-width: 237px;
  width: 100%;
  gap: 30px;
}
.drawer .header__nav-item {
  font-size: 18px;
}
.drawer .header__contact .tel {
  padding-left: 44px;
  font-size: 30px;
}
.drawer .header__contact .tel::before {
  width: 39px;
  height: 39px;
}

/*========================
mv  
========================*/
.mv {
  padding-top: 86px;
}
@media screen and (max-width: 767px) {
  .mv {
    padding-top: 70px;
  }
}
.mv .inner {
  max-width: 1045px;
}

.mv__box {
  border-radius: 60px 10px;
  padding: 37px 40px 246px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__box {
    padding: 22px 12px 246px;
  }
}

.mv__bg {
  position: absolute;
  border-radius: 60px 10px;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.mv__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.mv__illust {
  max-width: 219px;
  position: absolute;
  right: 28px;
  bottom: -77px;
}
@media screen and (max-width: 767px) {
  .mv__illust {
    max-width: 129px;
    right: 0px;
    bottom: -146px;
  }
}

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

.mv__text {
  font-size: 37px;
  font-weight: bold;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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: 11px;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 26px;
    gap: 7px;
  }
}
.mv__text span {
  display: inline-block;
  background: white;
  border-radius: 200px;
  padding: 6px 14px 8px;
  line-height: 1.1;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .mv__text span {
    letter-spacing: 1px;
    padding: 6px 13px 8px;
  }
}
.mv__text .pr0 {
  padding-right: 0;
}
.mv__text .color {
  padding: 0;
  color: #1F3975;
  background: none;
}
.mv__text .second {
  font-size: 29px;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .mv__text .second {
    font-size: 20px;
  }
}

.mv__limit {
  width: 100%;
  max-width: 358px;
  /* 点滅アニメーション */
}
@media screen and (max-width: 767px) {
  .mv__limit {
    width: 104%;
    max-width: 315px;
    margin: 0 auto;
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.mv__limit .countdown-container {
  display: block;
  position: relative;
}
.mv__limit .countdown-container .countdown-bg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.mv__limit .countdown-container .countdown-numbers {
  position: absolute;
  bottom: 63px;
  left: 48%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__limit .countdown-container .countdown-numbers {
    bottom: 59px;
  }
}
@media screen and (max-width: 365px) {
  .mv__limit .countdown-container .countdown-numbers {
    bottom: 19vw;
  }
}
.mv__limit .countdown-container .countdown-numbers .time-number {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  width: 85px;
  text-align: center;
  line-height: 1;
  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;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .mv__limit .countdown-container .countdown-numbers .time-number {
    font-size: 40px;
    width: 75px;
    height: 45px;
  }
}
@media screen and (max-width: 365px) {
  .mv__limit .countdown-container .countdown-numbers .time-number {
    font-size: 11vw;
    width: 19.5vw;
    height: 7vw;
  }
}
.mv__limit .countdown-container .countdown-dots {
  position: absolute;
  bottom: 76px;
  left: 50%;
  -webkit-transform: translateX(-57%);
          transform: translateX(-57%);
  height: 27px;
  width: auto;
  -webkit-animation: blink 2s ease-in-out infinite;
          animation: blink 2s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .mv__limit .countdown-container .countdown-dots {
    bottom: 67px;
    height: 24px;
  }
}
@media screen and (max-width: 365px) {
  .mv__limit .countdown-container .countdown-dots {
    bottom: 18vw;
    height: 6vw;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.mv__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: -30px;
  left: 40px;
}
@media screen and (max-width: 767px) {
  .mv__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: -38px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
  }
}
.mv__cta .box {
  background: #1F3975;
  border-radius: 6px;
  padding: 17px 22px 20px;
  color: #fff;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .mv__cta .box {
    padding: 10px 14px 13px;
  }
}
.mv__cta .box:nth-child(1) {
  border-radius: 6px 0 0 6px;
}
@media screen and (max-width: 767px) {
  .mv__cta .box:nth-child(1) {
    border-radius: 6px;
  }
}
.mv__cta .box:nth-child(2) {
  border-radius: 0 6px 6px 0;
}
@media screen and (max-width: 767px) {
  .mv__cta .box:nth-child(2) {
    border-radius: 6px;
  }
}
.mv__cta .box:nth-child(2) .head {
  margin-top: -2px;
}
.mv__cta .icon {
  width: 35px;
  position: absolute;
  top: 0;
  left: 22px;
}
@media screen and (max-width: 767px) {
  .mv__cta .icon {
    left: 10px;
  }
}
.mv__cta .tel {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: 6px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .mv__cta .tel {
    font-size: 28px;
    text-align: right;
    line-height: 0.9;
    margin-bottom: 8px;
  }
}
.mv__cta .head {
  padding-left: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .mv__cta .head {
    padding-left: 38px;
  }
}
.mv__cta .small {
  font-size: 12px;
  text-align: right;
  letter-spacing: 1.5px;
  line-height: 1;
}
.mv__cta .btn {
  background: #E2DC00;
  color: #000;
  letter-spacing: 1.5px;
  padding: 7px;
  border-radius: 100px;
  text-align: center;
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .mv__cta .btn {
    margin-top: 9px;
  }
}

/*========================
intro
========================*/
.intro {
  padding: 48px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro {
    padding: 146px 0 48px;
  }
}
.intro h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
}
.intro p {
  font-weight: bold;
  line-height: 176%;
}
.intro p span {
  color: #E68825;
}

.intro__reason {
  margin: 16px auto;
}
@media screen and (max-width: 767px) {
  .intro__reason {
    margin: 25px auto;
  }
}
.intro__reason span {
  font-weight: 900;
  font-size: 35px;
  letter-spacing: 4.2px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, #E6D23D));
  background: linear-gradient(transparent 75%, #E6D23D 75%);
  background-position: 0 -2px;
}
@media screen and (max-width: 767px) {
  .intro__reason span {
    font-size: 30px;
    letter-spacing: 3px;
  }
}

.intro__img {
  max-width: 670px;
  margin: 20px auto;
}

/*========================
overview
========================*/
.overview {
  padding: 63px 0 27px;
  background: #F0EEE4;
}
.overview .deco {
  position: absolute;
  bottom: -68px;
  left: 49px;
  width: 89px;
  height: 91px;
}
@media screen and (max-width: 767px) {
  .overview .deco {
    left: 50px;
  }
}
.overview .inner {
  max-width: 1053px;
}

.overview__flex {
  position: relative;
  gap: 53px;
}
@media screen and (max-width: 767px) {
  .overview__flex {
    gap: 37px;
  }
}
.overview__flex .left {
  width: 155px;
  top: 110px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .overview__flex .left {
    padding-bottom: 0px;
  }
}
.overview__flex .left .en {
  top: 41px;
  font-size: 15px;
}
.overview__flex .left .box {
  background: white;
  border-radius: 8px;
  padding: 36px 23px 65px 21px;
  margin-left: 36px;
  line-height: 1.5;
  letter-spacing: 3px;
  text-align: end;
  margin-top: 19px;
}
.overview__flex .left .box::before {
  content: "";
  position: absolute;
  right: 29px;
  top: -34px;
  width: 100%;
  background: url(../images/lp/overview-left1.png) no-repeat center center/contain;
  width: 52px;
  height: 59px;
}
@media screen and (max-width: 767px) {
  .overview__flex .left .box::before {
    right: inherit;
    left: 20px;
    top: -45px;
  }
}
.overview__flex .left .box::after {
  content: "";
  position: absolute;
  background: url(../images/lp/overview-left2.png) no-repeat center center/contain;
  width: 171px;
  height: 151px;
  left: -10px;
  bottom: -77px;
}
@media screen and (max-width: 767px) {
  .overview__flex .left .box::after {
    width: 93px;
    left: inherit;
    right: -12px;
    bottom: -39px;
  }
}
.overview__flex .right {
  width: calc(100% - 155px - 53px);
  background: white;
  padding: 34px 45px 37px 25px;
  border-radius: 20px;
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .overview__flex .right {
    padding: 46px 20px 37px;
  }
}
.overview__flex .right h2 {
  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: 8px;
}
.overview__flex .right h2 .important {
  font-size: 29px;
  font-weight: bold;
  background: #E67B00;
  color: white;
  border-radius: 6px;
  padding: 3px 16px 4px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .overview__flex .right h2 .important {
    font-size: 22px;
    padding: 9px 5px 7px 4px;
    letter-spacing: 5px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
.overview__flex .right h2 .text {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2.88px;
}
@media screen and (max-width: 767px) {
  .overview__flex .right h2 .text {
    font-size: 23px;
    letter-spacing: 0px;
    line-height: 1.3;
  }
}
.overview__flex .right h2 .dots {
  background-image: radial-gradient(circle at center, #E67B00 25%, transparent 25%);
  /* 点の色とサイズ調整 */
  background-position: top left;
  /* 点の位置 */
  background-repeat: repeat-x;
  /* 横方向に繰り返し */
  background-size: 1.05em 0.3em;
  /* 点の間隔とサイズ調整 */
  padding-top: 0.3em;
  /* 縦方向の位置調整 */
}
@media screen and (max-width: 767px) {
  .overview__flex .right h2 .dots {
    background-size: 1em 0.3em;
    padding-top: 0.4em;
  }
}
.overview__flex .right .top-text {
  font-size: 17px;
  text-align: center;
  font-weight: 500;
  line-height: 176%;
  margin-top: 16px;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: #C9B835;
  text-decoration-thickness: 1px;
}
.overview__flex .right .items {
  margin-top: 49px;
}
.overview__flex .right .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .overview__flex .right .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
.overview__flex .right .item:not(:first-child) {
  margin-top: 72px;
}
.overview__flex .right .img {
  width: 263px;
}
@media screen and (max-width: 767px) {
  .overview__flex .right .img {
    width: 100%;
  }
}
.overview__flex .right .img img {
  border-radius: 20px;
}
.overview__flex .right .content {
  width: calc(100% - 263px - 24px);
  margin-top: -8px;
}
@media screen and (max-width: 767px) {
  .overview__flex .right .content {
    width: 100%;
  }
}
.overview__flex .right .content h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .overview__flex .right .content h3 {
    line-height: 1.3;
    margin-bottom: 16px;
  }
}
.overview__flex .right .content h3 span {
  color: #1F3975;
}
.overview__flex .right .content p {
  letter-spacing: 0.25px;
  line-height: 1.67;
}
.overview__flex .right .content p span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFE83D));
  background: linear-gradient(transparent 60%, #FFE83D 60%);
  font-weight: bold;
}
.overview__flex .right .quote {
  background: #F0F0F0;
  margin-top: 10px;
  padding: 6px 15px;
  text-align: right;
  margin-left: 14px;
}
.overview__flex .right .quote a {
  font-size: 12px;
  display: inline-block;
}
.overview__flex .right .quote a:not(:last-child) {
  margin-bottom: 10px;
}

/*========================
risk
========================*/
.risk {
  padding: 67px 0 51px;
}
.risk .inner {
  max-width: 1000px;
}

.risk__flex {
  gap: 71px;
}
.risk__flex .left {
  width: 105px;
  padding-right: 30px;
  top: 118px;
  padding-bottom: 104px;
}
@media screen and (max-width: 767px) {
  .risk__flex .left {
    padding-bottom: 0px;
    padding-right: 0;
  }
}
.risk__flex .left .en {
  top: 33px;
}
.risk__flex .left .box {
  background: #F0EEE4;
  border-radius: 8px;
  padding: 36px 19px 56px 0px;
  width: 100%;
}
.risk__flex .left .box::before {
  content: "";
  position: absolute;
  right: 13px;
  top: -32px;
  width: 100%;
  background: url(../images/lp/risk-left1.png) no-repeat center center/contain;
  width: 49px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .risk__flex .left .box::before {
    right: inherit;
    left: 20px;
    top: -39px;
  }
}
.risk__flex .left .box::after {
  content: "";
  position: absolute;
  background: url(../images/lp/risk-left2.png) no-repeat center center/contain;
  width: 151px;
  height: 133px;
  left: -13px;
  bottom: -93px;
}
@media screen and (max-width: 767px) {
  .risk__flex .left .box::after {
    width: 111px;
    height: 103px;
    left: inherit;
    right: -15px;
    bottom: -77px;
  }
}
.risk__flex .right {
  width: calc(100% - 105px - 71px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px 31px;
  margin-top: 20px;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .risk__flex .right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
  }
}
.risk__flex .right .item {
  width: calc(50% - 15.5px);
}
@media screen and (max-width: 767px) {
  .risk__flex .right .item {
    width: 100%;
  }
}
.risk__flex .right .item .img {
  margin: 0 43px;
  position: relative;
}
.risk__flex .right .item .img::before {
  content: "";
  position: absolute;
  background: url(../images/lp/risk-icon.svg) no-repeat center center/contain;
  width: 52.24px;
  height: 52.24px;
  top: -26px;
  right: -14px;
}
.risk__flex .right .item .img img {
  border-radius: 20px;
}
.risk__flex .right .item .tag {
  margin: 14px auto 11px;
  background: #E84110;
  color: white;
  font-size: 20px;
  text-align: center;
  display: block;
  max-width: 172px;
  border-radius: 100px;
  padding-bottom: 2px;
}
.risk__flex .right .item h3 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .risk__flex .right .item h3 {
    font-size: 28px;
  }
}
.risk__flex .right .item p {
  background: #FFFEF4;
  padding: 18px 17px;
  line-height: 176%;
  min-height: 373px;
}

/*========================
limit
========================*/
.limit {
  background: #F0EEE4;
  padding-top: 51px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .limit {
    padding-bottom: 40px;
  }
}

.limit__flex {
  gap: 127px;
}
@media screen and (max-width: 767px) {
  .limit__flex {
    gap: 64px;
  }
}
.limit__flex .left {
  width: 110px;
  margin-top: 22px;
  top: 140px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .limit__flex .left {
    padding-bottom: 0;
  }
}
.limit__flex .left .en {
  top: 42px;
  font-size: 15px;
}
.limit__flex .left .box {
  background: white;
  border-radius: 8px;
  padding: 48px 18px 88px 18px;
  margin-left: 36px;
  line-height: 1.5;
  letter-spacing: 3px;
}
.limit__flex .left .box::before {
  content: "";
  position: absolute;
  right: 16px;
  top: -58px;
  background: url(../images/lp/limit-left1.png) no-repeat center center/contain;
  width: 42px;
  height: 82px;
}
@media screen and (max-width: 767px) {
  .limit__flex .left .box::before {
    right: inherit;
    left: 20px;
    top: -59px;
    width: 35px;
    height: 72px;
  }
}
.limit__flex .left .box::after {
  content: "";
  position: absolute;
  background: url(../images/lp/limit-left2.png) no-repeat center center/contain;
  width: 176px;
  height: 147px;
  left: -47px;
  bottom: -45px;
}
@media screen and (max-width: 767px) {
  .limit__flex .left .box::after {
    left: inherit;
    right: 0px;
    bottom: -67px;
    width: 126px;
    height: 127px;
  }
}
.limit__flex .right {
  width: calc(100% - 110px - 127px);
}
.limit__flex .right .limit__img {
  max-width: 585px;
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .limit__img {
    margin: 0 auto;
    max-width: 345px;
  }
}
.limit__flex .right .wrap1 h3 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .wrap1 h3 {
    font-size: 28px;
  }
}
.limit__flex .right .wrap1 p {
  max-width: 648px;
  margin: 0 auto;
  line-height: 1.7;
}
.limit__flex .right .box {
  background: white;
  border-radius: 20px;
  position: relative;
  margin: 0 auto;
  max-width: 702px;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
          box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
}
.limit__flex .right .box::before, .limit__flex .right .box::after {
  content: "";
  position: absolute;
  background: url(../images/lp/hole.png) no-repeat center center/contain;
  width: 13px;
  height: 13px;
  top: 22px;
}
.limit__flex .right .box::before {
  left: 23px;
}
.limit__flex .right .box::after {
  right: 23px;
}
.limit__flex .right .red-line {
  display: inline-block;
  text-align: center;
  font-size: 30px;
  border-top: 5px solid #E84110;
  border-bottom: 5px solid #E84110;
  font-weight: bold;
  line-height: 1.3;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .red-line {
    font-size: 28px;
  }
}
.limit__flex .right .red-line span {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .red-line span {
    font-size: 15px;
  }
}
.limit__flex .right .box1 {
  padding: 21px 30px 101px;
  margin: 52px auto 46px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box1 {
    padding: 50px 30px 41px;
  }
}
.limit__flex .right .box1 .triangle {
  width: 0;
  height: 0;
  border-bottom: 35px solid white;
  border-right: 23px solid transparent;
  border-left: 23px solid transparent;
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.limit__flex .right .box1 p {
  margin-top: 19px;
  line-height: 1.76;
  font-size: 15px;
}
.limit__flex .right .wrap2 p {
  max-width: 596px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.76;
}
.limit__flex .right .wrap2 .quote {
  margin: 0 auto;
  margin-top: 23px;
  background: #D9D9D9;
  padding: 10px 17px;
  line-height: 176%;
  text-align: right;
  max-width: 583px;
  font-size: 15px;
}
.limit__flex .right .wrap2 .quote a {
  display: inline-block;
  font-size: 12px;
}
.limit__flex .right .wrap2 .quote a:not(:last-child) {
  margin-bottom: 10px;
}
.limit__flex .right .limit__img2 {
  margin: -20px auto 26px;
  margin-left: 60px;
  max-width: 802px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .limit__img2 {
    margin: 20px auto 26px;
  }
}
.limit__flex .right .box2 {
  padding: 24px 24px;
  margin-top: 54px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 {
    margin-top: 72px;
    padding: 32px 20px;
  }
}
.limit__flex .right .box2 .deco {
  width: 117px;
  position: absolute;
  right: -34px;
  top: 146px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .deco {
    right: 0;
    top: -70px;
    width: 100px;
  }
}
.limit__flex .right .box2 .urgency-check-container h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.limit__flex .right .box2 .urgency-check-container h2::before, .limit__flex .right .box2 .urgency-check-container h2::after {
  content: "";
  position: absolute;
  background: url(../images/lp/risk-icon.svg) no-repeat center center/contain;
  width: 39px;
  height: 39px;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .urgency-check-container h2::before, .limit__flex .right .box2 .urgency-check-container h2::after {
    top: 6px;
  }
}
.limit__flex .right .box2 .urgency-check-container h2::before {
  left: -76px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .urgency-check-container h2::before {
    left: -50px;
  }
}
.limit__flex .right .box2 .urgency-check-container h2::after {
  right: -76px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .urgency-check-container h2::after {
    right: -50px;
  }
}
.limit__flex .right .box2 .top-question {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
.limit__flex .right .box2 .lead-text {
  max-width: 392px;
  padding-left: 40px;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .lead-text {
    padding: 0;
  }
}
.limit__flex .right .box2 .checklist {
  margin: 20px 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.limit__flex .right .box2 .checklist.hiding {
  opacity: 0;
}
.limit__flex .right .box2 .check-item {
  display: block;
  margin-bottom: 8px;
  padding: 8px;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-indent: -1.5em;
  padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .check-item {
    padding: 8px 0;
    padding-left: 1.5em;
  }
}
.limit__flex .right .box2 .check-item:hover {
  border-color: #007bff;
  -webkit-box-shadow: 0 2px 5px rgba(0, 123, 255, 0.1);
          box-shadow: 0 2px 5px rgba(0, 123, 255, 0.1);
}
.limit__flex .right .box2 .check-item span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .check-item span {
    font-size: 15px;
  }
}
.limit__flex .right .box2 .urgency-checkbox {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  cursor: pointer;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .limit__flex .right .box2 .urgency-checkbox {
    width: 18px;
    height: 18px;
  }
}
.limit__flex .right .box2 .check-button {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 13px 30px 15px;
  background: #E84110;
  color: white;
  border: none;
  text-align: center;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.limit__flex .right .box2 .check-button:hover {
  background: #0056b3;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
          box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}
.limit__flex .right .box2 .check-button.hide {
  display: none;
}
.limit__flex .right .box2 .result-area {
  text-align: center;
  padding: 23px;
  border-radius: 10px;
  margin-top: 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .result-area {
    padding: 23px 21px;
  }
}
.limit__flex .right .box2 .result-area.show {
  display: block;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
.limit__flex .right .box2 .result-area h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.limit__flex .right .box2 .result-area p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.limit__flex .right .box2 .result-area.result-high {
  background: #fee;
  border: 2px solid #f88;
}
.limit__flex .right .box2 .result-area.result-high h4 {
  color: #d00;
}
.limit__flex .right .box2 .result-area.result-medium {
  background: #fff8e1;
  border: 2px solid #ffc107;
}
.limit__flex .right .box2 .result-area.result-medium h4 {
  color: #f57c00;
}
.limit__flex .right .box2 .result-area.result-low {
  background: #e8f5e9;
  border: 2px solid #4caf50;
}
.limit__flex .right .box2 .result-area.result-low h4 {
  color: #2e7d32;
}
.limit__flex .right .box2 .cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px 15px;
  background: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .cta-button {
    padding: 12px 21px 15px;
  }
}
.limit__flex .right .box2 .cta-button.urgent {
  background: #ff3838;
  -webkit-animation: pulse 1.5s infinite;
          animation: pulse 1.5s infinite;
}
.limit__flex .right .box2 .cta-button.medium {
  background: #ff8c42;
}
.limit__flex .right .box2 .cta-button.low {
  background: #4caf50;
}
@media screen and (max-width: 767px) {
  .limit__flex .right .box2 .cta-button.low {
    padding: 12px 20px 15px;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
            box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 4px 25px rgba(255, 56, 56, 0.6);
            box-shadow: 0 4px 25px rgba(255, 56, 56, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
            box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
            box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 4px 25px rgba(255, 56, 56, 0.6);
            box-shadow: 0 4px 25px rgba(255, 56, 56, 0.6);
  }
  100% {
    -webkit-box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
            box-shadow: 0 4px 15px rgba(255, 56, 56, 0.4);
  }
}

/*========================
merit
========================*/
.merit {
  padding-top: 13vw;
  padding-bottom: 50px;
  position: relative;
}
.merit .inner {
  max-width: 940px;
}
.merit .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.merit h2 {
  position: relative;
  padding-left: 110px;
  padding-right: 109px;
  display: inline-block;
  margin-top: 105px;
  text-align: left;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .merit h2 {
    padding-left: 0;
    padding-right: 0;
    margin-top: 50px;
  }
}
.merit h2::before {
  content: "";
  position: absolute;
  background: url(../images/lp/merit-h2.svg) no-repeat center center/contain;
  width: 80px;
  height: 80px;
  left: 0;
  top: 4px;
}
@media screen and (max-width: 767px) {
  .merit h2::before {
    top: -46px;
    z-index: -1;
    left: -17px;
  }
}
.merit h2 span {
  display: block;
}
.merit h2 .jp {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .merit h2 .jp {
    line-height: 1.2;
    font-size: 32px;
  }
}
.merit h2 .en {
  font-size: 15px;
  letter-spacing: 0.03em;
  margin-left: 5px;
}

.merit__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
  margin-left: calc(50% - 50vw);
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 70px;
    gap: 36px;
  }
}
.merit__flex .deco {
  width: 208px;
  position: absolute;
  top: -190px;
  right: -50px;
}
@media screen and (max-width: 767px) {
  .merit__flex .deco {
    right: 0;
    width: 122px;
    position: absolute;
    top: -99px;
  }
}
.merit__flex .img {
  width: 170.5426356589%;
}
@media screen and (max-width: 767px) {
  .merit__flex .img {
    width: 100%;
  }
}
.merit__flex .img img {
  border-radius: 0 20px 20px 0;
}
.merit__flex .content {
  max-width: 330px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit__flex .content {
    padding-left: 11px;
  }
}
.merit__flex .content::before {
  content: "";
  position: absolute;
  background: url(../images/lp/merit-content.svg) no-repeat center center/contain;
  width: 122px;
  height: 117px;
  bottom: 0;
  right: -40px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .merit__flex .content::before {
    right: 0;
    bottom: 40px;
  }
}
.merit__flex p {
  font-size: 22px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #7D7D7D;
  text-decoration-thickness: 1px;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .merit__flex p {
    font-size: 19px;
  }
}
.merit__flex p span {
  color: #1F3975;
  font-weight: 700;
}

.merit__items {
  margin-top: 95px;
}
.merit__items .item {
  margin: 0 auto;
  margin-top: 96px;
  max-width: 942px;
  position: relative;
}
.merit__items .item .deco {
  position: absolute;
  width: 120px;
  bottom: 6px;
  right: -32px;
}
@media screen and (max-width: 767px) {
  .merit__items .item .deco {
    right: -16px;
    bottom: -74px;
    z-index: 1;
  }
}
.merit__items .top {
  max-width: 640px;
  margin: 0 auto;
  background: #EAF6FB;
}
.merit__items .top .head {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: #1F3975;
  color: white;
  padding: 4px 20px 7px;
  border-radius: 12px 12px 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .merit__items .top .head {
    font-size: 28px;
    line-height: 1.3;
    padding: 8px 20px 11px;
  }
}
.merit__items .top .head .num {
  position: absolute;
  width: 68px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -56px;
}
.merit__items .top .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 22px;
  padding-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .merit__items .top .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 22px 20px 17px;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.merit__items .top .body.body1 .img {
  width: 94px;
  margin-left: 72px;
  margin-right: 73px;
  margin-top: 7px;
}
.merit__items .top .body.body1 p {
  margin-right: 112px;
  width: calc(100% - 94px - 72px - 73px - 112px);
}
@media screen and (max-width: 767px) {
  .merit__items .top .body.body1 p {
    margin-right: 0;
    width: 100%;
  }
}
.merit__items .top .body.body2 .img {
  width: 106px;
  margin-left: 71px;
  margin-right: 61px;
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .merit__items .top .body.body2 .img {
    margin-left: 0;
    margin-right: 0;
    margin-top: 8px;
  }
}
.merit__items .top .body.body2 p {
  margin-right: 62px;
  width: calc(100% - 106px - 71px - 61px - 62px);
}
@media screen and (max-width: 767px) {
  .merit__items .top .body.body2 p {
    margin-right: 0;
    width: 100%;
  }
}
.merit__items .top .body p {
  line-height: 1.76;
}
.merit__items .top .body p span {
  font-weight: bold;
}
.merit__items .bottom {
  border-radius: 12px;
  background: #EAF6FB;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .merit__items .bottom {
    border-radius: 0 0 12px 12px;
    padding: 0 20px 20px;
  }
}
.merit__items .bottom .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .merit__items .bottom .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.merit__items .bottom .wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  text-align: center;
  padding: 27px 23px 10px;
}
@media screen and (max-width: 767px) {
  .merit__items .bottom .wrap {
    padding: 27px 0px;
  }
}
.merit__items .bottom .wrap:nth-child(1)::after {
  content: "";
  background: repeating-linear-gradient(to bottom, #6F80B3 0, #6F80B3 3px, transparent 3px, transparent 6px);
  width: 1px;
  height: 80%;
  right: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .merit__items .bottom .wrap:nth-child(1)::after {
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(90deg, #6F80B3 0, #6F80B3 3px, transparent 3px, transparent 6px);
    top: inherit;
    bottom: 0;
    left: 0;
    -webkit-transform: inherit;
            transform: inherit;
  }
}
.merit__items .bottom .wrap h4 {
  background: #263971;
  color: white;
  text-align: center;
  display: inline-block;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  padding: 4px 23px 7px;
  line-height: 1;
}
.merit__items .bottom .wrap .big {
  margin: 14px 0 25px;
  font-size: 20px;
  font-weight: bold;
}
.merit__items .bottom .wrap .img {
  display: inline-block;
}
.merit__items .bottom .wrap .img1 {
  max-width: 168px;
  margin-bottom: 17px;
}
.merit__items .bottom .wrap .img2 {
  max-width: 333px;
  margin-top: -14px;
  margin-bottom: 36px;
}
.merit__items .bottom .wrap .menjo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  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: 8px;
}
.merit__items .bottom .wrap .menjo .red {
  background: #E84110;
  color: #EAF6FB;
  border-radius: 6px;
  line-height: 1;
  padding: 3px 4px 7px;
}
.merit__items .bottom .wrap p {
  text-align: left;
  display: inline-block;
  max-width: 325px;
  line-height: 1.76;
}
@media screen and (max-width: 767px) {
  .merit__items .bottom .wrap p {
    max-width: none;
  }
}
.merit__items .bottom .wrap .line {
  text-decoration: underline;
  text-underline-offset: 9px;
  text-decoration-thickness: 1px;
  display: inline-block;
  margin-bottom: 5px;
}
.merit__items .bottom .wrap .strong {
  font-weight: bold;
}
.merit__items .bottom .wrap .quote {
  background: #D9D9D9;
  text-align: right;
  font-size: 14px;
  padding: 9px 13px;
  display: inline-block;
  margin-top: 8px;
}
.merit__items .bottom .wrap .quote a {
  font-size: 12px;
}
.merit__items .bottom .flex2 {
  gap: 12px;
  max-width: 830px;
  margin: 0 auto;
  padding-top: 43px;
  padding-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .merit__items .bottom .flex2 {
    gap: 32px;
    padding-top: 32px;
  }
}
.merit__items .bottom .flex2 .flex2-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.merit__items .bottom .flex2 h4 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.merit__items .bottom .flex2 .img {
  margin: 10px 23px 19px;
}
@media screen and (max-width: 767px) {
  .merit__items .bottom .flex2 .img {
    margin: 10px 0 19px;
  }
}
.merit__items .bottom .flex2 p {
  margin: 0 29px;
  line-height: 1.76;
}
@media screen and (max-width: 767px) {
  .merit__items .bottom .flex2 p {
    margin: 0;
  }
}
.merit__items .notice {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
  background: #E84110;
  color: white;
  max-width: 733px;
  margin: 0 auto;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .merit__items .notice {
    font-size: 18px;
    padding: 10px 14px;
    text-align: left;
  }
}

/*========================
problem
========================*/
.problem {
  padding: 57px 0 60px;
  position: relative;
  background: #F0EEE4;
}
@media screen and (max-width: 767px) {
  .problem {
    padding: 47px 0 40px;
  }
}
.problem .inner {
  max-width: 994px;
}
.problem .img {
  padding-left: 70px;
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .problem .img {
    padding-left: 0;
    margin-top: 20px;
  }
}
.problem h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #263971;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .problem h2 {
    font-size: 21px;
  }
}
.problem h2 .line {
  color: #595757;
  border-bottom: 4px solid #263971;
}
.problem h2 .line span {
  font-size: 40px;
  color: #263971;
}
@media screen and (max-width: 767px) {
  .problem h2 .line span {
    font-size: 30px;
  }
}

/*========================
reason
========================*/
.reason {
  padding: 57px 0 72px;
  position: relative;
}
.reason .inner {
  max-width: 1000px;
}
.reason h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .reason h2 {
    font-size: 32px;
  }
}
.reason h2 .text {
  letter-spacing: 0.07em;
  position: relative;
  padding: 0 117px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .reason h2 .text {
    padding: 0 47px;
    line-height: 1.3;
  }
}
.reason h2 .text::before {
  content: "";
  position: absolute;
  background: url(../images/lp/reason-h2-1.svg) no-repeat center center/contain;
  width: 80px;
  height: 80px;
  left: 0;
  top: -12px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .reason h2 .text::before {
    left: -7px;
  }
}
.reason h2 .text::after {
  content: "";
  position: absolute;
  background: url(../images/lp/reason-h2-2.svg) no-repeat center center/contain;
  width: 82px;
  height: 82px;
  right: 0;
  top: -12px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .reason h2 .text::after {
    right: -7px;
  }
}
.reason h2 .strong {
  color: #1F3975;
  font-weight: bold;
}

.reason__items {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 37px;
  gap: 39px;
}
@media screen and (max-width: 767px) {
  .reason__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reason__items .item {
  background: #E7EFF4;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  max-width: 246px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 12px;
  position: relative;
  padding: 23px 20px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .reason__items .item {
    max-width: none;
    font-size: 18px;
  }
}
.reason__items .num {
  position: absolute;
  font-size: 31px;
  font-weight: bold;
  color: #263971;
  font-family: "Inter", sans-serif;
  top: 14px;
  padding-left: 23px;
  left: 0;
  line-height: 1;
}
.reason__items .num::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 19px;
  background: #263971;
  left: 0;
  top: 15px;
}
.reason__items .img {
  max-width: 121px;
  margin: 0 auto 12px;
}

.reason__flex {
  margin-top: 74px;
  gap: 81px;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .reason__flex {
    gap: 11px;
    margin-right: 0;
  }
}
.reason__flex .left {
  width: 107px;
  margin-top: 37px;
  top: 140px;
}
.reason__flex .left .en {
  top: 42px;
  font-size: 15px;
}
.reason__flex .left .box {
  background: #F0EEE4;
  border-radius: 8px;
  padding: 48px 18px 31px 18px;
  margin-left: 36px;
  line-height: 1.5;
  letter-spacing: 3px;
}
.reason__flex .left .box::before {
  content: "";
  position: absolute;
  left: -17px;
  top: -63px;
  background: url(../images/lp/reason-left1.png) no-repeat center center/contain;
  width: 112px;
  height: 106px;
}
@media screen and (max-width: 767px) {
  .reason__flex .left .box::before {
    top: -79px;
  }
}
.reason__flex .right {
  width: calc(100% - 107px - 81px);
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .reason__flex .right {
    width: 100%;
  }
}
.reason__flex .right .item {
  background: #E7EFF4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .reason__flex .right .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.reason__flex .right .item:not(:first-child) {
  margin-top: 41px;
}
.reason__flex .right .item:last-child p {
  max-width: 495px;
  margin-top: 19px;
}
.reason__flex .right .item:last-child img {
  -o-object-position: 0 58%;
     object-position: 0 58%;
}
.reason__flex .right .img {
  max-width: 260px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .reason__flex .right .img {
    max-width: none;
    height: 250px;
  }
}
.reason__flex .right .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .reason__flex .right .img img {
    -o-object-position: top;
       object-position: top;
  }
}
.reason__flex .right .content {
  padding: 28px 20px 20px 23px;
  width: calc(100% - 260px);
}
@media screen and (max-width: 767px) {
  .reason__flex .right .content {
    width: 100%;
  }
}
.reason__flex .right h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  font-size: 25px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason__flex .right h3 {
    font-size: 22px;
    padding-bottom: 14px;
    line-height: 1.3;
  }
}
.reason__flex .right h3::before {
  content: "";
  position: absolute;
  background: #263971;
  width: 581px;
  height: 1px;
  bottom: 3px;
  left: -57px;
}
.reason__flex .right h3 span {
  color: #263971;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: bold;
}
.reason__flex .right p {
  max-width: 448px;
  line-height: 2.1;
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .reason__flex .right p {
    margin-top: 16px;
    line-height: 1.7;
  }
}
.reason__flex .right p span {
  font-weight: 700;
}

/*========================
flow
========================*/
.flow {
  padding-bottom: 50px;
}
.flow .inner {
  max-width: 976px;
}
.flow h2 .jp {
  display: inline-block;
  background: #F0EEE4;
  font-size: 26px;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 12px;
  width: 329px;
  letter-spacing: 0.07em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow h2 .jp {
    width: 100%;
  }
}
.flow h2 .jp::before {
  content: "";
  position: absolute;
  background: url(../images/lp/flow-h2-1.png) no-repeat center center/contain;
  width: 39px;
  height: 51px;
  left: -28px;
  top: 6px;
}
@media screen and (max-width: 767px) {
  .flow h2 .jp::before {
    display: none;
  }
}
.flow h2 .jp::after {
  content: "";
  position: absolute;
  background: url(../images/lp/flow-h2-2.png) no-repeat center center/contain;
  width: 189px;
  height: 143px;
  right: -85px;
  top: -36px;
}
@media screen and (max-width: 767px) {
  .flow h2 .jp::after {
    right: 10px;
    width: 129px;
    height: 103px;
    top: 37px;
  }
}
.flow h2 .en {
  display: block;
  margin-left: 30px;
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 0.07em;
}

.flow__items {
  max-width: 802px;
  margin: 0 auto;
  margin-top: 56px;
}
.flow__items .item {
  padding-bottom: 28px;
  position: relative;
}
.flow__items .item:not(:last-child)::before {
  content: "";
  width: 3px;
  height: 100%;
  background: #263971;
  position: absolute;
  left: 24px;
  top: 0;
  z-index: -1;
}
.flow__items .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 42px;
}
@media screen and (max-width: 767px) {
  .flow__items .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.flow__items .mv__cta {
  position: relative;
  bottom: inherit;
  left: inherit;
  margin-left: 100px;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .flow__items .mv__cta {
    margin: 0;
    -webkit-transform: none;
            transform: none;
    padding-left: 60px;
    max-width: none;
    margin-top: 32px;
    width: 100%;
  }
}
.flow__items .mv__cta .box {
  background: #1F4E75;
  max-width: 324px;
  width: 100%;
}
.flow__items .mv__cta .btn {
  max-width: 242px;
  margin: 16px auto 0;
}
@media screen and (max-width: 767px) {
  .flow__items .mv__cta .btn {
    letter-spacing: normal;
  }
}
.flow__items .img {
  width: 280px;
}
@media screen and (max-width: 767px) {
  .flow__items .img {
    width: 100%;
    padding-left: 60px;
  }
}
.flow__items .img img {
  border-radius: 14px;
}
.flow__items .content {
  width: calc(100% - 280px - 42px);
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .flow__items .content {
    width: 100%;
    padding-left: 60px;
  }
}
.flow__items .content .num {
  position: absolute;
  width: 49px;
  height: 49px;
  background: #263971;
  border-radius: 50%;
  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;
  color: white;
  font-size: 29px;
  font-family: "Inter", sans-serif;
  left: 0;
  font-weight: bold;
  padding-top: 0px;
  padding-right: 2px;
}
.flow__items .content h3 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #263971;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .flow__items .content h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.flow__items .content p {
  line-height: 1.78;
}
.flow__items .tel {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .flow__items .tel {
    font-size: 26px;
    letter-spacing: 0.05em;
  }
}

.flow__btn {
  text-align: center;
}
.flow__btn a {
  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;
  background: #E2DC00;
  border-radius: 100px;
  font-weight: bold;
  padding: 13px 22px 14px;
  gap: 3px;
  letter-spacing: 0.03em;
  -webkit-box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .flow__btn a {
    gap: 0;
    padding: 13px 0 14px;
    width: 100%;
  }
}
.flow__btn a span {
  letter-spacing: 0.1em;
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .flow__btn a span {
    letter-spacing: 0;
    font-size: 24px;
  }
}

/*========================
area
========================*/
.area {
  padding: 46px 0 34px;
  margin-bottom: 60px;
  background: url(../images/lp/area-bg.jpg) no-repeat center center/cover;
}
.area .inner {
  max-width: 966px;
}
.area h2 {
  text-align: center;
}
.area h2 span {
  display: inline-block;
  background: #F0EEE4;
  border-radius: 12px;
  font-size: 26px;
  font-weight: 600;
  padding: 13px 53px 13px 58px;
  letter-spacing: 0.08em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .area h2 span {
    font-size: 24px;
    letter-spacing: normal;
    line-height: 1.3;
    padding: 13px 29px 13px 57px;
  }
}
.area h2 span::before {
  content: "";
  position: absolute;
  background: url(../images/lp/area-icon.png) no-repeat center center/contain;
  width: 51px;
  height: 69px;
  top: -2px;
  left: -7px;
}

.area__map {
  padding: 14px 23px;
  background: rgba(255, 255, 255, 0.88);
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .area__map {
    padding: 8px;
  }
}

/*========================
faq
========================*/
.faq {
  padding: 75px 0 48px;
  background: #F1F1F1;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0 48px;
  }
}
.faq h2 {
  text-align: center;
}
.faq h2 span {
  display: inline-block;
  background: white;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 4.4px;
  padding: 6px 10px 8px 53px;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq h2 span {
    font-size: 26px;
    text-align: left;
    letter-spacing: 2px;
    padding: 6px 10px 8px 40px;
  }
}
.faq h2 span::before {
  content: "";
  position: absolute;
  background: url(../images/lp/faq-h2.svg) no-repeat center center/contain;
  width: 82.057px;
  height: 79.43px;
  left: -52px;
  top: -7px;
}
@media screen and (max-width: 767px) {
  .faq h2 span::before {
    width: 72.057px;
    height: 69.43px;
    left: -22px;
    top: -47px;
  }
}

.inner {
  max-width: 886px;
}

.faq__items {
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .faq__items {
    margin-top: 40px;
  }
}
.faq__items .item {
  background: white;
  margin-top: 23px;
}
.faq__items .item .head {
  padding: 16px 39px 10px 91px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__items .item .head {
    padding: 16px 53px 10px 51px;
  }
}
.faq__items .item .head h3 {
  border-bottom: 1px solid #ADADAD;
  padding-bottom: 6px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq__items .item .head h3 {
    font-size: 17px;
  }
}
.faq__items .item .head h3::before {
  content: "";
  position: absolute;
  background: url(../images/lp/q.svg) no-repeat center center/contain;
  width: 32px;
  height: 32px;
  left: -66px;
  top: -3px;
}
@media screen and (max-width: 767px) {
  .faq__items .item .head h3::before {
    left: -42px;
  }
}
.faq__items .item .head .plus {
  position: absolute;
  right: 23px;
  width: 23px;
  height: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .faq__items .item .head .plus {
    right: 13px;
    width: 19px;
    height: 19px;
  }
}
.faq__items .item .head .plus span {
  background: #595757;
  width: 23px;
  height: 5px;
  display: inline-block;
  top: 9px;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .faq__items .item .head .plus span {
    width: 19px;
    height: 3px;
  }
}
.faq__items .item .head .plus span:nth-child(2) {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__items .item.open .plus span:nth-child(2) {
  opacity: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq__items .item .body {
  padding: 0 56px 14px 91px;
  display: none;
}
@media screen and (max-width: 767px) {
  .faq__items .item .body {
    padding: 0 20px 14px 51px;
  }
}
.faq__items .item .body p {
  line-height: 1.67;
  position: relative;
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .faq__items .item .body p {
    font-size: 16px;
  }
}
.faq__items .item .body p::before {
  content: "";
  position: absolute;
  background: url(../images/lp/a.svg) no-repeat center center/contain;
  width: 32px;
  height: 32px;
  left: -66px;
  top: 1px;
}
@media screen and (max-width: 767px) {
  .faq__items .item .body p::before {
    left: -42px;
  }
}

/*========================
message
========================*/
.message {
  padding: 60px 0 0;
}
.message h2 {
  max-width: 330px;
  margin: 0 auto;
}
.message h2 .jp {
  display: inline-block;
  background: #F0EEE4;
  font-size: 40px;
  font-weight: 600;
  padding: 10px 35px 7px;
  border-radius: 12px;
  width: 329px;
  letter-spacing: 0.07em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message h2 .jp {
    width: 100%;
    font-size: 26px;
    padding: 6px 40px 7px;
  }
}
.message h2 .jp::before {
  content: "";
  position: absolute;
  background: url(../images/lp/message-h2.svg) no-repeat center center/contain;
  width: 69.951px;
  height: 70.734px;
  left: -50px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .message h2 .jp::before {
    width: 59.951px;
    height: 60.734px;
    left: -19px;
    top: -30px;
  }
}
.message .en {
  display: block;
  margin-left: 42px;
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 0.07em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .message .en {
    margin-top: 8px;
  }
}

.message__img {
  margin: 0 auto;
  margin-top: 58px;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .message__img {
    margin-top: 28px;
  }
}

.message__box {
  background: url(../images/lp/message-bg.jpg) no-repeat center center/cover;
  -webkit-box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
  padding: 40px 30px 53px;
  max-width: 808px;
  margin: 0 auto;
  position: relative;
  margin-top: -87px;
}
@media screen and (max-width: 767px) {
  .message__box {
    padding: 30px 20px 43px;
    margin-top: -43px;
  }
}
.message__box .deco {
  position: absolute;
  width: 236px;
  right: -83px;
  bottom: -77px;
}
@media screen and (max-width: 767px) {
  .message__box .deco {
    right: 0;
    width: 156px;
    bottom: -87px;
  }
}
.message__box h3 {
  font-size: 25px;
  font-weight: 700;
  margin: 0 auto;
  margin-bottom: 39px;
  max-width: 600px;
}
@media screen and (max-width: 767px) {
  .message__box h3 {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.message__box p {
  max-width: 590px;
  margin: 0 auto;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .message__box p {
    line-height: 1.8;
  }
}
.message__box .btn {
  display: inline-block;
  background: #263971;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 22px 18px;
  border-radius: 100px;
  -webkit-box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .message__box .btn {
    width: 100%;
  }
}

/*========================
about
========================*/
.about {
  padding-top: 119px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 70px;
  }
}
.about .inner {
  max-width: 500px;
}
.about h2 {
  max-width: 160px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about h2 {
    max-width: none;
  }
}
.about h2 .jp {
  display: block;
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .about h2 .jp {
    font-size: 32px;
  }
}

.about__img {
  margin: 48px auto 57px;
}

.about__contents {
  max-width: 457px;
  margin: 0 auto;
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about__row:last-child .about__label {
  border-bottom: 3px solid #00397D;
}
.about__row:last-child .about__value {
  border-bottom: 1px solid #4F4C4C;
}

.about__label {
  text-align: center;
  width: 106px;
  font-size: 12px;
  font-weight: 600;
  border-top: 3px solid #00397D;
  padding: 5px 10px 4px;
  letter-spacing: 1em;
  padding-left: 1.6em;
}
.about__label.ls-e {
  letter-spacing: 1.6em;
  padding-left: 1.8em;
}
.about__label.ls-n {
  letter-spacing: 0.08em;
  padding-left: 0.8em;
}
.about__label.ls-n2 {
  padding-left: 1.2em;
  letter-spacing: 0.4em;
}

.about__value {
  width: calc(100% - 106px);
  border-top: 1px solid #4F4C4C;
  padding: 5px 13px;
  padding-right: 0;
  margin-top: 1px;
  font-size: 12px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .about__value {
    padding: 8px 13px;
  }
}
.about__value.ls-n {
  letter-spacing: 0.01em;
}

.about__contents {
  margin-top: 50px;
}

.about__valueMap {
  margin: 14px 0;
}
.about__valueMap iframe {
  width: 100%;
  height: 340px;
  border: none;
}

.about-btn {
  display: block;
  width: 100%;
  max-width: 187px;
  background: #FF6C23;
  color: white;
  font-size: 9.5px;
  font-weight: bold;
  padding: 5px 21px 5px 51px;
  margin-top: 3px;
  border-radius: 8px;
  letter-spacing: normal;
  position: relative;
}
.about-btn::before {
  content: "";
  position: absolute;
  background: url(../images/lp/mail.svg) no-repeat center center/contain;
  width: 17px;
  height: 11px;
  left: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about__kyokaBox {
  max-width: 580px;
  margin-left: auto;
}

.about__kyoka {
  margin-top: 26px;
  border-bottom: 1px solid #000;
}

.about__kyoka-item {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .about__kyoka-item {
    font-size: 16px;
  }
}

.about__kyoka-label {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  padding: 8px;
  width: 194px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__kyoka-label {
    width: 154px;
  }
}

.about__kyoka-number {
  padding: 8px 10px 8px 30px;
  width: calc(100% - 194px);
}
@media screen and (max-width: 767px) {
  .about__kyoka-number {
    width: calc(100% - 154px);
    padding: 8px 10px;
  }
}

/*========================
contact
========================*/
.contact {
  padding: 100px 0 80px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 80px 0 60px;
  }
}
.contact .inner {
  max-width: 850px;
}
.contact h2 {
  text-align: center;
}
.contact h2 span {
  font-size: 26px;
  font-weight: 600;
  display: inline-block;
  background: #F0EEE4;
  padding: 13px 40px 13px 42px;
  border-radius: 12px;
  position: relative;
  letter-spacing: 0.13em;
}
.contact h2 span::before {
  content: "";
  position: absolute;
  background: url(../images/lp/contact-h2-1.svg) no-repeat center center/contain;
  width: 57px;
  height: 42px;
  top: 13px;
  left: -31px;
}
.contact h2 span::after {
  content: "";
  position: absolute;
  background: url(../images/lp/contact-h2-2.svg) no-repeat center center/contain;
  width: 54px;
  height: 37px;
  top: 13px;
  right: -33px;
}

.contact__top,
.contact__bottom {
  background: #E7EFF4;
  border-radius: 20px;
  padding: 18px 31px;
}
@media screen and (max-width: 767px) {
  .contact__top,
  .contact__bottom {
    padding: 18px 16px;
  }
}
.contact__top h3,
.contact__bottom h3 {
  text-align: center;
}
.contact__top h3 span,
.contact__bottom h3 span {
  display: inline-block;
  background: white;
  border-radius: 12px;
  padding: 6px 30px 7px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact__top h3 span,
  .contact__bottom h3 span {
    font-size: 18px;
    padding: 6px 10px 7px;
  }
}

.contact__top {
  text-align: center;
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .contact__top {
    margin-top: 46px;
  }
}
.contact__top p {
  line-height: 1.67;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 20px 0 0;
}
@media screen and (max-width: 767px) {
  .contact__top p {
    font-size: 15px;
  }
}
.contact__top .tel {
  display: inline-block;
  font-size: 68px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-left: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__top .tel {
    font-size: 32px;
    letter-spacing: normal;
    padding-left: 38px;
  }
}
.contact__top .tel::before {
  content: "";
  position: absolute;
  background: url(../images/lp/tel.svg) no-repeat center center/contain;
  width: 59px;
  height: 59px;
  left: 0;
  top: 26px;
}
@media screen and (max-width: 767px) {
  .contact__top .tel::before {
    width: 32px;
    height: 32px;
    top: 10px;
  }
}

.contact__bottom {
  margin-top: 45px;
  padding-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .contact__bottom {
    padding-bottom: 35px;
  }
}

.contact__form {
  max-width: 684px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact__form .item {
    padding: 24px 0 !important;
  }
}
.contact__form .item:nth-child(1) {
  padding: 53px 24px 53px 0;
}
.contact__form .item:nth-child(2) {
  padding: 20px 24px 40px 0;
}
.contact__form .item:nth-child(2) .flex:not(:last-child) {
  margin-bottom: 30px;
}
.contact__form .item:nth-child(2) .flex:first-child {
  margin-bottom: 40px;
}
.contact__form .item:nth-child(3) {
  padding: 39px 24px 37px 0;
}
.contact__form .item:nth-child(3) textarea {
  height: 106px;
}
.contact__form .item:nth-child(3) .flex:first-child {
  margin-bottom: 40px;
}
.contact__form .item:nth-child(4) {
  padding: 30px 24px 30px 0;
}
.contact__form .item:nth-child(4) textarea {
  height: 266px;
}
.contact__form .item:not(:first-child) {
  border-top: 1px solid #BFBFBF;
}
.contact__form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .contact__form .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__form .flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.contact__form .head {
  width: 313px;
  padding-left: 73px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact__form .head {
    padding-bottom: 20px;
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .contact__form .head.lp-form-required {
    padding-left: 64px;
  }
}
.contact__form .head.lp-form-required span {
  position: relative;
  display: inline-block;
}
.contact__form .head.lp-form-required span::after {
  content: "必須";
  background: #05306C;
  color: white;
  left: -62px;
  position: absolute;
  font-weight: 500;
  border-radius: 8px;
  font-size: 13px;
  padding: 3px 10px 4px;
  letter-spacing: 0.05em;
}
.contact__form .body {
  width: calc(100% - 313px);
}
@media screen and (max-width: 767px) {
  .contact__form .body {
    width: 100%;
  }
}
.contact__form .wrap {
  margin-bottom: 6px;
}
.contact__form input[type=text],
.contact__form input[type=tel],
.contact__form input[type=email],
.contact__form textarea {
  width: 100%;
  background: white;
  padding: 4px 12px;
  border-radius: 4px;
}
.contact__form textarea {
  resize: vertical;
}
.contact__form .note {
  margin-left: 11px;
  margin-bottom: 6px;
  display: inline-block;
}
.contact__form .radio, .contact__form .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0;
}
.contact__form .radio:not(:last-child), .contact__form .wpcf7-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.contact__form .radio input[type=radio], .contact__form .wpcf7-list-item input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  cursor: pointer;
  margin-top: 0;
  margin-right: 6px;
  margin-bottom: 2px;
  display: inline-block;
  position: relative;
}
.contact__form .radio input[type=radio]:checked::after, .contact__form .wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background-color: #333;
}
.contact__form .radio input[type=radio]:focus, .contact__form .wpcf7-list-item input[type=radio]:focus {
  outline: none;
}
.contact__form .radio label, .contact__form .wpcf7-list-item label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.contact__scroll {
  background: white;
  overflow: auto;
  padding: 12px 10px 7px 25px;
  border-radius: 8px;
  margin: 0 24px 0 76px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .contact__scroll {
    margin: 0;
  }
}
.contact__scroll .content {
  overflow: auto;
  height: 224px;
  padding-top: 10px;
  padding-right: 31px;
  padding-bottom: 12px;
}
.contact__scroll .content .pl {
  padding-left: 13px;
}
.contact__scroll .content::-webkit-scrollbar {
  width: 8px;
  /* スクロールバーの太さ */
}
.contact__scroll .content::-webkit-scrollbar-track {
  background: #BFC0C0;
  /* トラック部分 */
  border-radius: 100px;
}
.contact__scroll .content::-webkit-scrollbar-thumb {
  background: #737475;
  border-radius: 100px;
  /* スクロールするバー本体 */
}
.contact__scroll h4 {
  font-weight: 600;
  margin-bottom: 22px;
  font-size: 16px;
}
.contact__scroll h5 {
  margin-top: 2em;
}
.contact__scroll ul {
  list-style: disc;
  padding-left: 1em;
}
.contact__scroll ul li::marker {
  font-size: 10px;
}
.contact__last {
  margin-top: 36px;
  text-align: center;
}
.contact__last .agreement {
  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: 7px;
  margin-bottom: 10px;
  font-size: 13px;
}
.contact__last .agreement input[type=checkbox] {
  margin-bottom: 4px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  background: white;
  cursor: pointer;
  margin-right: 3px;
  display: inline-block;
  position: relative;
}
.contact__last .agreement input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background-color: #333;
}
.contact__last .agreement label, .contact__last .agreement .wpcf7-list-item-label {
  font-size: 13px;
  color: #333;
  cursor: pointer;
  margin-bottom: 0;
}
.contact__last .contact__btn {
  outline: none;
  display: inline-block;
  background: #263971;
  color: white;
  font-size: 18px;
  -webkit-box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  padding: 20px 60px 21px;
  border-radius: 100px;
  margin-top: 32px;
  border: none;
}
.contact__last .contact__btn:hover {
  background: #263971;
  color: white;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .contact__last .contact__btn {
    padding: 18px 40px 21px;
  }
}

.wpcf7-spinner {
  display: none;
}

/*******
フッターウィジェット
*********/
.address {
  display: block;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 10px;
  margin-top: 30px;
  color: #231815;
}

.foot_tel {
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 20px;
  color: #004f8e !important;
}

.foot_tel:before {
  content: "TEL.";
  font-weight: 900;
  font-size: 12px;
  white-space: pre;
  color: #004f8e;
  letter-spacing: 1px;
  margin-right: 5px;
}

.foot_fax {
  display: block;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 20px;
  color: #231815 !important;
}

.foot_fax:before {
  content: "FAX.";
  font-weight: 900;
  font-size: 12px;
  white-space: pre;
  color: #004f8e;
  letter-spacing: 1px;
  margin-right: 5px;
}

.foot_time {
  display: block;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
  margin-top: 10px;
  color: #231815;
}

.foot_time:before {
  content: "営業時間";
  font-weight: 900;
  font-size: 12px;
  white-space: pre;
  color: #004f8e;
  letter-spacing: 0px;
  margin-right: 5px;
}

.holiday {
  display: block;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 13px;
  color: #231815;
}

.holiday:before {
  content: "定休日";
  font-weight: 900;
  font-size: 12px;
  color: #004f8e;
  letter-spacing: 1px;
  margin-right: 5px;
}

/**営業日カレンダー**/
.foot_Calendar_btn {
  display: block;
  margin-top: 20px;
  background-color: #002963;
  text-align: center;
  color: #fff !important;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 1px;
  width: 180px;
  font-size: 13px;
  line-height: 1.4;
  width: 250px;
}

.foot_Calendar_btn:before {
  content: "CALENDAR\a";
  font-weight: 500;
  font-size: 14px;
  white-space: pre;
  letter-spacing: 3px;
}

.foot_Calendar_btn:hover {
  background-color: #787878;
}

/*メールフォームボタン*/
.footer-widgets-grid .contact {
  display: block;
  margin-top: 20px;
  background-color: #007dc5;
  text-align: center;
  color: #fff !important;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 1px;
  width: 180px;
  font-size: 13px;
  line-height: 1.4;
  width: 250px;
}

.footer-widgets-grid .contact:hover {
  background-color: #787878;
}

.footer-widgets-grid .contact:before {
  content: "CONTACT\a";
  font-weight: 500;
  font-size: 14px;
  white-space: pre;
  letter-spacing: 3px;
}

/*LINEボタン*/
.footer-widgets-grid .LINE_btn {
  display: block;
  margin-top: 20px;
  background-color: #004f8e;
  text-align: center;
  color: #fff !important;
  padding: 12px 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  width: 250px;
  letter-spacing: 3px;
}

.footer-widgets-grid .LINE_btn:hover {
  background-color: #787878;
}

.footer-widgets-grid .LINE_btn:after {
  content: "\aラインでお問い合わせ";
  font-weight: 500;
  font-size: 13px;
  white-space: pre;
  letter-spacing: 1px;
}

/*****フッターメニュー*****/
.foot_menu {
  display: block;
  color: #231815 !important;
  font-size: 15px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  font-weight: 500;
}

.foot_menu:before {
  content: "・";
  color: #004f8e;
  font-weight: bold;
  margin-right: 5px;
}

.foot_menu:hover {
  color: #007dc5 !important;
}

/**コピーライト***/
.sydney-credits {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

/*コピーライトSNSアイコン*/
.Instagram-icon,
.X-rogo {
  width: 16px;
}

.Instagram-icon {
  margin-left: 10px;
}

.footer-wrapper {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}