@charset "UTF-8";
:root {
  --color-white: #ffffff;
  --color-black: #2d2b2a;
  --color-main: #db1b22;
  --color-main2: #fee5e5;
  --color-bg: #f3f5f7;
}

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

body {
  line-height: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  background-color: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  border: 0;
  border-top: 1px solid #000000;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

* {
  box-sizing: border-box !important;
  font-size: 1.4rem;
}

html {
  font-size: 62.5%;
}
html.is-open {
  overflow: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}
body * {
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

picture {
  display: block;
}

input[type="submit"],
input[type="button"],
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="reset"],
select,
button,
textarea {
  -webkit-appearance: none;
  background-color: var(--color-white);
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: var(--color-black);
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
input[type="text"]::-webkit-search-decoration,
input[type="number"]::-webkit-search-decoration,
input[type="email"]::-webkit-search-decoration,
input[type="tel"]::-webkit-search-decoration,
input[type="date"]::-webkit-search-decoration,
input[type="reset"]::-webkit-search-decoration,
select::-webkit-search-decoration,
button::-webkit-search-decoration,
textarea::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="reset"]:focus,
select:focus,
button:focus,
textarea:focus {
  outline-offset: 0;
}

input[type="date"]::-webkit-date-and-time-value,
input[type="time"]::-webkit-date-and-time-value,
input[type="datetime-local"]::-webkit-date-and-time-value {
  text-align: left;
}

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

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

.swiper-container {
  overflow: visible;
  padding-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .swiper-container {
    padding-bottom: calc(35 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-container {
    padding-bottom: calc(32 / 375 * 100vw);
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  display: block;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  height: 40px;
  width: 27px;
}
@media screen and (max-width: 1439px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    filter: drop-shadow(0px 0px calc(20 / 1440 * 100vw) rgba(0, 0, 0, 0.1));
    height: calc(40 / 1440 * 100vw);
    width: calc(27 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: calc(30 / 375 * 100vw);
    height: calc(30 / 375 * 100vw);
  }
}

.swiper-button-prev {
  left: -51px;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev {
    /* left: calc(-51 / 375 * 100vw) !important; */
    left: -8px;
    width: 60px !important;
    height: 60px !important;
    top: 44.5%;
  }
}
.swiper-button-prev:after {
  background-image: url(../images/swiper_icon_prev.svg);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after {
    background-image: url(../images/swiper_icon_prev_sp.png);
    width: calc(60 / 375 * 100vw) !important;
    height: calc(60 / 375 * 100vw) !important;
  }
}
.swiper-button-next {
  right: -51px;
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: -8px;
    width: 60px !important;
    height: 60px !important;
    top: 44.5%;
  }
}
.swiper-button-next:after {
  background-image: url(../images/swiper_icon_next.svg);
}
@media screen and (max-width: 767px) {
  .swiper-button-next:after {
    background-image: url(../images/swiper_icon_next_sp.png);
    width: calc(60 / 375 * 100vw) !important;
    height: calc(60 / 375 * 100vw) !important;
  }
}
.swiper-pagination {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    bottom: calc(0 / 375 * 100vw) !important;
  }
}

.swiper-pagination-bullets {
  bottom: 0 !important;
  font-size: 0 !important;
  left: auto !important;
}

.swiper-pagination-bullet {
  background-color: #f3b3b5;
  border: 1px solid #f3b3b5;
  border-radius: 0;
  height: 11px;
  margin: 0 10px !important;
  opacity: 1;
  width: 10px;
}
@media screen and (max-width: 1439px) {
  .swiper-pagination-bullet {
    height: calc(11 / 1440 * 100vw);
    margin: 0 calc(10 / 1440 * 100vw) !important;
    width: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    height: calc(7 / 375 * 100vw);
    margin: 0 calc(5 / 375 * 100vw) !important;
    width: calc(7 / 375 * 100vw);
  }
}
.swiper-pagination-bullet-active {
  background: var(--color-main);
  border: 1px solid var(--color-main);
}

@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.woff") format("woff");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.l-container {
  margin: 0 auto;
  padding-left: 195px;
  padding-right: 195px;
  width: 1440px;
}
@media screen and (max-width: 1439px) {
  .l-container {
    padding-left: calc(195 / 1440 * 100vw);
    padding-right: calc(195 / 1440 * 100vw);
    width: calc(1440 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: calc(22 / 375 * 100vw);
    padding-right: calc(22 / 375 * 100vw);
    width: 100%;
  }
}
.c-achievements {
  background-color: var(--color-white);
  height: 612px;
  padding: 35px 16px 25px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .c-achievements {
    height: calc(612 / 1440 * 100vw);
    padding: calc(35 / 1440 * 100vw) calc(16 / 1440 * 100vw)
      calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-achievements {
    height: calc(612 / 375 * 100vw);
    padding: calc(35 / 375 * 100vw) calc(17 / 375 * 100vw)
      calc(25 / 375 * 100vw);
  }
}
.c-member{
  background-color: var(--color-white);
  height: 642px;
}
@media screen and (max-width: 1439px) {
  .c-member{
    height: calc(642 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-member{
    height: calc(642 / 375 * 100vw);
  }
}
.c-member__image {
  margin: 0 auto;
  width: 330px;
}
.c-member__image img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .c-member__image {
    width: calc(330 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-member__image {
    width: calc(330 / 375 * 100vw);
  }
}
.c-member__name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .c-member__name {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-member__name {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(22 / 375 * 100vw);
  }
}
.c_member__prof{
  padding: 17px;
}
@media screen and (max-width: 1439px) {
  .c_member__prof{
    padding: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c_member__prof{
    padding: calc(17 / 375 * 100vw);
  }
}
.c-member__title {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-main);
  height: 44px;
  line-height: 27px;
}
@media screen and (max-width: 1439px) {
  .c-member__title {
    font-size: calc(18 / 1440 * 100vw);
    height: calc(44 / 1440 * 100vw);
    line-height: calc(27 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-member__title {
    font-size: calc(18 / 375 * 100vw);
    height: calc(44 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
  }
}
.c-member__text {
  font-size: 15px;
  line-height: 28px;
  margin-top: 10px;
  letter-spacing: .03em;
}
@media screen and (max-width: 1439px) {
  .c-member__text {
    font-size: calc(15 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-member__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-footer__logo .l-container{
  padding-left: 95px;
  padding-right: 95px;
}
@media screen and (max-width: 1439px) {
  .p-footer__logo .l-container{
    padding-left: calc(95 / 1440 * 100vw);
    padding-right: calc(95 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo .l-container{
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo__inner{
    padding-top: 7px;
  }
}
.p-footer__logo__inner ul{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
@media screen and (max-width: 1439px) {
  .p-footer__logo__inner ul{
    height: calc(100 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo__inner ul{
    height: calc(100 / 375 * 100vw);
    flex-direction: column;
    justify-content: center;
    gap: calc(11 / 375 * 100vw);
  }
}
.footer__logo1{
  width: 398px;
}
@media screen and (max-width: 1439px) {
  .footer__logo1{
    width: calc(398 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .footer__logo1{
    width: calc(277 / 375 * 100vw);
  }
}
.footer__logo2{
  width: 142px;
}
@media screen and (max-width: 1439px) {
  .footer__logo2{
    width: calc(142 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .footer__logo2{
    width: calc(78 / 375 * 100vw);
  }
}
.p-footer {
  background-color: var(--color-black);
  height: 50px;
}
@media screen and (max-width: 1439px) {
  .p-footer {
    height: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    height: calc(37 / 375 * 100vw);
  }
}
.p-footer .l-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-footer__nav > ul {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-footer__nav > ul > li + li {
  margin-left: 34px;
}
@media screen and (max-width: 1439px) {
  .p-footer__nav > ul > li + li {
    margin-left: calc(34 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav > ul > li + li {
    margin-left: calc(29 / 375 * 100vw);
  }
}

.p-footer__copyright {
  color: var(--color-white);
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-footer__copyright {
    font-size: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: calc(10 / 375 * 100vw);
  }
}

.p-mainVisual {
  position: relative;
  width: 100%;
}

.p-mainVisual img {
  width: 100%;
  height: auto; /* 縦横比キープで自動縮小 */
  display: block;
}
.p-mainVisual .l-container {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  /* width: calc(1444 / 1920 * 100vw); */
  width: 100%;
}
.p-mainVisual__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.p-mainVisual__inner img.is-pc{
  display: block;
}
.p-mainVisual__inner img.is-sp{
  display: none;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner img.is-pc{
    display: none;
  }
  .p-mainVisual__inner img.is-sp{
    display: block;
  }
}
.p-mainVisual__text {
  content: "";
  display: block;
  height: calc(539 / 1920 * 100vw);
  left: calc(132 / 1920 * 100vw);
  overflow: hidden;
  position: absolute;
  text-indent: 150vw;
  top: calc(108 / 1920 * 100vw);
  white-space: nowrap;
  width: calc(1144 / 1920 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-mainVisual__text {
    display: none;
    height: calc(532 / 375 * 100vw);
    left: calc(134 / 375 * 100vw);
    top: calc(108 / 375 * 100vw);
    width: calc(1144 / 375 * 100vw);
  }
}
.p-about__inner {
  padding: 70px 0 55px 0;
  width: 772px;
  margin: 0 auto;
}
@media screen and (max-width: 1439px) {
  .p-about__inner {
    padding: calc(70 / 1440 * 100vw) 0 calc(55 / 1440 * 100vw) 0;
    width: calc(772 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding: calc(50 / 375 * 100vw) 0 calc(40 / 375 * 100vw) 0;
    width: 100%;
  }
}
.p-about__title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-about__title {
    font-size: calc(35 / 1440 * 100vw);
    margin-bottom: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__title {
    font-size: calc(25 / 375 * 100vw);
    letter-spacing: 0;
    margin-bottom: calc(30 / 375 * 100vw);
    white-space: nowrap;
  }
}
.p-about__title span.em {
  color: var(--color-main);
  font-size: 130%;
}
.p-about__ListItem{
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid var(--color-main);
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem{
    margin-bottom: calc(15 / 1440 * 100vw);
    font-size: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem{
    margin-bottom: calc(10 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
    flex-direction: column;
    align-items: flex-start;
  }
}
.p-about__ListItem--1 .p-about__ListItem--title{
  padding: 60px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--1 .p-about__ListItem--title{
    padding: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--1 .p-about__ListItem--title{
    padding: calc(12 / 375 * 100vw);
    width: 100%;
  }
}
.p-about__ListItem--1 .p-about__ListItem--text{
  padding: 16px 0px 17px 28px;
  line-height: 31px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--1 .p-about__ListItem--text{
    padding: calc(16 / 1440 * 100vw) 0px calc(17 / 1440 * 100vw) calc(28 / 1440 * 100vw);
    line-height: calc(31 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--1 .p-about__ListItem--text{
    padding: calc(13 / 375 * 100vw) 0px calc(12 / 375 * 100vw) calc(20 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0;
  }
}
.p-about__ListItem--2 .p-about__ListItem--title{
  padding: 41px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--2 .p-about__ListItem--title{
    padding: calc(41 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--2 .p-about__ListItem--title{
    padding: calc(11 / 375 * 100vw);
    width: 100%;
  }
}
.p-about__ListItem--2 .p-about__ListItem--text{
  padding: 22px 0px 17px 28px;
  line-height: 31px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--2 .p-about__ListItem--text{
    padding: calc(20 / 1440 * 100vw) 0px calc(17 / 1440 * 100vw) calc(28 / 1440 * 100vw);
    line-height: calc(31 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--2 .p-about__ListItem--text{
    padding: calc(15 / 375 * 100vw) 0px calc(14 / 375 * 100vw) calc(20 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
    letter-spacing: 0;
  }
}
.p-about__ListItem--3 .p-about__ListItem--title{
  padding: 41px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--3 .p-about__ListItem--title{
    padding: calc(41 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--3 .p-about__ListItem--title{
    padding: calc(11 / 375 * 100vw);
    width: 100%;
  }
}
.p-about__ListItem--3 .p-about__ListItem--text{
  padding: 18px 0px 22px 28px;
  line-height: 28px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--3 .p-about__ListItem--text{
    padding: calc(18 / 1440 * 100vw) 0px calc(22 / 1440 * 100vw) calc(28 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--3 .p-about__ListItem--text{
    padding: calc(15 / 375 * 100vw) calc(20 / 375 * 100vw) calc(17 / 375 * 100vw) calc(20 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
    letter-spacing: 0;
  }
}
.p-about__ListItem--4 .p-about__ListItem--title{
  padding: 60px 20px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--4 .p-about__ListItem--title{
    padding: calc(60 / 1440 * 100vw) calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--4 .p-about__ListItem--title{
    padding: calc(11 / 375 * 100vw);
    width: 100%;
  }
}
.p-about__ListItem--4 .p-about__ListItem--text{
  padding: 14px 0px 24px 28px;
  line-height: 23px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--4 .p-about__ListItem--text{
    padding: calc(14 / 1440 * 100vw) 0px calc(24 / 1440 * 100vw) calc(28 / 1440 * 100vw);
    line-height: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--4 .p-about__ListItem--text{
    padding: calc(14 / 375 * 100vw) 0px calc(16 / 375 * 100vw) calc(21 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
    letter-spacing: 0;
  }
}
.p-about__ListItem--title{
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 22px;
  font-weight: bold;
  /* height: 141px; */
  width: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--title{
    font-size: calc(22 / 1440 * 100vw);
    /* height: calc(141 / 1440 * 100vw); */
    width: calc(224 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--title{
    font-size: calc(18 / 375 * 100vw);
    /* height: calc(141 / 375 * 100vw); */
    width: calc(224 / 375 * 100vw);
  }
}
.p-about__ListItem--text{
  padding: 26px 0px 19px 28px;
  line-height: 30px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--text{
    padding: calc(26 / 1440 * 100vw) 0 calc(19 / 1440 * 100vw) calc(28 / 1440 * 100vw);
    line-height: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--text{
    padding: calc(26 / 375 * 100vw) 0 calc(19 / 375 * 100vw) calc(28 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
  }
}
.p-about__ListItem--text span{
  display: block;
  font-weight: 400;
  font-size: 15px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--text span{
    font-size: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--text span{
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: 0;
  }
}
.p-about__ListItem--text .em{
  color: var(--color-main);
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--text .em{
    font-size: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--text .em{
    font-size: calc(15 / 375 * 100vw);
  }
}
.p-about__ListItem--text .p-about__ListItem--textTime{
  font-size: 16px;
  font-weight: bold;
  line-height: 31px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--text .p-about__ListItem--textTime{
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(31 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--text .p-about__ListItem--textTime{
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
  }
}
.p-about__ListItem--text .p-about__ListItem--textTel{
  padding-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-about__ListItem--text .p-about__ListItem--textTel{
    padding-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-about__ListItem--text .p-about__ListItem--textTel{
    padding-top: 0;
    font-size: 14px;
  }
  .p-about__ListItem--text .p-about__ListItem--textMail{
    font-size: 14px;
  }
}
.p-achievements {
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-achievements {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-achievements__inner {
  padding: 62px 0 70px 0;
}
@media screen and (max-width: 1439px) {
  .p-achievements__inner {
    padding: calc(62 / 1440 * 100vw) 0 calc(70 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__inner {
    padding: calc(37 / 375 * 100vw) 0 calc(48 / 375 * 100vw) 0;
  }
}
.p-achievements__title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 114px;
  text-align: center;
  line-height: 49px;
}
@media screen and (max-width: 1439px) {
  .p-achievements__title {
    font-size: calc(35 / 1440 * 100vw);
    margin-bottom: calc(114 / 1440 * 100vw);
    line-height: calc(49 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__title {
    font-size: calc(25 / 375 * 100vw);
    margin-bottom: calc(91 / 375 * 100vw);
    line-height: calc(41 / 375 * 100vw);
  }
}
.p-achievements__title .em{
  color: var(--color-main);
}
.c-achievements__thumbnail img{
  width: 105px;
  height: 105px;
  position: absolute;
  top: -69px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1439px) {
  .c-achievements__thumbnail img{
    width: calc(105 / 1440 * 100vw);
    height: calc(105 / 1440 * 100vw);
    top: calc(-69 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-achievements__thumbnail img{
    width: calc(105 / 375 * 100vw);
    height: calc(105 / 375 * 100vw);
    top: calc(-69 / 375 * 100vw);
  }
}
.c-achievements__b__title,
.c-achievements__a__title{
  color: var(--color-main);
  font-weight: bold;
  font-size: 14px;
  padding-top: 10px;
}
@media screen and (max-width: 1439px) {
  .c-achievements__b__title,
  .c-achievements__a__title{
    font-size: calc(14 / 1440 * 100vw);
    padding-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-achievements__b__title,
  .c-achievements__a__title{
    font-size: calc(14 / 375 * 100vw);
    padding-top: calc(12 / 375 * 100vw);
  }
}
.c-achievements__b__organization,
.c-achievements__a__organization{
  font-size: 16px;
  font-weight: bold;
  height: 70px;
  padding-top: 11px;
  line-height: 22px;
}
@media screen and (max-width: 1439px) {
  .c-achievements__b__organization,
  .c-achievements__a__organization{
    font-size: calc(16 / 1440 * 100vw);
    height: calc(70 / 1440 * 100vw);
    padding-top: calc(11 / 1440 * 100vw);
    line-height: calc(22 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-achievements__b__organization,
  .c-achievements__a__organization{
    font-size: calc(16 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
    padding-top: calc(9 / 375 * 100vw);
    line-height: calc(22 / 375 * 100vw);
  }
}
.c-achievements__b__place,
.c-achievements__a__place{
  background-color: var(--color-main2);
  color: var(--color-main);
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 7px 20px;
  text-align: center;
  border-radius: 14px;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 1439px) {
  .c-achievements__b__place,
  .c-achievements__a__place{
    font-size: calc(14 / 1440 * 100vw);
    padding: calc(7 / 1440 * 100vw) calc(20 / 1440 * 100vw);
    border-radius: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-achievements__b__place,
  .c-achievements__a__place{
    font-size: calc(14 / 375 * 100vw);
    padding: calc(7 / 375 * 100vw) calc(20 / 375 * 100vw);
    border-radius: calc(14 / 375 * 100vw);
  }
}
.c-achievements__b__place{
  bottom: 33px;
}
@media screen and (max-width: 1439px) {
.c-achievements__b__place{
  bottom: calc(33 / 1440 * 100vw);
}
}
@media screen and (max-width: 767px) {
.c-achievements__b__place{
  bottom: calc(32 / 375 * 100vw);
}
}
.c-achievements__a__place{
    bottom: 25px;
}
@media screen and (max-width: 1439px) {
  .c-achievements__a__place{
    bottom: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-achievements__a__place{
    bottom: calc(25 / 375 * 100vw);
  }
}
.c-achievements__b__content,
.c-achievements__a__content{
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-achievements__b__content img{
  width: 290px;
  height: 7px;
}
@media screen and (max-width: 1439px) {
  .c-achievements__b__content img{
    width: calc(290 / 1440 * 100vw);
    height: calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-achievements__b__content img{
    width: calc(290 / 375 * 100vw);
    height: calc(7 / 375 * 100vw);
  }
}
.c-achievements__a__content img{
  width: 290px;
}
@media screen and (max-width: 1439px) {
  .c-achievements__a__content img{
    width: calc(290 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-achievements__a__content img{
    width: calc(290 / 375 * 100vw);
  }
}
.c-case__ab__text__name{
  font-size: 13px;
  font-weight: 500;
  padding-top: 30px;
}
@media screen and (max-width: 1439px) {
  .c-case__ab__text__name{
    font-size: calc(13 / 1440 * 100vw);
    padding-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__ab__text__name{
    font-size: calc(13 / 375 * 100vw);
    padding-top: calc(30 / 375 * 100vw);
  }
}
.c-case__ab__textChance__title,
.c-case__ab__textChange__title{
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .c-case__ab__textChance__title,
  .c-case__ab__textChange__title{
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__ab__textChance__title,
  .c-case__ab__textChange__title{
    font-size: calc(14 / 375 * 100vw);
  }
}
.c-case__ab__textChance__title{
  padding-top: 23px;
}
@media screen and (max-width: 1439px) {
  .c-case__ab__textChance__title{
    padding-top: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__ab__textChance__title{
    padding-top: calc(23 / 375 * 100vw);
  }
}

.c-case__ab__textChange__title{
  padding-top: 20px;
}
@media screen and (max-width: 1439px) {
  .c-case__ab__textChange__title{
    padding-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__ab__textChange__title{
    padding-top: calc(20 / 375 * 100vw);
  }
}
.c-case__ab__textChange ul,
.c-case__ab__textChance ul{
  padding-top: 7px;
}
@media screen and (max-width: 1439px) {
  .c-case__ab__textChange ul,
  .c-case__ab__textChance ul{
    padding-top: calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__ab__textChange ul,
  .c-case__ab__textChance ul{
    padding-top: calc(7 / 375 * 100vw);
  }
}
.c-case__ab__textChange ul li,
.c-case__ab__textChance ul li{
  position: relative;
  padding-left: 17px;
  line-height: 25px;
  font-size: 15px;
  letter-spacing: .03em;
}
@media screen and (max-width: 1439px) {
  .c-case__ab__textChange ul li,
  .c-case__ab__textChance ul li{
    padding-left: calc(17 / 1440 * 100vw);
    line-height: calc(25 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__ab__textChange ul li,
  .c-case__ab__textChance ul li{
    padding-left: calc(20 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
    font-size: calc(15 / 375 * 100vw);
  }
}
.c-case__ab__textChange ul li::before,
.c-case__ab__textChance ul li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background-color: var(--color-main);
}
@media screen and (max-width: 1439px) {
  .c-case__ab__textChange ul li::before,
  .c-case__ab__textChance ul li::before{
    top: calc(11 / 1440 * 100vw);
    width: calc(5 / 1440 * 100vw);
    height: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__ab__textChange ul li::before,
  .c-case__ab__textChance ul li::before{
    top: calc(11 / 375 * 100vw);
    width: calc(5 / 375 * 100vw);
    height: calc(5 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__achievementsList {
    display: none;
  }
}
.p-achievements__achievementsList > ul {
  display: flex;
  justify-content: space-between;
}
.p-achievements__achievementsList > ul > li {
  width: 330px;
}
@media screen and (max-width: 1439px) {
  .p-achievements__achievementsList > ul > li {
    width: calc(330 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__achievementsList > ul > li {
    width: calc(330 / 375 * 100vw);
  }
}
.p-achievements__swiper {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-achievements__swiper {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__swiper .c-achievements {
    margin: 0 auto;
    width: calc(330 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__swiper .swiper-button-prev {
    top: 41%;
  }
  .p-achievements__swiper .swiper-button-next {
    top: 41%;
  }
}
.p-achievements__inner__text{
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  padding-top: 61px;
}
@media screen and (max-width: 1439px) {
  .p-achievements__inner__text{
    font-size: calc(35 / 1440 * 100vw);
    line-height: calc(50 / 1440 * 100vw);
    padding-top: calc(61 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__inner__text{
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(38 / 375 * 100vw);
    padding-top: calc(43 / 375 * 100vw);
    letter-spacing: .02em;
  }
}
.p-achievements__inner__text .em{
  color: var(--color-main);
  letter-spacing: .02em;
}
.p-achievements__inner__text .underline{
  border-bottom: 4px solid var(--color-main);
}
@media screen and (max-width: 1439px) {
  .p-achievements__inner__text .underline{
    border-bottom: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievements__inner__text .underline{
    border-bottom: 2px solid var(--color-main);
    letter-spacing: .02em;
  }
}
.p-cta {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 328px;
}
@media screen and (max-width: 1439px) {
  .p-cta {
    height: calc(328 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    background-image: url(../images/cta_bg_sp.jpg);
    height: calc(263 / 375 * 100vw);
  }
}
.p-cta--1 {
  background-image: url(../images/cta_bg1.jpg);
}
@media screen and (max-width: 767px) {
  .p-cta--1 {
    background-image: url(../images/cta_bg1_sp.jpg);
  }
}
.p-cta--2 {
  background-image: url(../images/cta_bg2.jpg);
}
@media screen and (max-width: 767px) {
  .p-cta--2 {
    background-image: url(../images/cta_bg2_sp.jpg);
    height: calc(230 / 375 * 100vw);
  }
}
.p-cta--3 {
  background-image: url(../images/cta_bg3.jpg);
}
@media screen and (max-width: 767px) {
  .p-cta--3 {
    background-image: url(../images/cta_bg3_sp.jpg);
    height: calc(230 / 375 * 100vw);
  }
}
.p-cta--4 {
  background-image: url(../images/cta_bg4.jpg);
}
@media screen and (max-width: 767px) {
  .p-cta--4 {
    background-image: url(../images/cta_bg4_sp.jpg);
    height: calc(230 / 375 * 100vw);
  }
}
.p-cta__buttonBox__button a{
  transform: translateX(4px);
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button a{
    transform: translateX(calc(-4 / 1440 * 100vw));
  }
}
.p-cta__buttonBox__button a p{
  transform: translate(-7px, 0);
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button a p{
    transform: translateX(calc(-7 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button a p{
    transform: translate(calc(-16 / 375 * 100vw), 0);
  }
}
.p-cta--3 .p-cta__inner{
  gap: 26px;
}
@media screen and (max-width: 1439px) {
  .p-cta--3 .p-cta__inner{
    gap: calc(26 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta--3 .p-cta__inner{
    gap: calc(16 / 375 * 100vw);
  }
}
.p-cta .l-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-cta__inner{
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media screen and (max-width: 1439px) {
  .p-cta__inner{
    gap: calc(28 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner{
    gap: calc(20 / 375 * 100vw);
  }
}
.p-cta__title {
  color: var(--color-white);
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 54px;
}
@media screen and (max-width: 1439px) {
  .p-cta__title {
    font-size: calc(30 / 1440 * 100vw);
    line-height: calc(54 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: calc(20 / 375 * 100vw);
    line-height: calc(35 / 375 * 100vw);
  }
}
.p-cta__buttonBox {
  margin-top: 40px;
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox {
    margin-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-cta__buttonBox__button a {
  align-items: center;
  background-color: var(--color-main);
  border-radius: 40px;
  color: var(--color-white);
  display: flex;
  font-size: 21px;
  font-weight: bold;
  height: 58px;
  justify-content: center;
  margin: 0 auto;
  width: 322px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button a {
    border-radius: calc(40 / 1440 * 100vw);
    font-size: calc(21 / 1440 * 100vw);
    height: calc(58 / 1440 * 100vw);
    width: calc(322 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button a {
    border-radius: calc(40 / 375 * 100vw);
    font-size: calc(18 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    width: calc(330 / 375 * 100vw);
  }
}
.p-cta__buttonBox__button a::after{
  background-image: url(../images/button_icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 12px;
  width: 7px;
  margin: auto 0;
  position: absolute;
  right: 30px;
  top: 0;
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button a::after{
    height: calc(12 / 1440 * 100vw);
    width: calc(7 / 1440 * 100vw);
    right: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button a::after{
    height: calc(12 / 375 * 100vw);
    width: calc(7 / 375 * 100vw);
    right: calc(30 / 375 * 100vw);
  }
}
.p-cta__buttonBox__button a span.label {
  background-color: var(--color-white);
  border-radius: 2px;
  color: var(--color-main);
  margin-right: 10px;
  padding: 3px 6px 5px 6px;
  text-align: center;
  font-size: 17px;
  border-radius: 2px;
  display: inline-block;
  transform: translateY(-1px);
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button a span.label {
    border-radius: calc(2 / 1440 * 100vw);
    margin-right: calc(10 / 1440 * 100vw);
    padding: calc(3 / 1440 * 100vw) calc(6 / 1440 * 100vw)
      calc(5 / 1440 * 100vw) calc(6 / 1440 * 100vw);
    font-size: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button a span.label {
    border-radius: calc(2 / 375 * 100vw);
    margin-right: calc(16 / 375 * 100vw);
    padding: calc(3 / 375 * 100vw) calc(6 / 375 * 100vw) calc(5 / 375 * 100vw)
      calc(6 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}
.p-cta__buttonBox__button--mv{
  position: absolute;
  bottom: 65px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button--mv{
    bottom: calc(65 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button--mv{
    bottom: calc(50 / 375 * 100vw);
  }
}
.p-cta__buttonBox__button--mv a{
  transform: translateX(0);
}
.p-cta__buttonBox__button--mv a p{
  transform: translateX(-10px);
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button--mv a p{
    transform: translateX(calc(-10 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button--mv a p{
    transform: translateX(calc(-15 / 375 * 100vw));
  }
}
.p-cta__buttonBox__button--mv a span.label{
  padding: 3px 5px 5px 6px;
  display: inline-block;
  transform: translateY(-1px);
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button--mv a span.label{
    padding: calc(3 / 1440 * 100vw) calc(5 / 1440 * 100vw) calc(5 / 1440 * 100vw) calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button--mv a span.label{
    padding: calc(3 / 375 * 100vw) calc(5 / 375 * 100vw) calc(5 / 375 * 100vw) calc(6 / 375 * 100vw);
    transform: translateX(-3px);
  }
}
.p-member{
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-member {
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-member .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-member__inner {
  padding: 56px 0 70px 0;
}
@media screen and (max-width: 1439px) {
  .p-member__inner {
    padding: calc(56 / 1440 * 100vw) 0 calc(70 / 1440 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-member__inner {
    padding: calc(40 / 375 * 100vw) 0 calc(50 / 375 * 100vw) 0;
  }
}
.p-member__title {
  font-size: 35px;
  font-weight: bold;
  line-height: 54px;
  margin-bottom: 41px;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 1439px) {
  .p-member__title {
    font-size: calc(35 / 1440 * 100vw);
    line-height: calc(54 / 1440 * 100vw);
    margin-bottom: calc(41 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-member__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(40 / 375 * 100vw);
    margin-bottom: calc(22 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-member__memberList {
    display: none;
  }
}
.p-member__memberList > ul {
  display: flex;
  justify-content: space-between;
}
.p-member__memberList > ul > li {
  width: 330px;
}
@media screen and (max-width: 1439px) {
  .p-member__memberList > ul > li {
    width: calc(330 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-member__memberList > ul > li {
    width: calc(330 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-member__swiperPc{
    display: none;
  }
}
.p-member__swiperPc .swiper-container {
  overflow: hidden;
  padding-bottom: 60px;
}
@media screen and (max-width: 1439px) {
  .p-member__swiperPc .swiper-container {
    padding-bottom: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-member__swiperPc .swiper-container {
    padding-bottom: calc(60 / 375 * 100vw);
  }
}
.p-member__swiperPc .swiper-button-next,
.p-member__swiperPc .swiper-button-prev{
  top: 44%;
}
.p-member__swiper__inner{
  position: relative;
}
.p-member__swiper {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-member__swiper {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-member__swiper .c-member {
    margin: 0 auto;
    width: calc(330 / 375 * 100vw);
  }
}

.p-worries {
  position: relative;
  background-color: var(--color-bg);
}
.p-worries::after {
  display: block;
  margin: 0 auto;
  right: 0;
  width: 0;
  content: "";
  position: absolute;
  left: 0;
  bottom: -68px;
  height: 0;
  border-style: solid;
  border-width: 68px 50vw 0 50vw;
  border-color: var(--color-bg) transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .p-worries::after {
    bottom: -33px;
    border-width: 33px 50vw 0 50vw;
  }
}
.p-worries__inner {
  padding-bottom: 50px;
  padding-top: 61px;
}
@media screen and (max-width: 1199px) {
  .p-worries__inner {
    padding-bottom: calc(50 / 1200 * 100vw);
    padding-top: calc(61 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__inner {
    padding-bottom: calc(38 / 375 * 100vw);
    padding-top: calc(42 / 375 * 100vw);
  }
}
.p-worries__titleBox {
  margin-bottom: 62px;
  font-family: 'Noto Serif JP';
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .p-worries__titleBox {
    margin-bottom: calc(62 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__titleBox {
    margin-bottom: calc(28 / 375 * 100vw);
  }
}
.p-worries__titleBox__title {
  font-size: 35px;
  font-weight: bold;
  line-height: 48px;
  text-align: center;
  letter-spacing: 0.03em;
  padding-bottom: 48px;
}
@media screen and (max-width: 1199px) {
  .p-worries__titleBox__title {
    font-size: calc(35 / 1200 * 100vw);
    line-height: calc(48 / 1200 * 100vw);
    padding-bottom: calc(48 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__titleBox__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(38 / 375 * 100vw);
    padding-bottom: calc(63 / 375 * 100vw);
  }
}
.p-worries__titleBox__title .em{
  color: var(--color-main)
}
.p-worries__List > ul{
  display: flex;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 1199px) {
  .p-worries__List > ul{
    gap: calc(25 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__List > ul{
    gap: calc(58 / 375 * 100vw);
    flex-direction: column;
  }
}
.p-worries__List > ul > li{
  position: relative;
}
.p-worries__ListItemNum{
  width: 76px;
  height: 24px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItemNum{
    width: calc(76 / 1200 * 100vw);
    height: calc(24 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItemNum{
    width: calc(76 / 375 * 100vw);
    height: calc(24 / 375 * 100vw);
  }
}
.p-worries__ListItemIllust1 img{
  position: absolute;
  bottom: 30px;
  right: 35px;
  width: 90px;
  height: 100px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItemIllust1 img{
    bottom: calc(30 / 1200 * 100vw);
    right: calc(35 / 1200 * 100vw);
    width: calc(90 / 1200 * 100vw);
    height: calc(100 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItemIllust1 img{
    top: calc(-39 / 375 * 100vw);
    right: calc(19 / 375 * 100vw);
    width: calc(95 / 375 * 100vw);
    height: calc(95 / 375 * 100vw);
  }
}
.p-worries__ListItemIllust2 img{
  position: absolute;
  bottom: 30px;
  right: 35px;
  width: 99px;
  height: 100px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItemIllust2 img{
    bottom: calc(30 / 1200 * 100vw);
    right: calc(35 / 1200 * 100vw);
    width: calc(99 / 1200 * 100vw);
    height: calc(100 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItemIllust2 img{
    top: calc(-39 / 375 * 100vw);
    right: calc(19 / 375 * 100vw);
    width: calc(95 / 375 * 100vw);
    height: calc(95 / 375 * 100vw);
  }
}
.p-worries__ListItem{
  background-color: var(--color-white);
  width: 454px;
  height: 280px;
  padding: 30px 32px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem{
    width: calc(454 / 1200 * 100vw);
    height: calc(280 / 1200 * 100vw);
    padding: calc(30 / 1200 * 100vw) calc(32 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem{
    width: 100%;
    height: calc(235 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) calc(32 / 375 * 100vw);
  }
}
.p-worries__ListItem--2{
  padding: 30px 38px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem--2{
    padding: calc(30 / 1200 * 100vw) calc(38 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem--2{
    padding: calc(20 / 375 * 100vw) calc(31 / 375 * 100vw);
  }
}
.p-worries__ListItem span{
  font-family: 'LXGW Marker Gothic';
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 15px;
  display: inline-block;
  padding: 5px 15px 5px 17px;
  border-radius: 12px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem span{
    font-size: calc(15 / 1200 * 100vw);
    padding: calc(5 / 1200 * 100vw) calc(15 / 1200 * 100vw) calc(5 / 1200 * 100vw) calc(17 / 1200 * 100vw);
    border-radius: calc(12 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem span{
    font-size: calc(15 / 375 * 100vw);
    padding: calc(5 / 375 * 100vw) calc(14 / 375 * 100vw) calc(5 / 375 * 100vw) calc(15 / 375 * 100vw);
    border-radius: calc(12 / 375 * 100vw);
  }
}
.p-worries__ListItem_contents{
  color: var(--color-main);
  font-size: 25px;
  font-weight: bold;
  padding-top: 10px;
  line-height: 34px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem_contents{
    font-size: calc(25 / 1200 * 100vw);
    padding-top: calc(10 / 1200 * 100vw);
    line-height: calc(34 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem_contents{
    font-size: calc(18 / 375 * 100vw);
    padding-top: calc(10 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
  }
}
.p-worries__ListItem ul{
  font-weight: 500;
  font-size: 18px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 94px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem ul{
    font-size: calc(18 / 1200 * 100vw);
    padding-top: calc(18 / 1200 * 100vw);
    height: calc(94 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem ul{
    font-size: calc(16 / 375 * 100vw);
    padding-top: calc(12 / 375 * 100vw);
    height: calc(94 / 375 * 100vw);
  }
}
.p-worries__ListItem ul li{
  position: relative;
  padding-left: 20px;
  line-height: 26px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem ul li{
    padding-left: calc(20 / 1200 * 100vw);
    line-height: calc(26 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem ul li{
    padding-left: calc(16 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
  }
}
.p-worries__ListItem ul li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-main);
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem ul li::before {
    left: calc(2 / 1200 * 100vw);
    width: calc(5 / 1200 * 100vw);
    height: calc(5 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem ul li::before {
    left: 0;
    width: calc(5 / 375 * 100vw);
    height: calc(5 / 375 * 100vw);
  }
}
.p-worries__ListItem ul li + li{
  padding-top: 23px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem ul li + li{
    padding-top: calc(23 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem ul li + li{
    padding-top: calc(10 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem ul li:nth-child(2)::before{
    top: calc(20 / 375 * 100vw);
  }
}

.p-worries__ListItem--2{
  height: 280px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem--2{
    height: calc(280 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem--2{
    height: calc(245 / 375 * 100vw);
  }
}
.p-worries__ListItem--2 ul{
  padding-top: 11px;
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem--2 ul{
    padding-top: calc(11 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem--2 ul{
    padding-top: calc(7 / 375 * 100vw);
  }
}
.p-worries__ListItem--2 ul li + li{
  padding-top: 0;
}
.p-worries__ListItem--2 ul li{
  line-height: 39px
}
@media screen and (max-width: 1199px) {
  .p-worries__ListItem--2 ul li{
    line-height: calc(39 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-worries__ListItem--2 ul li{
    line-height: calc(36 / 375 * 100vw);
  }
}
.p-reason__inner {
  padding-bottom: 35px;
  padding-top: 130px;
}
@media screen and (max-width: 1199px) {
  .p-reason__inner {
    padding-bottom: calc(35 / 1200 * 100vw);
    padding-top: calc(130 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    padding-bottom: calc(18 / 375 * 100vw);
    padding-top: calc(74 / 375 * 100vw);
  }
}
.p-reason__titleBox {
  font-weight: 700;
}
.p-reason__titleBox__title {
  font-size: 35px;
  font-weight: bold;
  line-height: 49px;
  text-align: center;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1199px) {
  .p-reason__titleBox__title {
    font-size: calc(35 / 1200 * 100vw);
    line-height: calc(49 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__titleBox__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(38 / 375 * 100vw);
    padding-bottom: calc(26 / 375 * 100vw);
  }
}
.p-reason__titleBox__title .em{
  color: var(--color-main);
}
.p-reason__reasonList{
  margin-bottom: 35px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList{
    margin-bottom: calc(35 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList{
    margin-bottom: calc(32 / 375 * 100vw);
  }
}
.p-reason__reasonList > ul > li:nth-child(2) .p-reason__reasonList__reasonBox {
  flex-direction: row-reverse;
  padding: 46px 54px 28px 57px;
  gap: 60px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList > ul > li:nth-child(2) .p-reason__reasonList__reasonBox {
    padding: calc(46 / 1440 * 100vw) calc(54 / 1440 * 100vw) calc(28 / 1440 * 100vw) calc(57 / 1440 * 100vw);
    gap: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList > ul > li:nth-child(2) .p-reason__reasonList__reasonBox {
    padding: 0;
    gap: calc(60 / 375 * 100vw);
  }
}
.p-reason__reasonList > ul > li:nth-child(3) .p-reason__reasonList__reasonBox {
  padding: 64px 54px 61px 50px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList > ul > li:nth-child(3) .p-reason__reasonList__reasonBox {
    padding: calc(64 / 1440 * 100vw) calc(54 / 1440 * 100vw) calc(61 / 1440 * 100vw) calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList > ul > li:nth-child(3) .p-reason__reasonList__reasonBox {
    padding: 0;
  }
}
.p-reason__reasonList > ul > li + li {
  margin-top: -7px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList > ul > li + li {
    margin-top: calc(-7 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList > ul > li + li {
    margin-top: calc(-7 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox {
  align-items: center;
  background-color: var(--color-white);
  display: flex;
  gap: 44px;
  padding: 36px 54px 29px 57px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox {
    gap: calc(44 / 1200 * 100vw);
    padding: calc(36 / 1200 * 100vw) calc(54 / 1200 * 100vw) calc(29 / 1200 * 100vw) calc(57 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox {
    display: block;
    padding: 0;
  }
}
.p-reason__reasonList__reasonBox--1{
  flex-direction: row-reverse;
}
.p-reason__reasonList__reasonBox--2{
  padding: 38px 54px 29px 52px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox--2{
    padding: calc(38 / 1200 * 100vw) calc(54 / 1200 * 100vw) calc(29 / 1200 * 100vw) calc(52 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox--2{
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox--2 .p-reason__reasonList__reasonBox__textBox{
    padding: calc(17 / 375 * 100vw) 0 calc(15 / 375 * 100vw) 0;
  }
}
.p-reason__reasonList__reasonBox__thumbnail {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  flex-shrink: 0;
  width: 330px;
  height: 210px;
  transform: translateY(-4px);

}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox__thumbnail {
    width: calc(330 / 1200 * 100vw);
    height: calc(210 / 1200 * 100vw);
    transform: translateY(calc(-4 / 1200 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__thumbnail {
    height: calc(210 / 375 * 100vw);
    width: 100%;
  }
}
.p-reason__reasonList__reasonBox__thumbnail--1{
  background-image: url(../images/reason_thumbnail_1.jpg);
}
.p-reason__reasonList__reasonBox__thumbnail--2{
  background-image: url(../images/reason_thumbnail_2.jpg);
  transform: translate(4px, -4px);
}
.p-reason__reasonList__reasonBox__thumbnail--3{
  background-image: url(../images/reason_thumbnail_3.jpg);
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__thumbnail--2{
    transform: translate(0, 0);
  }
  .p-reason__reasonList__reasonBox__thumbnail--3{
    margin-top: calc(17 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox__textBox__number,
.p-service__serviceList__serviceBox__titleNo{
  width: 19px;
  height: 18px;
}
.p-reason__reasonList__reasonBox__textBox__number2,
.p-reason__reasonList__reasonBox__textBox__number3,
.p-service__serviceList__serviceBox__titleNo2,
.p-service__serviceList__serviceBox__titleNo3{
  width: 25px;
  height: 18px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox__textBox__number,
  .p-service__serviceList__serviceBox__titleNo{
    width: calc(19 / 1200 * 100vw);
    height: calc(18 / 1200 * 100vw);
  }
  .p-reason__reasonList__reasonBox__textBox__number2,
  .p-reason__reasonList__reasonBox__textBox__number3,
  .p-service__serviceList__serviceBox__titleNo2,
  .p-service__serviceList__serviceBox__titleNo3{
    width: calc(25 / 1200 * 100vw);
    height: calc(18 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__number,
  .p-service__serviceList__serviceBox__titleNo{
    width: calc(19 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
  .p-reason__reasonList__reasonBox__textBox__number2,
  .p-reason__reasonList__reasonBox__textBox__number3,
  .p-service__serviceList__serviceBox__titleNo2,
  .p-service__serviceList__serviceBox__titleNo3{
    width: calc(25 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox{
    padding: calc(22 / 375 * 100vw) 0 calc(15 / 375 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList li:nth-child(2) .p-reason__reasonList__reasonBox__textBox,
  .p-reason__reasonList li:nth-child(3) .p-reason__reasonList__reasonBox__textBox{
    padding-top: calc(25 / 375 * 100vw);
    padding-bottom: calc(14 / 375 * 100vw);
  }
}

.p-reason__reasonList__reasonBox__textBox__titlebox{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-top: -9px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox__textBox__titlebox{
    gap: calc(15 / 1200 * 100vw);
    margin-top: calc(-9 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__titlebox{
    flex-direction: row;
    align-items: center;
    gap: calc(15 / 375 * 100vw);
    margin-top: calc(-9 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox--2 .p-reason__reasonList__reasonBox__textBox__titlebox{
  margin-top: -15px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox--2 .p-reason__reasonList__reasonBox__textBox__titlebox{
    margin-top: calc(-15 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox--2 .p-reason__reasonList__reasonBox__textBox__titlebox{
    gap: calc(10 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox--3 .p-reason__reasonList__reasonBox__textBox__titlebox{
  gap: 10px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox--3 .p-reason__reasonList__reasonBox__textBox__titlebox{
    gap: calc(10 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox--3 .p-reason__reasonList__reasonBox__textBox__titlebox{
    gap: calc(30 / 1200 * 100vw);
  }
}

.p-reason__reasonList__reasonBox__textBox__number img{
  width: 33px;
  height: 36px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox__textBox__number img{
    width: calc(33 / 1200 * 100vw);
    height: calc(36 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__number img{
    width: calc(30 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
    transform: translateY(calc(5 / 375 * 100vw));
  }
}
.p-reason__reasonList__reasonBox__textBox__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 38px;
  /* margin: 5px 0 23px 0; */
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox__textBox__title {
    font-size: calc(20 / 1200 * 100vw);
    line-height: calc(38 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__title {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(30 / 375 * 100vw);
  }
}
.p-reason__reasonList__reasonBox__textBox__text {
  font-size: 15px;
  line-height: 27px;
  letter-spacing: .04em;
  padding-top: 7px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonList__reasonBox__textBox__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(27 / 1200 * 100vw);
    padding-top: calc(7 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonList__reasonBox__textBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    letter-spacing: .07em;
    padding-top: calc(7 / 375 * 100vw);
    text-align: justify;
  }
}
.p-reason__reasonList__reasonBox__textBox__text .em{
  color: var(--color-main);
  font-weight: bold;
}
.p-reason__reasonInfo{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfo{
    gap: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfo{
    gap: calc(9 / 375 * 100vw);
    flex-direction: column;
  }
}
.p-reason__reasonInfoBox{
  border: 1px solid var(--color-main);
  width: 460px;
  height: 236px;
  padding: 30px 41px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox{
    width: calc(460 / 1200 * 100vw);
    height: calc(236 / 1200 * 100vw);
    padding: calc(30 / 1200 * 100vw) calc(41 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox{
    width: 100%;
    height: calc(186 / 375 * 100vw);
    padding: calc(23 / 375 * 100vw) calc(20 / 375 * 100vw) calc(21 / 375 * 100vw) calc(21 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox--1{
  padding: 24px 41px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox--1{
    padding: calc(61 / 1200 * 100vw) 0 0 calc(63 / 1200 * 100vw);
  }
}
.p-reason__reasonInfoBox--2{
  padding: 23px 38px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox--2{
    padding: calc(23 / 1200 * 100vw) calc(38 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox--2{
    padding: calc(18 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox--3{
  padding: 24px 40px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox--3{
    padding: calc(24 / 1200 * 100vw) calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox--3{
    padding: calc(19 / 365 * 100vw) calc(19 / 365 * 100vw);
  }
}
.p-reason__reasonInfoBox--4{
  padding: 25px 30px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox--4{
    padding: calc(25 / 1200 * 100vw) calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox--3{
    height: calc(209 / 375 * 100vw);
  }
  .p-reason__reasonInfoBox--4{
    height: calc(211 / 375 * 100vw);
    padding: calc(21 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__Item{
  display: flex;
  flex-direction: row;
  gap: 65px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__Item{
    gap: calc(65 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__Item{
    gap: calc(44 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__title{
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 12px;
  padding: 2px 13px 3px 13px;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__title{
    border-radius: calc(12 / 1200 * 100vw);
    padding: calc(2 / 1200 * 100vw) calc(13 / 1200 * 100vw) calc(3 / 1200 * 100vw) calc(13 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__title{
    border-radius: calc(12 / 375 * 100vw);
    padding: calc(2 / 375 * 100vw) calc(9 / 375 * 100vw) calc(2 / 375 * 100vw) calc(9 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__info{
  font-size: 28px;
  color: var(--color-main);
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__info{
    font-size: calc(28 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__info{
    font-size: calc(28 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__info--1{
  width: 114px;
  height: 151px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__info--1{
    width: calc(114 / 1200 * 100vw);
    height: calc(151 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__info--1{
    width: calc(100 / 375 * 100vw);
    height: calc(114 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__info--2{
  width: 158px;
  height: 124px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__info--2{
    width: calc(158 / 1200 * 100vw);
    height: calc(124 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__info--2{
    width: calc(136 / 375 * 100vw);
    height: calc(92 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__info--2 .p-reason__reasonInfoBox__note2{
    padding-top: 30px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__info--2 .p-reason__reasonInfoBox__note2{
    width: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__info--2 .p-reason__reasonInfoBox__note2{
    width: calc(30 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note2-2{
  padding-top: 24px;
  color: var(--color-main);
  line-height: 9px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note2-2{
    padding-top: calc(24 / 1200 * 100vw);
    line-height: calc(9 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note2-2{
    padding-top: calc(14 / 375 * 100vw);
    line-height: calc(9 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note2-3{
  padding-top: 16px;
  color: var(--color-main);
  line-height: 9px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note2-3{
    padding-top: calc(16 / 1200 * 100vw);
    line-height: calc(9 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note2-3{
    padding-top: calc(14 / 375 * 100vw);
    line-height: calc(9 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__info--3{
  width: 145px;
  height: 151px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__info--3{
    width: calc(145 / 1200 * 100vw);
    height: calc(151 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__info--3{
    width: calc(103 / 375 * 100vw);
    height: calc(114 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__info--4{
  width: 173px;
  height: 89px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__info--4{
    width: calc(173 / 1200 * 100vw);
    height: calc(89 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__info--4{
    width: calc(164 / 375 * 100vw);
    height: calc(68 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__info--5{
  width: 242px;
  height: 88px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__info--5{
    width: calc(242 / 1200 * 100vw);
    height: calc(88 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__info--5{
    width: calc(181 / 375 * 100vw);
    height: calc(66 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note1{
  color: var(--color-main);
  font-weight: bold;
  font-size: 15px;
  padding-top: 20px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note1{
    font-size: calc(15 / 1200 * 100vw);
    padding-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note1{
    font-size: calc(13 / 375 * 100vw);
    padding-top: calc(13 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note2{
  color: var(--color-main);
  font-size: 15px;
  padding-top: 10px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note2{
    font-size: calc(15 / 1200 * 100vw);
    padding-top: calc(10 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note2{
    font-size: calc(13 / 375 * 100vw);
    padding-top: calc(10 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note3{
  font-size: 10px;
  padding-top: 20px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note3{
    font-size: calc(10 / 1200 * 100vw);
    padding-top: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note3{
    font-size: calc(10 / 375 * 100vw);
    padding-top: calc(19 / 375 * 100vw);
    line-height: calc(12 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note3-2{
  font-size: 10px;
  padding-top: 21px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note3-2{
    font-size: calc(10 / 1200 * 100vw);
    padding-top: calc(21 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note3-2{
    font-size: calc(10 / 375 * 100vw);
    padding-top: calc(19 / 375 * 100vw);
    line-height: calc(12 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note3-3{
  font-size: 10px;
  padding-top: 26px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note3-3{
    font-size: calc(10 / 1200 * 100vw);
    padding-top: calc(26 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note3-3{
    font-size: calc(10 / 375 * 100vw);
    padding-top: calc(12 / 375 * 100vw);
    line-height: calc(12 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note4{
  font-size: 12px;
  font-weight: bold;
  padding-top: 19px;
  line-height: 19px;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note4{
    font-size: calc(12 / 1200 * 100vw);
    padding-top: calc(19 / 1200 * 100vw);
    line-height: calc(19 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note4{
    font-size: calc(12 / 375 * 100vw);
    padding-top: calc(8 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
  }
}
.p-reason__reasonInfoBox__note5{
  font-size: 10px;
  padding-top: 15px;
  line-height: 15px;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 1199px) {
  .p-reason__reasonInfoBox__note5{
    font-size: calc(10 / 1200 * 100vw);
    padding-top: calc(15 / 1200 * 100vw);
    line-height: calc(15 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__reasonInfoBox__note5{
    font-size: calc(10 / 375 * 100vw);
    padding-top: calc(11 / 375 * 100vw);
    line-height: calc(14 / 375 * 100vw);
  }
}
.p-reason__illust1{
  width: 87px;
  height: 100px;
  position: absolute;
  bottom: 27px;
  right: 30px;
}
@media screen and (max-width: 1199px) {
  .p-reason__illust1{
    width: calc(87 / 1200 * 100vw);
    height: calc(100 / 1200 * 100vw);
    bottom: calc(27 / 1200 * 100vw);
    right: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__illust1{
    width: calc(61 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
    bottom: calc(20 / 375 * 100vw);
    right: calc(19 / 375 * 100vw);
  }
}
.p-reason__illust2{
  width: 77px;
  height: 77px;
  position: absolute;
  bottom: 23px;
  right: 32px;
}
@media screen and (max-width: 1199px) {
  .p-reason__illust2{
    width: calc(77 / 1200 * 100vw);
    height: calc(77 / 1200 * 100vw);
    bottom: calc(23 / 1200 * 100vw);
    right: calc(32 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__illust2{
    width: calc(50 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
    bottom: calc(20 / 375 * 100vw);
    right: calc(19 / 375 * 100vw)
  }
}
.p-reason__illust3{
  width: 87px;
  height: 100px;
  position: absolute;
  bottom: 28px;
  right: 29px;
}
@media screen and (max-width: 1199px) {
  .p-reason__illust3{
    width: calc(87 / 1200 * 100vw);
    height: calc(100 / 1200 * 100vw);
    bottom: calc(28 / 1200 * 100vw);
    right: calc(29 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__illust3{
    width: calc(61 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
    bottom: calc(17 / 375 * 100vw);
    right: calc(18 / 375 * 100vw);
  }
}
.p-reason__illust4{
  width: 112px;
  height: 100px;
  position: absolute;
  bottom: 28px;
  right: 25px;
}
@media screen and (max-width: 1199px) {
  .p-reason__illust4{
    width: calc(112 / 1200 * 100vw);
    height: calc(100 / 1200 * 100vw);
    bottom: calc(28 / 1200 * 100vw);
    right: calc(25 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__illust4{
    width: calc(78 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
    bottom: calc(19 / 375 * 100vw);
    right: calc(18 / 375 * 100vw);
  }
}
.p-service {
  position: relative;
}
.p-service::before {
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.22;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.p-service .l-container {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service .l-container {
    padding-left: calc(22 / 375 * 100vw);
    padding-right: calc(22 / 375 * 100vw);
  }
}
.p-service__inner {
  padding-bottom: 22px;
  padding-top: 56px;
}
@media screen and (max-width: 1439px) {
  .p-service__inner {
    padding-bottom: calc(22 / 1440 * 100vw);
    padding-top: calc(56 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__inner {
    padding-bottom: calc(21 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-service__title {
  font-size: 35px;
  font-weight: bold;
  line-height: 62px;
  margin-bottom: 37px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-service__title {
    font-size: calc(35 / 1440 * 100vw);
    line-height: calc(62 / 1440 * 100vw);
    margin-bottom: calc(37 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(40 / 375 * 100vw);
    margin-bottom: calc(25 / 375 * 100vw);
  }
}
.p-service__title span.em {
  color: var(--color-accent);
  font-size: 130%;
}
.p-service__serviceList__serviceBox__titleNo{
  margin-right: 15px;
}
.p-service__serviceList__serviceBox__titleNo2,
.p-service__serviceList__serviceBox__titleNo3{
  margin-right: 9px;
}
@media screen and (max-width: 1439px) {
  .p-service__serviceList__serviceBox__titleNo{
    margin-right: calc(15 / 1440 * 100vw);
  }
  .p-service__serviceList__serviceBox__titleNo2,
  .p-service__serviceList__serviceBox__titleNo3{
    margin-right: calc(9 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__serviceList__serviceBox__titleNo{
    margin-right: calc(15 / 375 * 100vw);
  }
  .p-service__serviceList__serviceBox__titleNo2,
  .p-service__serviceList__serviceBox__titleNo3{
    margin-right: calc(9 / 375 * 100vw);
  }
}
.p-service__serviceList ul li:not(:first-child) .p-service__serviceList__serviceBox__title{
  margin-top: 5px;
}
@media screen and (max-width: 1439px) {
  .p-service__serviceList ul li:not(:first-child) .p-service__serviceList__serviceBox__title{
    margin-top: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__serviceList ul li:not(:first-child) .p-service__serviceList__serviceBox__title{
    margin-top: calc(5 / 375 * 100vw);
  }
}
.p-service__serviceList__serviceBox__illust img{
  width: 110px;
}
@media screen and (max-width: 1439px) {
  .p-service__serviceList__serviceBox__illust img{
    width: calc(110 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__serviceList__serviceBox__illust img{
    width: calc(110 / 375 * 100vw);
  }
}
.p-service__serviceList__serviceBox {
  position: relative;
}
.p-service__serviceList__serviceBox__inner{
  display: flex;
  justify-content: center;
  gap: 49px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1439px) {
  .p-service__serviceList__serviceBox__inner{
    gap: calc(49 / 1440 * 100vw);
    padding-bottom: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__serviceList__serviceBox__inner{
    gap: calc(12 / 375 * 100vw);
    padding-bottom: calc(24 / 375 * 100vw);
    flex-direction: column;
    align-items: center;
  }
}
.p-service__serviceList__serviceBox__content{
  width: 577px;
  font-size: 15px;
}
@media screen and (max-width: 1439px) {
  .p-service__serviceList__serviceBox__content{
    width: calc(577 / 1440 * 100vw);
    font-size: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__serviceList__serviceBox__content{
    width: 100%;
    font-size: calc(15 / 375 * 100vw);
  }
}
.p-service__serviceList__serviceBox__icon {
  width: 100%;
}
.p-service__serviceList__serviceBox__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-service__serviceList__serviceBox__icon {
    width: calc(160 / 375 * 100vw);
  }
}
.p-service__serviceList__serviceBox__title {
  color: var(--color-black);
  font-size: 20px;
  line-height: 37px;
  margin-top: 10px;
  margin-left: -8px;
  bottom: 14px;
  white-space: nowrap;
  font-weight: bold;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1439px) {
  .p-service__serviceList__serviceBox__title {
    font-size: calc(20 / 1440 * 100vw);
    line-height: calc(37 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
    margin-left: calc(-8 / 1440 * 100vw);
    bottom: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__serviceList__serviceBox__title {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(21 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
    margin-left: 0;
    bottom: calc(12 / 375 * 100vw);
  }
}
.p-service__serviceList__serviceBox__text{
  line-height: 29px;
  margin-left: -8px;
  padding-top: 4px;
  white-space: nowrap;
}
@media screen and (max-width: 1439px) {
  .p-service__serviceList__serviceBox__text{
    line-height: calc(29 / 1440 * 100vw);
    margin-left: calc(-8 / 1440 * 100vw);
    padding-top: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-service__serviceList__serviceBox__text{
    line-height: calc(28 / 375 * 100vw);
    margin-left: 0;
    padding-top: calc(13 / 375 * 100vw);
    white-space: wrap;
  }
  .p-service__serviceList__serviceBox--2 img{
    width: calc(121 / 375 * 100vw);
  }
  .p-service__serviceList__serviceBox--2 img.p-service__serviceList__serviceBox__titleNo2{
    width: calc(25 / 375 * 100vw);
  }
  .p-service__serviceList__serviceBox--2 .p-service__serviceList__serviceBox__inner{
    gap: calc(15 / 375 * 100vw);
  }
  .p-service__serviceList__serviceBox--3 img{
    width: calc(120 / 375 * 100vw);
  }
  .p-service__serviceList__serviceBox--3 img.p-service__serviceList__serviceBox__titleNo3{
    width: calc(25 / 375 * 100vw);
  }
  .p-service__serviceList__serviceBox--3 .p-service__serviceList__serviceBox__inner{
    gap: calc(16 / 375 * 100vw);
  }
}
.p-faq {
  background-color: var(--color-bg);
}
.p-faq__inner {
  padding-bottom: 70px;
  padding-top: 69px;
}
@media screen and (max-width: 1439px) {
  .p-faq__inner {
    padding-bottom: calc(70 / 1440 * 100vw);
    padding-top: calc(69 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-faq__title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-faq__title {
    font-size: calc(35 / 1440 * 100vw);
    margin-bottom: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: calc(25 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-faq__faqList {
  margin: 0 auto;
  width: 772px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList {
    width: calc(772 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList {
    width: 100%;
  }
}
.p-faq__faqList > ul > li + li {
  margin-top: 30px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList > ul > li + li {
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList > ul > li + li {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox {
  background-color: var(--color-white);
}
.p-faq__faqList__faqBox__qBox {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  background-color: var(--color-main2);
  cursor: pointer;
  position: relative;
  transition: 0.3s;
  user-select: none;
}
.p-faq__faqList__faqBox__qBox::after {
  background-image: url(../images/icon_plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 8px;
  margin: auto 0;
  position: absolute;
  right: 29px;
  top: 5px;
  width: 13px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox::after {
    height: calc(8 / 1440 * 100vw);
    right: calc(29 / 1440 * 100vw);
    top: calc(5 / 1440 * 100vw);
    width: calc(13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox::after {
    height: calc(6 / 375 * 100vw);
    right: calc(15 / 375 * 100vw);
    top: calc(5 / 375 * 100vw);
    width: calc(10 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__inner {
  align-items: center;
  display: flex;
  padding: 23px 60px 20px 33px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__inner {
    padding: calc(23 / 1440 * 100vw) calc(60 / 1440 * 100vw)
      calc(20 / 1440 * 100vw) calc(33 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__inner {
    padding: calc(20 / 375 * 100vw) calc(33 / 375 * 100vw) calc(16 / 375 * 100vw) calc(16 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__inner img{
  width: 19px;
  height: 27px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__inner img{
    width: calc(19 / 1440 * 100vw);
    height: calc(27 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__inner img{
    width: calc(13 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__inner p{
  font-family: 'LXGW Marker Gothic';
  font-size: 32px;
  color: var(--color-main);
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__inner p{
    font-size: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__inner p{
    font-size: calc(22 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__icon {
  flex-shrink: 0;
  margin-right: 20px;
  width: 43px;
}
.p-faq__faqList__faqBox__qBox__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__icon {
    margin-right: calc(20 / 1440 * 100vw);
    width: calc(43 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__icon {
    margin-right: calc(10 / 375 * 100vw);
    width: calc(35 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__text {
  font-size: 21px;
  font-weight: bold;
  line-height: 35px;
  padding-left: 26px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: calc(21 / 1440 * 100vw);
    line-height: calc(35 / 1440 * 100vw);
    padding-left: calc(26 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
    padding-left: calc(11 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox {
  display: none;
}
.p-faq__faqList__faqBox__aBox__inner {
  padding: 0 35px 24px 82px;
  background-color: var(--color-main2);
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__aBox__inner {
    padding: 0 calc(35 / 1440 * 100vw) calc(24 / 1440 * 100vw) calc(82 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox__inner {
    padding: 0 calc(25 / 375 * 100vw) calc(13 / 375 * 100vw) calc(43 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox__icon {
  display: none;
}
.p-faq__faqList__faqBox__aBox__text {
  font-size: 15px;
  line-height: 28px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: calc(15 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox.is-open .p-faq__faqList__faqBox__qBox::after {
  transform: rotate(180deg);
}
