@charset "UTF-8";
/* mixin
================================================================== */
/* 幅指定して中央 */
.grid-3-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid-3-2 {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .grid-3-2 .col-item:nth-of-type(1) {
    grid-area: 1/1/2/3;
  }
  .grid-3-2 .col-item:nth-of-type(2) {
    grid-area: 1/3/2/5;
  }
  .grid-3-2 .col-item:nth-of-type(3) {
    grid-area: 2/2/3/4;
  }
}
@media (max-width: 767px) {
  .grid-3-2 {
    display: block;
  }
  .grid-3-2 .col-item:not(:first-of-type) {
    margin-top: 20px;
  }
}

/* base
================================================================== */
:root {
  --header-h: 80px;
  --btn-br: 100px;
  --sec-br: 60px;
  --box-br: 12px;
  --mb-80: 80px;
  --mb-60: 60px;
  --mb-40: 40px;
  --mb-30: 30px;
  --fs-22: 2.2rem;
  --fs-20: 2rem;
  --fs-18: 1.8rem;
  --fs-16: 1.6rem;
  --fs-15: 1.5rem;
  --gap-30: 20px 30px;
}

@media only screen and (max-width: 1024px) {
  :root {
    --header-h: 60px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --sec-br: 40px;
    --mb-60: 50px;
    --mb-40: 30px;
    --mb-30: 20px;
    --fs-20: 1.8rem;
    --fs-18: 1.6rem;
    --fs-16: 1.5rem;
    --fs-15: 1.4rem;
  }
}
/* common
---------------------------------------------------------------- */
body {
  font-size: var(--fs-16);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  color: #262116;
  background-color: #fff;
  width: 100%;
}

main {
  overflow: hidden;
}

a {
  transition: 0.3s ease;
}

a:hover {
  opacity: 0.5;
}

.d-i {
  display: inline;
}

.d-ib {
  display: inline-block;
}

.d-b {
  display: block;
}

.w-100 {
  width: 100%;
}

/* PC,SP表示
---------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .d-pc {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .d-tb {
    display: none !important;
  }
}
@media only screen and (max-width: 599px), (min-width: 1025px) {
  .d-tb-only {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-tb-sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .d-pc-tb {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .d-768 {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) {
  .d-sp {
    display: none !important;
  }
}
/* layout
--------------------------------------------------------------- */
.inner, .inner-np, .inner-10 {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(1200px + 12%);
  padding: 100px 6%;
  width: 100%;
}
@media (max-width: 767px) {
  .inner, .inner-np, .inner-10 {
    padding: 80px 6%;
  }
}
@media (max-width: 599px) {
  .inner, .inner-np, .inner-10 {
    padding: 50px 6%;
  }
}
.inner-10 {
  max-width: calc(1000px + 12%);
}
.inner-np {
  padding: 0 6%;
}

.flex-basic {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
}

.flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

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

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex-flexend {
  display: flex;
  justify-content: flex-end;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-h-center {
  display: flex;
  justify-content: center;
}

.flex-v-center {
  display: flex;
  align-items: center;
}

/* animation
--------------------------------------------------------------- */
/* parts
================================================================== */
.sec-ttl {
  margin-bottom: var(--mb-60);
  display: inline-block;
  height: 90px;
}
.sec-ttl img {
  height: 100%;
}
@media (max-width: 767px) {
  .sec-ttl {
    height: 80px;
  }
}

.btn {
  position: relative;
  display: inline-block;
  padding: 1.2em 2.5em;
  width: max(100%, 180px);
  background-color: #fff;
  border: solid 2px #e92535;
  border-radius: var(--btn-br);
  color: #e92535;
  font-weight: 700;
  font-size: var(--fs-18);
  text-align: center;
}
.btn:hover {
  opacity: 1;
  color: #fff;
  background-color: #e92535;
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  top: 1px;
  bottom: 0;
  right: 1.5em;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2px solid #e92535;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  transition: 0.3s ease;
}
.btn:hover::after {
  right: 1em;
  border-color: #fff;
}

.btn-page::after {
  display: none;
}
.btn-page i {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  right: 1.5em;
  translate: 0 -50%;
}

/* header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: var(--header-h);
  padding: 20px;
  background-color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}
@media (max-width: 1024px) {
  .header {
    position: static;
    padding: 10px 15px;
  }
}
.header-logo img {
  width: auto;
  height: 50px;
}
@media only screen and (max-width: 1199px) {
  .header-logo img {
    height: 40px;
  }
}
.header-menu {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2em;
}
@media only screen and (max-width: 1199px) {
  .header-menu {
    gap: 0 1em;
  }
}
@media (max-width: 1024px) {
  .header-menu {
    display: none;
  }
}
.header-menu-list {
  gap: 0 1.5em;
}
@media only screen and (max-width: 1199px) {
  .header-menu-list {
    gap: 0 1em;
    font-size: 1.5rem;
  }
}
.header-menu-list a {
  padding: 0.8em 0;
}
.header-menu-list a:hover {
  opacity: 1;
  color: #e92535;
}

.btn-entry.btn {
  background-color: #e92535;
  color: #fff;
  padding: 1em 2.5em;
}
.btn-entry.btn:hover {
  background-color: #fff;
  color: #e92535;
}
.btn-entry.btn::after {
  right: 1.2em;
  border-color: #fff;
}
.btn-entry.btn:hover::after {
  border-color: #e92535;
  right: 0.9em;
}

/* burger animation */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 8px;
  right: 15px;
  width: calc(var(--header-h) * 0.7);
  height: calc(var(--header-h) * 0.7);
  cursor: pointer;
  z-index: 9999;
  background-color: #e92535;
  border-radius: 100px;
}
@media (max-width: 1024px) {
  .hamburger-menu {
    display: block;
  }
}

.bar {
  position: absolute;
  width: 50%;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.4s ease;
}
.bar--top {
  top: 34%;
}
.bar--middle {
  top: 50%;
}
.bar--bottom {
  top: 66%;
}

.js-close .bar--top {
  top: 48%;
  transform: translateX(-50%) rotate(45deg);
}
.js-close .bar--middle {
  opacity: 0;
  transition: 0.1s;
}
.js-close .bar--bottom {
  top: 48%;
  transform: translateX(-50%) rotate(-45deg);
}

/* burger inner */
.burger-nav {
  position: fixed;
  z-index: 99;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  text-align: center;
  background-color: #fff;
  padding: 120px 2em;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.5s;
}
@media (max-width: 599px) {
  .burger-nav {
    width: 80vw;
    right: -100vw;
    padding: 80px 1.5em 0;
  }
}
.burger-nav.js-active {
  right: 0;
}
.burger-nav .btn {
  margin-bottom: 15px;
}
.burger-nav ul li a {
  display: block;
  padding: 1em;
  font-size: 1.7rem;
  line-height: 1.4;
  border-bottom: 1px solid #bebebe;
}
.burger-nav ul li a span {
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  display: block;
  color: #e92535;
  font-size: 1.4rem;
  padding-bottom: 0.4em;
}
.burger-nav ul li a:hover {
  opacity: 1;
}

.burger-mask {
  z-index: 90;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.burger-mask.js-active {
  display: block;
}

/* mv
---------------------------------------------------------------- */
.mv {
  position: relative;
  margin-top: var(--header-h);
  width: 100%;
  background: #fff;
}
@media (max-width: 1024px) {
  .mv {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .mv {
    margin-bottom: 6%;
  }
}
.mv-slide-wrap {
  /* スライドの動き等速 */
  transition-timing-function: linear;
}
.mv-text {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 10%;
  right: calc(50% + 50px);
  width: max(40%, 520px);
}
@media only screen and (max-width: 1600px) {
  .mv-text {
    right: unset;
    left: 6.3%;
  }
}
@media (max-width: 1024px) {
  .mv-text {
    bottom: 4%;
    width: 50%;
  }
}
@media (max-width: 767px) {
  .mv-text {
    bottom: 8%;
    width: min(400px, 80%);
  }
}
.mv-deco {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  bottom: -10%;
  left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .mv-deco {
    bottom: -12%;
  }
}

/* about us
---------------------------------------------------------------- */
#about {
  background: #fff9de;
}
#about .inner {
  padding: 60px 6% 80px;
}
@media (max-width: 767px) {
  #about .inner {
    padding-bottom: 20px;
  }
}
#about .sec-ttl {
  margin-bottom: var(--mb-40);
}

