@charset "UTF-8";
/* =================================
  Foundation
================================= */
/*
  Reset
————————————————————————————————————————— */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
  list-style-type: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}
input[type="submit"], input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}
select::-ms-expand {
  display: none;
}
/*
  Settings
————————————————————————————————————————— */
/*
  Base
————————————————————————————————————————— */
@font-face {
  font-family: "Hypatia Sans Pro";
  src: url("../font/HypatiaSansPro-Regular.woff") format("woff");
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  font-stretch: normal;
  color: #000;
  line-height: 1;
}
/* =================================
  Layout
================================= */
/*
  layout
————————————————————————————————————————— */
.l-main {
  flex: 1;
  padding-top: 100px;
  padding-bottom: 160px;
}
.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-wrapper {
  max-width: 1090px;
  margin: 0 auto;
}
.l-wrapper2 {
  max-width: 1000px;
  margin: 0 auto;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  /* ======================
    layout(1199)
    =========================*/
  .l-wrapper, .l-wrapper2 {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  /* ======================
    layout(992)
    =========================*/
  .l-main {
    padding-top: 68px;
    padding-bottom: 80px;
  }
}
/* =================================
  Object
================================= */
/*
  component
————————————————————————————————————————— */
.c-title {
  font-weight: 700;
  font-family: "Hypatia Sans Pro";
  font-style: italic;
  font-size: 2.375rem;
  letter-spacing: 1px;
  text-align: center;
}
.c-title span {
  font-size: 25rem;
  font-style: normal;
  font-size: 0.875rem;
  letter-spacing: 1.4px;
  display: block;
  margin-top: 14px;
}
.c-title.-left {
  text-align: left;
}
.c-link {
  font-family: "Hypatia Sans Pro";
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 1.6px;
  color: #000;
  background: #F7AB00;
  display: block;
  text-align: center;
  max-width: 330px;
  padding: 22px 0;
  margin: 0 auto;
}
.c-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger {
  position: fixed;
  top: 18px;
  right: 5%;
  z-index: 50;
  width: 30px;
  height: 30px;
  margin: auto;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-hamburger:hover, .c-hamburger:focus {
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
}
.c-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 25px;
  height: 2px;
  background-color: #000;
  -webkit-transition: inherit;
  transition: inherit;
  transition: 0.35s ease-in-out;
}
.c-hamburger__line:before, .c-hamburger__line:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
}
.c-hamburger__line:before {
  top: -8px;
}
.c-hamburger__line:after {
  top: 8px;
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line {
  background-color: transparent;
  transform: translate(-50px, 0);
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:before, .c-hamburger[aria-expanded="true"] .c-hamburger__line:after {
  top: 0;
  background-color: #000;
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:before {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: translate(50px, 0) rotate(315deg);
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:after {
  -webkit-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  transform: translate(50px, 0) rotate(-315deg);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (min-width: 768px) {
  /* ======================
    component(768)
    =========================*/
}
/*
  footer
————————————————————————————————————————— */
body.home .p-footer__map, body.home .p-footer__contact {
  display: none;
}
.p-footer__map iframe {
  width: 100%;
  height: 300px;
}
.p-footer {
  background: #F7AB00;
  padding: 60px 0;
}
.p-footer .p-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-footer .p-footer__left {
  width: fit-content;
}
.p-footer .p-footer__right {
  width: 100%;
  max-width: 320px;
}
.p-footer .p-footer__policy {
  font-size: 0.875rem;
  color: #000;
  margin-bottom: 20px;
  display: inline-block;
}
.p-footer .p-footer__link {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff;
  display: block;
  width: 100%;
  background: #1A1311;
  padding: 24px 0;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
.p-footer .p-footer__link.-mail:before {
  content: "";
  display: inline-block;
  background: url(../img/common/mail-icon.svg) no-repeat;
  background-size: contain;
  width: 30px;
  height: 23px;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.p-footer .p-footer__link.-tel {
  margin-bottom: 0;
}
.p-footer .p-footer__link.-tel:before {
  content: "";
  display: inline-block;
  background: url(../img/common/tel-icon2.svg) no-repeat;
  background-size: contain;
  width: 23px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
.p-footer .p-footer__logo {
  margin-bottom: 40px;
}
.p-footer .p-footer__logo img {
  width: fit-content;
  height: 28px;
  object-fit: contain;
}
.p-footer address {
  font-size: 0.875rem;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-bottom: 40px;
}
.p-footer small {
  font-family: "Hypatia Sans Pro";
  font-style: italic;
  font-size: 0.75rem;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
    project(767)
    =========================*/
  .p-footer {
    padding: 45px 0 20px;
  }
  .p-footer .p-footer__inner {
    display: block;
  }
  .p-footer .p-footer__left {
    width: unset;
    text-align: center;
  }
  .p-footer .p-footer__right {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .p-footer small {
    display: block;
    text-align: center;
  }
}
/*
  header
————————————————————————————————————————— */
.p-header {
  background: #F7AB00;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  z-index: 10;
}
.p-header .p-header__logo img {
  height: 42px;
  object-fit: contain;
}
.p-header .p-header__list {
  display: flex;
  align-items: center;
}
.p-header .p-header__item {
  margin-right: 30px;
}
.p-header .p-header__item:last-child {
  margin: 0;
}
.p-header .p-header__item a {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  display: block;
}
.p-header .p-header__item.-contact {
  height: 50px;
  width: 160px;
  background: #1A1311;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
}
.p-header .p-header__item.-contact a {
  color: #fff;
}
#p-globalMenuSp {
  width: 100%;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  opacity: 0;
  trasition: all 0.3s;
  padding: 80px 10% 58px;
}
#p-globalMenuSp.is-active {
  z-index: 10;
  opacity: 1;
}
#p-globalMenuSp .p-header__logo {
  width: 145px;
  margin: 0 0 44px;
}
#p-globalMenuSp .p-header__list {
  margin: 0 0 40px;
}
#p-globalMenuSp .p-header__item {
  margin: 0 0 24px;
}
#p-globalMenuSp .p-header__item:last-child {
  margin: 0;
}
#p-globalMenuSp .p-header__item a {
  font-size: 1.125rem;
  color: #000;
  display: block;
  position: relative;
}
#p-globalMenuSp .p-header__item a:after {
  content: "";
  display: inline-block;
  background: url(../img/common/arrow.svg) no-repeat;
  background-size: contain;
  width: 34px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
    project(992)
    =========================*/
  .p-header {
    padding: 20px 5%;
  }
}
/*
  top
————————————————————————————————————————— */
.p-top__mainvisual {
  height: calc(100vh - 100px);
  position: relative;
}
.p-top__mainvisual .swiper-container {
  overflow: hidden;
  height: 100%;
}
.p-top__mainvisual .swiper-container img {
  height: 100%;
  object-fit: cover;
}
.p-top__mainvisual .p-mainvisual__image {
  height: inherit;
}
.p-top__mainvisual .p-mainvisual__image img {
  height: 100%;
  object-fit: cover;
}
.p-top__mainvisual .p-mainvisual__hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: fit-content;
  text-align: center;
  z-index: 8;
}
.p-top__mainvisual .p-mainvisual__hero span {
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.4;
  display: inline-block;
  margin-bottom: 50px;
  white-space: nowrap;
}
.p-top__mainvisual .p-mainvisual__hero img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.p-top__concept {
  text-align: center;
  background: #F7AB00;
}
.p-top__concept .p-concept__inner {
  padding: 86px 0 70px;
  position: relative;
}
.p-top__concept .p-cocept__title {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 1.3px;
  display: inline-block;
  margin-bottom: 65px;
}
.p-top__concept .p-cocept__image {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.p-top__concept .p-cocept__copy {
  font-weight: 700;
  font-size: 1.625rem;
  letter-spacing: 1px;
  line-height: 1.66;
  margin-bottom: 32px;
}
.p-top__concept .p-cocept__text {
  font-size: 1rem;
  letter-spacing: 1.6px;
  line-height: 2;
}
.p-top__concept .p-cocept__sub-image {
  position: absolute;
}
.p-top__concept .p-cocept__sub-image.-sub1 {
  width: 190px;
  left: 0;
  bottom: 120px;
}
.p-top__concept .p-cocept__sub-image.-sub2 {
  width: 160px;
  left: 36%;
  bottom: 40px;
  transform: translateX(-50%);
}
.p-top__concept .p-cocept__sub-image.-sub3 {
  width: 96px;
  right: 24%;
  bottom: 40px;
  transform: translateX(-50%);
}
.p-top__concept .p-cocept__sub-image.-sub4 {
  width: 152px;
  right: 0;
  bottom: 120px;
}
.p-top__service {
  padding-top: 120px;
}
.p-top__service .p-service__body {
  background: #F7AB00;
  padding: 42px;
  margin-top: 42px;
}
.p-top__service .p-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  column-gap: 70px;
}
.p-top__service .p-service__item {
  position: relative;
  text-align: center;
}
.p-top__service .p-service__item:after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
}
.p-top__service .p-service__item:last-child:after {
  display: none;
}
.p-top__service .p-service__image {
  margin-bottom: 34px;
}
.p-top__service .p-service__image img {
  height: 192px;
  object-fit: contain;
}
.p-top__service .p-service__title {
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.3;
  margin-bottom: 34px;
}
.p-top__service .p-service__title span {
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 1px;
  display: block;
  margin-top: 12px;
}
.p-top__service .p-service__text {
  font-size: 0.8125rem;
  line-height: 1.8;
  text-align: left;
}
.p-top__plan {
  padding-top: 120px;
}
.p-top__plan .p-plan__body {
  margin-top: 42px;
}
.p-top__plan .p-plan__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  column-gap: 24px;
}
.p-top__plan .p-plan__item {
  padding: 47px 0 0;
  text-align: center;
  border: 1px solid #eee;
}
.p-top__plan .p-plan__item:first-child {
  border: 3px solid #F7AB00;
}
.p-top__plan .p-item__text {
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 40px;
}
.p-top__plan .p-item__title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 46px;
}
.p-top__plan .p-item__title .p-item__text2 {
  font-size: 1.5rem;
}
.p-top__plan .p-item__title .p-item__text3 {
  font-weight: 400;
  font-size: 0.75rem;
}
.p-top__plan dl {
  display: flex;
  padding: 16px 40px;
  background: #f7f7f7;
  border-top: 1px solid #eee;
}
.p-top__plan dt, .p-top__plan dd {
  font-size: 0.8125rem;
}
.p-top__plan dt {
  width: 90%;
  text-align: left;
}
.p-top__plan dd {
  width: 10%;
}
.p-top__faq {
  padding-top: 120px;
  padding-bottom: 120px;
}
.p-top__faq .p-faq__body {
  margin-top: 42px;
}
.p-top__faq .toggle-box {
  margin-bottom: 12px;
}
.p-top__faq .toggle-box:last-child {
  margin-bottom: 0;
}
.p-top__faq .toggle-ttl {
  background: #F7AB00;
  position: relative;
  padding: 25px 50px;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.4;
  cursor: pointer;
}
.p-top__faq .toggle-ttl:before {
  content: "";
  display: inline-block;
  background: url(../img/top/faq-icon.svg) no-repeat;
  width: 24px;
  height: 24px;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}
