@charset "UTF-8";
/*----------------------------------------------------------------------------
  reset PC
------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+2:wght@400;500;600;700&family=Noto+Sans+JP&display=swap");
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
html,
input,
textarea,
select,
button {
  font-family: "M PLUS 2", sans-serif;
  font-size: 16px;
}

html {
  color: #333;
  background: #fff;
  font-size: 18px;
  word-break: break-all;
}

body {
  background: #fff;
  margin: 0;
}

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

img {
  border: 0;
  margin: 0;
  vertical-align: middle;
  max-width: 100%;
}

p {
  padding: 0;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: 18px;
  line-height: 1.2;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

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

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.inner-block {
  position: relative;
  max-width: 1040px;
  padding: 0 30px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

#wrapper {
  position: relative;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}
.sp-br {
  display: none;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  reset SP
------------------------------------------------------------------------------*/
/*----------------------------------
# common style
-----------------------------------*/
.primary-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.666;
  background: #2c5225;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}

.content-title {
  padding: 5px 15px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  color: #2c5225;
  background: #efefef;
}

.link-btn {
  font-size: 16px;
  color: #333;
  background: #edede8;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  font-weight: 500;
  width: 280px;
  line-height: 46px;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  border: 1px solid #707070;
  position: relative;
}
.link-btn::after {
  content: "";
  background-image: url("../img/svg/arrow-black.svg");
  width: 16px;
  height: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.link-btn:hover {
  background: #333;
  color: #fff;
}
.link-btn:hover::after {
  background-image: url("../img/svg/arrow-white.svg");
}

.c-wrapper {
  max-width: 1240px;
  padding: 0 20px 50px;
  margin: 0 auto;
}

.c-wrapper-md {
  padding-bottom: 50px;
}

/*----------------------------------
#l-header
-----------------------------------*/
.l-header__wrapper {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.l-header__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  background: #2c5225;
  color: #fff;
  line-height: 1.8;
}
.l-header__sp-menu {
  display: none;
}
.l-header__catch-text {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: block;
}
.l-header__contact-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__top-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}
.l-header__tel {
  font-weight: bold;
  font-size: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  letter-spacing: -2px;
}
.l-header__tel-img {
  margin-right: 10px;
  margin-bottom: 5px;
  width: 33px;
  height: auto;
  vertical-align: middle;
}
.l-header__tel-text {
  display: block;
  background: #6dcff6;
  line-height: 1.68;
  padding: 6px 50px;
  border-radius: 5px;
  font-size: 16px;
}
.l-header__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  border-right: 2px solid #2c5225;
}
.l-header__item {
  font-size: 16px;
  padding: 16px 0px;
  text-align: center;
  position: relative;
  width: 16.6666666667%;
  font-weight: bold;
  padding: 16px 10px;
}
.l-header__item::after {
  content: "";
  position: absolute;
  background: #2c5225;
  width: 2px;
  height: 100%;
  top: 0;
  left: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-header__item ::before {
  content: "";
  position: absolute;
  background: #2c5225;
  width: 90%;
  height: 5px;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-header__page-link {
  display: block;
}

.c-contact__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-contact__character {
  height: 110px;
}
.c-contact__contact-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-contact__tel {
  font-weight: bold;
  font-size: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
  letter-spacing: -2px;
}
.c-contact__tel--footer a {
  color: #fff;
}
.c-contact__tel-img {
  margin-right: 10px;
  margin-bottom: 5px;
  width: 33px;
  height: auto;
  vertical-align: middle;
}
.c-contact__tel-text {
  display: block;
  background: #6dcff6;
  line-height: 1.68;
  padding: 6px 40px;
  border-radius: 5px;
  font-size: 16px;
  position: relative;
}
.c-contact__tel-text::before {
  content: "";
  background-image: url("../img/common/arrow-tel.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: -30px;
  right: -15px;
  width: 50px;
  height: 100%;
}

.c-wrapper {
  padding-bottom: 50px;
}

.c-accent {
  color: #ed1c24;
}

.c-md {
  font-size: 22px;
}

.c-mmd {
  font-size: 20px;
}

.c-md--2 {
  font-size: 22px;
}

.c-sm {
  font-size: 16px;
}

.c-ss {
  font-size: 12px;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  display: inline-block;
}

.c-fz14 {
  font-size: 14px;
}

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

.c-center {
  text-align: center;
}

.c-blue {
  color: #6dcff6;
}

.c-accent--blue {
  color: #6dcff6;
  font-size: 40px;
}

.c-accent--green {
  color: #2c5225;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-ib {
  display: inline-block;
}

.c-green {
  color: #2c5225;
}

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

.c-border-bottom {
  border-bottom: 4px solid #6dcff6;
}

.c-90 {
  width: 90%;
}

.c-50 {
  width: 50%;
}

.c-840 {
  max-width: 840px !important;
}

.c-top-link__wrapper {
  text-align: center;
}

.c-top-link {
  cursor: pointer;
  display: inline-block;
  width: 280px;
  line-height: 46px;
  border-radius: 5px;
  background: #edede8;
  border: 1px solid #707070;
  text-align: center;
  position: relative;
}
.c-top-link::after {
  content: "";
  background-image: url(../img/works6/work25.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.c-top-link:hover {
  opacity: 0.7;
}

.form-btn > *:after {
  content: "";
  background-image: url(../img/works6/work25.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

.c-service__menu {
  margin-bottom: 40px;
}
.c-service__title {
  margin-bottom: 20px;
}
.c-service__text {
  line-height: 1.5;
  font-weight: 500;
  padding-bottom: 20px;
}
.c-service__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.c-service__left-content {
  -webkit-box-flex: 62;
  -webkit-flex: 62;
      -ms-flex: 62;
          flex: 62;
}
.c-service__right-content {
  -webkit-box-flex: 38;
  -webkit-flex: 38;
      -ms-flex: 38;
          flex: 38;
}

.sticky-phone-number {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #49823e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}

.sticky__text {
  position: relative;
  height: 60px;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 0 20px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.5;
}

.sticky__text::before {
  content: "";
  position: absolute;
  left: -50%;
  bottom: -6px;
  background-image: url("../img/common/man-type1.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
}

.sticky__img--tel {
  width: 33px;
  vertical-align: middle;
  margin-bottom: 6px;
  margin-left: 20px;
}

.sticky__link {
  font-weight: bold;
  color: #fff;
  font-size: 36px;
  position: relative;
}

.sticky__link::after {
  position: absolute;
  content: "";
  bottom: -6px;
  right: -30%;
  background-image: url("../img/common/man-type2.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 100px;
}

.p-area__title {
  margin-bottom: 10px;
}
.p-area__text {
  margin: 20px 0 30px;
  font-weight: 500;
}

.p-footer {
  background: #2c5225;
}
.p-footer__scroll-btn {
  display: block;
  text-transform: uppercase;
  text-align: center;
  line-height: 80px;
  background: #1e3400;
  color: #fff;
}
.p-footer__scroll-btn img {
  vertical-align: middle;
  margin-left: 10px;
}
.p-footer__wrapper {
  max-width: 970px;
  padding: 70px 20px 130px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-footer__logo {
  margin-bottom: 20px;
}
.p-footer__address {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.p-footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.p-footer__link {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.p-footer__copy {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 100px;
  text-align: center;
}

.p-aside-contact__wrapper {
  border: 6px solid #2c5225;
  padding: 25px 13px;
  position: relative;
  margin-bottom: 40px;
}
.p-aside-contact__wrapper::after {
  position: absolute;
  content: "";
  top: 5px;
  right: 27%;
  background-image: url("../img/common/aside-mail-accent.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
}
.p-aside-contact__text {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4;
  border-bottom: solid 3px #2c5225;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.p-aside-contact__link {
  display: inline-block;
  line-height: 60px;
  background: #ff9f3c;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  width: 100%;
}
.p-aside-contact__img {
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 5px;
}

.p-aside-tel__wrapper {
  border: 6px solid #6dcff6;
  padding: 20px 13px 5px;
  margin-bottom: 40px;
}
.p-aside-tel__text {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}
.p-aside-tel__text::after {
  position: absolute;
  content: "";
  top: -48px;
  right: -8px;
  width: 55px;
  height: 133px;
  background-image: url("../img/common/man-type3.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-aside-tel__link {
  display: inline-block;
  text-align: center;
  background: #6dcff6;
  line-height: 44px;
  margin-left: -13px;
  width: calc(100% + 26px);
}
.p-aside-tel__img {
  width: 23px;
  height: 23px;
  margin-right: 8px;
  margin-bottom: 5px;
  vertical-align: middle;
}

.p-aside-reason {
  margin-bottom: 27px;
}
.p-aside-reason__link {
  display: inline-block;
  width: 220px;
  line-height: 70px;
  background: #2c5225;
  color: #fff;
  border-radius: 35px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  position: relative;
}
.p-aside-reason__link::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -23px;
  background-image: url("../img/common/man-type2.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 47px;
  height: 100px;
}

.p-aside-category {
  margin-bottom: 46px;
}
.p-aside-category__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: solid 5px #2c5225;
}
.p-aside-category__item {
  position: relative;
  padding-left: 25px;
  padding-bottom: 10px;
  margin-top: 20px;
  border-bottom: 3px solid #cccccc;
  font-weight: 500;
}
.p-aside-category__item::after {
  position: absolute;
  content: "";
  background-image: url("../img/common/aside-arrow.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  left: 0;
  top: 6px;
}

.p-aside__common-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: solid 5px #2c5225;
  margin-bottom: 20px;
}

.p-aside-reform {
  margin-bottom: 40px;
}
.p-aside-reform__contents {
  width: 100%;
  border: 6px solid #ed1c24;
  text-align: center;
  padding: 5px;
}
.p-aside-reform__upper-text {
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid #ed1c24;
  padding: 0 5px 5px;
}
.p-aside-reform__bottom-text {
  font-size: 24px;
  font-weight: bold;
}
.p-aside-reform__accent {
  font-size: 40px;
  color: #ed1c24;
}
.p-aside-reform__dot--top {
  position: relative;
}
.p-aside-reform__dot--top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: #ed1c24;
  border-radius: 50%;
}
.p-aside-reform__dot--top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: #ed1c24;
  border-radius: 50%;
}
.p-aside-reform__dot--bottom {
  position: relative;
}
.p-aside-reform__dot--bottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: #ed1c24;
  border-radius: 50%;
}
.p-aside-reform__dot--bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  background: #ed1c24;
  border-radius: 50%;
}

.p-aside-area {
  margin-bottom: 20px;
}
.p-aside-area__img {
  margin-bottom: 20px;
}
.p-aside-area__text {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
}

.p-aside-blog {
  margin-bottom: 30px;
}
.p-aside-blog__wrapper {
  border: 6px solid #6ccff5;
}
.p-aside-blog__accent {
  margin-bottom: 5px;
}
.p-aside-blog__text {
  padding-top: 10px;
  display: inline-block;
  background: #6ccef6;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
}

.p-aside-line__wrapper {
  border: 6px solid #06c755;
  padding: 15px 20px;
}
.p-aside-line__text {
  margin: 10px 0;
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
}

.p-aside-paypay__img {
  margin: 20px 27px;
  width: 186px;
}
.p-aside-paypay__text {
  text-align: center;
  background: #ff0034;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
}
.p-aside-paypay:last-of-type .p-aside-paypay__img {
  margin: 15px 27px;
}

.p-aside-interview {
  margin-top: 20px;
}

.p-sidebar__area--sp {
  padding: 0 15px;
}
.p-sidebar__area--sp .p-aside-contact__text {
  font-size: 13px;
}
.p-sidebar__area--sp .p-aside-contact__wrapper {
  padding: 20px 5px;
}
.p-sidebar__area--sp .p-aside-contact__wrapper::after {
  right: 19%;
}
.p-sidebar__area--sp .p-aside-tel__text::after {
  top: -13px;
  right: -26px;
  width: 55px;
  height: 94px;
}
.p-sidebar__area--sp .p-aside-reason__link {
  width: 100%;
  line-height: 40px;
  border-radius: 20px;
  font-size: 16px;
}
.p-sidebar__area--sp .p-aside-category__title {
  font-size: 18px;
}
.p-sidebar__area--sp .p-aside-reason__link::before {
  content: none;
}
.p-sidebar__area--sp .p-aside-paypay__img {
  width: 100%;
  margin: 20px 0;
}
.p-sidebar__area--sp .p-aside-category__item::after {
  top: 4px;
}
.p-sidebar__area--sp .p-aside__common-title {
  font-size: 18px;
}
.p-sidebar__area--sp .p-aside-blog__text {
  text-align: center;
  font-size: 18px;
}

.breadcrumbs__wrap {
  padding: 10px 0 40px;
  font-size: 14px;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
.c-header {
  height: 140px;
  background-color: #747474;
  font-weight: bold;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  height: 500px;
  background-color: #0D3745;
  color: #fff;
}
.c-footer a {
  color: inherit;
}

/* --------------------------------
c-pagetop
----------------------------------- */
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
.l-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.main-wrapper {
  max-width: 930px;
  margin: 0 auto;
  width: 100%;
}

.p-aside {
  max-width: 240px;
}

.p-sidebar__area {
  display: block;
}

.p-sidebar__area--sp {
  display: none;
}

.p-mv {
  padding-top: 20px;
  padding-bottom: 60px;
}

.swiper-slide {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 16/6;
}
.swiper-slide--one {
  background-image: url("../img/common/mv1.png");
}
.swiper-slide--two {
  background-image: url("../img/common/mv2.png");
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
}
.swiper-pagination-bullet {
  background: #efb410;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #333;
}

.p-lead__wrapper {
  text-align: center;
}
.p-lead__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 28px;
}
.p-lead__text {
  color: #ed1c24;
  font-size: 46px;
  font-weight: bold;
  line-height: 1.75;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #ffe770), color-stop(30%, transparent));
  background-image: linear-gradient(#ffe770 30%, transparent 30%);
  background-repeat: no-repeat;
  background-size: 110% 1.2em; /* 背景のサイズを行の高さに合わせて調整 */
  background-position: 0 380%; /* アンダーラインの位置を調整 */
  display: inline; /* 折り返しに対応 */
}
.p-lead__text::before {
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: #ffe770;
  position: absolute;
  z-index: -1;
}

.p-works__text-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px;
}
.p-works__title-wrapper {
  text-align: center;
}
.p-works__title {
  color: #2c5225;
  font-size: 43px;
  font-weight: bold;
}
.p-works__sub-title {
  color: #2c5225;
  font-size: 36px;
  font-weight: bold;
}

.p-reason__content {
  margin-top: 50px;
  background-image: url("../img/common/reason-bg.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 10%;
  width: 100%;
  aspect-ratio: 16/9;
}
.p-reason__title {
  font-size: 40px;
  font-weight: bold;
  color: #2c5225;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: solid 6px #cccccc;
}

.p-feature__content {
  padding-top: 20px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.p-feature__img-wrapper {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.p-feature__text-wrapper {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.p-feature__text {
  line-height: 1.5;
  font-weight: 500;
}
.p-feature__text + .p-feature__text {
  padding-top: 30px;
}
.p-feature__text:last-of-type {
  padding-bottom: 30px;
}
.p-feature__link {
  text-align: center;
}
.p-feature__sub-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 20px;
}
.p-feature__youtube-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.p-feature__youtube-wrapper + .p-feature__youtube-wrapper {
  margin-top: 20px;
}
.p-feature__youtube-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-feature__title {
  font-size: 40px;
  font-weight: bold;
  color: #2c5225;
  text-align: center;
  padding-bottom: 10px;
  margin-top: 50px;
  margin-bottom: 10px;
  border-bottom: solid 6px #cccccc;
}
.p-feature__works-link {
  display: block;
  margin-top: 50px;
  background-image: url("../img/common/works-link.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 16/9;
}
.p-feature__works-link:hover {
  opacity: 0.7;
}
.p-feature__worries {
  margin-top: 10px;
  background-image: url("../img/common/worries.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 4;
}
.p-feature__bottom-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
.p-feature__text-wrapper--bottom {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-feature__img-wrapper--bottom {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-feature__img--bottom {
  width: 100%;
}
.p-feature__cta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.p-service__title {
  margin-bottom: 10px;
}

.p-sales__title {
  font-size: 40px;
  font-weight: bold;
  color: #2c5225;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: solid 6px #cccccc;
  margin-bottom: 20px;
}
.p-sales__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.p-sales__img-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-sales__text-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-sales__text-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.p-sales__text {
  font-weight: 500;
}

.p-news {
  padding-bottom: 22px;
}
.p-news__title {
  font-size: 40px;
  font-weight: bold;
  color: #2c5225;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: solid 6px #cccccc;
}
.p-news__content {
  padding: 20px 40px;
  border-bottom: 1px dashed #333;
}
.p-news__date {
  font-size: 13px;
  margin-right: 26px;
}
.p-news__cat {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 0 30px;
  line-height: 26px;
  border-radius: 13px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.p-news__content-title {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  display: block;
}
.p-news__link {
  margin-top: 50px;
  text-align: center;
}

/*----------------------------------
#page
-----------------------------------*/
.p-page {
  margin-top: 50px;
}
.p-page__title {
  font-size: 40px;
  font-weight: bold;
  color: #2c5225;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: solid 6px #cccccc;
}
.p-page__content-sub-title {
  font-size: 22px;
  font-weight: bold;
  border-bottom: #2c5225 4px solid;
  padding: 0 18px 5px;
}

#p-page .p-page p {
  line-height: 1.5;
}
#p-page .p-page__text-content {
  padding: 0 12px;
}
#p-page .p-page__content-sub-title {
  font-size: 22px;
  font-weight: bold;
  border-bottom: #2c5225 4px solid;
  padding: 0 18px 5px;
}
#p-page .p-page__mv {
  background-image: url("../img/common/reason-bg.jpg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 16/9;
}
#p-page .p-page__point {
  border: #ed1c24 4px solid;
  border-radius: 4px;
  position: relative;
	text-align: left;
}
#p-page .p-page__point::after {
  content: "POINT";
  position: absolute;
  display: inline-block;
  background: #fff;
  top: 0;
  left: 2%;
  padding: 0 3px 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ed1c24;
}
#p-page .p-page__point--2::after {
  content: "さらに";
}
#p-page .p-page__point--3::after {
  content: "なんと！";
}
#p-page .p-page__point--4 {
  border: #6dcff6 4px solid;
}
#p-page .p-page__point--4::after {
  color: #6dcff6;
}
#p-page .p-page__point--5::after {
  content: "メリット";
}
#p-page .p-page__point--6::after {
  content: "《 鉄骨ユニット製作のメリット 》";
}
#p-page .p-page__reason {
  border: #6dcff6 4px solid;
  border-radius: 4px;
  position: relative;
	text-align: left;
}
#p-page .p-page__reason::after {
	content: "デメリット";
  position: absolute;
  display: inline-block;
  background: #fff;
  top: 0;
  left: 2%;
  padding: 0 3px 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #6dcff6;
}
#p-page .p-page__reason--2::after {
	content: "エコな使い方";
}
#p-page .p-page__reason--3::after {
  content: "こんなお悩みありませんか？";
}
#p-page .p-page__reason--4::after {
  content: "デメリット";
}
#p-page .p-page__reason--5::after {
  content: "さらに";
}
#p-page .p-page__reason--6::after {
	content: "例えば";
}
#p-page .p-page__reason--7::after {
  content: "なぜなら";
}
#p-page .p-page__reason--8::after {
  content: "リフォームなら";
}
#p-page .p-page__option {
  border: #777777 4px solid;
  border-radius: 4px;
  position: relative;
}
#p-page .p-page__option::after {
  content: "仕様";
  position: absolute;
  display: inline-block;
  background: #fff;
  top: 0;
  left: 2%;
  padding: 0 3px 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #777777;
}
#p-page .p-page__option--2::after {
  content: "オプション";
}
#p-page .p-page__option--3::after {
  content: "お悩み";
}
#p-page .p-page__step {
  border: #2c5225 4px solid;
  border-radius: 4px;
  position: relative;
}
#p-page .p-page__step::after {
  content: "STEP 1";
  position: absolute;
  display: inline-block;
  background: #fff;
  top: 0;
  left: 2%;
  padding: 0 3px 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #2c5225;
}
#p-page .p-page__step--2::after {
  content: "STEP 2";
}
#p-page .p-page__step--3::after {
  content: "STEP 3";
}
#p-page .p-page__step--4::after {
  content: "STEP 4";
}
#p-page .p-page__step--5::after {
  content: "STEP 5";
}
#p-page .p-page__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#p-page .p-page__flex--left {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#p-page .p-page__flex--5 {
  gap: 2rem;
}
#p-page .p-page__flex--4 {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
#p-page .p-page__flex--4 img {
  height: 100%;
}
#p-page .p-page__flex--8 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-page .p-page__flex--9 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
#p-page .p-page__flex--column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
#p-page .p-page__flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#p-page .p-page__flex--2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
#p-page .p-page__flex--6 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
#p-page .p-page__flex--wide1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
#p-page .p-page__flex--wide2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
#p-page .p-page__flex-img {
  width: calc(33.3% - 12px);
  -o-object-fit: cover;
     object-fit: cover;
}
#p-page .p-page__flex-img--2 {
  width: calc(40% - 18px);
  -o-object-fit: cover;
     object-fit: cover;
}
#p-page .p-page__flex-img--3 {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#p-page .p-page__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#p-page .p-page__content--2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-page .p-page__flex-text {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
#p-page .p-page__img-wrapper {
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#p-page .p-page__img-wrapper--quarter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
#p-page .p-page__img-wrapper--2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
#p-page .p-page__flex-text--2 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
#p-page .p-page__container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 33.3%;
}
#p-page .p-page__container--2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: calc(33.3% - 0.7rem);
}
#p-page .p-page__img-wrapper--l {
  text-align: left;
}
#p-page .p-page__img-single {
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}
#p-page .p-page__img-30 {
  width: 300px;
}
#p-page .p-page__img--800 {
  max-width: 800px;
  width: 100%;
}
#p-page .p-page__img--450 {
  max-width: 450px;
  width: 100%;
}
#p-page .p-page__link-wrapper {
  text-align: center;
}
#p-page .p-page__link {
  width: 320px;
  line-height: 60px;
  background: #ff9f3c;
  color: #fff;
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
}
#p-page .p-page__link::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 5%;
  background-image: url(../img/works/arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#p-page .p-page__link::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 5%;
  background-image: url(../img/svg/mail.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#p-page .p-page__price-table-container {
  width: 100%;
  overflow-x: auto;
}
#p-page .p-page__price-table {
  width: 100%;
  border-collapse: collapse;
}
#p-page .p-page__price-table tr {
  height: 100%;
}
#p-page .p-page__price-table td,
#p-page .p-page__price-table th {
  padding: 15px 20px;
  border: solid 4px #fff;
}
#p-page .p-page__price-table.c-80 {
  width: 80%;
}
#p-page .p-page__price-table.c-50 {
  width: 50%;
}
#p-page .p-page__price-table.c-50.company {
  width: 50%;
  min-width: 400px;
}
#p-page .p-page__price-table.c-50.company .p-page__service-name {
  text-align: center;
  width: 40%;
}
#p-page .p-page__price-table--sm {
  min-height: 110px;
}
#p-page .p-page__service-name {
  font-size: 20px;
  font-weight: 500;
  background: #d9f4ff;
}
#p-page .p-page__service-price {
  font-size: 20px;
  font-weight: 500;
  background: #eff7fb;
}
#p-page .p-page__service-description {
  background: #efefef;
}
#p-page .p-page__s-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 760px;
}
#p-page .p-page__s-list--gap {
  gap: 1%;
}
#p-page .p-page__s-list--wide {
  max-width: 100%;
}
#p-page .p-page__s-list--wide {
  max-width: 100%;
}
#p-page .p-page__term {
  width: 50%;
  padding: 15px 20px;
  background: #2c5225;
  color: #fff;
  border-right: 3px solid #fff;
  border: solid 3px #fff;
}
#p-page .p-page__term--2 {
  color: #333;
  width: 34%;
  background: none;
  border: solid 1px #cccccc;
  margin-bottom: 1%;
}
#p-page .p-page__definition {
  width: 50%;
  padding: 15px 20px;
  background: #efefef;
  color: #ed1c24;
  border: solid 3px #fff;
}
#p-page .p-page__definition--2 {
  width: 65%;
  background: none;
  border: solid 1px #cccccc;
  color: #333;
  margin-bottom: 1%;
}
#p-page .p-page__term--wide {
  width: 40%;
}
#p-page .p-page__definition--wide {
  width: 60%;
  color: #333;
}
#p-page .p-page__price-table-container2 {
  max-width: 800px;
  width: 100%;
  overflow-x: auto;
}
#p-page .p-page__center-item {
  display: grid;
  place-items: center;
}
#p-page .p-page__price-table2 {
  width: 100%;
  border-collapse: collapse;
}
#p-page .p-page__price-table2 tr {
  height: 100%;
}
#p-page .p-page__price-table2 td {
  padding: 15px 20px;
  border: solid 4px #fff;
  background: #efefef;
  width: 25%;
}
#p-page .p-page__price-table2 .p-page__service-title {
  background: #2c5225;
  color: #fff;
}
#p-page .p-page__common-img {
  width: 100%;
  display: grid;
  text-align: center;
}
#p-page .p-page__common-img img {
  max-width: 450px;
  margin: 0 auto;
}
#p-page .p-page__common-title {
  font-size: 46px;
  font-weight: bold;
  color: #2c5225;
}
#p-page .p-page__link-title {
  color: #2c5225;
  border-bottom: 4px solid #2c5225;
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
  width: 100%;
  padding-bottom: 10px;
  max-width: 300px;
}
#p-page .p-page__catalog-link {
  text-align: center;
  display: inline-block;
  background: #2c5225;
  width: 210px;
  line-height: 36px;
  border-radius: 18px;
  color: #fff;
  margin-top: 10px;
}
#p-page .p-page__contact-wrapper {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#p-page .p-page__contact-link {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 320px;
  line-height: 60px;
  border-radius: 8px;
  background: #ff9f3c;
  text-align: center;
  position: relative;
}
#p-page .p-page__contact-link::before {
  content: "";
  background-image: url("../img/works5/work35.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 15px;
}
#p-page .p-page__contact-link::after {
  content: "";
  background-image: url("../img/works5/work36.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
#p-page .p-page__sign {
  width: 220px;
}