.about-wrap {
  width: 1100px;
  max-width: 100%;
  margin-left: auto;
}
.about-inn {
  gap: 30px;
}
@media (max-width: 767px) {
  .about-inn {
    flex-direction: column;
  }
}
.about-left {
  width: 504px;
}
@media (max-width: 1024px) {
  .about-left {
    width: 100%;
    flex-basis: 50%;
  }
}
.about-img {
  flex: 1;
  margin-top: -60px;
}
@media (max-width: 1024px) {
  .about-img {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .about-img {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    width: 400px;
  }
}
.about-text {
  line-height: 1.8;
}
.about-text p + p {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .about-text p + p {
    margin-top: 1em;
  }
}
@media (max-width: 1024px) {
  .about-text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .about-text br {
    display: block;
  }
}
@media (max-width: 599px) {
  .about-text br {
    display: none;
  }
}

/* photo slider
---------------------------------------------------------------- */
.photo-slide {
  background: linear-gradient(0, #fff 0%, #fff 50%, #fff9de 50%, #fff9de 100%);
}
.photo-slide-wrap {
  /* スライドの動き等速 */
  transition-timing-function: linear;
}
@media (max-width: 767px) {
  .photo-slide-wrap {
    padding: 20px 0;
  }
}

/* about job
---------------------------------------------------------------- */
#job .inner {
  padding-bottom: 0;
}
#job .sec-ttl {
  margin-bottom: 20px;
}

.job-top-text {
  font-size: var(--fs-18);
  letter-spacing: 0.08em;
  margin-bottom: var(--mb-40);
}

.job-label {
  position: relative;
  background: #ffe4de;
  padding: 20px 10px 70px 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.job-label-wrap {
  position: relative;
  z-index: -99;
  background: #dcf0c4;
}
@media (max-width: 767px) {
  .job-label {
    width: 33.3333333333%;
    padding: 12px 20px 54px;
  }
}
.job-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: calc(-2.4vw + 1px);
  width: 2.4vw;
  height: 100%;
  background: #ffe4de;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 767px) {
  .job-label::before {
    display: none;
  }
}
.job-label::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc(-2.4vw - 2px);
  width: 2.4vw;
  height: 100%;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 767px) {
  .job-label::after {
    display: none;
  }
}
.job-label-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #e92535;
}
@media (max-width: 1024px) {
  .job-label-text {
    font-size: 1.6rem;
  }
}
.job-label-en {
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  display: block;
  padding-bottom: 0.2em;
  font-size: 0.9em;
  font-weight: 800;
}
.job-label-orange {
  width: calc(50% - 40px);
  padding-left: calc(2.2vw + 20px);
  background: #fcddb0;
  z-index: -2;
}
.job-label-orange::before {
  background: #fcddb0;
}
.job-label-orange .job-label-text {
  color: #ff6a56;
}
.job-label-yellow {
  width: calc(16.6666666667% - 10px);
  padding-left: calc(2.2vw + 20px);
  background: #fff1aa;
  z-index: -3;
}
.job-label-yellow::before {
  background: #fff1aa;
}
.job-label-yellow .job-label-text {
  color: #ff9700;
}
.job-label-green {
  width: auto;
  padding-left: calc(2.2vw + 20px);
  background: #dcf0c4;
  z-index: -4;
}
.job-label-green::before, .job-label-green::after {
  display: none;
}
.job-label-green .job-label-text {
  color: #72b224;
}

.job-label-sp-top .job-label-wrap {
  background: #fcddb0;
}
.job-label-sp-top .job-label-orange {
  width: 66.6666666667%;
}
.job-label-sp-top .job-btn-wrap {
  margin-bottom: 20px;
}
.job-label-sp-btm .job-label {
  width: 33.3333333333%;
}
.job-label-sp .job-label-orange,
.job-label-sp .job-label-yellow,
.job-label-sp .job-label-green {
  padding-left: 20px;
}

.job-btn-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  margin-top: -40px;
  margin-bottom: 30px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .job-btn-wrap {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 10px;
    gap: 10px;
  }
}
.job-btn-wrap a {
  position: relative;
  width: 100%;
  height: 70px;
  background: #fff;
  border-radius: var(--box-br);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.job-btn-wrap a span {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-bottom: 0.8em;
}
@media (max-width: 1024px) {
  .job-btn-wrap a span {
    font-size: 1.6rem;
  }
}
.job-btn-wrap a:hover {
  opacity: 1;
  color: #e92535;
}
.job-btn-wrap a::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.6em;
  height: 0.6em;
  bottom: 0.6em;
  right: 46%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  width: 0.7em;
  height: 0.7em;
  border: 2px solid #e92535;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(135deg);
  transition: 0.3s ease;
}
.job-btn-wrap a:hover::after {
  bottom: 0.2em;
}

.job-content {
  background: #fcddb0;
  padding: 20px 30px 40px;
}
.job-content:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .job-content {
    padding: 1.5em 1em;
  }
}
.job-content-ttl {
  margin-bottom: var(--mb-30);
  font-size: var(--fs-20);
  letter-spacing: 0.08em;
  color: #ff6a56;
}
.job-content-ttl-en {
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  font-size: 1.1em;
  font-weight: 800;
  padding-right: 0.5em;
}
.job-content-ttl-jp {
  font-weight: 700;
}
@media (max-width: 767px) {
  .job-content-ttl {
    text-align: center;
  }
}

.job-item {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-30);
  background: #fff;
  border-radius: var(--box-br);
  overflow: hidden;
  padding: 30px;
}
@media (max-width: 767px) {
  .job-item {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 599px) {
  .job-item {
    padding: 1.5em;
  }
}
.job-item + .job-item {
  margin-top: 20px;
}
.job-item .job-num {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 24px;
  left: 20px;
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}
@media (max-width: 767px) {
  .job-item .job-num {
    top: 15px;
    left: 15px;
    font-size: 2.4rem;
  }
}
.job-item .job-num::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -55px;
  left: -55px;
  width: 120px;
  height: 120px;
  background: #ff6a56;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
@media (max-width: 767px) {
  .job-item .job-num::before {
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
  }
}
.job-item-ttl {
  font-size: var(--fs-20);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.2em 0 0.3em 0.8em;
  border-left: 4px solid #ff6a56;
}
.job-item-text {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .job-item-text {
    margin: 10px 0 20px;
  }
}
.job-item .btn {
  padding: 0.8em 2em;
  text-align: left;
  width: 280px;
  max-width: 100%;
  font-size: var(--fs-16);
}
.job-item .btn + .btn {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .job-item .btn {
    width: 100%;
    text-align: center;
    padding: 0.8em 0.5em;
  }
}
@media (max-width: 767px) {
  .job-item .btn::after {
    right: 1em;
  }
}

#step1.job-content {
  background: #ffe4de;
}
#step1 .job-content-ttl {
  color: #e92535;
}
#step1 .job-num::before {
  background: #e92535;
}
#step1 .job-item-ttl {
  border-color: #e92535;
}

#step3.job-content {
  background: #fff1aa;
}
#step3 .job-content-ttl {
  color: #ff9700;
}
#step3 .job-num::before {
  background: #ff9700;
}
#step3 .job-item-ttl {
  border-color: #ff9700;
}

#step4.job-content {
  background: #dcf0c4;
}
#step4 .job-content-ttl {
  color: #72b224;
}
#step4 .job-num::before {
  background: #72b224;
}
#step4 .job-item-ttl {
  border-color: #72b224;
}

/* interview
---------------------------------------------------------------- */
#interview {
  position: relative;
  padding-bottom: 100px;
}
#interview::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% + 150px);
  bottom: 0;
  left: 0;
  background-size: auto auto;
  background-color: #ffe4de;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 30px, #ffefeb 30px, #ffefeb 40px);
}

.int-btn {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  display: block;
  background: #fff;
  border-radius: var(--box-br);
  overflow: hidden;
}
.int-btn-wrap {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
@media (max-width: 767px) {
  .int-btn-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .int-btn-wrap {
    gap: 20px 30px;
  }
}
@media (max-width: 767px) {
  .int-btn-wrap {
    width: 400px;
  }
}
.int-btn-img {
  overflow: hidden;
}
.int-btn-img img {
  transition: transform 0.3s ease;
}
.int-btn-text {
  position: relative;
  padding: 40px 30px 30px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s ease;
}
@media (max-width: 1024px) {
  .int-btn-text {
    font-size: 1.7rem;
    padding: 2.2em 1.2em 1.5em;
  }
}
.int-btn-ttl {
  content: "";
  display: block;
  position: absolute;
  top: -4em;
  left: 0;
  color: #fff;
}
.int-btn-ttl span {
  display: inline-block;
  background: #e92535;
  padding: 0.5em 0.7em;
  margin-top: 0.5em;
}
.int-btn-name {
  position: relative;
  padding-right: 1em;
}
.int-btn-name::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  right: 0;
  width: 0.5em;
  height: 0.5em;
  margin: auto;
  border: 2px solid #e92535;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  transition: 0.3s ease;
}
.int-btn:hover {
  opacity: 1;
}
.int-btn:hover img {
  transform: scale(1.07);
}
.int-btn:hover .int-btn-text {
  color: #e92535;
}
.int-btn:hover .int-btn-name::after {
  right: -0.4em;
}

.remodal-close-top {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  transition: 0.3s ease;
}
.remodal-close-top:hover {
  opacity: 0.6;
}
.remodal-close-btm {
  width: 100%;
}
.remodal-close-btm .btn {
  width: 280px;
  padding: 0.8em;
  margin-top: var(--mb-40);
}

.modal-content {
  position: relative;
  text-align: left;
}
.modal-top {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 599px) {
  .modal-top {
    margin: 0;
  }
}
.modal-top-num {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 24px;
  left: 20px;
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}
@media (max-width: 767px) {
  .modal-top-num {
    top: 15px;
    left: 15px;
    font-size: 2.4rem;
  }
}
.modal-top-num::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -55px;
  left: -55px;
  width: 120px;
  height: 120px;
  background: #e92535;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
@media (max-width: 767px) {
  .modal-top-num::before {
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
  }
}
.modal-top-img {
  position: relative;
  z-index: -1;
}
.modal-top-text {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  left: min(30px, 3%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 20px 30px;
  font-weight: 700;
  line-height: 1.7;
  border-radius: var(--box-br);
}
@media (max-width: 767px) {
  .modal-top-text {
    position: static;
    margin-left: 3%;
    margin-top: -15%;
  }
}
@media (max-width: 599px) {
  .modal-top-text {
    margin: 0;
    width: 100%;
  }
}
.modal-top-ttl {
  font-size: var(--fs-20);
  font-weight: 700;
  color: #e92535;
  margin-bottom: 0.8em;
}
@media (max-width: 599px) {
  .modal-top-ttl {
    margin-bottom: 0.5em;
  }
  .modal-top-ttl br {
    display: none;
  }
}

.qa-list {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  width: calc(700px + 8%);
  padding: var(--mb-30) 4% var(--mb-60);
}
.qa-list dt {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.2em;
}
.qa-list dt:not(:first-of-type) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .qa-list dt {
    font-size: 1.7rem;
  }
}
.qa-list dt::before {
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 7px;
  content: "Q";
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.qa-list dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #e92535;
  width: 30px;
  height: 30px;
  border-radius: 100px;
}
.qa-list dd {
  font-size: var(--fs-15);
  line-height: 1.7;
  text-align: justify;
  margin-top: 20px;
  padding: 20px 30px;
  background: #ffe4de;
  border-radius: var(--box-br);
}
@media (max-width: 767px) {
  .qa-list dd {
    padding: 1.5em;
  }
}

.day-wrap {
  position: relative;
  padding: 0 4% 60px;
}
.day-wrap:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 1.5em;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--sec-br) var(--sec-br) 0 0;
  background: #fff9de;
}
.day-ttl {
  text-align: center;
  color: #ff6a56;
  margin-bottom: var(--mb-40);
}
.day-ttl span {
  display: block;
}
.day-ttl-en {
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.6;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .day-ttl-en {
    font-size: 4rem;
  }
}
.day-ttl-jp {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .day-ttl-jp {
    font-size: 2rem;
  }
}
.day-ttl-jp i {
  padding-right: 0.2em;
}
.day-ttl-jp i svg {
  vertical-align: middle;
  padding-bottom: 4px;
}

.tl-wrap {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 599px) {
  .tl-wrap {
    margin-left: 3%;
  }
}
.tl-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0.4em;
  width: 3px;
  height: 90%;
  background-color: #ff6a56;
}
.tl-wrap dt {
  position: relative;
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: 1.3;
  color: #ff6a56;
  margin-bottom: 0.4em;
  padding-left: 36px;
}
.tl-wrap dt span {
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  font-size: 1.1em;
  letter-spacing: 0.06em;
  padding-right: 0.5em;
}
.tl-wrap dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 0.9em;
  height: 0.9em;
  background: currentColor;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
}
.tl-wrap dt:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  top: 1.15em;
  left: 0;
  width: 0.9em;
  height: 50px;
  background: #fff9de;
}
.tl-wrap dd {
  font-size: 1.5rem;
  margin-bottom: 1.5em;
  padding-left: 36px;
}

.tl-wrap-02:before {
  height: 100%;
}

/* feature
---------------------------------------------------------------- */
#feature {
  position: relative;
  z-index: 0;
  background: #fff9de;
  border-radius: var(--sec-br) var(--sec-br) 0 0;
  margin-top: -80px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  #feature {
    padding-bottom: 60px;
  }
}
#feature::before {
  content: "";
  display: block;
  position: absolute;
  width: min(260px, 20vw);
  height: 50%;
  background: url("../img/feature/deco_01.png") center top no-repeat;
  background-size: 100%;
  top: -50px;
  left: calc(50% + 340px);
}
@media only screen and (max-width: 1600px) {
  #feature::before {
    left: unset;
    right: 3%;
  }
}
@media (max-width: 767px) {
  #feature::before {
    width: min(200px, 30vw);
  }
}
#feature .inner:first-of-type {
  text-align: center;
  padding-bottom: var(--mb-60);
}
#feature .sec-ttl {
  height: 120px;
}

