@charset "UTF-8";
/*
Theme Name: FIRE大家サロン
*/

@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-menu: calc(var(--zIndex) * 2);
  --zIndex-header: calc(var(--zIndex) * 3);
  --zIndex-btnMenu: calc(var(--zIndex) * 3);
  --zIndex-logo: calc(var(--zIndex) * 4);
  --zIndex-fixedCta: calc(var(--zIndex) * 10);
  --zIndex-overlay: calc(var(--zIndex) * 12);
  --color-main: #0B2651;
  --color-accent: #97140B;
  --color-white: #fff;
  --color-black: #000;
  --color-text: #333333;
  --bg-dark:#31486D;
  --fontFamily-base: "Noto Sans JP", sans-serif;
  --fontFamily-accent: "Noto Serif JP", serif;
  --fontFamily-roboto: "Roboto", sans-serif;
  --lineHeight-base: 1.5;
  --lineHeight-tight: 1.2;
  --lineHeight-loose: 2;
  --fontSize-base: 1.8rem;
  --fontWeight-base: 400;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontColor-base: #1E1E1E;
}

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

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 {
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--zIndex-header);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1000px) {
  .l-header {
    height: 7rem;
  }
}
.l-header.is_scrolled {
  background-color: var(--color-main);
}
@media screen and (max-width: 1000px) {
  .l-header.is_scrolled {
    background-color: var(--color-white);
  }
}
.l-header__inner {
  height: 100%;
  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;
  padding-left: 4.6rem;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-left: 2.4rem;
  }
}
.l-header__logo {
  width: 25.9rem;
  position: relative;
  z-index: var(--zIndex-logo);
}
@media screen and (max-width: 1224px) {
  .l-header__logo {
    width: 18.5rem;
  }
}
.l-header__logo img, .l-header__logo svg {
  width: 100%;
}
.l-header__gnav {
  min-width: 62.3611111111vw;
  height: 100%;
  background: url(images/gnav_bg.png) no-repeat top left/cover;
  padding: 0 3rem 0 6rem;
}
@media screen and (max-width: 1000px) {
  .l-header__gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--zIndex-menu);
    background: var(--color-white);
    padding: 0;
    padding-top: 11rem;
  }
  .l-header__gnav.menu_isOpen {
    display: block;
    overflow-y: scroll;
  }
}
.l-header__btn {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-header__btn {
    display: block;
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    z-index: var(--zIndex-btnMenu);
  }
}
.l-header__btnCta {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-header__btnCta {
    display: block;
    padding: 2rem 2rem 4.5rem;
    background-color: var(--color-main);
    margin-top: 6rem;
  }
}
.l-header__btnCta a {
  max-width: 33rem;
  display: block;
  margin: 0 auto;
}
.l-header__btnCta a img {
  width: 100%;
}

/* l-footer */
.l-footer {
  color: var(--color-main);
  text-align: center;
  padding: 9rem 0 2rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 8.4rem 0 10rem;
  }
}
.l-footer__logo {
  font-weight: var(--fontWeight-bold);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.2em;
}
	.l-footer__logo a { color: var(--color-main); }

.l-footer__copyright {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin-top: 5.8rem;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    font-size: 1rem;
    margin-top: 7.8rem;
  }
}