/*----------------------------------
#archive
-----------------------------------*/
.p-archive-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
}
.p-archive-menu__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(33.333% - 0.6666666667rem);
      -ms-flex: 0 0 calc(33.333% - 0.6666666667rem);
          flex: 0 0 calc(33.333% - 0.6666666667rem);
  border-bottom: 3px solid #cccccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/*----------------------------------
#category
-----------------------------------*/
.p-category__upper {
  display: inline-block;
}
.p-category__list {
  padding: 0px 65px 40px;
}
.p-category__item {
  border-bottom: 1px dashed #707070;
}
.p-category__item + .p-category__item {
  margin-top: 20px;
}
.p-category__item--blog {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.p-category__img-wrapper {
  padding: 10px 0;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.p-category__img-wrapper img {
  width: 130px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-category__text-wrapper--blog {
  padding-top: 20px;
  -webkit-box-flex: 8;
  -webkit-flex: 8;
      -ms-flex: 8;
          flex: 8;
}
.p-category__date {
  font-size: 13px;
}
.p-category__cat {
  font-size: 13px;
  padding: 5px 40px;
  border-radius: 20px;
  background: #333333;
  display: inline-block;
  color: #fff;
  margin-left: 15px;
  margin-top: 10px;
}
.p-category__cat a {
  color: #fff;
}
.p-category__title {
  margin-top: 10px;
  font-weight: 500;
  padding-bottom: 10px;
}
.p-category__link {
  display: block;
  height: 100%;
}

.pagination-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-numbers {
  display: inline-block;
  background: #333;
  padding: 0 5px;
  color: #fff;
}

.current.page-numbers {
  display: inline-block;
  background: #fff;
  color: #333;
  border: 1px solid #333;
}

/*----------------------------------
#single-post
-----------------------------------*/
.p-post__title {
  margin-bottom: 30px;
}
.p-post__meta {
  padding-bottom: 10px;
}
.p-post__date {
  font-size: 13px;
}
.p-post__category-wrapper {
  display: inline;
}
.p-post__cat {
  font-size: 13px;
  display: inline-block;
  padding: 5px 40px;
  border-radius: 20px;
  background: #333333;
  color: #fff;
  margin-left: 10px;
}
.p-post__cat a {
  color: #fff;
}
.p-post__thumbnail {
  text-align: center;
  max-width: 720px;
  padding-bottom: 30px;
}
.p-post__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-post__w700 {
  max-width: 720px;
  margin: 0 auto;
}
.p-post__bottom-content {
  width: 100%;
  display: grid;
  text-align: center;
  margin-top: 50px;
}
.p-post__bottom-content img {
  max-width: 640px;
  margin: 0 auto;
}
.p-post__contact-wrapper {
  text-align: center;
}
.p-post__contact-link {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  width: 320px;
  line-height: 60px;
  border-radius: 8px;
  background: #ff9f3c;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.p-post__contact-link::before {
  content: "";
  background-image: url("../img/works5/work35.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 15px;
}
.p-post__contact-link::after {
  content: "";
  background-image: url("../img/works5/work36.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.p-post__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.p-post li {
  background: #333333;
  padding: 0 4px;
}
.p-post li a {
  color: #fff;
}
.p-post__text-content {
  max-width: 800px;
  margin: 0 auto;
}

#p-post-detail h2,
#p-post-detail h3 {
  padding: 5px 15px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  color: #2c5225;
  background: #efefef;
  margin-bottom: 20px;
}
#p-post-detail p {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.p-post__prev {
  background: #333;
  display: inline-block;
  padding: 0px 10px;
}
.p-post__prev a {
  color: #fff;
}
.p-post__next {
  background: #333;
  display: inline-block;
  padding: 0px 10px;
}
.p-post__next a {
  color: #fff;
}
.p-post__list {
  background: #333;
  display: inline-block;
  padding: 2px 10px;
}
.p-post__list a {
  color: #fff;
}
.p-post__single-img-wrapper {
  display: grid;
  place-items: center;
}
.p-post__single-img-wrapper img {
  max-height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*----------------------------------
#company
-----------------------------------*/
.p-company__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

/*----------------------------------
#introduction
-----------------------------------*/
.p-page__introduction {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.p-page__introduction-title {
  padding: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 26%;
      -ms-flex: 0 0 26%;
          flex: 0 0 26%;
  border-bottom: 3px solid #ccc;
}
.p-page__introduction-content {
  padding: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 74%;
      -ms-flex: 0 0 74%;
          flex: 0 0 74%;
  position: relative;
}
.p-page__introduction-content::after {
  content: "";
  display: block;
  position: absolute;
  background: #ccc;
  width: 100%;
  height: 1px;
  bottom: 1px;
  left: 0;
}

.fullwidth-iframe {
  width: 100%;
  aspect-ratio: 1.86;
  margin-bottom: 50px;
}

/*----------------------------------
#works
-----------------------------------*/
.p-post__slide-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.p-post-detail__wrapper {
  max-width: 930px;
  width: 100%;
}
#p-post-detail .gallery-photo {
  margin-bottom: 20px;
  padding-bottom: 30px;
  width: 100%;
}

#p-post-detail .gallery-photo .swiper-wrapper {
  overflow: hidden;
}

#p-post-detail .gallery-photo .gallery-slider .swiper-slide {
  display: grid;
  place-items: center;
}

#p-post-detail .gallery-photo .gallery-slider .swiper-slide img {
  position: relative;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#p-post-detail .gallery-thumbs {
  padding: 0 40px;
  position: relative;
}

#p-post-detail .gallery-thumbs .swiper-container {
  overflow: hidden;
}

