@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #333333;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

img {
  width: 100%;
  height: auto;
}

/*==========================================================================
# 共通要素 section関係
========================================================================== */
section {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  section {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}

.c-section__title {
  font-size: 80px;
  font-family: "Futura";
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}

@media (max-width: 767px) {
  .c-section__title {
    font-size: 40px;
  }
}

.c-section__title-sub {
  font-size: 20px;
  display: block;
  color: #333333;
}

@media (max-width: 767px) {
  .c-section__title-sub {
    font-size: 12px;
  }
}

.c-section__title-sub-project {
  margin-top: 20px;
}

/*==========================================================================
# 共通要素 inner関係
========================================================================== */
.l-inner {
  max-width: 1360px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-inner {
    padding: 0 10px;
  }
}

/*==========================================================================
# 共通要素 sp関係
========================================================================== */
@media (max-width: 767px) {
  .is-sp-none {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-pc-none {
    display: none !important;
  }
}

/*==========================================================================
# ヘッダー
========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}

.p-header {
  background: #fff;
  height: 5.625rem;
}
@media screen and (max-width: 1023px) {
  .p-header {
    height: 4rem;
  }
}
.p-header.is-color {
  background: rgba(255, 255, 255, 0.65);
}

.p-header__inner {
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-header__inner {
    padding: 0 2.5rem;
  }
}

@media (max-width: 767px) {
  .p-header__inner {
    padding: 0 0.625rem;
    height: 3.75rem;
  }
}

.p-header__logo {
  width: 100%;
  max-width: 30rem;
  height: inherit;
  z-index: 999;
}
@media screen and (max-width: 1023px) {
  .p-header__logo {
    max-width: 18.75rem;
  }
}

@media (max-width: 767px) {
  .p-header__logo {
    max-width: 215px;
  }
}

.p-header__logo a {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-header__logo img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-header__nav {
  height: inherit;
}

@media screen and (max-width: 1023px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
  justify-content: center;
  align-items: center;
}

.p-header__nav-item {
  position: relative;
}

.p-header__nav-item:nth-of-type(2) {
  margin-left: 24px;
}

.p-header__nav-item a {
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
  border-radius: 40px;
  width: 13.25rem;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 21px 0;
}

.p-header__nav-item span {
  padding-right: 3rem;
  position: relative;
}

.p-header__nav-item span::after {
  background-image: url(../image/header_info-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 28px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s background-color;
  width: 28px;
}

.p-header__hamburger {
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  transition: 0.3s;
  width: 2.5rem;
  z-index: 999;
}

@media screen and (min-width: 1024px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  background-color: #333;
  display: block;
  height: 1px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  background: #f8f8f8;
  bottom: 0;
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  padding: 5rem 0;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: 900;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item.p-header__drawer-item--contact {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 1.875rem;
}

.p-header__drawer-item a {
  color: #333;
  display: block;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0.9375rem;
  text-transform: capitalize;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .p-header__drawer-item a::before {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    content: ">";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
  }
}

.p-header__drawer-item.p-header__drawer-item--seminar {
  margin-top: 1.875rem;
}

.p-header__drawer-item.p-header__drawer-item--contact a,
.p-header__drawer-item.p-header__drawer-item--seminar a {
  color: #fff;
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
  border-radius: 40px;
  width: 100%;
  max-width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .p-header__drawer-item.p-header__drawer-item--contact a::before,
  .p-header__drawer-item.p-header__drawer-item--seminar a::before {
    background-image: url(../image/header_info-arrow.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 28px;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s background-color;
    width: 28px;
  }
}

/*==========================================================================
# mv
========================================================================== */
.p-main-visual {
  background: url("../image/mv-top.png") no-repeat center center / cover;
  width: 100%;
  height: 100%;
  padding-top: 5.625rem;
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  .p-main-visual {
    padding-top: 3.75rem;
    padding-bottom: 52px;
  }
}

.p-main-visual__inner {
  max-width: 1400px;
  justify-content: center;
  display: flex;
}

.p-main-visual__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 50px;
}

@media (max-width: 1200px) {
  .p-main-visual__content {
    padding-top: 10px;
  }
}

.p-main-visual__left {
  max-width: 366px;
  width: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-main-visual__left {
    max-width: 25vw;
  }
}

.p-main-visual__right {
  width: calc(100% - 18vw);
  margin-left: 30px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-main-visual__right {
    width: calc(100% - 210px);
  }
}

@media (max-width: 767px) {
  .p-main-visual__right {
    width: 100%;
    margin-left: 0;
  }
}

.p-main-visual__logo {
  width: 53vw;
  max-width: 100%;
}

@media (max-width: 1500px) and (min-width: 768px) {
  .p-main-visual__logo {
    width: 100%;
    max-width: 860px;
  }
}

.p-main-visual__logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .p-main-visual__logo {
    margin: 0 auto;
    max-width: 335px;
    width: auto;
  }
}

.p-main-visual__concept {
  margin-top: 32px;
}

@media (max-width: 1200px) {
  .p-main-visual__concept {
    margin-top: 0;
  }
}

.p-main-visual__concept-top {
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-main-visual__concept-top {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .p-main-visual__concept-top {
    position: relative;
    justify-content: center;
  }
}

.p-main-visual__concept-top img {
  max-width: 300px;
  width: 17.67676767676768vw;
  margin-left: 20px;
}

@media (max-width: 767px) {
  .p-main-visual__concept-top img {
    width: 26vw;
  }
}

.p-main-visual__concept-text1 {
  font-weight: 700;
  font-size: min(3.888888888888889vw, 71px);
  letter-spacing: 0.01em;
  transform: matrix(1, 0, -0.14, 0.99, 0, 0);
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-main-visual__concept-text1 {
    font-size: 5.5vw;
  }
}

@media (max-width: 767px) {
  .p-main-visual__concept-text1 {
    font-size: 8.6vw;
  }
}

.p-main-visual__concept-text2 {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: min(3.1313131313131315vw, 62px);
  letter-spacing: 0.01em;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-main-visual__concept-text2 {
    justify-content: center;
    font-size: 5.1vw;
  }
}

@media (max-width: 767px) {
  .p-main-visual__concept-text2 {
    font-size: 5.59vw;
    justify-content: center;
  }
}

.p-main-visual__concept-main {
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
}

.p-main-visual__concept-min {
  font-size: min(2.525252525252525vw, 50px);
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-main-visual__concept-min {
    font-size: 4.1vw;
  }
}

@media (max-width: 767px) {
  .p-main-visual__concept-min {
    font-size: 4.2vw;
  }
}

.p-main-visual__concept-strong {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: min(7.2vw, 72px);
  letter-spacing: 0.01em;
  color: #ffffff;
  transform: matrix(1, 0, -0.14, 0.99, 0, 0);
  padding: 0 5px;
  background: #333333;
  max-width: max-content;
  width: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-main-visual__concept-strong {
    font-size: 6.6vw;
  }
}

.p-main-visual__concept-text2-txt {
  margin-left: 15px;
}

.p-main-visual__list {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 35px;
}

.p-main-visual__listtab {
  display: block;
  margin-left: 19px;
  width: min(104px, 100%);
}

.p-main-visual__item {
  width: min(200px, 100%);
  max-width: 200px;
  max-height: 204px;
  aspect-ratio: 200/204;
  position: relative;
}

.p-main-visual__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../image/mv-top-item-img.png") no-repeat center center / cover;
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .p-main-visual__item {
    width: min(71px, 100%);
    max-width: 71px;
    max-height: 72px;
  }
}

.p-main-visual__item:nth-child(n + 2) {
  margin-left: 20px;
}

.p-main-visual__item-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.p-main-visual__item-text {
  font-size: min(1.3125vw, 21px);
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1200px) {
  .p-main-visual__item-text {
    font-size: min(1.75vw, 18px);
  }
}

@media (max-width: 767px) {
  .p-main-visual__item-text {
    font-size: min(2.73vw, 14px);
  }
}

.p-main-visual__item-text3 {
  font-size: min(1.25vw, 20px);
  display: block;
}

.p-main-visual__item-text4 {
  font-size: min(1.25vw, 20px);
  display: block;
}

@media (max-width: 1200px) {
  .p-main-visual__item-text3 {
    font-size: min(1.67vw, 18px);
  }

  .p-main-visual__item-text4 {
    font-size: min(1.67vw, 18px);
  }
}

@media (max-width: 767px) {
  .p-main-visual__item-text3 {
    font-size: min(2.6vw, 12px);
  }

  .p-main-visual__item-text4 {
    font-size: min(2.6vw, 12px);
  }
}

.p-main-visual__item-strong {
  font-family: "Futura";
  font-weight: 500;
  font-size: min(4.5vw, 72px);
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #396be9;
  display: block;
}

@media (max-width: 1200px) {
  .p-main-visual__item-strong {
    font-size: min(6vw, 48px);
  }
}

@media (max-width: 767px) {
  .p-main-visual__item-strong {
    font-size: min(9.37vw, 32px);
  }
}

.p-main-visual__item-strong2 {
  font-size: min(4.19vw, 67px);
}

.p-main-visual__item-strong3 {
  font-size: min(2.44vw, 39px);
  font-weight: bold;
  font-family: "Noto Sans JP";
}

.p-main-visual__item-strong4 {
  font-size: min(2vw, 32px);
  font-weight: bold;
  font-family: "Noto Sans JP";
}

@media (max-width: 1200px) {
  .p-main-visual__item-strong2 {
    font-size: min(5.58vw, 45px);
  }

  .p-main-visual__item-strong3 {
    font-size: min(3.25vw, 32px);
  }

  .p-main-visual__item-strong4 {
    font-size: min(2.67vw, 28px);
  }
}

@media (max-width: 767px) {
  .p-main-visual__item-strong2 {
    font-size: min(8.73vw, 31px);
  }

  .p-main-visual__item-strong3 {
    font-size: min(5.08vw, 18px);
  }

  .p-main-visual__item-strong4 {
    font-size: min(4.17vw, 16px);
  }
}

.p-main-visual__item-min {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: min(1.125vw, 18px);
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #333333;
  display: block;
}

@media (max-width: 1200px) {
  .p-main-visual__item-min {
    font-size: min(1.5vw, 16px);
  }
}

@media (max-width: 767px) {
  .p-main-visual__item-min {
    font-size: min(2.34vw, 12px);
  }
}

.p-main-visual__content1 {
  display: none;
}

@media (max-width: 767px) {
  .p-main-visual__content1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-main-visual__content1-img {
    max-width: 212px;
  }
}

@media (max-width: 767px) {
  .p-main-visual__content1-img {
    max-width: 212px;
    width: 56.53333333333334vw;
    height: auto;
  }
}

@media (max-width: 767px) {
  .p-main-visual__itemtab {
    width: min(104px, 100%);
    max-width: 104px;
    max-height: 106px;
    aspect-ratio: 104 / 106;
    position: relative;
  }

  .p-main-visual__itemtab:nth-child(n + 2) {
    margin-left: 0;
  }
}

/*==========================================================================
# Service
========================================================================== */
.p-service__catch {
  font-weight: 800;
  font-size: 29px;
  line-height: 1.6;
  text-align: center;
  margin-top: 60px;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .p-service__catch {
    margin-top: 20px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .p-service-inner {
    padding: 0 27px;
  }
}

.p-service-inner {
  padding: 0 27px;
}

.p-service__catch-text {
  position: relative;
}

.p-service__catch-text::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -5px;
  left: 0;
  border-bottom: 12px solid rgba(57, 107, 233, 0.7);
}

