@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --zIndex: 100;
  --zIndex-header: calc(var(--zIndex) * 2);
  --zIndex-menu: calc(var(--zIndex) * 2);
  --zIndex-menu: calc(var(--zIndex) * 3);
  --zIndex-overlay: calc(var(--zIndex) * 3);
  --color-main: #FBD90A;
  --color-accent: #01B495;
  --color-white: #fff;
  --color-black: #000;
  --color-marker: #FFE854;
  --background-base: #ffffff;
  --background-main: #FBD90A;
  --background-light: #FFFDEF;
  --fontFamily-base: "Noto Sans JP", sans-serif;
  --lineHeight-base: 1.4;
  --fontSize-base: 1.6rem;
  --fontWeight-base: 500;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontColor-base: #111111;
}

/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8.7rem;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 4rem;
  }
}
@media screen and (max-width: 374px) {
  html {
    font-size: 2.7777777778vw;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-base);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* l-body */
.l-body.noScroll {
  overflow: hidden;
}

/* l-header */
.l-header {
  width: 100%;
  position: fixed;
  top: 4rem;
  left: 0;
  z-index: var(--zIndex-header);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header {
    top: 1.8rem;
  }
}
.l-header._isFixed {
  background-color: var(--color-main);
  padding: 2rem 0;
  top: 0;
}
.l-header__inner {
  max-width: 110rem;
  padding: 0 1rem;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 8.5rem;
  }
}
@media screen and (max-width: 768px) {
  .l-header__gnav {
    display: none;
  }
  .l-header__gnav.menu_isOpen {
    display: block;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-light);
    z-index: var(--zIndex-gnav);
    padding: 7rem 1rem;
  }
}
.l-header__btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__btn {
    display: block;
    position: fixed;
    top: 0.6rem;
    right: 0.8rem;
    z-index: var(--zIndex-menu);
  }
}

/* l-footer */
.l-footer {
  padding: 10rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 3rem 0 4rem;
  }
}
.l-footer__txt {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
.l-footer__txt span {
  color: var(--color-accent);
}
.l-footer__btnArea {
  max-width: 48.2rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 768px) {
  .l-footer__btnArea {
    margin-top: 3rem;
  }
}
.l-footer__logo {
  max-width: 17.7rem;
  margin: 3rem auto 0;
}

/* l-inner */
.l-inner {
  width: 110.7rem;
  max-width: 100%;
  padding: 0 1.6rem;
  margin: auto;
}

/* c-site */
.c-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.c-site__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* c-gnav*/
@media screen and (max-width: 768px) {
  .c-gnav {
    padding: 9rem 0;
  }
}
.c-gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .c-gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__item {
    width: 16.6rem;
  }
}
.c-gnav__item--contact {
  margin-left: 4rem;
}
@media screen and (max-width: 1080px) {
  .c-gnav__item--contact {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__item--contact {
    width: 30rem;
    margin-left: 0;
    margin-top: 4.5rem;
  }
}
.c-gnav__link {
  display: block;
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  color: var(--fontColor-base);
  padding: 0 1.6rem;
}
@media screen and (max-width: 1080px) {
  .c-gnav__link {
    font-size: 1.6rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    font-size: 2rem;
    letter-spacing: 0.06em;
    text-align: center;
  }
}
.c-gnav__link--contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 1rem 3rem;
  border-radius: 99px;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 768px) {
  .c-gnav__link--contact {
    font-size: 1.8rem;
    letter-spacing: 0;
    border-radius: 7px;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__linkTxtPC {
    display: none;
  }
}
.c-gnav__linkTxtSP {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__linkTxtSP {
    display: block;
  }
}
.c-gnav__linkArrow {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-gnav__linkArrow {
    display: block;
  }
}

/* c-btnMenu*/
.c-btnMenu {
  width: 5rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  background-color: transparent;
  border: none;
}
.c-btnMenu__bar {
  display: inline-block;
  width: 60%;
  height: 3px;
  background-color: #111;
  position: relative;
}
.c-btnMenu__bar::before, .c-btnMenu__bar::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #111;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu__bar::before {
  top: 1rem;
}
.c-btnMenu__bar::after {
  top: -1rem;
}
.c-btnMenu__close {
  display: none;
  font-size: 1rem;
  color: #111;
}

/* btnMenu_isOnがついた時のスタイル */
.c-btnMenu.btnMenu_isOn .c-btnMenu__bar {
  background-color: transparent;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__bar::before, .c-btnMenu.btnMenu_isOn .c-btnMenu__bar::after {
  top: 0;
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__bar::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__bar::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-btnMenu.btnMenu_isOn .c-btnMenu__close {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* c-ttl*/
.c-ttl {
  font-size: 4rem;
  letter-spacing: 0.06em;
  font-weight: var(--fontWeight-bold);
  line-height: 1.6;
  text-align: center;
}
.c-ttl span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}
.c-ttl--small {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .c-ttl--small {
    font-size: 2.4rem;
    line-height: 1.8;
  }
}
.c-ttl__num {
  font-size: 6.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-ttl__num {
    font-size: 3.2rem;
  }
}

/* c-btn */
.c-btn {
  display: block;
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 1.6rem 1rem;
  border-radius: 99px;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2509803922);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn {
    border-radius: 7px;
    padding: 1rem;
  }
}
.c-btn__arrow {
  position: absolute;
  right: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-btn__arrow {
    width: 0.8rem;
    right: 3.2rem;
  }
}

/* c-cardReason*/
.c-cardReason {
  border-radius: 47px;
  overflow: hidden;
  border: 7px solid var(--color-main);
}
@media screen and (max-width: 768px) {
  .c-cardReason {
    border-radius: 25px;
  }
}
.c-cardReason--01 {
  background-image: url(../../assets/images/reason_01_bg.png);
  background-size: 45rem auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .c-cardReason--01 {
    background-size: 78.8888888889vw auto;
    background-position: center bottom 4vw;
  }
}
@media screen and (max-width: 768px) {
  .c-cardReason--02 .c-cardReason__body {
    padding-bottom: 4rem;
  }
}
.c-cardReason--02 .c-cardReason__flex {
  padding: 4rem 3rem 0;
}
@media screen and (max-width: 768px) {
  .c-cardReason--02 .c-cardReason__flex {
    padding: 1.4rem 0 0;
  }
}
.c-cardReason--02 .c-cardReason__imgAreaSide {
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason--02 .c-cardReason__imgAreaSide {
    margin-top: 0;
    max-width: 18.4rem;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-cardReason--02 .c-cardReason__txtArea {
    margin-top: 2rem;
  }
}
.c-cardReason--03 .c-cardReason__body {
  padding-bottom: 4rem;
}
.c-cardReason--03 .c-cardReason__flex {
  padding: 0 3rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason--03 .c-cardReason__flex {
    padding: 0;
  }
}
.c-cardReason--03 .c-cardReason__txtArea {
  padding-top: 7rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason--03 .c-cardReason__txtArea {
    padding-top: 2rem;
  }
}
.c-cardReason--03 .c-cardReason__imgAreaSide {
  padding-left: 8%;
}
@media screen and (max-width: 1023px) {
  .c-cardReason--03 .c-cardReason__imgAreaSide {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-cardReason--03 .c-cardReason__imgAreaSide {
    max-width: 28.2rem;
    margin: auto;
  }
}
.c-cardReason__header {
  text-align: center;
  padding: 2.2rem 0;
  background-color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .c-cardReason__header {
    padding: 1.2rem 0;
  }
}
.c-cardReason__subttl {
  font-size: 3.2rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .c-cardReason__subttl {
    font-size: 2.1rem;
  }
}
.c-cardReason__body {
  padding: 3rem 2rem 5.8rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__body {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.c-cardReason__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-cardReason__imgAreaSide {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cardReason__txtArea {
  width: 35.8rem;
  max-width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-cardReason__txtArea {
    font-size: 1.6rem;
    padding: 0 0.6rem;
    margin: auto;
  }
}
.c-cardReason__txtArea p span {
  position: relative;
  background-color: #FFE854;
}
.c-cardReason__lead {
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .c-cardReason__lead {
    font-size: 1.6rem;
  }
}
.c-cardReason__imgArea {
  max-width: 54.4rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .c-cardReason__imgArea {
    margin-top: 2rem;
  }
}
.c-cardReason__list {
  text-align: center;
  margin-top: 6.6rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__list {
    margin-top: 5rem;
  }
}
.c-cardReason__item {
  margin-top: 1.4rem;
  font-size: 3rem;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .c-cardReason__item {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
}
.c-cardReason__item span {
  display: inline-block;
  background-color: #FFE854;
  position: relative;
  padding: 0 1rem 0 4rem;
}
@media screen and (max-width: 768px) {
  .c-cardReason__item span {
    padding-left: 2rem;
  }
}
.c-cardReason__item span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  background: url(../../assets/images/i_check.svg) no-repeat center center/100% auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-cardReason__item span::before {
    width: 1.3rem;
    height: 1.3rem;
  }
}

/* c-cardFlow*/
.c-cardFlow {
  padding: 9rem 2rem 4rem;
  background-color: var(--color-white);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cardFlow {
    padding: 4.4rem 1.2rem;
  }
}
.c-cardFlow::before {
  content: "";
  display: inline-block;
  width: 8.8rem;
  height: 8.8rem;
  border-top: 6px solid var(--color-main);
  border-left: 6px solid var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-cardFlow::before {
    width: 2.7rem;
    height: 3rem;
    border-width: 4px;
  }
}
.c-cardFlow::after {
  content: "";
  display: inline-block;
  width: 8.8rem;
  height: 8.8rem;
  border-right: 6px solid var(--color-main);
  border-bottom: 6px solid var(--color-main);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .c-cardFlow::after {
    width: 2.7rem;
    height: 3rem;
    border-width: 4px;
  }
}
.c-cardFlow__num {
  font-size: 6rem;
  font-weight: var(--fontWeight-bold);
  border-radius: 50%;
  background-color: var(--color-main);
  width: 11rem;
  height: 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-cardFlow__num {
    font-size: 2.4rem;
    width: 5.3rem;
    height: 5.3rem;
  }
}
.c-cardFlow__ttl {
  font-size: 3.2rem;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-cardFlow__ttl {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.c-cardFlow__txtArea {
  max-width: 91rem;
  padding: 3rem 1rem;
  background-color: #FFEF8C;
  text-align: center;
  margin: 4.6rem auto 0;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .c-cardFlow__txtArea {
    padding: 1.6rem 1rem;
    margin-top: 1.6rem;
    text-align: left;
  }
}
.c-cardFlow__txt {
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  font-weight: var(--fontWeight-bold);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .c-cardFlow__txt {
    font-size: 1.8rem;
  }
}
.c-cardFlow__txt span {
  background-color: var(--color-white);
}
.c-cardFlow__imgArea {
  max-width: 92rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 768px) {
  .c-cardFlow__imgArea {
    margin-top: 4.5rem;
  }
}
.c-cardFlow__imgArea img {
  margin: auto;
}

/* c-cardCase*/
.c-cardCase {
  height: 100%;
  padding: 3.6rem 5.7142857143%;
  background-color: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
}
@media screen and (max-width: 1023px) {
  .c-cardCase {
    border-radius: 0;
    padding: 3.6rem 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-cardCase--01 .c-cardCase__imgArea img {
    width: 23rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-cardCase--02 .c-cardCase__imgArea img {
    width: 21.3rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-cardCase--03 .c-cardCase__imgArea img {
    width: 26.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-cardCase--04 .c-cardCase__imgArea img {
    width: 23rem;
  }
}
.c-cardCase__ttlSP {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.c-cardCase__ttlSP h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-cardCase__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}
.c-cardCase__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__ttl {
    font-size: 1.8rem;
  }
}
.c-cardCase__desc {
  width: 54.6rem;
  max-width: 60%;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__desc {
    max-width: 100%;
    width: 100%;
    margin-top: 3rem;
  }
}
.c-cardCase__imgArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__imgArea {
    margin-top: 1rem;
  }
}
.c-cardCase__imgArea img {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__imgArea img {
    margin: auto;
  }
}
.c-cardCase__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-cardCase__item:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__item:not(:first-child) {
    margin-top: 6rem;
  }
}
.c-cardCase__item p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-cardCase__subttl {
  width: 9.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__subttl {
    width: 12rem;
    margin: auto;
    display: inline-block;
    text-align: center;
  }
}
.c-cardCase__subttl.pink {
  background-color: #FFB7BD;
}
.c-cardCase__subttl.green {
  background-color: #A0DA8C;
}
.c-cardCase__subttl.yellow {
  background-color: var(--color-main);
}
.c-cardCase__txtContent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.2rem 0;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__txtContent {
    padding: 0.4rem 0;
  }
}
.c-cardCase__txtArea:not(:first-child) {
  margin-top: 1rem;
}
.c-cardCase__txtArea p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  .c-cardCase__txtArea p {
    line-height: 1.5;
  }
}
.c-cardCase__txtTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 700 !important;
}
.c-cardCase__txtTtl::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../../assets/images/i_check_case.svg) no-repeat center center/cover;
}

/* p-mv */
.p-mv {
  padding: 13rem 0 7.6rem;
  background: url(../../assets/images/mv_bg.jpg) center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-mv {
    padding-top: 7rem;
    padding-bottom: 3.6rem;
    background-image: url(../../assets/images/mv_bg_sp.jpg);
  }
}
.p-mv__inner {
  max-width: 109rem;
  margin: auto;
  padding: 0 1rem;
}
.p-mv__txt {
  padding-left: 3%;
}
@media screen and (max-width: 768px) {
  .p-mv__txt {
    max-width: 59.7222222222vw;
    margin: auto;
    padding-left: 0;
  }
}
@media screen and (max-width: 1080px) {
  .p-mv__txt img {
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__copy {
    max-width: 70vw;
    margin: 2.5vw auto 0;
  }
}
@media screen and (max-width: 1080px) {
  .p-mv__copy img {
    margin: auto;
  }
}
.p-mv__btnArea {
  max-width: 55.6rem;
  margin-top: 3rem;
}
@media screen and (max-width: 1080px) {
  .p-mv__btnArea {
    margin: 2rem auto 0;
  }
}
.p-mv__img {
  position: absolute;
  top: 14rem;
  left: calc(50% + 5.5rem);
}
@media screen and (max-width: 1080px) {
  .p-mv__img {
    position: inherit;
  }
}
@media screen and (max-width: 768px) {
  .p-mv__img {
    width: 69.4444444444vw;
    max-width: 100%;
    margin: 3vw auto 0;
  }
}
@media screen and (max-width: 1080px) {
  .p-mv__img img {
    margin: auto;
  }
}

/* p-lead */
.p-lead {
  padding: 10rem 0 9.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lead {
    padding: 1.8rem 0 5.6rem;
  }
}
.p-lead__deco {
  position: absolute;
  top: 9rem;
  left: calc(50% + 31rem);
  width: 11.5rem;
  height: 16.7rem;
}
@media screen and (max-width: 1023px) {
  .p-lead__deco {
    position: initial;
    max-width: 29.3255131965vw;
    height: auto;
    margin: 1rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  .p-lead__deco {
    max-width: 6.4rem;
    height: 9.3rem;
  }
}
.p-lead__body {
  max-width: 108rem;
  margin: 14rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-lead__body {
    margin-top: 4.4rem;
  }
}
.p-lead__box {
  border: 7px solid var(--fontColor-base);
  border-radius: 47px;
}
@media screen and (max-width: 768px) {
  .p-lead__box {
    border-radius: 13px;
  }
}
.p-lead__subttl {
  max-width: 41.3rem;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-lead__subttl {
    max-width: 25.9rem;
  }
}
.p-lead__list {
  padding: 3.5rem 0 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .p-lead__list {
    padding-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
.p-lead__itemTxt {
  width: 16.5rem;
  height: 16.5rem;
  font-size: 4rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../../assets/images/lead_bg.png) center/cover no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-lead__itemTxt {
    width: 10rem;
    height: 10rem;
    font-size: 3.4rem;
    margin: auto;
  }
}
.p-lead__itemTxt::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -0.6rem;
  right: -2.2rem;
  width: 4.5rem;
  height: 2.7rem;
  background: url(../../assets/images/lead_deco02.png) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-lead__itemTxt::before {
    top: -1.4rem;
  }
}
.p-lead__itemTxt02 {
  font-size: 1.8rem;
  margin-top: 3.6rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-lead__itemTxt02 {
    margin-top: 1.6rem;
  }
}
.p-lead__itemTxt02 span {
  display: inline-block;
  font-size: 2rem;
  position: relative;
}
.p-lead__itemTxt02 span::before {
  content: "";
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  width: 100%;
  height: 0.8rem;
  background-color: #4AD6BE;
  z-index: -1;
}

/* p-message */
.p-message {
  text-align: center;
  background: url(../../assets/images/message_bg.jpg) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .p-message {
    background-image: url(../../assets/images/message_bg_sp.jpg);
  }
}
.p-message__txt {
  font-size: 3.2rem;
  line-height: 1.7;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.06em;
  padding: 3.2rem 0;
}
@media screen and (max-width: 768px) {
  .p-message__txt {
    font-size: 2rem;
    padding: 2rem 0;
  }
}

/* p-reason */
.p-reason {
  padding: 10.6rem 0 17rem;
}
@media screen and (max-width: 768px) {
  .p-reason {
    padding: 4.6rem 0 10.2rem;
  }
}
.p-reason__body {
  max-width: 85rem;
  margin: 8rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-reason__body {
    margin-top: 4rem;
  }
}
.p-reason__item:not(:first-child) {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .p-reason__item:not(:first-child) {
    margin-top: 5rem;
  }
}
.p-reason__btnArea {
  max-width: 72rem;
  margin: 10rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-reason__btnArea {
    margin-top: 6rem;
  }
}

/* p-method */
.p-method__top {
  padding: 14rem 0;
  background-color: var(--background-main);
}
@media screen and (max-width: 768px) {
  .p-method__top {
    padding: 0 0 5.2rem;
  }
}
.p-method__lead {
  max-width: 98rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-method__lead {
    max-width: 31rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-method__txt {
  font-size: 3rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 6.6rem;
}
@media screen and (max-width: 768px) {
  .p-method__txt {
    font-size: 2.2rem;
    margin-top: 0;
  }
}
.p-method__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 5rem;
  gap: 10%;
}
@media screen and (max-width: 768px) {
  .p-method__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
  }
}
.p-method__img {
  min-height: 22.1rem;
}
@media screen and (max-width: 768px) {
  .p-method__img {
    min-height: initial;
  }
}
.p-method__img img {
  margin: auto;
}
.p-method__txtArea {
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-method__txtArea {
    margin-top: 0;
    padding-top: 2rem;
    background: url(../../assets/images/i_polygon.svg) center top/1.5rem auto no-repeat;
  }
}
.p-method__txtArea p {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  font-weight: var(--fontWeight-bold);
  line-height: 1.4;
}
.p-method__txtArea p span {
  font-size: 2rem;
  background-color: var(--color-white);
}
.p-method__message {
  color: var(--color-main);
  text-align: center;
  padding: 6.4rem 0;
  background: #333 url(../../assets/images/method_polygon.svg) center top -1rem/6rem auto no-repeat;
}
@media screen and (max-width: 768px) {
  .p-method__message {
    padding: 5.4rem 0 3.2rem;
    background-size: 4rem auto;
  }
}
.p-method__message p {
  font-size: 4rem;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .p-method__message p {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-method__message p {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

/* p-point */
.p-point {
  padding: 14.6rem 0 9rem;
  background: url(../../assets/images/point_bg.png) center top/192rem auto no-repeat;
}
@media screen and (max-width: 768px) {
  .p-point {
    padding: 5.6rem 0;
    background: #FFFDEF;
  }
}
.p-point__lead img {
  margin: auto;
}
.p-point__ttl {
  font-size: 5.5rem;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 9rem;
}
@media screen and (max-width: 1023px) {
  .p-point__ttl {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-point__ttl {
    margin-top: 4rem;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-point__ttlSP {
    margin-top: 3.4rem;
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.3;
  }
  .p-point__ttlSP span {
    background-color: #FBD90A;
  }
}
.p-point__txt {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: var(--fontWeight-bold);
  text-align: center;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-point__txt {
    margin-top: 4rem;
    text-align: left;
  }
}
.p-point__imgArea {
  margin-top: 9rem;
}
@media screen and (max-width: 768px) {
  .p-point__imgArea {
    margin-top: 3rem;
  }
}
.p-point__imgArea img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-point__imgArea img {
    max-width: 25.9rem;
  }
}
.p-point__btnArea {
  max-width: 72rem;
  margin: 17rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-point__btnArea {
    margin-top: 6rem;
  }
}

/* p-difference */
.p-difference {
  padding: 7.6rem 0;
  background-color: var(--background-main);
  position: relative;
}
.p-difference::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #333;
}
.p-difference__content {
  position: relative;
  z-index: 2;
}
.p-difference__ttl img {
  margin: auto;
}
.p-difference__imgArea {
  margin-top: 3.8rem;
}
.p-difference__imgArea img {
  margin: auto;
}
.p-difference__txt {
  margin-top: 5rem;
  padding-left: 7rem;
}
.p-difference__txt img {
  margin: auto;
}

/* p-differenceSP */
.p-differenceSP__inner {
  padding: 0 1rem;
}
.p-differenceSP__ttl img {
  margin: auto;
}
.p-differenceSP__body {
  margin-top: 1.2rem;
  position: relative;
}
.p-differenceSP__swiper {
  padding-top: 4rem;
}
.p-differenceSP__swiper .swiper-slide img {
  width: 90%;
  margin: auto;
}
.p-differenceSP__swiper .swiper-pagination {
  top: 0;
  bottom: auto;
}
.p-differenceSP__swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
}
.p-differenceSP__swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-accent);
}
.p-differenceSP__swiper .swiper-button-prev, .p-differenceSP__swiper .swiper-button-next {
  width: 8.3333333333vw;
  height: 8.3333333333vw;
  z-index: 2;
  top: calc(50% + 2rem);
}
.p-differenceSP__swiper .swiper-button-prev::after, .p-differenceSP__swiper .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-differenceSP__swiper .swiper-button-prev.swiper-button-disabled, .p-differenceSP__swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
}
.p-differenceSP__swiper .swiper-button-next {
  right: 0;
}
.p-differenceSP__swiper .swiper-button-next::after {
  background: url(../images/i_arrow_slide_r.png) no-repeat center center/100% 100%;
}
.p-differenceSP__swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0 !important;
}
.p-differenceSP__swiper .swiper-button-prev::after {
  background: url(../images/i_arrow_slide_l.png) no-repeat center center/100% 100%;
}

/* p-more */
.p-more {
  padding: 15rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-more {
    padding: 3.8rem 0 0;
  }
}
.p-more__lead img {
  margin: auto;
}
.p-more__ttl {
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.4;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
@media screen and (max-width: 768px) {
  .p-more__ttl {
    font-size: 2.4rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 2rem;
    padding: 3rem 1rem;
    background-color: var(--color-main);
  }
}
.p-more__ttl span {
  display: inline-block;
  background-color: var(--color-main);
  padding: 0.4rem 6.4rem;
}
@media screen and (max-width: 768px) {
  .p-more__ttl span {
    padding: 0;
  }
}
.p-more__scroll {
  margin-top: 2.2rem;
  margin-right: 1rem;
}
.p-more__scroll img {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .p-more__inner {
    padding: 0;
  }
}
.p-more__box {
  border: 7px solid var(--color-main);
  border-radius: 47px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-more__box {
    border: none;
    border-radius: 0;
  }
}
.p-more__imgArea {
  padding: 11.5rem 0 6.5rem;
}
@media screen and (max-width: 768px) {
  .p-more__imgArea {
    padding: 1.5rem 1rem 5rem;
    overflow-y: scroll;
  }
}
.p-more__imgArea img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-more__imgArea img {
    width: 59.8rem;
    max-width: none;
  }
}
.p-more__txtArea {
  text-align: center;
  background-color: var(--color-main);
  padding: 6.4rem 1rem 4rem;
}
@media screen and (max-width: 768px) {
  .p-more__txtArea {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 3rem 1rem 4rem;
    text-align: left;
  }
}
.p-more__txtArea p {
  font-size: 2.4rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-more__txtArea p {
    font-size: 2rem;
    line-height: 1.5;
    padding: 0 2rem;
  }
}
.p-more__txt {
  display: inline-block;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-more__txt {
    margin-top: 0;
  }
}
.p-more__marker {
  background-color: var(--color-white);
}
.p-more__btnArea {
  max-width: 72rem;
  margin: 5rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-more__btnArea {
    max-width: 33rem;
    margin-top: 3rem;
  }
}

/* p-flow */
.p-flow {
  padding: 5rem 0 16rem;
  background-color: var(--background-light);
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding: 4rem 0 8rem;
  }
}
.p-flow__body {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .p-flow__body {
    margin-top: 6rem;
  }
}
.p-flow__item:not(:first-child) {
  margin-top: 17rem;
}
@media screen and (max-width: 768px) {
  .p-flow__item:not(:first-child) {
    margin-top: 6rem;
  }
}
.p-flow__message {
  font-size: 3.2rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .p-flow__message {
    font-size: 2.3rem;
    margin-top: 5rem;
  }
}
.p-flow__messageBar {
  display: inline-block;
  padding: 0 3rem;
  position: relative;
}
.p-flow__messageBar::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 8.3rem;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  -webkit-transform: rotate(-22deg);
          transform: rotate(-22deg);
}
@media screen and (max-width: 768px) {
  .p-flow__messageBar::before {
    display: none;
  }
}
.p-flow__messageBar::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 8.3rem;
  background-color: var(--color-accent);
  position: absolute;
  bottom: 0.2rem;
  right: 0;
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
}
@media screen and (max-width: 768px) {
  .p-flow__messageBar::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-flow__messageBg {
    background-color: #4AD6BE;
  }
}
.p-flow__txt {
  font-size: 2.1rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-top: 10rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-flow__txt {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 3rem;
    text-align: left;
  }
}
.p-flow__btnArea {
  max-width: 72rem;
  margin: 13rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-flow__btnArea {
    margin-top: 3.4rem;
  }
}

/* p-case */
.p-case {
  padding: 9rem 0 7rem;
  background: url(../../assets/images/case_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-case {
    padding: 6rem 0 8.6rem;
  }
}
.p-case__ttl {
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-case__ttl {
    font-size: 2.4rem;
  }
}
.p-case__body {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .p-case__body {
    padding: 0 1rem;
    margin-top: 3rem;
  }
}
.p-case__swiper {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-case__swiper {
    padding-bottom: 0;
    padding-top: 5rem;
  }
}
.p-case__swiper .swiper-slide {
  height: auto;
}
@media screen and (max-width: 1023px) {
  .p-case__swiper .swiper-slide {
    padding: 0 2rem;
  }
}
.p-case__swiper .swiper-pagination {
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-case__swiper .swiper-pagination {
    top: 0;
    bottom: auto;
  }
}
.p-case__swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1.3rem;
  height: 1.3rem;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--color-accent);
}
@media screen and (max-width: 768px) {
  .p-case__swiper .swiper-pagination .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
  }
}
.p-case__swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-accent);
}
.p-case__swiper .swiper-button-prev, .p-case__swiper .swiper-button-next {
  width: 5rem;
  height: 5rem;
  z-index: 2;
  top: calc(50% - 2.4rem);
}
@media screen and (max-width: 768px) {
  .p-case__swiper .swiper-button-prev, .p-case__swiper .swiper-button-next {
    top: calc(50% - 13rem);
    width: 5rem;
    height: 5rem;
  }
}
.p-case__swiper .swiper-button-prev::after, .p-case__swiper .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
}
.p-case__swiper .swiper-button-next {
  right: auto;
  left: calc(50% + 27vw);
}
@media screen and (max-width: 768px) {
  .p-case__swiper .swiper-button-next {
    left: auto;
    right: 0;
  }
}
.p-case__swiper .swiper-button-next::after {
  background: url(../images/i_arrow_slide_r_gray.png) no-repeat center center/100% 100%;
}
.p-case__swiper .swiper-button-prev {
  right: auto;
  left: calc(50% - 31vw);
}
@media screen and (max-width: 768px) {
  .p-case__swiper .swiper-button-prev {
    right: auto;
    left: 0;
  }
}
.p-case__swiper .swiper-button-prev::after {
  background: url(../images/i_arrow_slide_l_gray.png) no-repeat center center/100% 100%;
}
.p-case__btnArea {
  max-width: 72rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-case__btnArea {
    margin-top: 6rem;
  }
}

