@charset "UTF-8";
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
:root {
  --content_width: 1280px;
  --content-both_space: 40px;
  --header_height:142px;
  --waves_height: 60px;
}
@media screen and (max-width: 1000px) {
  :root {
    --content_width: 860px;
    --content-both_space: 20px;
    --header_height:130px;
    --waves_height: 20px;
  }
}
@media screen and (max-width: 667px) {
  :root {
    --content_width: 100%;
  }
}

/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
/* -------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -------------------------------------------*/
/* -------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  html,
  body {
    display: none;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -ms-overflow-style: scrollbar;
  overflow: auto;
  font-size: 62.5% !important;
}
@media screen and (max-width: 1000px) {
  html {
    font-size: 57.5% !important;
  }
}
@media screen and (max-width: 667px) {
  html {
    font-size: 62.5% !important;
  }
}

body {
  height: 100%;
  font-size: 1.6rem !important;
  font-weight: 400;
  line-height: 1.5 !important;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  letter-spacing: normal;
  color: #000000;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

section {
  position: relative;
  width: 100%;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

picture {
  display: block;
  line-height: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

input,
button,
select,
optgroup,
textarea {
  vertical-align: middle;
  position: relative;
  border: none;
  border: none;
  margin: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  border-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

@media screen and (min-width: calc(667px + 1px)) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* -------------------------------------------*/
/*underline*/
/*arrow-fade*/
@keyframes arrow-fade {
  0% {
    transform: translateX(0);
  }
  49% {
    transform: translateX(15px);
  }
  50% {
    opacity: 0;
  }
  51% {
    opacity: 1;
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* fade */
.js-fade__view {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  transition: 800ms;
}
.js-fade__view--delay1 {
  transition-delay: 100ms;
}
.js-fade__view--delay2 {
  transition-delay: 300ms;
}

.is-fade__view.js-fade__view {
  opacity: 1;
  transform: translateY(0);
}

.js-fade__down {
  opacity: 0;
  transform: translateY(-50px);
  transition: 800ms;
}
.js-fade__down--delay1 {
  transition-delay: 100ms;
}
.js-fade__down--delay2 {
  transition-delay: 300ms;
}

.is-fade__down.js-fade__down {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------*/
/* layout
-------------------------------------------------------*/
/**
 * input
 *
 */
.wpcf7-spinner {
  display: none;
}

.wpcf7-list-item {
  margin-left: 0;
}

input[type=text],
input[type=date],
input[type=password],
input[type=email],
input[type=time],
input[type=tel],
input[type=number] {
  position: relative;
  width: 100%;
  letter-spacing: 0.1em;
}
input[type=number] {
  -moz-appearance: textfield;
}

/**
 * textarea
 *
 */
textarea {
  position: relative;
  border: none;
  border: none;
  width: 100%;
  height: 300px;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  textarea {
    height: 170px;
  }
}

input[type=text]:disabled {
  background: transparent;
  cursor: not-allowed;
}
input[type=text]:disabled::placeholder {
  color: #F1F8FE;
  opacity: 1;
}

/**
 * radio
 *
 */
input[type=radio] {
  display: none;
  vertical-align: middle;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

input[type=radio] + .mwform-radio-field-text {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  margin: 0 20px 10px 0;
  padding: 10px 10px 10px 40px;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text {
    margin: 0;
    padding: 10px 5px 12px 23px;
  }
}

input[type=radio] + .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #7f7f7f;
  border-radius: 50%;
  box-sizing: border-box;
  transition: 0.5s ease;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::before {
    width: 15px;
    height: 15px;
  }
}

input[type=radio] + .mwform-radio-field-text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  width: 12px;
  height: 12px;
  background-color: #37B9BE;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  input[type=radio] + .mwform-radio-field-text::after {
    content: "";
    left: 3px;
    width: 9px;
    height: 9px;
  }
}

input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}

/**
 * checkbox
 *
 */
input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  vertical-align: middle;
}

input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  padding: 0 0 0 35px;
  line-height: 1;
  transition: 0.5;
  transition-property: color;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  input[type=checkbox] + label {
    padding-left: 30px;
  }
}

input[type=checkbox] + label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 2px #818181 solid;
  box-sizing: border-box;
  z-index: 2;
}

input[type=checkbox] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #F1F8FE;
  border-bottom: 3px solid #F1F8FE;
  transform: rotate(-45deg);
  transition: 0.5s;
  transition-property: color;
  opacity: 0;
  z-index: 3;
}

input[type=checkbox]:checked + label::after {
  opacity: 1;
}

/**
 * tel(column)
 *
 */
.mwform-tel-field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.mwform-tel-field > input {
  flex: 1;
  width: 100% !important;
}

/**
 * select
 *
 */
.select-parts {
  position: relative;
  width: 100%;
  border: 1px #F1F8FE solid;
  border-radius: 5px;
  overflow: hidden;
}
.select-parts::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  margin-top: 2px;
  background: url(../img/contact/select_arrow.png) no-repeat top center/contain;
  pointer-events: none;
  z-index: 5;
}
.select-parts select {
  position: relative;
  width: 100%;
  height: 45px;
  padding: 0 20px 0 15px;
  background: #fbefe3;
  color: #7f7f7f;
  font-size: 2rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .select-parts select {
    font-size: 15rem;
  }
}

/**
 * file
 *
 */
input[type=file] + label {
  width: 160px;
  margin: 0 10px 0 0;
  padding: 15px 0;
}
input[type=file] + label:after {
  left: 170px;
}

