@charset "UTF-8";
html,
header,
main,
footer,
section,
nav,
a,
p,
h1,
h2,
h3,
h4,
h5,
img,
div,
figure,
span,
iframe,
ul,
li {
  margin: 0;
  padding: 0;
}

/**********************************************************************
例）$gray: #d7d7d7;
**********************************************************************/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../font/NotoSansJP-VariableFont_wght.ttf"), format("truetype"), local("Noto Sans JP");
  src: url("/font/NotoSansJP-VariableFont_wght.ttf"), format("truetype"), local("Noto Sans JP");
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../../font/NotoSerifJP-VariableFont_wght.ttf"), format("truetype"), local("Noto Serif JP");
  src: url("/font/NotoSerifJP-VariableFont_wght.ttf"), format("truetype"), local("Noto Serif JP");
}
@font-face {
  font-family: "Playfair Display";
  src: url("../../font/PlayfairDisplay-VariableFont_wght.ttf"), format("truetype"), local("Playfair Display");
  src: url("/font/PlayfairDisplay-VariableFont_wght.ttf"), format("truetype"), local("Playfair Display");
}
/**********************************************************************
フォントサイズ
**********************************************************************/
html {
  font-size: clamp(8px, 0.6944vw, 10px);
}

html {
  height: 100%;
  width: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0 auto;
  color: #4B4B4B;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 1%;
  line-height: 1;
  font-size: 1.6rem;
  overflow-x: hidden;
  background-color: #e0c097;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 1.4rem;
  }
}

img, svg {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

*, *:before, *:after {
  box-sizing: border-box;
  font-feature-settings: "palt";
}

/**********************************************************************
font
**********************************************************************/
.c-font-2xl {
  font-size: 3.6rem;
}
@media screen and (max-width: 480px) {
  .c-font-2xl {
    font-size: 2.4rem;
  }
}
.c-font-xl {
  font-size: 2.4rem;
}
@media screen and (max-width: 480px) {
  .c-font-xl {
    font-size: 2rem;
  }
}
.c-font-lg {
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  .c-font-lg {
    font-size: 1.6rem;
  }
}
.c-font-md {
  font-size: 1.6rem;
}
@media screen and (max-width: 480px) {
  .c-font-md {
    font-size: 1.4rem;
  }
}
.c-font-sm {
  font-size: 1.2rem;
}
@media screen and (max-width: 480px) {
  .c-font-sm {
    font-size: 1rem;
  }
}
.c-font-eng {
  font-family: "Playfair Display", sans-serif;
}

.c-none {
  display: none;
}

.c-md-visible {
  display: none;
}
@media screen and (max-width: 1080px) {
  .c-md-visible {
    display: block;
  }
}

.c-md-invisible {
  display: block;
}
@media screen and (max-width: 1080px) {
  .c-md-invisible {
    display: none;
  }
}

.c-medium {
  font-weight: 500;
}

.c-bold {
  font-weight: 700;
}

/**********************************************************************
見出し
**********************************************************************/
h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
  scroll-margin-top: 8rem;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 2rem;
  }
}

/**********************************************************************
btn
**********************************************************************/
.c-btn {
  position: relative;
  background-color: #2B3A67;
  border-radius: 5em;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.8s ease;
}
.c-btn.footer {
  background: #ffffff;
  color: #2B3A67;
}
.c-btn a,
.c-btn span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2.75rem;
  width: 100%;
  height: 100%;
}
.c-btn::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0%;
  width: 0;
  height: 100%;
  background: #d9d9d9;
  transition: all 0.8s ease;
  border-radius: 5em;
  transform: translate(-50%, -50%);
}
.c-btn.profile::before {
  background: #ffffff;
}
.c-btn.footer::before {
  background: #d9d9d9;
}
@media screen and (min-width: 993px) {
  .c-btn:hover::before {
    top: 50%;
    left: 0%;
    width: 300%;
    height: 100%;
  }
  .c-btn:hover {
    color: #4B4B4B;
  }
  .c-btn.profile:hover {
    color: #2B3A67;
  }
}

/**********************************************************************
underline
**********************************************************************/
@media screen and (min-width: 993px) {
  .c-underline {
    position: relative;
  }
  .c-underline::after {
    content: "";
    position: absolute;
    bottom: -0.3em;
    left: 0;
    width: 0;
    height: 0.3rem;
    transition: all 0.8s ease;
  }
  .c-underline:hover::after {
    width: 100%;
    background-color: #2B3A67;
  }
  .c-underline.footer:hover::after {
    width: 100%;
    background-color: #ffffff;
  }
}

/**********************************************************************
section
**********************************************************************/
.c-section {
  margin-top: 8rem;
  padding-top: 8rem;
}
@media screen and (max-width: 1080px) {
  .c-section {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 480px) {
  .c-section {
    padding-top: 2rem;
  }
}

/**********************************************************************
ham
**********************************************************************/
.p-ham {
  display: none;
}
@media screen and (max-width: 1080px) {
  .p-ham {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 auto;
    width: 4.8rem;
    height: 3rem;
  }
  .p-ham__line {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    display: block;
    width: 100%;
    height: 0.2rem;
    background-color: #2B3A67;
    transition: all 0.8s ease;
  }
  .p-ham__line:nth-child(1) {
    top: 0;
  }
  .p-ham__line:nth-child(2) {
    top: 50%;
  }
  .p-ham__line:nth-child(3) {
    top: 100%;
  }
}

/**********************************************************************
kv
**********************************************************************/
.p-kv__text-catch {
  font-family: "Noto Serif JP", serif;
}
.p-kv__text-catch p:last-child {
  margin-top: 3.6rem;
}
.p-kv__text-text {
  margin: 4.8rem 0 0 2.4rem;
  line-height: 1.6;
}
.p-kv__btn {
  display: flex;
  gap: 0 1.2rem;
  margin-top: 4.8rem;
}
.p-kv__img {
  width: 73.4rem;
  height: auto;
}
@media screen and (max-width: 1080px) {
  .p-kv__img {
    width: 100%;
  }
}

/**********************************************************************
trouble
**********************************************************************/
.p-trouble__img {
  width: 50.6rem;
}
@media screen and (max-width: 480px) {
  .p-trouble__img {
    width: 100%;
  }
}
.p-trouble__text-lists {
  display: flex;
  flex-direction: column;
  gap: 2.4rem 0;
  margin-top: 3.6rem;
  padding: 2.4rem 4.8rem;
  border: #2B3A67 solid 0.2rem;
  border-radius: 1em;
}
@media screen and (max-width: 480px) {
  .p-trouble__text-lists {
    padding: 2.4rem 4rem;
  }
}
.p-trouble__text-list {
  position: relative;
  padding-left: 1.5em;
}
.p-trouble__text-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url("../../img/trouble/check.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.p-trouble__text-supplement {
  margin-top: 7.2rem;
  line-height: 1.6;
}

/**********************************************************************
feature
**********************************************************************/
.p-feature__head {
  text-align: center;
}
.p-feature__items {
  display: flex;
  gap: 0 2.4rem;
  margin-top: 3.6rem;
}
@media screen and (max-width: 1080px) {
  .p-feature__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .p-feature__items {
    grid-template-columns: 1fr;
    grid-template-rows: inherit;
  }
}
.p-feature__item {
  width: 25%;
  padding: 2.4rem;
  background-color: #ffffff;
  border-radius: 1em;
  box-shadow: 0.5em 0.5em 1em #4B4B4B;
}
@media screen and (max-width: 1080px) {
  .p-feature__item {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p-feature__item {
    margin: 0 auto;
    width: 36rem;
  }
}
.p-feature__item-img {
  height: 12rem;
}
.p-feature__item-text-head {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .p-feature__item-text-head {
    font-size: 1.6rem;
  }
}
.p-feature__item-text-text {
  margin-top: 2.4rem;
  text-align: center;
  line-height: 1.6;
}
.p-feature__supplement {
  display: flex;
  justify-content: end;
  margin: 7.2rem 0 0 auto;
  padding-left: 1em;
  text-indent: -1em;
}

/**********************************************************************
service
**********************************************************************/
.p-service__head {
  text-align: center;
}
.p-service__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3.6rem;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .p-service__items {
    grid-template-columns: 1fr;
  }
}
.p-service__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem 0;
  padding: 2.4rem 0;
  border-left: 0.1rem solid #d9d9d9;
}
@media screen and (max-width: 1080px) {
  .p-service__item {
    border-left: inherit;
    border-top: 0.1rem solid #d9d9d9;
  }
}
.p-service__item:last-child {
  border-right: 0.1rem solid #d9d9d9;
}
@media screen and (max-width: 1080px) {
  .p-service__item:last-child {
    border-right: inherit;
    border-bottom: 0.1rem solid #d9d9d9;
  }
}
.p-service__item-img {
  height: 12rem;
}
.p-service__item-text-head {
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  .p-service__item-text-head {
    font-size: 1.6rem;
  }
}
.p-service__item-text-text {
  text-align: center;
  line-height: 1.6;
}