/* p-plan */
.p-plan {
  padding: 13.4rem 0;
}
.p-plan__scroll {
  margin-top: 3.4rem;
}
.p-plan__scroll img {
  margin: 0 1rem 0 auto;
}
@media screen and (max-width: 768px) {
  .p-plan__inner {
    padding: 0 0 0 1.6rem;
  }
}
.p-plan__wrapper {
  overflow-x: auto;
}
.p-plan__tableArea {
  max-width: 103.8rem;
  margin: 7rem auto 0;
  background-color: #F5F5F5;
  font-size: 2rem;
  font-weight: 700;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .p-plan__tableArea {
    width: 62.6rem;
    max-width: 62.6rem;
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
.p-plan__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-plan__header p {
  text-align: center;
  padding: 2.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-plan__header p {
    padding: 1.6rem;
  }
}
.p-plan__header p:nth-child(1) {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .p-plan__header p:nth-child(1) {
    width: 11.6rem;
  }
}
.p-plan__header p:nth-child(2), .p-plan__header p:nth-child(3) {
  border-left: 1px solid #ccc;
  width: calc((100% - 20rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-plan__header p:nth-child(2), .p-plan__header p:nth-child(3) {
    width: calc((100% - 11.6rem) / 2);
  }
}
.p-plan__fl {
  font-size: 2.4rem;
  background-color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .p-plan__fl {
    font-size: 1.6rem;
  }
}
.p-plan__campain {
  color: #DB3333;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-plan__campain {
    display: block;
    text-align: center !important;
  }
}
.p-plan__high {
  color: #111;
  position: absolute;
  top: 0;
  left: calc(50% - 5.1rem);
  padding: 0 1rem;
}
@media screen and (max-width: 768px) {
  .p-plan__high {
    top: 1.2rem;
    left: calc(50% - 4rem);
  }
}
.p-plan__high::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #111;
}
.p-plan__num {
  display: inline-block;
  font-size: 3.2rem;
  line-height: 1;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .p-plan__num {
    line-height: 1.6;
  }
}
.p-plan__bodyLine {
  border-top: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-plan__bodyLine p {
  text-align: center;
  padding: 1.2rem;
}
.p-plan__bodyLine p:nth-child(1) {
  width: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-plan__bodyLine p:nth-child(1) {
    width: 11.6rem;
  }
}
.p-plan__bodyLine p:nth-child(2), .p-plan__bodyLine p:nth-child(3) {
  text-align: left;
  border-left: 1px solid #ccc;
  width: calc((100% - 20rem) / 2);
  background-color: #FFF7C4;
  padding: 3rem 2.5rem 3rem 3rem;
}
@media screen and (max-width: 768px) {
  .p-plan__bodyLine p:nth-child(2), .p-plan__bodyLine p:nth-child(3) {
    width: calc((100% - 11.6rem) / 2);
    padding: 4rem 2.5rem 1rem 1rem;
  }
}
.p-plan__bodyLine--fukidashi {
  position: relative;
}
.p-plan__bodyLine--fukidashi p:nth-child(2), .p-plan__bodyLine--fukidashi p:nth-child(3) {
  padding-bottom: 21rem;
}
@media screen and (max-width: 768px) {
  .p-plan__bodyLine--fukidashi p:nth-child(2), .p-plan__bodyLine--fukidashi p:nth-child(3) {
    padding-bottom: 19rem;
  }
}
.p-plan__fukidashi {
  width: 43.4rem;
  max-width: 100%;
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 12rem);
}
@media screen and (max-width: 768px) {
  .p-plan__fukidashi {
    width: 41rem;
    left: calc(50% - 14.6rem);
  }
}
.p-plan__fukidashi img {
  width: 100%;
}
.p-plan__center {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* p-contact */
.p-contact {
  padding: 4rem 0 16rem;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding: 4rem 0;
  }
}
.p-contact__inner {
  width: 81rem;
  margin: auto;
}
.p-contact__box {
  border: 4px solid var(--color-main);
  text-align: center;
  margin-top: 3rem;
}
.p-contact__box p {
  font-size: 2.4rem;
  font-weight: 700;
  padding: 1.4rem 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-contact__box p {
    font-size: 1.8rem;
  }
}
.p-contact__txt {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-contact__txt {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}
.p-contact__formArea {
  margin: 4rem auto 0;
  border: 1px solid var(--color-main);
  padding: 2rem 4rem;
}
@media screen and (max-width: 768px) {
  .p-contact__formArea {
    padding: 2rem 1.6rem;
  }
}

/* p-company */
.p-company {
  padding: 10rem 0 18rem;
  background: url(../../assets/images/company_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-company {
    padding: 6.2rem 0 4rem;
  }
}
.p-company__box {
  max-width: 104rem;
  margin: 9rem auto 0;
  border-radius: 30px;
  background-color: var(--color-white);
  padding: 6rem 5%;
}
@media screen and (max-width: 768px) {
  .p-company__box {
    padding: 2rem 1.3rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
}
.p-company__list {
  max-width: 68.1rem;
  margin: auto;
}
.p-company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-company__item:not(:first-child) {
  margin-top: 1.4rem;
}
.p-company__th {
  width: 13.6rem;
  font-weight: 700;
  line-height: 1.875;
  color: var(--color-accent);
}
@media screen and (max-width: 768px) {
  .p-company__th {
    width: 7.5rem;
  }
}
.p-company__td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
  line-height: 1.875;
}

/* u-align */
.u-align--center {
  text-align: center !important;
}
.u-align--right {
  text-align: right !important;
}

/* u-txt */
.u-txt--marker {
  position: relative;
  z-index: 2;
}
.u-txt--marker::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 0;
  width: 100%;
  height: 1.7rem;
  background-color: var(--color-marker);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .u-txt--marker::before {
    height: 1rem;
    bottom: 0.4rem;
  }
}
.u-txt--marker > span {
  position: relative;
  z-index: 2;
}
.u-txt--white::before {
  background-color: #fff;
}
.u-txt--bold {
  font-weight: var(--fontWeight-bold) !important;
}

/* u-display */
.u-display--pcNone {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-display--pcNone {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .u-display--spNone {
    display: none !important;
  }
}
.u-display--inlineBlock {
  display: inline-block;
}