@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&&family=Playfair+Display:ital,wght@0,400..900;family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-block {
  display: block;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

.mt-15 {
  margin-top: 15px;
}

.mt-28 {
  margin-top: 28px;
}

.mt-30 {
  margin-top: 30px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@media (max-width: 570px) {
  html {
    font-size: 0.175vw;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  color: #333333;
  overflow-x: hidden;
  z-index: 0;
  background-color: white;
  letter-spacing: 0.1em;
  line-height: 1.6;
  letter-spacing: 0.07em;
  line-height: 200%;
  font-weight: 500;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

button {
  letter-spacing: 0;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}

figure,
picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a {
  text-decoration: none;
  color: black;
}

.sp-menu {
  display: none;
  -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;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.sp-menu-item span {
  border-bottom: 2rem solid #0265C5;
  width: 28rem;
  display: block;
  margin-bottom: 6rem;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.sp-menu-item span:last-child {
  margin-bottom: unset;
  width: 28rem;
}

.sp-menu-item.active span:first-child {
  -webkit-transform: rotate(-45deg) translate(-2rem, 4rem);
  transform: rotate(-45deg) translate(-2rem, 4rem);
}

.sp-menu-item.active span:nth-child(2) {
  display: none;
}

.sp-menu-item.active span:last-child {
  width: 28rem;
  -webkit-transform: rotate(45deg) translate(-3rem, -4rem);
  transform: rotate(45deg) translate(-3rem, -4rem);
}

.menu-overlay {
  display: none;
  position: fixed;
  width: 100%;
  height: calc(100% - 56px);
  z-index: 20;
  margin-top: 80px;
  padding: 60px 36px;
  background-color: #DF8969;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: translate(-100%, 0%);
  transform: translate(-100%, 0%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  z-index: 99;
  overflow: auto;
}

.menu-overlay.active {
  -webkit-transform: none;
  transform: none;
}

.overlay-links__group {
  margin-bottom: 25px;
}

.menu-overlay .overlay-links a {
  margin-bottom: 40px;
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: white;
}
.menu-overlay .overlay-links a span:first-child {
  margin-right: 10px;
}

.overlay-links__other {
  width: 100%;
}
.overlay-links__other a {
  width: 100%;
  height: 55px;
  background-color: #2B3F72;
  border-radius: 53px;
  font-size: 20px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.overlay-links__logoBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.overlay-links__logoBtn img {
  width: 160px;
}

.overlay-links__lead {
  color: #0265C5;
  font-weight: bold;
  font-size: 16px !important;
  margin-left: unset !important;
  margin-top: unset !important;
}

@media (max-width: 888px) {
  .menu-overlay {
    display: block;
    width: 100%;
  }
  .sp-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #2B3F72;
    width: 100px;
    height: 36px;
    border-radius: 24px;
  }
  .sp-menu__en {
    color: white;
    margin-left: 4px;
  }
  .sp-menu-item span {
    border-bottom: 2px solid white;
    width: 22px;
    margin-bottom: 5px;
  }
  .sp-menu-item span:last-child {
    width: 22px;
  }
  .sp-menu-item.active span:first-child {
    -webkit-transform: rotate(-45deg) translate(-2px, 4px);
            transform: rotate(-45deg) translate(-2px, 4px);
  }
  .sp-menu-item.active span:last-child {
    width: 22px;
    -webkit-transform: rotate(45deg) translate(-1px, -3px);
            transform: rotate(45deg) translate(-1px, -3px);
  }
  .l-header__menu {
    display: none;
  }
  .l-header__inner {
    margin-left: 15rem;
    margin-right: 15rem;
  }
}
#left-items {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFEBB8), color-stop(50%, #FBDED1), to(#FAD1AF));
  background: linear-gradient(to bottom, #FFEBB8, #FBDED1 50%, #FAD1AF);
  background-size: 200% 200%;
  -webkit-animation-name: gradation;
          animation-name: gradation;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

#right-items {
  background: -webkit-gradient(linear, left top, left bottom, from(#FAD1AF), color-stop(50%, #FBDED1), to(#FFEBB8));
  background: linear-gradient(to bottom, #FAD1AF, #FBDED1 50%, #FFEBB8);
  background-size: 200% 200%;
  -webkit-animation-name: gradation;
          animation-name: gradation;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes gradation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes gradation {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
#right-items,
#left-items {
  position: sticky;
  top: 0;
  height: 100vh;
}

#right-items,
#left-items {
  width: 50%;
}

nav.left-item-content {
  max-width: 500px;
  /* text-align: right; */
  margin: 0 0 0 auto;
}

.left-header-item {
  width: 170px;
  padding: 28px 22px;
}

ul.left-items-link.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 74%;
  padding: 0 30px;
}

.left-items-link.center {
  text-align: left;
}

.left-link-item {
  padding-bottom: 40px;
}

.left-link-item a {
  font-size: 18px;
  color: #2B3F72;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.left-link-item p {
  font-size: 18px;
  color: #2B3F72;
  line-height: 100%;
  letter-spacing: 0.1em;
}

.left-link-item .left-item-link-mini {
  font-size: 15px;
  color: #2B3F72;
  line-height: 100%;
  letter-spacing: 0.1em;
  padding-left: 20px;
  padding-top: 20px;
  display: block;
}

.rignt-item-lists.center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 30px;
}

.fz-18 {
  font-size: 18px;
}

.ore {
  color: #D86F46;
}

.right-item-btn.btn {
  width: 280px;
  line-height: 100%;
}

.btn {
  display: block;
  border-radius: 60px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.right-item-btn {
  max-width: 280px;
  margin: 0 auto;
}

.btn::before {
  content: "";
  display: block;
  margin-top: 21px;
}

.right-item-btn.btn a {
  font-size: 15px;
  width: 280px !important;
  min-width: 280px;
  line-height: 150%;
  padding: 10px 0 !important;
}

.right-item-btn a {
  color: #FFF;
}

.center {
  text-align: center;
}

.beta-btn-ore {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  outline: none;
  background: #D86F46;
  color: #fff;
  width: 320px;
  border-radius: 60px;
  padding: 29px 0 !important;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.13em;
  min-width: 320px;
}

.beta-btn-yel::after,
.beta-btn-ore::after,
.beta-btn-pin::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 0.3s;
  transition: opacity 1s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 1s;
  transition: transform 0.3s, opacity 1s, -webkit-transform 0.3s;
}

.right-items-b.flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.right-items-b {
  margin-top: 42px;
}

.right-item-qr {
  width: 93px;
  margin-right: 20px;
}

.c-inner {
  padding-left: 28px;
  padding-right: 28px;
}

.c-ttl {
  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;
  color: #2B3F72;
}
.c-ttl__en {
  font-size: 58px;
  font-family: "Playfair Display", serif;
}
.c-ttl__jp {
  font-size: 24px;
  margin-top: 20px;
}

@media screen and (max-width: 1200px) {
  nav.left-item-content,
  .rignt-item-lists.center {
    display: none;
  }
}
@media (max-width: 570px) {
  .c-ttl__en {
    font-size: 90rem;
  }
  .c-ttl__jp {
    font-size: 20rem;
    margin-top: 20rem;
  }
}
.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

#center-items {
  -webkit-box-shadow: 0px 0px 60px 0px rgba(103, 54, 9, 0.78);
          box-shadow: 0px 0px 60px 0px rgba(103, 54, 9, 0.78);
  width: 570px;
  min-width: 570px;
  overflow: hidden;
}

.fv-inner {
  background-color: white;
}
.fv-item {
  position: relative;
}
.fv-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 188px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0.0200455182)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.0200455182) 100%);
}
.fv-head {
  position: absolute;
  top: 20px;
  right: 40px;
}
.fv-head__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fv-head__txt img {
  width: 95px;
  height: auto;
}
.fv-img {
  height: 90vh;
}
.fv-img img {
  width: 100%;
}
.fv-ttl {
  position: absolute;
  left: 0;
  bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fv-ttl img {
  width: 430px;
  height: auto;
}
.fv-period {
  background-color: #DF8969;
  padding: 25px 60px;
  position: relative;
}
.fv-period__txt {
  font-size: 20px;
  font-weight: bold;
  color: #DF8969;
  text-align: center;
}
.fv-period__sm {
  font-size: 14px;
  font-weight: bold;
  color: #DF8969;
  text-align: center;
}
.fv-period__link {
  margin-top: 20px;
}
.fv-period__btn {
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: -webkit-gradient(linear, left top, right top, from(rgb(223, 137, 104)), to(rgb(233, 194, 93)));
  background: linear-gradient(90deg, rgb(223, 137, 104) 0%, rgb(233, 194, 93) 100%);
  border-radius: 53px;
  height: 51px;
  width: 80%;
  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;
}
.fv-period__item {
  background-color: white;
  padding: 20px 0;
}
.fv-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -2px;
}
.fv-bottom img {
  width: 100%;
}
.fv-top__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -44px;
  left: 0;
}

.why {
  position: relative;
  z-index: 0;
}
.why-contents {
  padding: 60px 60px 80px;
  z-index: 1;
}
.why-contents__item {
  margin-top: 40px;
}
.why-contents__txt {
  margin-top: 30px;
  line-height: 2;
}
.why-contents__txt .gray {
  color: #DF8969;
  font-weight: bold;
}
.why-contents__txt.mt-0 {
  margin-top: unset;
}
.why-contents__txt.mt-12 {
  margin-top: 12px;
}
.why-contents__blue {
  color: #2B3F72;
  font-weight: bold;
}
.why-img {
  position: absolute;
  right: -18px;
  bottom: 0;
  z-index: -1;
}

.change {
  padding: 80px 60px 0;
  background-color: #FDF5E5;
  position: relative;
}
.change-online {
  background-color: white;
  padding: 20px;
  margin-top: 30px;
  border-radius: 16px;
}
.change-online__lead {
  color: white;
  font-size: 28px;
  text-align: center;
  padding: 15px 0;
  line-height: 1.6;
  font-weight: bold;
}
.change-online__lead span {
  background-color: #384C7A;
  padding: 10px;
}
.change-online__img.mt-16 {
  margin-top: 16px;
}
.change-online__txt {
  margin-top: 20px;
  border-bottom: 1px solid #384C7A;
  padding-bottom: 10px;
}
.change-online__bg {
  color: #384C7A;
  line-height: 1.6;
  margin-top: 15px;
  font-size: 19px;
  font-weight: bold;
}
.change-online__bg span:first-child {
  margin-right: 10px;
  min-width: 22px;
}
.change-online__head {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #DF8969;
}
.change-online__underline {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #DF8969;
  margin-top: 15px;
}
.change-online__underline span {
  border-bottom: 2px solid #DF8969;
}
.change-new {
  padding: 80px 0 0;
}
.change-new__bg {
  position: absolute;
  top: -250px;
  left: -50px;
  z-index: -1;
}
.change-new__bg img {
  max-width: unset;
}
.change-new__inner {
  margin: 0 60px;
  background-color: white;
  padding: 20px;
  position: relative;
}
.change-new__item {
  position: relative;
  margin-top: 32px;
}
.change-new__item.right .change-new__abs {
  top: -35px;
  left: unset;
  right: -25px;
}
.change-new__item.right .change-new__bg {
  left: unset;
  top: -170px;
  right: -80px;
}
.change-new__item.mt-56 {
  margin-top: 56px;
}
.change-new__abs {
  position: relative;
}
.change-new__num {
  color: white;
  line-height: 1;
  font-family: "Poppins", serif;
  font-size: 36px;
  font-weight: bold;
  margin-left: 60px;
}
.change-new__num span {
  background-color: #384C7A;
  padding: 10px 30px;
  border-radius: 8px 8px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.change-new__lead {
  margin-top: 30px;
}
.change-new__smTtl {
  font-size: 16px;
  color: #DF8969;
  font-weight: bold;
}
.change-new__ttl {
  font-size: 20px;
  line-height: 1;
  color: white;
  font-weight: bold;
  margin: 10px 0;
}
.change-new__ttl span {
  background-color: #DF8969;
  padding: 2px 15px;
}
.change-before__bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -40px;
  left: 0;
}

.changeNew {
  background-color: #FDF5E5;
  position: relative;
  z-index: 1;
}

.step {
  position: relative;
  background-color: #FDF5E5;
  margin-top: -30px;
}
.step-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.step-first__txt {
  font-size: 24px;
  font-weight: bold;
  color: #DF8969;
}
.step-first__txtBg {
  font-size: 24px;
  font-weight: bold;
  color: white;
  background: linear-gradient(135deg, rgb(227, 152, 145) 0%, rgb(232, 169, 146) 50%, rgb(233, 194, 93) 100%);
  padding: 3px 5px;
  margin: 15px;
}
.step-item {
  padding: 0 60px;
}
.step-item__inner {
  background-color: white;
  padding: 0 30px 30px 30px;
  border-radius: 16px;
}
.step-item__box {
  margin-top: 50px;
  position: relative;
}
.step-item__box:first-child {
  margin-top: 34px;
  padding-top: 20px;
}
.step-item__box::after {
  content: "";
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-bottom: unset;
  border-top: 18px solid #DF8969;
  position: absolute;
  bottom: -44px;
  left: calc(50% - 13px);
}
.step-item__box:nth-child(3)::after {
  content: unset;
}
.step-item__img {
  margin: 0 60px 0;
}
.step-item .change-online__lead {
  margin-top: unset;
}
.step-item__ttl {
  font-size: 20px;
  font-weight: bold;
  color: #DF8969;
  margin: 24px 0 20px;
}
.step-item__ttl span {
  border-bottom: 2px solid #DF8969;
  padding-bottom: 5px;
}
.step-item__txt .gray {
  color: #DF8969;
  font-weight: bold;
  font-size: 18px;
}
.step-bottom {
  margin-top: 30px;
  padding-bottom: 60px;
}
.step-bottom__btn {
  background: -webkit-gradient(linear, left top, right top, from(rgb(223, 137, 104)), to(rgb(233, 194, 93)));
  background: linear-gradient(90deg, rgb(223, 137, 104) 0%, rgb(233, 194, 93) 100%);
  width: 348px;
  height: 55px;
  border-radius: 55px;
  color: white;
  font-weight: bold;
  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: 18px;
}
.step-bottom__txt {
  text-align: center;
  font-size: 14px;
  color: #2B3F72;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 15px;
}
.step-bottom__txt a {
  color: #2B3F72;
  text-decoration: underline;
}

.make {
  background-color: #FDF5E5;
  position: relative;
}
.make-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.make-bg img {
  width: 100%;
}
.make-bg.mt-2 {
  margin-top: -2px;
}
.make-bg.mb-2 {
  margin-bottom: -2px;
}
.make-item {
  background-color: #DF8969;
  padding: 30px 60px;
}
.make-item__box {
  background-color: white;
  padding: 40px 30px;
  border-radius: 26px;
}
.make-item__box .step-bottom {
  padding-bottom: unset;
}
.make-item__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
  margin-right: 30px;
}
.make-item__ttl {
  background-color: #DF8969;
  padding: 16px 18px;
  color: white;
  text-align: center;
  font-size: 22px;
  color: white;
  line-height: 1.5;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 15px;
}
.make-item__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.make-item__txt.mt-28 {
  margin-top: 28px;
}
.make-abs1 {
  position: absolute;
  top: 0;
  left: -42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.make-abs1 img {
  width: 326px;
}
.make-abs2 {
  position: absolute;
  bottom: 300px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.make-abs2 img {
  width: 80px;
}
.make-abs3 {
  position: absolute;
  bottom: 180px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.make-abs3 img {
  width: 80px;
}

.faq {
  background-color: #FDF6E8;
  padding: 60px;
}

.footer {
  background-color: #FDF6E8;
}
.footer-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -2px;
  z-index: -1;
}
.footer-bg img {
  width: 100%;
}
.footer-item {
  position: relative;
  background-color: #DF8969;
  padding: 40px 60px;
}
.footer-item__logo img {
  width: 200px;
}
.footer-item__btn li {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-item__btn li a {
  color: white;
  font-size: 18px;
}
.footer-item__copyright {
  color: white;
  font-size: 14px;
  margin-top: 30px;
  text-align: center;
  font-weight: unset;
}

@media (max-width: 570px) {
  #center-items {
    width: 100%;
    min-width: unset;
  }
  #right-items,
  #left-items {
    display: none;
  }
  .main {
    display: block;
    width: 100%;
  }
  .fv-head__txt img {
    width: 95rem;
    height: auto;
  }
  .fv-ttl {
    bottom: 130rem;
  }
  .fv-ttl img {
    width: 500rem;
    height: auto;
  }
  .fv-item::before {
    height: 330rem;
  }
  .fv-period {
    margin-top: 4px;
    padding: 30rem 35rem;
  }
  .fv-period__txt {
    font-size: 26rem;
  }
  .fv-period__txt:nth-child(2) {
    margin: 5px 0;
  }
  .fv-period__sm {
    font-size: 18rem;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .fv-period__link {
    margin-top: unset;
  }
  .fv-period__btn {
    width: 100%;
    font-size: 26rem;
    height: 70rem;
  }
  .fv-top__bg {
    top: -46rem;
  }
  .fv-head {
    right: 40rem;
    top: 80rem;
  }
  .fv-bottom {
    margin-top: -3px;
  }
  .fv-img img {
    -o-object-position: center bottom;
       object-position: center bottom;
  }
  .why-contents {
    padding: 40px 25rem 60px;
  }
  .change {
    padding: 40px 0 0;
  }
  .change-online {
    margin: 32px 35rem 0;
  }
  .change-online__lead {
    font-size: 36rem;
  }
  .change-online__bg {
    font-size: 22rem;
  }
  .change-online__bg span:first-child {
    margin-right: 18px;
  }
  .change-new {
    padding: 40px 0 0;
  }
  .change-new__inner {
    margin: 0 35rem;
  }
  .change-new__smTtl {
    font-size: 22rem;
  }
  .change .c-ttl__en {
    font-size: 74rem;
  }
  .fv-period__item {
    padding: 20px;
  }
  .change-before__bg {
    top: -48rem;
  }
  .change-new__num {
    margin-left: 35rem;
  }
  .step-first__txt {
    font-size: 20px;
  }
  .step-first__txtBg {
    font-size: 20px;
  }
  .step-bg {
    top: -100px;
    left: -150px;
  }
  .step-item {
    padding: 0 35rem;
  }
  .step-item__inner {
    padding: 0 20px 20px 20px;
  }
  .step-item__img {
    margin: unset;
  }
  .step-item__img img {
    width: 220px;
  }
  .step-bottom__btn {
    font-size: 26rem;
    height: 70rem;
  }
  .make-item {
    padding: 15px 28px;
  }
  .make-item__box {
    padding: 40px 14px;
  }
  .make-item__box .step-bottom__btn {
    width: 100%;
  }
  .make-abs2 {
    bottom: 350rem;
  }
  .make-item__ttl {
    font-size: 29rem;
  }
  .faq {
    padding: 40px 28px;
  }
  .faq-ttl .c-ttl__en {
    font-size: 90rem;
  }
  .footer-item {
    padding: 40px 28px;
  }
}
.header {
  background-color: rgb(255, 255, 255);
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 15px 0;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-logo img {
  width: 150px;
}
.header-link__acord {
  margin-right: 30px;
  color: #2B3F72;
}

@media (max-width: 1260px) {
  .header-inner {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 888px) {
  .header-link {
    display: none;
  }
}
.faq-item {
  margin-top: 40px;
}

.faq__item {
  background-color: #FFFFFF;
  margin-top: 20px;
  border-radius: 15px;
}

.collapsible {
  background-color: #FFFFFF;
  cursor: pointer;
  padding: 10px 35px 10px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  border-radius: 8px;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333333;
}

.collapsible span:first-child {
  color: #77BD5A;
  margin-right: 9px;
  font-size: 24px;
  font-weight: bold;
  font-family: "Poppins", serif;
}

.collapsible span:last-child {
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
}

.collapsible::after {
  content: "";
  background: url("../img/icon_faq_top.svg") no-repeat;
  display: inline-block;
  width: 20px;
  height: 18px;
  position: absolute;
  top: calc(50% - 9px);
  right: 10px;
  background-size: contain;
}

.collapsible.active::after {
  content: "";
  background: url("../img/icon_faq_bottom.svg") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 18px;
  position: absolute;
  top: calc(50% - 9px);
  right: 10px;
}

.content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out;
  transition: max-height 0.5s ease-out;
  width: 100%;
}
.content-en {
  font-size: 24px;
  font-weight: bold;
  margin-right: 11px;
}
.content-en span {
  color: #DF8969;
}
.content-other {
  border-top: 1px solid #FFF6EE;
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 18px;
}
.content-other a {
  text-decoration: underline;
  color: #DF8969;
}

.content p {
  padding: 0 0 20px 0;
}

@media (max-width: 570px) {
  .header {
    padding: 22px 0;
  }
  .header-inner {
    margin-left: 20px;
    margin-right: 20px;
  }
  .header-logo img {
    width: 90px;
  }
}
.u-sp-block {
  display: none;
}

.u-pc-block {
  display: block;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-30 {
  margin-top: 30px;
}

.u-400-block {
  display: none;
}

@media (max-width: 570px) {
  .u-sp-block {
    display: block;
  }
  .u-pc-block {
    display: none;
  }
}
@media (max-width: 400px) {
  .u-400-block {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */