@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Ms+Madi&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap");
/* modern-css-reset を採用*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4A4848;
  background-color: #fff;
  letter-spacing: 0.05em;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
  display: inline-block;
}

@media (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
li,
dd {
  list-style-type: none;
}

h5,
h6 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  border: 0;
  padding: 0;
  margin: 0;
}

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

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

.is-tab {
  display: none;
}
@media screen and (max-width: 950px) {
  .is-tab {
    display: block;
  }
}

.l-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 5.333vw;
  }
}

.c-cta-btn {
  display: block;
  text-decoration: none;
  max-width: 760px;
  margin: 0 auto;
}
.c-cta-btn__sub-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}
.c-cta-btn__sub-copy::before, .c-cta-btn__sub-copy::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.c-cta-btn__sub-copy::before {
  transform: rotate(-110deg);
}
.c-cta-btn__sub-copy::after {
  transform: rotate(110deg);
}
@media screen and (max-width: 768px) {
  .c-cta-btn__sub-copy {
    font-size: 3.733vw;
    letter-spacing: 0.187vw;
    gap: 0.533vw;
    margin-bottom: 0.533vw;
  }
  .c-cta-btn__sub-copy::before, .c-cta-btn__sub-copy::after {
    width: 4vw;
  }
}
.c-cta-btn__body {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  padding-left: 255px;
  padding-right: 72px;
  overflow: visible;
  background-color: #379bce;
  background-image: repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.14) 0px, rgba(255, 255, 255, 0.14) 0.5px, transparent 2px, transparent 8px);
  border-radius: 4px;
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s ease;
}
.c-cta-btn__body::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .c-cta-btn__body {
    padding-top: 3.733vw;
    padding-bottom: 4vw;
    padding-left: 26.133vw;
    padding-right: 8vw;
    background-color: #2699d4;
    border-radius: 0.533vw;
    box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.15);
    background-image: repeating-linear-gradient(110deg, rgba(255, 255, 255, 0.08) 0px, rgba(255, 255, 255, 0.08) 0.5px, transparent 2px, transparent 6px);
  }
  .c-cta-btn__body::after {
    right: 3.467vw;
    width: 2.4vw;
    height: 2.4vw;
    border-width: 0.533vw;
  }
}
.c-cta-btn__img-wrap {
  position: absolute;
  left: -17px;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-7deg);
}
@media screen and (max-width: 768px) {
  .c-cta-btn__img-wrap {
    width: 26.667vw;
    left: -1.6vw;
    top: 2.667vw;
  }
}
.c-cta-btn__img {
  height: auto;
}
.c-cta-btn__badge {
  width: 92px;
  height: 92px;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .c-cta-btn__badge {
    width: 11.2vw;
    height: 11.2vw;
    margin-right: 2.133vw;
    border-width: 0.4vw;
  }
}
.c-cta-btn__badge-text {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  .c-cta-btn__badge-text {
    font-size: 3.733vw;
    letter-spacing: 0.187vw;
  }
}
.c-cta-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
@media screen and (max-width: 768px) {
  .c-cta-btn__text {
    gap: 0;
  }
}
.c-cta-btn__sub-title {
  margin: 0;
  font-size: 27px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1.35px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-cta-btn__sub-title {
    font-size: 3.467vw;
    font-weight: 500;
    letter-spacing: 0.173vw;
  }
}
.c-cta-btn__title {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1.7px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .c-cta-btn__title {
    font-size: 4vw;
    letter-spacing: 0.2vw;
  }
}
.c-cta-btn:hover .c-cta-btn__body {
  background-color: #4aaede;
}

.p-header {
  background-color: #fff;
  padding: 13px 0;
}
@media screen and (max-width: 768px) {
  .p-header {
    padding: 3.467vw 0;
  }
}
.p-header__inner {
  max-width: 1340px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-header__logo {
  max-width: 99px;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    max-width: 18.667vw;
  }
}
@media screen and (max-width: 768px) {
  .p-header__link {
    font-size: 3.733vw;
  }
}
.p-header__link:hover {
  opacity: 0.7;
}

.p-mv {
  background-image: url(../img/bg_paper_h.webp);
  background-size: cover;
  background-position: top left;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-mv {
    padding-bottom: 13.333vw;
  }
}
.p-mv__main {
  height: 600px;
}
@media screen and (max-width: 768px) {
  .p-mv__main {
    height: auto;
  }
}
.p-mv__wrapper {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv__wrapper {
    flex-direction: column-reverse;
  }
}
.p-mv__inner {
  max-width: 1340px;
  position: relative;
  z-index: 3;
}
.p-mv__contents {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-mv__contents {
    max-width: 415px;
    margin-top: 143px;
    padding-bottom: 168px;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__contents {
    margin-top: -0.533vw;
  }
}
.p-mv__contents::before {
  position: absolute;
  content: "";
  width: 140px;
  height: 134px;
  left: 26px;
  bottom: 0;
  background: url(../img/illust_family.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-mv__contents::before {
    width: 22.667vw;
    height: 21.6vw;
    bottom: -2.4vw;
  }
}
.p-mv__en {
  font-size: 54px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: rotate(-10deg);
  transform-origin: left center;
  color: #BCDAEA;
  text-align: left;
  margin-left: -8px;
}
@media screen and (max-width: 768px) {
  .p-mv__en {
    font-size: 10.667vw;
    transform: rotate(-7deg);
    margin-left: -3.2vw;
  }
}
.p-mv__lead {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-mv__lead {
    font-size: 5.333vw;
    margin-top: -0.533vw;
  }
}
.p-mv__ttl {
  display: block;
  font-size: 48px;
  font-weight: 500;
  margin-top: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-mv__ttl {
    font-size: 11.2vw;
    white-space: nowrap;
    margin-top: 2.667vw;
    margin-left: -3.733vw;
  }
}
.p-mv__ttl .reg {
  font-size: 32px;
  vertical-align: top;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .p-mv__ttl .reg {
    font-size: 7.467vw;
  }
}
.p-mv__sub-copy {
  display: block;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .p-mv__sub-copy {
    margin-top: 6.133vw;
    margin-left: auto;
    width: fit-content;
    text-align: left;
    font-size: 4.267vw;
    line-height: 1.7;
  }
}
@media screen and (min-width: 769px) {
  .p-mv__image {
    position: absolute;
    width: calc(50vw + 80px);
    top: 0;
    right: 0;
    height: 100%;
    min-height: 600px;
    z-index: 1;
  }
  .p-mv__image img {
    border-radius: 0 0 0 30px;
    object-fit: cover;
    object-position: center left 10%;
    object-position: center;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .p-mv__image {
    width: calc(50vw + 180px);
  }
}
@media screen and (max-width: 768px) {
  .p-mv__image {
    width: calc(100% - 5.333vw);
    margin-left: 5.333vw;
  }
  .p-mv__image img {
    border-radius: 0 0 0 5.333vw;
  }
}
.p-mv__cta {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .p-mv__cta {
    margin-top: 7.733vw;
  }
}

.p-problem-top {
  background-image: url(../img/bg_problem-top.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
.p-problem-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 600px;
  height: 667px;
  background: url(../img/bg_step.webp) no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-problem-top::before {
    width: 66.667vw;
    height: 74.133vw;
  }
}
.p-problem-top::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 698px;
  height: 771px;
  background: url(../img/bg_dining.webp) no-repeat center/contain;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-problem-top::after {
    width: 66.667vw;
    height: 73.6vw;
  }
}
.p-problem-top__bg {
  padding: 135px 0 150px;
  position: relative;
}
.p-problem-top__bg::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 322px;
  background: rgba(141, 132, 113, 0.55);
  background: linear-gradient(0deg, rgba(141, 132, 113, 0) 0%, rgba(141, 132, 113, 0.55) 100%);
}
@media screen and (max-width: 768px) {
  .p-problem-top__bg {
    padding: 13.333vw 0;
  }
  .p-problem-top__bg::after {
    height: 26.667vw;
  }
}
.p-problem-top__inner {
  position: relative;
  z-index: 3;
}
.p-problem-top__ttl {
  font-weight: 500;
  font-size: 46px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-problem-top__ttl {
    font-size: 7.467vw;
    padding-left: 3.467vw;
  }
}
.p-problem-top__contents {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-problem-top__contents {
    margin-top: 21.333vw;
  }
}
.p-problem-top__box.problem1, .p-problem-top__box.problem2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-problem-top__box.problem1, .p-problem-top__box.problem2 {
    flex-direction: column;
    position: relative;
  }
}
.p-problem-top__box.problem2 {
  flex-direction: row-reverse;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-problem-top__box.problem2 {
    flex-direction: column;
    margin-top: 25.333vw;
  }
}
.p-problem-top__box.problem3 {
  margin-top: 177px;
}
@media screen and (max-width: 768px) {
  .p-problem-top__box.problem3 {
    margin-top: 24vw;
  }
}
.p-problem-top__image {
  width: 52.7%;
}
@media screen and (max-width: 768px) {
  .p-problem-top__image {
    width: 100%;
    position: absolute;
    top: 17.867vw;
  }
}
.p-problem-top .problem1 .p-problem-top__image img {
  border-radius: 30px 0 0 0;
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem1 .p-problem-top__image img {
    border-radius: 5.333vw 0 0 0;
  }
}
.p-problem-top .problem2 .p-problem-top__image img {
  border-radius: 0 30px 0 0;
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem2 .p-problem-top__image img {
    border-radius: 0 5.333vw 0 0;
  }
}
.p-problem-top__text {
  width: 40.9%;
  margin-top: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-problem-top__text {
    width: 100%;
    margin-top: 0;
  }
}
.p-problem-top .problem3 .p-problem-top__text {
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem3 .p-problem-top__text {
    width: 100%;
  }
}
.p-problem-top__en {
  display: inline-block;
  position: absolute;
  top: -47px;
  left: -108px;
  line-height: 1;
  transform: rotate(-8deg);
  font-size: 40px;
  color: #C2BEB4;
}
@media screen and (max-width: 768px) {
  .p-problem-top__en {
    font-size: 6.4vw;
    top: -9.067vw;
    left: 0;
  }
}
.p-problem-top .problem2 .p-problem-top__en {
  left: -60px;
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem2 .p-problem-top__en {
    left: 0;
  }
}
.p-problem-top .problem3 .p-problem-top__en {
  left: -64px;
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem3 .p-problem-top__en {
    left: 0;
    top: -8.533vw;
  }
}
.p-problem-top__heading {
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-problem-top__heading {
    font-size: 7.2vw;
  }
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem1 .p-problem-top__heading,
  .p-problem-top .problem2 .p-problem-top__heading {
    margin-bottom: 74.667vw;
  }
}
.p-problem-top .problem3 .p-problem-top__heading {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem3 .p-problem-top__heading {
    text-align: left;
  }
}
.p-problem-top__sub-heading {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-problem-top__sub-heading {
    font-size: 3.733vw;
    text-align: left;
  }
}
.p-problem-top__item {
  font-size: 18px;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 28px;
}
.p-problem-top__item::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  top: 0;
  left: 0;
  transform: translateY(36%);
  background: url(../img/icon_check-box.svg) no-repeat center/contain;
}
.p-problem-top__item .marker {
  background: linear-gradient(transparent 60%, #FFEBB2 40%);
}
@media screen and (max-width: 768px) {
  .p-problem-top__item {
    font-size: 4.267vw;
    letter-spacing: 0.04em;
  }
  .p-problem-top__item .marker {
    background: linear-gradient(transparent 60%, #FFF0C4 40%);
  }
}
.p-problem-top__item:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-problem-top__item:not(:first-child) {
    margin-top: 4.267vw;
  }
}
.p-problem-top__lead {
  font-size: 22px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-problem-top__lead {
    font-size: 4.8vw;
    line-height: 1.9;
  }
}
.p-problem-top__desc {
  margin-top: 23px;
  line-height: 2;
  font-size: 17px;
  text-align: justify;
}
.p-problem-top__desc .marker {
  background: linear-gradient(transparent 60%, #FFEBB2 40%);
}
@media screen and (max-width: 768px) {
  .p-problem-top__desc {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem2 .p-problem-top__desc {
    margin-top: 3.733vw;
  }
}
.p-problem-top__card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin-top: 38px;
}
@media screen and (max-width: 1100px) {
  .p-problem-top__card-list {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-problem-top__card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.467vw;
    margin-top: -1.067vw;
  }
}
@media screen and (min-width: 769px) {
  .p-problem-top__card-item:nth-child(2) {
    margin-top: 50px;
  }
}
@media screen and (min-width: 769px) {
  .p-problem-top__card-item:nth-child(3) {
    margin-top: 100px;
  }
}
@media screen and (min-width: 769px) {
  .p-problem-top .problem2 .p-problem-top__image {
    position: relative;
    z-index: 2;
  }
}
.p-problem-top .problem2 .p-problem-top__image::before {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -49px;
  width: 329px;
  height: 224px;
  transform: translateY(-50%);
  background: url(../img/illust_floor-plan.webp) no-repeat center/contain;
  z-index: -1;
}
@media screen and (max-width: 1250px) {
  .p-problem-top .problem2 .p-problem-top__image::before {
    right: 20px;
    bottom: -130px;
  }
}
@media screen and (max-width: 1000px) {
  .p-problem-top .problem2 .p-problem-top__image::before {
    bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .p-problem-top .problem2 .p-problem-top__image::before {
    content: none;
  }
}

.p-card {
  background-color: #fff;
  border: 1px solid #C5C1B7;
  border-radius: 10px;
  padding: 30px 20px;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .p-card {
    padding: 4vw 5.333vw 5.333vw;
  }
}
.p-card__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-card__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .p-card__icon {
    width: 6.933vw;
    height: 6.933vw;
    margin-right: 2.133vw;
  }
}
.p-card__heading {
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-card__heading {
    font-size: 5.6vw;
  }
}
.p-card__body {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-card__body {
    margin-top: 3.2vw;
  }
}
.p-card__item {
  background-color: #F8F6EF;
  padding: 18px 20px 15px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .p-card__item {
    padding: 4.8vw 5.333vw;
  }
}
.p-card__item:not(:first-child) {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-card__item:not(:first-child) {
    margin-top: 2.667vw;
  }
}
.p-card__voice {
  line-height: 1.8;
  text-align: justify;
}
.p-card__voice .marker {
  background: linear-gradient(transparent 60%, #FFEBB2 40%);
}
@media screen and (max-width: 768px) {
  .p-card__voice .marker {
    background: linear-gradient(transparent 60%, #FFF0C4 40%);
  }
}
@media screen and (max-width: 768px) {
  .p-card__voice {
    font-size: 4vw;
  }
}
.p-card__attribute {
  color: #6D6B6A;
  font-size: 15px;
  text-align: right;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-card__attribute {
    font-size: 3.467vw;
    margin-top: 3.2vw;
  }
}

.p-problem-bottom {
  background: url(../img/bg_problem-bottom.webp) no-repeat center/cover;
  padding: 140px 0 135px;
}
@media screen and (max-width: 768px) {
  .p-problem-bottom {
    padding: 10.667vw 0 13.333vw;
    background: url(../img/bg_problem-bottom_sp.webp) no-repeat center/cover;
  }
}
.p-problem-bottom__heading {
  font-size: 38px;
  font-weight: 400;
  color: #fff;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__heading {
    font-size: 5.333vw;
    font-weight: 500;
  }
}
.p-problem-bottom__check-list {
  max-width: 980px;
  margin: 25px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__check-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.533vw;
    margin-top: 7.467vw;
  }
}
.p-problem-bottom__check-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.p-problem-bottom__check-icon {
  width: 30px;
  height: 20px;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__check-icon {
    width: 6.133vw;
    height: 4.267vw;
  }
}
.p-problem-bottom__check-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 110px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__check-card {
    min-height: auto;
    padding: 6.133vw 4.267vw;
  }
}
.p-problem-bottom__check-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__check-text {
    font-size: 4.267vw;
  }
}
.p-problem-bottom__main-copy {
  position: relative;
  max-width: 600px;
  margin: 40px auto 0;
}
.p-problem-bottom__main-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(80, 76, 70, 0.6);
  border-radius: 6px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__main-copy::before {
    mix-blend-mode: normal;
  }
}
.p-problem-bottom__main-copy::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__main-copy::after {
    border-width: 0.133vw;
  }
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__main-copy {
    width: 100%;
    margin-top: 9.333vw;
  }
}
.p-problem-bottom__main-copy-text {
  position: relative;
  z-index: 1;
  padding: 20px 24px;
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}
.p-problem-bottom__main-copy-text strong {
  font-size: 34px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-problem-bottom__main-copy-text {
    padding: 10.667vw 4.267vw;
    font-size: 4.8vw;
  }
  .p-problem-bottom__main-copy-text strong {
    font-size: 5.333vw;
  }
}

.p-solution {
  position: relative;
  overflow: hidden;
  background-image: url(../img/bg_paper_h.webp);
  background-size: cover;
  background-position: top left;
}
@media screen and (max-width: 768px) {
  .p-solution {
    padding-bottom: 6.667vw;
  }
}
.p-solution__ttl {
  position: relative;
  z-index: 1;
  padding: 62px 20px 52px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-solution__ttl {
    padding: 13.867vw 5.333vw 8.8vw;
  }
}
.p-solution__catch {
  position: relative;
  display: inline-block;
  font-size: 34px;
  line-height: 1.5;
  margin: 0 0 10px;
}
@media screen and (max-width: 768px) {
  .p-solution__catch {
    margin-bottom: 7.467vw;
    font-size: 6.4vw;
  }
}
.p-solution__catch::after {
  position: absolute;
  content: "";
  top: -26px;
  right: -24px;
  width: 52px;
  height: 42px;
  background: url(../img/deco_solution.webp) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-solution__catch::after {
    top: -4.8vw;
    right: -4.8vw;
    width: 9.6vw;
    height: 7.733vw;
  }
}
.p-solution__heading {
  letter-spacing: 0.06em;
  margin: 0;
  font-weight: 500;
}
.p-solution__heading-sub {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .p-solution__heading-sub {
    display: block;
    font-size: 5.6vw;
  }
}
.p-solution__heading-main {
  font-size: 48px;
}
@media screen and (max-width: 768px) {
  .p-solution__heading-main {
    display: block;
    font-size: 9.067vw;
  }
}
.p-solution__visual {
  position: relative;
  display: flex;
  height: 506px;
}
@media screen and (max-width: 768px) {
  .p-solution__visual {
    flex-direction: column;
    height: auto;
  }
}
.p-solution__img {
  overflow: hidden;
}
.p-solution__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-solution__img--left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-solution__img--left {
    width: 100%;
  }
  .p-solution__img--left img {
    object-fit: contain;
    height: auto;
  }
}
.p-solution__img--right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-solution__img--right {
    display: none;
  }
}
.p-solution__card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.12), -4px -4px 10px rgba(0, 0, 0, 0.12);
  text-align: center;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .p-solution__card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__card {
    width: calc(100% - 10.667vw);
    margin: -24px auto 0;
    height: 58.667vw;
    position: relative;
  }
}
.p-solution__card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid #3196ca;
  border-radius: 4px;
  pointer-events: none;
}
.p-solution__card::after {
  position: absolute;
  content: "";
  border-radius: 4px;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: url(../img/bg_note.webp) no-repeat center/cover;
  transform: translate(-50%, -50%);
  top: 50%;
}
.p-solution__card-en {
  display: inline-block;
  font-size: 60px;
  color: #bcdaea;
  line-height: 1;
  transform: rotate(-10deg);
  margin-left: -256px;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .p-solution__card-en {
    font-size: 13.333vw;
    margin-top: -3.2vw;
    margin-left: -47.467vw;
  }
}
.p-solution__card-text p {
  font-size: 24px;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-solution__card-text p {
    font-size: 5.6vw;
  }
}
.p-solution__card-accent {
  font-size: 32px;
  color: #3196ca;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-solution__card-accent {
    font-size: 7.467vw;
  }
}

.p-pre-idea {
  padding: 59px 0;
  background: #007DBD;
  background: linear-gradient(300deg, rgba(0, 125, 189, 0.9) 0%, rgba(49, 150, 202, 0.9) 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-pre-idea {
    padding: 11.467vw 0 15.2vw;
  }
}
@media screen and (max-width: 768px) {
  .p-pre-idea::before {
    content: "";
    position: absolute;
    width: 8vw;
    height: 4vw;
    bottom: 6.4vw;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/icon_scroll.svg) no-repeat center/contain;
  }
}
.p-pre-idea::after {
  position: absolute;
  content: "";
  width: 241px;
  height: 209px;
  top: 94px;
  left: 50%;
  transform: translateX(382px);
  background: url(../img/illust_room.webp) no-repeat center/contain;
  z-index: 10;
}
@media screen and (max-width: 1300px) {
  .p-pre-idea::after {
    width: 180px;
    height: 156px;
    top: 200px;
    transform: translateX(300px);
  }
}
@media screen and (max-width: 1000px) {
  .p-pre-idea::after {
    display: none;
  }
}
.p-pre-idea__ttl {
  color: #fff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.06em;
}
.p-pre-idea__ttl-top, .p-pre-idea__ttl-line {
  display: block;
}
@media screen and (min-width: 769px) {
  .p-pre-idea__ttl {
    font-size: 44px;
  }
  .p-pre-idea__ttl-middle, .p-pre-idea__ttl-bottom {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .p-pre-idea__ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
  }
  .p-pre-idea__ttl-top {
    font-size: 6.133vw;
    line-height: 1.45;
  }
  .p-pre-idea__ttl-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 5.333vw;
  }
  .p-pre-idea__ttl-middle {
    font-size: 5.6vw;
    line-height: 1.45;
  }
  .p-pre-idea__ttl-bottom {
    font-size: 9.067vw;
    line-height: 1.2;
    margin-top: 3.25vw;
  }
}

.p-idea {
  position: relative;
  overflow: hidden;
  background-image: url(../img/bg_paper_v.webp);
  background-size: cover;
  background-position: top left;
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .p-idea {
    padding: 20.8vw 0 18.667vw;
  }
}
.p-idea__inner {
  z-index: 3;
}
@media screen and (min-width: 769px) {
  .p-idea__inner {
    position: relative;
  }
}
.p-idea__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .p-idea__head {
    min-height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .p-idea__head {
    flex-direction: column-reverse;
  }
}
.p-idea__en {
  position: absolute;
  font-size: 60px;
  color: rgba(49, 150, 202, 0.7);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: rotate(-8deg);
  transform-origin: left center;
  z-index: 2;
  top: -38px;
  left: -39px;
}
@media screen and (max-width: 1200px) {
  .p-idea__en {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-idea__en {
    top: -4vw;
    left: 5.067vw;
    font-size: 8vw;
    color: rgba(49, 150, 202, 0.6);
    transform: rotate(-7deg);
  }
}
@media screen and (min-width: 769px) {
  .p-idea__mv {
    position: absolute;
    width: calc(50vw + 335px);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    min-height: 450px;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-idea__mv {
    margin-left: 5.333vw;
    width: 94.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-idea__mv picture {
    height: 100%;
  }
}
@media screen and (min-width: 769px) {
  .p-idea__mv img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 60px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .p-idea__mv img {
    border-radius: 5.333vw 0 0 0;
  }
}
.p-idea__ttl-wrap {
  z-index: 2;
  margin-top: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-idea__ttl-wrap {
    margin-top: 5.333vw;
  }
}
.p-idea__ttl {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-idea__ttl {
    font-size: 6.4vw;
  }
}
.p-idea__ttl-row {
  display: block;
  width: fit-content;
  background-color: rgba(247, 247, 247, 0.8);
  padding: 0 4px;
  margin: 2px 0;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-idea__ttl-row {
    background-color: transparent;
    padding: 0;
    width: auto;
  }
}
.p-idea__ttl-row .ls0 {
  letter-spacing: normal;
}
.p-idea__ttl-row .ls-30 {
  letter-spacing: -0.3em;
}
.p-idea__ttl-row .small {
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  .p-idea__ttl-row .small {
    font-size: 4.8vw;
  }
}
.p-idea__reg {
  font-size: 28px;
  vertical-align: top;
  padding-right: 7px;
}
@media screen and (max-width: 768px) {
  .p-idea__reg {
    font-size: 5.333vw;
    padding-right: 0;
  }
}
.p-idea__note {
  font-size: 13px;
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-idea__note {
    margin-top: 4vw;
    font-size: 2.667vw;
  }
}
.p-idea__sup {
  font-size: 0.35em;
  vertical-align: super;
  letter-spacing: normal;
}
.p-idea__body {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-idea__body {
    margin-top: 18.667vw;
  }
}
.p-idea__box:not(:first-child) {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-idea__box:not(:first-child) {
    margin-top: 15.467vw;
  }
}
.p-idea__box:nth-child(2 of .p-idea__box) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-idea__box:nth-child(2 of .p-idea__box) {
    flex-direction: column-reverse;
  }
}
.p-idea__box:nth-child(2 of .p-idea__box) .p-idea-box__image {
  margin-right: 0;
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .p-idea__box:nth-child(2 of .p-idea__box) .p-idea-box__image {
    margin-left: 0;
  }
}

.p-idea1 .p-idea__body {
  margin-top: 93px;
}
@media screen and (max-width: 768px) {
  .p-idea1 .p-idea__body {
    margin-top: 18.933vw;
  }
}

@media screen and (max-width: 768px) {
  .p-idea1 .p-idea__box:first-child .p-idea-box__text {
    margin-top: -5.867vw;
  }
}

.p-idea2 {
  background-image: url(../img/bg_idea2.webp);
}

.p-idea2 .p-idea__ttl-row {
  background-color: rgba(239, 238, 235, 0.8);
}

.p-idea-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-idea-box {
    flex-direction: column-reverse;
  }
}
.p-idea-box__image {
  flex: 0 0 50%;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .p-idea-box__image {
    width: 100%;
    margin-top: 7.467vw;
    margin-right: 0;
  }
}
.p-idea-box__text {
  flex: 1;
  max-width: 450px;
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-idea-box__text {
    margin-top: 0;
    max-width: 100%;
  }
}
.p-idea-box__label {
  display: inline-block;
  font-size: 60px;
  color: rgba(188, 218, 234, 0.7);
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-8deg);
  transform-origin: left center;
  margin-left: -50px;
}
@media screen and (max-width: 768px) {
  .p-idea-box__label {
    font-size: 8vw;
    color: #bcdaea;
    transform: rotate(-7deg);
    margin-bottom: 5.067vw;
    margin-left: 0;
  }
}
.p-idea-box__heading {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.8;
  margin: -23px 0 11px;
}
@media screen and (max-width: 768px) {
  .p-idea-box__heading {
    font-size: 5.867vw;
    margin-bottom: 2.933vw;
  }
}
.p-idea-box__sup {
  font-size: 0.47em;
  vertical-align: super;
  letter-spacing: normal;
}
.p-idea-box__line {
  width: 100%;
  height: 2px;
  background-position: left center;
  height: 5px; /* 点線の太さ */
  background-image: linear-gradient(to right, #7CBADA 2px, transparent 2px);
  background-size: 8px 5px; /* 間隔、高さ */
  background-repeat: repeat-x;
}
.p-idea-box__illust {
  width: 331px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
.p-idea-box__illust img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-idea-box__illust {
    width: 75.733vw;
    margin-top: 3.467vw;
    margin-bottom: 6.933vw;
  }
}
.p-idea-box__desc {
  font-size: 17px;
  line-height: 2;
  text-align: justify;
  margin-top: 27px;
}
.p-idea-box__desc p {
  margin: 0;
}
.p-idea-box__desc .marker {
  display: inline-block;
  background: linear-gradient(transparent 65%, #FFEBB2 35%);
}
.p-idea-box__desc ul {
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .p-idea-box__desc ul {
    margin-bottom: 6.133vw;
  }
}
@media screen and (max-width: 768px) {
  .p-idea-box__desc ul p {
    font-size: 4.267vw;
  }
}
@media screen and (max-width: 768px) {
  .p-idea-box__desc {
    font-size: 4vw;
    margin-top: 5.867vw;
  }
}
.p-idea-box__note {
  font-size: 13px;
  line-height: 2;
  margin-top: 20px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-idea-box__note {
    font-size: 2.667vw;
    text-align: justify;
    margin-top: 3.467vw;
    letter-spacing: 0.05em;
  }
}

.p-dilemma {
  position: relative;
  margin-top: -120px;
  padding-top: 105px;
}
@media screen and (max-width: 768px) {
  .p-dilemma {
    margin-top: -25.333vw;
  }
}
.p-dilemma::before {
  position: absolute;
  content: "";
  width: calc(50vw + 130px);
  height: 178px;
  top: 0;
  left: 50%;
  transform: translateX(-130px);
  background-color: rgba(212, 208, 192, 0.4);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .p-dilemma::before {
    height: 29.333vw;
    width: 75.867vw;
    transform: translateX(-97px);
    top: 12.8vw;
  }
}
.p-dilemma__wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-dilemma__wrapper {
    padding-bottom: 32.533vw;
  }
}
.p-dilemma__wrapper::before, .p-dilemma__wrapper::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.p-dilemma__wrapper::before {
  width: 350px;
  height: 186px;
  top: 72px;
  left: -82px;
  background: url(../img/illust_woman.webp) no-repeat center/contain;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-dilemma__wrapper::before {
    width: 53.333vw;
    height: 28.267vw;
    top: 58.4vw;
    left: 14.4vw;
  }
}
.p-dilemma__wrapper::after {
  width: 380px;
  height: 185px;
  top: 9px;
  right: -112px;
  background: url(../img/illust_man.webp) no-repeat center/contain;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-dilemma__wrapper::after {
    content: none;
  }
}
.p-dilemma__text {
  text-align: center;
  position: relative;
  z-index: 3;
}
.p-dilemma__en {
  display: inline-block;
  font-size: 40px;
  color: #C2BEB4;
  line-height: 1;
  white-space: nowrap;
  transform: rotate(-8deg);
  transform-origin: left center;
  margin-left: -228px;
}
@media screen and (max-width: 768px) {
  .p-dilemma__en {
    font-size: 8vw;
    margin-left: -41.333vw;
  }
}
.p-dilemma__heading {
  font-size: 34px;
  font-weight: 500;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .p-dilemma__heading {
    font-size: 6.4vw;
    margin-top: -3.733vw;
  }
}
.p-dilemma__desc {
  margin-top: 30px;
  font-size: 17px;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .p-dilemma__desc {
    font-size: 4.267vw;
    margin-top: 6.4vw;
    line-height: 2;
  }
}
.p-dilemma .marker {
  background: linear-gradient(transparent 65%, #EDE7A7 35%);
}

.p-contact__top-inner {
  display: grid;
  grid-template-columns: 410px 1fr 410px;
  grid-template-areas: "photo-left top-heading photo-right" "photo-left top-body photo-right";
  height: 550px;
  overflow: hidden;
}
@media screen and (max-width: 1275px) {
  .p-contact__top-inner {
    grid-template-columns: 280px 1fr 280px;
  }
}
@media screen and (max-width: 1000px) {
  .p-contact__top-inner {
    grid-template-columns: 220px 1fr 220px;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__top-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "top-heading top-heading" "photo-left photo-right" "top-body top-body";
    position: relative;
    overflow: visible;
    background: linear-gradient(269deg, #2791c7 0%, #45a0cf 100%);
    padding: 0 5.333vw;
    height: auto;
  }
}
.p-contact__top-heading {
  grid-area: top-heading;
  position: relative;
  padding-top: 140px;
}
@media screen and (min-width: 769px) {
  .p-contact__top-heading::before {
    content: "";
    position: absolute;
    width: 100%;
    min-height: 550px;
    top: 0;
    left: 0;
    background: linear-gradient(268deg, #3397ca 0%, #4fa5d2 100%);
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__top-heading {
    padding-top: 20.8vw;
    padding-bottom: 6.4vw;
  }
}
.p-contact__en {
  font-size: 60px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  transform: rotate(-10deg) translate(-90%, -50%);
  display: inline-block;
  position: absolute;
  top: 97px;
  left: 50%;
}
@media screen and (max-width: 1000px) {
  .p-contact__en {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__en {
    font-size: 13.333vw;
    top: 11.467vw;
  }
}
.p-contact__title {
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 9.067vw;
  }
}
.p-contact__top-body {
  grid-area: top-body;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__top-body {
    padding-bottom: 7.467vw;
  }
}
.p-contact__lead {
  margin: 10px 0 0;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  line-height: 1.9;
}
@media screen and (max-width: 1000px) {
  .p-contact__lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .p-contact__lead {
    margin-top: 5.867vw;
    font-size: 4.8vw;
    font-weight: 500;
  }
}
.p-contact__scroll {
  display: inline-block;
  margin-top: 70px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-contact__scroll {
    margin-top: 6.933vw;
  }
}
.p-contact__scroll img {
  width: 45px;
}
@media screen and (max-width: 768px) {
  .p-contact__scroll img {
    width: 8vw;
  }
}
.p-contact__photo-left {
  grid-area: photo-left;
  overflow: hidden;
}
.p-contact__photo-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-contact__photo-right {
  grid-area: photo-right;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.p-contact__photo-right img {
  flex: 1;
  width: 100%;
  object-fit: cover;
}
.p-contact__bottom {
  position: relative;
  padding: 60px 0 60px;
  background-image: url(../img/bg_paper_v.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-contact__bottom {
    padding: 12vw 0 13.333vw;
  }
}
.p-contact__deco {
  position: absolute;
  top: 48px;
  left: 83%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  width: 169px;
}
@media screen and (max-width: 768px) {
  .p-contact__deco {
    left: 87%;
    top: 3.2vw;
    width: 18.667vw;
  }
}
.p-contact__bottom-inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .p-contact__bottom-inner {
    padding: 0 5.333vw;
  }
}
.p-contact__bottom-text {
  font-size: 20px;
  line-height: 2.1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact__bottom-text {
    font-size: 4vw;
  }
}
.p-contact__btn-wrap {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-contact__btn-wrap {
    margin-top: 7.2vw;
  }
}

.p-oricon {
  position: relative;
}
.p-oricon__note {
  position: absolute;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.972vw;
  bottom: 2.778vw;
  left: 53.4vw;
}
@media screen and (max-width: 768px) {
  .p-oricon__note {
    font-size: 2.933vw;
    bottom: 5.333vw;
    left: 5.333vw;
    max-width: 89.333vw;
    text-align: justify;
  }
}
.p-oricon__note .reg {
  vertical-align: top;
  font-size: 0.694vw;
}
@media screen and (max-width: 768px) {
  .p-oricon__note .reg {
    font-size: 1.867vw;
  }
}

.p-footer {
  background-color: #373737;
  color: #fff;
  padding: 28px 0;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding: 6.933vw 0 27.2vw;
  }
}
.p-footer__inner {
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__left {
    margin-top: 6.933vw;
  }
}
.p-footer__right {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .p-footer__right {
    margin-left: 0;
  }
}
.p-footer__privacy {
  font-size: 17px;
  display: inline-block;
  padding-right: 30px;
  position: relative;
}
.p-footer__privacy::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 14px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_window.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-footer__privacy {
    font-size: 4vw;
    padding-right: 6.933vw;
  }
  .p-footer__privacy::after {
    width: 3.733vw;
    height: 2.933vw;
  }
}
.p-footer__privacy:hover {
  opacity: 0.7;
}
.p-footer__copy {
  color: #C3C3C3;
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-footer__copy {
    font-size: 2.933vw;
    margin-top: 3.2vw;
  }
}
.p-footer__note {
  font-size: 15px;
  color: #D9D9D9;
}
@media screen and (max-width: 768px) {
  .p-footer__note {
    font-size: 3.467vw;
    line-height: 1.6;
  }
}

.p-footer-cta {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-footer-cta {
    display: block;
    width: 100%;
    transform: translateY(150%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none; /* 非表示時のクリックイベントを無効化 */
    z-index: 20;
    padding: 1.6vw 0 1.6vw;
    background: rgba(255, 255, 255, 0.6);
  }
  .p-footer-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; /* 表示時のクリックイベントを有効化 */
  }
  .p-footer-cta .c-cta-btn__body {
    padding-top: 3vw;
    padding-bottom: 3vw;
  }
  .p-footer-cta .c-cta-btn__img-wrap {
    top: 1.5vw;
  }
}

.u-separate {
  margin: 24px 0;
}

.u-text-blue {
  color: #3196CA;
}

.u-text-en {
  font-family: "Ms Madi", cursive;
  letter-spacing: normal;
  font-weight: 400;
}/*# sourceMappingURL=style.css.map */