.data-content {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  width: 900px;
  margin-bottom: var(--mb-60);
}
@media (max-width: 1024px) {
  .data-content {
    gap: 30px;
  }
}
@media (max-width: 599px) {
  .data-content {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.data-item {
  width: 100%;
  aspect-ratio: 1/1;
  background-image: url(../img/feature/data_bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
}
.data-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-top: 24%;
  margin-bottom: 8%;
}
@media (max-width: 767px) {
  .data-ttl {
    font-size: 1.6rem;
  }
}
.data-img img {
  width: 240px;
  max-width: 60%;
}
.data-note {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #e92535;
  margin-top: 1.2em;
}
@media (max-width: 767px) {
  .data-note {
    margin-top: 0.8em;
    font-size: 1.3rem;
  }
}
.data-bubble {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  width: 680px;
}

.point {
  text-align: left;
}
.point-bg {
  position: relative;
}
.point-bg + .point-bg {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .point-bg + .point-bg {
    margin-top: 60px;
  }
}
.point-bg:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: min(50% + 500px, 90%);
  height: 90%;
  background: #fcddb0;
  border-radius: 0 1000px 1000px 0;
}
@media (max-width: 767px) {
  .point-bg:before {
    height: 350px;
  }
}
.point-bg:first-of-type::before {
  height: min(50%, 400px);
}
.point-bg::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc(50% + 450px);
  width: 250px;
  height: 100%;
  background-image: url(../img/feature/point_deco.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@media only screen and (max-width: 1280px) {
  .point-bg::after {
    right: unset;
    left: 2%;
  }
}
@media (max-width: 767px) {
  .point-bg::after {
    width: 150px;
  }
}
.point-wrap {
  width: 1100px;
  max-width: 100%;
  margin-left: auto;
}
.point-inn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 767px) {
  .point-inn {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1024px) {
  .point-inn {
    gap: 30px;
  }
}
.point-top {
  gap: 0 100px;
  align-items: flex-end;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .point-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .point-top {
    margin-bottom: 30px;
  }
}
.point-num {
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #ff6a56;
  padding: 30px 0 20px;
  margin-left: -60px;
}
@media only screen and (max-width: 1280px) {
  .point-num {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .point-num {
    font-size: 2.4rem;
    padding-bottom: 15px;
  }
}
.point-ttl span {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  padding-bottom: 0.2em;
  border-bottom: 3px solid #ff6a56;
}
.point-ttl span:last-of-type {
  margin-top: 0.4em;
}
@media (max-width: 767px) {
  .point-ttl span {
    font-size: 2rem;
  }
}
.point-text {
  margin-top: var(--mb-30);
}
.point-img {
  overflow: hidden;
  border-radius: var(--box-br);
}
.point-ttl-sub {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  justify-content: flex-start;
  color: #e92535;
  font-size: var(--fs-18);
  font-weight: 700;
  margin: 1em 0 0.6em;
}
.point-ttl-sub::before, .point-ttl-sub::after {
  content: "";
  width: 2px;
  height: 1.4em;
  background-color: currentColor;
}
.point-ttl-sub::before {
  margin-right: 0.8em;
  transform: rotate(-35deg);
}
@media (max-width: 767px) {
  .point-ttl-sub::before {
    margin-right: 1em;
  }
}
.point-ttl-sub::after {
  margin-left: 0.8em;
  transform: rotate(35deg);
}
@media (max-width: 767px) {
  .point-ttl-sub::after {
    margin-left: 1em;
  }
}
.point-text-sub {
  color: #e92535;
}

.point-red.point-bg::before {
  background: #ffe4de;
  left: unset;
  right: 0;
  border-radius: 1000px 0 0 1000px;
}
.point-red.point-bg::after {
  right: unset;
  left: calc(50% + 450px);
  transform: scale(-1, 1);
}
@media only screen and (max-width: 1280px) {
  .point-red.point-bg::after {
    left: unset;
    right: 2%;
  }
}
.point-red .point-wrap {
  margin-left: unset;
  margin-right: auto;
}
.point-red .point-num {
  color: #e92535;
  text-align: right;
  margin-left: 0;
  margin-right: -60px;
}
@media only screen and (max-width: 1280px) {
  .point-red .point-num {
    margin-right: 0;
  }
}
.point-red .point-ttl span {
  border-color: #e92535;
}
.point-red .point-img {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .point-red .point-img {
    order: 2;
    padding-top: 0;
  }
  .point-red .point-left {
    order: 1;
  }
}

.point-yellow.point-bg::before {
  background: #fff1aa;
}
.point-yellow .point-num {
  color: #ff9700;
}
.point-yellow .point-ttl span {
  border-color: #ff9700;
}

@media (max-width: 599px) {
  .btn32 {
    margin-top: 60px;
  }
}
.btn32-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .btn32-wrap {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
@media (max-width: 599px) {
  .btn32-wrap {
    gap: 15px;
  }
}
.btn32-item:nth-of-type(1) {
  grid-area: 1/1/2/3;
}
@media (max-width: 767px) {
  .btn32-item:nth-of-type(1) {
    grid-area: 1/1/2/3;
  }
}
.btn32-item:nth-of-type(2) {
  grid-area: 1/3/2/5;
}
@media (max-width: 767px) {
  .btn32-item:nth-of-type(2) {
    grid-area: 1/3/2/5;
  }
}
.btn32-item:nth-of-type(3) {
  grid-area: 1/5/2/7;
}
@media (max-width: 767px) {
  .btn32-item:nth-of-type(3) {
    grid-area: 2/1/3/3;
  }
}
.btn32-item:nth-of-type(4) {
  grid-area: 2/2/3/4;
}
@media (max-width: 767px) {
  .btn32-item:nth-of-type(4) {
    grid-area: 2/3/3/5;
  }
}
.btn32-item:nth-of-type(5) {
  grid-area: 2/4/3/6;
}
@media (max-width: 767px) {
  .btn32-item:nth-of-type(5) {
    grid-area: 3/2/4/4;
  }
}
.btn32-item .btn {
  width: 100%;
}

.point-btm-item {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  background: #fff;
  border-radius: var(--box-br);
  text-align: center;
  padding: 30px;
}
@media (max-width: 1024px) {
  .point-btm-item {
    padding: 20px 1.5em;
  }
}
@media (max-width: 767px) {
  .point-btm-item {
    padding: 1.5em 1em;
  }
}
.point-btm-img img {
  width: 150px;
}
@media (max-width: 767px) {
  .point-btm-img img {
    width: 100px;
  }
}
.point-btm-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ff6a56;
  margin: 20px 0 10px;
}
@media (max-width: 767px) {
  .point-btm-ttl {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .point-btm-text {
    font-size: 1.4rem;
  }
}

.point-bg-deco {
  position: relative;
}
.point-bg-deco::before {
  content: "";
  display: block;
  position: absolute;
  width: min(130px, 15vw);
  height: 100%;
  background: url("../img/feature/deco_02.png") center top no-repeat;
  background-size: 100%;
  top: -120px;
  right: calc(50% + 300px);
}
@media (max-width: 1024px) {
  .point-bg-deco::before {
    right: unset;
    left: 6%;
  }
}
@media (max-width: 767px) {
  .point-bg-deco::before {
    top: -20%;
    width: 80px;
  }
}
.point-bg-deco::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: min(130px, 12vw);
  height: 100%;
  background: url("../img/feature/deco_03.png") center bottom no-repeat;
  background-size: 100%;
  bottom: -120px;
  left: calc(50% + 570px);
}
@media only screen and (max-width: 1499px) {
  .point-bg-deco::after {
    left: unset;
    right: 3%;
    bottom: -46%;
  }
}
@media (max-width: 767px) {
  .point-bg-deco::after {
    bottom: -20%;
    width: 80px;
  }
}

/* search
---------------------------------------------------------------- */
#search {
  margin-top: -4px;
  background-image: url(../img/search/bg_pc.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#search .inner {
  padding-top: 0px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  #search .inner {
    padding-top: 20px;
    padding-bottom: 100px;
  }
}

.search-wrap {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  gap: 30px;
}
@media (max-width: 767px) {
  .search-wrap {
    width: 400px;
  }
}

/* footer
---------------------------------------------------------------- */
/* page top */
.page-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 10;
  cursor: pointer;
  width: 70px;
  height: 70px;
  background-color: #e92535;
  border: 2px solid #e92535;
  border-radius: 100%;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .page-top {
    width: 50px;
    height: 50px;
  }
}
.page-top:before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  position: absolute;
  top: 52%;
  right: 50%;
  margin: auto;
  vertical-align: middle;
  line-height: 1;
  border: 2.5px solid #fff;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translate(50%, -50%) rotate(-45deg);
}
.page-top:hover {
  background-color: #fff;
}
.page-top:hover::before {
  border-color: #e92535;
}
.page-top.js-position {
  position: absolute;
  top: -30px; /* 止まって欲しい場所を記入 */
}

/* footer */
.footer {
  position: relative;
  font-size: 16px;
  line-height: 1;
  background: #fff;
  color: #262116;
}

.footer .inner {
  padding: 30px 3%;
  text-align: center;
}

.fot-logo {
  margin-bottom: 20px;
}

.fot-logo img {
  width: 50px;
}

.copyright {
  text-align: center;
  line-height: 1.5;
  padding: 0.5em 1em 0;
}

.copyright span {
  display: inline-block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-nav a {
  padding: 0.5em 1em;
}

.footer-nav span {
  background-color: #262116;
  width: 1px;
  height: 1em;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    margin-bottom: 8px;
  }
  .footer-nav a {
    padding: 0.5em 0.6em;
  }
  .footer-nav span {
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .footer-nav span:last-of-type {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */