@charset "UTF-8";
/* font-weight */
/* リキッドレイアウト対応 */
@import url("https://fonts.googleapis.com/css2?family=Oswald&text=1234567");

html {
  font-size: 16px;
}

@media (max-width: 375) {
  html {
    font-size: 4.26667vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.6vw;
  }
}

@media (min-width: 1000px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article>*+* {
  margin-top: 1em;
}

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

/* フォームリセット */
input[type="text"],
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.breadcrumb-wrap {
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .breadcrumb-wrap {
    padding: 0 2.5rem;
    margin-bottom: 4rem;
  }
}

@media screen and (min-width: 1200px) {
  .breadcrumb-wrap {
    padding: 0 0 0 15rem;
    margin-bottom: 6rem;
  }
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li::after {
  /* >を表示*/
  content: '>';
  padding: 0 2px;
  padding: 0 0.125rem;
  font-size: 10px;
  font-size: 0.625rem;
}

@media screen and (min-width: 768px) {
  .breadcrumb li::after {
    font-size: 0.75rem;
  }
}

.breadcrumb li:last-child::after {
  content: '';
}

.breadcrumb li a {
  font-size: 10px;
  font-size: 0.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .breadcrumb li a {
    font-size: 0.75rem;
  }
}

.breadcrumb li a:hover {
  color: #8ABA29;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #FDFDFD;
  color: #8ABA29;
  border-radius: 0.5rem;
  padding: 10px 16px 8px;
  padding: 0.625rem 1rem 0.5rem;
  -webkit-box-shadow: 0.25rem 0.25rem 0 0 #C9E19F;
  box-shadow: 0.25rem 0.25rem 0 0 #C9E19F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn:hover {
  -webkit-transform: translate(0.25rem, 0.25rem);
  transform: translate(0.25rem, 0.25rem);
  -webkit-box-shadow: 0 0 0 0 #C9E19F;
  box-shadow: 0 0 0 0 #C9E19F;
}

.btn-border {
  border: solid 1px #8ABA29;
  border: solid 0.0625rem #8ABA29;
}

.btn-tel,
.btn-mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-tel::before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 13px;
  font-size: 0.8125rem;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  margin-top: 2px;
  margin-top: 0.125rem;
  margin-right: 2px;
  margin-right: 0.125rem;
}

.btn-mail::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-right: 4px;
  margin-right: 0.25rem;
}

.footer {
  background: #F6F1EA;
  width: 100%;
}

.footer a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer a:hover {
  color: #8ABA29;
}

.footer__text {
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}

@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 0.75rem;
  }
}

.footer-privacypolicy-link {
  text-decoration: underline;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .footer-privacypolicy-link {
    text-decoration: none;
    margin-bottom: 0.625rem;
  }
}

.footer__copyright {
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  .footer__copyright {
    padding-bottom: 0;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 5;
}

@media screen and (min-width: 1200px) {
  header {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.l-inner {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1080px;
    padding-right: 40px;
    padding-left: 40px;
    margin: auto;
  }
}

.pc-footer {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
  }
}

.pc-footer-contact {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  margin-right: auto;
}

.pc-footer__logo {
  width: 210px;
  width: 13.125rem;
}

.pc-footer__tel-wrap {
  padding: 24px 0;
  padding: 1.5rem 0;
}

.pc-footer__adress {
  font-style: normal;
  font-size: 12px;
  font-size: 0.75rem;
}

.pc-footer-nav {
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-right: 40px;
  padding-right: 4rem;
  margin-right: auto;
}

.pc-footer-nav a {
  padding-bottom: 16px;
  padding-bottom: 1rem;
}

.pc-footer-nav a:last-child,
.pc-footer-nav-inner a:nth-child(3n) {
  padding-bottom: 0;
}

.pc-footer-nav-inner a:nth-of-type(n+1):nth-of-type(-n+3) {
  margin-right: 40px;
  margin-right: 2.5rem;
}

.pc-footer-nav__bold {
  font-weight: 800;
}

.pc-footer-nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 50%;
}

.pc-nav {
  display: none;
}