/**********************************************************************
flow
**********************************************************************/
.p-flow__head {
  text-align: center;
}
.p-flow__supplement {
  text-align: center;
  margin-top: 3.6rem;
}
@media screen and (max-width: 1080px) {
  .p-flow__supplement {
    line-height: 1.6;
  }
}
.p-flow__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4.8rem auto 0;
}
.p-flow__item {
  display: grid;
  grid-template-columns: 35% 65%;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  padding: 2.4rem;
  width: 100%;
  max-width: 960px;
  border-top: 0.2rem solid #4B4B4B;
}
.p-flow__item.last {
  border-bottom: 0.2rem solid #4B4B4B;
}
@media screen and (max-width: 1080px) {
  .p-flow__item {
    grid-template-columns: inherit;
    gap: 2.4rem 0;
    width: 45rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1080px) and (max-width: 480px) {
  .p-flow__item {
    width: 100%;
  }
}
.p-flow__item-ttl {
  display: flex;
  gap: 0 0.8rem;
  align-items: baseline;
}
.p-flow__item-num {
  font-size: 4rem;
  line-height: 0.5;
  font-family: "Playfair Display", sans-serif;
}
.p-flow__item-head {
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  .p-flow__item-head {
    font-size: 1.6rem;
  }
}
.p-flow__item-text {
  line-height: 1.6;
}
.p-flow__btn {
  margin-top: 7.2rem;
}

/**********************************************************************
profile
**********************************************************************/
.p-profile__inner {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0 12rem;
}
@media screen and (max-width: 1080px) {
  .p-profile__inner {
    gap: 2.4rem 0;
    flex-direction: column;
  }
}
.p-profile__img {
  width: 52rem;
  border-radius: 2em;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .p-profile__img {
    width: 80%;
  }
}
.p-profile__text-job {
  margin-top: 1.6rem;
}
.p-profile__text-text {
  margin-top: 4.8rem;
  line-height: 1.6;
}
.p-profile__text-text p:nth-child(n+2) {
  margin-top: 1em;
}
.p-profile__btn-wrap {
  display: flex;
  justify-content: end;
  margin: 7.2rem 0 0 auto;
}

/**********************************************************************
achievement
**********************************************************************/
.p-achievement__head {
  text-align: center;
}
.p-achievement__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7.2rem;
}
.p-achievement__item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1080px) {
  .p-achievement__item:nth-child(2n) {
    flex-direction: column;
    gap: 2.4rem;
  }
}
@media screen and (max-width: 1080px) {
  .p-achievement__item {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.p-achievement__item-img {
  width: 64rem;
}
@media screen and (max-width: 1080px) {
  .p-achievement__item-img {
    width: 56rem;
  }
}
@media screen and (max-width: 480px) {
  .p-achievement__item-img {
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .p-achievement__item-text {
    width: 56rem;
  }
}
@media screen and (max-width: 480px) {
  .p-achievement__item-text {
    width: 100%;
  }
}
.p-achievement__item-text-text {
  margin-top: 4.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 1080px) {
  .p-achievement__item-text-text {
    margin-top: 2.4rem;
  }
}
.p-achievement__item-text-tag {
  background-color: #2B3A67;
  color: #ffffff;
  padding: 0.2em;
  margin-left: 1em;
}

/**********************************************************************
faq
**********************************************************************/
.p-faq__head {
  text-align: center;
}
.p-faq__supplement {
  margin-top: 3.6rem;
  text-align: center;
}
.p-faq__items {
  margin: 4.8rem auto 0;
  width: 80%;
  max-width: 1080px;
}
@media screen and (max-width: 1080px) {
  .p-faq__items {
    width: 100%;
  }
}
.p-faq__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem 1.6rem;
  border-top: 0.1rem solid #4B4B4B;
}
.p-faq__item-q, .p-faq__item-a {
  display: flex;
  align-items: center;
  line-height: 1.6;
}
.p-faq__item-q span, .p-faq__item-a span {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.5em;
  width: 4rem;
  height: 4rem;
  background-color: #2B3A67;
  color: #ffffff;
  border-radius: 50%;
}
.p-faq__item-a span {
  background-color: #7395AE;
}
.p-faq__item.last {
  border-bottom: 0.1rem solid #4B4B4B;
}

/**********************************************************************
contact
**********************************************************************/
.p-contact__head {
  text-align: center;
}
.p-contact__supplement {
  margin-top: 3.6rem;
  text-align: center;
}
.p-contact__supplement.hearingsheet {
  line-height: 1.6;
}
.p-contact__line {
  width: 80%;
  max-width: 1080px;
  margin: 3.6rem auto 0;
  padding: 1em;
  border-top: 0.1rem solid #4B4B4B;
  border-bottom: 0.1rem solid #4B4B4B;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .p-contact__line {
    width: 90%;
  }
}
.p-contact__line-text {
  line-height: 1.6;
}
.p-contact__line-btn {
  display: inline-block;
  margin-top: 2.4rem;
}
.p-contact__form {
  margin: 4.8rem auto 0;
  width: 80%;
  max-width: 1080px;
}
@media screen and (max-width: 480px) {
  .p-contact__form {
    width: 90%;
  }
}
.p-contact__form-item {
  display: flex;
  flex-direction: column;
}
.p-contact__form-item:nth-child(n+2) {
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 0.1rem solid #4B4B4B;
}
.p-contact__form-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.p-contact__form-required, .p-contact__form-any {
  padding: 0.5em;
  background-color: #2B3A67;
  color: #ffffff;
  border-radius: 0.3em;
}
.p-contact__form-any {
  background-color: #7395AE;
}
.p-contact__form-input, .p-contact__form-textarea {
  margin-top: 2.4rem;
  padding: 0.5em 1em;
  background-color: #ffffff;
  border: 0.1rem solid #4B4B4B;
  border-radius: 0.5em;
  line-height: 1.6;
}
.p-contact__form-input.checkbox, .p-contact__form-textarea.checkbox {
  position: absolute;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.p-contact__form-checkbox {
  display: flex;
  align-items: center;
  margin-top: 1em;
}
.p-contact__form-checkbox-text {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 2em;
}
.p-contact__form-checkbox-text::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 0.1rem solid #4B4B4B;
}
.p-contact__form-checkbox-text::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  left: 0.6rem;
  transform: rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin: center right;
  border-right: 0.2rem solid #2B3A67;
  border-bottom: 0.2rem solid #2B3A67;
  opacity: 0;
}
.p-contact__btn {
  display: flex;
  justify-content: center;
  margin: 4.8rem auto 0;
}

