@charset "UTF-8";
/* ==========================================================================
 *
 * root scss
 *
========================================================================== */
/* ==========================================================================
   media query
========================================================================== */
/* ==========================================================================
   color
========================================================================== */
:root {
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray: #8e887f;
  --color-purple: #8c52ff;
  --color-purple-bg: #efe7ff;
  --color-red: #ff5757;
  --color-red-bg: #ffe8e8;
  --color-orange: #ff914d;
  --color-orange-bg: #fff3eb;
  --color-pink: #e76b86;
  --color-pink-bg: #fceaef;
  --color-blue: #2849b7;
  --color-blue-bg: #eff2ff; }

/* ==========================================================================
   font-size
========================================================================== */
:root {
  --font-size-10: 1rem;
  --font-size-11: 1.1rem;
  --font-size-12: 1.2rem;
  --font-size-13: 1.3rem;
  --font-size-14: 1.4rem;
  --font-size-15: 1.5rem;
  --font-size-16: 1.6rem;
  --font-size-17: 1.7rem;
  --font-size-18: 1.8rem;
  --font-size-19: 1.9rem;
  --font-size-20: 2rem;
  --font-size-22: 2.2rem;
  --font-size-24: 2.4rem;
  --font-size-26: 2.6rem;
  --font-size-28: 2.8rem;
  --font-size-30: 3.0rem;
  --font-size-32: 3.2rem;
  --font-size-34: 3.4rem;
  --font-size-36: 3.6rem; }

@media screen and (max-width: 799px) {
  :root {
    --font-size-11: 1rem;
    --font-size-12: 1.1rem;
    --font-size-13: 1.2rem;
    --font-size-14: 1.3rem;
    --font-size-15: 1.4rem;
    --font-size-16: 1.5rem;
    --font-size-17: 1.5rem;
    --font-size-18: 1.5rem;
    --font-size-19: 1.7rem;
    --font-size-20: 1.8rem;
    --font-size-22: 1.8rem;
    --font-size-24: 2rem;
    --font-size-26: 2rem;
    --font-size-28: 2.2rem;
    --font-size-30: 2.4rem;
    --font-size-32: 2.6rem;
    --font-size-34: 2.8rem;
    --font-size-36: 3rem; } }
/* ==========================================================================
   font-family
========================================================================== */
:root {
  --font-family-main: YakuHanMP, "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  --font-family-sans: "Lato", sans-serif;
  --font-family-serif: "Times New Roman", serif; }

/* ==========================================================================
   font-wight
========================================================================== */
:root {
  --font-wight-regular: 400;
  --font-wight-medium: 500;
  --font-wight-semibold: 600;
  --font-wight-bold: 700; }

/* ==========================================================================
   line-height
========================================================================== */
:root {
  --line-height-s: 1.2;
  --line-height-m: 1.4;
  --line-height-l: 1.6; }

/* ==========================================================================
   letter-spacing
========================================================================== */
:root {
  --letter-spacing-s: .025em;
  --letter-spacing-m: .05em;
  --letter-spacing-l: .075em; }

/* ==========================================================================
   width
========================================================================== */
:root {
  --container-s: 78rem;
  --container-m: 126rem;
  --container-l: 136rem; }

/* ==========================================================================
   z-index
========================================================================== */
:root {
  --z-index-toggle: 100;
  --z-index-sitemap: 90;
  --z-index-header: 80;
  --z-index-contact: 70;
  --z-index-footer: 60;
  --z-index-main: 50; }

/* ==========================================================================
 *
 * mixin scss
 *
========================================================================== */
/* ==========================================================================
   container
========================================================================== */
/* ==========================================================================
   font-feature-settings
========================================================================== */
/* ==========================================================================
   writing-mode-vertical
========================================================================== */
/* ==========================================================================
 *
 * nav scss
 *
========================================================================== */
/* ==========================================================================
   toggle
========================================================================== */
.l-toggle span {
  transition-property: transform, opacity, top, bottom, background;
  transition-duration: .5s;
  transition-timing-function: ease; }

.l-toggle.js-active span {
  background: var(--color-gray3); }
.l-toggle.js-active span:nth-child(1) {
  top: 6px;
  transform: rotate(15deg); }
.l-toggle.js-active span:nth-child(2) {
  opacity: 0; }
.l-toggle.js-active span:nth-child(3) {
  bottom: 6px;
  transform: rotate(-15deg); }

.l-toggle.js-change span {
  background: var(--color-black); }

/* ==========================================================================
   sitemap
========================================================================== */
.l-sitemap {
  opacity: 0;
  visibility: hidden;
  transition-property: transform, opacity;
  transition-duration: .25s;
  transition-timing-function: ease; }
  .l-sitemap ul li {
    transform: translate(0, 20px);
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .l-sitemap ul li:nth-child(2) {
      transition-delay: 0.2s; }
    .l-sitemap ul li:nth-child(3) {
      transition-delay: 0.4s; }
    .l-sitemap ul li:nth-child(4) {
      transition-delay: 0.6s; }
    .l-sitemap ul li:nth-child(5) {
      transition-delay: 0.8s; }
    .l-sitemap ul li:nth-child(6) {
      transition-delay: 1s; }
    .l-sitemap ul li:nth-child(7) {
      transition-delay: 1.2s; }
    .l-sitemap ul li:nth-child(8) {
      transition-delay: 1.4s; }
    .l-sitemap ul li:nth-child(9) {
      transition-delay: 1.6s; }
    .l-sitemap ul li:nth-child(10) {
      transition-delay: 1.8s; }
    .l-sitemap ul li:nth-child(11) {
      transition-delay: 2s; }

.l-sitemap.js-active {
  opacity: 1;
  visibility: visible; }
  .l-sitemap.js-active ul li {
    transform: translate(0, 0);
    opacity: 1; }

/* ==========================================================================
 *
 * nav scss
 *
========================================================================== */
/* ==========================================================================
   img-scale
========================================================================== */
.c-img-scale {
  overflow: hidden; }
  .c-img-scale img {
    transform: scale(1.2);
    transition-property: transform;
    transition-duration: 3.5s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }

.c-img-scale.js-active img {
  transform: scale(1); }

/* ==========================================================================
   footer-hide
========================================================================== */
.c-footer-hide {
  transition-property: opacity, visibility;
  transition-duration: .25s;
  transition-timing-function: ease; }

.c-footer-hide.js-active {
  opacity: 0;
  visibility: hidden; }

/* ==========================================================================
   fade
========================================================================== */
.c-fade {
  transform: translateY(10px);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-delay: .3s;
  transition-timing-function: ease; }

.c-fade._d1 {
  transition-delay: .6s; }

.c-fade._d2 {
  transition-delay: .9s; }

.c-fade.js-active {
  transform: translateY(0);
  opacity: 1; }

/* ==========================================================================
   link-target
========================================================================== */
.c-link-target {
  padding-top: .1rem;
  margin-top: -.1rem; }

/* ==========================================================================
 *
 * accordion scss
 * -
 *
========================================================================== */
.c-accordion {
  position: relative; }
  .c-accordion .accordion__input {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    top: 0;
    left: 0; }
  .c-accordion .accordion__label {
    width: 100%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: 0.4s ease; }
    .c-accordion .accordion__label::before {
      position: absolute;
      content: '+';
      top: 0;
      right: 0; }
  .c-accordion .accordion__conte {
    position: relative;
    overflow: hidden;
    height: 0;
    margin: 0;
    transition: 0.4s ease;
    opacity: 0; }
  .c-accordion .accordion__input:checked ~ .accordion__conte {
    height: auto;
    opacity: 1; }
  .c-accordion .accordion__input:checked ~ .accordion__label::before {
    content: '-'; }

/* ==========================================================================
 *
 * btn scss
 *
========================================================================== */
/* ==========================================================================
   btn1
========================================================================== */
.c-btn1 {
  background: var(--color-main1);
  border-radius: 3.2rem;
  color: var(--color-white);
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 27.5rem;
  height: 6.4rem;
  padding: 0 3rem 0 4rem;
  transition: background .25s ease; }
  .c-btn1 svg {
    fill: var(--color-white);
    width: 1.8rem;
    height: 1.8rem; }
  .c-btn1:hover {
    background: var(--color-black); }

/* ==========================================================================
   btn2
========================================================================== */
.c-btn2 {
  background: var(--color-main1);
  border-radius: 3.2rem;
  color: var(--color-white);
  font-family: var(--font-family-sans);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 27.5rem;
  height: 6.4rem;
  padding: 0 3rem 0 4rem;
  transition: background .25s ease; }
  .c-btn2 svg {
    fill: var(--color-white);
    width: 2.6rem;
    height: 2.6rem; }
  .c-btn2:hover {
    background: var(--color-black); }

.c-btn2__label {
  flex: 1;
  margin-left: 2rem; }

.c-btn2__txt {
  display: block;
  font-size: var(--font-size-15);
  margin-bottom: .3rem; }

.c-btn2__num {
  font-size: var(--font-size-10); }

/* ==========================================================================
   btn3
========================================================================== */
.c-btn3 {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15);
  display: flex;
  align-items: center; }
  .c-btn3 svg {
    width: 1.6rem;
    height: 1.6rem; }
  .c-btn3:hover .c-btn3__icon {
    background: var(--color-black); }
  .c-btn3:hover svg {
    fill: var(--color-white); }

.c-btn3__icon {
  border: solid var(--color-black) 1px;
  border-radius: 50%;
  margin-left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 3.6rem;
  transition: background .25s ease; }

/* ==========================================================================
   btn4
========================================================================== */
.c-btn4 {
  position: relative;
  font-family: var(--font-family-sans);
  font-size: var(--font-size-15); }
  .c-btn4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.5rem;
    width: 0;
    height: 1px;
    background-color: var(--color-black);
    transition: width .25s ease; }
  .c-btn4:hover::after {
    width: 100%; }