.p-top__faq .toggle-ttl.selected .toggle-btn:before {
  content: normal;
}
.p-top__faq .toggle-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  overflow: hidden;
}
.p-top__faq .toggle-btn:before, .p-top__faq .toggle-btn:after {
  display: block;
  content: "";
  background-color: #000;
  position: absolute;
  width: 15px;
  height: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-top__faq .toggle-btn:before {
  width: 3px;
  height: 15px;
}
.p-top__faq dd {
  display: none;
}
.p-top__faq--open dd {
  display: block;
}
.p-top__faq .answer-list {
  padding: 0 14px;
  margin: 28px 0 56px;
}
.p-top__faq .answer-ttl {
  font-size: 1rem;
  letter-spacing: 1px;
  margin: 0 0 19px;
  padding: 0 0 0 50px;
  position: relative;
  line-height: 1.4;
}
.p-top__faq .answer-ttl span {
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin: 0 28px 0 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.p-top__news {
  background: #1A1311;
  padding: 120px 0 70px;
}
.p-top__news h2 {
  color: #fff;
}
.p-top__news .p-news__body {
  margin-top: 42px;
  margin-bottom: 60px;
}
.p-top__news .p-news__article {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed #fff;
}
.p-top__news .p-news__box {
  display: flex;
}
.p-top__news .p-news__date {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff;
  display: inline-block;
  margin-right: 50px;
}
.p-top__news .p-news__title {
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.3;
  color: #fff;
}
.p-top__news .p-news__more {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #fff;
}
.p-top__instagram {
  padding-top: 120px;
}
.p-top__company {
  padding-top: 120px;
}
.p-top__company .p-company__body {
  margin-top: 42px;
  border-top: 2px solid #000;
}
.p-top__company .p-company__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.p-top__company th, .p-top__company td {
  font-size: 1rem;
  line-height: 1.4;
  padding: 26px 0;
  border-bottom: 1px solid #eee;
}
.p-top__company th {
  width: 20%;
}
.p-top__company td {
  width: 80%;
}
.p-top__company .p-company__map {
  margin-top: 60px;
}
.p-top__company .p-company__map iframe {
  width: 100%;
  height: 280px;
}
.p-top__contact {
  padding-top: 120px;
}
.p-top__contact .p-contact__body {
  margin-top: 42px;
}
.p-top__contact .p-contact__tel {
  color: #000;
  display: block;
  max-width: 450px;
  text-align: center;
  padding: 30px 0;
  margin: 0 auto;
  margin-bottom: 20px;
  position: relative;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-top__contact .p-contact__tel:before {
  content: "";
  display: inline-block;
  background: url(../img/common/tel-icon.svg) no-repeat;
  background-size: contain;
  width: 35px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
.p-top__contact .p-contact__tel span:nth-child(1) {
  font-size: 1rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.p-top__contact .p-contact__tel span:nth-child(2) {
  font-weight: 700;
  font-size: 2.375rem;
  letter-spacing: 1.6px;
  display: block;
}
.p-top__contact .p-contact__mail {
  color: #000;
  display: block;
  max-width: 450px;
  text-align: center;
  padding: 30px 0;
  margin: 0 auto;
  margin-bottom: 80px;
  position: relative;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-top__contact .p-contact__mail:before {
  content: "";
  display: inline-block;
  background: url(../img/common/mail-icon02.svg) no-repeat;
  background-size: contain;
  width: 40px;
  height: 46px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
.p-top__contact .p-contact__mail span:nth-child(1) {
  font-size: 1rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}
.p-top__contact .p-contact__mail span:nth-child(2) {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1.6px;
  display: block;
}
.p-top__contact .p-contact__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin-top: 80px;
  margin-bottom: 60px;
}
.p-top__contact .p-contact__table th {
  font-size: 1rem;
  letter-spacing: 1.4px;
  width: 35%;
  padding: 0 0 40px;
  vertical-align: top;
}
.p-top__contact .p-contact__table th span {
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-block;
  vertical-align: super;
}
.p-top__contact .p-contact__table td {
  font-size: 1rem;
  width: 65%;
  padding: 0 0 30px 47px;
}
.p-top__contact .p-contact__table td p {
  margin-bottom: 10px;
}
.p-top__contact .form_style01 {
  font-size: 1rem;
  width: 100%;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #F4F4F4;
}
.p-top__contact .form_style02 {
  font-size: 1rem;
  width: 115px;
  height: 45px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #F4F4F4;
  resize: none;
}
.p-top__contact .form_style03 {
  font-size: 1rem;
  width: 100%;
  height: 220px;
  padding: 10px;
  border: none;
  border-radius: 3px;
  background: #F4F4F4;
  resize: none;
}
.p-top__contact input[type=submit] {
  font-family: "Hypatia Sans Pro";
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 1.6px;
  color: #000;
  background: #F7AB00;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 330px;
  padding: 22px 0;
  margin: 0 auto;
}
.p-top__contact .wpcf7-list-item {
  display: block;
  margin: 0 0 0.625rem;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 991px) {
  /* ======================
    project(992)
    =========================*/
  .p-top__concept .p-cocept__sub-image.-sub1 {
    display: none;
  }
  .p-top__concept .p-cocept__sub-image.-sub2 {
    left: 24%;
    bottom: 70px;
  }
  .p-top__concept .p-cocept__sub-image.-sub3 {
    right: 18%;
    bottom: 70px;
  }
  .p-top__concept .p-cocept__sub-image.-sub4 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
    project(768)
    =========================*/
  .p-top__concept .p-concept__inner {
    padding: 80px 0;
  }
  .p-top__concept .p-cocept__copy {
    font-size: 1.375rem;
  }
  .p-top__concept .p-cocept__text {
    font-size: 0.875rem;
  }
  .p-top__concept .p-cocept__sub-image.-sub2 {
    display: none;
  }
  .p-top__concept .p-cocept__sub-image.-sub3 {
    display: none;
  }
  .p-top__concept .p-cocept__image {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .p-top__service {
    padding-top: 80px;
  }
  .p-top__service .p-service__body {
    padding: 32px 26px;
  }
  .p-top__service .p-service__list {
    grid-template-columns: repeat(1, 1fr);
    column-gap: unset;
    row-gap: 70px;
  }
  .p-top__service .p-service__item:after {
    width: 100%;
    height: 1px;
    top: unset;
    bottom: -35px;
    left: 0;
    right: unset;
    transform: translateY(0);
  }
  .p-top__service .p-service__image {
    margin-bottom: 24px;
  }
  .p-top__service .p-service__image img {
    height: 180px;
  }
  .p-top__service .p-service__title {
    font-size: 1.375rem;
  }
  .p-top__plan {
    padding-top: 80px;
  }
  .p-top__plan .p-plan__list {
    grid-template-columns: repeat(1, 1fr);
    column-gap: unset;
    row-gap: 48px;
  }
  .p-top__faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .p-top__faq .toggle-ttl {
    padding: 18px 45px;
    font-size: 0.875rem;
  }
  .p-top__faq .answer-list {
    padding: 0 10px;
    margin: 20px 0 40px;
  }
  .p-top__faq .answer-ttl {
    font-size: 0.875rem;
  }
  .p-top__news {
    padding: 80px 0 60px;
  }
  .p-top__news .p-news__body {
    margin-bottom: 40px;
  }
  .p-top__news .p-news__article {
    align-items: flex-end;
  }
  .p-top__news .p-news__box {
    display: block;
    margin-right: 30px;
  }
  .p-top__news .p-news__date {
    font-size: 0.875rem;
    margin-right: unset;
    margin-bottom: 14px;
  }
  .p-top__news .p-news__more {
    font-size: 0.875rem;
  }
  .p-top__instagram {
    padding-top: 80px;
  }
  .p-top__company {
    padding-top: 80px;
  }
  .p-top__company th, .p-top__company td {
    font-size: 0.875rem;
    padding: 20px 0;
  }
  .p-top__company th {
    width: 30%;
  }
  .p-top__company td {
    width: 70%;
  }
  .p-top__company .p-company__map {
    margin-top: 40px;
  }
  .p-top__company .p-company__map iframe {
    height: 240px;
  }
  .p-top__contact {
    padding-top: 80px;
  }
  .p-top__contact .p-contact__tel {
    padding: 26px 0;
    margin-bottom: 20px;
  }
  .p-top__contact .p-contact__tel:before {
    width: 25px;
    height: 36px;
    left: 15px;
  }
  .p-top__contact .p-contact__tel span:nth-child(1) {
    font-size: 0.875rem;
  }
  .p-top__contact .p-contact__tel span:nth-child(2) {
    font-size: 1.875rem;
    letter-spacing: 0;
  }
  .p-top__contact .p-contact__mail {
    padding: 26px 0;
  }
  .p-top__contact .p-contact__mail:before {
    width: 30px;
    height: 36px;
    left: 15px;
  }
  .p-top__contact .p-contact__mail span:nth-child(1) {
    font-size: 0.875rem;
  }
  .p-top__contact .p-contact__mail span:nth-child(2) {
    letter-spacing: 0;
  }
  .p-top__contact .p-contact__table {
    margin-bottom: 40px;
  }
  .p-top__contact .p-contact__table th {
    font-size: 1rem;
    letter-spacing: 1px;
    width: 100%;
    padding: 0 0 10px;
    display: block;
  }
  .p-top__contact .p-contact__table td {
    width: 100%;
    padding: 0 0 20px;
    display: block;
  }
  .p-top__contact input[type=submit] {
    width: 100%;
    max-width: 300px;
  }
}
/*
  policy
————————————————————————————————————————— */
.p-policy__top {
  padding-top: 120px;
}
.p-policy__top h2 {
  margin-bottom: 42px;
}
.p-policy__top .p-privacy__box {
  margin: 0 0 40px;
}
.p-policy__top .p-privacy__box-text {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 40px;
}
.p-policy__top .p-privacy__box-text a {
  color: #F7AB00;
}
.p-policy__top .p-privacy__box-text2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  line-height: 1.75;
  color: #F7AB00;
  position: relative;
  border-left: 8px solid #F7AB00;
  padding-left: 0.666em;
}
.p-policy__top .p-privacy__box-text3 {
  font-size: 1rem;
  line-height: 1.88;
  padding-left: 1em;
  text-indent: -1em;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
    project(767)
    =========================*/
  .p-policy__top {
    padding-top: 80px;
  }
  .p-policy__top .p-privacy__box-text {
    font-size: 0.875rem;
    margin: 0 0 20px;
  }
  .p-policy__top .p-privacy__box-text2 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    line-height: 1.45;
    border-left: 4px solid #F7AB00;
    padding-left: 0.366em;
  }
  .p-policy__top .p-privacy__box-text3 {
    font-size: 0.875rem;
  }
}
/*
  news
————————————————————————————————————————— */
.p-news__top {
  padding-top: 120px;
}
.p-news__top h2 {
  margin-bottom: 42px;
}
.p-news__top .p-news__article {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #1A1311;
}
.p-news__top .p-news__date {
  font-size: 1rem;
  letter-spacing: 0.6px;
  color: #000;
  display: inline-block;
  margin-right: 20px;
}
.p-news__top .p-news__title {
  font-size: 1rem;
  letter-spacing: 0.6px;
  color: #000;
}
.p-news__pagenation {
  margin-top: 50px;
}
.p-news__pagenation ul {
  display: flex;
  justify-content: center;
}
.p-news__pagenation li {
  font-size: 1.125rem;
  margin-right: 18px;
}
.p-news__pagenation li:last-child {
  margin: 0;
}
.p-news__pagenation li .current {
  border-bottom: 1px solid #000;
}
.p-news__pagenation a {
  color: #000;
}
.p-news__main {
  padding-top: 120px;
}
.p-news__main .p-news__article {
  padding: 0 70px 70px;
  margin-bottom: 80px;
  border-bottom: 1px solid #F7AB00;
}
.p-news__main .p-news__date {
  font-size: 1rem;
  letter-spacing: 0.6px;
  color: #000;
}
.p-news__main .p-news__title {
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.4px;
  line-height: 1.66;
  color: #000;
  margin: 17px 0 32px;
}
.p-news__main .p-news__content p {
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  line-height: 2.35;
  color: #000;
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
    project(767)
    =========================*/
  .p-news__top {
    padding-top: 80px;
  }
  .p-news__top .p-news__article {
    display: block;
    padding: 12px 0;
  }
  .p-news__top .p-news__date {
    font-size: 0.875rem;
    margin-right: unset;
    margin-bottom: 10px;
  }
  .p-news__top .p-news__cate {
    padding: 4px 8px;
    margin-right: unset;
    margin-bottom: 10px;
  }
  .p-news__main {
    padding-top: 80px;
  }
  .p-news__main .p-news__article {
    padding: 0;
    border-bottom: none;
  }
  .p-news__main .p-news__date {
    font-size: 0.875rem;
  }
  .p-news__main .p-news__title {
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    margin: 17px 0 52px;
  }
  .p-news__main .p-news__content p {
    letter-spacing: 0.5px;
    line-height: 1.78;
  }
}
/*
  utillity
————————————————————————————————————————— */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}
.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}
.u-sp-none992 {
  display: none;
}
.u-sp-none768 {
  display: none;
}
.u-sp-none576 {
  display: none;
}
.u-m-auto {
  margin: 0 auto;
}
.u-display-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.u-position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.u-fade {
  opacity: 0;
  transition: all 1s ease;
}
.u-fade.is-active {
  opacity: 1;
  transform: none;
}
.u-fade-up {
  transform: translate(0, 50px);
}
.u-fade-lr {
  transform: translate(-100px, 0);
}
.u-fade-rl {
  transform: translate(100px, 0);
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (min-width: 992px) {
  /* ======================
    utility(992)
    =========================*/
  .u-sp-none992 {
    display: block;
  }
  .u-pc-none992 {
    display: none;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: none;
  }
}
@media screen and (min-width: 768px) {
  /* ======================
    utility(768)
    =========================*/
  .u-sp-none768 {
    display: block;
  }
  .u-pc-none768 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  /* ======================
    utility(576)
    =========================*/
  .u-sp-none576 {
    display: block;
  }
  .u-pc-none576 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }
}
