@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

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

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

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-size: 10px !important;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}

a,
img {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
}

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

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

.l__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.header {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.header__inner {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 33px;
}
.header__box {
  position: absolute;
  display: flex;
  padding: 11px 12px 14px 27px;
  box-shadow: 6px 0 8px rgba(0, 0, 0, 0.1), 0 6px 8px rgba(0, 0, 0, 0.15);
  background: #fff;
  top: 0;
  left: 0;
}
.header__box--border {
  position: absolute;
  width: 100%;
  height: 6px;
  left: 0;
  bottom: 0;
  background: #e19e9e;
}
.header__logo {
  width: 71px;
  height: 70px;
  margin-right: 23px;
}
.header .site-title {
  font-size: 32px;
  color: #d58190;
  text-align: center;
}
.header .site-title--small {
  font-size: 24px;
  color: #ff7373;
}
.header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav-item {
  font-size: 16px;
  color: #d58190;
  padding-left: 25px;
}

@media screen and (max-width: 1440px) {
  .header {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .header__inner {
    height: 5.556vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 2.292vw;
  }
  .header__box {
    position: absolute;
    display: flex;
    padding: 0.764vw 0.833vw 0.972vw 1.875vw;
    box-shadow: 6px 0 8px rgba(0, 0, 0, 0.1), 0 6px 8px rgba(0, 0, 0, 0.15);
    background: #fff;
    top: 0;
    left: 0;
  }
  .header__box--border {
    position: absolute;
    width: 100%;
    height: 0.417vw;
    left: 0;
    bottom: 0;
    background: #e19e9e;
  }
  .header__logo {
    width: 4.931vw;
    height: 4.861vw;
    margin-right: 1.597vw;
  }
  .header .site-title {
    font-size: 2.222vw;
    color: #d58190;
    text-align: center;
  }
  .header .site-title--small {
    font-size: 1.667vw;
    color: #ff7373;
  }
  .header__nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__nav-item {
    font-size: 1.111vw;
    color: #d58190;
    padding-left: 1.736vw;
  }
}
.fv {
  padding-bottom: 51px;
}
.fv__inner {
  position: relative;
}
.fv__bg-circle {
  position: absolute;
  top: 88px;
  left: -141px;
  width: 596px;
  height: 596px;
  background: rgba(213, 129, 144, 0.16);
  filter: blur(10px);
  border-radius: 50%;
}
.fv__content {
  padding-top: 210px;
}
.fv__title {
  position: relative;
  padding-left: 30px;
  font-weight: 900;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0.02em;
  background: linear-gradient(89.82deg, #ff7373 0.15%, #2fa0cf 67.7%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fv__title--border {
  position: absolute;
  width: 7px;
  height: 119px;
  background: #ff7373;
  top: 14px;
  left: 0;
}
.fv__subtext {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #585858;
  margin-top: 73px;
  margin-left: 19px;
}
.fv__buttons {
  margin: 54px 0 0 19px;
  width: 450px;
}
.fv__button {
  position: relative;
  display: block;
  width: 100%;
}
.fv__button--primary {
  height: 107px;
  background: url(../img/fv__btn1--back.webp);
  background-size: 100%;
}
.fv__button--primary--back {
  position: absolute;
  display: block;
  width: 100%;
  height: 87.95px;
  background: url(../img/fv__btn1--textback.webp);
  background-size: 100%;
  padding: 22.5px 0 22.5px 104px;
  color: #fff;
  bottom: 0;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.2em;
}
.fv__button--secondary {
  height: 69px;
  background: url(../img/fv__btn2--back.webp);
  background-size: 100%;
  margin-top: 20px;
}
.fv__button--secondary--back {
  position: absolute;
  display: block;
  width: 100%;
  height: 56.72px;
  background: url(../img/fv__btn2--textback.webp);
  background-size: 100%;
  padding: 14px 0 14px 52px;
  color: #fff;
  bottom: 0;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.2em;
}
.fv__arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 40px;
  height: 3px;
  background: currentColor;
  transition: transform 0.3s ease;
}
.fv__arrow-right-primary {
  margin-left: 39px;
  margin-top: -8px;
}
.fv__arrow-right-secondary {
  margin-left: 15px;
  margin-top: -6px;
}
.fv__arrow-right:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
.fv__button:hover .fv__arrow-right {
  transform: translateX(15px);
}
.fv__visual {
  position: absolute;
  top: 0;
  right: 0;
}
.fv__image-wrapper {
  position: absolute;
  width: 854px;
  height: 520px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 22px;
  top: 97px;
  right: 57px;
  z-index: 4;
}
.fv__bg-rect--1 {
  position: absolute;
  width: 558.82px;
  height: 373px;
  right: 179.18px;
  top: 14px;
  background: rgba(47, 61, 141, 0.3);
  filter: blur(6px);
  border-radius: 5px;
}
.fv__bg-rect--2 {
  position: absolute;
  width: 533.93px;
  height: 356px;
  right: 33.07px;
  top: 31px;
  background: rgba(47, 160, 207, 0.3);
  filter: blur(1.5px);
  border-radius: 5px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.fv__bg-rect--3 {
  position: absolute;
  width: 581.93px;
  height: 388px;
  right: 354px;
  top: 61px;
  background: rgba(255, 189, 123, 0.3);
  filter: blur(1px);
  border-radius: 6px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

@media screen and (max-width: 1440px) {
  .fv {
    padding-bottom: 3.542vw;
  }
  .fv__inner {
    position: relative;
  }
  .fv__bg-circle {
    position: absolute;
    top: 6.111vw;
    left: -9.792vw;
    width: 41.389vw;
    height: 41.389vw;
    background: rgba(213, 129, 144, 0.16);
    filter: blur(10px);
    border-radius: 50%;
  }
  .fv__content {
    padding-top: 14.583vw;
  }
  .fv__title {
    position: relative;
    padding-left: 2.083vw;
    font-weight: 900;
    font-size: 3.333vw;
    line-height: 4.028vw;
    letter-spacing: 0.02em;
    background: linear-gradient(89.82deg, #ff7373 0.15%, #2fa0cf 67.7%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .fv__title--border {
    position: absolute;
    width: 0.486vw;
    height: 8.264vw;
    background: #ff7373;
    top: 0.972vw;
    left: 0;
  }
  .fv__subtext {
    font-weight: 500;
    font-size: 1.25vw;
    line-height: 1.528vw;
    letter-spacing: 0.02em;
    color: #585858;
    margin-top: 5.069vw;
    margin-left: 1.319vw;
  }
  .fv__buttons {
    margin: 3.75vw 0 0 1.319vw;
    width: 31.25vw;
  }
  .fv__button {
    position: relative;
    display: block;
    width: 100%;
  }
  .fv__button--primary {
    height: 7.431vw;
    background: url(../img/fv__btn1--back.webp);
    background-size: 100%;
  }
  .fv__button--primary--back {
    position: absolute;
    display: block;
    width: 100%;
    height: 6.108vw;
    background: url(../img/fv__btn1--textback.webp);
    background-size: 100%;
    padding: 1.563vw 0 1.563vw 7.222vw;
    color: #fff;
    bottom: 0;
    font-size: 2.5vw;
    line-height: 2.986vw;
    letter-spacing: 0.2em;
  }
  .fv__button--secondary {
    height: 4.792vw;
    background: url(../img/fv__btn2--back.webp);
    background-size: 100%;
    margin-top: 1.389vw;
  }
  .fv__button--secondary--back {
    position: absolute;
    display: block;
    width: 100%;
    height: 3.939vw;
    background: url(../img/fv__btn2--textback.webp);
    background-size: 100%;
    padding: 0.972vw 0 0.972vw 3.611vw;
    color: #fff;
    bottom: 0;
    font-size: 1.667vw;
    line-height: 2.014vw;
    letter-spacing: 0.2em;
  }
  .fv__arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    position: relative;
    width: 2.778vw;
    height: 0.208vw;
    background: currentColor;
    transition: transform 0.3s ease;
  }
  .fv__arrow-right-primary {
    margin-left: 2.708vw;
    margin-top: -0.556vw;
  }
  .fv__arrow-right-secondary {
    margin-left: 1.042vw;
    margin-top: -0.417vw;
  }
  .fv__arrow-right:before {
    content: "";
    width: 1.25vw;
    height: 1.25vw;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
  }
  .fv__button:hover .fv__arrow-right {
    transform: translateX(15px);
  }
  .fv__visual {
    position: absolute;
    top: 0;
    right: 0;
  }
  .fv__image-wrapper {
    position: absolute;
    width: 59.306vw;
    height: 36.111vw;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 1.528vw;
    top: 6.736vw;
    right: 3.958vw;
    z-index: 4;
  }
  .fv__bg-rect--1 {
    position: absolute;
    width: 38.807vw;
    height: 25.903vw;
    right: 12.443vw;
    top: 0.972vw;
    background: rgba(47, 61, 141, 0.3);
    filter: blur(6px);
    border-radius: 0.347vw;
  }
  .fv__bg-rect--2 {
    position: absolute;
    width: 37.078vw;
    height: 24.722vw;
    right: 2.297vw;
    top: 2.153vw;
    background: rgba(47, 160, 207, 0.3);
    filter: blur(1.5px);
    border-radius: 0.347vw;
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }
  .fv__bg-rect--3 {
    position: absolute;
    width: 40.412vw;
    height: 26.944vw;
    right: 24.583vw;
    top: 4.236vw;
    background: rgba(255, 189, 123, 0.3);
    filter: blur(1px);
    border-radius: 0.417vw;
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }
}
.highlight-nav {
  background: #f8f8f8;
}
.highlight-nav__list {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.highlight-nav__item {
  width: 250px;
  height: 50px;
}
.highlight-nav__item--pink {
  background: #d58190;
}
.highlight-nav__item--orange {
  background: #ffbd7b;
}
.highlight-nav__item--blue {
  background: #2fa0cf;
}
.highlight-nav__item--purple {
  background: #2f3d8d;
}
.highlight-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 50px;
}
.highlight-nav__text {
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.highlight-nav__arrow {
  width: 35px;
  height: auto;
}

@media screen and (max-width: 1240px) {
  .highlight-nav {
    background: #f8f8f8;
  }
  .highlight-nav__list {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 116.129vw;
    margin: 0 auto;
  }
  .highlight-nav__item {
    width: 20.161vw;
    height: 4.032vw;
  }
  .highlight-nav__item--pink {
    background: #d58190;
  }
  .highlight-nav__item--orange {
    background: #ffbd7b;
  }
  .highlight-nav__item--blue {
    background: #2fa0cf;
  }
  .highlight-nav__item--purple {
    background: #2f3d8d;
  }
  .highlight-nav__link {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 4.032vw;
  }
  .highlight-nav__text {
    font-size: 1.613vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .highlight-nav__arrow {
    width: 2.823vw;
    height: auto;
  }
}
.attraction__inner {
  position: relative;
}
.attraction__header {
  position: absolute;
  background: url(../img/attraction--titleback.webp);
  background-size: 100%;
  width: 533px;
  height: 60px;
  margin-left: 201px;
  top: 50px;
}
.attraction__title {
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 14px 0 0 49px;
}
.attraction__content {
  position: relative;
  width: 1000px;
  height: 845px;
  margin: 0 auto;
  overflow-x: hidden;
  pointer-events: none;
  padding-top: 109px;
}
.attraction__circle {
  position: absolute;
  width: 616px;
  height: 616px;
  background: rgba(213, 129, 144, 0.5);
  border-radius: 50%;
  right: -129px;
  top: -85px;
}
.attraction__circle--small {
  position: absolute;
  width: 471px;
  height: 471px;
  background: rgba(213, 129, 144, 0.3);
  border-radius: 50%;
  filter: blur(10px);
  bottom: -155px;
  left: -110px;
}
.attraction__cards {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 918px;
  margin-top: 38px;
}
.attraction__card {
  background: url(../img/attraction--cardback.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 298px;
  height: 401px;
}
.attraction__card--header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 61px;
}
.attraction__card-title {
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #555555;
  margin-left: 5px;
}
.attraction__card--family .attraction__icon {
  width: 54px;
  height: 54px;
}
.attraction__card--family .attraction__card-text {
  margin: 17px 39px 0 50px;
}
.attraction__card--living .attraction__icon {
  width: 52.38px;
  height: 49px;
}
.attraction__card--living .attraction__card-text {
  margin: 20px 52px 0 52px;
}
.attraction__card--relocation .attraction__icon {
  width: 67px;
  height: 67px;
}
.attraction__card--relocation .attraction__card-text {
  margin: 11px 47px 0 70px;
}
.attraction__card--community {
  position: absolute;
  top: 286px;
  z-index: 2;
  left: 147px;
}
.attraction__card--community .attraction__icon {
  width: 46px;
  height: 46px;
}
.attraction__card--community .attraction__card-text {
  margin: 44px 56px 0 67px;
}
.attraction__card--future {
  position: absolute;
  top: 286px;
  z-index: 2;
  right: 147px;
}
.attraction__card--future .attraction__icon {
  width: 57px;
  height: 57px;
}
.attraction__card--future .attraction__card-text {
  margin: 51px 39px 0 55px;
}
.attraction__card-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #555555;
}

@media screen and (max-width: 1240px) {
  .attraction__inner {
    position: relative;
  }
  .attraction__header {
    position: absolute;
    background: url(../img/attraction--titleback.webp);
    background-size: 100%;
    width: 42.984vw;
    height: 4.839vw;
    margin-left: 8vw;
    top: 4.032vw;
  }
  .attraction__title {
    font-size: 2.581vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 1.129vw 0 0 3.952vw;
  }
  .attraction__content {
    position: relative;
    width: 80.645vw;
    height: 68.145vw;
    margin: 0 auto;
    overflow-x: hidden;
    pointer-events: none;
    padding-top: 8.79vw;
  }
  .attraction__circle {
    position: absolute;
    width: 49.677vw;
    height: 49.677vw;
    background: rgba(213, 129, 144, 0.5);
    border-radius: 50%;
    right: -10.403vw;
    top: -6.855vw;
  }
  .attraction__circle--small {
    position: absolute;
    width: 37.984vw;
    height: 37.984vw;
    background: rgba(213, 129, 144, 0.3);
    border-radius: 50%;
    filter: blur(10px);
    bottom: -12.5vw;
    left: -8.871vw;
  }
  .attraction__cards {
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 74.032vw;
    margin-top: 3.065vw;
  }
  .attraction__card {
    background: url(../img/attraction--cardback.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 24.032vw;
    height: 32.339vw;
  }
  .attraction__card--header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4.919vw;
  }
  .attraction__card-title {
    font-size: 1.452vw;
    letter-spacing: 0.02em;
    color: #555555;
    margin-left: 0.403vw;
  }
  .attraction__card--family .attraction__icon {
    width: 4.355vw;
    height: 4.355vw;
  }
  .attraction__card--family .attraction__card-text {
    margin: 1.371vw 3.145vw 0 4.032vw;
  }
  .attraction__card--living .attraction__icon {
    width: 4.224vw;
    height: 3.952vw;
  }
  .attraction__card--living .attraction__card-text {
    margin: 1.613vw 4.194vw 0 4.194vw;
  }
  .attraction__card--relocation .attraction__icon {
    width: 5.403vw;
    height: 5.403vw;
  }
  .attraction__card--relocation .attraction__card-text {
    margin: 0.887vw 3.79vw 0 5.645vw;
  }
  .attraction__card--community {
    position: absolute;
    top: 23.065vw;
    z-index: 2;
    left: 11.855vw;
  }
  .attraction__card--community .attraction__icon {
    width: 3.71vw;
    height: 3.71vw;
  }
  .attraction__card--community .attraction__card-text {
    margin: 3.548vw 4.516vw 0 5.403vw;
  }
  .attraction__card--future {
    position: absolute;
    top: 23.065vw;
    z-index: 2;
    right: 11.855vw;
  }
  .attraction__card--future .attraction__icon {
    width: 4.597vw;
    height: 4.597vw;
  }
  .attraction__card--future .attraction__card-text {
    margin: 4.113vw 3.145vw 0 4.435vw;
  }
  .attraction__card-text {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.935vw;
    letter-spacing: 0.02em;
    color: #555555;
  }
}
.hospital-overview {
  padding-top: 330px;
}
.hospital-overview__content {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  background: #ffecd9;
  padding: 43px 0 78px 0;
  border-radius: 20px;
}
.hospital-overview__intro .features-intro__image {
  position: absolute;
  width: 482px;
  height: 272px;
  top: -230px;
  right: 50px;
}
.hospital-overview__intro .features-intro__illustration {
  position: absolute;
  width: 226.44px;
  height: 268px;
  left: 38px;
  top: -297px;
}
.hospital-overview__intro .features-intro__header {
  position: absolute;
  background: url(../img/hospital-overview__title-back.webp);
  background-size: 100%;
  width: 453.5px;
  height: 59.5px;
  top: -29px;
  left: -19px;
}
.hospital-overview__intro .features-intro__title {
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding: 12px 0 0 41px;
}
.hospital-overview__intro .features-intro__box {
  display: flex;
  width: 920px;
  height: 186px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 11px;
  margin: 0 36px 0 27px;
}
.hospital-overview__intro .features-intro__box img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 51px 0 0 43px;
}
.hospital-overview__intro .features-intro__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #555555;
  margin: 68px 0 0 40px;
}
.hospital-overview__benefits {
  position: relative;
  padding-top: 109px;
}
.hospital-overview__benefits .benefits__header {
  position: absolute;
  background: url(../img/hospital-overview__sub-title--back.webp);
  background-size: 100%;
  width: 453.5px;
  height: 59.5px;
  top: 43px;
  left: -28px;
}
.hospital-overview__benefits .benefits__title {
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 16px 0 0 37px;
}
.hospital-overview__benefits .benefits__item {
  display: flex;
  margin: 0 36px 47px 31px;
}
.hospital-overview__benefits .benefits__item--expertise {
  position: relative;
  flex-direction: row-reverse;
}
.hospital-overview__benefits .benefits__item--expertise .benefits__icon {
  position: absolute;
  position: absolute;
  left: 50%;
  top: -51px;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
}
.hospital-overview__benefits .benefits__item--expertise .benefits__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 59px;
  height: 59px;
}
.hospital-overview__benefits .benefits__item--expertise .benefits__text {
  margin: 38px 0 0 54px;
}
.hospital-overview__benefits .benefits__item--expertise:before {
  position: absolute;
  content: "";
  background: url(../img/IMG_1975.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 393.09px;
  height: 281px;
  top: 0;
  left: 0;
}
.hospital-overview__benefits .benefits__item--growth {
  position: relative;
}
.hospital-overview__benefits .benefits__item--growth .benefits__icon {
  position: absolute;
  left: 50%;
  top: -51px;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
}
.hospital-overview__benefits .benefits__item--growth .benefits__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 78.18px;
  height: 71px;
}
.hospital-overview__benefits .benefits__item--growth .benefits__text {
  margin: 25px 0 0 21px;
}
.hospital-overview__benefits .benefits__item--growth:before {
  position: absolute;
  content: "";
  background: url(../img/IMG_1987.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 410.8px;
  height: 274px;
  top: 0;
  right: 0;
}
.hospital-overview__benefits .benefits__item--teamwork {
  position: relative;
  flex-direction: row-reverse;
}
.hospital-overview__benefits .benefits__item--teamwork .benefits__icon {
  position: absolute;
  top: -51px;
  left: 50%;
  transform: translateY(0) translateX(-50%);
  -webkit-transform: translateY(0) translateX(-50%);
}
.hospital-overview__benefits .benefits__item--teamwork .benefits__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 75px;
  height: 75px;
}
.hospital-overview__benefits .benefits__item--teamwork .benefits__text {
  margin: 25px 0 0 65px;
}
.hospital-overview__benefits .benefits__item--teamwork:before {
  position: absolute;
  content: "";
  background: url(../img/IMG_2084.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 392.52px;
  height: 262px;
  top: 0;
  left: 0;
}
.hospital-overview__benefits .benefits__content {
  position: relative;
  margin-top: 54px;
  width: 586px;
  height: 281px;
  background: #ffffff;
}
.hospital-overview__benefits .benefits__icon {
  width: 139px;
  height: 102px;
  background: rgba(213, 129, 144, 0.5);
}
.hospital-overview__benefits .benefits__subtitle {
  margin-top: 70px;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #555555;
  text-align: center;
}
.hospital-overview__benefits .benefits__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  /* または133% */
  letter-spacing: 0.02em;
  color: #555555;
}

@media screen and (max-width: 1240px) {
  .hospital-overview {
    padding-top: 26.613vw;
  }
  .hospital-overview__content {
    position: relative;
    width: 80.645vw;
    margin: 0 auto;
    background: #ffecd9;
    padding: 3.468vw 0 6.29vw 0;
    border-radius: 1.613vw;
  }
  .hospital-overview__intro .features-intro__image {
    position: absolute;
    width: 38.871vw;
    height: 21.935vw;
    top: -18.548vw;
    right: 4.032vw;
  }
  .hospital-overview__intro .features-intro__illustration {
    position: absolute;
    width: 18.261vw;
    height: 21.613vw;
    left: 3.065vw;
    top: -23.952vw;
  }
  .hospital-overview__intro .features-intro__header {
    position: absolute;
    background: url(../img/hospital-overview__title-back.webp);
    background-size: 100%;
    width: 36.573vw;
    height: 4.798vw;
    top: -2.339vw;
    left: -1.532vw;
  }
  .hospital-overview__intro .features-intro__title {
    font-size: 2.581vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    padding: 0.968vw 0 0 3.306vw;
  }
  .hospital-overview__intro .features-intro__box {
    display: flex;
    width: 74.194vw;
    height: 15vw;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.887vw;
    margin: 0 2.903vw 0 2.177vw;
  }
  .hospital-overview__intro .features-intro__box img {
    display: block;
    width: 8.065vw;
    height: 8.065vw;
    margin: 4.113vw 0 0 3.468vw;
  }
  .hospital-overview__intro .features-intro__description {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.774vw;
    letter-spacing: 0.02em;
    color: #555555;
    margin: 5.484vw 0 0 3.226vw;
  }
  .hospital-overview__benefits {
    position: relative;
    padding-top: 8.79vw;
  }
  .hospital-overview__benefits .benefits__header {
    position: absolute;
    background: url(../img/hospital-overview__sub-title--back.webp);
    background-size: 100%;
    width: 36.573vw;
    height: 4.798vw;
    top: 3.468vw;
    left: -2.258vw;
  }
  .hospital-overview__benefits .benefits__title {
    font-size: 1.935vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 1.29vw 0 0 2.984vw;
  }
  .hospital-overview__benefits .benefits__item {
    display: flex;
    margin: 0 2.903vw 3.79vw 2.5vw;
  }
  .hospital-overview__benefits .benefits__item--expertise {
    position: relative;
    flex-direction: row-reverse;
  }
  .hospital-overview__benefits .benefits__item--expertise .benefits__icon {
    position: absolute;
    position: absolute;
    left: 50%;
    top: -4.113vw;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
  }
  .hospital-overview__benefits .benefits__item--expertise .benefits__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width: 4.758vw;
    height: 4.758vw;
  }
  .hospital-overview__benefits .benefits__item--expertise .benefits__text {
    margin: 3.065vw 0 0 4.355vw;
  }
  .hospital-overview__benefits .benefits__item--expertise:before {
    position: absolute;
    content: "";
    background: url(../img/IMG_1975.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 31.701vw;
    height: 22.661vw;
    top: 0;
    left: 0;
  }
  .hospital-overview__benefits .benefits__item--growth {
    position: relative;
  }
  .hospital-overview__benefits .benefits__item--growth .benefits__icon {
    position: absolute;
    left: 50%;
    top: -4.113vw;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
  }
  .hospital-overview__benefits .benefits__item--growth .benefits__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width: 6.305vw;
    height: 5.726vw;
  }
  .hospital-overview__benefits .benefits__item--growth .benefits__text {
    margin: 2.016vw 0 0 1.694vw;
  }
  .hospital-overview__benefits .benefits__item--growth:before {
    position: absolute;
    content: "";
    background: url(../img/IMG_1987.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 33.129vw;
    height: 22.097vw;
    top: 0;
    right: 0;
  }
  .hospital-overview__benefits .benefits__item--teamwork {
    position: relative;
    flex-direction: row-reverse;
  }
  .hospital-overview__benefits .benefits__item--teamwork .benefits__icon {
    position: absolute;
    top: -4.113vw;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    -webkit-transform: translateY(0) translateX(-50%);
  }
  .hospital-overview__benefits .benefits__item--teamwork .benefits__icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width: 6.048vw;
    height: 6.048vw;
  }
  .hospital-overview__benefits .benefits__item--teamwork .benefits__text {
    margin: 2.016vw 0 0 5.242vw;
  }
  .hospital-overview__benefits .benefits__item--teamwork:before {
    position: absolute;
    content: "";
    background: url(../img/IMG_2084.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 31.655vw;
    height: 21.129vw;
    top: 0;
    left: 0;
  }
  .hospital-overview__benefits .benefits__content {
    position: relative;
    margin-top: 4.355vw;
    width: 47.258vw;
    height: 22.661vw;
    background: #ffffff;
  }
  .hospital-overview__benefits .benefits__icon {
    width: 11.21vw;
    height: 8.226vw;
    background: rgba(213, 129, 144, 0.5);
  }
  .hospital-overview__benefits .benefits__subtitle {
    margin-top: 5.645vw;
    font-size: 1.935vw;
    letter-spacing: 0.02em;
    color: #555555;
    text-align: center;
  }
  .hospital-overview__benefits .benefits__text {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.935vw;
    /* または133% */
    letter-spacing: 0.02em;
    color: #555555;
  }
}
.support-relocation {
  padding-top: 88px;
}
.support-relocation__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.support-relocation__header {
  position: relative;
  background: url(../img/support-scheme--titleback.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 634px;
  height: 108px;
  margin-left: -46px;
}
.support-relocation__title {
  position: absolute;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #555555;
  top: 16px;
  left: 47px;
}
.support-relocation__text {
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.02em;
  color: #555555;
  margin-top: 23px;
}
.support-relocation__details {
  display: flex;
  width: 1000px;
  height: 200px;
  margin-top: 44px;
}
.support-relocation__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
  background: rgba(213, 129, 144, 0.5);
}
.support-relocation__icon img {
  display: flex;
  width: 142px;
  height: 142px;
  justify-content: center;
  align-items: center;
}
.support-relocation__description {
  width: 70%;
  background: #ffecd9;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  color: #555555;
  padding: 71px 0 0 42px;
}
.support-relocation__relocation {
  position: relative;
  width: 100%;
  height: 268px;
  margin-top: 147px;
  z-index: 3;
}
.support-relocation__relocation--backitem {
  position: absolute;
  width: 341px;
  height: 447px;
  top: -93px;
  left: 43px;
  z-index: -1;
}
.support-relocation__relocation-title {
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  color: #555555;
}
.support-relocation__relocation--text {
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #ffffff;
}
.support-relocation__relocation--iconarea {
  position: relative;
}
.support-relocation__relocation--iconarea:before {
  content: "";
  position: absolute;
  background: url(../img/support-scheme__waveback.webp);
  background-size: 100%;
  width: 1000px;
  height: 258px;
  top: 0;
  right: 0;
  z-index: -1;
}
.support-relocation__relocation-icon {
  width: 77px;
  height: 77px;
}
.support-relocation__relocation__details {
  display: flex;
  width: 1000px;
  height: 200px;
  margin-top: 154px;
}
.support-relocation__relocation__details-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  height: 100%;
  background: rgba(213, 129, 144, 0.5);
}
.support-relocation__relocation__details-icon img {
  display: flex;
  width: 123px;
  height: 123px;
  justify-content: center;
  align-items: center;
}
.support-relocation__relocation__details-description {
  width: 70%;
  background: #ffecd9;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #555555;
  padding: 41px 0 0 30px;
}
.support-relocation__label {
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  color: #555555;
}
.support-relocation__value {
  font-weight: 900;
  font-size: 32px;
  color: #2fa0cf;
}
.support-relocation__value--large {
  font-size: 45px;
}

@media screen and (max-width: 1240px) {
  .support-relocation {
    padding-top: 7.097vw;
  }
  .support-relocation__content {
    width: 100%;
    max-width: 80.645vw;
    margin: 0 auto;
  }
  .support-relocation__header {
    position: relative;
    background: url(../img/support-scheme--titleback.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 51.129vw;
    height: 8.71vw;
    margin-left: -3.71vw;
  }
  .support-relocation__title {
    position: absolute;
    font-size: 2.581vw;
    line-height: 3.065vw;
    text-align: center;
    letter-spacing: 0.02em;
    color: #555555;
    top: 1.29vw;
    left: 3.79vw;
  }
  .support-relocation__text {
    font-weight: 400;
    font-size: 1.935vw;
    line-height: 2.339vw;
    letter-spacing: 0.02em;
    color: #555555;
    margin-top: 1.855vw;
  }
  .support-relocation__details {
    display: flex;
    width: 80.645vw;
    height: 16.129vw;
    margin-top: 3.548vw;
  }
  .support-relocation__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100%;
    background: rgba(213, 129, 144, 0.5);
  }
  .support-relocation__icon img {
    display: flex;
    width: 11.452vw;
    height: 11.452vw;
    justify-content: center;
    align-items: center;
  }
  .support-relocation__description {
    width: 70%;
    background: #ffecd9;
    font-weight: 400;
    font-size: 1.935vw;
    line-height: 2.339vw;
    color: #555555;
    padding: 5.726vw 0 0 3.387vw;
  }
  .support-relocation__relocation {
    position: relative;
    width: 100%;
    height: 21.613vw;
    margin-top: 11.855vw;
    z-index: 3;
  }
  .support-relocation__relocation--backitem {
    position: absolute;
    width: 27.5vw;
    height: 36.048vw;
    top: -7.5vw;
    left: 3.468vw;
    z-index: -1;
  }
  .support-relocation__relocation-title {
    font-weight: 900;
    font-size: 3.226vw;
    line-height: 3.871vw;
    color: #555555;
  }
  .support-relocation__relocation--text {
    font-weight: 900;
    font-size: 3.226vw;
    line-height: 3.871vw;
    text-align: center;
    color: #ffffff;
  }
  .support-relocation__relocation--iconarea {
    position: relative;
  }
  .support-relocation__relocation--iconarea:before {
    content: "";
    position: absolute;
    background: url(../img/support-scheme__waveback.webp);
    background-size: 100%;
    width: 80.645vw;
    height: 20.806vw;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .support-relocation__relocation-icon {
    width: 6.21vw;
    height: 6.21vw;
  }
  .support-relocation__relocation__details {
    display: flex;
    width: 80.645vw;
    height: 16.129vw;
    margin-top: 12.419vw;
  }
  .support-relocation__relocation__details-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 100%;
    background: rgba(213, 129, 144, 0.5);
  }
  .support-relocation__relocation__details-icon img {
    display: flex;
    width: 9.919vw;
    height: 9.919vw;
    justify-content: center;
    align-items: center;
  }
  .support-relocation__relocation__details-description {
    width: 70%;
    background: #ffecd9;
    font-weight: 400;
    font-size: 1.935vw;
    line-height: 2.581vw;
    color: #555555;
    padding: 3.306vw 0 0 2.419vw;
  }
  .support-relocation__label {
    font-weight: 500;
    font-size: 2.581vw;
    line-height: 3.065vw;
    color: #555555;
  }
  .support-relocation__value {
    font-weight: 900;
    font-size: 2.581vw;
    color: #2fa0cf;
  }
  .support-relocation__value--large {
    font-size: 3.629vw;
  }
}
.benefit-circle {
  padding: 116px 0 63px 0;
}
.benefit-circle__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 843px;
}
.benefit-circle__center {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center .center__text1 {
  padding: 107px 71.5px 0 71.5px;
  font-weight: 900;
  font-size: 48px;
  line-height: 58px;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center .center__text1 span {
  font-weight: 400;
  font-size: 64px;
}
.benefit-circle__center .center__text2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 47px;
  text-align: center;
  color: #353535;
}
.benefit-circle__center .center__text3 {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #555555;
  text-align: center;
}
.benefit-circle__center1 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center1 .center1__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center1 .center1__text1 {
  font-size: 64px;
  line-height: 93px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center2 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center2 .center2__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center2 .center2__text1 {
  font-size: 40px;
  line-height: 58px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center2 .center2__text2 {
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  color: #ff4242;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center3 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center3 .center3__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center3 .center3__text1 {
  font-size: 40px;
  line-height: 58px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center3 .center3__text2 {
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center4 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center4 .center4__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center4 .center4__text1 {
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center4 .center4__text2 {
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center5 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center5 .center5__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center5 .center5__text1 {
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center5 .center5__text2 {
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  color: #ff4d4d;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center6 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center6 .center6__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center6 .center6__text1 {
  font-size: 48px;
  line-height: 70px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center7 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center7 .center7__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center7 .center7__text1 {
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center7 .center7__text1 span {
  font-size: 24px;
  text-align: center;
  color: #ff4646;
}
.benefit-circle__center8 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center8 .center8__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center8 .center8__text1 {
  font-size: 48px;
  line-height: 70px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center9 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center9 .center9__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center9 .center9__text1 {
  font-size: 40px;
  line-height: 58px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center9 .center9__text1 span {
  font-size: 32px;
}
.benefit-circle__center10 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center10 .center10__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center10 .center10__text1 {
  font-size: 40px;
  line-height: 58px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center10 .center10__text1 span {
  font-size: 32px;
  text-align: center;
  color: #ff4646;
}
.benefit-circle__center11 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center11 .center11__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center11 .center11__text1 {
  font-size: 40px;
  line-height: 58px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center12 {
  background: url(../img/circle-center__backimg.webp);
  background-size: 100%;
  width: 442px;
  height: 442px;
}
.benefit-circle__center12 .center12__img {
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding-top: 46px;
  box-sizing: content-box;
}
.benefit-circle__center12 .center12__text1 {
  font-size: 32px;
  line-height: 46px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.benefit-circle__center12 .center12__text2 {
  font-size: 20px;
  text-align: center;
  color: #ff4646;
  line-height: 28px;
}
.benefit-circle__item {
  width: 157px;
  height: 157px;
  background: #f2f2f2;
  border-radius: 50%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.benefit-circle__item--1 {
  position: absolute;
  top: 0;
  right: 422px;
}
.benefit-circle__item--1 img {
  width: 65px;
  height: 65px;
  margin: 0 auto;
  padding-top: 14px;
}
.benefit-circle__item--1 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 14px;
}
.benefit-circle__item--2 {
  position: absolute;
  top: 37px;
  right: 257px;
}
.benefit-circle__item--2 img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  padding-top: 14px;
}
.benefit-circle__item--2 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
}
.benefit-circle__item--3 {
  position: absolute;
  top: 169px;
  right: 127px;
}
.benefit-circle__item--3 img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  padding-top: 16px;
}
.benefit-circle__item--3 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 6px;
}
.benefit-circle__item--4 {
  position: absolute;
  top: 333px;
  right: 76px;
}
.benefit-circle__item--4 img {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  padding-top: 25px;
}
.benefit-circle__item--4 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 9px;
}
.benefit-circle__item--5 {
  position: absolute;
  bottom: 168px;
  right: 122px;
}
.benefit-circle__item--5 img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  padding-top: 5px;
}
.benefit-circle__item--5 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 6px;
}
.benefit-circle__item--6 {
  position: absolute;
  bottom: 40px;
  right: 246px;
}
.benefit-circle__item--6 img {
  width: 63px;
  height: 63px;
  margin: 0 auto;
  padding-top: 10px;
}
.benefit-circle__item--6 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 12px;
}
.benefit-circle__item--7 {
  position: absolute;
  bottom: 0;
  left: 421px;
}
.benefit-circle__item--7 img {
  width: 62px;
  height: 62px;
  margin: 0 auto;
  padding-top: 20px;
}
.benefit-circle__item--7 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 6px;
}
.benefit-circle__item--8 {
  position: absolute;
  bottom: 42px;
  left: 252px;
}
.benefit-circle__item--8 img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  padding-top: 20px;
}
.benefit-circle__item--8 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 10px;
}
.benefit-circle__item--9 {
  position: absolute;
  bottom: 164px;
  left: 125px;
}
.benefit-circle__item--9 img {
  width: 53px;
  height: 53px;
  margin: 0 auto;
  padding-top: 20px;
}
.benefit-circle__item--9 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 8px;
}
.benefit-circle__item--10 {
  position: absolute;
  top: 345px;
  left: 79px;
}
.benefit-circle__item--10 img {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  padding-top: 17px;
}
.benefit-circle__item--10 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 9px;
}
.benefit-circle__item--11 {
  position: absolute;
  top: 176px;
  left: 122px;
}
.benefit-circle__item--11 img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  padding-top: 20px;
}
.benefit-circle__item--11 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 12px;
}
.benefit-circle__item--12 {
  position: absolute;
  top: 50px;
  left: 247px;
}
.benefit-circle__item--12 img {
  width: 55.6px;
  height: 54px;
  margin: 0 auto;
  padding-top: 20px;
}
.benefit-circle__item--12 p {
  font-size: 16px;
  line-height: 19px;
  color: #2fa0cf;
  text-align: center;
  margin-top: 6px;
}

.area {
  position: absolute;
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  top: 210px;
  left: 274px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media screen and (max-width: 1240px) {
  .benefit-circle {
    padding: 9.355vw 0 5.081vw 0;
  }
  .benefit-circle__content {
    position: relative;
    width: 100%;
    max-width: 80.645vw;
    margin: 0 auto;
    height: 67.984vw;
  }
  .benefit-circle__center {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center .center__text1 {
    padding: 8.629vw 5.766vw 0 5.766vw;
    font-weight: 900;
    font-size: 3.871vw;
    line-height: 4.677vw;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center .center__text1 span {
    font-weight: 400;
    font-size: 5.161vw;
  }
  .benefit-circle__center .center__text2 {
    font-weight: 400;
    font-size: 1.935vw;
    line-height: 3.79vw;
    text-align: center;
    color: #353535;
  }
  .benefit-circle__center .center__text3 {
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #555555;
    text-align: center;
  }
  .benefit-circle__center1 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center1 .center1__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center1 .center1__text1 {
    font-size: 5.161vw;
    line-height: 7.5vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center2 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center2 .center2__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center2 .center2__text1 {
    font-size: 3.226vw;
    line-height: 4.677vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center2 .center2__text2 {
    font-size: 2.581vw;
    line-height: 3.71vw;
    text-align: center;
    color: #ff4242;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center3 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center3 .center3__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center3 .center3__text1 {
    font-size: 3.226vw;
    line-height: 4.677vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center3 .center3__text2 {
    font-size: 2.581vw;
    line-height: 3.71vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center4 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center4 .center4__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center4 .center4__text1 {
    font-size: 2.903vw;
    line-height: 4.194vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center4 .center4__text2 {
    font-size: 2.581vw;
    line-height: 3.71vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center5 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center5 .center5__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center5 .center5__text1 {
    font-size: 2.903vw;
    line-height: 4.194vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center5 .center5__text2 {
    font-size: 2.581vw;
    line-height: 3.71vw;
    text-align: center;
    color: #ff4d4d;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center6 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center6 .center6__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center6 .center6__text1 {
    font-size: 3.871vw;
    line-height: 5.645vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center7 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center7 .center7__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center7 .center7__text1 {
    font-size: 2.903vw;
    line-height: 4.194vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center7 .center7__text1 span {
    font-size: 1.935vw;
    text-align: center;
    color: #ff4646;
  }
  .benefit-circle__center8 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center8 .center8__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center8 .center8__text1 {
    font-size: 3.871vw;
    line-height: 5.645vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center9 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center9 .center9__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center9 .center9__text1 {
    font-size: 3.226vw;
    line-height: 4.677vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center9 .center9__text1 span {
    font-size: 2.581vw;
  }
  .benefit-circle__center10 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center10 .center10__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center10 .center10__text1 {
    font-size: 3.226vw;
    line-height: 4.677vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center10 .center10__text1 span {
    font-size: 2.581vw;
    text-align: center;
    color: #ff4646;
  }
  .benefit-circle__center11 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center11 .center11__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center11 .center11__text1 {
    font-size: 3.226vw;
    line-height: 4.677vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center12 {
    background: url(../img/circle-center__backimg.webp);
    background-size: 100%;
    width: 35.645vw;
    height: 35.645vw;
  }
  .benefit-circle__center12 .center12__img {
    width: 12.097vw;
    height: 12.097vw;
    margin: 0 auto;
    padding-top: 3.71vw;
    box-sizing: content-box;
  }
  .benefit-circle__center12 .center12__text1 {
    font-size: 2.581vw;
    line-height: 3.71vw;
    text-align: center;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .benefit-circle__center12 .center12__text2 {
    font-size: 1.613vw;
    text-align: center;
    color: #ff4646;
    line-height: 2.258vw;
  }
  .benefit-circle__item {
    width: 12.661vw;
    height: 12.661vw;
    background: #f2f2f2;
    border-radius: 50%;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
  .benefit-circle__item--1 {
    position: absolute;
    top: 0;
    right: 34.032vw;
  }
  .benefit-circle__item--1 img {
    width: 5.242vw;
    height: 5.242vw;
    margin: 0 auto;
    padding-top: 1.129vw;
  }
  .benefit-circle__item--1 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 1.129vw;
  }
  .benefit-circle__item--2 {
    position: absolute;
    top: 2.984vw;
    right: 20.726vw;
  }
  .benefit-circle__item--2 img {
    width: 6.452vw;
    height: 6.452vw;
    margin: 0 auto;
    padding-top: 1.129vw;
  }
  .benefit-circle__item--2 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
  }
  .benefit-circle__item--3 {
    position: absolute;
    top: 13.629vw;
    right: 10.242vw;
  }
  .benefit-circle__item--3 img {
    width: 4.839vw;
    height: 4.839vw;
    margin: 0 auto;
    padding-top: 1.29vw;
  }
  .benefit-circle__item--3 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.484vw;
  }
  .benefit-circle__item--4 {
    position: absolute;
    top: 26.855vw;
    right: 6.129vw;
  }
  .benefit-circle__item--4 img {
    width: 4.516vw;
    height: 4.516vw;
    margin: 0 auto;
    padding-top: 2.016vw;
  }
  .benefit-circle__item--4 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.726vw;
  }
  .benefit-circle__item--5 {
    position: absolute;
    bottom: 13.548vw;
    right: 9.839vw;
  }
  .benefit-circle__item--5 img {
    width: 5.161vw;
    height: 5.161vw;
    margin: 0 auto;
    padding-top: 0.403vw;
  }
  .benefit-circle__item--5 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.484vw;
  }
  .benefit-circle__item--6 {
    position: absolute;
    bottom: 3.226vw;
    right: 19.839vw;
  }
  .benefit-circle__item--6 img {
    width: 5.081vw;
    height: 5.081vw;
    margin: 0 auto;
    padding-top: 0.806vw;
  }
  .benefit-circle__item--6 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.968vw;
  }
  .benefit-circle__item--7 {
    position: absolute;
    bottom: 0;
    left: 33.952vw;
  }
  .benefit-circle__item--7 img {
    width: 5vw;
    height: 5vw;
    margin: 0 auto;
    padding-top: 1.613vw;
  }
  .benefit-circle__item--7 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.484vw;
  }
  .benefit-circle__item--8 {
    position: absolute;
    bottom: 3.387vw;
    left: 20.323vw;
  }
  .benefit-circle__item--8 img {
    width: 4.839vw;
    height: 4.839vw;
    margin: 0 auto;
    padding-top: 1.613vw;
  }
  .benefit-circle__item--8 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.806vw;
  }
  .benefit-circle__item--9 {
    position: absolute;
    bottom: 13.226vw;
    left: 10.081vw;
  }
  .benefit-circle__item--9 img {
    width: 4.274vw;
    height: 4.274vw;
    margin: 0 auto;
    padding-top: 1.613vw;
  }
  .benefit-circle__item--9 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.645vw;
  }
  .benefit-circle__item--10 {
    position: absolute;
    top: 27.823vw;
    left: 6.371vw;
  }
  .benefit-circle__item--10 img {
    width: 4.677vw;
    height: 4.677vw;
    margin: 0 auto;
    padding-top: 1.371vw;
  }
  .benefit-circle__item--10 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.726vw;
  }
  .benefit-circle__item--11 {
    position: absolute;
    top: 14.194vw;
    left: 9.839vw;
  }
  .benefit-circle__item--11 img {
    width: 4.032vw;
    height: 4.032vw;
    margin: 0 auto;
    padding-top: 1.613vw;
  }
  .benefit-circle__item--11 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.968vw;
  }
  .benefit-circle__item--12 {
    position: absolute;
    top: 4.032vw;
    left: 19.919vw;
  }
  .benefit-circle__item--12 img {
    width: 4.484vw;
    height: 4.355vw;
    margin: 0 auto;
    padding-top: 1.613vw;
  }
  .benefit-circle__item--12 p {
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #2fa0cf;
    text-align: center;
    margin-top: 0.484vw;
  }
  .area {
    position: absolute;
    display: none; /*はじめは非表示*/
    opacity: 0; /*透過0*/
    top: 16.935vw;
    left: 22.097vw;
  }
}
@media screen and (max-width: 769px) {
  .benefit-circle__item--1 {
    position: absolute;
    top: 0;
    right: 26vw;
  }
  .benefit-circle__item--2 {
    position: absolute;
    top: 0;
    right: 13vw;
  }
  .benefit-circle__item--3 {
    position: absolute;
    top: 0;
    right: 0;
  }
  .benefit-circle__item--4 {
    position: absolute;
    top: inherit;
    bottom: 0;
    right: 0;
  }
  .benefit-circle__item--5 {
    position: absolute;
    bottom: 0;
    right: 13vw;
  }
  .benefit-circle__item--6 {
    position: absolute;
    bottom: 0;
    right: 26vw;
  }
  .benefit-circle__item--7 {
    position: absolute;
    bottom: 0;
    left: 28vw;
  }
  .benefit-circle__item--8 {
    position: absolute;
    bottom: 0;
    left: 14vw;
  }
  .benefit-circle__item--9 {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .benefit-circle__item--10 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .benefit-circle__item--11 {
    position: absolute;
    top: 0;
    left: 14vw;
  }
  .benefit-circle__item--12 {
    position: absolute;
    top: 0;
    left: 28vw;
  }
  .area {
    top: 17vw;
    left: 22.097vw;
  }
}
.banner {
  width: 100vw;
  height: 184.61px;
  background: linear-gradient(90deg, #d58190 99.99%, #ffdada 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding-top: 29px;
}
.banner-text {
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0.02em;
  color: #ffffff;
  border-top: #ffffff solid 7px;
  border-bottom: #ffffff solid 7px;
  text-align: center;
  padding: 23px 0 33px 0;
}

@media screen and (max-width: 1440px) {
  .banner {
    width: 100vw;
    height: 12.82vw;
    background: linear-gradient(90deg, #d58190 99.99%, #ffdada 100%);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding-top: 2.014vw;
  }
  .banner-text {
    font-size: 3.333vw;
    line-height: 4.028vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    border-top: #ffffff solid 0.486vw;
    border-bottom: #ffffff solid 0.486vw;
    text-align: center;
    padding: 1.597vw 0 2.292vw 0;
  }
}
.simulation {
  padding-top: 59px;
}
.simulation__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 69px;
}
.simulation__header {
  background: url(../img/simulation--titleback.webp);
  background-size: 100%;
  width: 612px;
  height: 60px;
  margin-left: -17px;
}
.simulation__title {
  font-size: 32px;
  color: #555555;
  padding: 13px 0 0 39px;
}
.simulation__subtitle {
  width: 100%;
  background: #2fa0cf;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  padding: 23px 0 22px 20px;
  display: block;
  margin-top: 20px;
}
.simulation__math {
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  color: #d58190;
  margin: 45px 0 0 37px;
}
.simulation__note {
  width: 100%;
  background: rgba(213, 129, 144, 0.5);
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  padding: 23px 0 22px 20px;
  display: block;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
  margin-top: 35px;
}
.simulation__box {
  position: relative;
  height: 397px;
  margin-top: 60px;
}
.simulation__box--title {
  position: absolute;
  display: block;
  width: 100%;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #555555;
  background: rgba(255, 255, 255, 0.8);
  padding: 35px 0 35px 28px;
  top: 94px;
  left: 0;
}
.simulation__box--img {
  height: 328px;
}
.simulation__box--text {
  position: absolute;
  display: block;
  width: 100%;
  background: #2fa0cf;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding: 25px 0 30px 35px;
  bottom: 0;
}
.simulation__box-second {
  margin-top: 31px;
}
.simulation__box-second--header {
  display: flex;
  align-items: center;
  background: #ffecd9;
  width: 50%;
  padding: 12.5px 0 12.5px 21px;
}
.simulation__box-second--icon {
  width: 55px;
  height: 55px;
  margin-right: 16px;
}
.simulation__box-second--title {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.02em;
  color: #555555;
}
.simulation__box-second--img {
  height: 250px;
}
.simulation__box-second--text {
  background: #ffecd9;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 18px 0 18px 76px;
}

@media screen and (max-width: 1240px) {
  .simulation {
    padding-top: 4.758vw;
  }
  .simulation__content {
    width: 100%;
    max-width: 80.645vw;
    margin: 0 auto;
    padding-bottom: 5.565vw;
  }
  .simulation__header {
    background: url(../img/simulation--titleback.webp);
    background-size: 100%;
    width: 49.355vw;
    height: 4.839vw;
    margin-left: -1.371vw;
  }
  .simulation__title {
    font-size: 2.581vw;
    color: #555555;
    padding: 1.048vw 0 0 3.145vw;
  }
  .simulation__subtitle {
    width: 100%;
    background: #2fa0cf;
    font-weight: 900;
    font-size: 1.935vw;
    line-height: 2.581vw;
    color: #ffffff;
    padding: 1.855vw 0 1.774vw 1.613vw;
    display: block;
    margin-top: 1.613vw;
  }
  .simulation__math {
    font-weight: 900;
    font-size: 1.935vw;
    line-height: 2.581vw;
    color: #d58190;
    margin: 3.629vw 0 0 2.984vw;
  }
  .simulation__note {
    width: 100%;
    background: rgba(213, 129, 144, 0.5);
    font-weight: 900;
    font-size: 1.935vw;
    line-height: 2.581vw;
    color: #ffffff;
    padding: 1.855vw 0 1.774vw 1.613vw;
    display: block;
    font-weight: 500;
    font-size: 1.452vw;
    line-height: 2.097vw;
    color: #555555;
    margin-top: 2.823vw;
  }
  .simulation__box {
    position: relative;
    height: 32.016vw;
    margin-top: 4.839vw;
  }
  .simulation__box--title {
    position: absolute;
    display: block;
    width: 100%;
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #555555;
    background: rgba(255, 255, 255, 0.8);
    padding: 2.823vw 0 2.823vw 2.258vw;
    top: 7.581vw;
    left: 0;
  }
  .simulation__box--img {
    height: 26.452vw;
  }
  .simulation__box--text {
    position: absolute;
    display: block;
    width: 100%;
    background: #2fa0cf;
    font-size: 1.452vw;
    line-height: 2.097vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    padding: 2.016vw 0 2.419vw 2.823vw;
    bottom: 0;
  }
  .simulation__box-second {
    margin-top: 2.5vw;
  }
  .simulation__box-second--header {
    display: flex;
    align-items: center;
    background: #ffecd9;
    width: 50%;
    padding: 1.008vw 0 1.008vw 1.694vw;
  }
  .simulation__box-second--icon {
    width: 4.435vw;
    height: 4.435vw;
    margin-right: 1.29vw;
  }
  .simulation__box-second--title {
    font-size: 1.935vw;
    line-height: 2.339vw;
    letter-spacing: 0.02em;
    color: #555555;
  }
  .simulation__box-second--img {
    height: 20.161vw;
  }
  .simulation__box-second--text {
    background: #ffecd9;
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.935vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 1.452vw 0 1.452vw 6.129vw;
  }
}
.relocation-support {
  padding-top: 27px;
  /* 2つ目のアイテム */
}
.relocation-support__map {
  width: 1102px;
  height: 465px;
  margin: 0 auto;
}
.relocation-support__content {
  width: 100%;
  max-width: 1006px;
  margin: 0 auto;
  background: rgba(213, 129, 144, 0.4);
  border-radius: 20px;
  padding: 16px 0 17px 0;
}
.relocation-support__wrapper {
  width: 960px;
  border: 5px dashed #ffffff;
  border-radius: 10px;
  margin: 0 auto;
}
.relocation-support__header {
  background: url(../img/relocation-support__title-back.webp);
  background-size: 100%;
  width: 454px;
  height: 68px;
  margin: 16px 0 0 -41px;
}
.relocation-support__label {
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0.87em;
  color: #ffffff;
  padding: 6px 0 4px 55px;
}
.relocation-support__catch {
  width: 833px;
  height: 120px;
  margin: 42px auto 0 auto;
}
.relocation-support__features {
  margin-top: 56px;
}
.relocation-support__feature {
  display: flex;
  align-items: center;
}
.relocation-support .relocation-support__features > .relocation-support__feature:first-child {
  margin-left: 103px;
}
.relocation-support .relocation-support__features > .relocation-support__feature:first-child .relocation-support__feature-icon {
  width: 75px;
  height: 75px;
  margin-right: 32px;
}
.relocation-support .relocation-support__features > .relocation-support__feature:first-child .relocation-support__feature-text {
  width: 715px;
  height: 52px;
}
.relocation-support .relocation-support__features > .relocation-support__feature:nth-child(2) {
  margin: 22px 0 0 99px;
}
.relocation-support .relocation-support__features > .relocation-support__feature:nth-child(2) .relocation-support__feature-icon {
  width: 84px;
  height: 84px;
  margin-right: 22px;
}
.relocation-support .relocation-support__features > .relocation-support__feature:nth-child(2) .relocation-support__feature-text {
  width: 483px;
  height: 26px;
}
.relocation-support__details {
  width: 800px;
  margin: 40px auto 32px auto;
  background: #fff;
  background: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 0 69px 55px 21px;
}
.relocation-support__details-title {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.05em;
  color: #555555;
  padding: 29px 0 0 0;
}
.relocation-support__details-sub {
  font-size: 18px;
}
.relocation-support__details-list {
  padding: 35px 0 0 76px;
}
.relocation-support__details-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #555555;
}
.relocation-support__region-title {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.05em;
  color: #555555;
  margin-top: 40px;
}
.relocation-support__region-list {
  padding: 35px 0 0 76px;
}
.relocation-support__region-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #555555;
}
.relocation-support__info-title {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.05em;
  color: #555555;
  margin-top: 40px;
}
.relocation-support__info-lead {
  padding: 35px 0 0 76px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #555555;
}
.relocation-support__info-detail {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.05em;
  color: #d58190;
  margin: 43px 0 0 82px;
}
.relocation-support__footer-text {
  margin: 43px 0 0 50px;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.05em;
  color: #555555;
}

@media screen and (max-width: 1240px) {
  .relocation-support {
    padding-top: 2.177vw;
    /* 2つ目のアイテム */
  }
  .relocation-support__map {
    width: 88.871vw;
    height: 37.5vw;
    margin: 0 auto;
  }
  .relocation-support__content {
    width: 100%;
    max-width: 81.129vw;
    margin: 0 auto;
    background: rgba(213, 129, 144, 0.4);
    border-radius: 1.613vw;
    padding: 1.29vw 0 1.371vw 0;
  }
  .relocation-support__wrapper {
    width: 77.419vw;
    border: 5px dashed #ffffff;
    border-radius: 0.806vw;
    margin: 0 auto;
  }
  .relocation-support__header {
    background: url(../img/relocation-support__title-back.webp);
    background-size: 100%;
    width: 36.613vw;
    height: 5.484vw;
    margin: 1.29vw 0 0 -3.306vw;
  }
  .relocation-support__label {
    font-size: 3.871vw;
    line-height: 4.677vw;
    letter-spacing: 0.87em;
    color: #ffffff;
    padding: 0.484vw 0 0.323vw 4.435vw;
  }
  .relocation-support__catch {
    width: 67.177vw;
    height: 9.677vw;
    margin: 42px auto 0 auto;
  }
  .relocation-support__features {
    margin-top: 4.516vw;
  }
  .relocation-support__feature {
    display: flex;
    align-items: center;
  }
  .relocation-support .relocation-support__features > .relocation-support__feature:first-child {
    margin-left: 8.306vw;
  }
  .relocation-support .relocation-support__features > .relocation-support__feature:first-child .relocation-support__feature-icon {
    width: 6.048vw;
    height: 6.048vw;
    margin-right: 2.581vw;
  }
  .relocation-support .relocation-support__features > .relocation-support__feature:first-child .relocation-support__feature-text {
    width: 57.661vw;
    height: 4.194vw;
  }
  .relocation-support .relocation-support__features > .relocation-support__feature:nth-child(2) {
    margin: 1.774vw 0 0 7.984vw;
  }
  .relocation-support .relocation-support__features > .relocation-support__feature:nth-child(2) .relocation-support__feature-icon {
    width: 6.774vw;
    height: 6.774vw;
    margin-right: 1.774vw;
  }
  .relocation-support .relocation-support__features > .relocation-support__feature:nth-child(2) .relocation-support__feature-text {
    width: 38.952vw;
    height: 2.097vw;
  }
  .relocation-support__details {
    width: 64.516vw;
    margin: 40px auto 32px auto;
    background: #fff;
    background: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0.806vw;
    padding: 0 5.565vw 4.435vw 1.694vw;
  }
  .relocation-support__details-title {
    font-size: 1.935vw;
    line-height: 2.339vw;
    letter-spacing: 0.05em;
    color: #555555;
    padding: 2.339vw 0 0 0;
  }
  .relocation-support__details-sub {
    font-size: 1.452vw;
  }
  .relocation-support__details-list {
    padding: 2.823vw 0 0 6.129vw;
  }
  .relocation-support__details-item {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.935vw;
    letter-spacing: 0.05em;
    color: #555555;
  }
  .relocation-support__region-title {
    font-size: 1.935vw;
    line-height: 2.339vw;
    letter-spacing: 0.05em;
    color: #555555;
    margin-top: 3.226vw;
  }
  .relocation-support__region-list {
    padding: 2.823vw 0 0 6.129vw;
  }
  .relocation-support__region-item {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.935vw;
    letter-spacing: 0.05em;
    color: #555555;
  }
  .relocation-support__info-title {
    font-size: 1.935vw;
    line-height: 2.339vw;
    letter-spacing: 0.05em;
    color: #555555;
    margin-top: 3.226vw;
  }
  .relocation-support__info-lead {
    padding: 2.823vw 0 0 6.129vw;
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.935vw;
    letter-spacing: 0.05em;
    color: #555555;
  }
  .relocation-support__info-detail {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.774vw;
    letter-spacing: 0.05em;
    color: #d58190;
    margin: 3.468vw 0 0 6.613vw;
  }
  .relocation-support__footer-text {
    margin: 3.468vw 0 0 4.032vw;
    font-weight: 400;
    font-size: 1.935vw;
    line-height: 2.339vw;
    letter-spacing: 0.05em;
    color: #555555;
  }
}
.sns {
  padding-top: 114px;
}
.sns__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.sns__header {
  background: url(../img/sns__header.webp);
  background-size: 100%;
  width: 453.5px;
  height: 59.5px;
  margin-left: -17px;
}
.sns__label {
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 11px 0 0 38px;
}
.sns__catch {
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #555555;
  margin-top: 64.5px;
}
.sns__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #555555;
  margin: 33px 62px 0 62px;
}
.sns__list {
  width: 277px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 65px auto 0 auto;
}
.sns__item {
  width: 57px;
  height: 57px;
}

@media screen and (max-width: 1240px) {
  .sns {
    padding-top: 9.194vw;
  }
  .sns__content {
    width: 100%;
    max-width: 80.645vw;
    margin: 0 auto;
  }
  .sns__header {
    background: url(../img/sns__header.webp);
    background-size: 100%;
    width: 36.573vw;
    height: 4.798vw;
    margin-left: -1.371vw;
  }
  .sns__label {
    font-size: 2.581vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 0.887vw 0 0 3.065vw;
  }
  .sns__catch {
    font-size: 2.581vw;
    line-height: 3.065vw;
    text-align: center;
    letter-spacing: 0.02em;
    color: #555555;
    margin-top: 5.202vw;
  }
  .sns__description {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.774vw;
    letter-spacing: 0.02em;
    color: #555555;
    margin: 2.661vw 5vw 0 5vw;
  }
  .sns__list {
    width: 22.339vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5.202vw auto 0 auto;
  }
  .sns__item {
    width: 4.597vw;
    height: 4.597vw;
  }
}



.staff-voices {
  padding-top: 100px;
}
.staff-voices__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.staff-voices__header {
  background: url(../img/staff-voices__title.webp);
  background-size: 100%;
  width: 453.5px;
  height: 64.71px;
  margin-left: -27px;
}
.staff-voices__label {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 12px 0 0 41px;
}
.staff-voices__subtitle {
  display: flex;
  align-items: center;
  width: 100%;
  height: 84px;
  background: #2fa0cf;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding-left: 42px;
  margin-top: 11px;
}

/* --- ▼ 修正箇所 (吹き出し) ▼ --- */

.staff-voices__item {
  position: relative;
  display: flex;
  align-items: center;
  width: 942px;
  /* height: 300px; */ /* 高さを可変にするため削除 */
  min-height: 300px; /* 画像の高さに合わせる (任意) */
  margin-top: 46px;
}
.staff-voices__media {
  position: absolute;
  width: 400px;
  height: 300px;
}

/* 吹き出し本体 (通常) */
.staff-voices__coment,
.staff-voices__coment2,
.staff-voices__coment_1 {
  /* background: url(...); */ /* 背景画像を削除 */
  /* background-size: 100%; */
  /* background-repeat: no-repeat; */
  
  /* --- ↓ CSS吹き出しに変更 ↓ --- */
  background-color: #f5f5f5; /* 吹き出しの背景色 (グレー) */
  border: 1px solid #ddd;   /* 境界線 */
  border-radius: 10px;      /* 角丸 */
  position: relative;       /* しっぽ(::before)の基準点 */
  padding: 29px 25px 20px 54px; /* 内側の余白 (テキストのpaddingを流用) */
  box-sizing: border-box;
  /* --- ↑ CSS吹き出しに変更 ↑ --- */

  width: 642px;
  /* height: 188px; */ /* 高さを可変にするため削除 */
  height: auto; 
  margin: 0 0 0 auto;
  z-index: 1;
}

/* 吹き出しのしっぽ (通常) */
.staff-voices__coment::before,
.staff-voices__coment2::before,
.staff-voices__coment_1::before {
  content: "";
  position: absolute;
  top: 50px; /* しっぽの位置 (上から) */
  left: -20px; /* しっぽの太さ(border-width * 2) */
  border: 10px solid transparent;
  border-right-color: #f5f5f5; /* 吹き出しの背景色と同じ */
  z-index: 2;
}

.staff-voices__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #555555;
  /* padding: 29px 25px 0 54px; */ /* 親(.coment)に移動したため削除 */
  padding: 0;
}
.staff-voices__caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #555555;
  /* margin: 39px 12px 0 0; */ /* 親(.coment)のpaddingで調整 */
  margin: 20px 0 0 0; /* テキストからの余白 */
  text-align: right;
}
.staff-voices__item--reverse {
  flex-direction: row-reverse;
}

/* 吹き出し本体 (逆パターン) */
.staff-voices__item--reverse .staff-voices__coment {
  /* background: url(...); */ /* 背景画像を削除 */
  /* background-size: 100%; */
  /* background-repeat: no-repeat; */

  /* --- ↓ CSS吹き出しに変更 ↓ --- */
  background-color: #f5f5f5; /* 吹き出しの背景色 (グレー) */
  border: 1px solid #ddd;   /* 境界線 */
  border-radius: 10px;      /* 角丸 */
  position: relative;       /* しっぽ(::before)の基準点 */
  padding: 15px 27px 20px 27px; /* 内側の余白 (テキストのpaddingを流用) */
  box-sizing: border-box;
  /* --- ↑ CSS吹き出しに変更 ↑ --- */
  
  width: 669px;
  /* height: 148px; */ /* 高さを可変にするため削除 */
  height: auto;
  margin: 0 auto 0 0;
  z-index: 1;
}

/* 吹き出しのしっぽ (逆パターン) */
.staff-voices__item--reverse .staff-voices__coment::before {
  content: "";
  position: absolute;
  top: 30px; /* しっぽの位置 (上から) */
  right: -20px; /* しっぽの太さ(border-width * 2) */
  border: 10px solid transparent;
  border-left-color: #f5f5f5; /* 吹き出しの背景色と同じ */
  z-index: 2;
}

.staff-voices__item--reverse .staff-voices__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #555555;
  /* padding: 15px 0 0 27px; */ /* 親(.coment)に移動したため削除 */
  padding: 0;
}
.staff-voices__item--reverse .staff-voices__caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #555555;
  /* margin: 39px 0 0 40px; */ /* 親(.coment)のpaddingで調整 */
  margin: 20px 0 0 0; /* テキストからの余白 */
  text-align: left;
}
/* --- ▲ 修正箇所 (吹き出し) ▲ --- */


/* --- ▼ 以下、変更なし (元のまま) ▼ --- */
.staff-message__subtitle {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background: #2fa0cf;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding-left: 68px;
  margin-top: 54px;
}
.staff-message__media {
  width: 664.6px;
  height: 377px;
  margin: 31px 0 0 30px;
}
.staff-message__content {
  width: 817px;
  height: 418px;
  background: #ffecd9;
  border-radius: 20px;
  padding: 58px 65px 0 59px;
  margin: -30px 0 0 114px;
}
.staff-message__catch {
  font-size: 24px;
  line-height: 32px;
  color: #d58190;
}
.staff-message__description {
  margin-top: 32px;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
}


/* --- ▼ レスポンシブスタイル (@media) ▼ --- */
@media screen and (max-width: 1240px) {
  .staff-voices {
    padding-top: 8.065vw;
  }
  .staff-voices__content {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .staff-voices__header {
    background: url(../img/staff-voices__title.webp);
    background-size: 100%;
    width: 36.573vw;
    height: 5.219vw;
    margin-left: -2.177vw;
  }
  .staff-voices__label {
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 0.968vw 0 0 3.306vw;
  }
  .staff-voices__subtitle {
    display: flex;
    align-items: center;
    width: 100%;
    height: 6.774vw;
    background: #2fa0cf;
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    padding-left: 3.387vw;
    margin-top: 0.887vw;
  }

  /* --- ▼ 修正箇所 (吹き出し @media) ▼ --- */
  
  .staff-voices__item {
    position: relative;
    display: flex;
    align-items: center;
    width: 75.968vw;
    /* height: 24.194vw; */ /* 高さを可変にするため削除 */
    min-height: 24.194vw; /* 画像の高さに合わせる (任意) */
    margin-top: 3.71vw;
  }
  .staff-voices__media {
    position: absolute;
    width: 32.258vw;
    height: 24.194vw;
  }
  
  /* 吹き出し本体 (通常) */
  .staff-voices__coment,
  .staff-voices__coment2, /* .coment2, .coment_1 も追加 */
  .staff-voices__coment_1 {
    /* background: url(...); */ /* 背景画像を削除 */
    /* background-size: 100%; */
    /* background-repeat: no-repeat; */
    background-image: none; /* 明示的に画像を消す */

    /* --- ↓ CSS吹き出しに変更 ↓ --- */
    background-color: #f5f5f5; /* 吹き出しの背景色 (グレー) */
    border: 0.1vw solid #ddd;   /* 境界線 */
    border-radius: 0.8vw;      /* 角丸 (10px / 1240px) */
    position: relative;       /* しっぽ(::before)の基準点 */
    padding: 2.339vw 2.016vw 1.613vw 4.355vw; /* 内側の余白 (下 20px/1240px) */
    box-sizing: border-box;
    /* --- ↑ CSS吹き出しに変更 ↑ --- */
    
    width: 51.774vw;
    /* height: 15.161vw; */ /* 高さを可変にするため削除 */
    height: auto;
    margin: 0 0 0 auto;
    z-index: 1;
  }
  
  /* 吹き出しのしっぽ (通常) */
  .staff-voices__coment::before,
  .staff-voices__coment2::before,
  .staff-voices__coment_1::before {
    content: "";
    position: absolute;
    top: 4.032vw; /* 50px / 1240px */
    left: -1.613vw; /* 20px / 1240px */
    border-width: 0.806vw; /* 10px / 1240px */
    border-style: solid;
    border-color: transparent;
    border-right-color: #f5f5f5; /* 吹き出しの背景色と同じ */
    z-index: 2;
  }
  
  .staff-voices__text {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.774vw;
    letter-spacing: 0.02em;
    color: #555555;
    /* padding: 2.339vw 2.016vw 0 4.355vw; */ /* 親(.coment)に移動したため削除 */
    padding: 0;
  }
  .staff-voices__caption {
    font-weight: 400;
    font-size: 1.29vw;
    line-height: 1.532vw;
    letter-spacing: 0.02em;
    color: #555555;
    /* margin: 3.145vw 0.968vw 0 0; */ /* 親(.coment)のpaddingで調整 */
    margin: 1.613vw 0 0 0; /* 20px / 1240px */
    text-align: right;
  }
  .staff-voices__item--reverse {
    flex-direction: row-reverse;
  }
  
  /* 吹き出し本体 (逆パターン) */
  .staff-voices__item--reverse .staff-voices__coment {
    /* background: url(...); */ /* 背景画像を削除 */
    /* background-size: 100%; */
    /* background-repeat: no-repeat; */
    background-image: none; /* 明示的に画像を消す */
    
    /* --- ↓ CSS吹き出しに変更 ↓ --- */
    background-color: #f5f5f5; /* 吹き出しの背景色 (グレー) */
    border: 0.1vw solid #ddd;   /* 境界線 */
    border-radius: 0.8vw;      /* 角丸 */
    position: relative;       /* しっぽ(::before)の基準点 */
    padding: 1.21vw 2.177vw 1.613vw 2.177vw; /* 内側の余白 */
    box-sizing: border-box;
    /* --- ↑ CSS吹き出しに変更 ↑ --- */
    
    width: 53.952vw;
    /* height: 11.935vw; */ /* 高さを可変にするため削除 */
    height: auto;
    margin: 0 auto 0 0;
    z-index: 1;
  }

  /* 吹き出しのしっぽ (逆パターン) */
  .staff-voices__item--reverse .staff-voices__coment::before {
    content: "";
    position: absolute;
    top: 2.419vw; /* 30px / 1240px */
    right: -1.613vw; /* 20px / 1240px */
    border-width: 0.806vw; /* 10px / 1240px */
    border-style: solid;
    border-color: transparent;
    border-left-color: #f5f5f5; /* 吹き出しの背景色と同じ */
    z-index: 2;
  }
  
  .staff-voices__item--reverse .staff-voices__text {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.774vw;
    letter-spacing: 0.02em;
    color: #555555;
    /* padding: 1.21vw 0 0 2.177vw; */ /* 親(.coment)に移動したため削除 */
    padding: 0;
  }
  .staff-voices__item--reverse .staff-voices__caption {
    font-weight: 400;
    font-size: 1.29vw;
    line-height: 1.532vw;
    letter-spacing: 0.02em;
    color: #555555;
    /* margin: 3.145vw 0 0 3.226vw; */ /* 親(.coment)のpaddingで調整 */
    margin: 1.613vw 0 0 0; /* 20px / 1240px */
    text-align: left;
  }
  /* --- ▲ 修正箇所 (吹き出し @media) ▲ --- */


  /* --- ▼ 以下、変更なし (元のまま) ▼ --- */
  .staff-message__subtitle {
    display: flex;
    align-items: center;
    width: 100%;
    height: 8.065vw;
    background: #2fa0cf;
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    padding-left: 5.484vw;
    margin-top: 4.355vw;
  }
  .staff-message__media {
    width: 53.597vw;
    height: 30.403vw;
    margin: 2.5vw 0 0 2.419vw;
  }
  .staff-message__content {
    width: 65.887vw;
    height: 33.71vw;
    background: #ffecd9;
    border-radius: 1.613vw;
    padding: 4.677vw 5.242vw 0 4.758vw;
    margin: -2.419vw 0 0 9.194vw;
  }
  .staff-message__catch {
    font-size: 1.935vw;
    line-height: 2.581vw;
    color: #d58190;
  }
  .staff-message__description {
    margin-top: 2.581vw;
    font-size: 1.452vw;
    line-height: 2.097vw;
    color: #555555;
  }
}


/*
.staff-voices {
  padding-top: 100px;
}
.staff-voices__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.staff-voices__header {
  background: url(../img/staff-voices__title.webp);
  background-size: 100%;
  width: 453.5px;
  height: 64.71px;
  margin-left: -27px;
}
.staff-voices__label {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 12px 0 0 41px;
}
.staff-voices__subtitle {
  display: flex;
  align-items: center;
  width: 100%;
  height: 84px;
  background: #2fa0cf;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding-left: 42px;
  margin-top: 11px;
}
.staff-voices__item {
  position: relative;
  display: flex;
  align-items: center;
  width: 942px;
  height: 300px;
  margin-top: 46px;
}
.staff-voices__media {
  position: absolute;
  width: 400px;
  height: 300px;
}
.staff-voices__coment {
  background: url(../img/Rectangle\ 78.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 642px;
  height: 188px;
  margin: 0 0 0 auto;
  z-index: 1;
}
.staff-voices__coment2 {
  background: url(../img/haikei.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 642px;
  height: 188px;
  margin: 0 0 0 auto;
  z-index: 1;
}


.staff-voices__coment_1 {
  background: url(../img/haikei.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 642px;
  height: 188px;
  margin: 0 0 0 auto;
  z-index: 1;
}
.staff-voices__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 29px 25px 0 54px;
}
.staff-voices__caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #555555;
  margin: 39px 12px 0 0;
  text-align: right;
}
.staff-voices__item--reverse {
  flex-direction: row-reverse;
}
.staff-voices__item--reverse .staff-voices__coment {
  background: url(../img/Rectangle\ 77.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 669px;
  height: 148px;
  margin: 0 auto 0 0;
  z-index: 1;
}
.staff-voices__item--reverse .staff-voices__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 15px 0 0 27px;
}
.staff-voices__item--reverse .staff-voices__caption {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #555555;
  margin: 39px 0 0 40px;
  text-align: left;
}

.staff-message__subtitle {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background: #2fa0cf;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding-left: 68px;
  margin-top: 54px;
}
.staff-message__media {
  width: 664.6px;
  height: 377px;
  margin: 31px 0 0 30px;
}
.staff-message__content {
  width: 817px;
  height: 418px;
  background: #ffecd9;
  border-radius: 20px;
  padding: 58px 65px 0 59px;
  margin: -30px 0 0 114px;
}
.staff-message__catch {
  font-size: 24px;
  line-height: 32px;
  color: #d58190;
}
.staff-message__description {
  margin-top: 32px;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
}

@media screen and (max-width: 1240px) {
  .staff-voices {
    padding-top: 8.065vw;
  }
  .staff-voices__content {
    width: 100%;
    max-width:100% ;
    margin: 0 auto;
  }
  .staff-voices__header {
    background: url(../img/staff-voices__title.webp);
    background-size: 100%;
    width: 36.573vw;
    height: 5.219vw;
    margin-left: -2.177vw;
  }
  .staff-voices__label {
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 0.968vw 0 0 3.306vw;
  }
  .staff-voices__subtitle {
    display: flex;
    align-items: center;
    width: 100%;
    height: 6.774vw;
    background: #2fa0cf;
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    padding-left: 3.387vw;
    margin-top: 0.887vw;
  }
  .staff-voices__item {
    position: relative;
    display: flex;
    align-items: center;
    width: 75.968vw;
    height: 24.194vw;
    margin-top: 3.71vw;
  }
  .staff-voices__media {
    position: absolute;
    width: 32.258vw;
    height: 24.194vw;
  }
  .staff-voices__coment {
    background: url(../img/Rectangle\ 78.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 51.774vw;
    height: 15.161vw;
    margin: 0 0 0 auto;
    z-index: 1;
  }
  .staff-voices__text {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.774vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 2.339vw 2.016vw 0 4.355vw;
  }
  .staff-voices__caption {
    font-weight: 400;
    font-size: 1.29vw;
    line-height: 1.532vw;
    letter-spacing: 0.02em;
    color: #555555;
    margin: 3.145vw 0.968vw 0 0;
    text-align: right;
  }
  .staff-voices__item--reverse {
    flex-direction: row-reverse;
  }
  .staff-voices__item--reverse .staff-voices__coment {
    background: url(../img/Rectangle\ 77.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 53.952vw;
    height: 11.935vw;
    margin: 0 auto 0 0;
    z-index: 1;
  }
  .staff-voices__item--reverse .staff-voices__text {
    font-weight: 400;
    font-size: 1.452vw;
    line-height: 1.774vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 1.21vw 0 0 2.177vw;
  }
  .staff-voices__item--reverse .staff-voices__caption {
    font-weight: 400;
    font-size: 1.29vw;
    line-height: 1.532vw;
    letter-spacing: 0.02em;
    color: #555555;
    margin: 3.145vw 0 0 3.226vw;
    text-align: left;
  }
  .staff-message__subtitle {
    display: flex;
    align-items: center;
    width: 100%;
    height: 8.065vw;
    background: #2fa0cf;
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    padding-left: 5.484vw;
    margin-top: 4.355vw;
  }
  .staff-message__media {
    width: 53.597vw;
    height: 30.403vw;
    margin: 2.5vw 0 0 2.419vw;
  }
  .staff-message__content {
    width: 65.887vw;
    height: 33.71vw;
    background: #ffecd9;
    border-radius: 1.613vw;
    padding: 4.677vw 5.242vw 0 4.758vw;
    margin: -2.419vw 0 0 9.194vw;
  }
  .staff-message__catch {
    font-size: 1.935vw;
    line-height: 2.581vw;
    color: #d58190;
  }
  .staff-message__description {
    margin-top: 2.581vw;
    font-size: 1.452vw;
    line-height: 2.097vw;
    color: #555555;
  }
}
*/







.faq {
  padding-top: 80px;
}
.faq__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.faq__header {
  background: url(../img/faq__title.webp);
  background-size: 100%;
  width: 433.19px;
  height: 60px;
  margin-left: -18px;
}
.faq__title {
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 0.02em;
  color: #555555;
  padding: 11px 0 0 32.52px;
}
.faq__list {
  margin-top: 33px;
}
.faq__item {
  display: flex;
  align-items: center;
  width: 80%;
  height: 100px;
  margin: 0 auto;
  padding-left: 45px;
  margin-bottom: 15px;
}
.faq__item--question {
  background: rgba(255, 151, 151, 0.5);
  border: 1px solid #ff9797;
  border-radius: 10px;
}
.faq__item--answer {
  background: rgba(47, 160, 207, 0.5);
  border: 1px solid #2fa0cf;
  border-radius: 10px;
}
.faq__icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
}
.faq__icon p {
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 48px;
  line-height: 70px;
  letter-spacing: 0.02em;
  color: #ff9797;
}
.faq__text {
  font-size: 18px;
  line-height: 22px;
  color: #727272;
  margin-left: 53px;
}

@media screen and (max-width: 1240px) {
  .faq {
    padding-top: 6.452vw;
  }
  .faq__content {
    width: 100%;
    max-width: 80.645vw;
    margin: 0 auto;
  }
  .faq__header {
    background: url(../img/faq__title.webp);
    background-size: 100%;
    width: 34.935vw;
    height: 4.839vw;
    margin-left: -1.452vw;
  }
  .faq__title {
    font-size: 2.581vw;
    line-height: 3.065vw;
    letter-spacing: 0.02em;
    color: #555555;
    padding: 0.887vw 0 0 2.623vw;
  }
  .faq__list {
    margin-top: 2.661vw;
  }
  .faq__item {
    display: flex;
    align-items: center;
    width: 80%;
    height: 8.065vw;
    margin: 0 auto;
    padding-left: 3.629vw;
    margin-bottom: 1.21vw;
  }
  .faq__item--question {
    background: rgba(255, 151, 151, 0.5);
    border: 1px solid #ff9797;
    border-radius: 0.806vw;
  }
  .faq__item--answer {
    background: rgba(47, 160, 207, 0.5);
    border: 1px solid #2fa0cf;
    border-radius: 0.806vw;
  }
  .faq__icon {
    width: 5.645vw;
    height: 5.645vw;
    background: #fff;
    border-radius: 50%;
  }
  .faq__icon p {
    font-family: "Titan One", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 3.871vw;
    line-height: 5.645vw;
    letter-spacing: 0.02em;
    color: #ff9797;
  }
  .faq__text {
    font-size: 1.452vw;
    line-height: 1.774vw;
    color: #727272;
    margin-left: 4.274vw;
  }
}
.contact-form {
  padding-top: 90px;
}
.contact-form__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffecd9;
  padding: 19px 0 0 0;
}
.contact-form__header {
  background: url(../img/contact-form__title.webp);
  background-size: 100%;
  width: 614px;
  height: 69px;
  margin-left: -14px;
}
.contact-form__title {
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding: 6px 0 0 47px;
}
.contact-form__form {
  background: #fff;
  width: 930px;
  border-radius: 30px;
  margin: 23px auto 65px auto;
  padding: 65px 0 50px 0;
}
.contact-form__field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 658px;
  margin-left: 127px;
  margin-bottom: 62px;
}
.contact-form__field--textarea {
  display: block;
}
.contact-form__label {
  font-weight: 900;
  font-size: 18px;
  line-height: 22px;
  color: #4d4d4d;
}
.contact-form__required {
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  color: #d58190;
}
.contact-form__optional {
  font-weight: 900;
  font-size: 18px;
  line-height: 100%;
  color: #2fa0cf;
}
.contact-form__input {
  width: 318px;
  font-weight: 900;
  font-size: 18px;
  line-height: 25px;
  color: #d0d0d0;
  border-bottom: 1px #000000 solid;
  padding-left: 14px;
}
.contact-form__select {
  width: 318px;
  font-size: 18px;
  line-height: 22px;
  color: #b8b8b8;
  border-bottom: 1px #000000 solid;
  padding: 0 0 3px 14px;
}
.contact-form img {
  position: absolute;
  display: block;
  width: 18px;
  height: 17px;
  right: 0;
  pointer-events: none;
}
.contact-form__textarea {
  width: 100%;
  height: 242px;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 10px;
  margin-top: 27px;
  font-size: 18px;
  line-height: 22px;
  color: #b8b8b8;
  padding: 10px;
}
.contact-form__checkbox {
  width: 27px;
  height: 27px;
  border: 2px solid #474747;
  border-radius: 5px;
}
.contact-form__agreement {
  display: flex;
  align-items: center;
  margin-left: 142px;
}
.contact-form__agreement-label {
  font-weight: 900;
  font-size: 16px;
  line-height: 19px;
  color: #474747;
  margin-left: 21px;
}
.contact-form__submit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 64px;
  background: #e2a3a3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  margin: 32px auto 0 auto;
}
.contact-form__submit {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: #ffffff;
}
.contact-form .imgarea {
  position: relative;
  background: #d4bfcc;
  height: 401px;
}
.contact-form .imgarea__img {
  position: absolute;
  width: 558px;
  height: 314px;
  bottom: 0;
  right: 0;
}
.contact-form .imgarea__img img {
  position: static;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1240px) {
  .contact-form {
    padding-top: 7.258vw;
  }
  .contact-form__content {
    width: 100%;
    max-width: 80.645vw;
    margin: 0 auto;
    background: #ffecd9;
    padding: 1.532vw 0 0 0;
  }
  .contact-form__header {
    background: url(../img/contact-form__title.webp);
    background-size: 100%;
    width: 49.516vw;
    height: 5.565vw;
    margin-left: -1.129vw;
  }
  .contact-form__title {
    font-size: 3.871vw;
    line-height: 4.677vw;
    letter-spacing: 0.02em;
    color: #ffffff;
    padding: 0.484vw 0 0 3.79vw;
  }
  .contact-form__form {
    background: #fff;
    width: 75vw;
    border-radius: 2.419vw;
    margin: 23px auto 65px auto;
    padding: 5.242vw 0 4.032vw 0;
  }
  .contact-form__field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 53.065vw;
    margin-left: 10.242vw;
    margin-bottom: 5vw;
  }
  .contact-form__field--textarea {
    display: block;
  }
  .contact-form__label {
    font-weight: 900;
    font-size: 1.452vw;
    line-height: 1.774vw;
    color: #4d4d4d;
  }
  .contact-form__required {
    font-weight: 900;
    font-size: 1.452vw;
    line-height: 100%;
    color: #d58190;
  }
  .contact-form__optional {
    font-weight: 900;
    font-size: 1.452vw;
    line-height: 100%;
    color: #2fa0cf;
  }
  .contact-form__input {
    width: 25.645vw;
    font-weight: 900;
    font-size: 1.452vw;
    line-height: 2.016vw;
    color: #d0d0d0;
    border-bottom: 1px #000000 solid;
    padding-left: 1.129vw;
  }
  .contact-form__select {
    width: 25.645vw;
    font-size: 1.452vw;
    line-height: 1.774vw;
    color: #b8b8b8;
    border-bottom: 1px #000000 solid;
    padding: 0 0 0.242vw 1.129vw;
  }
  .contact-form img {
    position: absolute;
    display: block;
    width: 1.452vw;
    height: 1.371vw;
    right: 0;
    pointer-events: none;
  }
  .contact-form__textarea {
    width: 100%;
    height: 19.516vw;
    background: #ffffff;
    border: 1px solid #000000;
    border-radius: 0.806vw;
    margin-top: 2.177vw;
    font-size: 1.452vw;
    line-height: 1.774vw;
    color: #b8b8b8;
    padding: 0.806vw;
  }
  .contact-form__checkbox {
    width: 2.177vw;
    height: 2.177vw;
    border: 2px solid #474747;
    border-radius: 0.403vw;
  }
  .contact-form__agreement {
    display: flex;
    align-items: center;
    margin-left: 11.452vw;
  }
  .contact-form__agreement-label {
    font-weight: 900;
    font-size: 1.29vw;
    line-height: 1.532vw;
    color: #474747;
    margin-left: 1.694vw;
  }
  .contact-form__submit-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20.968vw;
    height: 5.161vw;
    background: #e2a3a3;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0.403vw;
    margin: 2.581vw auto 0 auto;
  }
  .contact-form__submit {
    font-weight: 900;
    font-size: 1.452vw;
    letter-spacing: 0.3em;
    color: #ffffff;
  }
  .contact-form .imgarea {
    position: relative;
    background: #d4bfcc;
    height: 32.339vw;
  }
  .contact-form .imgarea__img {
    position: absolute;
    width: 45vw;
    height: 25.323vw;
    bottom: 0;
    right: 0;
  }
  .contact-form .imgarea__img img {
    position: static;
    width: 100%;
    height: 100%;
  }
}
.footer__content {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(247.1deg, #ffe9e9 0%, #d58190 0.01%);
  padding: 43px 0 42px 100px;
}
.footer__logo {
  width: 272px;
  height: 152px;
  margin-top: 52px;
}
.footer__address {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-top: 11px;
}
.footer__divider {
  width: 1px;
  height: 295px;
  background: #ffffff;
  margin-left:30px;
}
.footer__contacts {
  margin: 15px 0 0 8px;
}
.footer__contact {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.footer__contact-label {
  white-space: nowrap;
}
.footer__contact-link {
  margin-left: 5px;
}
.footer__nav {
  margin: 13px 0 0 39px;
}
.footer__nav-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.15em;
  color: #ffffff;
}
.footer__nav-list {
  margin-top: 18px;
}
.footer__nav-item {
  margin-bottom: 14px;
}
.footer__nav-link {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #ffffff;
}
.footer__social-list {
  width: 240px;
  display: flex;
  justify-content: space-around;
  margin: 63px 0 0 59px;
}
.footer__social-item {
  width: 40px;
  height: 40px;
}
.footer__copyright {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffd2d2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 0 18px 0;
}
.footer__copyright p {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #fff;
}

/* --- ここからスマホ用のスタイルを追記 --- */
@media screen (max-width: 767px) {
  
  /* * 1. メインのコンテンツエリア */
  .footer__content {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    max-width: 100%;
  }

  /* * 2. 縦の仕切り線 */
  .footer__divider {
    display: none;
  }

  /* * 3. 住所・連絡先エリア全体 */
  .footer__info {
    width: 100%;
    text-align: center;
  }

  /* ロゴ（中央揃え） */
  .footer__logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto; /* 左右中央揃え */
  }

  .footer__logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 住所（ロゴとの隙間を確保） */
  .footer__address {
    font-size: 14px;
    margin-top: 15px; /* ロゴの下に隙間 */
    margin-bottom: 0;
    line-height: 1.6;
  }


  /* * 4. 連絡先（TEL/FAX）エリア */
/* --- ▼ TEL/FAXのセンタリングとスペース調整 ▼ --- */
  .footer__contact {
    font-size: 14px;
    /* (1) display: flex で横並び要素を制御 */
    display: flex;
    /* (2) flexアイテム（TEL: と 番号）を中央に配置 */
    justify-content: center;
    /* (3) 縦位置も中央に（念のため） */
    align-items: center;
    /* (4) TEL: と 番号 の間の隙間を 5px に指定（詰める） */
    gap: 5px; 
    line-height: 1.5;
    padding: 4px 0; /* TELとFAXの行間 */
  }
  /* --- ▲ TEL/FAXのセンタリングとスペース調整 ▲ --- */


  /* * 5. ナビゲーション */
  .footer__nav {
    margin: 25px 0 0 0;
    width: 100%;
    text-align: center;
  }

  .footer__nav-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer__nav-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    text-align: center;
    line-height: 1.5;
    column-gap: 30px;
  }

  .footer__nav-item {
    font-size: 14px;
    margin-bottom: 12px;
    break-inside: avoid;
    -webkit-break-inside: avoid;
    page-break-inside: avoid;
  }

  .footer__nav-link {
    font-size: 14px;
  }


  /* * 6. SNSリスト */
  .footer__social-list {
    width: 100%;
    max-width: 240px;
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-left: 0;
    list-style: none;
  }

  .footer__social-item {
    width: 40px;
    height: 40px;
  }
  
  .footer__social-icon {
    width: 100%;
    height: auto;
    display: block;
  }


  /* * 7. コピーライト */
  .footer__copyright {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    margin-top: 20px;
    background-color: #fafafa;
  }

  .footer__copyright p {
    font-size: 12px;
    text-align: center;
    color: #555;
    margin: 0;
  }
}