/* ==========================================================================
 *
 * text scss
 * text-anime1 / text-anime2
 *
========================================================================== */
/* ==========================================================================
   text-anime1
========================================================================== */
.c-text-anime1 .c-text-block {
  display: block; }
.c-text-anime1 .c-text-divide {
  display: block;
  overflow: hidden; }
  .c-text-anime1 .c-text-divide .js-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 100%, 0);
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .c-text-anime1 .c-text-divide .js-char:nth-child(1) {
      transition-delay: .3s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(2) {
      transition-delay: 0.35s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(3) {
      transition-delay: 0.4s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(4) {
      transition-delay: 0.45s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(5) {
      transition-delay: 0.5s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(6) {
      transition-delay: 0.55s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(7) {
      transition-delay: 0.6s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(8) {
      transition-delay: 0.65s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(9) {
      transition-delay: 0.7s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(10) {
      transition-delay: 0.75s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(11) {
      transition-delay: 0.8s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(12) {
      transition-delay: 0.85s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(13) {
      transition-delay: 0.9s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(14) {
      transition-delay: 0.95s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(15) {
      transition-delay: 1s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(16) {
      transition-delay: 1.05s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(17) {
      transition-delay: 1.1s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(18) {
      transition-delay: 1.15s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(19) {
      transition-delay: 1.2s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(20) {
      transition-delay: 1.25s; }
    .c-text-anime1 .c-text-divide .js-char:nth-child(21) {
      transition-delay: 1.3s; }
.c-text-anime1.js-active .c-text-block {
  display: block; }
.c-text-anime1.js-active .c-text-divide .js-char {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* ==========================================================================
   text-anime2
========================================================================== */
.c-text-anime2 .c-text-block {
  display: block; }
.c-text-anime2 .c-text-divide {
  display: block;
  overflow: hidden; }
  .c-text-anime2 .c-text-divide .js-char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scale(2);
    transition-property: transform, opacity;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); }
    .c-text-anime2 .c-text-divide .js-char:nth-child(1) {
      transition-delay: .3s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(2) {
      transition-delay: 0.35s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(3) {
      transition-delay: 0.4s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(4) {
      transition-delay: 0.45s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(5) {
      transition-delay: 0.5s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(6) {
      transition-delay: 0.55s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(7) {
      transition-delay: 0.6s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(8) {
      transition-delay: 0.65s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(9) {
      transition-delay: 0.7s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(10) {
      transition-delay: 0.75s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(11) {
      transition-delay: 0.8s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(12) {
      transition-delay: 0.85s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(13) {
      transition-delay: 0.9s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(14) {
      transition-delay: 0.95s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(15) {
      transition-delay: 1s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(16) {
      transition-delay: 1.05s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(17) {
      transition-delay: 1.1s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(18) {
      transition-delay: 1.15s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(19) {
      transition-delay: 1.2s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(20) {
      transition-delay: 1.25s; }
    .c-text-anime2 .c-text-divide .js-char:nth-child(21) {
      transition-delay: 1.3s; }
.c-text-anime2.js-active .c-text-block {
  display: block; }
.c-text-anime2.js-active .c-text-divide .js-char {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1); }

/* ==========================================================================
 *
 * common scss
 *
========================================================================== */
/* ==========================================================================
   #general
========================================================================== */
html {
  font-size: 62.5%; }
  @media screen and (min-width: 1920px) {
    html {
      font-size: 0.5211047421vw; } }
  @media screen and (min-width: 800px) and (max-width: 1199px) {
    html {
      font-size: 0.834028357vw; } }
  @media screen and (max-width: 374px) {
    html {
      font-size: 2.6737967914vw; } }

body {
  color: var(--color-gray);
  font-family: var(--font-family-main);
  font-optical-sizing: auto; }

h1, h2, h3, h4, h5, p, li, dt, dd {
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: var(--letter-spacing-s); }
  @media screen and (max-width: 799px) {
    h1, h2, h3, h4, h5, p, li, dt, dd {
      font-weight: 500; } }

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

a {
  transition: opacity .3s; }
  a:hover {
    opacity: .5; }

/* ==========================================================================
   #other
========================================================================== */
.c-spBlock {
  display: none; }
  @media screen and (max-width: 579px) {
    .c-spBlock {
      display: block; } }

@media screen and (max-width: 579px) {
  .c-spNone {
    display: none; } }

.c-head {
  position: relative;
  font-size: 3.8rem;
  padding-left: 3.5rem; }
  @media screen and (max-width: 799px) {
    .c-head {
      font-size: 3rem;
      padding-left: 2.5rem; } }
  .c-head::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 1rem;
    height: 100%;
    background: var(--color-gray); }
    @media screen and (max-width: 799px) {
      .c-head::before {
        width: .8rem; } }

/* ==========================================================================
 *
 * header scss
 *
========================================================================== */
/* ==========================================================================
   #header
========================================================================== */
.l-header {
  position: relative;
  top: 0;
  left: 0;
  z-index: var(--z-index-header); }
  .l-header .header__photo {
    position: relative;
    max-width: 150rem;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 799px) {
      .l-header .header__photo {
        padding-bottom: 3rem; } }
    .l-header .header__photo::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 100%;
      background-image: linear-gradient(#fbf6f0, #fffff5); }
    .l-header .header__photo img {
      position: relative;
      width: 100%; }
    .l-header .header__photo ._cap {
      position: absolute;
      font-size: 4.6rem;
      top: 50%;
      left: 8rem;
      transform: translateY(-50%); }
      @media screen and (max-width: 799px) {
        .l-header .header__photo ._cap {
          position: relative;
          font-size: 3.4rem;
          top: auto;
          left: auto;
          transform: translateY(0);
          margin-top: 2rem;
          text-align: center; } }
    .l-header .header__photo ._cap span {
      color: var(--color-blue); }
  .l-header .header__logo {
    margin-top: 10rem;
    margin-bottom: 8rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .l-header .header__logo {
        margin-top: 7rem;
        margin-bottom: 6rem; } }
    .l-header .header__logo img {
      width: 14rem;
      height: 18.2rem; }
      @media screen and (max-width: 799px) {
        .l-header .header__logo img {
          width: 12rem;
          height: 15.6rem; } }
      @media screen and (max-width: 579px) {
        .l-header .header__logo img {
          width: 10rem;
          height: 13rem; } }

/* ==========================================================================
   #contact
========================================================================== */
.l-contact {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 50rem;
  display: flex;
  flex-wrap: wrap;
  background: var(--color-white);
  z-index: var(--z-index-contact); }
  @media screen and (max-width: 579px) {
    .l-contact {
      width: 100%; } }
  .l-contact ._btn {
    width: calc(100% / 3);
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: var(--font-size-16);
    font-weight: var(--font-wight-semibold);
    line-height: 1.2;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .l-contact ._btn {
        font-size: 1.3rem;
        height: 4.6rem;
        letter-spacing: 0; } }
  .l-contact ._btn._c1 {
    background: var(--color-purple); }
  .l-contact ._btn._c2 {
    background: var(--color-red); }
  .l-contact ._btn._c3 {
    background: var(--color-orange); }
  .l-contact ._btn._c4 {
    background: var(--color-pink); }
  .l-contact ._btn._c5 {
    background: var(--color-blue); }
  .l-contact ._btn._c6 {
    background: #e10700; }

/* ==========================================================================
 *
 * footer scss
 *
========================================================================== */
/* ==========================================================================
   #footer
========================================================================== */
.l-footer {
  position: relative; }
  @media screen and (max-width: 799px) {
    .l-footer {
      margin-top: 6rem; } }
  .l-footer .footer__link {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); }
    @media screen and (max-width: 799px) {
      .l-footer .footer__link {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0); } }
    .l-footer .footer__link a {
      width: 50rem;
      height: 8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #e10700;
      border-radius: 4rem;
      color: var(--color-white);
      font-size: var(--font-size-24);
      font-weight: var(--font-wight-semibold); }
      @media screen and (max-width: 799px) {
        .l-footer .footer__link a {
          width: 30rem;
          height: 6.6rem;
          border-radius: 3.3rem;
          font-size: 1.8rem;
          margin: 0 auto; } }
  .l-footer .footer__img {
    max-width: 150rem;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 799px) {
      .l-footer .footer__img {
        margin-top: -4rem; } }
    .l-footer .footer__img img {
      width: 100%; }
  .l-footer .footer__copy {
    font-size: var(--font-size-10);
    margin-top: 5rem;
    margin-bottom: 5rem;
    text-align: center; }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #common
========================================================================== */
.c-tb-cap {
  background: var(--color-purple-bg); }
  .c-tb-cap ._cap {
    height: 9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-26); }
    @media screen and (max-width: 799px) {
      .c-tb-cap ._cap {
        height: 7rem; } }

.c-tb-txt {
  margin-top: 2.5rem; }
  @media screen and (max-width: 799px) {
    .c-tb-txt {
      margin-top: 2rem; } }
  .c-tb-txt ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-16);
    line-height: var(--line-height-m); }

.c-tb-limit {
  border: solid var(--color-purple) 3px;
  margin-top: 2.5rem; }
  @media screen and (max-width: 799px) {
    .c-tb-limit {
      margin-top: 2rem; } }
  .c-tb-limit li:nth-child(1) {
    background: var(--color-purple);
    color: var(--color-white);
    font-size: var(--font-size-18);
    padding: .3rem 0 .6rem;
    text-align: center; }
  .c-tb-limit li:nth-child(2) {
    color: var(--color-purple);
    font-size: var(--font-size-20);
    font-weight: var(--font-wight-semibold);
    line-height: var(--line-height-s);
    padding: 2rem 0;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .c-tb-limit li:nth-child(2) {
        padding: 1.5rem 0; } }

.c-tb-support-cap {
  margin-top: 2rem; }
  .c-tb-support-cap ._txt {
    color: var(--color-purple);
    font-size: var(--font-size-20);
    font-weight: var(--font-wight-semibold);
    line-height: var(--line-height-s);
    text-align: center; }

.c-tb-support-bg {
  background: var(--color-purple-bg);
  padding: 2.5rem 2rem;
  margin-top: 1rem; }
  @media screen and (max-width: 799px) {
    .c-tb-support-bg {
      padding: 2rem; } }
  .c-tb-support-bg li {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    font-size: var(--font-size-16);
    line-height: 1.4;
    padding-left: 2rem; }
  .c-tb-support-bg li + li {
    margin-top: .5rem; }
  .c-tb-support-bg li::before {
    position: absolute;
    content: '■';
    top: .25rem;
    left: 0;
    font-size: var(--font-size-12); }
  .c-tb-support-bg ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-16);
    line-height: 1.4;
    margin-top: .8rem; }
    .c-tb-support-bg ._txt._no {
      margin-top: 0; }
  .c-tb-support-bg ._min {
    font-size: var(--font-size-14);
    line-height: 1.4;
    margin-top: .8rem; }
  .c-tb-support-bg a {
    color: var(--color-purple);
    font-size: var(--font-size-16);
    margin-top: 1rem;
    text-decoration: underline; }

.c-tb-price {
  background: var(--color-purple-bg);
  margin-top: 2.5rem;
  padding: 1.5rem 0; }
  .c-tb-price ._txt {
    font-size: var(--font-size-18);
    text-align: center; }
  .c-tb-price ._price {
    color: var(--color-purple);
    font-size: var(--font-size-24);
    font-weight: var(--font-wight-semibold);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .c-tb-price ._price {
        font-size: 1.6rem; } }
  .c-tb-price ._price span {
    font-size: var(--font-size-36); }

.c-txt {
  margin-top: 3rem; }
  .c-txt ._txt {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: var(--font-size-18);
    line-height: 1.4; }
  .c-txt ._txt + ._txt {
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .c-txt ._txt + ._txt {
        margin-top: 1.5rem; } }
  .c-txt a {
    color: var(--color-red);
    text-decoration: underline; }

/* ==========================================================================
   #content
========================================================================== */
.p-index-content {
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-content {
      margin-top: 6rem; } }
  .p-index-content .content__list {
    margin: 0 auto;
    width: 88%;
    max-width: var(--container-m);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12rem 0; }
    @media screen and (max-width: 799px) {
      .p-index-content .content__list {
        width: 84%; } }
    @media screen and (max-width: 799px) {
      .p-index-content .content__list {
        display: block; } }
  .p-index-content .content__list-item {
    width: calc(100% / 3); }
    @media screen and (max-width: 799px) {
      .p-index-content .content__list-item {
        width: 100%;
        border-bottom: dotted #ccc 1px;
        padding-bottom: 2rem; } }
    @media screen and (max-width: 799px) {
      .p-index-content .content__list-item:last-child {
        border-bottom: none; } }
    .p-index-content .content__list-item h2, .p-index-content .content__list-item p {
      text-align: center; }
    .p-index-content .content__list-item ._head {
      widh: 100%;
      height: 9rem;
      display: flex;
      align-items: center;
      justify-content: center; }
      @media screen and (max-width: 799px) {
        .p-index-content .content__list-item ._head {
          height: auto; } }
    .p-index-content .content__list-item ._cap {
      font-size: 3.8rem; }
      @media screen and (max-width: 799px) {
        .p-index-content .content__list-item ._cap {
          font-size: 3rem; } }
    .p-index-content .content__list-item ._btn {
      width: 24rem;
      height: 4.6rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--color-gray);
      border-radius: 2.3rem;
      color: var(--color-white);
      font-size: var(--font-size-20);
      margin: 2rem auto 0; }
      @media screen and (max-width: 799px) {
        .p-index-content .content__list-item ._btn {
          margin: 3rem auto 0; } }
    .p-index-content .content__list-item ._support {
      font-size: var(--font-size-20);
      margin-top: 3.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-content .content__list-item ._support {
          margin-top: 3rem; } }
    .p-index-content .content__list-item ._target {
      position: relative;
      font-size: var(--font-size-18);
      padding-top: 3.5rem; }
      @media screen and (max-width: 799px) {
        .p-index-content .content__list-item ._target {
          padding-top: 3rem; } }
    .p-index-content .content__list-item ._target::before {
      position: absolute;
      content: '';
      top: 1rem;
      left: calc(50% - 2px);
      width: 4px;
      height: 1.5rem;
      background: var(--color-gray);
      border-radius: 2px; }
      @media screen and (max-width: 799px) {
        .p-index-content .content__list-item ._target::before {
          top: .5rem; } }
    .p-index-content .content__list-item ._txt {
      font-size: var(--font-size-14);
      line-height: 1.4;
      margin-top: 3rem; }
      @media screen and (max-width: 799px) {
        .p-index-content .content__list-item ._txt {
          margin-top: 2rem; } }
    .p-index-content .content__list-item ._price {
      font-size: var(--font-size-34);
      letter-spacing: .05rem;
      margin-top: 3rem; }
      @media screen and (max-width: 799px) {
        .p-index-content .content__list-item ._price {
          margin-top: 2rem; } }
  @media screen and (max-width: 799px) {
    .p-index-content .content__list-item + .content__list-item {
      margin-top: 4rem; } }
  .p-index-content .content__list-item._c1 ._cap span {
    color: var(--color-purple); }
  .p-index-content .content__list-item._c1 ._btn {
    background: var(--color-purple); }
  .p-index-content .content__list-item._c1 ._target::before {
    background: var(--color-purple); }
  .p-index-content .content__list-item._c2 ._cap span {
    color: var(--color-red); }
  .p-index-content .content__list-item._c2 ._btn {
    background: var(--color-red); }
  .p-index-content .content__list-item._c2 ._target::before {
    background: var(--color-red); }
  .p-index-content .content__list-item._c3 ._cap span {
    color: var(--color-orange); }
  .p-index-content .content__list-item._c3 ._btn {
    background: var(--color-orange); }
  .p-index-content .content__list-item._c3 ._target::before {
    background: var(--color-orange); }
  .p-index-content .content__list-item._c4 ._cap span {
    color: var(--color-pink); }
  .p-index-content .content__list-item._c4 ._btn {
    background: var(--color-pink); }
  .p-index-content .content__list-item._c4 ._target::before {
    background: var(--color-pink); }
  .p-index-content .content__list-item._c5 ._cap span {
    color: var(--color-blue); }
  .p-index-content .content__list-item._c5 ._btn {
    background: var(--color-blue); }
  .p-index-content .content__list-item._c5 ._target::before {
    background: var(--color-blue); }
  .p-index-content .content__sepalate {
    max-width: 150rem;
    margin-left: auto;
    margin-right: auto;
    border-bottom: dashed var(--color-gray) 4px;
    padding-bottom: 1.5rem; }
    @media screen and (max-width: 799px) {
      .p-index-content .content__sepalate {
        border-bottom: dashed var(--color-gray) 2px;
        padding-bottom: 2rem; } }

/* ==========================================================================
   #plan1
========================================================================== */
.p-index-plan1 {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-plan1 {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-plan1 {
      margin-top: 6rem; } }
  .p-index-plan1 .plan1__head .c-head span {
    color: var(--color-purple); }
  .p-index-plan1 .plan1__head .c-head::before {
    background: var(--color-purple); }
  .p-index-plan1 .plan1__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2.5rem;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan1 .plan1__body {
        grid-template-columns: repeat(1, 1fr); } }
  .p-index-plan1 .plan1__body-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 8;
    gap: 0; }
    @media screen and (max-width: 799px) {
      .p-index-plan1 .plan1__body-item {
        border-top: dotted #ccc 1px;
        margin-top: 4rem;
        padding-top: 4rem; } }
    @media screen and (max-width: 799px) {
      .p-index-plan1 .plan1__body-item:first-child {
        border-top: none;
        margin-top: 0;
        padding-top: 0; } }
  .p-index-plan1 .plan1__body-item:nth-child(2) .c-tb-cap {
    background: #dccaff; }
  .p-index-plan1 .plan1__body-item:nth-child(3) .c-tb-cap {
    background: #c2a3ff;
    color: var(--color-white); }
  .p-index-plan1 .plan1__body-item:nth-child(4) .c-tb-cap {
    background: var(--color-purple);
    color: var(--color-white); }
  .p-index-plan1 .plan1__foot {
    margin-top: 2rem; }
    .p-index-plan1 .plan1__foot ._txt {
      font-size: var(--font-size-16); }

/* ==========================================================================
   #plan2
========================================================================== */
.p-index-plan2 {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-plan2 {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-plan2 {
      margin-top: 6rem; } }
  .p-index-plan2 .plan2__head {
    display: flex;
    column-gap: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan2 .plan2__head {
        display: block; } }
    .p-index-plan2 .plan2__head .c-head span {
      color: var(--color-red); }
    .p-index-plan2 .plan2__head .c-head::before {
      background: var(--color-red); }
  .p-index-plan2 .plan2__head-col {
    flex: 1;
    display: flex;
    align-items: center;
    column-gap: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan2 .plan2__head-col {
        display: block;
        margin-top: 4rem; } }
    .p-index-plan2 .plan2__head-col ._limit {
      display: flex;
      border: solid var(--color-red) 3px; }
      @media screen and (max-width: 799px) {
        .p-index-plan2 .plan2__head-col ._limit {
          width: fit-content; } }
    .p-index-plan2 .plan2__head-col ._limit li:nth-child(1) {
      background: var(--color-red);
      color: var(--color-white);
      font-size: var(--font-size-18);
      padding: .3rem 1.5rem; }
    .p-index-plan2 .plan2__head-col ._limit li:nth-child(2) {
      color: var(--color-red);
      font-size: var(--font-size-18);
      padding: .3rem 2rem; }
    .p-index-plan2 .plan2__head-col ._price {
      flex: 1;
      display: flex;
      column-gap: 1rem;
      align-items: baseline; }
      @media screen and (max-width: 799px) {
        .p-index-plan2 .plan2__head-col ._price {
          justify-content: flex-end;
          margin-top: 1rem; } }
    .p-index-plan2 .plan2__head-col ._price li:nth-child(1) {
      font-size: var(--font-size-16); }
    .p-index-plan2 .plan2__head-col ._price li:nth-child(2) {
      color: var(--color-red);
      font-size: var(--font-size-20);
      font-weight: var(--font-wight-semibold); }
    .p-index-plan2 .plan2__head-col ._price li:nth-child(2) span {
      font-size: 3.6rem; }
      @media screen and (max-width: 799px) {
        .p-index-plan2 .plan2__head-col ._price li:nth-child(2) span {
          font-size: 3rem; } }
  .p-index-plan2 .plan2__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 8rem;
    margin-top: 2rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan2 .plan2__body {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 1rem; } }
  .p-index-plan2 .plan2__body-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 0; }
    .p-index-plan2 .plan2__body-item .c-tb-support-cap ._txt {
      color: var(--color-red); }
    .p-index-plan2 .plan2__body-item .c-tb-support-bg {
      background: var(--color-red-bg); }

/* ==========================================================================
   #plan2
========================================================================== */
.p-index-plan3 {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-plan3 {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-plan3 {
      margin-top: 6rem; } }
  .p-index-plan3 .plan3__head .c-head span {
    color: var(--color-orange); }
  .p-index-plan3 .plan3__head .c-head::before {
    background: var(--color-orange); }
  .p-index-plan3 .plan3__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 8rem;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan3 .plan3__body {
        grid-template-columns: repeat(1, 1fr); } }
  .p-index-plan3 .plan3__body-item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 8;
    gap: 0; }
    @media screen and (max-width: 799px) {
      .p-index-plan3 .plan3__body-item {
        border-top: dotted #ccc 1px;
        margin-top: 4rem;
        padding-top: 4rem; } }
    @media screen and (max-width: 799px) {
      .p-index-plan3 .plan3__body-item:first-child {
        border-top: none;
        margin-top: 0;
        padding-top: 0; } }
    .p-index-plan3 .plan3__body-item .c-tb-cap {
      background: #ffd4ba; }
    .p-index-plan3 .plan3__body-item .c-tb-limit {
      border: solid var(--color-orange) 3px; }
    .p-index-plan3 .plan3__body-item .c-tb-limit li:nth-child(1) {
      background: var(--color-orange); }
    .p-index-plan3 .plan3__body-item .c-tb-limit li:nth-child(2) {
      color: var(--color-orange); }
    .p-index-plan3 .plan3__body-item .c-tb-support-cap ._txt {
      color: var(--color-orange); }
    .p-index-plan3 .plan3__body-item .c-tb-support-bg {
      background: var(--color-orange-bg); }
    .p-index-plan3 .plan3__body-item .c-tb-price {
      background: var(--color-orange-bg); }
    .p-index-plan3 .plan3__body-item .c-tb-price ._price {
      color: var(--color-orange); }
  .p-index-plan3 .plan3__body-item:nth-child(2) .c-tb-cap {
    background: var(--color-orange);
    color: var(--color-white); }

/* ==========================================================================
   #plan4
========================================================================== */
.p-index-plan4 {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-plan4 {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-plan4 {
      margin-top: 6rem; } }
  .p-index-plan4 .plan4__head {
    display: flex;
    align-items: baseline;
    column-gap: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan4 .plan4__head {
        display: block; } }
    .p-index-plan4 .plan4__head .c-head span {
      color: var(--color-pink); }
    .p-index-plan4 .plan4__head .c-head::before {
      background: var(--color-pink); }
    .p-index-plan4 .plan4__head ._price {
      flex: 1;
      display: flex;
      column-gap: 1rem;
      align-items: baseline; }
      @media screen and (max-width: 799px) {
        .p-index-plan4 .plan4__head ._price {
          justify-content: flex-end;
          margin-top: 4rem; } }
    .p-index-plan4 .plan4__head ._price li:nth-child(1) {
      font-size: var(--font-size-16); }
    .p-index-plan4 .plan4__head ._price li:nth-child(2) {
      color: var(--color-pink);
      font-size: var(--font-size-20);
      font-weight: var(--font-wight-semibold); }
    .p-index-plan4 .plan4__head ._price li:nth-child(2) span {
      font-size: 3.6rem; }
      @media screen and (max-width: 799px) {
        .p-index-plan4 .plan4__head ._price li:nth-child(2) span {
          font-size: 3rem; } }
  .p-index-plan4 .plan4__block {
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan4 .plan4__block {
        margin-top: 3rem; } }
    .p-index-plan4 .plan4__block .c-tb-support-cap ._txt {
      color: var(--color-pink);
      text-align: left; }
    .p-index-plan4 .plan4__block .c-tb-support-bg {
      background: var(--color-pink-bg); }
  .p-index-plan4 .plan4__col {
    display: flex;
    column-gap: 3rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan4 .plan4__col {
        display: block; } }
  .p-index-plan4 .plan4__col-item .c-tb-support-cap ._txt {
    color: var(--color-pink);
    text-align: left; }
  .p-index-plan4 .plan4__col-item .c-tb-support-bg {
    background: var(--color-pink-bg); }
  .p-index-plan4 .plan4__col-item:nth-child(1) {
    flex: 1; }
  .p-index-plan4 .plan4__col-item:nth-child(2) {
    width: 37.5%; }
    @media screen and (max-width: 799px) {
      .p-index-plan4 .plan4__col-item:nth-child(2) {
        width: 100%; } }

/* ==========================================================================
   #plan5
========================================================================== */
.p-index-plan5 {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-l);
  margin-top: 14rem; }
  @media screen and (max-width: 799px) {
    .p-index-plan5 {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-index-plan5 {
      margin-top: 6rem; } }
  .p-index-plan5 .plan5__head {
    display: flex;
    align-items: baseline;
    column-gap: 6rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan5 .plan5__head {
        display: block; } }
    .p-index-plan5 .plan5__head .c-head span {
      color: var(--color-blue); }
    .p-index-plan5 .plan5__head .c-head::before {
      background: var(--color-blue); }
    .p-index-plan5 .plan5__head ._price {
      flex: 1;
      display: flex;
      column-gap: 1rem;
      align-items: baseline; }
      @media screen and (max-width: 799px) {
        .p-index-plan5 .plan5__head ._price {
          justify-content: flex-end;
          margin-top: 4rem; } }
    .p-index-plan5 .plan5__head ._price li:nth-child(1) {
      font-size: var(--font-size-16); }
    .p-index-plan5 .plan5__head ._price li:nth-child(2) {
      color: var(--color-blue);
      font-size: var(--font-size-20);
      font-weight: var(--font-wight-semibold); }
    .p-index-plan5 .plan5__head ._price li:nth-child(2) span {
      font-size: 3.6rem; }
      @media screen and (max-width: 799px) {
        .p-index-plan5 .plan5__head ._price li:nth-child(2) span {
          font-size: 3rem; } }
  .p-index-plan5 .plan5__body {
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-index-plan5 .plan5__body {
        margin-top: 2rem; } }
    .p-index-plan5 .plan5__body .c-tb-support-cap ._txt {
      color: var(--color-blue);
      text-align: left; }
    .p-index-plan5 .plan5__body .c-tb-support-bg {
      background: var(--color-blue-bg); }

/* ==========================================================================
 *
 * home scss
 *
========================================================================== */
/* ==========================================================================
   #content
========================================================================== */
.p-contact-content .content__wrap {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-m);
  background: #f2f2f2;
  padding: 8rem 0; }
  @media screen and (max-width: 799px) {
    .p-contact-content .content__wrap {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-contact-content .content__wrap {
      padding: 6rem 0; } }
  @media screen and (max-width: 579px) {
    .p-contact-content .content__wrap {
      width: 100%; } }
.p-contact-content .content__head {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-s);
  margin-bottom: 6rem; }
  @media screen and (max-width: 799px) {
    .p-contact-content .content__head {
      width: 84%; } }
  @media screen and (max-width: 799px) {
    .p-contact-content .content__head {
      margin-bottom: 4rem; } }
  .p-contact-content .content__head h1 {
    font-size: var(--font-size-24);
    text-align: center; }
    @media screen and (max-width: 579px) {
      .p-contact-content .content__head h1 {
        text-align: left; } }
  .p-contact-content .content__head p {
    font-size: var(--font-size-15);
    line-height: var(--line-height-l);
    margin-top: 6rem;
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-contact-content .content__head p {
        margin-top: 2.5rem; } }
    @media screen and (max-width: 579px) {
      .p-contact-content .content__head p {
        text-align: left; } }
.p-contact-content .content__form {
  margin: 0 auto;
  width: 88%;
  max-width: var(--container-s); }
  @media screen and (max-width: 799px) {
    .p-contact-content .content__form {
      width: 84%; } }
  .p-contact-content .content__form dl {
    margin-top: 2.5rem; }
  .p-contact-content .content__form dt {
    font-size: 1.6rem;
    line-height: var(--line-height-l); }
  .p-contact-content .content__form dd {
    font-size: 1.6rem;
    line-height: var(--line-height-l);
    margin-top: 1.5rem; }
  .p-contact-content .content__form input[type="text"],
  .p-contact-content .content__form select,
  .p-contact-content .content__form textarea {
    width: 100%;
    background: #fff;
    border-radius: .5rem;
    font-size: 1.6rem;
    line-height: var(--line-height-m);
    padding: 2rem 2.5rem; }
    @media screen and (max-width: 799px) {
      .p-contact-content .content__form input[type="text"],
      .p-contact-content .content__form select,
      .p-contact-content .content__form textarea {
        border-radius: .3rem;
        padding: 1.8rem 2rem; } }
  .p-contact-content .content__form input[type="checkbox"] {
    -webkit-appearance: auto;
    appearance: auto; }
.p-contact-content #companyBox li + li {
  margin-top: .8rem; }
.p-contact-content #personalBox li + li {
  margin-top: .8rem; }
.p-contact-content #checkBox {
  margin-top: 5rem; }
  @media screen and (max-width: 799px) {
    .p-contact-content #checkBox {
      margin-top: 4rem; } }
  .p-contact-content #checkBox .txt1 {
    font-size: var(--font-size-14);
    line-height: var(--line-height-l); }
  .p-contact-content #checkBox .txt2 {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border: solid var(--color-gray) 1px;
    font-size: var(--font-size-14);
    line-height: var(--line-height-l);
    margin-top: 5rem;
    padding: 1.5rem 2rem; }
    @media screen and (max-width: 799px) {
      .p-contact-content #checkBox .txt2 {
        margin-top: 4rem; } }
  .p-contact-content #checkBox ul {
    display: flex;
    column-gap: .8rem;
    margin-top: 4rem; }
    @media screen and (max-width: 799px) {
      .p-contact-content #checkBox ul {
        width: 100%;
        column-gap: .5rem;
        margin-top: 3.5rem; } }
  @media screen and (max-width: 799px) {
    .p-contact-content #checkBox li {
      width: 50%; } }
  .p-contact-content #checkBox input {
    width: 22.5rem;
    height: 5.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    border-radius: .5rem;
    color: var(--color-white);
    font-size: var(--font-size-15);
    text-align: center; }
    @media screen and (max-width: 799px) {
      .p-contact-content #checkBox input {
        width: 100%;
        height: 5rem;
        border-radius: .3rem; } }
  .p-contact-content #checkBox input[type="submit"] {
    background: #000; }