#p-post-detail .gallery-thumbs .swiper-slide {
  cursor: pointer;
  width: 23%;
}

#p-post-detail .gallery-thumbs .swiper-button {
  width: 40px;
  height: 101%;
  border: 0;
  background: transparent;
  overflow: hidden;
  text-indent: -999px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

#p-post-detail .gallery-thumbs .swiper-button:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#p-post-detail .gallery-thumbs .swiper-button.swiper-prev {
  left: 0;
  background: url("../img/detail-sl_prev.png") no-repeat center left/24px 70px;
}

#p-post-detail .gallery-thumbs .swiper-button.swiper-next {
  right: 0;
  background: url("../img/detail-sl_next.png") no-repeat center right/24px 70px;
}

#p-post-detail .gallery-thumbs .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#p-post-detail .gallery-thumbs .swiper-slide-thumb-active:after {
  opacity: 0;
}
.thumbs__img {
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

/*----------------------------------
others
-----------------------------------*/
.p-10 {
  padding: 15px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-100 {
  margin-bottom: 100px;
}

.bb-blue {
  border-bottom: 4px solid #6dcff6;
}

.sp-br {
  display: none;
}

.pc-br {
  display: block;
}

/*----------------------------------
#contact
-----------------------------------*/
.p-contact dd {
  min-height: 40px;
}
.p-contact__title {
  font-size: clamp(18px, 16.592px + 0.376vw, 22px);
  font-weight: bold;
  padding-left: 20px;
  line-height: 1;
}
.p-contact__separator {
  line-height: 1;
  width: 100%;
  height: 4px;
  margin: 16px 0 20px;
  background-color: #2c5225;
}
.p-contact__attention-text {
  font-weight: 500;
  font-size: clamp(15px, 13.944px + 0.282vw, 18px);
}
.p-contact__form {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 38px;
}
.p-contact__form-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.p-contact__form-dt {
  width: 35.5%;
  background-color: #2c5225;
  line-height: 72px;
  color: #fff;
  font-size: clamp(14px, 13.296px + 0.188vw, 16px);
}
.p-contact__form-dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: solid 15px #d9d9d9;
  width: 64.5%;
}
.p-contact__form-label {
  padding-left: 18px;
  padding-right: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
}
.p-contact__form-must {
  background-color: #b22222;
  font-size: 12px;
  line-height: 24px;
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 300;
}
.p-contact__form-input {
  font-size: 15px;
  padding: 3px 20px;
  width: 100%;
}
.p-contact__dd-address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-contact__input-label {
  width: 100%;
  display: block;
  padding-top: 14px;
  padding-bottom: 6px;
  background-color: #d9d9d9;
  font-size: 15px;
  font-weight: 500;
}
.p-contact__input-label-first {
  padding-top: 0;
}
.p-contact__input-label-attention {
  font-size: 13px;
  color: #ed1c24;
  line-height: 1.2;
}
.p-contact__dd-address-modify {
  display: inline-block;
  line-height: 42px;
}
.p-contact__check-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 35px;
  margin-bottom: 20px;
}
.p-contact__check {
  font-size: clamp(14px, 13.296px + 0.188vw, 16px);
  font-weight: 500;
  padding-left: 10px;
}
.p-contact__submit-wrapper {
  padding-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-contact__tel {
  font-weight: bold;
  font-size: 36px;
  cursor: pointer;
  letter-spacing: -2px;
}
.p-contact__tel-img {
  margin-right: 10px;
  margin-bottom: 5px;
  width: 33px;
  height: auto;
  vertical-align: middle;
}
.p-contact__tel-text {
  display: block;
  background: #6dcff6;
  line-height: 1.68;
  padding: 6px 50px;
  border-radius: 5px;
  font-size: 16px;
}
.p-contact__img--line {
  width: 240px;
}

.p-confirm .p-5 {
  padding-left: 5px;
  line-height: 40px;
}
.p-confirm .p-contact__dd-address-wrapper p {
  padding-left: 5px;
  line-height: 40px;
}

.p-contact__form-input {
  min-height: 40px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  background: url("../img/arrow.png") no-repeat right 1rem center;
  background-size: 1em;
}

@media only screen and (max-width: 768px) {
  p {
    font-size: 13px;
  }
  .sp-br {
    display: block;
  }
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  .inner-block {
    padding: 0 10px;
    width: auto;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
  .primary-title {
    font-size: 26px;
    margin-left: -10px;
  }
  .primary-title::before {
    position: absolute;
    content: "";
    display: block;
    height: 100%;
    width: calc(100% + 40px);
    left: -20px;
    top: 0;
    z-index: -1;
    background: #2c5225;
  }
  .content-title {
    font-size: 18px;
  }
  .link-btn {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .c-wrapper-md {
    padding-bottom: 30px;
  }
  .l-header__catch {
    font-size: 13px;
  }
  .l-header__logo {
    width: 45%;
  }
  .l-header__tel {
    font-size: 16px;
  }
  .l-header__tel-img {
    width: 16px;
    margin-right: 5px;
  }
  .l-header__tel-text {
    font-size: 12px;
    padding: 6px 2px;
    line-height: 1;
  }
  .l-header__list {
    margin: 20px 10px;
    width: 100%;
  }
  .c-contact__cta {
    gap: 5px;
  }
  .c-contact__character {
    height: 55px;
  }
  .c-contact__tel {
    font-size: 16px;
  }
  .c-contact__tel-img {
    margin-right: 5px;
    width: 16px;
  }
  .c-contact__tel-text {
    font-size: 9px;
    padding: 6px 3px;
  }
  .c-contact__tel-text::before {
    top: -18px;
    right: -6px;
    width: 25px;
  }
  .c-md {
    font-size: 16px;
  }
  .c-mmd {
    font-size: 14px;
  }
  .c-sm {
    font-size: 12px;
  }
  .c-fz14 {
    font-size: 13px;
  }
  .c-accent--blue {
    font-size: 24px;
  }
  .c-service__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .sticky__text::before {
    left: -22%;
    height: 65px;
    width: 65px;
    bottom: 10px;
  }
  .sticky__img--tel {
    margin-left: 7px;
    width: 20px;
  }
  .sticky__link {
    font-size: 18px;
  }
  .sticky__link::after {
    bottom: -4px;
    right: -14%;
    height: 63px;
    width: 30px;
  }
  .p-footer__scroll-btn {
    line-height: 60px;
  }
  .p-footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px 60px;
  }
  .p-footer__address {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .p-footer__list {
    margin-top: 20px;
  }
  .p-footer__link {
    font-size: 13px;
  }
  .p-sidebar__area--sp {
    padding: 0;
  }
  .breadcrumbs__wrap {
    padding: 10px 0 10px;
  }
  .p-aside--sp {
    width: 100%;
  }
  .p-lead__note {
    font-size: 20px;
  }
  .p-lead__text {
    font-size: 28px;
  }
  .p-works__text-contents {
    padding: 0;
    margin: 0 -15px 10px;
  }
  .p-works__title {
    font-size: 20px;
  }
  .p-works__sub-title {
    font-size: 16px;
  }
  .p-reason__content {
    margin-top: 0;
  }
  .p-reason__title {
    font-size: 24px;
  }
  .p-feature__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-feature__img-wrapper img {
    width: 100%;
  }
  .p-feature__text + .p-feature__text {
    padding-top: 20px;
  }
  .p-feature__link {
    text-align: left;
  }
  .p-feature__title {
    font-size: 28px;
  }
  .p-feature__bottom-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
  }
  .p-feature__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-sales__title {
    font-size: 24px;
  }
  .p-sales__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
  .p-news__title {
    font-size: 24px;
  }
  .p-news__content {
    padding: 20px 0px;
  }
  .p-news__cat {
    padding: 0 20px;
    line-height: 20px;
  }
  .p-news__content-title {
    font-size: 13px;
  }
  .p-news__link {
    text-align: left;
  }
  .p-page {
    margin-top: 0;
  }
  .p-page__title {
    font-size: 24px;
  }
  .p-page__content-sub-title {
    font-size: 18px;
  }
  #p-page .p-page__content-sub-title {
    font-size: 18px;
  }
  #p-page .p-page__flex--3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  #p-page .p-page__flex--5 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #p-page .p-page__flex--4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #p-page .p-page__flex--8 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #p-page .p-page__flex--9 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #p-page .p-page__img--sp {
    display: none;
  }
  #p-page .p-page__flex--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1rem;
  }
  #p-page .p-page__flex--6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #p-page .p-page__flex--wide1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #p-page .p-page__flex--wide2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #p-page .p-page__flex-img {
    width: 100%;
  }
  #p-page .p-page__flex-img--2 {
    width: 100%;
  }
  #p-page .p-page__flex-img--3 {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
  #p-page .p-page__content {
    text-align: center;
  }
  #p-page .p-page__img-wrapper--quarter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #p-page .p-page__img-wrapper--quarter img {
    width: auto;
  }
  #p-page .p-page__container--2 {
    max-width: 100%;
  }
  #p-page .p-page__img-30 {
    width: 200px;
  }
  #p-page .p-page__link-wrapper {
    text-align: left;
  }
  #p-page .p-page__link-wrapper--2 {
    text-align: center;
  }
  #p-page .p-page__price-table {
    width: 200% !important;
  }
  #p-page .p-page__price-table.c-80 {
    width: 100%;
  }
  #p-page .p-page__price-table.c-50 {
    width: 100%;
  }
  #p-page .p-page__price-table.c-50.company {
    min-width: auto;
    width: 100%;
  }
  #p-page .p-page__service-name {
    font-size: 16px;
  }
  #p-page .p-page__service-price {
    font-size: 16px;
  }
  #p-page .p-page__term {
    padding: 15px 10px;
  }
  #p-page .p-page__definition {
    padding: 15px 10px;
  }
  #p-page .p-page__price-table2 {
    width: 200%;
  }
  #p-page .p-page__common-img img {
    max-width: 300px;
  }
  #p-page .p-page__common-title {
    font-size: 30px;
  }
  #p-page .p-page__link-title {
    font-size: 16px;
  }
  .p-archive-menu__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .p-archive-menu__img-wrapper {
    text-align: center;
  }
  .p-archive-menu__title-wrapper {
    margin-left: 20px;
    margin-top: 10px;
  }
  .p-category__list {
    padding: 0 0 40px;
  }
  .p-category__date {
    display: block;
    margin-bottom: 10px;
  }
  .p-category__title {
    padding: 10px 0;
  }
  .p-post__meta {
    padding-bottom: 20px;
  }
  .p-post__bottom-content img {
    max-width: 300px;
  }
  #p-post-detail h2,
  #p-post-detail h3 {
    font-size: 18px;
  }
  .p-post__single-img-wrapper img {
    height: 220px;
  }
  .p-company__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-page__introduction-title {
    padding: 30px 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 35%;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
  }
  .p-page__introduction-content {
    padding: 30px 5px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
  #p-post-detail .gallery-photo .gallery-slider .swiper-slide img {
    height: 220px;
  }
  .gallery-thumbs .swiper-container {
    height: 104px;
  }
  .gallery-photo .swiper-wrapper {
    height: 220px;
  }
  .mb-30 {
    margin-bottom: 20px;
  }
  .mb-40 {
    margin-bottom: 30px;
  }
  .mb-50 {
    margin-bottom: 30px;
  }
  .mb-60 {
    margin-bottom: 40px;
  }
  .mb-70 {
    margin-bottom: 50px;
  }
  .mb-100 {
    margin-bottom: 60px;
  }
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
  .p-contact__form {
    padding-left: 0px;
    padding-right: 0px;
  }
  .p-contact__form-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-contact__form-dt {
    line-height: 30px;
    width: 100%;
  }
  .p-contact__form-dd {
    width: 100%;
    border: solid 6px #d9d9d9;
  }
  .p-contact__form-input {
    font-size: 13px;
  }
  .p-contact__input-label {
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 6px;
    line-height: 1;
  }
  .p-contact__input-label-attention {
    font-size: 12px;
  }
  .p-contact__dd-address-modify {
    line-height: 30px;
  }
  .p-contact__tel {
    font-size: 16px;
  }
  .p-contact__tel-img {
    width: 16px;
    margin-right: 5px;
  }
  .p-contact__tel-text {
    font-size: 12px;
    padding: 6px 2px;
    line-height: 1;
  }
  .mwform-checkbox-field-text {
    font-size: 13px;
  }
}

