@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-tokuteiginou-mv {
  width: 100%;
}
.p-tokuteiginou-mv__inner {
  max-width: 165rem;
  display: flex;
  justify-content: flex-end;
  gap: 3.3rem;
  padding-left: 5rem;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__inner {
    padding-left: 0;
    flex-direction: column;
    gap: 0;
  }
}
.p-tokuteiginou-mv__text {
  max-width: 63rem;
  width: 100%;
  padding: 7rem 0 2.4rem;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__text {
    height: 100%;
    padding: 2.6rem 0 0;
    transform: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2.5rem;
  }
}
.p-tokuteiginou-mv__tag {
  width: fit-content;
  padding: 1.4rem 3rem;
  background-color: #005EA7;
  display: flex;
  align-items: center;
  gap: 1.7rem;
  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-tokuteiginou-mv__tag {
    padding: 0.8rem 1.8rem;
    gap: 1.2rem;
    font-size: 1.8rem;
    line-height: 1.38;
  }
}
.p-tokuteiginou-mv__tag span {
  font-size: clamp(0.9rem, 1.4vw, 1.8rem);
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__tag span {
    font-size: 0.9rem;
    line-height: 2.12;
  }
}
.p-tokuteiginou-mv__title {
  margin-top: 3.5rem;
  font-size: clamp(4rem, 3.9vw, 5rem);
  font-weight: 700;
  line-height: 1.38;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__title {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__title {
    margin-top: 1.1rem;
    font-size: 2.8rem;
    line-height: 1.46;
  }
}
.p-tokuteiginou-mv__title-underline {
  position: relative;
}
.p-tokuteiginou-mv__title-underline::after {
  position: absolute;
  content: "";
  background-color: #F2A19E;
  bottom: -0.3rem;
  left: 0;
  display: block;
  width: 92%;
  height: 2.2rem;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__title-underline::after {
    height: 0.9rem;
    bottom: 0;
  }
}
.p-tokuteiginou-mv__subtitle {
  margin-top: 2.6rem;
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.31;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__subtitle {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__subtitle {
    margin-top: 1rem;
    font-size: 2rem;
    line-height: 1.45;
  }
}
.p-tokuteiginou-mv__feature--pc {
  margin-top: 5.6rem;
  display: flex;
  gap: clamp(2rem, 3.29vw, 5.5rem);
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__feature--pc {
    display: none;
  }
}
.p-tokuteiginou-mv__feature--sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__feature--sp {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
    gap: 1.9rem;
  }
}
.p-tokuteiginou-mv__feature-item {
  position: relative;
  width: clamp(10rem, 13.5vw, 17.3rem);
  height: clamp(10rem, 13.5vw, 17.3rem);
  border: 0.3rem solid #37B9BE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__feature-item {
    width: 17.3rem;
    height: 17.3rem;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__feature-item {
    width: 10rem;
    height: 10rem;
  }
}
.p-tokuteiginou-mv__feature-item::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__feature-item::before {
    top: -1.2rem;
  }
}
.p-tokuteiginou-mv__feature-item::after {
  position: absolute;
  content: "";
  width: 6.4rem;
  height: 4.7rem;
  background-color: #f7f7f7;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__feature-item::after {
    width: 4rem;
    height: 2.8rem;
    top: -1.2rem;
  }
}
.p-tokuteiginou-mv__feature-item:nth-child(1)::before {
  width: 5.4rem;
  height: 4.7rem;
  background-image: url("../../img/tokuteiginou/tokuteiginou_fv_icon01.svg");
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__feature-item:nth-child(1)::before {
    width: 3.1rem;
    height: 2.7rem;
  }
}
.p-tokuteiginou-mv__feature-item:nth-child(2)::before {
  width: 4.2rem;
  height: 3.9rem;
  background-image: url("../../img/tokuteiginou/tokuteiginou_fv_icon02.svg");
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__feature-item:nth-child(2)::before {
    width: 2.4rem;
    height: 2.1rem;
  }
}
.p-tokuteiginou-mv__feature-item:nth-child(3)::before {
  width: 4.6rem;
  height: 4.6rem;
  background-image: url("../../img/tokuteiginou/tokuteiginou_fv_icon03.svg");
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-mv__feature-item:nth-child(3)::before {
    width: 2.6rem;
    height: 2.7rem;
  }
}
.p-tokuteiginou-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-tokuteiginou-mv__feature-item p {
    font-size: 1.3rem;
    line-height: 1.23;
  }
}
.p-tokuteiginou-mv__image {
  position: relative;
  max-width: 73.8rem;
  max-height: 65rem;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__image {
    max-width: 100%;
    max-height: auto;
    padding: 0 2rem;
  }
}
.p-tokuteiginou-mv__image picture {
  height: 100%;
}
.p-tokuteiginou-mv__image img {
  height: inherit;
  aspect-ratio: 738/648;
  object-fit: cover;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__image img {
    height: auto;
    aspect-ratio: 336/197;
  }
}
.p-tokuteiginou-mv__link {
  position: absolute;
  bottom: 3rem;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-mv__link {
    display: none;
  }
}
.p-tokuteiginou-mv__btn-download.c-btn__square {
  width: 34.8rem;
  padding-left: 3.6rem;
  justify-content: flex-start;
}
.p-tokuteiginou-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: 2.4rem;
  height: 2.1rem;
}
.p-tokuteiginou-mv__btn-mail.c-btn__square {
  width: 34.8rem;
  padding-left: 3.6rem;
  justify-content: flex-start;
}
.p-tokuteiginou-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: 2.4rem;
  height: 2.4rem;
}