input[type=checkbox]:checked + .p-contact__form-checkbox-text::after {
  opacity: 1;
}

/**********************************************************************
footer
**********************************************************************/
.p-footer__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .p-footer__menu {
    flex-direction: column;
    gap: 4.8rem 0;
  }
}
.p-footer__sns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 2.4rem;
  margin-top: 2.4rem;
}
.p-footer__sns-icon {
  width: 2em;
  height: auto;
  cursor: pointer;
}
.p-footer-nav__lists {
  display: flex;
  gap: 0 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-footer-nav__lists {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.4rem;
  }
}
.p-footer__copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.8rem;
}

/**********************************************************************
thanks
**********************************************************************/
.p-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}
.p-thanks__supplement {
  margin-top: 4.8rem;
  line-height: 1.6;
}
.p-thanks__btn {
  display: inline-flex;
  margin-top: 7.2rem;
}

/**********************************************************************
ham
**********************************************************************/
.js-nav {
  transition: all 0.8s ease;
}
.js-nav.active {
  display: flex;
  height: calc(100vh - 8rem);
  top: 8rem;
}

.js-ham.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(150deg);
}
.js-ham.active span:nth-child(2) {
  width: 0;
}
.js-ham.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-150deg);
}

/**********************************************************************
header
**********************************************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0 7.2rem;
  width: 100%;
  height: 8rem;
  background-color: #ffffff;
}
@media screen and (max-width: 1080px) {
  .l-header {
    padding: 0 4.8rem;
  }
}
@media screen and (max-width: 480px) {
  .l-header {
    padding: 0 2.4rem;
  }
}
.l-header__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  height: 100%;
}
.l-header-nav__lists {
  display: flex;
  gap: 0 2.4rem;
}
@media screen and (max-width: 1080px) {
  .l-header-nav__lists {
    position: fixed;
    top: 8rem;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 2.4rem 0;
    width: 100%;
    padding: 4.8rem 4.8rem 0;
    height: calc(100vh - 8rem);
    background-color: #2B3A67;
    color: #ffffff;
    overflow: hidden;
    transition: all 0.8s ease;
  }
}
@media screen and (max-width: 480px) {
  .l-header-nav__lists {
    padding: 2.4rem 2.4rem 0;
  }
}

/**********************************************************************
main
**********************************************************************/
.l-main {
  width: 100%;
  max-width: calc(1280px + 14.4rem);
  padding: 8rem 7.2rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .l-main {
    padding: 8rem 4.8rem 0;
  }
}
@media screen and (max-width: 480px) {
  .l-main {
    padding: 8rem 2.4rem 0;
  }
}