@media screen and (min-width: 1200px) {
  .pc-nav {
    position: relative;
    display: block;
    width: 12.5rem;
    background: #F6F1EA;
    border-bottom-right-radius: 1.5rem;
    padding: 1.75rem 0.5rem 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .pc-nav {
    margin-left: -20px;
  }
}

@media screen and (min-width: 1200px) {

  .pc-nav::before,
  .pc-nav::after {
    position: absolute;
    content: "";
    display: block;
    background: url("../images/common/pc-nav__element.png") no-repeat;
    background-size: cover;
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.pc-nav::before {
  top: 0;
  right: -25px;
  right: -1.5625rem;
}

.pc-nav::after {
  bottom: -25px;
  bottom: -1.5625rem;
  left: 20px;
}

.pc-nav__logo {
  width: 120px;
  width: 7.5rem;
  margin: auto;
}

.pc-nav__list {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.pc-nav__list-item+.pc-nav__list-item {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.pc-nav__list-item a {
  display: block;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pc-nav__list-item a:hover {
  color: #8ABA29;
}

.pc-nav__tel-wrap {
  padding-top: 40px;
  padding-top: 2.5rem;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.pc-tel {
  position: relative;
  padding-left: 14px;
  padding-left: 0.875rem;
  line-height: 1;
}

.pc-tel::before {
  position: absolute;
  display: block;
  top: 6px;
  top: 0;
  left: -0.375rem;
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 16px;
  font-size: 1rem;
  -webkit-transform: rotate(6deg);
  transform: rotate(6deg);
  color: #404040;
}

.pc-tel::after {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  bottom: 2px;
  bottom: 0.125rem;
  width: 85%;
  height: 1px;
  height: 0.0625rem;
  background: #404040;
}

.pc-tel__text {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  padding-left: 6px;
  padding-left: 0.375rem;
  text-align: left;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #FDFDFD;
  border-radius: 1rem;
}

.service-item__title {
  color: #FDFDFD;
  background: url("../images/common/item-bg.png") no-repeat;
  background-size: cover;
  text-align: center;
  padding: 16px 16px 12px 16px;
  padding: 1rem 1rem 0.75rem 1rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .service-item__title {
    font-size: 1.25rem;
    padding: 1.25rem 1.25rem 1rem;
  }
}

.service-item__texts {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 16px 16px 12px 16px;
  padding: 1rem 1rem 0.75rem 1rem;
}

@media screen and (min-width: 768px) {
  .service-item__texts {
    font-size: 1rem;
    line-height: 1.875rem;
    padding: 1.25rem;
  }
}

.service-item__name {
  font-weight: 800;
  line-height: 22px;
  line-height: 1.375rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .service-item__name {
    margin-bottom: 0.625rem;
    line-height: 1.75rem;
  }
}

.service-item__text {
  line-height: 26px;
  line-height: 1.625rem;
}

.service-item__btn {
  font-size: 13px;
  font-size: 0.8125rem;
  width: 200px;
  width: 12.5rem;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .service-item__btn {
    font-size: 1rem;
    width: 15rem;
  }
}

.service-item__list {
  padding-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .service-item__list {
    padding-bottom: 20px;
  }
}

.service-item__price {
  display: block;
  position: relative;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .service-item__price {
    display: block;
    text-align: center;
    font-size: 1.5rem;
  }
}

.service-item__price::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.2em;
  width: 10em;
  height: 1em;
  background: linear-gradient(transparent 60%, #C9E19F 60%);
  pointer-events: none;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .service-item__price::after {
    width: 60%;
  }
}

.service-item__price-small {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .service-item__price-small {
    font-size: 14px;
    font-weight: normal;
  }
}

.sp-footer {
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
  padding: 24px 20px 0;
  padding: 1.5rem 1.25rem 0;
}

@media screen and (min-width: 768px) {
  .sp-footer {
    display: none;
  }
}

.sp-footer__logo {
  width: 186px;
  width: 11.625rem;
  margin: 0 auto 32px;
  margin: 0 auto 2rem;
}

.sp-footer-contact {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.sp-footer-contact>li+li {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.sp-footer-contact__title {
  font-weight: 800;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}

.sp-footer-contact__sub {
  font-weight: 400;
  font-size: 10px;
  font-size: 0.625rem;
}

.sp-footer-contact__btn {
  font-weight: 800;
  font-size: 15px;
  font-size: 0.9375rem;
  width: 200px;
  width: 12.5rem;
  margin: auto;
}

.sp-footer-nav {
  font-weight: 800;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.sp-footer-nav__item {
  padding: 10px 0;
  padding: 0.625rem 0;
  border-top: 1px dashed #C9E19F;
  border-top: 0.0625rem dashed #C9E19F;
}

.sp-footer-nav__item:last-child {
  border-bottom: 1px dashed #C9E19F;
  border-bottom: 0.0625rem dashed #C9E19F;
}

.sp-footer-nav__service {
  position: relative;
  background: #FDFDFD;
  padding: 16px 20px 0;
  padding: 1rem 1.25rem 0;
  margin-bottom: 32px;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

.sp-footer-nav__service-title {
  position: absolute;
  top: -14px;
  top: -0.875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #C9E19F;
  border-radius: 0.25rem;
  padding: 4px 10px 2px;
  padding: 0.25rem 0.625rem 0.125rem;
}

.sp-footer-nav__service-item {
  padding: 10px 0;
  padding: 0.625rem 0;
  border-bottom: 1px dashed #C9E19F;
  border-bottom: 0.0625rem dashed #C9E19F;
}

.sp-footer-nav__service-item:last-child {
  border-bottom: none;
}

.sp-footer__adress {
  font-style: normal;
  font-size: 10px;
  font-size: 0.625rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.sp-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FDFDFD;
  width: 100%;
  height: 56px;
  border-bottom: solid 1px #8ABA29;
}

@media screen and (min-width: 1200px) {
  .sp-header {
    display: none;
  }
}

.sp-header__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #FDFDFD;
  margin-top: -6px;
  margin-left: -10px;
  /* border-top: solid 1px #FDFDFD; */
  /* border-bottom: solid 1px #8ABA29; */
  border: solid 1px #8ABA29;
}

.sp-header__logo img {
  width: 48px;
  position: relative;
  z-index: 1;
}

.sp-header__logo::before,
.sp-header__logo::after {
  position: absolute;
  content: "";
  top: -4px;
  background: #FDFDFD;
  width: 25px;
  height: 64px;
}

.sp-header__logo::before {
  left: 0;
}

.sp-header__logo::after {
  right: -1px;
}

.sp-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

.sp-header__tel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #416517;
  padding: 0 10px;
  padding: 0 0.625rem;
}

@media screen and (max-width: 360px) {
  .sp-header__tel {
    display: none;
  }
}

.sp-header__tel::before {
  position: absolute;
  display: inline-block;
  top: 14px;
  left: -12px;
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 18px;
  -webkit-transform: rotate(24deg);
  transform: rotate(24deg);
  color: #416517;
}

.sp-header__tel-text {
  position: relative;
  font-size: 15px;
}

.sp-header__tel-text::after {
  position: absolute;
  top: 2px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  font-size: 11px;
  color: #416517;
  margin-left: 8px;
}

.sp-header__tel-sub {
  font-size: 10px;
}

.sp-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #8ABA29;
  color: #FDFDFD;
  width: 56px;
  text-align: center;
}

.sp-header__contact>.fa-envelope {
  font-size: 20px;
}

.sp-header__contact>p {
  font-size: 10px;
  margin-top: 4px;
}

.sp-openbtn {
  position: relative;
  z-index: 99;
  width: 56px;
  background: #416517;
}

.sp-openbtn::after {
  content: "メニュー";
  position: absolute;
  min-width: 40px;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #FDFDFD;
  font-size: 10px;
  text-transform: uppercase;
}

.sp-openbtn span {
  position: absolute;
  right: 18px;
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #FDFDFD;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sp-openbtn span:nth-of-type(1) {
  top: 12px;
}

.sp-openbtn span:nth-of-type(2) {
  top: 18px;
}

.sp-openbtn span:nth-of-type(3) {
  top: 24px;
}

.sp-openbtn.active span:nth-of-type(1) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sp-openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.sp-openbtn.active span:nth-of-type(3) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  background: #FDFDFD;
  -webkit-transform: translateX(100%) translateZ(0);
  transform: translateX(100%) translateZ(0);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 56px 0 24px;
  padding: 3.5rem 0 1.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .sp-nav {
    font-size: 16px;
    padding: 56px 0 24px;
  }
}

.sp-nav.active {
  -webkit-transform: translateX(0%) translateZ(0);
  transform: translateX(0%) translateZ(0);
  visibility: visible;
}

.sp-nav-list {
  margin: auto;
  width: 90%;
}

.sp-nav-list__item {
  border-bottom: solid 1px #C9E19F;
  border-bottom: solid 0.0625rem #C9E19F;
}

.sp-nav-list__item,
.sp-nav-service-list__item {
  height: 48px;
  height: 3rem;
  line-height: 48px;
  line-height: 3rem;
}

@media screen and (min-width: 768px) {

  .sp-nav-list__item,
  .sp-nav-service-list__item {
    height: 48px;
    line-height: 48px;
  }
}

.sp-nav-list__item a,
.sp-nav-service-list__item a {
  display: block;
  width: 100%;
}

.sp-nav-list__item--service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sp-nav-service-list {
  display: none;
}

.sp-nav-service-list.active {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}

.sp-nav-service-list__item {
  border-bottom: dotted 1px #C9E19F;
  border-bottom: dotted 0.0625rem #C9E19F;
  margin-left: 13px;
  margin-left: 0.8125rem;
}

@media screen and (min-width: 768px) {
  .sp-nav-service-list__item {
    margin-left: 16px;
    border-bottom: dotted 1px #C9E19F;
  }
}

.sp-nav-service-list__openbtn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  width: 3rem;
  height: 85%;
  border-left: dotted 1px #C9E19F;
  border-left: dotted 0.0625rem #C9E19F;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .sp-nav-service-list__openbtn {
    width: 48px;
    border-left: dotted 1px #C9E19F;
  }
}

.sp-nav-service-list__openbtn::before {
  position: absolute;
  display: block;
  top: -12px;
  top: -0.75rem;
  font-family: "Font Awesome 5 Free";
  content: "\f055";
  font-weight: 900;
  font-size: 16px;
  font-size: 1rem;
  color: #8ABA29;
}

@media screen and (min-width: 768px) {
  .sp-nav-service-list__openbtn::before {
    top: -12px;
    font-size: 16px;
  }
}

.sp-nav-service-list__openbtn.active::before {
  content: "\f056";
}

.sp-nav-service-list__openbtn::after {
  position: absolute;
  display: block;
  content: "開く";
  font-size: 10px;
  font-size: 0.625rem;
  top: 6px;
  top: 0.375rem;
}

@media screen and (min-width: 768px) {
  .sp-nav-service-list__openbtn::after {
    font-size: 10px;
    top: 6px;
  }
}

.sp-nav-service-list__openbtn.active::after {
  content: "閉じる";
}

.sp-nav__contact {
  width: 90%;
  background: #F6F1EA;
  padding: 32px 16px;
  padding: 2rem 1rem;
  text-align: center;
  margin: 32px auto 0;
  margin: 2rem auto 0;
  border-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .sp-nav__contact {
    padding: 32px 16px;
    margin: 32px auto 0;
  }
}

.sp-nav__contact>li+li {
  padding-top: 24px;
  padding-top: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sp-nav__contact>li+li {
    padding-top: 24px;
  }
}

.sp-nav__contact-title {
  font-weight: 800;
}

.sp-nav__contact-sub {
  font-size: 10px;
  font-size: 0.625rem;
}

@media screen and (min-width: 768px) {
  .sp-nav__contact-sub {
    font-size: 12px;
  }
}

.sp-nav__contact-btn {
  font-weight: 800;
  width: 200px;
  width: 12.5rem;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .sp-nav__contact-btn {
    width: 250px;
  }
}

.sub-main {
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .sub-main {
    margin-bottom: 7rem;
  }
}

.sub-main::after {
  display: inline-block;
  content: "";
  width: 100%;
  height: 10px;
  height: 0.625rem;
  background-image: repeating-linear-gradient(-45deg, #8ABA29, #8ABA29 0.0625rem, transparent 0.125rem, transparent 0.3125rem);
  background-size: 0.4375rem 0.4375rem;
}

.sub-main-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .sub-main-title-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4rem;
  }
}

.sub-main-title-wrap::before,
.sub-main-title-wrap::after {
  content: "";
  width: 100%;
  height: 10px;
  height: 0.625rem;
  background-image: repeating-linear-gradient(-45deg, #8ABA29, #8ABA29 0.0625rem, transparent 0.125rem, transparent 0.3125rem);
  background-size: 0.4375rem 0.4375rem;
}

.sub-main__title {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 23px;
  line-height: 1.4375rem;
  margin: 10px auto 7px;
  margin: 0.625rem auto 0.4375rem;
}

@media screen and (min-width: 768px) {
  .sub-main__title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    min-width: 40rem;
    margin: 0 2rem;
  }
}

.sub-main-list {
  width: 100%;
  max-width: 700px;
  max-width: 43.75rem;
  margin: auto;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}

@media screen and (min-width: 768px) {
  .sub-main-list {
    margin-bottom: 4rem;
  }
}

.sub-main-item+.sub-main-item {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.sub-main-item__title {
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 21px;
  line-height: 1.3125rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  padding-left: 32px;
  padding-left: 2rem;
}

@media screen and (min-width: 768px) {
  .sub-main-item__title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-bottom: 0.625rem;
    padding-left: 0;
  }
}

.sub-main-item__title::before {
  position: absolute;
  display: block;
  content: "";
  background: url("../images/common/tri-circle.png") no-repeat;
  background-size: cover;
  width: 24px;
  width: 1.5rem;
  height: 34px;
  height: 2.125rem;
  top: 2px;
  top: 0.125rem;
  left: 0;
}

@media screen and (min-width: 768px) {
  .sub-main-item__title::before {
    top: 0.25rem;
    left: -3.5rem;
    width: 2.625rem;
    height: 3.75rem;
  }
}

.sub-main-item__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
}

@media screen and (min-width: 768px) {
  .sub-main-item__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.sub-main__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .sub-main__prices {
    padding-bottom: 4rem;
  }
}

.sub-main__pricelabel {
  background: #C9E19F;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 8px 12px 6px 12px;
  padding: 0.5rem 0.75rem 0.375rem 0.75rem;
  border-radius: 0.5rem;
  margin-right: 12px;
  margin-right: 0.75rem;
}

@media screen and (min-width: 768px) {
  .sub-main__pricelabel {
    font-size: 1.5rem;
    padding: 0.625rem 1rem 0.5rem 1rem;
    margin-right: 1rem;
  }
}

.sub-main__price {
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .sub-main__price {
    font-size: 1rem;
  }
}

.sub-mv {
  position: relative;
  background: #B2D172;
  color: #416517;
  width: 100%;
  padding: 100px 20px 13px;
  padding: 100px 1.25rem 0.8125rem;
}

@media screen and (min-width: 768px) {
  .sub-mv {
    width: 85%;
    padding: 100px 2.5rem 1.25rem;
    border-bottom-right-radius: 1rem;
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-mv {
    width: 88%;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    margin-top: 2rem;
    padding: 1.5rem 0 1.25rem 15rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-mv::after {
    position: absolute;
    content: '';
    top: -0.5rem;
    right: -0.5rem;
    width: 105%;
    height: 100%;
    border: solid 0.1875rem #416517;
    border-bottom-right-radius: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-mv::after {
    position: absolute;
    content: '';
    top: -0.5rem;
    right: -0.5rem;
    width: 105%;
    height: 100%;
    border: solid 0.1875rem #416517;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-mv-bg {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 40%;
    height: 11.25rem;
    background: #F3E77B;
  }
}

@media screen and (min-width: 1200px) {
  .sub-mv-bg {
    position: absolute;
    content: "";
    top: -1.875rem;
    right: -6.25rem;
    width: 40%;
    height: 10rem;
    background: #F3E77B;
  }
}

.sub-mv__text {
  font-weight: 800;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media screen and (min-width: 768px) {
  .sub-mv__text {
    font-size: 1.5rem;
  }
}

.sub-mv__title {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sub-mv__title {
    font-size: 3rem;
  }
}

.sub-other-services,
.sub-create-price {
  position: relative;
  background: #F6F1EA;
  padding: 40px 20px 40px;
  padding: 2.5rem 1.25rem 2.5rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
  border-radius: 1rem;
}

@media screen and (min-width: 768px) {

  .sub-other-services,
  .sub-create-price {
    padding: 4rem 2.5rem 4rem;
    margin-bottom: 8rem;
  }
}

.sub-other-services__title,
.sub-create-price__title {
  position: absolute;
  top: -8px;
  top: -0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 15px;
  font-size: 0.9375rem;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {

  .sub-other-services__title,
  .sub-create-price__title {
    top: -0.75rem;
    font-size: 1.5rem;
  }
}

.sub-other-services__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  row-gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-other-services__list {
    grid-template-columns: 1fr 1.6fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

.sub-create-price__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  row-gap: 1.5rem;
  align-items: stretch;
}

@media screen and (min-width: 768px) {
  .sub-create-price__list {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    align-items: stretch;
  }
}

.sub-create-price__list .service-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.sub-create-price .service-item__text {
  padding-bottom: 0.25em;
}

__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  row-gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-other-services__list {
    grid-template-columns: 1fr 1.6fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

.sub-section {
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .sub-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1080px;
    padding-right: 40px;
    padding-left: 40px;
    margin: 0 auto 6rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-first-section-wrap {
    padding-left: 15rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-first-section {
    max-width: 1080px;
    padding-right: 40px;
    padding-left: 40px;
    margin: 0 0 5rem 0;
  }
}

@media screen and (min-width: 1200px) {
  .sub-first-section {
    max-width: 60rem;
    padding-left: 0;
    padding-right: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-first-section>.sub-section__texts {
    margin-bottom: auto;
  }
}

.sub-section:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.sub-section__title--sp {
  display: block;
}

@media screen and (min-width: 768px) {
  .sub-section__title--sp {
    display: none;
  }
}

.sub-section__title--pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .sub-section__title--pc {
    display: block;
  }
}

.sub-section__title,
.sub-section__title--single {
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 23px;
  line-height: 1.4375rem;
  padding: 0 40px;
  padding: 0 2.5rem;
  z-index: 0;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {

  .sub-section__title,
  .sub-section__title--single {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}

.sub-section__title::before,
.sub-section__title--single::before {
  position: absolute;
  display: inline-block;
  content: "";
  left: 20px;
  left: 1.25rem;
  width: 64px;
  width: 4rem;
  height: 64px;
  height: 4rem;
  background: url("../images/common/bg-circle.png") no-repeat;
  background-size: cover;
  margin-bottom: -20px;
  margin-bottom: -1.25rem;
  z-index: -1;
}

@media screen and (min-width: 768px) {

  .sub-section__title::before,
  .sub-section__title--single::before {
    width: 6rem;
    height: 6rem;
    left: 0;
  }
}

.sub-section__title::before {
  top: -12px;
  top: -0.75rem;
}

@media screen and (min-width: 768px) {
  .sub-section__title::before {
    top: -0.875rem;
  }
}

.sub-section__title--single::before {
  top: -20px;
  top: -1.25rem;
}

@media screen and (min-width: 768px) {
  .sub-section__title--single::before {
    top: -2rem;
  }
}

.sub-section__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  padding: 0px 40px;
  padding: 0rem 2.5rem;
  margin: 12px 0;
  margin: 0.75rem 0;
}

@media screen and (min-width: 768px) {
  .sub-section__text {
    font-size: 1rem;
    line-height: 1.875rem;
    margin: 1rem 0;
  }
}

.sub-about__illust01,
.sub-about__illust02 {
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

.sub-about__illust01 {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .sub-about__illust01 {
    max-width: 26.25rem;
  }
}

.sub-about__illust02 {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .sub-about__illust02 {
    max-width: 23.75rem;
    margin-right: 1.25rem;
  }
}

.sub-about-origin {
  background: url("../images/common/sub-about__origin.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 40px 64px;
  padding: 5rem 2.5rem 4rem;
}

@media screen and (min-width: 768px) {
  .sub-about-origin {
    padding: 8rem 2.5rem 7rem;
  }
}

.sub-about-origin__title {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-about-origin__title {
    font-size: 1.5rem;
  }
}

.sub-about-origin__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  width: 100%;
  max-width: 630px;
  max-width: 39.375rem;
  margin: 16px auto;
  margin: 1rem auto;
}

@media screen and (min-width: 768px) {
  .sub-about-origin__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.sub-about-profofile {
  background: #F6F1EA;
  padding: 64px 20px 48px;
  padding: 4rem 1.25rem 3rem;
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .sub-about-profofile {
    margin-top: 10rem;
    padding: 8rem 2.5rem;
  }
}

.sub-about-profile01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-about-profile01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 3rem;
  }
}

.sub-about-profile__img {
  width: 100%;
  max-width: 160px;
  max-width: 10rem;
  border-radius: 1rem;
  margin: 0 auto 16px;
  margin: 0 auto 1rem;
}

@media screen and (min-width: 768px) {
  .sub-about-profile__img {
    max-width: 17.5rem;
    -webkit-box-shadow: 1rem 1rem 0 0 #C9E19F;
    box-shadow: 1rem 1rem 0 0 #C9E19F;
    margin: 0 0 0 2.5rem;
  }
}

.sub-about-profile__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-size: 0.9375rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #C9E19F));
  background: linear-gradient(transparent 60%, #C9E19F 60%);
  margin: 0 auto 16px;
  margin: 0 auto 1rem;
}

@media screen and (min-width: 768px) {
  .sub-about-profile__title {
    text-align: left;
    font-size: 1.5rem;
    margin: 0 0 1.5rem;
  }
}

.sub-about-profile__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin: 0 auto 16px;
  margin: 0 auto 1rem;
}

@media screen and (min-width: 768px) {
  .sub-about-profile__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.sub-about-profile__link {
  text-decoration: underline;
  padding: 0 8px;
  padding: 0 0.5rem;
}

.sub-about-profile__link::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-left: 4px;
  margin-left: 0.25rem;
}

@media screen and (min-width: 768px) {
  .sub-about-profile__link::after {
    font-size: 1rem;
    margin-left: 0.375rem;
  }
}

.sub-contact-confirm {
  margin-bottom: 80px;
  margin-bottom: 5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}

@media screen and (min-width: 768px) {
  .sub-contact-confirm {
    min-height: 31.25rem;
    margin-bottom: 10rem;
    padding: 0 2.5rem;
  }
}

.error-alert {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.error_messe {
  color: #EC8725;
}

.formTable {
  margin: 24px auto;
  margin: 1.5rem auto;
}

.formTable th,
.formTable td {
  display: block;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 768px) {

  .formTable th,
  .formTable td {
    display: table-cell;
    text-align: left;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .formTable th {
    width: 35%;
    vertical-align: top;
    padding-right: 1rem;
  }
}

.formTable td {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .formTable td {
    vertical-align: top;
  }
}

.contact-mail {
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 0 auto 112px;
  margin: 0 auto 7rem;
}

@media screen and (min-width: 768px) {
  .contact-mail {
    padding: 0 5rem;
    max-width: 1080px;
    margin: 0 auto 12.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .contact-mail {
    max-width: 47.5rem;
    padding: 0 2.5rem;
  }
}

.contact-form {
  padding: 24px 0 64px;
  padding: 1.5rem 0 4rem;
  border-bottom: solid 2px #8ABA29;
  border-bottom: solid 0.125rem #8ABA29;
}

.contact-form-list {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .contact-form-list {
    margin-bottom: 4rem;
  }
}

.contact-form-list dd {
  width: 100%;
}

.contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .contact-form__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .contactform__item--top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.contact-form__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
  min-width: 250px;
  min-width: 15.625rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.contact-form__flex {
  display: flex;
  align-items: center;
}

.contact-form__flex input[type="text"] {
  width: 50%;
  margin-left: 0;
  margin-right: 1rem;
  min-width: 120px;
}

.contact-form__flex span {
  margin-left: 0;
  white-space: nowrap;
}

.contact-form__title--require,
.contact-form__title--any {
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 3px 4px 0;
  padding: 0.1875rem 0.25rem 0;
  border-radius: 0.125rem;
  margin: 0 8px 4px 0;
  margin: 0 0.5rem 0.25rem 0;
  border: solid 1px #EC8725;
  border: solid 0.0625rem #EC8725;
}

.contact-form__title--require {
  background: #EC8725;
  color: #FDFDFD;
}

.contact-form__title--any {
  border: solid 1px #EC8725;
  border: solid 0.0625rem #EC8725;
  color: #EC8725;
}

.contact-form input[type="text"] {
  border: solid 1px #bcbcbc;
  border: solid 0.0625rem #bcbcbc;
  border-radius: 0.25rem;
  width: 100%;
  padding: 8px 6px 5px 6px;
  padding: 0.5rem 0.375rem 0.3125rem 0.375rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.contact-form textarea {
  width: 100%;
  height: 200px;
  height: 12.5rem;
  border: solid 1px #bcbcbc;
  border: solid 0.0625rem #bcbcbc;
  border-radius: 0.25rem;
}

/*住所*/
.input-postcode-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

.input-postcode {
  margin-left: 4px;
  margin-left: 0.25rem;
  margin-right: 4px;
  margin-right: 0.25rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  max-width: 110px;
  max-width: 6.875rem;
}

.input-postcode::before {
  content: "〒";
  display: inline-block;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
}

.contact-form__text {
  font-size: 13px;
  font-size: 0.8125rem;
}

@media screen and (min-width: 768px) {
  .contact-form__text {
    font-size: 1rem;
    padding-top: 0.125rem;
  }
}

/*セレクト*/
.contact-form-select-wrap {
  position: relative;
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
}

.contact-form-select-wrap select {
  width: 100%;
  max-width: 300px;
  max-width: 18.75rem;
  background-color: #FDFDFD;
  border: solid 1px #bcbcbc;
  border: solid 0.0625rem #bcbcbc;
  border-radius: 0.25rem;
  color: #58504A;
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
}

.contact-form-select-wrap::after {
  position: absolute;
  content: "";
  top: 30%;
  right: 16px;
  right: 1rem;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: solid 2px #58504A;
  border-top: solid 0.125rem #58504A;
  border-right: solid 2px #58504A;
  border-right: solid 0.125rem #58504A;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/*ラジオボタン*/
input[type="radio"] {
  accent-color: green;
  margin-top: -2px;
  margin-top: -0.125rem;
}

.radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 2px;
  margin-top: 0.125rem;
  width: 100%;
}

/*ボタン*/
.contact-form__btn,
.contact-form__btn--back {
  display: block;
  border-radius: 0.5rem;
  margin: auto;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.contact-form__btn+.contact-form__btn--back {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.contact-form__btn {
  background: #8ABA29;
  color: #FDFDFD;
  width: 300px;
  width: 18.75rem;
  padding: 16px 20px 12px;
  padding: 1rem 1.25rem 0.75rem;
}

.contact-form__btn:hover {
  background: #FDFDFD;
  color: #8ABA29;
  border: solid 1px #8ABA29;
  border: solid 0.0625rem #8ABA29;
}

.contact-form__btn--back {
  background: #FDFDFD;
  color: #416517;
  border: solid 1px #416517;
  border: solid 0.0625rem #416517;
  width: 200px;
  width: 12.5rem;
  padding: 10px 16px 8px;
  padding: 0.625rem 1rem 0.5rem;
}

.contact-form__btn--back:hover {
  background: #C9E19F;
}

.sub-contact__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-contact__illust {
    max-width: 23.125rem;
  }
}

.contact-tel {
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-top: 64px;
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .contact-tel {
    padding: 0 2.5rem;
    margin-top: 3rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.contact__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .contact__title-wrap {
    display: block;
    margin-bottom: 0.625rem;
  }
}

.contact__title-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #8ABA29;
}

.contact__title {
  font-size: 15px;
  font-size: 0.9375rem;
  min-width: 180px;
  min-width: 11.25rem;
}

@media screen and (min-width: 768px) {
  .contact__title {
    font-size: 1rem;
    padding-bottom: 0.25rem;
  }
}

.contact-tel__btn {
  width: 200px;
  width: 12.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  margin-bottom: 0.875rem;
}

@media screen and (min-width: 768px) {
  .contact-tel__btn {
    display: none;
  }
}

.contact-tel__tel {
  display: none;
}

@media screen and (min-width: 768px) {
  .contact-tel__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2rem;
  }
}

.contact-tel__tel::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 16px;
  font-size: 1rem;
  -webkit-transform: rotate(6deg);
  transform: rotate(6deg);
  color: #404040;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background: #C9E19F;
  border-radius: 50%;
  margin: 0 10px 4px 0;
  margin: 0 0.625rem 0.25rem 0;
}

.contact-tel__text {
  font-size: 13px;
  font-size: 0.8125rem;
  border-bottom: solid 2px #8ABA29;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .contact-tel__text {
    font-size: 1rem;
    padding-bottom: 0.75rem;
  }
}

.sub-create-attitude {
  background: #F6F1EA;
  padding: 64px 0;
  padding: 4rem 0;
}

@media screen and (min-width: 768px) {
  .sub-create-attitude {
    padding: 8rem 0;
  }
}

.sub-create-attitude__title {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .sub-create-attitude__title {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}

.sub-create-attitude-list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
  row-gap: 2.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}

@media screen and (min-width: 768px) {
  .sub-create-attitude-list {
    row-gap: 4rem;
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .sub-create-attitude-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.sub-create-attitude-list-item__title {
  position: relative;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
  z-index: 0;
  padding-top: 4px;
  padding-top: 0.25rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-create-attitude-list-item__title {
    font-size: 1.25rem;
    min-width: 16.25rem;
    text-align: left;
    margin-right: 3rem;
  }
}

.sub-create-attitude-list-item__title::before {
  position: absolute;
  content: "";
  background: #C9E19F;
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .sub-create-attitude-list-item__title::before {
    width: 5rem;
    height: 5rem;
    left: 43%;
  }
}

.sub-create-flow {
  padding: 96px 0 64px;
  padding: 6rem 0 4rem;
}

@media screen and (min-width: 768px) {
  .sub-create-flow {
    padding: 10rem 0 6rem;
  }
}

.sub-create-flow__img {
  width: 100%;
  max-width: 400px;
  max-width: 25rem;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}

@media screen and (min-width: 768px) {
  .sub-create-flow__img {
    max-width: 62.5rem;
  }
}

.sub-create-flow__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 64px;
  margin-top: 4rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .sub-create-flow__title {
    font-size: 1rem;
    margin-top: 5rem;
  }
}

.sub-create-flow__title::before {
  display: block;
  content: "";
  width: 8px;
  width: 0.5rem;
  height: 24px;
  height: 1.5rem;
  background: #8ABA29;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}

.sub-create-flow-list {
  counter-reset: rank;
}

.sub-create-flow-item {
  position: relative;
  border: solid 1px #8ABA29;
  border: solid 0.0625rem #8ABA29;
  border-radius: 0.5rem;
  padding: 20px 20px 8px;
  padding: 1.25rem 1.25rem 0.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-create-flow-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: none;
    padding: 0;
    margin-bottom: 4rem;
  }
}

.sub-create-flow-item::before {
  position: absolute;
  content: "";
  top: -1px;
  top: -0.0625rem;
  left: -1px;
  left: -0.0625rem;
  border-top-left-radius: 6px;
  border-top-left-radius: 0.375rem;
  width: 65px;
  width: 4.0625rem;
  height: 65px;
  height: 4.0625rem;
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, #8ABA29), color-stop(50%, transparent));
  background: linear-gradient(to bottom right, #8ABA29 50%, transparent 50%);
}

@media screen and (min-width: 768px) {
  .sub-create-flow-item::before {
    display: none;
  }
}

.sub-create-flow-item::after {
  position: absolute;
  counter-increment: rank;
  content: counter(rank);
  top: 2px;
  top: 0.125rem;
  left: 12px;
  left: 0.75rem;
  color: #FDFDFD;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: 'Oswald', sans-serif;
}

@media screen and (min-width: 768px) {
  .sub-create-flow-item::after {
    display: none;
  }
}

.sub-create-flow-item__img {
  width: 124px;
  width: 7.75rem;
  margin: 0 auto 16px;
  margin: 0 auto 1rem;
}

@media screen and (min-width: 768px) {
  .sub-create-flow-item__img {
    width: 15.5rem;
    margin: 0 3rem 0 0;
    border: dotted 0.0625rem #8ABA29;
    border-radius: 0.5rem;
  }
}

.sub-create-flow-item__title {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 21px;
  line-height: 1.3125rem;
  font-weight: 800;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
  .sub-create-flow-item__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    line-height: 1.75rem;
    margin-bottom: 0.25rem;
  }
}

.sub-create-flow-item__title::before {
  display: none;
}

@media screen and (min-width: 768px) {
  .sub-create-flow-item__title::before {
    counter-increment: rank;
    content: counter(rank);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 0.3125rem;
    width: 2.5rem;
    height: 2.5rem;
    color: #FDFDFD;
    background: #8ABA29;
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    margin-right: 0.625rem;
    margin-bottom: 0.3125rem;
  }
}

.sub-create-introduction {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 40px;
  row-gap: 2.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}

@media screen and (min-width: 768px) {
  .sub-create-introduction {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 5rem;
    -moz-column-gap: 5rem;
    column-gap: 5rem;
    padding: 0;
    margin-bottom: 10rem;
  }
}

.sub-create-introduction__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 22px;
  line-height: 1.375rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
  .sub-create-introduction__title {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.sub-create-introduction__title::before {
  display: block;
  content: "";
  background: url("../images/common/brackets.png") no-repeat;
  background-size: cover;
  width: 14px;
  width: 0.875rem;
  height: 34px;
  height: 2.125rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}

@media screen and (min-width: 768px) {
  .sub-create-introduction__title::before {
    height: 2.25rem;
  }
}

.sub-create__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-create__illust {
    max-width: 23.75rem;
  }
}

.sub-create__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
  .sub-create__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.sub-else-sns {
  width: 100%;
  max-width: 700px;
  max-width: 43.75rem;
  margin: auto;
}

.sub-else-sns__line {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .sub-else-sns__line {
    margin-bottom: 5rem;
  }
}

.sub-else-sns__instagram {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .sub-else-sns__instagram {
    margin-bottom: 7rem;
  }
}

.sub-else__title--sns {
  min-width: 240px;
  min-width: 15rem;
}

@media screen and (min-width: 768px) {
  .sub-else__title--sns {
    min-width: 22.5rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-else-sns-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.sub-else-sns__line-sub,
.sub-else-sns__instagram-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: 21px;
  line-height: 1.3125rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {

  .sub-else-sns__line-sub,
  .sub-else-sns__instagram-sub {
    display: block;
    font-size: 1rem;
    line-height: 1.75rem;
  }
}

.sub-else-sns__line-sub::before,
.sub-else-sns__instagram-sub::before {
  display: block;
  content: "";
  min-width: 52px;
  min-width: 3.25rem;
  width: 52px;
  width: 3.25rem;
  height: 100px;
  height: 6.25rem;
  margin-right: 16px;
  margin-right: 1rem;
}

@media screen and (min-width: 768px) {

  .sub-else-sns__line-sub::before,
  .sub-else-sns__instagram-sub::before {
    display: none;
  }
}

.sub-else-sns__line-sub::before {
  background: url("../images/common/sub-else-sns__line--sp.png") no-repeat;
  background-size: cover;
}

.sub-else-sns__instagram-sub::before {
  background: url("../images/common/sub-else-sns__lnstagram--sp.png") no-repeat;
  background-size: cover;
}

.sub-else-sns-img__line {
  display: none;
}

@media screen and (min-width: 768px) {
  .sub-else-sns-img__line {
    display: block;
    width: 8.75rem;
    margin-left: auto;
  }
}

.sub-else-sns-texts {
  padding: 0 40px;
  padding: 0 2.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .sub-else-sns-texts {
    width: 100%;
    padding: 0 2.5rem 0 0;
    margin-bottom: 0;
  }
}

.sub-else-design {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 28px;
  row-gap: 1.75rem;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .sub-else-design {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 4.5rem;
    -moz-column-gap: 4.5rem;
    column-gap: 4.5rem;
    max-width: 67.5rem;
    padding: 0 2.5rem;
    margin: 0 auto 7rem;
  }
}

.sub-else-design__title {
  min-width: 240px;
  min-width: 15rem;
}

@media screen and (min-width: 768px) {
  .sub-else-design__title {
    min-width: 18.75rem;
  }
}

.sub-else-design-inner {
  padding: 0 40px;
  padding: 0 2.5rem;
}

@media screen and (min-width: 768px) {
  .sub-else-design-inner {
    padding: 0;
  }
}

.sub-else__design-img {
  border-radius: 1.5rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.sub-else__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-else__illust {
    max-width: 21.875rem;
  }
}

.sub-else__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
  .sub-else__title-wrap {
    margin-bottom: 1.5rem;
    padding: 0;
  }
}

.sub-else__title-wrap::before,
.sub-else__title-wrap::after {
  content: "";
  width: 100%;
  height: 7px;
  height: 0.4375rem;
  border-top: dotted 2px #8ABA29;
  border-bottom: dotted 2px #8ABA29;
}

@media screen and (min-width: 768px) {

  .sub-else__title-wrap::before,
  .sub-else__title-wrap::after {
    height: 0.625rem;
  }
}

.sub-else__title {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 23px;
  line-height: 1.4375rem;
  margin: 10px auto 7px;
  margin: 0.625rem auto 0.4375rem;
}

@media screen and (min-width: 768px) {
  .sub-else__title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin: 0 2rem;
  }
}

.sub-else__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
  .sub-else__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.sub-maintenance__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-maintenance__illust {
    max-width: 22.5rem;
  }
}

.sub-management__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-management__illust {
    max-width: 21.875rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-mv__privacypolicy {
    padding: 2.5rem 0 2.5rem 15rem;
  }
}

.privacypolicy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 64px;
  margin: 0 auto 4rem;
}

@media screen and (min-width: 768px) {
  .privacypolicy-wrap {
    margin-bottom: 7rem;
  }
}

.privacypolicy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .privacypolicy {
    margin-bottom: 3rem;
  }
}

.privacypolicy-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.privacypolicy-title-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #C9E19F;
}

.privacypolicy__title {
  min-width: 140px;
  min-width: 8.75rem;
  font-size: 16px;
  font-size: 1rem;
  padding-top: 2px;
  padding-top: 0.125rem;
}

.privacypolicy__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  border-bottom: solid 2px #C9E19F;
}

@media screen and (min-width: 768px) {
  .privacypolicy__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.privacypolicy-list {
  width: 100%;
  max-width: 700px;
  max-width: 43.75rem;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.privacypolicy-list li+li {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.privacypolicy-list__title {
  font-size: 13px;
  font-size: 0.8125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #C9E19F), color-stop(90%, #C9E19F), color-stop(90%, transparent));
  background: linear-gradient(transparent 60%, #C9E19F 60%, #C9E19F 90%, transparent 90%);
}

@media screen and (min-width: 768px) {
  .privacypolicy-list__title {
    font-size: 1rem;
  }
}

.privacypolicy-list__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
}

@media screen and (min-width: 768px) {
  .privacypolicy-list__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.sub-service__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-service__illust {
    max-width: 21.875rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-service__bg--right {
    padding: 0 2.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-service__bg--right {
    padding: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #F6F1EA));
    background: linear-gradient(90deg, transparent 50%, #F6F1EA 50%);
  }
}

@media screen and (min-width: 768px) {
  .sub-service__bg--left {
    padding: 0 2.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-service__bg--left {
    padding: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #F6F1EA), color-stop(50%, transparent));
    background: linear-gradient(90deg, #F6F1EA 50%, transparent 50%);
  }
}

.sub-service {
  background: #F6F1EA;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  margin-bottom: 96px;
  margin-bottom: 6rem;
}

@media screen and (min-width: 768px) {
  .sub-service {
    padding: 4rem 2.5rem;
    margin-bottom: 8rem;
    border-radius: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-service {
    width: 82%;
    margin: 0 auto 10rem;
  }
}

.sub-service-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  row-gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-service-list {
    max-width: 62.5rem;
    margin: auto;
  }
}

@media screen and (min-width: 1200px) {
  .sub-service-list {
    text-align: center;
  }
}

.sub-service-list__title {
  position: absolute;
  top: -51px;
  top: -3.1875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #416517;
  font-size: 18px;
  font-size: 1.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .sub-service-list__title {
    top: -5.25rem;
    font-size: 2rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-service-list__title--left {
    left: 0;
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (min-width: 1200px) {
  .sub-service-list__title--right {
    left: auto;
    right: 0;
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (min-width: 768px) {
  .sub-service-else-list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-service-main-list {
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    grid-template-areas: "sub-service-main__item--hp-create sub-service-main__item--hp-create" "sub-service-main__item--hp-update sub-service-main__item--hp-takeover";
  }
}

@media screen and (min-width: 768px) {
  .sub-service-main__item--hp-create {
    grid-area: sub-service-main__item--hp-create;
  }
}

@media screen and (min-width: 768px) {
  .sub-service-main__item--hp-update {
    grid-area: sub-service-main__item--hp-update;
  }
}

@media screen and (min-width: 768px) {
  .sub-service-main__item--hp-takeover {
    grid-area: sub-service-main__item--hp-takeover;
  }
}

.sub-service-main__item-remarks {
  font-size: 10px;
  font-size: 0.625rem;
}

@media screen and (min-width: 768px) {
  .sub-service-main__item-remarks {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-service-others-list {
    grid-template-columns: 1fr 1.6fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

.sub-takeover__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-takeover__illust {
    max-width: 22.5rem;
  }
}

.sub-thanks {
  padding: 0 20px;
  padding: 0 1.25rem;
  text-align: center;
  height: 300px;
  height: 18.75rem;
}

@media screen and (min-width: 768px) {
  .sub-thanks {
    padding: 0 2.5rem;
    height: 60vh;
  }
}

@media screen and (min-width: 1200px) {
  .sub-thanks {
    padding: 0 0 0 15rem;
    text-align: left;
  }
}

.sub-thanks__title {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .sub-thanks__title {
    font-size: 1.5rem;
  }
}

.sub-thanks__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .sub-thanks__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

.sub-thanks__btn {
  font-size: 13px;
  font-size: 0.8125rem;
  width: 200px;
  width: 12.5rem;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .sub-thanks__btn {
    font-size: 1rem;
    width: 15rem;
  }
}

@media screen and (min-width: 1200px) {
  .sub-thanks__btn {
    margin: 0;
  }
}

.top-manifest {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top-manifest {
    margin: auto;
  }
}

.top-manifest01-wrap__pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.top-manifest__title-sp {
  min-width: 196px;
  min-width: 12.25rem;
  width: 50%;
  max-width: 250px;
  max-width: 15.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .top-manifest__title-sp {
    display: none;
  }
}

.top-manifest__title-pc {
  margin-left: auto;
}

.top-manifest__title-pc-img {
  display: none;
}

@media screen and (min-width: 768px) {
  .top-manifest__title-pc-img {
    display: block;
    width: 85%;
    max-width: 6rem;
    margin-top: -7.75rem;
    margin-left: auto;
  }
}

@media screen and (min-width: 1200px) {
  .top-manifest__title-pc-img {
    width: 100%;
  }
}

.top-manifest01 {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .top-manifest01 {
    margin-bottom: 4rem;
  }
}

.top-manifest01__title {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.top-manifest01__title,
.top-manifest02__title {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}

@media screen and (min-width: 768px) {

  .top-manifest01__title,
  .top-manifest02__title {
    font-size: 1.5rem;
  }
}

.top-manifest01__subtitle,
.top-manifest02__subtitle {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 23px;
  line-height: 1.4375rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {

  .top-manifest01__subtitle,
  .top-manifest02__subtitle {
    font-size: 1rem;
  }
}

.top-manifest02__title,
.top-manifest02__subtitle {
  text-align: right;
}

.top-manifest02 {
  position: relative;
  z-index: 0;
  display: grid;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

@media screen and (min-width: 768px) {
  .top-manifest02 {
    margin-bottom: 6rem;
  }
}

.top-manifest02__img {
  position: absolute;
  min-width: 130px;
  min-width: 8.125rem;
  width: 25%;
  top: 8px;
  top: 0.5rem;
  left: -20px;
  left: -1.25rem;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .top-manifest02__img {
    width: 40%;
    top: -1.875rem;
    left: -6%;
  }
}

@media screen and (min-width: 1200px) {
  .top-manifest02__img {
    left: -7.5rem;
    max-width: 24.125rem;
  }
}

.top-manifest__items {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  row-gap: 1.5rem;
  font-size: 13px;
  font-size: 0.8125rem;
}

@media screen and (min-width: 768px) {
  .top-manifest__items {
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    font-size: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  .top-manifest__items {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}

.top-manifest__item {
  background: #F6F1EA;
  padding: 20px;
  padding: 1.25rem;
  border-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .top-manifest__item {
    padding: 1.5rem;
    max-width: 16rem;
  }
}

.top-manifest__item-title {
  border-bottom: solid #8ABA29 2px;
  border-bottom: solid #8ABA29 0.125rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  line-height: 22px;
  line-height: 1.375rem;
}

@media screen and (min-width: 768px) {
  .top-manifest__item-title {
    padding-bottom: 0.625rem;
    line-height: 1.5rem;
  }
}

.top-manifest__item-text {
  padding-top: 12px;
  padding-top: 0.75rem;
  line-height: 26px;
  line-height: 1.625rem;
}

@media screen and (min-width: 768px) {
  .top-manifest__item-text {
    padding-top: 1rem;
    line-height: 1.875rem;
  }
}

.top-manifest__text-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  margin: 0 auto 5rem;
  background: #FDFDFD;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(50%, transparent), color-stop(50%, #FDFDFD), to(#FDFDFD)), -webkit-gradient(linear, left bottom, left top, color-stop(0.0625rem, #404040), color-stop(0.0625rem, transparent));
  background-image: linear-gradient(to right, transparent 0%, transparent 50%, #FDFDFD 50%, #FDFDFD 100%), linear-gradient(to top, #404040 0.0625rem, transparent 0.0625rem);
  background-size: 0.5rem 100%, 100% 1.875rem;
  line-height: 30px;
  line-height: 1.875rem;
}

@media screen and (min-width: 768px) {
  .top-manifest__text-wrap {
    margin-bottom: 10rem;
  }
}

.top-manifest__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 30px;
  line-height: 1.875rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .top-manifest__text {
    font-size: 1.25rem;
  }
}

.top-mv {
  margin-bottom: 48px;
  margin-bottom: 3rem;
  padding-top: 3.5rem;
}

@media screen and (min-width: 768px) {
  .top-mv {
    margin-bottom: 7rem;
    padding-top: 3.55rem;
  }
}

@media screen and (min-width: 1200px) {
  .top-mv {
    margin: 0 auto 7rem;
    padding-top: 0;
    padding-left: 6rem;
  }
}

.top-partner {
  padding: 64px 20px;
  padding: 4rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .top-partner {
    padding: 8rem 2.5rem;
  }
}

.top-partner__title {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 22px;
  line-height: 1.375rem;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .top-partner__title {
    font-size: 1.5rem;
    line-height: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.top-partner__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  width: 100%;
  max-width: 580px;
  max-width: 36.25rem;
  margin: 16px auto;
  margin: 1rem auto;
  word-break: break-all;
  line-break: strict;
}

@media screen and (min-width: 768px) {
  .top-partner__text {
    font-size: 1rem;
    line-height: 1.875rem;
    margin-bottom: 1.5rem;
  }
}

.top-partner__btn {
  display: flex;
  justify-content: center;
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .top-partner__btn {
    font-size: 1rem;
    width: 15rem;
  }
}

.top-service-other {
  background: #F6F1EA;
  padding: 40px 20px 64px;
  padding: 2.5rem 1.25rem 4rem;
}

@media screen and (min-width: 768px) {
  .top-service-other {
    padding: 5rem 2.5rem 8rem;
  }
}

@media screen and (min-width: 1200px) {
  .top-service-other {
    padding: 8rem 3rem;
  }
}

.top-service-other-wrap {
  position: relative;
  border: dashed 2px #416517;
  border: dashed 0.125rem #416517;
  -o-border-image: url("../images/common/border-image-sp.png") round;
  border-image: url("../images/common/border-image-sp.png") round;
  border-image-width: 13px;
  border-image-slice: 30;
  border-radius: 1rem;
  margin: auto;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .top-service-other-wrap {
    padding: 4rem 3rem;
  }
}

@media screen and (min-width: 1200px) {
  .top-service-other-wrap {
    padding: 4rem 4.5rem;
    -o-border-image: url("../images/common/border-image-pc.png") round;
    border-image: url("../images/common/border-image-pc.png") round;
    border-image-width: 13px;
    border-image-slice: 30;
  }
}

.top-service-other__title {
  position: absolute;
  top: -22px;
  top: -1.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 235px;
  min-width: 14.6875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #F6F1EA;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  padding: 0 12px;
  padding: 0 0.75rem;
}

@media screen and (min-width: 768px) {
  .top-service-other__title {
    font-size: 1.5rem;
    top: -2rem;
    padding: 0 3.5rem;
  }
}

.top-service-other__items {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  row-gap: 1.5rem;
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .top-service-other__items {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .top-service-other__items {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 3rem;
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    max-width: 62.5rem;
  }
}

.top-service-other__item {
  background: #FDFDFD;
  border-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .top-service-other__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .top-service-other__item:hover {
    -webkit-transform: translateY(-0.25rem);
    transform: translateY(-0.25rem);
    -webkit-box-shadow: 0 0.25rem 0.25rem 0 #ddd9d4;
    box-shadow: 0 0.25rem 0.25rem 0 #ddd9d4;
  }
}

.top-service-other__item-title {
  font-size: 18px;
  font-size: 1.125rem;
  color: #FDFDFD;
  background: url("../images/common/item-bg.png") no-repeat;
  background-size: cover;
  text-align: center;
  padding: 16px 16px 12px 16px;
  padding: 1rem 1rem 0.75rem 1rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .top-service-other__item-title {
    font-size: 1.25rem;
  }
}

.top-service-other__item-texts {
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 16px 20px 10px;
  padding: 1rem 1.25rem 0.625rem;
}

@media screen and (min-width: 768px) {
  .top-service-other__item-texts {
    font-size: 1rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

.top-service-other__item-name {
  font-weight: 800;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.top-service-other__item-text {
  line-height: 26px;
  line-height: 1.625rem;
}

.top-service-other__item-link {
  font-size: 13px;
  font-size: 0.8125rem;
  display: block;
  color: #416517;
  text-align: right;
  padding: 0 20px 16px 0;
  padding: 0 1.25rem 1rem 0;
}

.top-service-other__item-link::after {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  color: #416517;
  margin-left: 8px;
  margin-left: 0.5rem;
}

.top-service {
  background: #F6F1EA;
  padding: 64px 0;
  padding: 4rem 0;
}

@media screen and (min-width: 768px) {
  .top-service {
    padding: 11.25rem 0;
  }
}

.top-service-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1080px;
  max-width: 67.5rem;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .top-service-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0 2.5rem;
  }
}

.top-service__title {
  min-width: 280px;
  min-width: 17.5rem;
  width: 50%;
  max-width: 350px;
  max-width: 21.875rem;
  margin: 0 0 32px 20px;
  margin: 0 0 2rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .top-service__title {
    min-width: 3.9375rem;
    width: 85%;
    max-width: 6.125rem;
    margin: -7.5rem 0 0;
  }
}

@media screen and (min-width: 1200px) {
  .top-service__title {
    width: 100%;
  }
}

.top-service-hp {
  margin-left: auto;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .top-service-hp {
    margin-left: auto;
  }
}

@media screen and (min-width: 1200px) {
  .top-service-hp {
    overflow: visible;
  }
}

.top-service-hp__img {
  position: relative;
  margin-left: 40px;
  margin-left: 2.5rem;
  width: 95%;
  max-width: 820px;
  max-width: 51.25rem;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
}

@media screen and (min-width: 768px) {
  .top-service-hp__img {
    margin-left: 0;
    width: 100%;
    right: -4.5rem;
    border-radius: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top-service-hp__texts {
    position: absolute;
    bottom: 2.5rem;
    margin-left: 1.5rem;
    padding: 1.5rem 1.5rem 1.5rem 0;
    background: #F6F1EA;
    border-top-right-radius: 1.5rem;
  }
}

.top-service-hp__title {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #F6F1EA;
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
  margin-top: -56px;
  margin-top: -3.5rem;
  padding: 12px 20px 0 40px;
  padding: 0.75rem 1.25rem 0 2.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (min-width: 768px) {
  .top-service-hp__title {
    position: static;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding: 0;
  }
}

@media screen and (min-width: 1200px) {
  .top-service-hp__title {
    font-size: 2rem;
  }
}

.top-service-hp__title::before,
.top-service-hp__title::after {
  position: absolute;
  content: "";
  display: block;
  background: url("../images/common/top-service-hp__element.png") no-repeat;
  background-size: cover;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
}

@media screen and (min-width: 768px) {

  .top-service-hp__title::before,
  .top-service-hp__title::after {
    display: none;
  }
}

.top-service-hp__title::before {
  top: -23px;
  top: -1.4375rem;
  left: 39px;
  left: 2.4375rem;
}

.top-service-hp__title::after {
  right: -24px;
  right: -1.5rem;
  bottom: 5px;
  bottom: 0.3125rem;
}

.top-service-hp__title-sub {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 1px;
  letter-spacing: 0.0625rem;
}

@media screen and (min-width: 768px) {
  .top-service-hp__title-sub {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  .top-service-hp__title-sub {
    font-size: 1.5rem;
  }
}

.top-service-hp__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
  padding: 16px 40px 8px;
  padding: 1rem 2.5rem 0.5rem;
}

@media screen and (min-width: 768px) {
  .top-service-hp__text {
    font-size: 1rem;
    line-height: 1.875rem;
    max-width: 29.375rem;
    padding: 0;
    margin-bottom: 0.625rem;
  }
}

.top-service-hp__btn {
  font-size: 13px;
  font-size: 0.8125rem;
  width: 200px;
  width: 12.5rem;
  margin: 0 auto 4px;
  margin: 0 auto 0.25rem;
}

@media screen and (min-width: 768px) {
  .top-service-hp__btn {
    font-size: 1rem;
    width: 15rem;
    margin: 0 0 0.25rem;
  }
}

.sub-update__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-update__illust {
    max-width: 22rem;
  }
}

.sub-refusal__illust01,
.sub-refusal__illust02,
.sub-refusal__illust03 {
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

.sub-refusal__illust01 {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .sub-refusal__illust01 {
    max-width: 24.375rem;
  }
}

.sub-refusal__illust02 {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .sub-refusal__illust02 {
    max-width: 21.25rem;
    margin-right: 1.25rem;
  }
}

.sub-refusal__illust03 {
  width: 45%;
}

@media screen and (min-width: 768px) {
  .sub-refusal__illust03 {
    max-width: 20.625rem;
  }
}

.sub-works__illust {
  width: 50%;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-works__illust {
    max-width: 23.75rem;
  }
}

.sub-works {
  background: #F6F1EA;
  border-radius: 1rem;
  padding: 32px 20px;
  padding: 2rem 1.25rem;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  .sub-works {
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    margin-bottom: 5rem;
  }
}

.sub-works:last-child {
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}

@media screen and (min-width: 768px) {
  .sub-works:last-child {
    margin-bottom: 12.5rem;
  }
}

.sub-works__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .sub-works__title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.sub-works__title::before,
.sub-works__title::after {
  content: '';
  background: #404040;
  width: 2px;
  width: 0.125rem;
  height: 14px;
  height: 0.875rem;
  border-radius: 0.125rem;
  margin-bottom: -4px;
  margin-bottom: -0.25rem;
}

@media screen and (min-width: 768px) {

  .sub-works__title::before,
  .sub-works__title::after {
    width: 0.1875rem;
    height: 1.5rem;
    margin-bottom: -0.5rem;
  }
}

.sub-works__title::before {
  margin-right: 14px;
  margin-right: 0.875rem;
  -webkit-transform: rotate(-24deg);
  transform: rotate(-24deg);
}

@media screen and (min-width: 768px) {
  .sub-works__title::before {
    margin-right: 2rem;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

.sub-works__title::after {
  margin-left: 14px;
  margin-left: 0.875rem;
  -webkit-transform: rotate(24deg);
  transform: rotate(24deg);
}

@media screen and (min-width: 768px) {
  .sub-works__title::after {
    margin-left: 2rem;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
}

.sub-works-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sub-works-link:hover {
  opacity: 0.7;
}

.sub-works__img {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.sub-works__btn {
  font-size: 13px;
  font-size: 0.8125rem;
  width: 200px;
  width: 12.5rem;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-works__btn {
    font-size: 1rem;
    width: 15rem;
  }
}

.sub-works-list {
  display: grid;
  grid-template-columns: 1fr;
  background: #FDFDFD;
  border-radius: 1rem;
  row-gap: 20px;
  row-gap: 1.25rem;
  padding: 40px 20px 24px;
  padding: 2.5rem 1.25rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .sub-works-list {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    padding: 3.5rem 2.5rem 2.5rem;
  }
}

.sub-works-list-voice {
  border: solid 2px #9CD5EF;
  border: solid 0.125rem #9CD5EF;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.sub-works-list-report {
  border: solid 2px #FADD82;
  border: solid 0.125rem #FADD82;
}

.sub-works-list__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: -25px;
  margin-bottom: -1.5625rem;
}

@media screen and (min-width: 768px) {
  .sub-works-list__title-wrap {
    margin-bottom: -2.0625rem;
  }
}

.sub-works-list__title {
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 6px 10px 4px 16px;
  padding: 0.375rem 0.625rem 0.25rem 1rem;
  border-top-right-radius: 8px;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 8px;
  border-bottom-right-radius: 0.5rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (min-width: 768px) {
  .sub-works-list__title {
    font-size: 1rem;
  }
}

.sub-works-list__title-img {
  width: 48px;
  width: 3rem;
  margin-right: -14px;
  margin-right: -0.875rem;
}

@media screen and (min-width: 768px) {
  .sub-works-list__title-img {
    width: 4rem;
    margin-right: -0.625rem;
  }
}

.sub-works-list__title-voice {
  background: #9CD5EF;
}

.sub-works-list__title-report {
  background: #FADD82;
}

.sub-works-list__img {
  display: inline-block;
  width: 48px;
  width: 3rem;
  left: 0;
}

@media screen and (min-width: 768px) {
  .sub-works-list__img {
    width: 4rem;
  }
}

.sub-works-list-item__sub {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  margin: 0 auto 8px;
  margin: 0 auto 0.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sub-works-list-item__sub {
    font-size: 1rem;
    text-align: left;
    margin: 0 0 0.75rem;
  }
}

.sub-works-list-item__sub-voice {
  border-bottom: dashed 2px #9CD5EF;
  border-bottom: dashed 0.125rem #9CD5EF;
}

.sub-works-list-item__sub-report {
  border-bottom: dashed 2px #FADD82;
  border-bottom: dashed 0.125rem #FADD82;
}

.sub-works-list-item__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 26px;
  line-height: 1.625rem;
}

@media screen and (min-width: 768px) {
  .sub-works-list-item__text {
    font-size: 1rem;
    line-height: 1.875rem;
  }
}

html {
  background: #FDFDFD;
}

@media screen and (min-width: 1280px) {
  html {
    background-color: #FDFDFD;
    background-image: radial-gradient(#C9E19F 10%, transparent 10%);
    background-size: 20px 20px;
  }
}

body {
  font-family: heisei-maru-gothic-std, sans-serif;
  background: #FDFDFD;
  color: #404040;
  max-width: 1280px;
  margin: auto;
}

@media screen and (min-width: 1200px) {
  .all-wrap {
    display: block;
    position: relative;
    border: solid 20px #F6F1EA;
    overflow: hidden;
  }
}

@media screen and (min-width: 1200px) {
  .all-wrap::before {
    position: absolute;
    content: "";
    right: 0;
    display: block;
    background: url("../images/common/pc-nav__element.png") no-repeat;
    background-size: cover;
    width: 1.5625rem;
    height: 1.5625rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    z-index: 1;
  }
}

.wave-top,
.wave-bottom {
  position: relative;
}

.wave-top::before {
  position: absolute;
  left: 0;
  top: -55px;
  top: -3.4375rem;
  content: "";
  display: block;
  background: url("../images/common/wave-top.svg") no-repeat;
  background-size: contain;
  background-position: bottom;
  width: 100%;
  height: 56px;
  height: 3.5rem;
}

.wave-bottom::after {
  position: absolute;
  left: 0;
  bottom: -55px;
  bottom: -3.4375rem;
  content: "";
  display: block;
  background: url("../images/common/wave-bottom.svg") no-repeat;
  background-size: contain;
  background-position: top;
  width: 100%;
  height: 56px;
  height: 3.5rem;
}

.br-sp {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .br-pc {
    display: inline-block;
  }
}