/*

@media screen and (max-width: 1240px) {
  .footer__content {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 80.645vw;
    margin: 0 auto;
    background: linear-gradient(247.1deg, #ffe9e9 0%, #d58190 0.01%);
    padding: 3.468vw 0 3.387vw 8.065vw;
  }
  .footer__logo {
    width: 24.839vw;
    height: 6.304vw;
    margin-top: 4.194vw;
  }
  .footer__address {
    font-size: 1.29vw;
    line-height: 1.532vw;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-top: 0.887vw;
  }
  .footer__divider {
    width: 0.081vw;
    height: 23.79vw;
    background: #ffffff;
  }
  .footer__contacts {
    margin: 1.21vw 0 0 0.645vw;
  }
  .footer__contact {
    display: flex;
    align-items: center;
    font-size: 1.29vw;
    line-height: 1.532vw;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
  .footer__contact-label {
    white-space: nowrap;
  }
  .footer__contact-link {
    margin-left: 0.403vw;
  }
  .footer__nav {
    margin: 1.048vw 0 0 3.145vw;
  }
  .footer__nav-title {
    font-weight: 400;
    font-size: 1.613vw;
    line-height: 1.935vw;
    letter-spacing: 0.15em;
    color: #ffffff;
  }
  .footer__nav-list {
    margin-top: 1.452vw;
  }
  .footer__nav-item {
    margin-bottom: 1.129vw;
  }
  .footer__nav-link {
    font-size: 1.29vw;
    line-height: 1.532vw;
    letter-spacing: 0.02em;
    color: #ffffff;
  }
  .footer__social-list {
    width: 19.355vw;
    display: flex;
    justify-content: space-around;
    margin: 5.081vw 0 0 4.758vw;
  }
  .footer__social-item {
    width: 3.226vw;
    height: 3.226vw;
  }
  .footer__copyright {
    width: 100%;
    max-width: 80.645vw;
    margin: 0 auto;
    background: #ffd2d2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.048vw 0 1.452vw 0;
  }
  .footer__copyright p {
    font-size: 1.29vw;
    letter-spacing: 0.02em;
    color: #fff;
  }
}
*/