.p-tokuteiginou {
  overflow: hidden;
}
.p-tokuteiginou-comm__h2 {
  text-align: center;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-comm__h2 {
    font-size: 2.4rem;
    line-height: 1.54;
  }
}
.p-tokuteiginou-comm__h2::before {
  margin-bottom: 1.2rem;
  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-tokuteiginou-comm__h2::before {
    width: 9rem;
    height: 0.3rem;
    margin-bottom: 1.4rem;
  }
}
.p-tokuteiginou-comm__h2 span {
  margin-top: 1.2rem;
  display: block;
  font-size: 2.4rem;
  line-height: 1.83;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-comm__h2 span {
    margin-top: 0;
    font-size: 1.7rem;
    line-height: 1.82;
  }
}
.p-tokuteiginou-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-tokuteiginou-comm__h2 span.text-large {
    font-size: inherit;
  }
}
.p-tokuteiginou-comm__h3 {
  width: fit-content;
  margin-inline: auto;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-tokuteiginou-comm__h3::before {
  margin-bottom: 1.6rem;
  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-tokuteiginou-comm__h3::before {
    width: 9rem;
    margin-bottom: 1.4rem;
  }
}
.p-tokuteiginou-comm__h3-text {
  white-space: nowrap;
  margin-top: 1.8rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-comm__h3-text {
    margin-top: 3.2rem;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.82;
  }
}
.p-tokuteiginou-comm__content-title {
  position: relative;
  padding-left: 3.2rem;
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-comm__content-title {
    font-size: 1.8rem;
    line-height: 1.88;
  }
}
.p-tokuteiginou-comm__content-title::before {
  position: absolute;
  content: "";
  display: block;
  width: 1.8rem;
  height: 3.9rem;
  background: linear-gradient(to right, #37B9BE, #268AB7);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-comm__content-title::before {
    height: 6.1rem;
  }
}
.p-tokuteiginou-comm__h3-content-text {
  margin-top: 3rem;
  padding-left: 3.2rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-comm__h3-content-text {
    margin-top: 4.3rem;
    padding-left: 0;
  }
}
.p-tokuteiginou-comm__h3-content-text p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-comm__h3-content-text p {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.66;
  }
}
.p-tokuteiginou-comm__h3-content-text p:not(:first-child) {
  margin-top: 1.88em;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-comm__h3-content-text p:not(:first-child) {
    margin-top: 1.66em;
  }
}
.p-tokuteiginou-comm__h3-content-text p span {
  position: relative;
  z-index: 0;
}
.p-tokuteiginou-comm__h3-content-text p span::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 0.5rem;
  background-color: #F2A19E;
  bottom: 0.2rem;
  left: 0;
  z-index: -1;
}
.p-tokuteiginou-comm__items-title {
  margin-inline: auto;
  max-width: 103.8rem;
  margin-top: 6.4rem;
  position: relative;
  padding-left: 2.1rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.88;
}
.p-tokuteiginou-comm__items-title::before {
  position: absolute;
  content: "";
  display: block;
  height: 0.3rem;
  width: 0.9rem;
  background-color: #37B9BE;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-tokuteiginou-sec01 {
  padding-top: 2rem;
}
.p-tokuteiginou-sec01__text {
  margin-top: 4.3rem;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__text {
    margin-top: 2.6rem;
  }
}
.p-tokuteiginou-sec01__text p {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__text p {
    font-size: 1.8rem;
    line-height: 1.38;
  }
}
.p-tokuteiginou-sec01__text .light-blue-text {
  color: #37B9BE;
}
.p-tokuteiginou-sec01__text .blue-text {
  color: #005EA7;
}
.p-tokuteiginou-sec01__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__content {
    flex-direction: row;
    max-width: 33rem;
    margin-inline: auto;
    margin-top: 5rem;
  }
}
.p-tokuteiginou-sec01__image {
  margin-top: 5.8rem;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__image {
    margin-top: 0;
  }
}
.p-tokuteiginou-sec01__image img {
  aspect-ratio: 1100/242;
  object-fit: cover;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__image img {
    aspect-ratio: 141/641;
  }
}
.p-tokuteiginou-sec01__items {
  max-width: 109rem;
  width: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__items {
    height: 62.4rem;
    width: auto;
    grid-template-columns: 1fr;
    align-items: center;
  }
}
.p-tokuteiginou-sec01__item-inner {
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__item-inner {
    margin: 0;
  }
}
.p-tokuteiginou-sec01__item-inner p {
  padding-left: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.88;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec01__item-inner p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__item-inner p {
    font-size: 1.5rem;
    line-height: 2.26;
  }
}
.p-tokuteiginou-sec01__item-inner p::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.3rem;
  background-color: #37B9BE;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-tokuteiginou-sec01__h3-contents {
  padding-top: 8.7rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-contents {
    padding-top: 6rem;
  }
}
.p-tokuteiginou-sec01__h3-content01 {
  margin-top: 11.8rem;
  display: flex;
  gap: 2.7rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content01 {
    margin-top: 4.6rem;
    flex-direction: column;
    gap: 1.4rem;
  }
}
.p-tokuteiginou-sec01__h3-image {
  max-width: 44.1rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-image {
    margin-inline: auto;
  }
}
.p-tokuteiginou-sec01__h3-content02 {
  margin-top: 4rem;
}
.p-tokuteiginou-sec01__h3-content02-image {
  margin-top: 3.6rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content02-image {
    margin-top: 3.2rem;
    text-align: center;
  }
}
.p-tokuteiginou-sec01__h3-content03 {
  padding-bottom: 10.8rem;
  margin-top: 7.3rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content03 {
    padding-bottom: 0;
    margin-top: 0;
  }
}
.p-tokuteiginou-sec01__h3-content03-items {
  margin-top: 3.3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem 4rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content03-items {
    display: flex;
    flex-wrap: wrap;
    gap: 2.8rem 2rem;
    justify-content: center;
  }
}
.p-tokuteiginou-sec01__h3-content03-item {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec01__h3-content03-item {
    flex-direction: column;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content03-item {
    min-width: 6.8rem;
    width: 20%;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content03-item img {
    flex-direction: column;
    gap: 0.8rem;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content03-item p {
    font-size: 1rem;
    text-align: center;
  }
}
.p-tokuteiginou-sec01__h3-content04 {
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04 {
    margin-bottom: 2.5rem;
  }
}
.p-tokuteiginou-sec01__h3-content04-inner {
  padding: 5rem 3.2rem;
  background-color: #FFFFFF;
  border-radius: 2.4rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-inner {
    padding: 6.3rem 0 0;
    background-color: transparent;
  }
}
.p-tokuteiginou-sec01__h3-content04-items {
  margin-top: 3rem;
  margin-inline: auto;
  max-width: 97.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3.8rem, 5vw, 6.4rem) clamp(3.8rem, 7.5vw, 9.6rem);
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-items {
    grid-template-columns: 1fr;
    gap: 3.8rem;
  }
}
.p-tokuteiginou-sec01__h3-content04-item {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 4rem);
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-item {
    gap: 1rem;
    align-items: flex-start;
  }
}
.p-tokuteiginou-sec01__h3-content04-item.item02 img {
  width: 77%;
}
.p-tokuteiginou-sec01__h3-content04-item.item05 img {
  width: 75%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-item.item05 img {
    width: 100%;
  }
}
.p-tokuteiginou-sec01__h3-content04-item.item07 img {
  width: 92%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-item.item07 img {
    width: 100%;
  }
}
.p-tokuteiginou-sec01__h3-content04-item.item08 img {
  width: 92%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-item.item08 img {
    width: 100%;
  }
}
.p-tokuteiginou-sec01__h3-content04-item.item09 img {
  width: 92%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-item.item09 img {
    width: 100%;
  }
}
.p-tokuteiginou-sec01__h3-content04-item.item10 img {
  width: 75%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-item.item10 img {
    width: 100%;
  }
}
.p-tokuteiginou-sec01__h3-content04-image {
  width: 42.6%;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-image {
    max-width: 22.6%;
    width: 100%;
  }
}
.p-tokuteiginou-sec01__h3-content04-block {
  max-width: 50.4%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-block {
    max-width: initial;
  }
}
.p-tokuteiginou-sec01__h3-content04-item-title {
  width: fit-content;
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  z-index: 1;
}
.p-tokuteiginou-sec01__h3-content04-item-title::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 0.5rem;
  background-color: #F2A19E;
  bottom: 0.1rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-item-title {
    font-size: 1.6rem;
  }
}
.p-tokuteiginou-sec01__h3-content04-item-text {
  min-height: 8.5rem;
  margin-top: 1.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.87;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec01__h3-content04-item-text {
    margin-top: 1.1rem;
    font-size: 1.4rem;
    min-height: auto;
  }
}
.p-tokuteiginou-sec02 {
  padding-top: 9.2rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02 {
    padding-top: 4.1rem;
  }
}
.p-tokuteiginou-sec02__items {
  margin-top: 5.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__items {
    margin-top: 4.1rem;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.p-tokuteiginou-sec02__item {
  background-color: #FFFFFF;
  position: relative;
  padding: 2.7rem 0 1.4rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__item {
    padding: 2.7rem 2rem;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__item a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.4rem;
  }
}
.p-tokuteiginou-sec02__item-number {
  position: absolute;
  z-index: 1;
  padding-left: 0.7rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 3rem;
  color: #FFFFFF;
  top: 0;
  left: 0;
}
.p-tokuteiginou-sec02__item-number::before {
  position: absolute;
  content: "";
  display: block;
  border-style: solid;
  border-color: #37B9BE transparent transparent transparent;
  border-width: 7.1rem 5.3rem 0 0;
  z-index: -1;
  left: 0;
}
.p-tokuteiginou-sec02__item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.1rem;
}
.p-tokuteiginou-sec02__item-text {
  margin-top: 1.1rem;
  min-height: 6.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__item-text {
    margin-top: 0;
  }
}
.p-tokuteiginou-sec02__item-text p {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.54;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__item-text p {
    text-align: left;
    font-size: 1.8rem;
  }
}
.p-tokuteiginou-sec02__item-icon {
  margin-top: 2.7rem;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__item-icon {
    position: absolute;
    content: "";
    bottom: 2.6rem;
    right: 2rem;
  }
}
.p-tokuteiginou-sec02__content-header {
  position: relative;
  display: flex;
  align-items: center;
}
.p-tokuteiginou-sec02__content-number {
  position: absolute;
  z-index: -1;
  padding-left: 3.2rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 6.8rem;
  color: #FFFFFF;
  top: 0;
  left: 0;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content-number {
    font-size: 3.4rem;
    padding-left: 1.6rem;
  }
}
.p-tokuteiginou-sec02__content-number::before {
  position: absolute;
  content: "";
  display: block;
  border-style: solid;
  border-color: #37B9BE transparent transparent transparent;
  border-width: 16.2rem 16.2rem 0 0;
  z-index: -1;
  left: 0;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content-number::before {
    border-width: 8.1rem 8.1rem 0 0;
  }
}
.p-tokuteiginou-sec02__content-text {
  margin-top: 2.5rem;
  padding-left: 10rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content-text {
    margin-top: 4.5rem;
    padding-left: 4.7rem;
  }
}
.p-tokuteiginou-sec02__content-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content-title {
    font-size: 2.4rem;
    line-height: 1.83;
  }
}
.p-tokuteiginou-sec02__content-subtitle {
  margin-top: 1.4rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.83;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content-subtitle {
    margin-top: 0;
    font-size: 1.8rem;
  }
}
.p-tokuteiginou-sec02__content01 {
  padding-top: 10.5rem;
  padding-bottom: 8.2rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01 {
    padding-top: 6.4rem;
  }
}
.p-tokuteiginou-sec02__content01-primary {
  margin-top: 6.2rem;
  margin-left: 10rem;
  padding-bottom: 5.8rem;
  border-bottom: 0.1rem solid #37B9BE;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec02__content01-primary {
    margin-left: 0;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-primary {
    margin-top: 4.6rem;
    margin-left: 0;
    flex-direction: column;
  }
}
.p-tokuteiginou-sec02__content01--flex {
  margin-top: 2.3rem;
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01--flex {
    justify-content: center;
  }
}
.p-tokuteiginou-sec02__content01--flex img {
  max-width: 21.3rem;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec02__content01--flex img {
    max-width: 43%;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01--flex img {
    max-width: 16.2rem;
  }
}
.p-tokuteiginou-sec02__content01--left {
  max-width: 42%;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec02__content01--left {
    max-width: 48%;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01--left {
    max-width: 100%;
  }
}
.p-tokuteiginou-sec02__content01--right {
  max-width: 54%;
  margin-left: auto;
  padding-left: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec02__content01--right {
    max-width: 48%;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01--right {
    margin-top: 4.8rem;
    max-width: 100%;
    padding-left: 0;
  }
}
.p-tokuteiginou-sec02__content01--underline {
  position: relative;
}
.p-tokuteiginou-sec02__content01--underline::before {
  position: absolute;
  content: "";
  display: block;
  width: 96%;
  height: 0.5rem;
  left: 0;
  bottom: 0.1rem;
  background-color: #F2A19E;
  z-index: -1;
}
.p-tokuteiginou-sec02__content01-item:last-child {
  margin-top: 5.7rem;
}
.p-tokuteiginou-sec02__content01-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-title {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.66;
  }
}
.p-tokuteiginou-sec02__content01-point {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.66;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-point {
    font-size: 1.5rem;
  }
}
.p-tokuteiginou-sec02__content01-point .strong {
  font-size: 3.3rem;
  color: #D73F39;
  line-height: 1.09;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-point .strong {
    font-size: 2.6rem;
  }
}
.p-tokuteiginou-sec02__content01-point .small {
  display: block;
  font-size: 1.5rem;
  line-height: 1.66;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-point .small {
    font-size: 1.1rem;
  }
}
.p-tokuteiginou-sec02__content01-note {
  margin-top: 3.3rem;
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.81;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-note {
    margin-top: 1.8rem;
  }
}
.p-tokuteiginou-sec02__content01-text {
  margin-top: 1.8rem;
  padding-left: 3.2rem;
  display: flex;
  align-items: center;
  gap: 2.6rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-text {
    padding-left: 0;
    gap: 1.8rem;
  }
}
.p-tokuteiginou-sec02__content01-text p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-text p {
    font-size: 1.4rem;
    line-height: 1.71;
  }
}
.p-tokuteiginou-sec02__content01-secondary {
  margin-left: 10rem;
  padding-top: 5.8rem;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec02__content01-secondary {
    margin-left: 0;
  }
}
.p-tokuteiginou-sec02__content01-secondary-flex {
  margin-top: 3rem;
  display: flex;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-flex {
    flex-direction: column;
  }
}
.p-tokuteiginou-sec02__content01-secondary-left {
  padding-left: 3.2rem;
  max-width: 44%;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec02__content01-secondary-left {
    max-width: 50%;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-left {
    padding-left: 0;
    max-width: 100%;
  }
}
.p-tokuteiginou-sec02__content01-secondary-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-text {
    font-size: 1.6rem;
  }
}
.p-tokuteiginou-sec02__content01-secondary-descriptions {
  margin-top: 2.4rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-descriptions {
    width: fit-content;
    margin-inline: auto;
  }
}
.p-tokuteiginou-sec02__content01-secondary-description {
  padding-left: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-description {
    font-size: 1.5rem;
    line-height: 2.26;
  }
}
.p-tokuteiginou-sec02__content01-secondary-description::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.3rem;
  background-color: #37B9BE;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-tokuteiginou-sec02__content01-secondary-right {
  max-width: 47%;
  margin-left: auto;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-right {
    max-width: 100%;
    margin-inline: auto;
  }
}
.p-tokuteiginou-sec02__content01-secondary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-items {
    margin-top: 2.4rem;
  }
}
.p-tokuteiginou-sec02__content01-secondary-item {
  border-bottom: 0.1rem solid #37B9BE;
}
.p-tokuteiginou-sec02__content01-secondary-item p {
  font-size: clamp(1rem, 1vw, 1.8rem);
  line-height: 1.66;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-item p {
    font-size: 1.2rem;
    white-space: nowrap;
  }
}
.p-tokuteiginou-sec02__content01-secondary-item p .bg-white {
  display: inline-block;
  background-color: #FFFFFF;
  padding-inline: 1.3rem;
  margin-left: 3rem;
  font-size: clamp(1.4rem, 1vw, 1.8rem);
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec02__content01-secondary-item p .bg-white {
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-item p .bg-white {
    margin-left: 1rem;
  }
}
.p-tokuteiginou-sec02__content01-secondary-item p .font-red {
  padding: 0 0.3rem;
  color: #D73F39;
  font-weight: 700;
}
.p-tokuteiginou-sec02__content01-secondary-item p .strong {
  font-size: 3.4rem;
  color: #D73F39;
  font-weight: 700;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content01-secondary-item p .strong {
    font-size: 2.4rem;
  }
}
.p-tokuteiginou-sec02__content02 {
  padding-top: 11.3rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content02 {
    padding-top: 6.4rem;
  }
}
.p-tokuteiginou-sec02__content02-items {
  margin-top: 5.7rem;
  padding-left: 10rem;
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 1000px) {
  .p-tokuteiginou-sec02__content02-items {
    padding-left: 0;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content02-items {
    margin-top: 3.2rem;
  }
}
.p-tokuteiginou-sec02__content02-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content02-item {
    flex-direction: column;
  }
}
.p-tokuteiginou-sec02__content02-item--rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content02-item--rev {
    flex-direction: column;
  }
}
.p-tokuteiginou-sec02__content02-text {
  max-width: 49.2%;
}
.p-tokuteiginou-sec02__content02-text--rev {
  max-width: 51%;
  margin-left: auto;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content02-text--rev {
    margin-left: 0;
    max-width: 100%;
  }
}
.p-tokuteiginou-sec02__content02-description {
  margin-top: 2.4rem;
  padding-left: 3.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content02-description {
    font-size: 1.6rem;
    padding-left: 0;
    margin-top: 1.8rem;
  }
}
.p-tokuteiginou-sec02__content02-description--underline {
  position: relative;
}
.p-tokuteiginou-sec02__content02-description--underline::before {
  position: absolute;
  content: "";
  display: block;
  width: 98%;
  height: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.1rem;
  background-color: #F2A19E;
  z-index: -1;
}
.p-tokuteiginou-sec02__content02-image {
  max-width: 45.7%;
  margin-left: auto;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content02-image {
    max-width: 100%;
    margin-top: 2.4rem;
  }
}
.p-tokuteiginou-sec02__content02-image--rev {
  padding-left: 3.2rem;
  max-width: 40%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content02-image--rev {
    max-width: 100%;
    margin-top: 2.4rem;
  }
}
.p-tokuteiginou-sec02__content03 {
  padding-top: 12.1rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content03 {
    padding-top: 6.4rem;
  }
}
.p-tokuteiginou-sec02__content03-body {
  margin-top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content03-body {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 3.2rem;
  }
}
.p-tokuteiginou-sec02__content03-body .swiper-pagination-bullet {
  height: 1.2rem;
  width: 1.2rem;
  margin: 0 0.6rem !important;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content03-body .swiper-pagination-bullet {
    height: 1rem;
    width: 1rem;
  }
}
.p-tokuteiginou-sec02__content03-body .swiper-pagination-bullet-active {
  background: #37B9BE;
}
.p-tokuteiginou-sec02__content03-body .swiper-pagination {
  margin-top: 1.5rem;
  position: static;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content03-body .swiper-pagination {
    margin-top: 0.4rem;
  }
}
.p-tokuteiginou-sec02__content03-swiper {
  max-width: 95.6rem;
  width: 100%;
  margin-inline: auto;
  padding: 4.4rem 2rem;
  background: #FFFFFF;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec02__content03-swiper {
    max-width: 100%;
  }
}
.p-tokuteiginou-sec03 {
  padding-top: 9.2rem;
  padding-bottom: 9.2rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec03 {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
  }
}
.p-tokuteiginou-sec03__items {
  margin-top: 6.2rem;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec03__items {
    margin-top: 3.2rem;
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}
.p-tokuteiginou-sec03__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec03__item {
    gap: 0;
  }
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec03__item-img {
    max-width: 19.7rem;
    width: 100%;
  }
}
.p-tokuteiginou-sec03__item-img img {
  aspect-ratio: 1/1;
}
.p-tokuteiginou-sec03__item-text {
  margin-top: 0.8rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec03__item-text {
    margin-inline: auto;
  }
}
.p-tokuteiginou-sec03__item-title {
  text-align: center;
  max-height: 2em;
  height: 100%;
}
.p-tokuteiginou-sec03__item-description {
  margin-top: 2.2rem;
  max-width: 87%;
  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-tokuteiginou-sec03__item-description {
    margin-top: 0;
    text-align: center;
    max-width: initial;
  }
}
.p-tokuteiginou-sec04 {
  position: relative;
  padding-bottom: 5.1rem;
}
.p-tokuteiginou-sec04::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  z-index: -1;
  left: calc(50% - 50vw);
  background-color: #FFFFFF;
}
.p-tokuteiginou-sec04__text {
  margin-top: 3.3rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}