/* -------------------------------------------*/
section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-gijin-mv {
  width: 100%;
}
.p-gijin-mv__inner {
  max-width: 1650px;
  display: flex;
  justify-content: flex-end;
  gap: 33px;
  padding-left: 50px;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__inner {
    padding-left: 0;
    flex-direction: column;
    gap: 0;
  }
}
.p-gijin-mv__text {
  max-width: 630px;
  width: 100%;
  padding: 70px 0 24px;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__text {
    height: 100%;
    padding: 26px 0 0;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 25px;
  }
}
.p-gijin-mv__tag {
  width: fit-content;
  padding: 14px 30px;
  background-color: #005EA7;
  display: flex;
  align-items: center;
  gap: 17px;
  font-size: clamp(1.8rem, 2.65vw, 3.4rem);
  color: #FFFFFF;
  font-weight: 400;
  line-height: 1.11;
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__tag {
    padding: 8px 18px;
    gap: 12px;
    font-size: 1.8rem;
    line-height: 1.38;
  }
}
.p-gijin-mv__tag span {
  font-size: clamp(0.9rem, 1.4vw, 1.8rem);
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__tag span {
    font-size: 0.9rem;
    line-height: 2.12;
  }
}
.p-gijin-mv__title {
  margin-top: 35px;
  font-size: clamp(4rem, 3.9vw, 5rem);
  font-weight: 700;
  line-height: 1.38;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__title {
    padding-left: 20px;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__title {
    margin-top: 11px;
    font-size: 2.8rem;
    line-height: 1.46;
  }
}
.p-gijin-mv__title-underline {
  position: relative;
}
.p-gijin-mv__title-underline::after {
  position: absolute;
  content: "";
  background-color: #F2A19E;
  bottom: -3px;
  left: 0;
  display: block;
  width: 92%;
  height: 22px;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__title-underline::after {
    height: 9px;
    bottom: 0;
  }
}
.p-gijin-mv__subtitle {
  margin-top: 26px;
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.31;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__subtitle {
    padding-left: 20px;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__subtitle {
    margin-top: 10px;
    font-size: 1.8rem;
    line-height: 1.45;
  }
}
.p-gijin-mv__feature--pc {
  margin-top: 56px;
  display: flex;
  gap: clamp(2rem, 3.29vw, 5.5rem);
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__feature--pc {
    display: none;
  }
}
.p-gijin-mv__feature--sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__feature--sp {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 19px;
  }
}
.p-gijin-mv__feature-item {
  position: relative;
  width: clamp(10rem, 13.5vw, 17.3rem);
  height: clamp(10rem, 13.5vw, 17.3rem);
  border: 3px solid #37B9BE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__feature-item {
    width: 17.3rem;
    height: 17.3rem;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__feature-item {
    width: 100px;
    height: 100px;
  }
}
.p-gijin-mv__feature-item::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__feature-item::before {
    top: -12px;
  }
}
.p-gijin-mv__feature-item::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 47px;
  background-color: #f7f7f7;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__feature-item::after {
    width: 40px;
    height: 28px;
    top: -12px;
  }
}
.p-gijin-mv__feature-item:nth-child(1)::before {
  width: 54px;
  height: 47px;
  background-image: url("../../img/gijinkoku/mv-icon01.svg");
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__feature-item:nth-child(1)::before {
    width: 31px;
    height: 27px;
  }
}
.p-gijin-mv__feature-item:nth-child(2)::before {
  width: 42px;
  height: 39px;
  background-image: url("../../img/gijinkoku/mv-icon02.svg");
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__feature-item:nth-child(2)::before {
    width: 24px;
    height: 21px;
  }
}
.p-gijin-mv__feature-item:nth-child(3)::before {
  width: 46px;
  height: 46px;
  background-image: url("../../img/gijinkoku/mv-icon03.svg");
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__feature-item:nth-child(3)::before {
    width: 26px;
    height: 27px;
  }
}
.p-gijin-mv__feature-item p {
  text-align: center;
  font-size: clamp(2rem, 1.88vw, 2.4rem);
  color: #37B9BE;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 667px) {
  .p-gijin-mv__feature-item p {
    font-size: 1.3rem;
    line-height: 1.23;
  }
}
.p-gijin-mv__image {
  position: relative;
  max-width: 738px;
  max-height: 650px;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__image {
    max-width: 100%;
    max-height: initial;
    padding: 0 20px;
  }
}
.p-gijin-mv__image picture {
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__image picture {
    height: auto;
  }
}
.p-gijin-mv__image img {
  height: inherit;
  aspect-ratio: 738/648;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__image img {
    height: auto;
    aspect-ratio: 336/197;
  }
}
.p-gijin-mv__link {
  position: absolute;
  bottom: 30px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .p-gijin-mv__link {
    display: none;
  }
}
.p-gijin-mv__btn-download.c-btn__square {
  width: 348px;
  padding-left: 36px;
  justify-content: flex-start;
}
.p-gijin-mv__btn-download.c-btn__square::before {
  border: none;
  background-image: url("../../img/common/icon/ico_download_accent-wh.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: none;
  width: 24px;
  height: 21px;
}
.p-gijin-mv__btn-mail.c-btn__square {
  width: 348px;
  padding-left: 36px;
  justify-content: flex-start;
}
.p-gijin-mv__btn-mail.c-btn__square::before {
  border: none;
  background-image: url("../../img/common/icon/ico_mail_accent-wh.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: none;
  width: 24px;
  height: 24px;
}

.p-gijin__about {
  margin-top: -15px;
  position: relative;
}

.p-gijin__about-message-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  width: 100%;
  height: auto;
  background-color: #FFFFFF;
  border: 1px solid #707070;
  gap: clamp(2rem, 2.1875vw, 3.5rem);
  padding: clamp(1rem, 3vw, 4.8rem) clamp(2rem, 1.875vw, 3rem);
}
@media screen and (max-width: 667px) {
  .p-gijin__about-message-wrapper {
    flex-direction: column;
    padding: 1.5rem 1.8rem 3.2rem;
    gap: 1.7rem;
    align-items: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__about-message-wrapper {
    width: 100%;
    max-width: 33.6rem;
  }
}

.p-gijin__about-message-title {
  min-width: fit-content;
  text-align: right;
  flex-grow: 1;
  font-size: clamp(2.4rem, 1.875vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 667px) {
  .p-gijin__about-message-title {
    font-size: 1.8rem;
    line-height: 1.8333333333;
    text-align: left;
  }
}

.p-gijin__about-message-box {
  width: 100%;
  max-width: 83.6rem;
  height: auto;
}

.p-gijin__about-message-text-title {
  font-size: clamp(1.6rem, 1.25vw, 2rem);
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .p-gijin__about-message-text-title {
    font-size: 1.4rem;
    line-height: 1.875;
  }
}

.p-gijin__about-message-text {
  font-size: clamp(1.5rem, 1.125vw, 1.8rem);
  font-weight: 500;
  line-height: 1.8888888889;
}
@media screen and (max-width: 480px) {
  .p-gijin__about-message-text {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.p-gijin__about-message-text span {
  color: #37B9BE;
  background: linear-gradient(transparent 70%, #FFE76B 60%);
}

.p-gijin__works-inner {
  padding-top: 4.1rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__works-inner {
    padding-top: 3.2rem;
  }
}

.p-gijin__works-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-gijin__works-title {
    font-size: 2rem;
    line-height: 1.7;
  }
}

.p-gijin__works-title span {
  color: #37B9BE;
  display: inline-block;
}

.p-gijin__works-wrapper {
  margin-top: 4.7rem;
  max-width: 107.8rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.3rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__works-wrapper {
    grid-template-columns: 1fr;
  }
}

.p-gijin__works-item {
  background-color: #FFFFFF;
  padding: 3.2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .p-gijin__works-item {
    justify-content: center;
  }
}

.p-gijin__works-item-icon {
  height: 6.3rem;
}

.p-gijin__works-item:nth-child(1) img {
  width: 6.2rem;
}

.p-gijin__works-item:nth-child(2) img {
  width: 7.3rem;
}

.p-gijin__works-item:nth-child(3) img {
  width: 6.3rem;
}

.p-gijin__works-item-title {
  margin-top: 3.4rem;
  font-size: clamp(1.8rem, 1.3vw, 2rem);
  font-weight: 700;
  line-height: 1.7;
}

.p-gijin__works-item-text {
  flex-grow: 1;
  margin-top: 2.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-gijin__works-item-text {
    margin-top: 1.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    text-align: center;
  }
}

.p-gijin__worries {
  margin-top: clamp(52px, 7vw, 103px);
}

.p-gijin__worries .c-worries__balloon {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 40.5rem;
  padding: clamp(1.563rem, 1.276rem + 1.22vw, 2.5rem) clamp(0.625rem, 0.185rem + 1.88vw, 2.063rem);
  border: 1px solid #707070;
  background-color: #FFFFFF;
  text-align: justify;
  font-size: 2.4rem;
  line-height: 1.5833333333;
}
@media screen and (max-width: 667px) {
  .p-gijin__worries .c-worries__balloon {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    line-height: 1.5;
    max-width: initial;
    width: 27rem;
    padding: 1.8rem;
  }
}
@media screen and (min-width: calc(667px + 1px)) {
  .p-gijin__worries .c-worries__balloon {
    max-width: 38.5rem;
    font-size: 2rem;
  }
}
@media screen and (min-width: calc(1000px + 1px)) {
  .p-gijin__worries .c-worries__balloon {
    max-width: 34.5rem;
  }
}
@media screen and (min-width: calc(1380px + 1px)) {
  .p-gijin__worries .c-worries__balloon {
    max-width: 40.5rem;
    font-size: 2.4rem;
  }
}

.p-gijin__worries .c-worries__balloon-box--tl {
  left: 0%;
  top: -8%;
}
@media screen and (max-width: 1000px) {
  .p-gijin__worries .c-worries__balloon-box--tl {
    left: 0%;
    top: -2%;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__worries .c-worries__balloon-box--tl {
    left: 0%;
    top: -7%;
  }
}

.p-gijin__worries .c-worries__balloon-box--tr {
  right: 3%;
  top: -16%;
}
@media screen and (max-width: 1000px) {
  .p-gijin__worries .c-worries__balloon-box--tr {
    right: 0%;
    top: 13%;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__worries .c-worries__balloon-box--tr {
    right: 0%;
    top: 11%;
  }
}

.p-gijin__worries .c-worries__balloon-box--bl {
  bottom: 13%;
}
@media screen and (max-width: 1000px) {
  .p-gijin__worries .c-worries__balloon-box--bl {
    left: 0%;
    bottom: 53%;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__worries .c-worries__balloon-box--bl {
    left: 0%;
    bottom: 56%;
  }
}

.p-gijin__worries .c-worries__balloon-box--br {
  right: 0;
  bottom: 30%;
}
@media screen and (max-width: 1000px) {
  .p-gijin__worries .c-worries__balloon-box--br {
    right: 0%;
    bottom: 38%;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__worries .c-worries__balloon-box--br {
    right: 0%;
    bottom: 43%;
  }
}

.p-gijin__lead {
  margin-top: 2rem;
}
@media screen and (max-width: 480px) {
  .p-gijin__lead {
    margin-top: 1rem;
  }
}

.p-gijin__lead .c-sectionLead {
  max-width: 82.5rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__lead .c-sectionLead {
    max-width: 33rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin__lead .c-sectionLead__lead-text {
    font-size: 1.9rem;
    text-align: left;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin__lead .c-sectionLead__heading {
    font-size: 2.9rem;
    text-align: left;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin__lead .c-sectionLead__heading-box {
    align-items: flex-start;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin__lead .c-sectionLead__exclamation {
    right: -12%;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__lead .c-sectionLead__exclamation {
    right: 7%;
  }
}

.p-gijin-merit {
  padding: 10rem 0 6rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-merit {
    padding: 5.4rem 0;
  }
}

.p-gijin-merit__cards {
  margin-top: 6rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-merit__cards {
    margin-top: 2.7rem;
  }
}

.p-gijin-merit .c-featureCards__item {
  place-content: normal;
  z-index: -1;
}

.p-gijin-merit .c-featureCards__item:nth-child(1) .c-featureCards__content {
  padding: 3.5rem 3.2rem 2rem 2.6rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-merit .c-featureCards__item:nth-child(1) .c-featureCards__content {
    padding: 3.5rem 2.6rem;
  }
}

.p-gijin-merit .c-featureCards__item:nth-child(2) .c-featureCards__content {
  padding: 3.5rem 3.2rem 2rem 4.1rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-merit .c-featureCards__item:nth-child(2) .c-featureCards__content {
    padding: 3.5rem 2.6rem;
  }
}

.p-gijin-merit .c-featureCards__item:nth-child(3) .c-featureCards__content {
  padding: 3.5rem 3.2rem 2rem 3.8rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-merit .c-featureCards__item:nth-child(3) .c-featureCards__content {
    padding: 3.5rem 2.6rem;
  }
}

.p-gijin-merit .c-featureCards__item:nth-child(4) .c-featureCards__content {
  padding: 3.5rem 3.2rem 2rem 0;
}
@media screen and (max-width: 667px) {
  .p-gijin-merit .c-featureCards__item:nth-child(4) .c-featureCards__content {
    padding: 3.5rem 2.6rem;
  }
}

.p-gijin-merit .c-featureCards__content {
  align-items: flex-start;
}
@media screen and (max-width: 667px) {
  .p-gijin-merit .c-featureCards__content {
    align-items: center;
  }
}

.p-gijin-merit .c-featureCards__media {
  display: flex;
  align-items: center;
  height: 100%;
}

.p-gijin-merit .c-featureCards__body {
  max-width: 23rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-merit .c-featureCards__body {
    max-width: initial;
  }
}

@media screen and (max-width: 1000px) {
  .p-gijin-merit .c-sectionHeading__text {
    max-width: 62rem;
    margin-inline: auto;
  }
}

.p-gijin-merit .c-featureCards__text span {
  text-decoration-line: underline;
  text-decoration-color: #F2A19E;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: -0.1rem;
  text-decoration-skip-ink: none;
}

.p-gijin-diff {
  padding: 8.7rem 0 16.7rem;
}
@media screen and (max-width: 1000px) {
  .p-gijin-diff {
    padding: 8.7rem 0 13.7rem;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-diff {
    padding: 5.4rem 0 5.4rem;
  }
}

.p-gijin-diff__heading-text {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8888888889;
}
@media screen and (max-width: 1000px) {
  .p-gijin-diff__heading-text {
    font-size: 1.4rem;
    max-width: 62rem;
    margin-inline: auto;
  }
}

.p-gijin-diff__compare-cards {
  margin-top: 7.5rem;
}

.p-gijin-diff .c-compareCards__text-box {
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCards__text-box {
    text-align: left;
  }
}

.p-gijin-diff .c-label--position {
  position: static;
  transform: none;
}

.p-gijin-diff .c-compareCards__wrapper {
  padding: 4rem 2rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCards__wrapper {
    padding: 3rem 2rem 2rem;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCards__title {
    top: -6%;
  }
}

.p-gijin-diff .c-compareCards__items {
  gap: 0;
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCards__items {
    padding: 1rem 0;
    gap: 1.4rem;
  }
}

.p-gijin-diff .c-compareCards__line {
  margin: 0;
}

.p-gijin-diff .c-compareCards {
  --icon-box-size: clamp(8rem, 11vw, 16rem);
}

.p-gijin-diff .c-compareCards__text {
  margin-top: 1.4rem;
  font-size: 1.5rem;
}

.p-gijin-diff .c-compareCardsSmall__wrapper {
  padding: 3.4rem 0;
  align-items: flex-start;
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCardsSmall__wrapper {
    padding: 3rem 2rem 2rem;
  }
}

.p-gijin-diff .c-compareCardsSmall__title {
  top: -11%;
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCardsSmall__title {
    top: -6%;
  }
}

.p-gijin-diff .c-label--positionSmall-left,
.p-gijin-diff .c-label--positionSmall-right {
  position: static;
  transform: none;
}

.p-gijin-diff .c-compareCardsSmall__items {
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCardsSmall__items {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 1.4rem;
    padding: 1rem 0;
  }
}

.p-gijin-diff .c-compareCardsSmall__text-box {
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCardsSmall__text-box {
    text-align: left;
  }
}

.p-gijin-diff .c-compareCardsSmall__text {
  max-width: initial;
  margin-top: 0.8rem;
}

.p-gijin-diff .c-compareCardsSmall__text span {
  font-size: 1.1rem;
  line-height: 1.8181818182;
  font-weight: 500;
}

.p-gijin-diff .p-gijin-diff__cards--w80 img {
  width: 100%;
  height: 8rem;
}

.p-gijin-diff .p-gijin-diff__cards--w80 {
  width: 80%;
  max-width: 23.6rem;
  height: auto;
  aspect-ratio: auto;
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .p-gijin-diff__cards--w80 {
    width: 27%;
    max-width: 8rem;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin-diff .c-compareCards__text-box,
  .p-gijin-diff .c-compareCardsSmall__text-box {
    max-width: 27rem;
  }
}

.p-gijin-diff .c-sectionLead {
  max-width: fit-content;
  margin-top: 2.4rem;
}

.p-gijin-diff .c-sectionHeading__text {
  padding-top: 10.7rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 1000px) {
  .p-gijin-diff .c-sectionHeading__text {
    font-size: 2.1rem;
    padding-top: 3.4rem;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-diff .c-sectionHeading__text {
    font-size: 1.6rem;
    padding-top: 3.4rem;
  }
}

.p-gijin-diff .c-sectionLead__lead-text span {
  color: #005EA7;
}

@media screen and (max-width: 667px) {
  .p-gijin-diff .c-sectionLead {
    max-width: 33rem;
    margin-inline: auto;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin-diff .c-sectionLead__lead-text {
    font-size: 1.9rem;
    text-align: left;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin-diff .c-sectionLead__heading {
    font-size: 2.9rem;
    text-align: left;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin-diff .c-sectionLead__heading-box {
    align-items: flex-start;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin-diff .c-sectionLead__exclamation {
    right: -12%;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin-diff .c-sectionLead__exclamation {
    right: 7%;
  }
}

.p-gijin__process {
  background-color: #FFFFFF;
  position: relative;
}

.p-gijin__process-inner {
  padding-top: 11.8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 480px) {
  .p-gijin__process-inner {
    padding-top: 3.5rem;
    padding-bottom: 0rem;
  }
}

.p-gijin__process-title-box {
  position: relative;
}

.p-gijin__process-title {
  font-size: clamp(3rem, 2.4375vw, 3.9rem);
  font-weight: 700;
  line-height: 1.4102564103;
}
@media screen and (max-width: 480px) {
  .p-gijin__process-title {
    font-size: 1.9rem;
    line-height: 1.7;
  }
}

.p-gijin__process-title-img {
  position: absolute;
  top: -130%;
  right: 2.5%;
  width: 30.75vw;
  max-width: 49.2rem;
  height: auto;
}
@media screen and (max-width: 1380px) {
  .p-gijin__process-title-img {
    width: 36.231884058vw;
    max-width: 50rem;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin__process-title-img {
    width: 44.9775112444vw;
    max-width: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__process-title-img {
    top: -118%;
    right: 1%;
    max-width: 17.4rem;
  }
}

.p-gijin__process-lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8888888889;
  padding-top: 4.5rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__process-lead {
    padding-top: 2.7rem;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.7142857143;
  }
}

.p-gijin__process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem;
  row-gap: 2.5rem;
  gap: 4.6rem 2rem;
  padding-top: 4.5rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__process-list {
    grid-template-columns: 1fr;
  }
}

.p-gijin__process-item {
  display: flex;
  gap: 2rem;
}

.p-gijin__process-img {
  width: 100%;
  max-width: 7.8rem;
  height: auto;
}

.p-gijin__process-item-box {
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-gijin__process-item-box {
    padding-top: unset;
  }
}

.p-gijin__process-item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .p-gijin__process-item-title {
    font-size: 1.6rem;
    line-height: 1.7;
    text-align: left;
  }
}

.p-gijin__process-item-text-box {
  margin-top: 1.4rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__process-item-text-box {
    margin-top: 1rem;
  }
}

.p-gijin__process-item-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-gijin__process-item-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-gijin__process-item-text span {
  text-decoration: underline;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: -0.2rem;
  text-decoration-color: #F2A19E;
}

.p-gijin__process-note {
  margin-top: 4rem;
  padding: 3rem 3.4rem;
  border: 0.1rem solid #000;
}

.p-gijin__process-note p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8888888889;
}
@media screen and (max-width: 667px) {
  .p-gijin__process-note p {
    font-size: 1.4rem;
  }
}

.p-gijin__process-note p span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 667px) {
  .p-gijin__process-note p span {
    font-size: 1.8rem;
  }
}

.p-gijin__process-bottom-text {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.8444444444;
  text-align: center;
  padding-top: 5.3rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__process-bottom-text {
    font-size: 2.2rem;
    line-height: 1.8333333333;
    padding-top: 3.2rem;
  }
}

.p-gijin__service {
  color: #FFFFFF;
  background-image: url("../../img/gijinkoku/service-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.p-gijin__service::before {
  content: "";
  position: absolute;
  height: 6rem;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #FFFFFF;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .p-gijin__service::before {
    height: 5rem;
    bottom: -5rem;
  }
}

.p-gijin__service-inner {
  padding-top: 15rem;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-inner {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
}

.p-gijin__service-top {
  position: relative;
  max-width: 128rem;
}

.p-gijin__service-title-box {
  width: 100%;
  max-width: 90rem;
  height: auto;
  border: 0.5rem solid #FFFFFF;
  position: relative;
}
@media screen and (max-width: 667px) {
  .p-gijin__service-title-box {
    border: 0.3rem solid #FFFFFF;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin__service-title-box {
    width: 90%;
  }
}

.p-gijin__service-sub-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5909090909;
  position: absolute;
  top: -2.2rem;
  left: 6%;
  background-color: #25A6B2;
  padding: 0 0.5rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__service-sub-title {
    top: -10%;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__service-sub-title {
    top: -5%;
    font-size: 1.4rem;
    line-height: 0.9285714286;
  }
}

.p-gijin__service-title {
  font-size: clamp(3.4rem, 3.5625vw, 5.7rem);
  font-weight: 700;
  line-height: 1.3157894737;
  padding: clamp(2rem, 2.1875vw, 3.5rem) clamp(2rem, 2.1875vw, 3.5rem) clamp(4rem, 0.3125vw, 5rem) clamp(3.5rem, 2.8125vw, 4.5rem);
}
@media screen and (max-width: 1000px) {
  .p-gijin__service-title {
    padding: clamp(2rem, 2.1875vw, 3.5rem) clamp(2rem, 2.1875vw, 3.5rem) clamp(2rem, 2.1875vw, 3.5rem) clamp(3.5rem, 2.8125vw, 4.5rem);
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__service-title {
    font-size: 2.7rem;
    line-height: 1.3333333333;
    padding: 2rem 2rem 1rem 1.5rem;
  }
}

.p-gijin__service-title-img {
  width: 29.5625vw;
  max-width: 47.3rem;
  height: auto;
  position: absolute;
  top: -44%;
  right: -3%;
  z-index: 2;
}
@media screen and (max-width: 1380px) {
  .p-gijin__service-title-img {
    right: 5%;
    top: -30%;
  }
}
@media screen and (max-width: 1000px) {
  .p-gijin__service-title-img {
    width: 25vw;
    max-width: 30rem;
    top: -10%;
    right: 0%;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin__service-title-img {
    width: 37.5375375375vw;
    max-width: 25rem;
    top: 10%;
    right: 0%;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__service-title-img {
    width: 100%;
    max-width: 15.5rem;
    top: 10%;
    right: -2%;
  }
}

.p-gijin__service-lead-box {
  padding-top: 8.4rem;
}
@media screen and (max-width: 667px) {
  .p-gijin__service-lead-box {
    padding-left: unset;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__service-lead-box {
    padding-top: 2.5rem;
  }
}

.p-gijin__service-lead {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 667px) {
  .p-gijin__service-lead {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-gijin__service-main-inner {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-main-inner {
    padding-left: unset;
    padding-right: unset;
    padding-bottom: 1.6rem;
  }
}

.p-gijin__service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  column-gap: 5.6rem;
  row-gap: 2rem;
  padding-top: 5.6rem;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-cards {
    padding-top: 3rem;
    row-gap: 6rem;
  }
}

.p-gijin__service-card {
  width: 100%;
  max-width: 34.5rem;
  height: auto;
  display: grid;
  place-content: center;
  place-items: center;
  margin-inline: auto;
}

.p-gijin__service-card-img {
  width: 100%;
  max-width: 34.5rem;
  height: auto;
  position: relative;
}

.p-gijin__service-card-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  box-sizing: border-box;
  text-align: center;
  background-color: #FFFFFF;
  padding: 0.9rem 2.8rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  position: absolute;
  bottom: -7%;
  left: 50%;
  transform: translateX(-50%);
  color: #37B9BE;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-card-label {
    font-size: 1.9rem;
    line-height: 1.5789473684;
  }
}

.p-gijin__service-card-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  padding-top: 4.4rem;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-card-title {
    font-size: 1.9rem;
    line-height: 1.5789473684;
    padding-top: 4.1rem;
  }
}

.p-gijin__service-card-text {
  font-size: 1.5rem;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  padding-top: 1.5rem;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-card-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-gijin__service-bottom {
  margin-top: 6.3rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-bottom {
    margin-top: 1.5rem;
  }
}

.p-gijin__service-bottom-box {
  margin-left: auto;
  width: 100%;
  max-width: 58.6rem;
  height: auto;
  margin-right: 5rem;
  padding-top: 1.5rem;
}

.p-gijin__service-bottom-text {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.5789473684;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-bottom-text {
    font-size: 2.2rem;
    line-height: 1.5909090909;
  }
}

.p-gijin__service-bottom-text span {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-bottom-text span {
    font-size: 1.6rem;
    line-height: 1.0625;
  }
}

.p-gijin__service-bottom-img {
  width: 100%;
  max-width: 46rem;
  height: auto;
  position: absolute;
  top: -10%;
  left: 0%;
}
@media screen and (max-width: 667px) {
  .p-gijin__service-bottom-img {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  .p-gijin__service-bottom-img {
    top: 0%;
  }
}

.p-gijin__service-bottom-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3.3rem;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-bottom-button {
    padding-top: 3.5rem;
  }
}
.p-gijin__service-bottom-button .c-btn__square-midium {
  width: 100%;
  max-width: 43rem;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.6818181818;
  position: relative;
  z-index: 10;
  color: #000000;
  background: #FFFFFF;
  padding: 4rem 0;
}
.p-gijin__service-bottom-button .c-btn__square-midium::before {
  border-right: 4px solid #37B9BE;
  border-bottom: 4px solid #37B9BE;
  width: 13px;
  height: 13px;
  margin-right: 35px;
}
@media screen and (max-width: 480px) {
  .p-gijin__service-bottom-button .c-btn__square-midium {
    max-width: 33.6rem;
  }
}

.p-gijin-flow {
  padding: 5.7rem 0 8rem;
  background-color: #fff;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow {
    padding: 4.6rem 0;
  }
}

.p-gijin-flow__items {
  margin-top: 4.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(7, 1fr);
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__items {
    margin-top: 2.4rem;
    grid-template-columns: 1fr;
    max-width: 50rem;
    margin-inline: auto;
    gap: 5rem;
  }
}

.p-gijin-flow__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item {
    gap: 1.2rem;
    justify-content: center;
  }
}

.p-gijin-flow__item:first-child,
.p-gijin-flow__item:last-child {
  width: fit-content;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item:first-child,
  .p-gijin-flow__item:last-child {
    width: auto;
  }
}

.p-gijin-flow__item:first-child {
  margin-left: auto;
  margin-right: 1rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item:first-child {
    margin-left: 0;
  }
}

.p-gijin-flow__item:last-child {
  margin-left: -1rem;
}
@media screen and (max-width: 1000px) {
  .p-gijin-flow__item:last-child {
    margin-left: 0;
    width: 8.2rem;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item:last-child {
    margin-left: 0;
    width: auto;
  }
}

.p-gijin-flow__item-img {
  height: 18.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item-img {
    height: auto;
    width: 19.7rem;
  }
}

.p-gijin-flow__item:last-child .p-gijin-flow__item-img {
  padding-top: 2.4rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item:last-child .p-gijin-flow__item-img {
    padding-top: 0;
  }
}

@media screen and (max-width: 1380px) {
  .p-gijin-flow__item:first-child .p-gijin-flow__item-img img {
    width: 75%;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item:first-child .p-gijin-flow__item-img img {
    width: 100%;
  }
}

.p-gijin-flow__item:last-child .p-gijin-flow__item-img img {
  max-height: 13.6rem;
}
@media screen and (max-width: 1380px) {
  .p-gijin-flow__item:last-child .p-gijin-flow__item-img img {
    max-height: initial;
    width: 92%;
  }
}
@media screen and (max-width: 1000px) {
  .p-gijin-flow__item:last-child .p-gijin-flow__item-img img {
    width: 100%;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item:last-child .p-gijin-flow__item-img img {
    width: 93%;
    margin-left: 0.4rem;
  }
}

@media screen and (max-width: 667px) {
  .p-gijin-flow__item:last-child .p-gijin-flow__item-title {
    margin-bottom: 1rem;
  }
}

.p-gijin-flow__item-text {
  margin-top: 8px;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item-text {
    margin-top: 0;
  }
}

.p-gijin-flow__item-title {
  text-align: center;
  max-height: 2em;
  height: 100%;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item-title {
    max-height: initial;
    height: auto;
  }
}

.p-gijin-flow__item-description {
  margin-top: 2.2rem;
  max-width: 84%;
  width: fit-content;
  margin-inline: auto;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.76;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 667px) {
  .p-gijin-flow__item-description {
    max-width: 100%;
    margin-top: 1.2rem;
    margin-inline: 0;
    text-align: center;
    line-height: 1.7;
  }
}

.p-gijin-fee {
  padding: 8.5rem 0 9rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee {
    padding: 5.4rem 0;
  }
}

.p-gijin-fee__text {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8888888889;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__text {
    margin-top: 2.4rem;
    font-size: 1.4rem;
  }
}

.p-gijin-fee__contents {
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__contents {
    margin-top: 2.7rem;
  }
}

@media screen and (max-width: 1000px) {
  .p-gijin-fee__content {
    margin-left: 0;
  }
}

.p-gijin-fee__content-flex {
  margin-top: 3rem;
  display: flex;
}

.p-gijin-fee__content-flex--col {
  display: flex;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-flex--col {
    margin-top: 4.2rem;
    flex-direction: column;
  }
}

.p-gijin-fee__content-flex--img {
  align-items: center;
  gap: 3.5rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-flex--img {
    gap: 1.8rem;
  }
}

.p-gijin-fee__content-left {
  padding-left: 3.2rem;
  max-width: 54%;
}
@media screen and (max-width: 1000px) {
  .p-gijin-fee__content-left {
    max-width: 50%;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-left {
    padding-left: 0;
    max-width: 100%;
  }
}

.p-gijin-fee__content-left.w-full {
  max-width: initial;
}

.p-gijin-fee__content-img {
  width: 5.8rem;
  min-width: 5.8rem;
}

.p-gijin-fee__content-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-text {
    font-size: 1.4rem;
  }
}

.p-gijin-fee__content-text span {
  text-decoration: underline;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: -0.2rem;
  text-decoration-color: #F2A19E;
}

.p-gijin-fee__content-descriptions {
  margin-top: 2.4rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-descriptions {
    width: fit-content;
    margin-inline: auto;
  }
}

.p-gijin-fee__content-description {
  padding-left: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-description {
    font-size: 1.5rem;
    line-height: 2.26;
  }
}
.p-gijin-fee__content-description::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.3rem;
  background-color: #37B9BE;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-gijin-fee__content-right {
  max-width: 47%;
  margin-left: auto;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-right {
    max-width: 100%;
    width: 100%;
    margin-inline: auto;
  }
}

.p-gijin-fee__content-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-items {
    margin-top: 2.4rem;
    align-items: center;
  }
}

.p-gijin-fee__content-item {
  border-bottom: 0.1rem solid #37B9BE;
  width: fit-content;
}

.p-gijin-fee__content-item p {
  font-size: clamp(1rem, 1vw, 1.5rem);
  line-height: 1.66;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-item p {
    width: fit-content;
    font-size: 1.2rem;
    white-space: nowrap;
  }
}

.p-gijin-fee__content-item .bg-white {
  display: inline-block;
  background-color: #FFFFFF;
  padding-inline: 1.3rem;
  margin-left: 3rem;
  font-size: clamp(1.4rem, 1vw, 1.5rem);
}
@media screen and (max-width: 1000px) {
  .p-gijin-fee__content-item .bg-white {
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-item .bg-white {
    margin-left: 1rem;
  }
}

.p-gijin-fee__content-item .strong {
  font-size: 2.9rem;
  color: #D73F39;
  font-weight: 700;
}
@media screen and (max-width: 667px) {
  .p-gijin-fee__content-item .strong {
    font-size: 2.4rem;
  }
}

.p-gijin-fee__content-item .font-red {
  padding: 0 0.3rem;
  color: #D73F39;
  font-weight: 700;
}

.p-gijin-case {
  padding: 5.3rem 0 8rem;
  background-color: #fff;
}

.p-gijin-case__text {
  margin-top: 3.2rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-gijin-case__text {
    margin-top: 2.4rem;
  }
}

.p-gijin-case__contents {
  margin-top: 5.4rem;
  display: flex;
  flex-direction: column;
  gap: 9rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-case__contents {
    gap: 5.4rem;
  }
}

.gijin-case__heading-label {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.gijin-case__heading-label span {
  font-size: 1.8rem;
  font-weight: 500;
  color: #37B9BE;
  line-height: 1.8888888889;
}

.gijin-case__heading-label p {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3076923077;
  letter-spacing: 0.05em;
}

.gijin-case__heading-text {
  margin-top: 1.2rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-gijin-case__body {
  margin-top: 2.4rem;
  display: flex;
  gap: 2.7rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-case__body {
    flex-direction: column;
  }
}

.p-gijin-case__img {
  max-width: 45.1rem;
}
@media screen and (max-width: 667px) {
  .p-gijin-case__img {
    max-width: initial;
  }
}

.p-gijin-case__img img {
  aspect-ratio: 451/329;
  object-fit: cover;
}

.p-gijin-case__items {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 1000px) {
  .p-gijin-case__items {
    max-width: 60%;
    width: 100%;
  }
}
@media screen and (max-width: 667px) {
  .p-gijin-case__items {
    max-width: initial;
    width: 100%;
  }
}

.p-gijin-case__item-heading {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.p-gijin-case__item:nth-child(1) img {
  width: 3.2rem;
}

.p-gijin-case__item:nth-child(2) img {
  width: 2.8rem;
}

.p-gijin-case__item:nth-child(3) img {
  width: 2.8rem;
}

.p-gijin-case__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8888888889;
}

.p-gijin-case__item-text {
  margin-top: 0.4rem;
  padding-left: 4.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-gijin-case__item-text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-gijin-case__item-text span {
  text-decoration-line: underline;
  text-decoration-color: #F2A19E;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: -0.1rem;
  text-decoration-skip-ink: none;
}

.p-gijin-case__item-lists {
  padding-left: 4.2rem;
}

.p-gijin-case__item-list {
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-gijin-case__item-list {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-gijin-case__item-list::before {
  position: absolute;
  content: "";
  height: 0.3rem;
  width: 0.9rem;
  background-color: #37B9BE;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-gijin-case__item-list span {
  text-decoration-line: underline;
  text-decoration-color: #F2A19E;
  text-decoration-thickness: 0.5rem;
  text-underline-offset: -0.1rem;
  text-decoration-skip-ink: none;
}

.p-gijin-case__cta {
  margin-top: 8rem;
}

.p-gijin-faq {
  padding-top: 5.4rem;
}
.p-gijin-faq .c-faqAccordion__question {
  padding: 33px 76px;
}
@media screen and (max-width: 480px) {
  .p-gijin-faq .c-faqAccordion__question {
    padding: 17px 44px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}
.p-gijin-faq .c-faqAccordion__answer {
  padding: 10px 76px 33px;
}
@media screen and (max-width: 480px) {
  .p-gijin-faq .c-faqAccordion__answer {
    padding: 10px 44px 17px;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin-faq .c-faqAccordion__question::before {
    left: 13px;
  }
}
@media screen and (max-width: 480px) {
  .p-gijin-faq .c-faqAccordion__question::after {
    right: 13px;
  }
}

.p-gijin-faq__text {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.875;
}
@media screen and (max-width: 667px) {
  .p-gijin-faq__text {
    margin-top: 2.4rem;
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}

.p-gijin-faq__wrapper {
  margin-top: 4rem;
}

.p-gijin-faq--bg-white.c-faqAccordion {
  background-color: #FFFFFF;
}

.p-gijin-faq__btn {
  text-align: center;
  margin-top: 5.2rem;
}
@media screen and (max-width: 480px) {
  .p-gijin-faq__btn {
    margin-top: 5rem;
  }
}

.p-gijin-comm__h2 {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h2 {
    font-size: 2.4rem;
    line-height: 1.54;
  }
}
.p-gijin-comm__h2::before {
  margin-bottom: 12px;
  position: relative;
  content: "";
  display: block;
  width: 20.5rem;
  height: 0.6rem;
  background: linear-gradient(to right, #37B9BE, #268AB7);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h2::before {
    width: 9rem;
    height: 0.3rem;
    margin-bottom: 14px;
  }
}

.p-gijin-comm__h2 span {
  margin-top: 12px;
  display: block;
  font-size: 2.4rem;
  line-height: 1.83;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h2 span {
    margin-top: 0;
    font-size: 1.7rem;
    line-height: 1.82;
  }
}
.p-gijin-comm__h2 span.text-large {
  display: inline-block;
  font-size: 8.7rem;
  color: #37B9BE;
  font-weight: 700;
  line-height: 0.72;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h2 span.text-large {
    font-size: inherit;
  }
}

.p-gijin-comm__h3 {
  width: fit-content;
  margin-inline: auto;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-gijin-comm__h3::before {
  margin-bottom: 16px;
  position: relative;
  content: "";
  display: block;
  width: 100%;
  height: 0.3rem;
  background: linear-gradient(to right, #37B9BE, #268AB7);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h3::before {
    width: 9rem;
    margin-bottom: 14px;
  }
}

.p-gijin-comm__h3-text {
  white-space: nowrap;
  margin-top: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h3-text {
    margin-top: 32px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.82;
  }
}

.p-gijin-comm__h3__content-title {
  position: relative;
  padding-left: 32px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h3__content-title {
    font-size: 18px;
    line-height: 1.88;
  }
}
.p-gijin-comm__h3__content-title::before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 39px;
  background: linear-gradient(to right, #37B9BE, #268AB7);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h3__content-title::before {
    height: 61px;
  }
}

.p-gijin-comm__h3-content-text {
  margin-top: 30px;
  padding-left: 32px;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h3-content-text {
    margin-top: 43px;
    padding-left: 0;
  }
}

.p-gijin-comm__h3-content-text p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h3-content-text p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.66;
  }
}
.p-gijin-comm__h3-content-text p:not(:first-child) {
  margin-top: 1.88em;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__h3-content-text p:not(:first-child) {
    margin-top: 1.66em;
  }
}

.p-gijin-comm__h3-content-text p span {
  position: relative;
  z-index: 0;
}
.p-gijin-comm__h3-content-text p span::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #F2A19E;
  bottom: 2px;
  left: 0;
  z-index: -1;
}

.p-gijin-comm__items-title {
  margin-inline: auto;
  max-width: 1038px;
  margin-top: 64px;
  position: relative;
  padding-left: 21px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.88;
}
.p-gijin-comm__items-title::before {
  position: absolute;
  content: "";
  display: block;
  height: 3px;
  width: 9px;
  background-color: #37B9BE;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-gijin-comm__content-title {
  position: relative;
  padding-left: 32px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__content-title {
    font-size: 18px;
    line-height: 1.88;
  }
}
.p-gijin-comm__content-title::before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 39px;
  background: linear-gradient(to right, #37B9BE, #268AB7);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 667px) {
  .p-gijin-comm__content-title::before {
    height: 61px;
  }
}

@media screen and (min-width: calc(1000px + 1px)) {
  .p-gijin__lg-none {
    display: none !important;
  }
}

.p-gijin__md-none {
  display: none !important;
}
@media screen and (min-width: calc(667px + 1px)) {
  .p-gijin__md-none {
    display: block !important;
  }
}

@media screen and (min-width: calc(667px + 1px)) {
  .p-gijin__md-block {
    display: none !important;
  }
}

@media screen and (min-width: calc(480px + 1px)) {
  .p-gijin__sm-none {
    display: none !important;
  }
}

.c-cta02 {
  padding: 44px 47px;
  background-image: url("../../img/common/cta/cta02_bg-pc.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 667px) {
  .c-cta02 {
    background-image: url("../../img/common/cta/cta02_bg-sp.webp");
    padding: 24px 20px 40px;
  }
}

.c-cta02__inner {
  width: 100%;
}

.c-cta02__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 667px) {
  .c-cta02__content {
    flex-direction: column;
  }
}

.c-cta02__item-title {
  font-size: 3.8rem;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.57;
}
@media screen and (max-width: 667px) {
  .c-cta02__item-title {
    font-size: 2rem;
    line-height: 1.7;
    text-align: center;
  }
}

.c-cta02__item-title.c-cta02__item-title--sm {
  font-size: 3.4rem;
}
@media screen and (max-width: 667px) {
  .c-cta02__item-title.c-cta02__item-title--sm {
    font-size: 2rem;
  }
}

.c-cta02__item-description {
  margin-top: 20px;
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 667px) {
  .c-cta02__item-description {
    font-size: 1.4rem;
    line-height: 1.71;
  }
}

.c-cta02__item-cta {
  max-width: 304px;
  width: 100%;
}

.c-worries {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .c-worries {
    padding-top: 30rem;
  }
}

.c-worries__balloon-box {
  position: absolute;
}

.c-worries__balloon-box--tl {
  left: 7%;
  top: -4%;
  z-index: 400;
}
@media screen and (max-width: 1000px) {
  .c-worries__balloon-box--tl {
    left: 0%;
    top: -2%;
  }
}

.c-worries__balloon-box--tr {
  right: 9%;
  top: -9%;
  z-index: 300;
}
@media screen and (max-width: 1000px) {
  .c-worries__balloon-box--tr {
    right: 0%;
    top: 13%;
  }
}

.c-worries__balloon-box--bl {
  left: 2%;
  bottom: 20%;
  z-index: 200;
}
@media screen and (max-width: 1000px) {
  .c-worries__balloon-box--bl {
    left: 0%;
    bottom: 53%;
  }
}

.c-worries__balloon-box--br {
  right: 1%;
  bottom: 26%;
  z-index: 100;
}
@media screen and (max-width: 1000px) {
  .c-worries__balloon-box--br {
    right: 0%;
    bottom: 38%;
  }
}

.c-worries__balloon {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 33rem;
  padding: clamp(1.563rem, 1.276rem + 1.22vw, 2.5rem) clamp(0.625rem, 0.185rem + 1.88vw, 2.063rem);
  border: 1px solid #707070;
  background-color: #FFFFFF;
  text-align: justify;
  font-size: 2.4rem;
  line-height: 1.5833333333;
  color: #000000;
  --tail: 3.5rem;
  --tail-in: 3.3rem;
}
@media screen and (max-width: 1380px) {
  .c-worries__balloon {
    font-size: 2rem;
    --tail: 2.4rem;
    --tail-in: 2.2rem;
  }
}
@media screen and (max-width: 667px) {
  .c-worries__balloon {
    max-width: 30rem;
  }
}
@media screen and (max-width: 480px) {
  .c-worries__balloon {
    font-size: 1.6rem;
    line-height: 1.5;
    max-width: 19.5rem;
    padding: 2.5rem 0.5rem;
  }
}

.c-worries__balloon span {
  font-weight: 900;
  color: #005EA7;
}

.c-worries__balloon--lb-rtl::before, .c-worries__balloon--lb-rtl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 23%;
  translate: -50% 100%;
  border-style: solid;
}
@media screen and (max-width: 667px) {
  .c-worries__balloon--lb-rtl::before, .c-worries__balloon--lb-rtl::after {
    left: 85%;
  }
}
.c-worries__balloon--lb-rtl::before {
  border-width: var(--tail) var(--tail) 0 0;
  border-color: #707070 transparent transparent transparent;
}
.c-worries__balloon--lb-rtl::after {
  border-width: var(--tail-in) var(--tail-in) 0 0;
  border-color: #FFFFFF transparent transparent transparent;
}

.c-worries__balloon--lb-ltr::before, .c-worries__balloon--lb-ltr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 13%;
  translate: -50% 100%;
  border-style: solid;
}
.c-worries__balloon--lb-ltr::before {
  border-width: var(--tail) 0 0 var(--tail);
  border-color: #707070 transparent transparent transparent;
}
.c-worries__balloon--lb-ltr::after {
  border-width: var(--tail-in) 0 0 var(--tail-in);
  border-color: #FFFFFF transparent transparent transparent;
}

.c-worries__balloon--rb-rtl::before, .c-worries__balloon--rb-rtl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 86%;
  translate: -50% 100%;
  border-style: solid;
}
.c-worries__balloon--rb-rtl::before {
  border-width: var(--tail) var(--tail) 0 0;
  border-color: #707070 transparent transparent transparent;
}
.c-worries__balloon--rb-rtl::after {
  border-width: var(--tail-in) var(--tail-in) 0 0;
  border-color: #FFFFFF transparent transparent transparent;
}

.c-worries__balloon--rb-ltr::before, .c-worries__balloon--rb-ltr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 77%;
  translate: -50% 100%;
  border-style: solid;
}
@media screen and (max-width: 667px) {
  .c-worries__balloon--rb-ltr::before, .c-worries__balloon--rb-ltr::after {
    left: 20%;
  }
}
.c-worries__balloon--rb-ltr::before {
  border-width: var(--tail) 0 0 var(--tail);
  border-color: #707070 transparent transparent transparent;
}
.c-worries__balloon--rb-ltr::after {
  border-width: var(--tail-in) 0 0 var(--tail-in);
  border-color: #FFFFFF transparent transparent transparent;
}

.c-worries__figure img {
  display: block;
  margin-inline: auto;
  width: clamp(220px, 26vw, 360px);
  height: auto;
}
@media screen and (max-width: 480px) {
  .c-worries__figure img {
    width: 100%;
    max-width: 22.6rem;
  }
}

.c-sectionLead {
  max-width: 95rem;
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .c-sectionLead {
    padding-left: 1rem;
  }
}

.c-sectionLead__lead-text {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.880952381;
}
@media screen and (max-width: 1000px) {
  .c-sectionLead__lead-text {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .c-sectionLead__lead-text {
    text-align: left;
    font-size: 1.9rem;
    line-height: 1.9473684211;
  }
}

.c-sectionLead__lead-text.c-sectionLead__lead-text--center {
  text-align: center;
}

.c-sectionLead__heading-sub-text {
  position: relative;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.880952381;
}
@media screen and (max-width: 1000px) {
  .c-sectionLead__heading-sub-text {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .c-sectionLead__heading-sub-text {
    display: block;
    margin-left: auto;
    padding-right: 5rem;
    font-size: 2.4rem;
    line-height: 1.875;
  }
}

.c-sectionLead__heading-box {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media screen and (max-width: 1000px) {
  .c-sectionLead__heading-box {
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .c-sectionLead__heading-box {
    align-items: flex-start;
  }
}

.c-sectionLead__heading {
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1.2741935484;
  color: #005EA7;
}
@media screen and (max-width: 480px) {
  .c-sectionLead__heading {
    font-size: 2.9rem;
    line-height: 1.275862069;
  }
}

.c-sectionLead__heading span {
  color: #000000;
}

.c-sectionLead__exclamation {
  position: absolute;
  bottom: -37%;
  right: -26.5%;
  font-size: 14.1rem;
  font-weight: 700;
  line-height: 1.2695035461;
  color: #37B9BE;
  transform: rotate(17deg);
}
@media screen and (max-width: 1000px) {
  .c-sectionLead__exclamation {
    font-size: 10rem;
  }
}
@media screen and (max-width: 480px) {
  .c-sectionLead__exclamation {
    font-size: 8.5rem;
    bottom: -17%;
    right: 7%;
    line-height: 1.2705882353;
  }
}

.c-featureCards {
  position: relative;
  width: 100%;
  max-width: 110rem;
  margin-inline: auto;
}

.c-featureCards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  column-gap: 2rem;
  row-gap: 2.5rem;
}
@media screen and (max-width: 667px) {
  .c-featureCards__grid {
    grid-template-columns: 1fr;
    row-gap: 2.7rem;
  }
}

.c-featureCards__item {
  position: relative;
  width: 100%;
  max-width: 54rem;
  height: auto;
  background-color: #FFFFFF;
  border: 1px solid #37B9BE;
  display: grid;
  place-content: center;
  margin-inline: auto;
}

.c-featureCards__number-bg {
  position: absolute;
  top: 0;
  left: 0;
  --triangle: 72px;
  width: var(--triangle);
  height: var(--triangle);
  clip-path: polygon(0 0, 70% 0, 0 100%);
  background: #37B9BE;
}

.c-featureCards__number {
  font-size: 3rem;
  font-weight: 500;
  font-style: italic;
  color: #FFFFFF;
  padding-left: 0.5rem;
}

.c-featureCards__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 5.6rem;
  gap: 3rem;
}
@media screen and (max-width: 667px) {
  .c-featureCards__content {
    padding: 3.5rem clamp(2rem, 6.006006006vw, 4rem);
  }
}
@media screen and (max-width: 480px) {
  .c-featureCards__content {
    flex-direction: column;
    padding: 4rem 2.6rem;
    gap: 2.5rem;
  }
}

.c-featureCards__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 667px) {
  .c-featureCards__media img {
    max-width: 16.5rem;
  }
}
@media screen and (max-width: 480px) {
  .c-featureCards__media img {
    max-width: 18rem;
    height: auto;
  }
}

.c-featureCards__body {
  width: 100%;
  max-width: 23rem;
  height: auto;
}
@media screen and (max-width: 480px) {
  .c-featureCards__body {
    max-width: 28.4rem;
  }
}

.c-featureCards__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8333333333;
}
@media screen and (max-width: 480px) {
  .c-featureCards__title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
  }
}

.c-featureCards__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}
@media screen and (max-width: 480px) {
  .c-featureCards__text {
    padding-top: 2.5rem;
  }
}

.c-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  line-height: 1;
  box-sizing: border-box;
  text-align: center;
}

.c-label--pc {
  width: 9.9rem;
  height: auto;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 0;
}
@media screen and (max-width: 480px) {
  .c-label--pc {
    padding: 0.5rem 0;
  }
}

.c-label--sp {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.7rem 0.7rem;
}

.c-label--orange {
  background-color: #E6D05E;
}

.c-label--green {
  background-color: #95E23C;
}

.c-label--red {
  background-color: #F2A19E;
}

.c-label--position {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.c-label--positionSmall-left {
  position: absolute;
  top: -65%;
  left: 22%;
}
@media screen and (max-width: 1380px) {
  .c-label--positionSmall-left {
    left: 50%;
    transform: translateX(-50%);
  }
}

.c-label--positionSmall-right {
  position: absolute;
  top: -65%;
  right: 22%;
}
@media screen and (max-width: 1380px) {
  .c-label--positionSmall-right {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
}

.c-compareCards {
  --icon-box-size: clamp(8rem, 14vw, 20rem);
  --icon-aspect: 1 / 1;
  --icon-scale: 1;
}

.c-compareCards__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #005EA7;
  background-color: #FFFFFF;
  width: 100%;
}
@media screen and (max-width: 667px) {
  .c-compareCards__wrapper {
    flex-direction: column;
  }
}

.c-compareCards__wrapper:last-child {
  margin-top: 4.8rem;
}

.c-compareCards__title {
  position: absolute;
  top: -11%;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  background-color: #005EA7;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  padding: 0.8rem 2rem;
}
@media screen and (max-width: 480px) {
  .c-compareCards__title {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    padding: 0.6rem 1.7rem;
  }
}

.c-compareCards__items {
  width: 100%;
  max-width: 60rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
  padding: 0 1rem;
  position: relative;
}
@media screen and (max-width: 667px) {
  .c-compareCards__items {
    padding: 3rem 1rem;
  }
}

.c-compareCards__img {
  width: var(--icon-box-size);
  aspect-ratio: var(--icon-aspect);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.c-compareCards__img img {
  width: calc(100% * var(--icon-scale));
  height: calc(100% * var(--icon-scale));
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.c-compareCards__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (max-width: 1000px) {
  .c-compareCards__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.c-compareCardsSmall {
  --icon-box-size: clamp(8rem, 14vw, 7.5rem);
  --icon-aspect: 1 / 1;
  --icon-scale: 1;
  margin-top: 4.8rem;
}
@media screen and (max-width: 1380px) {
  .c-compareCardsSmall {
    margin-top: unset;
  }
}

.c-compareCardsSmall__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
}
@media screen and (max-width: 1380px) {
  .c-compareCardsSmall__container {
    flex-direction: column;
    gap: unset;
  }
}

.c-compareCardsSmall__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #005EA7;
  background-color: #FFFFFF;
  width: 100%;
  min-height: 15.7rem;
}
@media screen and (max-width: 1380px) {
  .c-compareCardsSmall__wrapper {
    margin-top: 4.8rem;
  }
}
@media screen and (max-width: 667px) {
  .c-compareCardsSmall__wrapper {
    flex-direction: column;
    min-height: unset;
    margin-top: 3rem;
    padding: 2rem 0;
  }
}

.c-compareCardsSmall__title {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  color: #FFFFFF;
  background-color: #005EA7;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.7;
  padding: 0.8rem 2rem;
}
@media screen and (max-width: 667px) {
  .c-compareCardsSmall__title {
    top: -11%;
  }
}
@media screen and (max-width: 480px) {
  .c-compareCardsSmall__title {
    top: -9%;
    font-size: 1.4rem;
    line-height: 1.7142857143;
    padding: 0.6rem 1.7rem;
    white-space: nowrap;
  }
}

.c-compareCardsSmall__items {
  width: 100%;
  max-width: 60rem;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
  padding: 0 1rem;
  position: relative;
}
@media screen and (max-width: 667px) {
  .c-compareCardsSmall__items {
    padding: 0 1rem;
  }
}

.c-compareCardsSmall__img {
  width: var(--icon-box-size);
  aspect-ratio: var(--icon-aspect);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.c-compareCardsSmall__img img {
  width: calc(100% * var(--icon-scale));
  height: calc(100% * var(--icon-scale));
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.c-compareCardsSmall__label-box {
  display: flex;
  gap: 1.2rem;
}

.c-compareCardsSmall__text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6666666667;
}
@media screen and (max-width: 1380px) {
  .c-compareCardsSmall__text {
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}
@media screen and (max-width: 1000px) {
  .c-compareCardsSmall__text {
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.c-compareCards__line {
  border: 1px solid #005EA7;
  align-self: stretch;
  margin: 5.4rem 1rem;
}
@media screen and (max-width: 667px) {
  .c-compareCards__line {
    display: none;
  }
}

@media screen and (max-width: 667px) {
  .c-compareCards__text-box,
  .c-compareCardsSmall__text-box {
    width: 100%;
    max-width: 20rem;
  }
}

.c-compareCards__img--scale95 {
  --icon-scale: 0.95;
}

.c-compareCards__img--scale90 {
  --icon-scale: 0.90;
}

.c-compareCards__img--scale85 {
  --icon-scale: 0.85;
}

.c-compareCards__img--scale80 {
  --icon-scale: 0.80;
}

.c-compareCards__img--scale75 {
  --icon-scale: 0.75;
}

.c-compareCards__img--scale70 {
  --icon-scale: 0.70;
}

.c-compareCards__img--scale50 {
  --icon-scale: 0.50;
}

.c-sectionHeading__text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8888888889;
  padding-top: 1.8rem;
}
@media screen and (max-width: 480px) {
  .c-sectionHeading__text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    text-align: left;
    padding-top: 2.3rem;
  }
}