/* ------------------------------------------- */
/* スマートフォン向けのスタイル (768px以下)
/* ------------------------------------------- */
@media screen and (max-width: 768px) {

  /* 既存のスタイルがPC幅(1240px)基準のvw単位を多用しているため、
    スマホ幅ではフォントサイズ等が小さくなりすぎる場合があります。
    ここでは主にレイアウト崩れを修正します。
  */

  /* 冒頭のメッセージ (羽崎病院ではたらくあなたへ) */
  .staff-message__body {
    display: flex; 
    flex-direction: column; /* スマホでは縦積みに変更 */
    align-items: center; /* 中央寄せ */
  }

  .staff-message__media {
    width: 90%; /* 画像の幅を調整 */
    max-width: 400px; /* 最大幅を指定 */
    height: auto; /* 高さを自動に */
    margin: 0 0 20px 0; /* PC用のマージンをリセットし、下に余白を追加 */
  }

  .staff-message__content {
    width: 90%; /* テキストコンテンツの幅を調整 */
    height: auto; /* 高さを自動に */
    margin: 0; /* PC用のマージン(-30px 0 0 114px)をリセット */
    padding: 20px; /* 内側の余白を調整 */
    box-sizing: border-box; /* paddingを含めて幅を計算 */
  }

  .staff-message__subtitle {
    height: auto; /* 高さを自動に */
    padding: 15px 20px; /* 余白を調整 */
    font-size: 24px; /* スマホ用のフォントサイズ (vw解除) */
    line-height: 1.4;
    text-align: center; /* 中央寄せ */
  }
  
  .staff-message__catch {
    font-size: 20px; /* スマホ用のフォントサイズ (vw解除) */
    line-height: 1.5;
  }

  .staff-message__description {
    font-size: 16px; /* スマホ用のフォントサイズ (vw解除) */
    line-height: 1.6;
    margin-top: 20px;
  }
	
/* ------------------------------------------- */
/* スマートフォン向けのスタイル (768px以下)
/* ------------------------------------------- */
@media screen and (max-width: 768px) {

  /* ... (既存の .staff-message や .ceo-message のスタイルはそのまま) ... */


  /* スタッフの声 (一覧) */
  .staff-voices__subtitle {
    height: auto; /* 高さを自動に */
    padding: 15px 20px; /* 余白を調整 */
    font-size: 24px; /* スマホ用のフォントサイズ (vw解除) */
    line-height: 1.4;
    text-align: center;
  }

  .staff-voices__item,
  .staff-voices__item--reverse {
    flex-direction: column; /* 縦積みに変更 */
    width: 90%; /* 幅を調整 */
    height: auto; /* 高さを自動に */
    margin: 30px auto 0 auto; /* 中央寄せとマージン */
    align-items: center; /* 中央寄せ */
  }

  .staff-voices__media {
    position: static; /* absoluteを解除 */
    width: 70%; /* 画像の幅を調整 */
    max-width: 250px; /* 最大幅 */
    height: auto; /* 高さを自動に */
    /* margin-bottom: -30px; */ /* 吹き出しとの重なり指定を削除 */
    margin-bottom: 20px; /* 画像とテキストボックスの間に余白を設定 */
    /* z-index: 2; */ /* z-index指定を削除 */
  }

 .staff-voices__coment,
  .staff-voices__coment2,
  .staff-voices__coment_1,
  .staff-voices__item--reverse .staff-voices__coment {
    width: 100%; /* 吹き出しの幅を100%に */
    height: auto; /* 高さを自動に */
    margin: 0; /* マージンリセット */
    
    /* --- ここから変更 --- */
    /* background-image: url('../img/Rectangle 78.webp'); */ /* 吹き出し背景画像を削除 */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: 100% 100%; */
    background-color: #f5f5f5; /* グレイテイストの背景色を追加 */
    
    /* padding: 45px 20px 20px 20px; */ /* 重なり用のpaddingを削除 */
    padding: 20px; /* シンプルな内側余白に変更 */
    /* --- ここまで変更 --- */
    
    box-sizing: border-box; /* paddingを含めて計算 */
    /* z-index: 1; */ /* z-index指定を削除 */
  }

  .staff-voices__text,
  .staff-voices__item--reverse .staff-voices__text {
    font-size: 16px; /* スマホ用のフォントサイズ (vw解除) */
    line-height: 1.6;
    padding: 0; /* 親要素でpaddingを調整したのでリセット */
    text-align: left; /* テキストは左寄せ */
  }

  .staff-voices__caption,
  .staff-voices__item--reverse .staff-voices__caption {
    font-size: 14px; /* スマホ用のフォントサイズ (vw解除) */
    text-align: right; /* PCと合わせる */
    margin: 15px 0 0 0; /* マージン調整 (右マージンを削除) */
  }
  
  /* 逆パターンのスタイルリセット (上記の .staff-voices__coment で一括指定されたため、ほぼ不要) */
  .staff-voices__item--reverse .staff-voices__coment {
      /* 個別指定は不要 */
  }

  .staff-voices__item--reverse .staff-voices__caption {
    /* 個別指定は不要 */
  }
}	
	


  /* 本部長からのメッセージ */
  .ceo-message-container {
    display: flex; 
    flex-direction: column-reverse; /* スマホでは縦積み (画像を上にするため逆順) */
    align-items: center;
    width: 90%; /* 幅を親要素に合わせる */
    margin: 0 auto; /* 中央寄せ */
  }

  .ceo-message-image {
    width: 80%;
    max-width: 300px; /* 最大幅 */
    margin-bottom: 20px;
  }
  
  .ceo-message-image img {
     width: 100%; /* 画像の幅をコンテナに合わせる */
     height: auto; /* 高さを自動に */
  }

  .ceo-message-text {
    width: 100%; /* 幅を100%に */
    font-size: 16px; /* スマホ用のフォントサイズ */
    line-height: 1.6;
  }

  .ceo-message-text p {
    margin-bottom: 15px; /* 段落間のマージン */
  }
  
  .ceo-message-section h2 {
    font-size: 24px; /* タイトルのフォントサイズ調整 */
    margin-bottom: 20px;
  }


  /* スタッフの声 (一覧) */
  .staff-voices__subtitle {
    height: auto; /* 高さを自動に */
    padding: 15px 20px; /* 余白を調整 */
    font-size: 24px; /* スマホ用のフォントサイズ (vw解除) */
    line-height: 1.4;
    text-align: center;
  }

  .staff-voices__item,
  .staff-voices__item--reverse {
    flex-direction: column; /* 縦積みに変更 */
    width: 90%; /* 幅を調整 */
    height: auto; /* 高さを自動に */
    margin: 30px auto 0 auto; /* 中央寄せとマージン */
    align-items: center; /* 中央寄せ */
  }

  .staff-voices__media {
    position: static; /* absoluteを解除 */
    width: 70%; /* 画像の幅を調整 */
    max-width: 250px; /* 最大幅 */
    height: auto; /* 高さを自動に */
    margin-bottom: -30px; /* 吹き出しと少し重ねる (値は調整が必要) */
    z-index: 2; /* 吹き出しより手前に */
  }

 .staff-voices__coment,
  .staff-voices__coment2,
  .staff-voices__coment_1,
  .staff-voices__item--reverse .staff-voices__coment {
    width: 100%; /* 吹き出しの幅を100%に */
    height: auto; /* 高さを自動に */
    margin: 0; /* マージンリセット */
  /* ここから変更・追加 
    background-image: url('../img/Rectangle 78.webp'); 
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; 
     ここまで変更・追加 */
    padding: 45px 20px 20px 20px; /* 上部（画像と重なる分）の余白を多めに */
    box-sizing: border-box; /* paddingを含めて計算 */
    z-index: 1;
  }

  .staff-voices__text,
  .staff-voices__item--reverse .staff-voices__text {
    font-size: 16px; /* スマホ用のフォントサイズ (vw解除) */
    line-height: 1.6;
    padding: 0; /* 吹き出し側でpaddingを調整したのでリセット */
    text-align: left; /* テキストは左寄せに戻す (または中央寄せ center) */
  }

  .staff-voices__caption,
  .staff-voices__item--reverse .staff-voices__caption {
    font-size: 14px; /* スマホ用のフォントサイズ (vw解除) */
    text-align: right; /* PCと合わせる (または中央寄せ center) */
    margin: 15px 10px 0 0; /* マージン調整 */
  }
  
  /* 逆パターンのスタイルをリセット */
  .staff-voices__item--reverse .staff-voices__coment {
      width: 100%;
      height: auto;
      margin: 0;
      padding: 45px 20px 20px 20px; /* 他の吹き出しと合わせる */
  }

  .staff-voices__item--reverse .staff-voices__caption {
    text-align: right;
    margin: 15px 10px 0 0;
  }
}


/* --- ここからスマホ用のスタイルを追記 --- */
@media screen and (max-width: 767px) {
  
  /* * 1. メインのコンテンツエリア */
  .footer__content {
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    max-width: 100%;
  }

  /* * 2. 縦の仕切り線 */
  .footer__divider {
    display: none;
  }

  /* * 3. 住所・連絡先エリア全体 */
  .footer__info {
    width: 100%;
    text-align: center;
  }

  /* ロゴ（中央揃え） */
  .footer__logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto; /* 左右中央揃え */
  }

  .footer__logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 住所（ロゴとの隙間を確保） */
  .footer__address {
    font-size: 14px;
    margin-top: 15px; /* ロゴの下に隙間 */
    margin-bottom: 0;
    line-height: 1.6;
  }


  /* --- ▼ ここから差し替え ▼ --- */
  
  /* * 4. 連絡先（TEL/FAX）エリア */
  
  /* (1) 連絡先ブロック（TELとFAXをまとめる親） */
  .footer__contacts {
    margin: 15px 0 0 0; /* 住所との隙間 */
    display: flex;
    flex-direction: column; /* スマホでは縦積みに */
    align-items: center; /* TEL行とFAX行を中央揃え */
    gap: 8px; /* TEL行とFAX行の間の隙間 */
  }

  /* (2) 各連絡先（TEL行、FAX行） */
  .footer__contact {
    font-size: 14px;
    line-height: 1.5;
    /* pタグ固有の余白をリセット */
    padding: 0;
    margin: 0;
    
    /* 中の「ラベル」と「番号」を横並びにする */
    display: flex;
    align-items: center;
    /* ラベルと番号の隙間を 5px に詰める */
    gap: 5px; 
  }
  
  /* (3) PC用のマージン/パディングを強制リセット */
  .footer__contact-label,
  .footer__contact-link {
    margin: 0;
    padding: 0;
  }

  .footer__contact-link {
    color: inherit;
    text-decoration: none;
  }
  /* --- ▲ ここまで差し替え ▲ --- */


  /* * 5. ナビゲーション */
  .footer__nav {
    margin: 25px 0 0 0;
    width: 100%;
    text-align: center;
  }

  .footer__nav-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer__nav-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    text-align: center;
    line-height: 1.5;
    column-gap: 30px;
  }

  .footer__nav-item {
    font-size: 14px;
    margin-bottom: 12px;
    break-inside: avoid;
    -webkit-break-inside: avoid;
    page-break-inside: avoid;
  }

  .footer__nav-link {
    font-size: 14px;
  }


  /* * 6. SNSリスト */
  .footer__social-list {
    width: 100%;
    max-width: 240px;
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-left: 0;
    list-style: none;
  }

  .footer__social-item {
    width: 40px;
    height: 40px;
  }
  
  .footer__social-icon {
    width: 100%;
    height: auto;
    display: block;
  }