@media only screen and (min-width: 769px) {
  a:hover {
    opacity: 0.8;
  }
  .inner-block {
    margin: 0 auto;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a,
  a::before,
  a::after,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

@media only screen and (max-width: 850px) {
  .l-header__sp-menu {
    font-size: 18px;
    display: block;
    text-align: right;
    padding-right: 30px;
    position: relative;
  }
  .l-header__sp-menu::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 10px;
    background-image: url("../img/common/aside-arrow.png");
    background-size: contain;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
  .l-header__catch-text {
    display: none;
  }
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: #eee;
    z-index: 1000;
    overflow-y: scroll;
    display: block;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .l-header__nav.is-open {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .l-header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-right: none;
    background: #fff;
    width: 85%;
    margin: 20px auto 20px;
  }
  .l-header__item {
    width: 100%;
    text-align: left;
    font-size: 14px;
  }
  .l-header__item::after {
    background: none;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 85%;
    background-image: url("../img/common/aside-arrow.png");
    background-size: contain;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .l-header__item ::before {
    height: 1px;
    background: #eee;
  }
  .p-area__text {
    margin: 20px 15px 30px;
  }
  .p-aside--sp {
    width: 85%;
    margin: 0 auto;
  }
  .p-sidebar__area {
    display: none;
  }
  .p-sidebar__area--sp {
    display: block;
  }
  .p-works__title {
    font-size: 33px;
  }
  .p-category__upper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
  .p-category__cat {
    padding: 2px 10px;
    margin-left: 0;
  }
  .p-post__category-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
  }
  .p-post__cat {
    margin-left: 0;
    margin-top: 10px;
    padding: 2px 10px;
  }
}

@media (min-width: 851px) and (max-width: 1250px) {
  .p-post-detail__wrapper {
    width: calc(100vw - 280px);
  }
}

@media (max-width: 850px) {
  .p-post-detail__wrapper {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  #p-post-detail .gallery-thumbs .swiper-slide:after {
    content: none;
  }
  #p-post-detail .gallery-thumbs {
    padding: 20px 7px 0;
  }
  #p-post-detail .gallery-thumbs .swiper-button {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #p-post-detail .gallery-thumbs .swiper-slide {
    padding: 0;
  }
}

@media screen and (max-width: 850px) {
  #p-post-detail .gallery-photo {
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 440px) {
  .bb-blue {
    border-bottom: none;
    background-image: -webkit-gradient(linear, left top, right top, from(#6dcff6), to(#6dcff6)), -webkit-gradient(linear, left top, right top, from(#6dcff6), to(#6dcff6));
    background-image: linear-gradient(to right, #6dcff6, #6dcff6), linear-gradient(to right, #6dcff6, #6dcff6);
    background-position: 0 2.1em, 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 4px, 100% 4px;
    line-height: 1.5;
    padding: 0.05em 0;
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .p-works__title {
    font-size: 20px;
  }
}
.arrow-wrapper {
  display: inline-block;
  position: relative;
}
.arrow-wrapper::after {
  content: "";
  background-image: url(../img/works6/work25.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.arrow-wrapper:hover {
  opacity: 0.7;
}
/*# sourceMappingURL=style.css.map */