@media (max-width: 767px) {
  .p-service__catch-text::after {
    border-bottom: 8px solid rgba(57, 107, 233, 0.7);
  }
}

.p-service__catch-strong {
  font-size: 41px;
  position: relative;
}

@media (max-width: 767px) {
  .p-service__catch-strong {
    font-size: 24px;
  }
}

.p-service__catch-strong::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 12px solid rgba(57, 107, 233, 0.7);
}

@media (max-width: 767px) {
  .p-service__catch-strong::after {
    border-bottom: 8px solid rgba(57, 107, 233, 0.7);
  }
}

.p-service__list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__list {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .p-service__list {
    display: block;
    margin-top: 20px;
  }
}

.p-service__item {
  width: 33.3333%;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.14);
  border-radius: 0 0 16px 16px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .p-service__item {
    width: 100%;
  }
  .p-service__item:nth-child(n + 2) {
    margin-top: 16px;
  }
}

.p-service__item-title {
  color: #fff;
  font-weight: 800;
  font-size: min(2.0202020202020203vw, 40px);
  letter-spacing: 0.05em;
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
  text-align: center;
  padding: 10px 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 0 0;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item-title {
    font-weight: 700;
    font-size: 3.3333333333333335vw;
  }
}

@media (max-width: 767px) {
  .p-service__item-title {
    font-weight: 700;
    font-size: 20px;
    height: 40px;
  }
}

.p-service__item-title3 {
  font-size: min(1.7171717171717171vw, 34px);
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item-title3 {
    font-size: 2.833333333333333vw;
  }
}

@media (max-width: 767px) {
  .p-service__item-title3 {
    font-size: 20px;
  }
}

.p-service__item-body {
  background-color: #fff;
  text-align: center;
  padding: 36px 0;
}

@media (max-width: 767px) {
  .p-service__item-body {
    padding: 20px 0;
  }
}

.p-service__item-body2 {
  position: relative;
}

.p-service__item-body2::after {
  content: "";
  position: absolute;
  right: -15px;
  bottom: 30%;
  background: url("../image/service-math.png") no-repeat center center / cover;
  width: 114px;
  height: 114px;
}

@media (max-width: 767px) {
  .p-service__item-body2::after {
    right: -15px;
    bottom: 30%;
    width: 80px;
    height: 80px;
  }
}

.p-service__item-body img {
  max-width: 240px;
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .p-service__item-body img {
    max-width: 160px;
    margin-bottom: 20px;
  }
}

.p-service__item-body-text {
  letter-spacing: 0.01em;
  line-height: 1.3;
  font-weight: 600;
  font-size: 25px;
  margin-top: 36px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item-body-text {
    font-size: 2.166666666666667vw;
  }
}

@media (max-width: 767px) {
  .p-service__item-body-text {
    font-size: 16px;
    margin-top: 0;
  }
}

.p-service__item-body-text2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}

@media (max-width: 767px) {
  .p-service__item-body-text2 {
    margin-top: 0;
  }
}

.p-service__item-body-text2-left {
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item-body-text2-left {
    font-size: 1.9166666666666665vw;
  }
}

@media (max-width: 767px) {
  .p-service__item-body-text2-left {
    font-size: 14px;
  }
}

.p-service__item-body-text2-left-bottom {
  font-family: "Futura";
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -0.05em;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item-body-text2-left-bottom {
    font-size: 2.833333333333333vw;
  }
}

@media (max-width: 767px) {
  .p-service__item-body-text2-left-bottom {
    font-size: 25px;
  }
}

.p-service__item-body-text2-center {
  margin-left: 5px;
  margin-right: 5px;
  max-width: 24px;
  width: 100%;
  font-weight: 500;
}

.p-service__item-body-text2-right-strong {
  font-family: "Futura";
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  letter-spacing: -0.05em;
  color: #333333;
  line-height: 1.1;
  position: relative;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item-body-text2-right-strong {
    font-size: 4.166666666666666vw;
  }
}

@media (max-width: 767px) {
  .p-service__item-body-text2-right-strong {
    font-size: 41px;
  }
}

.p-service__item-body-text2-right-strong::after {
  content: "";
  position: absolute;
  width: 105%;
  bottom: 0;
  left: 0;
  border-bottom: 16px solid rgba(57, 107, 233, 0.7);
}

@media (max-width: 767px) {
  .p-service__item-body-text2-right-strong::after {
    border-bottom: 8px solid rgba(57, 107, 233, 0.7);
  }
}

.p-service__item-body-text3-top {
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.01em;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item-body-text3-top {
    font-size: 1.5vw;
  }
}

@media (max-width: 767px) {
  .p-service__item-body-text3-top {
    font-size: 12px;
  }
}

.p-service__item-body-text3-strong {
  font-size: 33px;
  position: relative;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__item-body-text3-strong {
    font-size: 2.75vw;
  }
}

@media (max-width: 767px) {
  .p-service__item-body-text3-strong {
    font-size: 24px;
  }
}

.p-service__item-body-text3-strong::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: -5px;
  left: 0;
  border-bottom: 16px solid rgba(57, 107, 233, 0.7);
}

@media (max-width: 767px) {
  .p-service__item-body-text3-strong::after {
    border-bottom: 8px solid rgba(57, 107, 233, 0.7);
  }
}

.p-service__company {
  background-color: #f9f9f9;
}

@media (max-width: 767px) {
  .p-service__company {
    padding-top: 40px;
  }
}

.p-service__company-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .p-service__company-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
  }
}