/* * 7. コピーライト */
  .footer__copyright {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    background-color: #fafafa;
  }

  .footer__copyright p {
    font-size: 12px;
    text-align: center;
    color: #555;
    margin: 0;
  }
}

/* --- ここからFAQセクションのスマホ用スタイル --- */
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 40px; /* 上の余白をpxで指定 */
  }

  .faq__content {
    max-width: 100%; /* 最大幅の指定をリセット */
    padding: 0 20px; /* 画面の左右に余白を追加 */
  }

  .faq__header {
    /* PC版の比率(433:60)を参考にサイズを調整 */
    width: 300px;
    height: 42px;
    margin-left: -10px; /* 見出しの左位置を調整 */
    background-size: contain; /* 背景画像が枠内に収まるように */
  }

  .faq__title {
    font-size: 24px; /* 読めるフォントサイズをpxで指定 */
    line-height: 1.2;
    padding: 8px 0 0 20px; /* 位置をpxで調整 */
  }

  .faq__list {
    margin-top: 25px; /* リストの上余白をpxで指定 */
  }

  .faq__item {
    width: 100%; /* PC版の80%指定を解除し、横幅いっぱいに */
    height: auto; /* 高さを固定から自動に変更 */
    padding: 15px; /* 内側の余白をpxで指定 */
    margin-bottom: 15px; /* vwからpxに */
  }

  .faq__item--question {
    border-radius: 8px; /* 角丸をpxで指定 */
  }

  .faq__item--answer {
    border-radius: 8px; /* 角丸をpxで指定 */
  }

  .faq__icon {
    width: 50px; /* アイコンサイズをpxで指定 */
    height: 50px;
    flex-shrink: 0; /* アイコンがテキストに押されて縮まないように */
  }

  .faq__icon p {
    font-size: 32px; /* アイコン内の文字サイズをpxで指定 */
    line-height: 50px; /* アイコンの高さに合わせる */
  }

  .faq__text {
    font-size: 16px; /* 質問・回答の文字サイズをpxで指定 */
    line-height: 1.5; /* 行間を調整 */
    margin-left: 20px; /* アイコンとの距離をpxで指定 */
  }