.p-tokuteiginou-sec04__cards {
  margin-top: 5.7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7%;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec04__cards {
    margin-top: 3.2rem;
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}
.p-tokuteiginou-sec04__cards > *:only-child {
  grid-column: 2;
  justify-self: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec04__cards > *:only-child {
    grid-column: auto/auto;
  }
}
.p-tokuteiginou-sec04__card-img {
  overflow: hidden;
}
.p-tokuteiginou-sec04__card-img img {
  aspect-ratio: 345/261;
  object-fit: cover;
}
.p-tokuteiginou-sec04__card-text {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec04__card-text {
    margin-top: 0.8rem;
    gap: 0;
  }
}
.p-tokuteiginou-sec04__card-title {
  font-size: 1.8rem;
  color: #37B9BE;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec04__card-title {
    font-size: 1.6rem;
  }
}
.p-tokuteiginou-sec04__card-info {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec04__card-info {
    font-size: 1.1rem;
  }
}
.p-tokuteiginou-sec04__card-description {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec04__card-description {
    margin-top: 1.2rem;
    font-size: 1.6rem;
  }
}
.p-tokuteiginou-sec04__card-link {
  justify-content: flex-end;
}
.p-tokuteiginou-sec04__btn {
  margin-top: 8.6rem;
  text-align: center;
}
@media screen and (max-width: 667px) {
  .p-tokuteiginou-sec04__btn {
    margin-top: 4.2rem;
  }
}
.p-tokuteiginou-faq {
  padding-top: 5.6rem;
}
.p-tokuteiginou-faq--bg-white {
  background-color: #FFFFFF;
}
.p-tokuteiginou-faq__wrapper {
  margin-top: 5.2rem;
}
.p-tokuteiginou-faq__btn {
  margin-top: 4.2rem;
  text-align: center;
}