.p-service__company-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 67px;
}

@media (max-width: 1200px) {
  .p-service__company-list {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
}

.p-service__company-item {
  flex: 0 0 24%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__company-item {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .p-service__company-item {
    flex: 0 0 45%;
  }
}

.p-service__company-item1 {
  max-width: 231px;
  width: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__company-item1 {
    max-width: 45%;
    width: 100%;
  }
  .p-service__company-item1:nth-child(2) {
    margin-left: 16px;
  }
}

@media (max-width: 767px) {
  .p-service__company-item1 {
    width: 132px;
    max-width: 100%;
  }
  .p-service__company-item1:nth-child(2) {
    margin-left: 16px;
  }
}

.p-service__company-item2 {
  max-width: 275px;
  width: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__company-item2 {
    max-width: 45%;
  }
}

@media (max-width: 767px) {
  .p-service__company-item2 {
    width: 157px;
    max-width: 100%;
  }
}

.p-service__company-item3 {
  max-width: 242px;
  width: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-service__company-item3 {
    max-width: 45%;
  }
}

@media (max-width: 767px) {
  .p-service__company-item3 {
    width: 157px;
    max-width: 100%;
    margin-left: 16px;
  }
}

/*==========================================================================
# Project
========================================================================== */
.p-project {
  background: url("../image/project-bg-img.png") no-repeat center center / cover;
}

@media (max-width: 767px) {
  .p-project {
    padding-top: 40px;
  }
}

.p-project-inner {
  padding: 0 7.5px;
}

.p-project__item {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-project__item:nth-child(2) {
  flex-direction: row-reverse;
}

.p-project__item-box {
  background: url("../image/project-item-bg.png") no-repeat center center / cover;
  max-width: 954px;
  height: 310px;
  width: 100%;
  padding: 55px 124px;
  position: relative;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-project__item-box {
    max-width: 79.5vw;
    height: 25vw;
    padding: 3vw 8vw;
  }
}

@media (max-width: 767px) {
  .p-project__item-box {
    max-width: 79vw;
    height: auto;
    background: url("../image/project-item-bg-sp.png") no-repeat center center / cover;
    padding: 8.5vw 8.5vw 9.8vw 12vw;
  }
}

.p-project__item-box-number {
  position: absolute;
  right: 5%;
  top: -60px;
  font-family: "Futura";
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  letter-spacing: 0.01em;
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.p-project__item-box-number2 {
  left: 5%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-project__item-box-number {
    font-size: 8.333333333333332vw;
    top: -20%;
  }
}

@media (max-width: 767px) {
  .p-project__item-box-number {
    font-size: 16vw;
    top: -10vw;
    right: 0;
  }
}

.p-project__item-box2 {
  left: 0;
}

.p-project__item-box-title {
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
  display: flex;
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-project__item-box-title {
    padding-bottom: 1.6666666666666667vw;
  }
}

@media (max-width: 767px) {
  .p-project__item-box-title {
    max-width: 55vw;
    padding-bottom: 8px;
    justify-content: center;
  }
}

.p-project__item-box-title-strong {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  color: #fff;
  height: 68px;
  background: #333333;
  transform: matrix(1, 0, -0.19, 0.98, 0, 0);
  font-weight: 900;
  font-size: 42px;
  letter-spacing: 0.01em;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-project__item-box-title-strong {
    height: 5.666666666666666vw;
    font-size: 3.5vw;
  }
}

@media (max-width: 767px) {
  .p-project__item-box-title-strong {
    height: 9.066666666666666vw;
    font-size: 18px;
    padding: 4px;
    max-width: 88vw;
  }
  .p-project__item-box-title-strong:nth-child(2) {
    max-width: 90vw;
  }
}

@media (max-width: 767px) {
  .p-project__item-box-title-strong2 {
    font-size: 15.5px;
  }
}

.p-project__item-box-title-mark {
  font-weight: 900;
  font-size: 44.8638px;
  letter-spacing: 0.01em;
  transform: matrix(1, 0, -0.19, 0.98, 0, 0);
  margin-left: 4px;
  margin-right: 4px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-project__item-box-title-mark {
    font-size: 3.73865vw;
  }
}

@media (max-width: 767px) {
  .p-project__item-box-title-mark {
    font-size: 24px;
    margin-left: 2px;
    margin-right: 2px;
  }
}

.p-project__item-box-txt {
  margin-top: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-project__item-box-txt {
    font-size: 1.5vw;
    margin-top: 1.6666666666666667vw;
  }
}

@media (max-width: 767px) {
  .p-project__item-box-txt {
    font-size: 3.2vw;
    margin-top: 8px;
  }
}

.p-project__item-box-txt-strong {
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-project__item img {
  max-width: 250px;
  width: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-project__item img {
    max-width: 20.833333333333336vw;
  }
}

@media (max-width: 767px) {
  .p-project__item img {
    max-width: 21vw;
  }
}

/*==========================================================================
# Worry
========================================================================== */
.p-worry {
  padding-top: 40px;
  padding-bottom: 0;
}

.p-worry__title {
  max-width: 615px;
  width: 100%;
  background: #333333;
  color: #fff;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.04em;
  padding: 10px 0;
  margin: 0 auto;
  text-align: center;
  position: relative;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .p-worry__title {
    font-size: 24px;
  }
}

.p-worry__title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 24px 26px;
  border-top-color: currentColor;
  border-bottom: 0;
}

.p-worry__list {
  display: flex;
  justify-content: center;
  gap: 67px;
  margin-top: 30px;
  position: relative;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-worry__list {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .p-worry__list {
    height: 350px;
  }
}

.p-worry__item {
  box-sizing: border-box;
  padding: 39px 50px;
  gap: 10px;
  width: 291.39px;
  height: 291.39px;
  border: 9px solid #eaeaea;
  border-radius: 160px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-worry__item {
    width: 168px;
    height: 168px;
    padding: 18px 7px;
  }
}

.p-worry__item1 {
  margin-top: 73px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-worry__item1 {
    position: absolute;
    left: 6.5%;
    top: 250px;
    margin-top: 0;
  }
}

@media (max-width: 767px) and (min-width: 500px) {
  .p-worry__item1 {
    position: absolute;
    left: 13%;
    top: 160px;
    margin-top: 0;
  }
}

@media (max-width: 499px) {
  .p-worry__item1 {
    position: absolute;
    left: -3%;
    top: 160px;
    margin-top: 0;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-worry__item2 {
    position: absolute;
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .p-worry__item2 {
    position: absolute;
    margin-top: 0;
  }
}

.p-worry__item3 {
  margin-top: 73px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-worry__item3 {
    position: absolute;
    right: 6.5%;
    top: 250px;
    margin-top: 0;
  }
}

@media (max-width: 767px) and (min-width: 500px) {
  .p-worry__item3 {
    position: absolute;
    right: 13%;
    top: 160px;
    margin-top: 0;
  }
}

@media (max-width: 499px) {
  .p-worry__item3 {
    position: absolute;
    right: -3%;
    top: 160px;
    margin-top: 0;
  }
}

.p-worry__item1 img {
  max-width: 146px;
  width: 100%;
}

@media (max-width: 767px) {
  .p-worry__item1 img {
    max-width: 71px;
  }
}

.p-worry__item2 img {
  max-width: 116px;
  width: 100%;
}

@media (max-width: 767px) {
  .p-worry__item2 img {
    max-width: 56px;
  }
}

.p-worry__item3 img {
  max-width: 80px;
  width: 100%;
}

@media (max-width: 767px) {
  .p-worry__item3 img {
    max-width: 39px;
  }
}

.p-worry__item-text {
  text-align: center;
  margin-top: 26px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .p-worry__item-text {
    margin-top: 16px;
    font-size: 16px;
  }
}

.p-worry__human {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .p-worry__human {
    max-width: 200px;
  }
}

/*==========================================================================
# sns-guide
========================================================================== */
.p-sns-guide {
  background-color: #333;
  padding: 100px 40px;
}

@media (max-width: 767px) {
  .p-sns-guide {
    padding: 30px 19.5px;
  }
}

/* .p-sns-guide__link {
  border-radius: 16px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 37px 0 47px 0;
  background: linear-gradient(to bottom, #4691fa, #3389ec, #396be9);

  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-sns-guide__link {
    font-size: 3.3333333333333335vw;
  }
} */

/* @media (max-width: 767px) {
  .p-sns-guide__link {
    font-size: 18px;
    padding: 18px 0;
  }
} */

.p-sns-guide__link img {
  width: 100%;
  height: 100%;
  /* margin-left: 5.05050505050505vw; */
}

/* @media (max-width: 767px) {
  .p-sns-guide__link img {
    width: 100%;
    height: 100%;
    margin-left: 8px;
  }
} */

/*==========================================================================
# merit
========================================================================== */
.p-merit {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f9;
}

.p-merit::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 236.17px;
  left: 0;
  top: 50%;
  background: #fff;
  transform: matrix(1, 0.08, -0.08, 1, 0, 0);
  z-index: 1;
}

@media (max-width: 767px) {
  .p-merit::after {
    top: 40%;
    height: 150px;
  }
}

@media (max-width: 767px) {
  .p-merit__inner {
    padding: 0 20px;
  }
}

.p-merit__list {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.p-merit__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  margin-top: 60px;
  gap: 12.525252525252526vw;
}

@media (max-width: 767px) {
  .p-merit__item {
    gap: 0;
    margin-top: 40px;
  }

  .p-merit__item:first-of-type {
    margin-top: 20px;
  }
}

.p-merit__item2 {
  flex-direction: row-reverse;
  gap: 7.222222222222221vw;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-merit__item2 {
    gap: 11.916666666666668vw;
  }
}

@media (max-width: 767px) {
  .p-merit__item2 {
    gap: 15px;
  }
}

.p-merit__item3 {
  gap: 2.2222222222222223vw;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-merit__item3 {
    gap: 3.6666666666666665vw;
  }
}

@media (max-width: 767px) {
  .p-merit__item3 {
    gap: 20px;
  }
}

.p-merit__item-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 20px;
}

@media (max-width: 767px) {
  .p-merit__item-body {
    gap: 10px;
  }
}

.p-merit__item-number {
  font-family: "Futura";
  font-weight: 700;
  font-size: 90px;
  letter-spacing: 0.01em;
  color: #e6324d;
  line-height: 1;
  z-index: 2;
}

@media (max-width: 767px) {
  .p-merit__item-number {
    font-size: 13.333333333333334vw;
  }
}

.p-merit__item-number2 {
  color: #ddc200;
}

.p-merit__item-number3 {
  color: #396be9;
}

.p-merit__item-text {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .p-merit__item-text {
    font-size: 14px;
    letter-spacing: 0;
  }
}

.p-merit__item-text2 {
  z-index: 2;
}

.p-merit__item-img {
  max-width: 196px;
  width: 100%;
  z-index: 2;
}

.p-merit__item-img2 {
  max-width: 187px;
  z-index: 2;
}

.p-merit__item-img3 {
  max-width: 148px;
}

@media (max-width: 767px) {
  .p-merit__item-img {
    max-width: 25vw;
  }

  .p-merit__item-img2 {
    max-width: 18.666666666666668vw;
    z-index: 2;
  }

  .p-merit__item-img3 {
    max-width: 19.733333333333334vw;
  }
}

/*==========================================================================
# plan
========================================================================== */
.p-plan {
  background: linear-gradient(107.71deg, rgba(245, 129, 116, 0.4) 0%, rgba(251, 162, 124, 0.4) 24.5%, rgba(252, 213, 116, 0.4) 100%);
}
.p-plan-inner {
  max-width: 1080px;
  position: relative;
}
@media (max-width: 767px) {
  .p-plan-inner {
    padding: 0;
  }
}
.p-plan__list {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 40px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .p-plan__list {
    padding: 0 30px;
  }
}
.p-plan__item {
  width: calc(33.333% - 19px);
  margin-right: 20px;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .p-plan__item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .p-plan__item {
    width: 90vw;
    margin: 0 auto;
  }
}
.p-plan__item-title {
  background: linear-gradient(91.47deg, #626262 3.08%, #a9a9a9 100%);
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 17.5px 0;
  border-radius: 8px 8px 0 0;
}
.p-plan__item-title2 {
  background: linear-gradient(92.88deg, #e6324d 0.84%, #fa8798 96.67%);
}
.p-plan__item-title3 {
  background: linear-gradient(93.32deg, #396be9 2.5%, #8591fe 96.18%);
}
.p-plan__item-title4 {
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
}
.p-plan__item-body {
  padding: 24px;
  text-align: center;
  height: 350px;
  position: relative;
  width: 100%;
}

.p-plan__item-text-main {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 16px;
  margin-bottom: 10px;
}
.p-plan__item-text-main-strong {
  font-family: "Futura";
  font-weight: 500;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-right: 5.75px;
}
.p-plan__item-text-main-strong2 {
  background: linear-gradient(92.88deg, #e6324d 0.84%, #fa8798 96.67%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.p-plan__item-text-main-strong3 {
  background: linear-gradient(93.32deg, #396be9 2.5%, #8591fe 96.18%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.p-plan__item-text-main-strong4 {
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.p-plan__item-text-sub {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  padding: 10px 0;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-plan__item-text-sub-txt1 {
  border-bottom: 1px solid #dadada;
  padding-bottom: 10px;
}
.p-plan__item-text-sub-txt2 {
  padding-top: 10px;
}
.p-plan__item-text-sub-txt3 {
  border-top: 1px solid #dadada;
  padding-top: 10px;
  margin-top: 10px;
}
.p-plan__item-link {
  background: linear-gradient(91.47deg, #626262 3.08%, #a9a9a9 100%);
  border-radius: 40px;
  max-width: 212px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 0;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-plan__item-link2 {
  background: linear-gradient(92.88deg, #e6324d 0.84%, #fa8798 96.67%);
}
.p-plan__item-link3 {
  background: linear-gradient(93.32deg, #396be9 2.5%, #8591fe 96.18%);
}
.p-plan__item-link4 {
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
}
@media (max-width: 767px) {
  .swiper-slide {
    display: flex;
    justify-content: center;
  }
}
.swiper-button-prev,
.swiper-button-next {
  width: 2.875rem !important;
  height: 2.875rem !important;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  top: 60% !important;
  transform: translateY(50%);
  position: absolute;
  z-index: 10;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  color: #333;
  font-size: 14px !important;
}

.swiper-button-prev {
  left: -3% !important;
}

.swiper-button-next {
  right: -3% !important;
}

/* タブレット対応：1024px以下 */
@media (max-width: 1024px) {
  .swiper-button-next {
    right: 1% !important;
  }
  .swiper-button-prev {
    left: 1% !important;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    left: calc(50% - 49.4vw) !important;
  }
  .swiper-button-next {
    right: calc(50% - 49.4vw) !important;
  }
}

/*==========================================================================
# flow
========================================================================== */
.p-flow {
  position: relative;
}

@media (max-width: 767px) {
  .p-flow {
    padding-top: 40px;
  }
}

.p-flow__top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 410px;
  height: 698px;
  background: linear-gradient(107.71deg, #f58174 0%, #fba27c 24.5%, #fcd574 100%);
  clip-path: polygon(0 0, 410px 0, 0 698px);
  z-index: -1;
}

@media (max-width: 767px) {
  .p-flow__top-left {
    width: 80px;
    height: 227px;
    clip-path: polygon(0 0, 80px 0, 0 227px);
  }
}

.p-flow__top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 537px;
  height: 1077px;
  z-index: -1;
  background: #f9f9f9;
  clip-path: polygon(100% 100%, 100% 0, 0 0);
}

@media (max-width: 767px) {
  .p-flow__top-right {
    width: 117px;
    height: 275px;
  }
}

.p-flow__bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 522px;
  height: 900px;
  z-index: -1;
  background: #f9f9f9;
  clip-path: polygon(100% 100%, 0 100%, 0 0);
}

@media (max-width: 767px) {
  .p-flow__bottom-left {
    width: 96px;
    height: 226px;
  }
}

.p-flow__bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 364px;
  height: 629px;
  background: linear-gradient(107.71deg, #f58174 0%, #fba27c 24.5%, #fcd574 100%);
  clip-path: polygon(0 0, 0 629px, 364px 0);
  transform: rotate(180deg);
  z-index: -1;
}

@media (max-width: 767px) {
  .p-flow__bottom-right {
    width: 104px;
    height: 173px;
    clip-path: polygon(0 0, 0 173px, 104px 0);
  }
}

.p-flow__list {
  margin-top: 50px;
}

.p-flow__item {
  display: flex;
  position: relative;
}

.p-flow__item-row::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 250px;
  top: 30px;
  left: 32px;
  background: #f1b42b;
}

@media (max-width: 767px) and (min-width: 450px) {
  .p-flow__item-row::after {
    left: 15px;
    height: 150px;
    top: 10px;
  }
}

@media (max-width: 449px) and (min-width: 415px) {
  .p-flow__item-row::after {
    left: 15px;
    height: 40vw;
    top: 10px;
  }
}

@media (max-width: 414px) {
  .p-flow__item-row::after {
    left: 15px;
    height: 49vw;
    top: 10px;
  }
}

.p-flow__item:nth-child(n + 2) {
  margin-top: 40px;
}

.p-flow__item-number {
  width: 72px;
  height: 72px;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(128.38deg, #e72355 0%, #dfc100 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  z-index: 1;
}

@media (max-width: 767px) {
  .p-flow__item-number {
    width: 37px;
    height: 37px;
    font-size: 14px;
  }
}

.p-flow__item-content {
  width: calc(100% - 98px);
  display: flex;
  padding-bottom: 24px;
  margin-left: 116px;
  border-bottom: 2px solid #eaeaea;
}

@media (max-width: 767px) {
  .p-flow__item-content {
    margin-left: 65px;
    width: 100%;
  }
}

.p-flow__item-content-last {
  border-bottom: 0;
}

.p-flow__item-body {
  margin-right: 67px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-flow__item-body {
    width: calc(100% - 188px);
  }
}

@media (max-width: 767px) {
  .p-flow__item-body {
    margin-right: 9px;
    width: calc(100% - 85px);
  }
}

.p-flow__item-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .p-flow__item-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.p-flow__item-text {
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .p-flow__item-text {
    font-size: 14px;
    line-height: 150%;
  }
}

.p-flow__item-img {
  max-width: 188px;
  width: 100%;
  margin-left: auto;
}

@media (max-width: 767px) {
  .p-flow__item-img {
    max-width: 85px;
  }
}

@media (max-width: 767px) {
  .p-flow__item-img img {
    width: 85px;
  }
}

/*==========================================================================
# faq
========================================================================== */
.p-faq {
  background: #f9f9f9;
}

.p-faq__title {
  background: linear-gradient(90deg, #396be9 0%, #8591fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-faq__list {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .p-faq__list {
    margin-top: 20px;
  }
}

.p-faq__item {
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.p-faq__item:nth-child(n + 2) {
  margin-top: 20px;
}

.p-faq__item-qa {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 40px;
  border-radius: 10px 10px 0 0;
}

@media (max-width: 767px) {
  .p-faq__item-qa {
    padding: 10px 20px;
  }
}

.p-faq__item-qa::before {
  background: #333;
  color: #fff;
  content: "Q";
  display: inline-block;
  text-align: center;
  font-weight: 600;
  width: 42px;
  height: 42px;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.01em;
  color: #fff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 42px;
}

@media (max-width: 767px) {
  .p-faq__item-qa::before {
    width: 36px;
    height: 36px;
    font-size: 14px;
    flex: 0 0 36px;
  }
}

.p-faq__item-qa.active::before {
  background-color: #fff;
  color: #000;
}

.p-faq__item-qa-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: 20px;
  position: relative;
  flex: 0 1 100%;
}

@media (max-width: 767px) {
  .p-faq__item-qa-text {
    font-size: 16px;
    margin-left: 8px;
    padding-right: 20px;
  }
}

.p-faq__item-qa-text::before {
  background: #333;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 22px;
}

@media (max-width: 767px) {
  .p-faq__item-qa-text::before {
    width: 16px;
  }
}

.p-faq__item-qa-text::after {
  background: #333;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 22px;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

@media (max-width: 767px) {
  .p-faq__item-qa-text::after {
    width: 16px;
  }
}

.p-faq__item-qa.active .p-faq__item-qa-text::before {
  background: #fff;
}

.p-faq__item-qa.active .p-faq__item-qa-text::after {
  background: #fff;
}

.p-faq__item-answer {
  display: none;
}

.p-faq__item-answer-body {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 40px;
}

@media (max-width: 767px) {
  .p-faq__item-answer-body {
    padding: 10px 20px;
  }
}

.p-faq__item-answer-body::before {
  background: #333;
  color: #fff;
  content: "A";
  display: inline-block;
  text-align: center;
  font-weight: 600;
  width: 42px;
  height: 42px;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.01em;
  color: #fff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 42px;
}

@media (max-width: 767px) {
  .p-faq__item-answer-body::before {
    width: 36px;
    height: 36px;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    letter-spacing: 0.01em;
    color: #fff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 36px;
  }
}

.p-faq__item-answer-text {
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-left: 20px;
  flex: 0 1 100%;
}

@media (max-width: 767px) {
  .p-faq__item-answer-text {
    margin-left: 8px;
    font-size: 16px;
    line-height: 1.4;
  }
}

.p-faq__item-qa-text .add-active::after {
  -webkit-transform: translateY(-50%) rotate(0);
  transform: translateY(-50%) rotate(0);
}

/*==========================================================================
# voice
========================================================================== */
.p-voice {
  background: url("../image/voice-bg-img.png") no-repeat center center / cover;
}

@media (max-width: 767px) {
  .p-voice {
    padding-top: 40px;
    background: url("../image/voice-bg-img-sp.png") no-repeat center center / cover;
  }
}

@media (max-width: 767px) {
  .p-voice-inner {
    padding: 0 10px;
  }
}

.p-voice__content {
  display: flex;
  padding: 30px;
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  max-width: 920px;
  width: 100%;
  margin: 60px auto 0;
}

@media (max-width: 767px) {
  .p-voice__content {
    display: block;
    padding: 30px 20px;
    margin: 40px auto 0;
  }
}

.p-voice__content-img {
  max-width: 144px;
  width: 100%;
}

@media (max-width: 767px) {
  .p-voice__content-img {
    margin: 0 auto;
  }
}

.p-voice__content-text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .p-voice__content-text {
    line-height: 140%;
    width: 100%;
    margin-top: 20px;
  }
}

.p-voice__content-text-strong {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .p-voice__content-text-strong {
    line-height: 140%;
  }
}

/*==========================================================================
# contact
========================================================================== */
.p-contact {
  background: linear-gradient(107.71deg, #f58174 0%, #fba27c 24.5%, #fcd574 100%);
}

@media (max-width: 767px) {
  .p-contact {
    padding-top: 40px;
  }
}

.p-contact__title {
  color: #fff;
}

.p-contact__form {
  background-color: #fff;
  padding: 80px 90px;
  box-shadow: 0px 4px 20px rgba(227, 123, 38, 0.2);
  border-radius: 16px;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .p-contact__form {
    padding: 40px 10px;
    margin-top: 20px;
  }
}

.p-contact__form-table {
  width: 100%;
}

.p-contact__form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .p-contact__form-row {
    margin-bottom: 24px;
  }
}

.p-contact__form-lable {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.p-contact__form-lable-require {
  padding: 4px 9px;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  height: 20px;
  margin-right: 13px;
}

.p-contact__form-lable-txt {
  font-size: 16px;
  line-height: 38px;
  letter-spacing: 0.05em;
}

.p-contact__form-checklist {
  display: flex;
}

@media (max-width: 1200px) {
  .p-contact__form-checklist {
    display: block;
  }
}

.p-contact__form-checkitem {
  display: flex;
  align-items: center;
}

.p-contact__form-checkitem:nth-child(n + 2) {
  margin-left: 16px;
}

@media (max-width: 1200px) {
  .p-contact__form-checkitem:nth-child(n + 2) {
    margin-left: 0;
    margin-top: 16px;
  }
}

.p-contact__form-checkitem [type="checkbox"] {
  background: #ffffff;
  border: 1.56522px solid #eaeaea;
  width: 19px;
  height: 19px;
  box-sizing: border-box;
}

.p-contact__form-checkitem-txt {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  color: #000000;
  margin-left: 8px;
}

.p-contact__form-content [type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  padding: 11px 10px;
  width: 100%;
  background-color: #ffffff;
  border: 1.56522px solid #eaeaea;
}

.p-contact__form-content textarea {
  min-height: 100px;
  background: #ffffff;
  border: 1.56522px solid #eaeaea;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
  resize: none;
  width: 100%;
}

.p-contact__form-confirm {
  margin-top: -9px;
}

.p-contact__form-confirm-label {
  display: flex;
  align-items: center;
}

.p-contact__form-confirm-label [type="checkbox"] {
  box-sizing: border-box;
  width: 23px;
  height: 23px;
  background: #ffffff;
  border: 1.56522px solid #eaeaea;
}

.p-contact__form-confirm-label-txt {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.05em;
  color: #333333;
  margin-left: 16px;
}

@media (max-width: 767px) {
  .p-contact__form-confirm-label-txt {
    font-size: 13.4px;
  }
}

.p-contact__form-confirm-label-txt a {
  text-decoration: underline;
  color: #333;
}

.p-contact__form-button {
  max-width: 814px;
  margin: 60px auto 0;
  position: relative;
}

@media (max-width: 767px) {
  .p-contact__form-button {
    max-width: 307px;
    margin: 24px auto 0;
  }
}

.p-contact__form-submit {
  display: flex;
  align-items: center;
  padding: 24px 74px;
  background: #333333;
  border-radius: 60px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.05em;
  height: 94px;
  justify-content: center;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-contact__form-submit {
    font-size: 2vw;
    padding: 24px 44px;
  }
}

@media (max-width: 767px) {
  .p-contact__form-submit {
    height: 56px;
    padding: 0;
    font-size: 16px;
  }
}

.p-contact__form-arrow {
  position: absolute;
  top: 25%;
  right: 60px;
  width: 46px;
  height: 46px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .p-contact__form-arrow {
    right: 5%;
  }
}

@media (max-width: 767px) {
  .p-contact__form-arrow {
    top: 50%;
    right: 20px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
  }
}

/*==========================================================================
# seminar
========================================================================== */

.p-seminar {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  .p-seminar {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.p-seminar__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .p-seminar__title {
    font-size: 24px;
  }
}

.p-seminar__content {
  background: url("../image/seminar-oneday.png") no-repeat center center / cover;
  max-width: 1280px;
  width: 100%;
  height: 285px;
  position: relative;
  margin: 60px auto 0;
}

@media (max-width: 767px) {
  .p-seminar__content {
    max-width: 335px;
    height: 89px;
    margin-top: 20px;
  }
}

.p-seminar__content-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}

.p-seminar__topic {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #ffffff;
}

@media (max-width: 767px) {
  .p-seminar__topic {
    font-weight: 600;
    font-size: 20px;
  }
}

.p-seminar__topic-arrow {
  width: 44px;
  height: 44px;
  margin-left: 48px;
}

@media (max-width: 767px) {
  .p-seminar__topic-arrow {
    width: 22px;
    height: 22px;
    margin-left: 16px;
  }
}

/*==========================================================================
# footer
========================================================================== */
.l-footer {
  background-color: #333;
  padding: 80px 0 40px;
  color: #fff;
}

@media (max-width: 767px) {
  .l-footer {
    padding: 40px 0 20px;
  }
}

.l-footer__title {
  max-width: 294px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .l-footer__title {
    max-width: 161px;
  }
}

.l-footer__list {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.l-footer__item {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.l-footer__item:nth-child(n + 2) {
  margin-top: 10px;
}

.l-footer__copy {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
}

@media (max-width: 767px) {
  .l-footer__copy {
    font-size: 12px;
  }
}