/* --- ここから .contact-form のスマホ用スタイル --- */

.contact-form {
  padding-top: 50px; /* 上余白をpx指定 */
}

.contact-form__content {
  max-width: 100%; /* 最大幅を解除 */
  padding: 10px 0 0 0; /* vwからpxに */
}

.contact-form__header {
  /* PC版の比率(614:69)を参考に調整 */
  width: 320px;
  height: 36px;
  margin-left: -10px;
  background-size: contain;
}

.contact-form__title {
  font-size: 26px; /* 読めるサイズに */
  line-height: 1.2;
  padding: 4px 0 0 30px; /* pxで再調整 */
}

.contact-form__form {
  width: 90%; /* 画面幅の90%に */
  border-radius: 15px; /* 角丸をpxで */
  margin: 20px auto 30px auto; /* マージンをpxで */
  padding: 30px 20px; /* 内側余白をpxで */
}

.contact-form__field {
  flex-direction: column; /* 縦積みに変更 */
  align-items: flex-start; /* 左揃えに */
  width: 100%; /* 横幅いっぱいに */
  margin-left: 0; /* 左マージンをリセット */
  margin-bottom: 30px; /* 下マージンをpxで */
}

.contact-form__field--textarea {
  margin-bottom: 30px; /* 他のフィールドと合わせる */
}

.contact-form__label {
  font-size: 16px; /* 読めるサイズに */
  line-height: 1.4;
  margin-bottom: 10px; /* 入力欄との隙間 */
}

/* 必須・任意ラベルも同様に */
.contact-form__required,
.contact-form__optional {
  font-size: 14px;
}

.contact-form__input,
.contact-form__select {
  width: 100%; /* 入力欄を横幅いっぱいに */
  font-size: 16px;
  line-height: 1.5;
  padding-left: 8px;
  padding-bottom: 5px;
}

/* セレクトボックスの矢印 */
.contact-form img {
  width: 15px;
  height: 14px;
  right: 10px;
}

.contact-form__textarea {
  height: 150px; /* 高さをpxで指定 */
  font-size: 16px;
  border-radius: 8px;
  margin-top: 10px;
}

.contact-form__agreement {
  margin-left: 0; /* 左マージンをリセット */
  align-items: flex-start; /* 上端揃えに変更 */
}

.contact-form__checkbox {
  width: 22px; /* pxで指定 */
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0; /* 縮まないように */
}

.contact-form__agreement-label {
  font-size: 14px; /* 読めるサイズに */
  line-height: 1.5;
  margin-left: 10px; /* チェックボックスとの隙間 */
}

.contact-form__submit-wrap {
  width: 100%;
  max-width: 280px; /* 最大幅を指定 */
  height: 50px; /* 高さをpxで */
  border-radius: 5px;
  margin-top: 25px;
}

.contact-form__submit {
  font-size: 16px; /* 読めるサイズに */
}

.contact-form .imgarea {
  height: 200px; /* 高さをpxで指定 */
}

.contact-form .imgarea__img {
  /* 比率を保ちつつサイズ調整 */
  width: 280px;
  height: 157px;
}
/* --- ここから .relocation-support のスマホ用スタイル --- */

.relocation-support {
  padding-top: 40px;
}

.relocation-support__map {
  width: 100%;
  height: auto; /* 高さを自動にしてアスペクト比を維持 */
}

.relocation-support__content {
  max-width: 100%;
  border-radius: 10px;
  padding: 10px; /* vwからpxに */
}

.relocation-support__wrapper {
  width: auto; /* 親要素に合わせる */
  border-width: 3px; /* 破線を細く */
  border-radius: 8px;
  padding: 15px; /* 内側に余白を追加 */
}

.relocation-support__header {
  /* PC版比率(454:68)を参考に調整 */
  width: 300px;
  height: 45px;
  margin: 0 0 0 -10px; /* 位置調整 */
  background-size: contain;
}

.relocation-support__label {
  font-size: 32px; /* 読めるサイズに */
  line-height: 1.2;
  letter-spacing: 0.5em; /* 少し詰める */
  padding: 5px 0 0 30px; /* pxで調整 */
}