.p-tokuteiginou-sec04__card .p-tokuteiginou-sec04__card-img img {
  transition: transform 0.5s;
}

.p-tokuteiginou-sec04__card:hover .p-tokuteiginou-sec04__card-img img {
  transform: scale(1.3);
}

.p-tokuteiginou-sec04__card:hover .p-tokuteiginou-sec04__card-link {
  text-decoration: underline;
}

.p-tokuteiginou-faq .c-faqAccordion__question {
  padding: 3.3rem 7.6rem;
}
@media screen and (max-width: 480px) {
  .p-tokuteiginou-faq .c-faqAccordion__question {
    padding: 1.7rem 4.4rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}
.p-tokuteiginou-faq .c-faqAccordion__answer {
  padding: 1rem 7.6rem 3.3rem;
}
@media screen and (max-width: 480px) {
  .p-tokuteiginou-faq .c-faqAccordion__answer {
    padding: 1rem 4.4rem 1.7rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 480px) {
  .p-tokuteiginou-faq .c-faqAccordion__question::before {
    left: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  .p-tokuteiginou-faq .c-faqAccordion__question::after {
    right: 1.3rem;
  }
}

.c-cta02 {
  padding: 4.4rem 4.7rem;
  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: 2.4rem 2rem 4rem;
  }
}
.c-cta02__inner {
  width: 100%;
}
.c-cta02__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}
@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-description {
  margin-top: 2rem;
  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: 30.4rem;
  width: 100%;
}