/* l-inner */
.l-inner {
  width: 84rem;
  max-width: 100%;
  padding: 0 2rem;
  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*/
.c-gnav {
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .c-gnav {
    height: initial;
  }
}
.c-gnav__list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .c-gnav__list {
    height: initial;
    display: block;
  }
}
.c-gnav__link {
  display: block;
  font-size: 1.6rem;
  color: var(--color-white);
  font-weight: var(--fontWeight-medium);
  padding: 0 1.5rem;
}
@media screen and (max-width: 1224px) {
  .c-gnav__link {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .c-gnav__link {
    font-size: 1.6rem;
    color: var(--color-main);
    max-width: 14.6rem;
    margin: 0 auto;
    padding: 1.6rem 0 1.6rem 3.4rem;
    position: relative;
  }
  .c-gnav__link::before {
    content: "ー";
    color: var(--color-accent);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
}
.c-gnav__link--cta {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 4.6rem;
  border-radius: 60px;
  border: 2px solid var(--color-white);
  background: -webkit-gradient(linear, left top, right top, color-stop(0.14%, #F58945), color-stop(101.86%, #E71E1E));
  background: linear-gradient(90deg, #F58945 0.14%, #E71E1E 101.86%);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  margin-left: 4.2rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1224px) {
  .c-gnav__link--cta {
    padding: 1rem 2rem;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .c-gnav__link--cta {
    display: none;
  }
}
.c-gnav__link--cta:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* c-btnMenu*/
.c-btnMenu {
  width: 3.8rem;
  height: 3.8rem;
  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: transparent;
  border: transparent;
}
.c-btnMenu span {
  display: inline-block;
  width: 60%;
  height: 3px;
  background-color: var(--color-main);
  position: relative;
}
.c-btnMenu span::before, .c-btnMenu span::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu span::before {
  top: 0.6rem;
}
.c-btnMenu span::after {
  top: -0.6rem;
}

/* btnMenu_isOnがついた時のスタイル */
.c-btnMenu.btnMenu_isOn span {
  background-color: transparent;
}
.c-btnMenu.btnMenu_isOn span::before, .c-btnMenu.btnMenu_isOn span::after {
  top: 0;
}
.c-btnMenu.btnMenu_isOn span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-btnMenu.btnMenu_isOn span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* c-ttl*/
.c-ttl {
  color: var(--color-main);
  text-align: center;
}
.c-ttl__main {
  font-size: 4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.45;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-ttl__main {
    font-size: 2.4rem;
    line-height: 1.4545454545;
  }
}
.c-ttl__en {
  font-family: var(--fontFamily-roboto);
  font-size: 1.6rem;
  font-weight: var(--fontWeight-medium);
  letter-spacing: initial;
  text-transform: uppercase;
  margin-top: 1.2rem;
}
.c-ttl__en span {
  display: inline-block;
  color: var(--color-white);
  background-color: var(--color-main);
  padding: 0.4rem 4.8rem;
}
.c-ttl--white {
  color: var(--color-white);
}
.c-ttl--white .c-ttl__en span {
  background: transparent;
  border: 1px solid var(--color-white);
}

/* c-cta */
.c-cta {
  position: relative;
}
.c-cta img {
  width: 100%;
}
.c-cta__btnArea {
  width: 22.9166666667vw;
  position: absolute;
  bottom: 5.6944444444vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-cta__btnArea {
    width: 33rem;
    bottom: 30.4vw;
  }
}
.c-cta__btn {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-cta__btn:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-cta__btn img {
  width: 100%;
}

/* c-boxToggle*/
.c-boxToggle {
  background-color: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
}
.c-boxToggle__trigger {
  cursor: pointer;
  padding: 1em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  padding: 2.2rem 3.4rem;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__trigger {
    padding: 1.6rem 1rem;
    gap: 1rem;
  }
}
.c-boxToggle__triggerTtl {
  font-family: var(--fontFamily-roboto);
  font-size: 2.8rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .c-boxToggle__triggerTtl {
    font-size: 2.4rem;
  }
}
.c-boxToggle__triggerTxt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2rem;
  font-weight: var(--fontWeight-medium);
}
@media screen and (max-width: 768px) {
  .c-boxToggle__triggerTxt {
    font-size: 1.6rem;
  }
}
.c-boxToggle__triggericon {
  width: 2.6rem;
  height: 2.6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__triggericon {
    width: 2rem;
    height: 2rem;
  }
}
.c-boxToggle__triggericon::before, .c-boxToggle__triggericon::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  top: 50%;
  left: 0;
  -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;
}
.c-boxToggle__triggericon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-boxToggle__content {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 3.4rem;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  background-color: #F3F3F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__content {
    padding: 0 1rem;
    gap: 1rem;
  }
}
.c-boxToggle__contentTtl {
  font-family: var(--fontFamily-roboto);
  font-size: 2.8rem;
  font-weight: var(--fontWeight-medium);
  color: var(--color-accent);
}
@media screen and (max-width: 768px) {
  .c-boxToggle__contentTtl {
    font-size: 2.4rem;
  }
}
.c-boxToggle__contentTxt {
  font-size: 2rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__contentTxt {
    font-size: 1.6rem;
  }
}
.c-boxToggle.is-active .c-boxToggle__triggericon::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.c-boxToggle.is-active .c-boxToggle__content {
  padding: 2.2rem 3.4rem;
  line-height: normal;
  height: auto;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-boxToggle.is-active .c-boxToggle__content {
    padding: 1.6rem 1rem;
  }
}

/* c-fixedCta */
.c-fixedCta {
  display: none;
}
.page .c-fixedCta {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .c-fixedCta {
    display: block;
    width: 100%;
    padding: 1.5rem 1.8rem;
    background-color: var(--color-main);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: var(--zIndex-fixedCta);
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.c-fixedCta img {
  width: 100%;
}
.c-fixedCta.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* p-mv */
.p-mv {
  position: relative;
  z-index: 2;
}
.p-mv img {
  width: 100%;
}
.p-mv__btn {
  width: 29.8611111111vw;
  position: absolute;
  bottom: 6.1805555556vw;
  left: 21.1111111111vw;
}
@media screen and (max-width: 768px) {
  .p-mv__btn {
    width: 88vw;
    bottom: 11.2vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-mv__btn a {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-mv__btn a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* p-problem */
.p-problem {
  padding: 11.4rem 0;
  background: url(images/problem_bg.jpg) no-repeat bottom center/cover;
  margin-top: -2.5vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-problem {
    padding: 4.4rem 0 3.2rem;
    background-image: url(images/problem_bg_sp.jpg);
  }
}
.p-problem__inner {
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .p-problem__inner {
    padding: 0;
  }
}
.p-problem__ttl {
  font-size: 4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-problem__ttl {
    font-size: 2.2rem;
  }
}
.p-problem__img {
  max-width: 97.7rem;
  margin: 5.6rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-problem__img {
    margin: 4.4rem auto 0;
    padding-left: 2rem;
  }
}
.p-problem__img img {
  width: 100%;
}

/* p-feature */
.p-feature__inner {
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .p-feature__inner {
    padding: 0;
  }
}
.p-feature__lead {
  margin-bottom: 6.8rem;
}
@media screen and (max-width: 768px) {
  .p-feature__lead {
    margin-bottom: 3.5rem;
  }
}
.p-feature__lead img {
  width: 100%;
}
.p-feature__body {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .p-feature__body {
    margin-top: 3.5rem;
  }
}
.p-feature__list {
  max-width: 94.9rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.8rem 13.4rem;
}
@media screen and (max-width: 768px) {
  .p-feature__list {
    max-width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 3.8rem;
  }
}
.p-feature__item img {
  width: 100%;
}

/* p-owner */
.p-owner {
  padding-top: 11.2rem;
}
@media screen and (max-width: 768px) {
  .p-owner {
    padding-top: 8.2rem;
    padding-bottom: 3.6rem;
  }
}
.p-owner__inner {
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .p-owner__inner {
    padding: 0;
  }
}
.p-owner__body {
  height: 49.5833333333vw;
  margin-top: 5rem;
  background: url(images/owner_img.jpg) no-repeat bottom center/100% auto;
  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) {
  .p-owner__body {
    height: initial;
    margin-top: 3.2rem;
    background: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
  }
}
.p-owner__imgSP {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-owner__imgSP {
    display: block;
    width: 100%;
  }
  .p-owner__imgSP img {
    width: 100%;
  }
}
.p-owner__txtArea {
  padding-left: 50vw;
  padding-right: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .p-owner__txtArea {
    padding: 0 2rem;
  }
}
.p-owner__name {
  font-size: 4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .p-owner__name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-owner__name {
    font-size: 2.4rem;
  }
}
.p-owner__kana {
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.2;
  margin-top: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .p-owner__kana {
    font-size: 1.4rem;
    margin-top: 0.4rem;
  }
}
.p-owner__txt {
  max-width: 44.2rem;
  font-size: 2rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.6;
  margin-top: 3.8rem;
}
@media screen and (max-width: 1200px) {
  .p-owner__txt {
    font-size: 1.4rem;
    margin-top: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-owner__txt {
    font-size: 1.6rem;
    margin-top: 2.8rem;
  }
}
.p-owner__list {
  margin-top: 3.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .p-owner__list {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-owner__list {
    margin-top: 2rem;
  }
}
.p-owner__item {
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.6;
  padding-left: 2.8rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .p-owner__item {
    font-size: 1.4rem;
    padding-left: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-owner__item {
    font-size: 1.6rem;
  }
}
.p-owner__item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#F58D46), to(#EA2F25));
  background: linear-gradient(180deg, #F58D46 0%, #EA2F25 100%);
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .p-owner__item::before {
    width: 1.6rem;
    height: 1.6rem;
  }
}

/* p-achievement */
.p-achievement {
  padding: 10rem 0;
  background: url(images/achievement_bg.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-achievement {
    padding: 5.2rem 0;
    background-image: url(images/achievement_bg_sp.jpg);
  }
}
.p-achievement__inner {
  padding: 0 2rem;
}
.p-achievement__lead {
  color: var(--color-main);
  font-size: 2rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.6;
  margin-top: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-achievement__lead {
    font-size: 1.4rem;
  }
}
.p-achievement__body {
  margin-top: 8.2rem;
}
@media screen and (max-width: 768px) {
  .p-achievement__body {
    margin-top: 3rem;
  }
}
.p-achievement__list {
  max-width: 94rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.2rem 6rem;
}
@media screen and (max-width: 768px) {
  .p-achievement__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.8rem;
  }
}
.p-achievement__item--badge {
  position: relative;
}
.p-achievement__item--badge::before {
  content: "";
  display: block;
  width: 13.4rem;
  height: 11.5rem;
  background: url(images/achievement_2_badge.png) no-repeat center center/contain;
  position: absolute;
  top: -3rem;
  right: -2.4rem;
}
@media screen and (max-width: 768px) {
  .p-achievement__item--badge::before {
    display: none;
  }
}

/* p-voice */
.p-voice {
  padding: 8.4rem 0 10rem;
}
@media screen and (max-width: 768px) {
  .p-voice {
    padding: 5.8rem 0 6rem;
    background-image: url(images/voice_bg_sp.jpg);
  }
}
.p-voice__inner {
  padding: 0 2rem;
}
.p-voice__body {
  margin-top: 6.8rem;
}
@media screen and (max-width: 768px) {
  .p-voice__body {
    margin-top: 3rem;
  }
}
.p-voice__list {
  max-width: 102.6rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-voice__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}

/* p-plan */
.p-plan {
  padding: 10rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-plan {
    padding: 6rem 0;
  }
}
.p-plan__deco {
  width: 17.4rem;
  position: absolute;
  top: 10rem;
  left: calc(50% + 34rem);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-plan__deco {
    top: 10.7rem;
    width: 8.4rem;
    left: auto;
    right: 0;
  }
}
.p-plan__deco img {
  width: 100%;
}
.p-plan__inner {
  padding: 0 2rem;
}
.p-plan__tableArea {
  margin-top: 6.8rem;
}
@media screen and (max-width: 768px) {
  .p-plan__tableArea {
    margin-top: 4.4rem;
  }
}
.p-plan__table {
  max-width: 81.2rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .p-plan__table {
    gap: 0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-plan__table:not(:first-child) {
    margin-top: 6rem;
  }
}
.p-plan__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-plan__item {
    gap: 0.4rem;
    font-size: 1.6rem;
  }
}
.p-plan__item .th {
  width: 27.4rem;
  color: var(--color-white);
  background-color: var(--color-main);
  padding: 2rem 1.2rem;
  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__item .th {
    width: 14rem;
    padding: 1.4rem;
    font-size: 1.4rem;
  }
}
.p-plan__item .th span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-plan__item .th span {
    font-size: 1.2rem;
  }
}
.p-plan__item .th.price {
  border-radius: 20px 0 0 0;
}
.p-plan__item .td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1.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;
}
@media screen and (max-width: 768px) {
  .p-plan__item .td {
    padding: 1.2rem;
  }
}
.p-plan__item .td img {
  margin: 0 auto;
}
.p-plan__item .td.light {
  background-color: #EEF3FC;
}
.p-plan__item .td.standard {
  background-color: #FFEFEF;
}
.p-plan__item .td.price {
  padding: 2.4rem 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-plan__item .td.price {
    padding: 1.4rem 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-plan__item .td.check img {
    width: 3.6rem;
  }
}
.p-plan__item .td .num {
  font-size: 4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.175;
}
@media screen and (max-width: 768px) {
  .p-plan__item .td .num {
    font-size: 3rem;
  }
}
.p-plan__item .td .unit {
  font-size: 3rem;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .p-plan__item .td .unit {
    font-size: 2rem;
  }
}
.p-plan__item .td .note {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.2142857143;
}
@media screen and (max-width: 768px) {
  .p-plan__item .td .note {
    font-size: 1.2rem;
  }
}
.p-plan__item--head .th.name {
  color: transparent;
  background-color: var(--color-white);
}
.p-plan__item--head .td {
  border-radius: 20px 20px 0 0;
  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-plan__item--head .td.light {
  color: var(--color-black);
  background-color: #92AFDF;
}
.p-plan__item--head .td.standard {
  color: var(--color-white);
  background-color: #E86021;
}
.p-plan__btn {
  max-width: 21.8rem;
  margin: 1.8rem auto 0;
}
@media screen and (max-width: 768px) {
  .p-plan__btn {
    margin-top: 1.2rem;
  }
}
.p-plan__btn a {
  display: block;
  border-radius: 10rem;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-plan__btn a img {
  width: 100%;
}
.p-plan__btn a:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0.2rem);
          transform: translateY(0.2rem);
}
.p-plan__note {
  font-size: 2rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.9;
  text-align: center;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-plan__note {
    font-size: 1.8rem;
    line-height: 1.7777777778;
    margin-top: 4rem;
  }
}
.p-plan__banner {
  max-width: 110rem;
  margin: 3.2rem auto 0;
  position: relative;
}
.p-plan__banner img {
  width: 100%;
  margin-top: 2rem;
}
.p-plan__bannerBtnArea {
  width: 36.3636363636%;
  max-width: 100%;
  position: absolute;
  right: 7.2727272727%;
  bottom: 20.4198473282%;
}
@media screen and (max-width: 768px) {
  .p-plan__bannerBtnArea {
    width: 30.3rem;
    bottom: 5.9rem;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}
.p-plan__bannerBtnArea img {
  width: 100%;
}
.p-plan__bannerBtnArea a {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-plan__bannerBtnArea a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* p-flow */
.p-flow {
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .p-flow {
    padding-bottom: 6rem;
  }
}
.p-flow__body {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .p-flow__body {
    margin-top: 5.6rem;
  }
}
.p-flow__inner {
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .p-flow__inner {
    padding: 0 3.6rem;
  }
}
.p-flow__list {
  max-width: 109rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7rem;
}
@media screen and (max-width: 768px) {
  .p-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
  }
}
.p-flow__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-flow__item img {
  width: 100%;
  height: auto;
}
.p-flow__arrow {
  width: 3rem;
}
@media screen and (max-width: 768px) {
  .p-flow__arrow {
    rotate: 90deg;
  }
}

/* p-faq */
.p-faq {
  padding: 8rem 0 12rem;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 7.6rem 0 12.8rem;
  }
}
.p-faq__deco {
  width: 22.8rem;
  position: absolute;
  top: 2.8rem;
  left: calc(50% + 30rem);
}
@media screen and (max-width: 768px) {
  .p-faq__deco {
    width: 10.5rem;
    top: 1.5rem;
    left: auto;
    right: -1.4rem;
  }
}
.p-faq__deco img {
  width: 100%;
}
.p-faq__body {
  margin-top: 5.2rem;
}
@media screen and (max-width: 768px) {
  .p-faq__body {
    margin-top: 3.8rem;
  }
}
.p-faq__list {
  max-width: 80rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}

/* p-message */
.p-message {
  padding: 10rem 0 12rem;
}
@media screen and (max-width: 768px) {
  .p-message {
    padding: 6rem 0;
  }
}
.p-message__inner {
  max-width: 94rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.p-message__lead {
  font-family: var(--fontFamily-accent);
  font-weight: var(--fontWeight-bold);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 768px) {
  .p-message__lead {
    font-size: 1.8rem;
    margin-bottom: 3.2rem;
  }
}
.p-message__ttl {
  font-size: 4rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-message__ttl {
    max-width: 31.8rem;
    margin: 0 auto;
    font-size: 2.4rem;
    text-align: left;
  }
}
.p-message__ttl span {
  display: inline-block;
}
.p-message__body {
  margin-top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5555555556%;
}
@media screen and (max-width: 768px) {
  .p-message__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
    margin-top: 3.2rem;
  }
}
.p-message__txtArea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  font-weight: var(--fontWeight-medium);
  line-height: 2.125;
}
@media screen and (max-width: 768px) {
  .p-message__txtArea {
    line-height: 1.75;
  }
}
.p-message__imgArea {
  width: 41rem;
  max-width: 45.5555555556%;
}
@media screen and (max-width: 768px) {
  .p-message__imgArea {
    width: 28rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
.p-message__imgArea img {
  width: 100%;
}
.p-message__sign {
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.6rem;
  margin-top: 3.2rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-message__sign {
    font-size: 1.2rem;
    padding-right: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-message__sign img {
    max-width: 14.5rem;
  }
}

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

/* u-txt */
/* 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;
}

/*   コンタクト　　　*/
table#contact_table {
	margin: 2rem auto 0;
	width: 100%;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
	table#contact_table tr {
		border-bottom: 1px solid #ddd;
	}
	table#contact_table th,
	table#contact_table td {
		padding: 2rem;
		font-size: 16px;
		vertical-align: middle;
	}
	table#contact_table th {
		width: 250px;
		font-weight: bold;
		color: #333;
	}
	table#contact_table td {
		text-align: left;
		line-height: 1em;
	}
	table#contact_table td:first-of-type { width: 120px; }
	table#contact_table td p { display: inline-block; margin-bottom: 20px; line-height: 2em; }
	table#contact_table td span { border: none; width: auto; }
	table#contact_table td span.must { display: block; margin: 0 !important; padding: 2px 6px; background: #c4a874; font-size: 11px; color:#fff; text-align: center; }
	.mw_wp_form .error { display: block; }
input { 
    padding: 5px;
	height: 50px; 
	line-height: 50px; 
}
input[type="radio"] {
	margin:0 5px 0 10px;
	border:none;
	top:-2px;
	width:15px;
	height:15px;
}
	.mwform-radio-field label {
		display: inline-block;
		margin-top: 10px;
		text-align: left;
	}
		.mwform-radio-field label input {
			float: left;
		}
		.mwform-radio-field label .mwform-radio-field-text {
			float: left;
			font-size: 17px;
		}
		.mw_wp_form .vertical-item { display: inline-block !important; }
		.mw_wp_form .horizontal-item + .horizontal-item { margin-left: 0 !important; }
.mwform-checkbox-field label {
	float: left;
	display:inline-block;
	margin-right: 20px;
}
input[type="checkbox"] {
	margin: 8px 5px 0 10px;
	border:none;
	top:-2px;
	width:15px;
	height:15px;
}
	.mwform-checkbox-field label {
		width: 31%;
		height: 25px;
		text-align: left;
	}
		.mwform-checkbox-field label input {
			float: left;
		}
		.mwform-checkbox-field label .mwform-checkbox-field-text {
			float: left;
		}
input[type="text"], input[type="email"], input[type="url"] {
	width: 350px;
	height: 50px;
	font-size: 16px;
}
td.full_input input[type="text"] {
    width: 100%;
}
.mwform-tel-field { width: 100%; border: none; text-align: left; }
.mwform-tel-field input {
	width: 90px;
	height: 50px;
	font-size: 18px;
}
textarea {
	margin: 10px 0;
	width: 750px;
	height: 250px;
	font-size: 14px;
}
table#contact_table td.table_center { text-align: center; line-height: 1.2em; }
table#contact_table td.table_center p { font-size: 14px !important; text-align: left; line-height: 1.4em !important; }
table#contact_table td.table_center span { font-size: 13px; }

input:focus { border:solid 1px #f7736e; }
select {
	border-radius: 2px;
	min-width: 200px;
	height: 50px;
	font-size: 16px;
}
#ui-datepicker-div select { min-width: auto; height: auto; }
#ui-datepicker-div { min-width: 300px; }

select.ui-datepicker-year, select.ui-datepicker-month {
    height: auto
}

.submit{
	margin: 0 auto;
	text-align:center;
}
.submit input {
	margin: 20px auto;
	padding: 17px 0 20px;
	width: 350px;
	height: 60px;
	border-radius: 50px;
	border: 2px solid var(--color-white);
	background: linear-gradient(90deg, #F58945 0.14%, #E71E1E 101.86%);
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	line-height: 1;
}
.mw_wp_form_confirm .submit input{
	margin: 20px auto;
	padding: 17px 0 20px;
	width: 350px;
	height: 60px;
	border-radius: 50px;
	border: 2px solid var(--color-white);
	background: linear-gradient(90deg, #F58945 0.14%, #E71E1E 101.86%);
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	line-height: 1;
}
.mw_wp_form_confirm .back input{
	width: 200px;
	height: 50px !important;
	border-radius: 50px;
	background: #888;
	overflow:hidden;
	cursor:pointer;
	color: #fff;
	line-height: 1
}
.back{
	margin:0 auto 30px;
	text-align:center;
}
.thanks {
	margin: 0 auto 40px;
	padding: 20px 20px 10px;
	border: 1px solid #d4c298;
	font-size: 16px;
	text-align: center;
}
@media all and (max-width: 767px) {
	table#contact_table { margin: 0 auto 5%; }
	table#contact_table th,
	table#contact_table td { float: left; padding: 3% 2%; }
	table#contact_table th { width: 80%; text-align: left; }
	table#contact_table th.td_center { width: 100%; text-align:center; }
	table#contact_table td:first-of-type { width: 20%; }
	table#contact_table td:nth-of-type(2) {
		width: 100%;
		text-align: center;
	}
	table#contact_table td span.must { text-align: center; }
    input { width: 100%; }
    input[type="text"], input[type="email"], input[type="url"] { width: 100%; }
    input[type="radio"] { margin:0 0 0 10px; }
    .mwform-radio-field label {
		display: block;
		margin-bottom: 5px !important;
		text-align: left;
		line-height: 1.2;
	}
		.mwform-radio-field label .mwform-radio-field-text { float: none; }
	.mwform-checkbox-field label { width: 100%; }
    textarea {
	    width: 100%;
	    height: 200px;
    }
    input[type="number"] { width: 100px; }
    textarea {
	    width: 100%;
	    height: 200px;
    }
    select { min-width: 100%; max-width: 100%; height: 50px; }
    #ui-datepicker-div { min-width: auto }
	/* iOS ボタンリセット */
	input[type="submit"], input[type="button"] {
 		border-radius: 0;
		-webkit-box-sizing: content-box;
		-webkit-appearance: button;
		appearance: button;
		border: none;
		box-sizing: border-box;
		cursor: pointer;
	}
	input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration { display: none; }
	input[type="submit"]::focus, input[type="button"]::focus { outline-offset: -2px; }

    .submit{
	    margin: 0 auto;
    	text-align:center;
    }
    .submit input { width: 100%; }
    .mw_wp_form_confirm .submit input{ width: 100%; }
    .mw_wp_form_confirm .back input{ width: 60%; font-size: 14px; }   
}