.relocation-support__catch {
  width: 100%;
  height: auto; /* 高さを自動に */
  margin: 20px auto 0 auto;
}

.relocation-support__features {
  margin-top: 30px;
}

.relocation-support__feature {
  align-items: flex-start; /* テキストが複数行になっても上揃えに */
  margin: 0 !important; /* !importantで複雑な指定を上書き */
  padding: 0 10px;
  margin-bottom: 15px !important;
}

.relocation-support__feature-icon {
  width: 50px !important; /* サイズをpxで固定 */
  height: 50px !important;
  margin-right: 15px !important; /* 隙間をpxで */
  flex-shrink: 0; /* アイコンが縮まないように */
}

.relocation-support__feature-text {
  width: auto !important; /* 幅自動 */
  height: auto !important; /* 高さ自動 */
}

.relocation-support__details {
  width: auto;
  margin: 30px 0 0 0; /* vwマージンをリセット */
  border-radius: 8px;
  padding: 20px; /* 内側余白をpxで */
}

.relocation-support__details-title,
.relocation-support__region-title,
.relocation-support__info-title {
  font-size: 18px; /* 見出しサイズを統一 */
  line-height: 1.4;
  padding-top: 0;
  margin-top: 25px;
}
/* 最初の見出しだけ上マージンを0に */
.relocation-support__details-title {
  margin-top: 0;
}

.relocation-support__details-sub {
  font-size: 14px;
}

.relocation-support__details-list,
.relocation-support__region-list {
  padding: 15px 0 0 15px; /* 左のインデントをpxで */
}

.relocation-support__details-item,
.relocation-support__region-item,
.relocation-support__info-lead {
  font-size: 14px; /* 本文テキスト */
  line-height: 1.6;
  padding: 0; /* vwパディングをリセット */
  margin-top: 10px;
}

.relocation-support__info-lead {
  padding: 15px 0 0 15px;
}

.relocation-support__info-detail {
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0 0 15px; /* pxで調整 */
}

.relocation-support__footer-text {
  margin: 30px 0 0 10px; /* pxで調整 */
  font-size: 16px;
  line-height: 1.5;
}

/* --- ここから .sns のスマホ用スタイル --- */

.sns {
  padding-top: 50px;
}

.sns__content {
  max-width: 100%;
  padding: 0 20px; /* 左右余白 */
}

.sns__header {
  /* PC版比率(453:59)を参考に調整 */
  width: 294px;
  height: 39px;
  margin-left: -10px;
  background-size: contain;
}

.sns__label {
  font-size: 24px; /* 読めるサイズに */
  line-height: 1.2;
  padding: 8px 0 0 20px;
}

.sns__catch {
  font-size: 20px; /* 読めるサイズに */
  line-height: 1.4;
  margin-top: 40px;
}

.sns__description {
  font-size: 14px;
  line-height: 1.6;
  margin: 20px 0 0 0; /* 左右マージンはリセット */
  text-align: center; /* 中央揃えに */
}

.sns__list {
  width: 200px; /* アイコン間の幅を調整 */
  margin: 30px auto 0 auto;
}

.sns__item {
  width: 45px; /* アイコンサイズをpxで指定 */
  height: 45px;
}

/* --- ここから .simulation のスマホ用スタイル --- */

.simulation {
  padding-top: 40px;
}

.simulation__content {
  max-width: 100%;
  padding: 0 15px 40px 15px; /* 左右に余白を追加 */
}

.simulation__header {
  /* PC版比率(612:60)を参考に調整 */
  width: 297px;
  height: 30px;
  margin-left: -10px;
  background-size: contain;
}

.simulation__title {
  font-size: 20px;
  line-height: 1.2;
  padding: 5px 0 0 20px;
}

.simulation__subtitle {
  font-size: 18px; /* 読めるサイズに */
  line-height: 1.5;
  padding: 15px;
  margin-top: 20px;
}

.simulation__math {
  font-size: 16px;
  line-height: 1.5;
  margin: 25px 0 0 15px;
}

.simulation__note {
  font-size: 14px; /* PC版の指定を参考に */
  line-height: 1.6;
  padding: 15px;
  margin-top: 20px;
}

.simulation__box {
  /* 高さをpxで指定し、オーバーレイを維持 */
  position: relative;
  height: 250px;
  margin-top: 30px;
}

.simulation__box--img {
  /* 画像(または背景)の高さを調整 */
  height: 200px;
  width: 100%;
  object-fit: cover; /* 画像の場合 */
  background-size: cover; /* 背景画像の場合 */
  background-position: center;
}

.simulation__box--title {
  font-size: 18px;
  line-height: 1.4;
  padding: 15px;
  top: 30px; /* 位置をpxで調整 */
}

.simulation__box--text {
  font-size: 14px;
  line-height: 1.6;
  padding: 15px;
}

.simulation__box-second {
  margin-top: 30px;
}

.simulation__box-second--header {
  width: 100%; /* 横幅いっぱいに */
  padding: 10px 15px;
}

.simulation__box-second--icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  flex-shrink: 0;
}

.simulation__box-second--title {
  font-size: 18px;
  line-height: 1.4;
}

.simulation__box-second--img {
  height: 180px; /* 高さをpxで指定 */
  width: 100%;
  object-fit: cover; /* 画像の場合 */
  background-size: cover; /* 背景画像の場合 */
  background-position: center;
}

.simulation__box-second--text {
  font-size: 14px;
  line-height: 1.6;
  padding: 15px; /* パディングをシンプルに */
}
/* --- ここから .support-relocation のスマホ用スタイル --- */

.support-relocation {
  padding-top: 40px;
}

.support-relocation__content {
  max-width: 100%;
  padding: 0 15px; /* 左右の余白 */
}

.support-relocation__header {
  /* PC版比率(634:108)を参考に調整 */
  width: 300px;
  height: 51px;
  margin-left: -10px;
  background-size: contain;
}

.support-relocation__title {
  font-size: 18px; /* 読めるサイズに */
  line-height: 1.3;
  top: 0px; /* pxで再配置 */
  left: 20px; /* pxで再配置 */
}

.support-relocation__text {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
}

/* --- 1つ目のアイコン＋説明ブロック --- */
.support-relocation__details {
  flex-direction: column; /* 縦積みに変更 */
  width: 100%;
  height: auto; /* 高さを自動に */
  margin-top: 25px;
}

.support-relocation__icon {
  width: 100%;
  height: auto;
  padding: 25px 0; /* 上下余白をpxで */
}

.support-relocation__icon img {
  width: 100px; /* アイコンサイズをpxで指定 */
  height: 100px;
}

.support-relocation__description {
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  padding: 25px 20px; /* 内側余白をpxで */
}

/* --- 複雑な装飾のセクション --- */
.support-relocation__relocation {
  width: 100%;
  height: auto; /* 高さを自動に */
  margin-top: 40px;
  text-align: center; /* 中央揃えに */
}

/* 装飾用の背景アイテムはスマホでは非表示に */
.support-relocation__relocation--backitem {
  display: none;
}

.support-relocation__relocation-title {
  font-size: 24px;
  line-height: 1.4;
}

.support-relocation__relocation--text {
  font-size: 24px;
  line-height: 1.4;
  color: #555555; /* 背景波を消すため、文字色を変更 */
}

/* 波の背景(疑似要素)を非表示に */
.support-relocation__relocation--iconarea:before {
  display: none;
}

.support-relocation__relocation-icon {
  width: 50px;
  height: 50px;
  margin: 10px auto; /* 中央揃え */
}

/* --- 2つ目のアイコン＋説明ブロック --- */
.support-relocation__relocation__details {
  flex-direction: column; /* 縦積みに変更 */
  width: 100%;
  height: auto;
  margin-top: 25px; /* 上マージンを調整 */
}

.support-relocation__relocation__details-icon {
  width: 100%;
  height: auto;
  padding: 25px 0;
}

.support-relocation__relocation__details-icon img {
  width: 90px;
  height: 90px;
}

.support-relocation__relocation__details-description {
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  padding: 25px 20px;
}

/* --- テキストラベルと金額 --- */
.support-relocation__label {
  font-size: 18px;
  line-height: 1.4;
  display: block; /* 縦に並べる */
  margin-bottom: 5px;
}

.support-relocation__value {
  font-size: 22px;
}

.support-relocation__value--large {
  font-size: 28px;
}

	/* --- ここから .banner のスマホ用スタイル --- */

.banner {
  height: auto; /* 高さをコンテンツに合わせて自動調整 */
  padding-top: 20px; /* 上余白をpxで指定 */
  padding-bottom: 20px; /* 下余白も追加 */
}

.banner-text {
  font-size: 24px; /* 読めるフォントサイズに */
  line-height: 1.4; /* 行間を調整 */
  border-top-width: 4px; /* 線の太さをpxで指定 */
  border-bottom-width: 4px; /* 線の太さをpxで指定 */
  padding: 15px 10px; /* 上下・左右のパディングをpxで指定 */
}

/* --- ここから .hospital-overview のスマホ用スタイル --- */

.hospital-overview {
  /* 複雑な絶対配置をやめるため、paddingをリセット */
  padding-top: 40px;
}

.hospital-overview__content {
  max-width: 100%;
  width: auto;
  margin: 0 15px; /* 左右にマージンを設ける */
  padding: 30px 15px; /* 内側余白をpxで */
  border-radius: 10px;
}

/* --- 導入（イントロ）部分 --- */

/* スマホでは装飾用の画像を非表示 */
.hospital-overview__intro .features-intro__image,
.hospital-overview__intro .features-intro__illustration {
  display: none;
}

.hospital-overview__intro .features-intro__header {
  position: static; /* 絶対配置を解除 */
  width: 293px;
  height: 39px;
  margin: 0 0 0 -10px;
  background-size: contain;
}

.hospital-overview__intro .features-intro__title {
  font-size: 24px;
  line-height: 1.2;
  padding: 8px 0 0 20px;
}

.hospital-overview__intro .features-intro__box {
  flex-direction: column; /* 縦積みに変更 */
  width: 100%;
  height: auto;
  margin: 20px 0 0 0;
  padding: 20px;
  border-radius: 8px;
}

/* ↓ イントロのアイコンサイズをさらに大きく */
.hospital-overview__intro .features-intro__box img {
  width: 100px; /* ← 変更 (80pxから) */
  height: 100px; /* ← 変更 (80pxから) */
  margin: 0 auto 15px auto; /* アイコンを中央に配置 */
}

.hospital-overview__intro .features-intro__description {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: center; /* テキストを中央揃え */
}

/* --- 3つの特徴（Benefits）部分 --- */

.hospital-overview__benefits {
  padding-top: 40px;
}

.hospital-overview__benefits .benefits__header {
  position: static; /* 絶対配置を解除 */
  width: 300px;
  height: 39px;
  margin: 0 0 30px -10px;
  background-size: contain;
}

.hospital-overview__benefits .benefits__title {
  font-size: 20px;
  line-height: 1.2;
  padding: 10px 0 0 20px;
}

.hospital-overview__benefits .benefits__item {
  flex-direction: column !important; /* row-reverse指定を上書き */
  margin: 0 0 30px 0; /* 左右マージンをリセット */
  height: auto;
}

/* スマホでは背景の大きな画像を非表示 */
.hospital-overview__benefits .benefits__item--expertise:before,
.hospital-overview__benefits .benefits__item--growth:before,
.hospital-overview__benefits .benefits__item--teamwork:before {
  display: none;
}

.hospital-overview__benefits .benefits__content {
  position: static; /* 絶対配置の基準を解除 */
  width: 100%;
  height: auto;
  margin-top: 0;
  padding: 20px;
  border-radius: 8px;
}

/* ↓ 特徴のアイコンラッパーサイズをさらに大きく */
.hospital-overview__benefits .benefits__icon {
  position: static; /* 絶対配置を解除 */
  transform: none; /* transformをリセット */
  width: 100px; /* ← 変更 (90pxから) */
  height: 80px; /* ← 変更 (70pxから) */
  margin: 0 auto 15px auto; /* 中央に配置 */
  display: flex; /* 中のimgを中央揃えにするため */
  align-items: center;
  justify-content: center;
}

/* ↓ 特徴のアイコン画像サイズをさらに大きく */
.hospital-overview__benefits .benefits__icon img {
  position: static; /* 絶対配置を解除 */
  transform: none; /* transformをリセット */
  width: 65px; /* ← 変更 (55pxから) */
  height: 65px; /* ← 変更 (55pxから) */
}

.hospital-overview__benefits .benefits__subtitle {
  margin-top: 0; /* マージンリセット */
  font-size: 18px;
  line-height: 1.4;
}

.hospital-overview__benefits .benefits__text {
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0 0 0; /* マージン調整 */
  text-align: left; /* PC版の中央揃えをリセット */
}
/* --- ここから .staff-voices のスマホ用スタイル --- */

.staff-voices__header {
  /* PC版の比率(約7:1)を参考に調整 */
  width: 294px;
  height: 43px;
  margin-left: 10px; /* 位置を調整 */
  background-size: contain; /* 画像が枠内に収まるように */
}
	  .staff-voices__label {
    font-size: 6vw;
    line-height: 7.1vw;
    letter-spacing: 0.02em;
    color: #555555;
  }
}



/* ============================================ */
/* 送信ボタン（文字中央揃え＋矢印付き＋立体ギミック） */
/* ============================================ */

/* ボタン本体のスタイル */
.contact-form__form .wpcf7-submit {
  /* Flexboxで中身（文字と矢印）を完全中央揃えにする */
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 20px; /* 文字と矢印の間隔 */

  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 22px 20px; /* 上下左右の余白 */
  
  /* フォント設定 */
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  
  /* 色と形 */
  background-color: #e2a3a3; /* ピンク色 */
  border: none;
  border-radius: 50px; /* 丸くする */
  
  /* 立体的な影 */
  box-shadow: 0 6px 0 #bf7c7c;
  
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  top: 0;
  
  /* デフォルトのスタイルをリセット */
  -webkit-appearance: none;
  appearance: none;
  line-height: 1; /* 高さのズレを防ぐ */
}

/* 矢印アイコンのサイズ調整 */
.contact-form__form .wpcf7-submit i {
  font-size: 18px; /* 文字より少し小さくしてバランスを取る */
  position: relative;
  top: 1px; /* 微調整 */
}

/* ホバー時の動き（少し浮く） */
.contact-form__form .wpcf7-submit:hover {
  background-color: #d58190;
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #bf7c7c;
}

/* クリック時の動き（沈み込む） */
.contact-form__form .wpcf7-submit:active {
  top: 6px; /* 影の分だけ下げる */
  box-shadow: 0 0 0 #bf7c7c; /* 影をなくす */
  transform: translateY(0);
}

/* ラッパーのリセット（念のため） */
.contact-form__submit-wrap {
  background: none !important;
  box-shadow: none !important;
  height: auto !important;
}


/* ============================================ */
/* 送信完了・失敗メッセージ（前回と同じ設定） */
/* ============================================ */
.wpcf7-response-output {
  margin: 40px auto 0 !important;
  padding: 30px !important;
  border-radius: 15px;
  font-size: 20px !important;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  animation: fadeInMessage 0.5s ease-out forwards;
}

/* 成功時 */
.wpcf7-mail-sent-ok {
  background-color: #e8f5e9;
  border: 3px solid #4caf50 !important;
  color: #2e7d32;
}
.wpcf7-mail-sent-ok::before {
  content: "✔";
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}

/* 失敗時 */
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
  background-color: #ffebee;
  border: 3px solid #ef5350 !important;
  color: #c62828;
}
.wpcf7-mail-sent-ng::before,
.wpcf7-validation-errors::before {
  content: "!";
  display: block;
  font-size: 40px;
  margin-bottom: 10px;
}

@keyframes fadeInMessage {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
/* --- ここまで（.staff-voices） --- */
/* --- ここまで（.hospital-overview） --- */
/*# sourceMappingURL=style.css.map */