/**********************************************************************
kv
**********************************************************************/
.l-kv {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .l-kv {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 2.4rem 0;
  }
}

/**********************************************************************
trouble
**********************************************************************/
.l-trouble {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0 12.8rem;
  padding-bottom: 7.8rem;
}
@media screen and (max-width: 1080px) {
  .l-trouble {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem 0;
  }
}
.l-trouble::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #FAF7F0;
}

/**********************************************************************
feature
**********************************************************************/
.l-feature {
  padding-bottom: 7.2rem;
}

/**********************************************************************
service
**********************************************************************/
.l-service {
  position: relative;
  padding-bottom: 7.2rem;
}
.l-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #FAF7F0;
}

/**********************************************************************
flow
**********************************************************************/
.l-flow {
  padding-bottom: 7.2rem;
}

/**********************************************************************
profile
**********************************************************************/
.l-profile {
  position: relative;
  padding-bottom: 7.2rem;
}
.l-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background-color: #d9d9d9;
  border-radius: 1em;
}

/**********************************************************************
achievement
**********************************************************************/
.l-achievement {
  padding-bottom: 7.2rem;
}

/**********************************************************************
faq
**********************************************************************/
.l-faq {
  position: relative;
  padding-bottom: 7.2rem;
}
.l-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background: #FAF7F0;
}

/**********************************************************************
contact
**********************************************************************/
.l-contact {
  padding-bottom: 7.2rem;
}

/**********************************************************************
footer
**********************************************************************/
.l-footer {
  padding: 4.8rem 7.2rem;
  margin-top: 16rem;
  color: #ffffff;
  background-color: #2B3A67;
}
@media screen and (max-width: 1080px) {
  .l-footer {
    margin-top: 8rem;
    padding: 4.8rem 4.8rem;
  }
}
@media screen and (max-width: 480px) {
  .l-footer {
    margin-top: 4rem;
    padding: 4.8rem 2.4rem;
  }
}/*# sourceMappingURL=style.css.map */