@charset "UTF-8";

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

/* Set core root defaults */
html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
th,
td,
fieldset {
  border: 0;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

article,
header,
footer,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

figure {
  margin: 0;
}

a {
  color: inherit;
  display: block;
  text-decoration: none;
}

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

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

/* フォームリセット */
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

pre {
  white-space: pre-wrap;
}

html {
  font-size: 62.5%;
  /*    scroll-behavior: smooth;*/
}

:root {
  --color-main: #85c667;
  --color-bg: #fff9ee;
  --color-green: #b4cf93;
  --color-yellow: #ffcd41;
}

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

@media screen and (min-width: 1168px) {
  html {
    font-size: 10px;
  }
}

body {
  color: #000000;
  font-family: "M PLUS 1", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  width: 100%;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.inner-wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 192rem;
  position: relative;
  width: 100%;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 116.8rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  position: relative;
  width: 100%;

  &.inner--1000 {
    max-width: 1000px;
    padding-left: 4%;
    padding-right: 4%;

    @media screen and (max-width: 767px) {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }

  &.inner--1346 {
    max-width: 1346px;
  }
}

/*画像の中央寄せ*/
.aligncenter {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

/*figureタグで囲まれた画像の中央寄せ*/
.aligncenter img {
  height: auto;
  max-width: 100%;
}

/*画像右寄せ*/
.alignright {
  height: auto;
  margin-left: auto;
  max-width: 100%;
}

/*figureタグで囲まれた画像右寄せ*/
.alignright img {
  height: auto;
  max-width: 100%;
}

/*位置指定のない画像*/
.alignnone {
  height: auto;
  max-width: 100%;
}

/*figureタグで囲まれた位置指定のない画像*/
.alignnone img {
  height: auto;
  max-width: 100%;
}

/* 自動折り返し有効化 */
pre {
  white-space: pre-wrap;
}

div.wpcf7 .ajax-loader {
  display: none !important;
}

.wpcf7-spinner {
  display: none;
}

div.wpcf7-mail-sent-ok {
  display: none !important;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
}

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

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/* ==============================================================
*  共通パーツ
* ============================================================ */

.c-titA {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  color: #5b9342;

  .en {
    font-size: 4.4rem;
    line-height: 1.5;
    font-weight: bold;
    font-family: "Comfortaa", serif;
    text-transform: capitalize;

    @media screen and (max-width: 767px) {
      font-size: 8vw;
      text-align: center;
      line-height: 1.2;
    }
  }

  .jp {
    font-size: 4.4rem;
    line-height: 1.5;
    font-weight: bold;
	  white-space: nowrap;

    @media screen and (max-width: 767px) {
      font-size: 7vw;
    }
  }

  &.c-titA--white {
    color: #fff;
  }
}

.c-titB {
  display: flex;
  flex-direction: column;
  gap: 10px;

  .en {
    font-size: 32px;
    line-height: 1.5;
    font-weight: bold;
    font-family: "Comfortaa", serif;
    text-transform: capitalize;

    @media screen and (max-width: 767px) {
      font-size: 8vw;
    }
  }

  .jp {
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;

    @media screen and (max-width: 767px) {
      font-size: 14px;
    }
  }
}

.c-titC {
  display: flex;
  align-items: center;
  gap: 10px;

  img {
    width: 29px;
  }

  .textWrap {
    .text {
      background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
      font-size: 24px;
      line-height: 1.5;
      font-weight: bold;
      display: inline;

      @media screen and (max-width: 767px) {
        font-size: 18px;
      }
    }
  }
}

.c-titD {
  display: flex;
  align-items: center;
  gap: 14px;

  .num {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-yellow);
    font-size: 20px;
    font-weight: bold;
    font-family: "Comfortaa", serif;
  }

  .text {
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
  }
}

.c-textA {
  font-size: 14px;
  line-height: 2;

  &.c-textA--white {
    color: #fff;
  }
}

.c-pink {
  color: var(--color-main);
  font-size: 18px;
}

.c-btnA {
  background-color: var(--color-main);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  width: 256px;
  height: 54px;
  border-radius: 50px;
  transition: 0.4s;
  border: 1px solid var(--color-main);

  &:hover {
    background-color: #fff;
    color: var(--color-main);
  }

  &.c-btnA--white {
    background-color: #fff;
    color: var(--color-main);
    border: 1px solid #fff;

    &:hover {
      background-color: var(--color-main);
      color: #fff;
    }
  }
}

.c-cardA {
  transition: 0.4s;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  align-items: center;

  &:hover {
    opacity: 0.7;

    .imageArea {
      img {
        transform: scale(1.1);
      }
    }
  }

  .imageArea {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    transition: 0.4s;

    img {
      transition: 0.4s;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .textArea {
    .infoArea {
      display: flex;
      align-items: center;
      gap: 18px;

      .date {
        font-size: 14px;
        font-weight: bold;
      }

      .catArea {
        span {
          padding: 4px 6px;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: var(--color-main);
          color: #fff;
          font-size: 0.8em;
          line-height: 1.5;
          font-weight: bold;
        }
      }
    }

    .tit {
      margin-top: 10px;
      font-size: 18px;
      line-height: 1.5;
      font-weight: bold;
    }
  }

  &.c-cardA--letter {
    .imageArea {
      aspect-ratio: 36 / 50.9;
    }
  }

  &.c-cardA--a4 {
    .imageArea {
      /* aspect-ratio: 1 / 1.4141; */
      img {
        object-fit: contain;
      }
    }
  }
}

/* ==============================================================
*  セクション(common)
* ============================================================ */
main.home {
  background-color: #f9f1e5;
}

.home-section__desc {
  color: #fff;
  line-height: 1.7;
  margin-top: 1rem;
  width: 50rem;
}

.home-section-title {
  color: #ffe03f;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: calc(58 / 40);
}

.home-section-title span {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 0.8rem;
}

.home-section-title.-center {
  text-align: center;
}

.home-section-title.-news {
  text-align: center;
  background: linear-gradient(to right, #1f89d6, #2e2b8f);
  background-clip: text;
  background-size: 200%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.home-section-title.-news span {
  color: #282828;
}

.banner.-home-top {
  margin-top: 9rem;
}

.banner.-home-bottom {
  background-color: #fff;
  padding-bottom: 10rem;
  padding-top: 8rem;
}

.banner.-sub {
  margin-bottom: 6rem;
  margin-top: 6rem;
}

.banner__link {
  margin-left: auto;
  margin-right: auto;
  width: 80.36%;
}

.banner__link.-sub {
  width: 100%;
}

.banner.-sub .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.btn {
  background-color: #fff;
  color: #0c3b2c;
  display: inline-block;
  outline: none;
  overflow: hidden;
  padding-bottom: 2rem;
  padding-top: 2rem;
  position: relative;
  text-align: center;
  width: 23.4rem;
  z-index: 2;
  color: #242472;
  text-shadow: none;
}

.btn::after {
  height: 100%;
  top: -100%;
  width: 100%;
}

.btn::before,
.btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}

.btn span {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.2rem;
}

.btn span img {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.btn.-color {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 50px;
  color: #fff;
  font-size: 1.4rem;
}

.btn.-color span .white {
  z-index: 1;
}

.btn_02 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 1em 2em;
  width: 300px;
  color: #282828;
  font-size: 18px;
  font-weight: 600;
  background-color: #cccccc;
  transition: 0.3s;
}

.btn_02 a::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #2285b1;
  transition: 0.3s;
}

.btn_02 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 70px;
  height: 2px;
  background-color: #2285b1;
  transition: 0.3s;
}

.btn_02 a:hover {
  text-decoration: none;
  background-color: #bbbbbb;
}

.btn_02 a:hover::before,
.btn_02 a:hover::after {
  right: -2.5em;
}

/*== 線の上を別の線が伸びる */
.btn_03 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #282828;
  padding: 20px 50px 20px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 110%;
  margin-top: 3rem;
  text-transform: uppercase;
}

/*線の設定*/
.btn_03::before,
.btn_03::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #282828;
  width: 100%;
  height: 1px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

/*hover時に伸びる線の形状*/
.btn_03::after {
  width: 0;
  background: #282828;
}

/*hover時に100%に伸びる*/
.btn_03:hover::after {
  width: 100%;
}

/*矢印の設定*/
.btn_03 span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  right: 20px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #282828;
  border-right: 1px solid #282828;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*hover時に矢印が移動*/
.btn_03:hover span::after {
  right: 15px;
}

.btn_03 span:hover {
  opacity: 0.75;
  transition: all 0.3s;
}

.js-fadeUp {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 1.2s, -webkit-transform 0.8s;
  transition: opacity 1.2s, -webkit-transform 0.8s;
  transition: opacity 1.2s, transform 0.8s;
  transition: opacity 1.2s, transform 0.8s, -webkit-transform 0.8s;
}

/*下からフェードイン*/
.js-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 40px);
  transform: translate(0, 40px);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.is-fadeInUp {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.is-inview-mv {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/* PC表示のみhoverアニメーション(768px以上) */
@media screen and (min-width: 768px) {
  .banner__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .banner__link:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .btn {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .btn:hover {
    color: #fff;
  }

  .btn:hover span .color {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .btn:hover::after {
    background-color: #242472;
    top: 0;
  }

  .btn::before,
  .btn::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .btn span img {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .btn.-color:hover {
    color: #0c3b2c;
  }

  .btn.-color:hover span .white {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .btn.-color:hover span .color {
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .btn.-color:hover::after {
    background-color: #1b1b1b;
    top: 0;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: fixed;
  top: 20px;
  left: 2.7777%;
  width: 94.44%;
  z-index: 20;
  background: var(--color-main);
  -webkit-box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.03);
  box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.03);
  /*	    border-top: 3px solid #282828;*/
  align-items: center;
  border-radius: 50px;
  padding: 5px 22px;
}

.header.-sub {
  background-color: #fff;
}

.header__logo {
  width: 20rem;
  /*background-color: #fff;*/
  padding: 8px;
}
.header__logo img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(222deg) brightness(110%) contrast(100%);
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #282828;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  /*   padding-right: 2rem; */
  padding-top: 1.2rem;
}

.header__top.-sub {
  color: #232472;
}

.header__tel {
  font-size: 3rem;
  font-weight: 500;
  position: relative;
}

.header__tel::before {
  background-image: url(../img/common/tel-color.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -5px;
  content: "";
  /* -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16)); */
  /* filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16)); */
  height: 2rem;
  left: -2.1rem;
  margin: auto;
  position: absolute;
  top: 0;
  width: 2rem;
}

.header__tel.-sub {
  text-shadow: none;
}

.header__tel.-sub::before {
  background-image: url(../img/common/tel-color.svg);
}

.header__time {
  font-size: 1rem;
  margin-left: 1.1rem;
	padding-right: 8px;
}

.header__time span {
}

.header__time span:nth-of-type(1) {
  font-size: 1rem;
  padding-left: 0.4rem;
  padding-right: 0;
}

.header__time span:nth-of-type(2) {
  font-size: 1.2rem;
}

.header__time.-sub span:nth-of-type(1) {
  border: 1px solid #0c3b2c;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header__time.-sub span:nth-of-type(1) span {
  text-shadow: none;
}

.header__nav {
  margin-right: 2rem;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}

.header__list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__item:not(:first-of-type) {
  margin-left: 2.5rem;
}

@media screen and (max-width: 1300px) {
  .header__item:not(:first-of-type) {
    margin-left: 1.5rem;
  }
}

.header__item:last-of-type {
  /*   margin-left: 2rem; */
}

.header__item:last-of-type a {
  /*   -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
          filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  width: 1.995rem; */
}

.header__btn {
  border-radius: 4px;
  background: #fff;
  margin: 0 0 0 1px;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-main);
  position: relative;
  transition: 0.3s;
  width: 18rem;
  display: flex;
  align-content: center;
  justify-content: center;
  right: 0;
  top: 0;
  border-radius: 50px;
}

.header__btn:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.header__item.-sns {
  width: 1.995rem;
  margin-left: 1.5rem;
}

@media screen and (min-width: 768px) {
  .header__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    position: relative;
  }

  .header__link:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    /* color: #282828; */
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .header__logo {
    margin-left: 1rem;
    width: 20rem;
  }

  .header__btn {
    /*		padding: 3.3rem 1.4rem;*/
  }
}

/* --------------------------------
footer
----------------------------------- */
.footer {
  background: var(--color-bg);
  padding: 70px 0 0;
  margin-top: -70px;
}

.footer__copyright {
  background: #282828;
}

.footer__item:not(:first-of-type) {
  margin-left: 3rem;
}

.footer__item:last-of-type {
  /*   margin-left: 2rem; */
}

.footer__item:last-of-type a {
  width: 20px;
}

.footer_link_banner {
  background: rgb(31, 137, 214);
  background: -moz-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: #282828;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f89d6', endColorstr='#2e2b8f', GradientType=1);
  padding: 50px 0 50px 0;
}

.footer_link_banner .footer_link_banner_inner {
  max-width: 116.8rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2%;
}

.footer_link_banner .footer_link_banner_inner a {
  width: 23.5%;
  background: #fff;
}

.footer__link {
  font-size: 1.6rem;
}

.footer__logo {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5.1rem;
  width: 18rem;
}

.footer__address {
  margin-top: 0;
  text-align: left;
}

.footer__address span {
  display: block;
  font-style: normal;
  line-height: 1.5;
}

.footer__copyright {
  background-color: var(--color-main);
  color: #fff;
  display: block;
  font-size: 1.2rem;
  margin-top: 3.1rem;
  padding-bottom: 2.3rem;
  padding-top: 2.3rem;
  text-align: center;
  width: 100%;
}

.footer .page-top {
  width: 100%;
}

.footer .page-top a {
  bottom: 1.15rem;
  display: inline-block;
  position: absolute;
  right: 2.3rem;
}

.footer .page-top__img {
  margin-left: auto;
  margin-right: auto;
  width: 1.6rem;
}

.footer .page-top span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 0.4rem;
  color: #fff;
}

.footer_top {
  text-align: center;

  .sec_inner {
    background: var(--color-main);
    border-radius: 0px;

    @media screen and (max-width: 767px) {
      border-radius: 30px;
    }
  }

  .c-titA {
    @media screen and (max-width: 768px) {
      gap: 0;
    }
  }
}

.footer_top .sec_ttl {
  color: #fff;
  padding-top: 4rem;
}

.footer_top .sec_ttl .en,
.single-works .sec_ttl .en {
  color: #282828;
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.footer_text {
  /*     font-weight: 500;*/
  color: #282828;
  margin-top: 20px;
  font-size: 100%;
  line-height: 1.7;
}

.footer_flex .left {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}

.footer_flex {
  display: flex;
  max-width: 1000px;
  margin: 20px auto 0;
  align-items: center;

  @media screen and (max-width: 768px) {
    flex-direction: column;
    gap: 2rem;
    margin-top: 20px;
  }
}

.footer_flex .left,
.footer_flex .right {
  width: calc((100% - 30px) / 2);
  /*  background-color: #fff;*/
  border-radius: 6px;
  /*  padding: 30px 20px 24px;*/
  width: 100%;
}

.footer_flex .tel {
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--primary-color);
  transition: 0.3s;
  line-height: 1.1;
  color: #fff;
}

a.tel {
  display: flex;
  justify-content: center;
}

.footer_flex .tel img {
  width: 34px;
  bottom: -3px;
  position: relative;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(156deg) brightness(100%) contrast(103%);
}

.footer_flex .tel:hover {
  opacity: 0.7;
}

.footer_flex .tel_text .text01 {
  font-size: 12px;
  margin-right: 0px;
  padding: 0px 3px;
}

.tel_text {
  margin: 0;
  text-align: center;
  line-height: 1.5;

  span {
    display: block;
  }
}

.footer_flex .tel_text .text02 {
  font-size: 100%;
}

.footer_flex .tel_text .text03 {
  font-size: 16px;
}

.footer_flex .mail {
  display: block;
  background: #fff;
  color: #282828;
  width: 360px;
  max-width: 100%;
  border-radius: 45px;
  text-align: center;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  margin: auto 0 auto;
  border: 2px solid #282828;
  /*    margin-bottom: 20px;*/
}

.footer_flex .mail span {
  padding-left: 25px;
  position: relative;
}

.footer_flex .mail span::after,
.footer_flex .mail span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.footer_flex .mail span::after {
  background: url(../img/common/mail.svg) no-repeat center/contain;
  filter: brightness(0) saturate(100%) invert(11%) sepia(3%) saturate(20%)
    hue-rotate(323deg) brightness(102%) contrast(89%);
}

.footer_flex .mail span::before {
  background: url(../img/common/mail_color.svg) no-repeat center/contain;
  opacity: 0;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(156deg) brightness(100%) contrast(103%);
}

.footer_flex .mail:hover {
  background-color: #282828;
  color: #fff;
  border: 2px solid #fff;
}

.footer_flex .mail:hover span::after {
  opacity: 0;
}

.footer_flex .mail:hover span::before {
  opacity: 1;
}

.footer_flex .mail_text {
  margin-top: 5px;
}

.footer_flex .contact_other span {
  padding-left: 25px;
  position: relative;
}

.footer_flex .contact_other span::after,
.footer_flex .contact_other span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.footer_flex .contact_other span::after {
  background: url(../img/common/line.svg) no-repeat center/contain;
}

.footer_flex .contact_other span::before {
  background: url(../img/common/line_color.svg) no-repeat center/contain;
  opacity: 0;
}

.footer_flex .contact_other:hover {
  background-color: #fff;
  color: #282828;
}

.footer_flex .contact_other:hover span::after {
  opacity: 0;
}

.footer_flex .contact_other:hover span::before {
  opacity: 1;
}

.txt p {
  font-weight: normal;
  font-size: 100%;
}

.ttl_cover_20230406 {
  /*    background-image: url(../img/common/bg001.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
}

.sub-section-title {
  color: #282828;
  font-size: 6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: calc(58 / 40);
  text-align: center;
  padding: 85px 0 40px 0;
  background: rgba(255, 255, 255, 0.8);
}

.footer_flex .right {
  width: 100%;

  @media screen and (max-width: 768px) {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

.footer_flex {
  .right {
    .mailBtn {
      position: relative;
      background-color: #fff;
      color: var(--color-main);
      font-size: 18px;
      line-height: 1.5;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50px;
      width: 530px;
      height: 72px;
      transition: 0.4s;
      border: 1px solid #fff;

      @media screen and (max-width: 767px) {
        width: 100%;
      }

      svg {
        position: absolute;
        top: 50%;
        right: 32px;
        width: 30px;
        transform: translateY(-50%);
      }

      &:hover {
        background-color: var(--color-main);
        color: #fff;

        svg {
          circle {
            fill: #fff;
          }

          g {
            path {
              fill: var(--color-main);
            }
          }
        }
      }
    }

    .caution {
      margin-top: 20px;
      display: block;
      font-size: 16px;
      line-height: 1.5;
      color: #fff;

      @media screen and (max-width: 767px) {
        margin-top: 0;
        font-size: 14px;
      }
    }
  }
}

@media screen and (min-width: 768px) {
  .footer__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .footer__link:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .page-top {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .page-top:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .footer_flex .tel_text .text01 {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .footer_flex .tel_text .text01 {
    font-size: 12px;
  }

  .footer_flex .tel_text .text02 {
    font-size: 14px;
  }
}

.sp_cta {
  position: fixed;
  width: 100%;
  display: block;
  height: 55px;
  bottom: 0;
  z-index: 2;
  background: #3e9de2;
  display: flex;
  align-items: center;
  z-index: 11;
  border-top: 2px solid #fff;
}

.sp_cta a {
  display: block;
  height: 100%;
  text-align: center;
	width: 50%;
  font-size: 16px;
  padding: 18px 0 10px 25px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #fff;
  background: var(--color-main);
  position: relative;
}

.sp_cta a:last-child {
  background: #5b9342;
  border-left: 2px solid #fff;
}

.sp_cta a::before {
  position: absolute;
  content: "";
  background-image: url(../img/common/tel-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 1.8rem;
  left: 1.5rem;
  width: 2rem;
  height: 2rem;
}

.sp_cta a:last-child::before {
  position: absolute;
  content: "";
  background-image: url(../img/common/icon_map-wht.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 1.5rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
}

.sp_cta a span {
  font-weight: 600;
}

/* ==============================================================
*  セクション(home)
* ============================================================ */
.home-mv {
  position: relative;
  padding-left: 13.88%;

  @media screen and (max-width: 767px) {
    padding-left: 0;
  }
}

.home-mv__text {
  color: #fff;
  left: -3rem;
  margin: 0;
  position: absolute;
  text-align: center;
  top: 73.6%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(0%, -50%);
  width: 100%;
}

.home-mv__catch {
  font-size: clamp(30px, 4rem, 40px);
}

.home-mv__catch img {
  /* max-width: 700px; */
  /*    margin: 0 auto;*/
  width: 100%;

  @media screen and (max-width: 767px) {
    width: 95vw;
  }
}

.home-mv__catch span {
  line-height: calc(58 / 40);
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.4);
}

.home-mv__slides {
  border-bottom-left-radius: 520px;
  overflow: hidden;

  @media screen and (max-width: 767px) {
    border-bottom-left-radius: 40px;
  }
}

.home-mv__slide {
  width: 86.11%;
  margin-left: auto;

  overflow: hidden;

  @media screen and (max-width: 767px) {
    width: 100%;
  }
}

.home-mv__slide img {
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.home-mv .slider-img img {
  height: auto;
  width: 100%;
}

.home-mv .slide-dots {
  margin-top: 1.7rem;
  padding: 0;
  text-align: center;
  display: none;
}

.home-mv .slide-dots li {
  display: inline-block;
  margin: 0 12px;
}

.home-mv .slide-dots li button {
  position: relative;
  text-indent: -9999px;
}

.home-mv .slide-dots li button::before {
  background-image: url(../img/home/dots-small.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  cursor: pointer;
  height: 4px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 24px;
  width: 4px;
}

.home-mv .slide-dots li.slick-active button::before {
  background-image: url(../img/home/dots-large.svg);
  height: 14px;
  width: 14px;
}

.home-mv button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}

@-webkit-keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes fadezoom {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.home-mv .add-animation {
  -webkit-animation: fadezoom 5s 2s forwards;
  animation: fadezoom 5s 2s forwards;
}

.home-mv__scrolldown {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  height: 60px;
}

.home-mv__scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background-color: #fff;
  -webkit-animation: patmove 1.4s ease-in-out infinite;
  animation: patmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@-webkit-keyframes patmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  20% {
    height: 50px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@keyframes patmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  20% {
    height: 50px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

.home-mv__scrolldown span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -20px;
  font-size: 1rem;
  color: #fff;
}

.home-shop {
  padding-top: 10.1rem;
}

.home-shop .home-section-title {
  position: relative;
  z-index: 1;
}

.home-shop__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: -11.5rem;
}

.home-shop__text {
  background: #1f89d6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.home-shop__text::before {
  background: #282828;
  bottom: 0;
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 9999px;
}

.home-shop__intro {
  color: #fff;
  font-size: 2.4rem;
  line-height: calc(35 / 24);
  width: 50rem;
}

.home-shop__intro span {
  display: block;
  font-weight: 600;
}

.home-shop__img {
  position: absolute;
  right: 0;
}

.home-shop__img img {
}

.home-shop .btn {
  margin-top: 5rem;
  /*   padding-right: 2.2rem; */
}

.home-shop .btn span {
  right: 5rem;
}

.home-shop .p-home-sec02__ttl {
  color: #ffe353;
  font-size: 3rem;
  top: 2rem;
}

.home-center {
  background: #fff;
  margin-top: 10rem;
  padding-bottom: 10.6rem;
  padding-top: 8rem;
  position: relative;
}

/* .home-center::before {
  background-image: url(../img/home/home-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
	opacity: 0.7;
} */
.home-center__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home-center__container.-service {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.home-center__container.-service {
  margin: 6rem 0 0rem 0;
  background: #fff;
  border-radius: 6px;
  padding: 5rem;
  /*
	-webkit-box-shadow: 1px 0px 15px 5px rgb(117 117 117 / 10%);
    box-shadow: 1px 0px 15px 5px rgb(117 117 117 / 10%);
*/
}

.home-center__text {
  /*   margin-top: 4.3rem; */
  width: 50%;
  padding: 0 0 0 5rem;
}

.home-center__text .btn {
  margin-top: 4rem;
  /*   padding-right: 2.2rem; */
}

.home-center__text .btn span {
  right: 3.3rem;
}

.home-center__container.-service .home-section-title {
  color: #1f89d6;
  /* 	    border-bottom: 2px solid #1f89d6; */
  padding: 0 0 10px 0;
  font-size: 3rem;
}

.home-center__container.-service .home-section-title span {
  color: #ffbf13;
  font-weight: 500;
  margin: 0;
}

.home-center__container.-service .home-section__desc {
  color: #282828;
  width: 100%;
}

.home-center__container.-service .btn {
  background: #80bef1;
  background: -moz-linear-gradient(left, #80bef1 0%, #3165bf 100%);
  background: -webkit-linear-gradient(left, #80bef1 0%, #3165bf 100%);
  background: linear-gradient(to right, #80bef1 0%, #3165bf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80bef1', endColorstr='#3165bf', GradientType=1);
  border-radius: 6px;
  color: #fff;
}

.home-center__container.-price .home-section-title {
  color: #1f89d6;
  border-bottom: 2px solid #1f89d6;
  padding: 0 0 10px 0;
}

.home-center__container.-price .home-section-title span {
  color: #1f89d6;
}

.home-center__container.-price .home-section__desc {
  color: #282828;
}

.home-center__container.-price .btn {
  background: rgb(31, 137, 214);
  background: -moz-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: #282828;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f89d6', endColorstr='#2e2b8f', GradientType=1);
  color: #fff;
}

.home-center__img {
  width: 50%;
}

.home-center__img img {
  /* 	border-radius: 6px; */
}

.home-service .btn {
  margin-top: 4rem;
  /*   padding-right: 2.2rem; */
}

.home-service .btn span {
  right: 3.3rem;
}

.home-price {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.home-price .btn {
  margin-top: 4rem;
  /*   padding-right: 1.2rem; */
}

.home-price .btn span {
  right: 6rem;
}

.home-gallery {
  background-color: #282828;
  padding-bottom: 10rem;
  padding-top: 8.3rem;
  position: relative;
  z-index: 1;
}

.home-gallery__list {
  display: -ms-grid;
  display: grid;
  gap: 1rem 1rem;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-top: 3.9rem;
}

.home-gallery__item {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.home-gallery__item:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.home-gallery__btn {
  margin-top: 6.3rem;
  text-align: center;
}

.home-gallery__btn .btn {
  padding-right: 2.2rem;
}

.home-gallery__btn .btn span {
  right: 4.2rem;
}

.home-works {
  /*        background: linear-gradient(180deg, white 0%, #fdf7ee 100%);*/
  padding-bottom: 8rem;
  padding-top: 8rem;
  position: relative;
  z-index: 1;
  /* 	    margin: 8rem 0 0 0; */
  /*	background-color: rgba(255,255,255,0.3);*/
  background-blend-mode: lighten;
  background: #fff;
}

.home-works .inner {
  padding: 0;
}

.home-works__box {
  background: unset;
  width: 100%;
  padding: 5rem 0 6rem;
}

.home-works__box .btn_03 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.home-works__container {
  margin-top: 3.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
  background: #f8f8f8;
}

.home-works__link {
  display: block;
  width: 100%;
  /*	background: #fff;*/
  /*	box-shadow: 0px 0px 5px rgba(160, 160, 160, 0.2);    */
  border-radius: 6px;
}

.home-works__thumbnail {
  overflow: hidden;
  position: relative;
}

.home-works__thumbnail img {
  width: 100%;
  /*    max-height: 250px;*/
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.home-works__time-category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 1rem 1rem 0 1rem;
  width: 26vw;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.home-works__time {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #000;
  /*     margin-top: 1rem; */
}

.home-works__category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgb(31, 137, 214);
  background: -moz-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: transparent;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f89d6', endColorstr='#2e2b8f', GradientType=1);
  color: #646464;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.4rem;
  height: 10%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  margin-left: 0rem;
  /* width: 100%; */
  /* position: absolute; */
  left: 0;
  bottom: 0;
  /* padding: 3px 10px; */
  margin-left: 0rem;
  /* border: 1px solid #646464; */
  gap: 10px;
  padding: 0rem 1rem 0 1rem;
}

.home-works__category span {
  border: 1px solid #646464;
  padding: 3px 10px;
}

.home-works__title {
  line-height: 1.7;
  padding: 1rem 1rem 0rem 1rem;
  width: 26vw;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 1rem;
}

.home-works__btn {
  margin-top: 6.1rem;
  text-align: center;
}

.home-works__btn a {
  border: 1px solid #0c3b2c;
  /*   padding-right: 1.8rem; */
}

.home-works__btn a span {
  right: 6.2rem;
}

.p-home-sec04 {
  position: relative;
}

.p-home-sec04::before {
  position: absolute;
  top: 10%;
  left: -8rem;
  content: "";
  display: block;
  width: 100%;
  height: 90%;
  background-image: linear-gradient(-135deg, #f9fff4 0%, #d3ebff 100%);
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.p-home-sec04 .p-service-sec06__item .item__txt {
  font-size: 1.5rem;
  margin: 1rem 0 0 0;
  line-height: 1.3;
}

.p-home-sec05 {
  position: relative;
}

.p-home-sec05::before {
  position: absolute;
  top: 10%;
  right: -8rem;
  content: "";
  display: block;
  width: 100%;
  height: 90%;
  background-image: linear-gradient(-135deg, #f9fff4 0%, #d3ebff 100%);
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.home-feature {
  background: linear-gradient(180deg, white 0%, #edf3f9 100%);
  margin-top: 8rem;
  padding: 0 0 8rem 0;
}

@media screen and (min-width: 768px) {
  .home-works__title span {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#1f89d6),
        to(#1f89d6)
      )
      0 100%/0 1px no-repeat;
    background: linear-gradient(#1f89d6, #1f89d6) 0 100%/0 1px no-repeat;
    text-decoration: none;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
  }

  .home-works__link:hover .home-works__title span {
    background-size: 100% 1px;
    /* 線の横幅を100%にする */
  }

  .home-works__category {
  }
}

@media screen and (max-width: 767px) {
  .home-mv__text {
    top: 46%;
  }
}

/* ==============================================================
*  セクション(sub-common)
* ============================================================ */
main.sub {
  background-color: #fef9ee;
}

.sub-bg {
  padding-bottom: 10rem;
  padding-top: 4rem;
  position: relative;
}

.sub-section-title {
  background: linear-gradient(to right, #1f89d6, #2e2b8f);
  background-clip: text;
  background-size: 200%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 6rem;
  font-weight: 600;
  line-height: calc(58 / 40);
  text-align: center;
}

.sub-section-title span {
  color: #fff;
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}

.sub-section-subtitle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 3.2rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4.8rem;
}

.sub-section-subtitle::after,
.sub-section-subtitle::before {
  background: radial-gradient(#baab00, #9c7800);
  content: "";
  height: 1px;
  width: 34rem;
}

.sub-section-subtitle.-color {
  color: #0c3b2c;
}

.sub-section-subtitle.-color::after,
.sub-section-subtitle.-color::before {
  width: 33rem;
}

.sub-section-subtitle span {
  display: block;
}

.breadcrumb {
  background-color: #fff;
  font-size: 14px;
  padding-bottom: 2.4rem;
  padding-top: 11.2rem;
  display: none;
}

.breadcrumb__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #9da3a7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb__inner span:not(:first-of-type) {
  margin-left: 5px;
}

.breadcrumb__inner span:not(:last-of-type) {
  color: #006947;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.breadcrumb .home {
  margin-right: 4px;
}

/* ==============================================================
*  セクション(sub-404)
* ============================================================ */
.sub-404__box {
  background-color: #fff;
  padding-bottom: 10.1rem;
  padding-top: 6rem;
}

.sub-404__title {
  color: #1f1f1f;
  font-size: 2.4rem;
  line-height: calc(36 / 24);
  text-align: center;
}

.sub-404__title span {
  display: block;
}

.sub-404__desc {
  color: #1f1f1f;
  font-size: 1.6rem;
  line-height: calc(30 / 16);
  margin-top: 2.7rem;
  text-align: center;
}

.sub-404__desc span {
  display: block;
}

.sub-404__link {
  margin-top: 5.6rem;
  text-align: center;
}

.sub-404__link a {
  border-bottom: 1px solid #1f89d6;
  color: #1f89d6;
  display: inline-block;
}

/* ==============================================================
*  セクション(sub-archive)
* ============================================================ */
.sub-archive__box {
  background-color: #fff;
  padding-bottom: 10rem;
  padding-top: 6.4rem;
}

.sub-archive__top {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sub-archive__category-name {
  font-size: 2.4rem;
}

.sub-archive__select-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub-archive__select-title {
  font-size: 1.2rem;
}

.sub-archive__select-search_input_group form {
  display: flex;
  align-items: center;
}

.sub-archive__select-search_input {
  border: 1px solid #8c8c8c;
  padding: 0 4px;
  height: 40px;
  display: flex;
  align-items: center;
}

.sub-archive__select-search_input input#s {
  font-size: 1.4rem;
}

.submit_btn button {
  background: #242424;
  color: #fff;
  padding: 5px 20px;
  height: 40px;
  font-size: 1.2rem;
}

.sub-archive__select-search {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9rem;
}

.sub-archive__select-search_title {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  text-transform: uppercase;
}

.sub-archive__category.-works {
  margin: 0;
}

.sub-archive__search_area {
  display: flex;
  gap: 20px;
}

.sub-archive__select {
  border: 1px solid #8c8c8c;
  font-size: 1.4rem;
  margin-left: 0.9rem;
  position: relative;
}

.sub-archive__select::before {
  border-left: 0.475rem solid transparent;
  border-right: 0.475rem solid transparent;
  border-top: 0.825rem solid #1e1d1d;
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 0.9rem;
  width: 0;
  z-index: -1;
}

.submit_btn button {
  background: #242424;
  color: #fff;
  padding: 5px 19px;
}

.sub-archive select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* デフォルトの矢印を非表示 */
  padding-bottom: 0.6rem;
  padding-left: 0.9rem;
  padding-right: 2.9rem;
  padding-top: 0.6rem;
  height: 28px;
}

.sub-archive select::-ms-expand {
  display: none;
  /* デフォルトの矢印を非表示(IE用) */
}

.sub-archive__container {
  margin-top: 3.2rem;

  border-top: 1px solid #282828;
  padding-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  @media screen and (max-width: 767px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.sub-archive__link {
  display: block;
  width: 31.5%;
  background: #fff;
  /*    box-shadow: 0px 0px 5px rgba(160, 160, 160, 0.2);*/
  border-radius: 6px;
}

.sub-archive__time-category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 1rem 1rem 0 1rem;
}

.sub-archive__time {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #000;
  margin-top: 1rem;
}

.sub-archive__category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgb(31, 137, 214);
  background: -moz-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: #282828;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f89d6', endColorstr='#2e2b8f', GradientType=1);
  color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.4rem;
  margin-left: 0;
  /*    min-width: 10.8rem;*/
  text-align: center;
}

.sub-archive__category.-blog span {
  background: transparent;
  border: 1px solid #646464;
  color: #646464;
  padding: 5px 10px;
  /*    padding: 1rem 2rem;*/
}

.sub-archive__category.-blog span:not(:first-of-type) {
  margin-left: 10px;
}

.sub-archive__title {
  color: #282828;
  font-size: 1.6rem;
  line-height: calc(28 / 16);
  padding: 1rem 1rem 1rem 1rem;
  margin-bottom: 1rem;
}

.sub-archive__title span {
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.sub-archive .pagination-wrapper {
  margin-top: 6rem;
}

.sub-archive .nav-links {
  color: #0c3b2c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sub-archive .page-numbers {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid var(--color-main);
  color: #282828;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 10px;
  margin-right: 10px;
  width: 40px;
}

.sub-archive .page-numbers.current {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--color-main);
  color: #fff;
}

.sub-archive .page-numbers.next,
.sub-archive .page-numbers.prev {
  border: 1px solid var(--color-main);
  width: 80px;
}

.sub-archive .page-numbers.next {
  margin-left: 20px;
}

.sub-archive .page-numbers.prev {
  margin-right: 20px;
}

.sub-archive .page-numbers.dots {
  border: none;
  margin: 0;
}

.home-news__thumbnail {
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 2;
}

@media screen and (max-width: 767px) {
  .sub-archive__category.-blog span {
    font-size: 3.5vw;
  }
}

/* PC表示のみhoverアニメーション(768px以上) */
@media screen and (min-width: 768px) {
  .sub-archive__title span {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#1f89d6),
        to(#1f89d6)
      )
      0 100%/0 1px no-repeat;
    background: linear-gradient(#282828, #282828) 0 100%/0 1px no-repeat;
    text-decoration: none;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
  }

  .sub-archive__link:hover .sub-archive__title span {
    background-size: 100% 1px;
    /* 線の横幅を100%にする */
  }
}

@media screen and (max-width: 767px) {
  .sub-archive__select-search_input {
    width: 200px;
  }

  .submit_btn {
    width: 90px;
  }

  .sub-archive__select-search_input input#s {
    font-size: 1.2rem;
  }

  .submit_btn button {
    padding: 5px 10px;
    width: 90px;
  }

  .sub-archive__select-search {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .sub-archive__select-search_input_group {
    width: 100%;
  }

  .sub-archive__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .sub-archive select {
    width: auto;
  }

  .sub-archive__search_area {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================================================
*  セクション(sub-contact)
* ============================================================ */
.sub-contact__top {
  background-color: #fff;
  padding-bottom: 10rem;
  padding-top: 4rem;
}

.sub-contact__list-top {
  display: block;
  width: 100%;
  text-align: center;
  margin: -30px 0 0 0;
}

.sub-contact__item-top {
  max-width: 400px;
  margin: 0 auto;
}

.sub-contact__item-top:not(:first-of-type) {
  margin-left: 6rem;
}

.sub-contact__top-title {
  color: #0c3b2c;
  font-size: 3.2rem;
  font-weight: 600;
  position: relative;
  text-align: center;
  width: 33rem;
}

.sub-contact__top-title::before {
  background-image: url(../img/sub/contact/arrow-contact.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1.433rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 4.9rem;
  width: 33rem;
}

.sub-contact__top-qr {
  margin-left: auto;
  margin-right: auto;
  margin-top: 4.2rem;
  width: 11.7rem;
}

.sub-contact__tel {
  color: #1f89d6;
  font-size: 4.4rem;
  font-weight: 600;
  margin-top: 6.8rem;
  padding-left: 2.3rem;
  pointer-events: none;
  position: relative;
}

.sub-contact__tel::before {
  background-image: url(../img/common/tel-color.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 2.744rem;
  left: 1.2rem;
  margin: auto;
  position: absolute;
  top: 0.6rem;
  width: 2.744rem;
}

.sub-contact__time {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0.4rem;
  margin-top: 1.2rem;
}

.sub-contact__time span {
  color: #1f89d6;
}

.sub-contact__time span:nth-of-type(1) {
  border: 1px solid #1f89d6;
  font-size: 1.6rem;
  padding: 0.4rem 1.2rem;
}

.sub-contact__time span:nth-of-type(2) {
  font-size: 1.8rem;
  margin-left: 0.9rem;
}

.sub-contact__box {
  background-color: #fff;
  padding-bottom: 0rem;
}

.sub-contact__title {
  color: #0c3b2c;
  font-size: 3.2rem;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: 33rem;
}

.sub-contact__title::before {
  background-image: url(../img/sub/contact/arrow-contact.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1.433rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 4.9rem;
  width: 33rem;
}

.sub-contact__intro {
  font-size: 1.8rem;
  line-height: calc(28 / 18);
  margin-left: 0.9rem;
  margin-top: 5rem;
  text-align: center;
}

.sub-contact__form {
  margin-top: 3rem;
  padding: 3rem 7rem 0 7rem;
}

.sub-contact__item {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-top: 1px solid #cecece;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 3.4rem;
  padding-top: 3rem;
}

.sub-contact__item:last-of-type {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-bottom: 1px solid #cecece;
}

.sub-contact__item dt {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 23.3rem;
}

.sub-contact__item dt span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
}

.sub-contact__item dt .required {
  background-color: #d3575f;
}

.sub-contact__item dt .optional {
  background-color: #888;
}

.sub-contact__item dd {
  margin-left: 2rem;
  width: 100%;
}

.sub-contact__item input,
.sub-contact__item textarea {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 0.4rem;
}

.sub-contact__item input {
  font-size: 1.6rem;
  padding: 0.75rem;
}

.sub-contact__item input.short {
  width: 29rem;
}

.sub-contact__item input.wide {
  width: 100%;
}

.sub-contact__item textarea {
  font-size: 1.6rem;
  height: 20rem;
  padding: 0.75rem;
  width: 100%;
}

.sub-contact__privacy {
  padding-top: 3.6rem;
  text-align: center;
}

.sub-contact__submit {
  display: inline-block;
  margin-top: 4.8rem;
  text-align: center;
  width: 100%;
}

.sub-contact__submit input {
  background-color: #1f89d6;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 2.8rem 10.7rem;
}

.sub-contact__privacy-wrapper {
  border: 1px solid #9da3a7;
  height: 20rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
  max-width: 640px;
  padding-bottom: 1.8rem;
  padding-left: 1.9rem;
  padding-right: 0.9rem;
  padding-top: 1.8rem;
}

.sub-contact__privacy-text {
  height: 16.291rem;
  overflow-y: auto;
  padding-right: 2rem;
  text-align: left;
}

.sub-contact__privacy-text::-webkit-scrollbar {
  width: 1rem;
}

.sub-contact__privacy-text::-webkit-scrollbar-thumb {
  background: #282828;
}

.sub-contact__privacy-text::-webkit-scrollbar-track {
  border: 1px solid #9da3a7;
}

.sub-contact__privacy-item:not(:first-of-type) {
  margin-top: 2.4rem;
}

.sub-contact__privacy-title {
  color: #222;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: calc(24 / 14);
}

.sub-contact__privacy-intro {
  color: #282828;
  font-size: 1.6rem;
  line-height: calc(28 / 16);
}

.sub-contact__privacy-desc {
  color: #222;
  font-size: 1.4rem;
  line-height: calc(24 / 14);
  margin-top: 0.6rem;
}

.sub-contact .wpcf7-not-valid {
  background-color: #ffd1d1;
}

.sub-contact .wpcf7-not-valid-tip {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #ff4848;
  border-radius: 4px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
  height: 2.6rem;
  margin-top: 1.67rem;
  padding-left: 1.2rem;
  position: relative;
  width: 29rem;
}

.sub-contact .wpcf7-not-valid-tip::before {
  background-color: #ff4848;
  bottom: 0;
  -webkit-clip-path: polygon(100% 100%, 50% 0%, 0% 100%);
  clip-path: polygon(100% 100%, 50% 0%, 0% 100%);
  content: "";
  height: 1.2rem;
  left: 3rem;
  margin: auto;
  position: absolute;
  top: -3.1rem;
  width: 1.4rem;
}

.sub-contact .wpcf7-form.invalid .wpcf7-response-output {
  display: none;
}

@media screen and (min-width: 768px) {
  .sub-contact__submit input {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .sub-contact__submit input:hover {
    opacity: 0.5;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}

/* ==============================================================
*  セクション(sub-price)
* ============================================================ */
.sub-price__intro {
  color: #fff;
  font-size: 2rem;
  margin-top: 4.5rem;
  text-align: center;
}

.sub-price__intro span {
  font-weight: 600;
}

.sub-price__box {
  /*  background-color: #fff;*/
  margin-top: 0;
  padding: 0 0 0 0;
  border-radius: 30px;
  /*	 box-shadow: 1px 0px 15px 5px rgb(117 117 117 / 10%);*/
  padding-bottom: 4rem;
}

.project_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.project_inner .item {
  width: 36rem;
  margin: 0 0 2rem 0;
}

.project_inner.-column2 .item {
  width: 50rem;
  margin: 0 0 2rem 0;
}

.project_inner .item .item_ttl {
  color: #1f89d6;
  font-weight: 500;
  font-size: 2rem;
  padding: 0 0 15px 0;
  border-bottom: 2px solid #1f89d6;
  margin: 0 0 1.5rem 0;
}

.project_inner .item .txt {
  padding: 2rem 1rem 3rem 1rem;
  text-align: left;
}

.project_inner .item .txt ul li {
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
}

.project_inner .item .txt ul li::before {
  content: "●";
  color: #1f89d6;
  position: absolute;
  font-size: 10px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.sub-price__title {
  color: #0c3b2c;
  font-size: 3.2rem;
  font-weight: 600;
  position: relative;
  text-align: center;
}

.sub-price__title::before {
  background-color: #edbd21;
  bottom: -1.8rem;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 10rem;
}

.sub-price__price {
  background-color: #ebd27f;
  border-radius: 4px;
  color: #0c3b2c;
  font-size: 6rem;
  font-weight: 600;
  margin-top: 4.8rem;
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
  text-align: center;
}

.sub-price__price span {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  top: 0.2rem;
}

.sub-price__container:not(:first-of-type) {
  margin-top: 6.7rem;
}

.sub-price__group {
  display: -ms-grid;
  display: grid;
  gap: 0 1.5rem;
  -ms-grid-columns: (minmax(29rem, 1fr)) [auto-fill];
  grid-template-columns: repeat(auto-fill, minmax(29rem, 1fr));
  margin-top: 4.7rem;
}

.sub-price__plan {
  border: 1px solid #dddada;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  width: 29rem;
}

.sub-price__plan:nth-of-type(1) .sub-price__plan-title,
.sub-price__plan:nth-of-type(3) .sub-price__plan-title {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#0c3b2c),
    to(#00120c)
  );
  background: linear-gradient(to right, #0c3b2c, #00120c);
}

.sub-price__plan:nth-of-type(2) .sub-price__plan-title {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#00120c),
    to(#0c3b2c)
  );
  background: linear-gradient(to right, #00120c, #0c3b2c);
}

.sub-price__plan-title {
  border-radius: 6px 6px 0 0;
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  padding-bottom: 1.8rem;
  padding-top: 1.6rem;
  text-align: center;
}

.sub-price__plan-title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.1em;
  margin-top: 1.1rem;
}

.sub-price__list {
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
}

.sub-price__item {
  padding-bottom: 2.7rem;
  padding-top: 2.3rem;
}

.sub-price__item:not(:first-of-type) {
  border-top: 1px solid #dddada;
}

.sub-price__item:nth-of-type(2) {
  padding-bottom: 3.2rem;
}

.sub-price__item:nth-of-type(3) {
  padding-bottom: 3.2rem;
}

.sub-price__item-title {
  font-size: 1.4rem;
  font-weight: 600;
}

.sub-price__item-desc {
  color: #0c3b2c;
  font-size: 3.2rem;
  font-weight: 600;
  margin-top: 1rem;
}

.sub-price__item-desc span {
  font-size: 1.4rem;
  font-weight: 600;
}

.sub-price__attention-list {
  margin-top: 2.7rem;
}

.sub-price__attention-item {
  font-size: 1.6rem;
  line-height: 1.5;
}

.sub-price__btn {
  margin-top: 4rem;
  text-align: center;
}

.sub-price__btn .btn {
  font-size: 1.6rem;
  padding-right: 2rem;
}

.sub-price__btn .btn span {
  right: 4rem;
}

.sub-price__banner-title {
  color: #0c3b2c;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 5.2rem;
  margin-top: 6.5rem;
  position: relative;
  text-align: center;
}

.sub-price__banner-title::before {
  background-image: url(../img/sub/price/arrow-price.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1.433rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 4.9rem;
  width: 33rem;
}

.sub-price__bottom {
  margin-top: 5rem;
}

.sub-price__title-desc {
  line-height: 1.5;
  margin-top: 5rem;
  text-align: center;
}

.sub-price__title-desc span {
  display: block;
}

.sub-price__title-desc span.tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sub-price__title-desc span.tel a {
  color: #00e;
  display: inline-block;
  text-decoration: underline;
}

/* 
==============================================================
*  セクション(sub-service)
* ============================================================ */
.sub-service__list {
  margin-top: 4.7rem;
}

.sub-service__list.type002 {
  margin-top: 0;
}

.sub-service__item {
  background-color: #fff;
  position: relative;
  width: 100%;
}

.sub-service__item::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: auto;
  top: 6.33rem;
  position: absolute;
}

.sub-service__item:nth-of-type(odd) {
}

.sub-service__item:nth-of-type(odd)::before {
  right: 0.98rem;
}

.sub-service__item:nth-of-type(odd) .sub-service__container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sub-service__item:nth-of-type(odd) .sub-service__text {
  margin-left: 4rem;
}

.sub-service__item:nth-of-type(even) {
  margin-right: auto;
}

.sub-service__item:nth-of-type(even)::before {
  left: 0.84rem;
}

.sub-service__item:nth-of-type(even) .sub-service__container {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.sub-service__item:nth-of-type(even) .sub-service__text {
  margin-right: 4rem;
}

.sub-service__item:not(:first-of-type) {
  /*   margin-top: 6rem; */
}

.sub-service__item:nth-of-type(1) .sub-service__text-title span {
  display: inline;
}

.sub-service__item:nth-of-type(1)::before {
  background-image: url(../img/sub/service/01.svg);
  height: 11.25rem;
  top: 6.73rem;
  width: 14.85rem;
}

.sub-service__item:nth-of-type(2)::before {
  background-image: url(../img/sub/service/02.svg);
  height: 11.25rem;
  width: 15.907rem;
}

.sub-service__item:nth-of-type(3)::before {
  background-image: url(../img/sub/service/03.svg);
  height: 11.25rem;
  width: 15.885rem;
}

.sub-service__item:nth-of-type(4)::before {
  background-image: url(../img/sub/service/04.svg);
  height: 11.25rem;
  width: 16.48rem;
}

.sub-service__item:nth-of-type(5)::before {
  background-image: url(../img/sub/service/05.svg);
  height: 11.25rem;
  width: 15.975rem;
}

.sub-service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 6rem;
  padding-top: 3.5rem;
  position: relative;
}

.sub-service__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50rem;
}

.sub-service__text {
  margin-top: -0.2rem;
  width: 50rem;
}

.main_lead {
  text-align: center;
  line-height: 2;
}

.sub-service__text-title {
  font-size: 2.4rem;
  line-height: calc(40 / 24);
  background: linear-gradient(to right, #1f89d6, #2e2b8f);
  background-clip: text;
  background-size: 200%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  border-bottom: 2px solid #1f89d6;
  padding: 0 0 5px 0;
}

.sub-service__text-title span {
  font-weight: 600;
  display: block;
}

.sub-service__text-desc {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-top: 2.7rem;
}

.sub-service__text-desc span {
  display: block;
}

.sub-service__text-desc span:not(:first-of-type) {
  margin-top: 2.4rem;
}

/* ==============================================================
*  セクション(sub-reserve)
* ============================================================ */
.sub-reserve-flow__box {
  background-color: #fff;
  margin-top: 4.7rem;
  padding-bottom: 8rem;
  padding-left: 11rem;
  padding-right: 11rem;
  padding-top: 6rem;
}

.sub-reserve-flow__item {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sub-reserve-flow__item:not(:first-of-type) {
  margin-top: 6rem;
}

.sub-reserve-flow__item-text {
  margin-top: 1.7rem;
  width: 57.2rem;
}

.sub-reserve-flow__item-title {
  border-left: 1rem solid #edbd21;
  color: #0c3b2c;
  display: inline-block;
  font-size: 3.1rem;
  font-weight: 600;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-top: 0.9rem;
  position: relative;
}

.sub-reserve-flow__item-title span {
  font-size: 4.7rem;
  font-weight: 600;
  left: 10.4rem;
  position: absolute;
  top: -0.6rem;
}

.sub-reserve-flow__item-intro {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: calc(34 / 24);
  margin-top: 1.3rem;
}

.sub-reserve-flow__item-desc {
  line-height: 1.5;
  margin-top: 2rem;
}

.sub-reserve-flow__item-desc span {
  display: block;
}

.sub-reserve-flow__item-img {
  margin-left: 0.5rem;
  margin-top: 1.2rem;
  width: 11.7rem;
}

.sub-reserve-flow__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26.8rem;
}

.sub-reserve-faq__box {
  background-color: #f8f8f8;
  margin-top: 2.7rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 5rem;
  border-radius: 30px;
  box-shadow: 1px 0px 15px 5px rgb(117 117 117 / 10%);
}

.sub-reserve-faq .accordion {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}

.sub-reserve-faq .accordion-item {
  border-bottom: 1px solid #9da3a7;
}

.sub-reserve-faq .accordion-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: calc(28 / 16);
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 3rem;
}

.sub-reserve-faq .accordion-title span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #282828;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  height: 3.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1rem;
  width: 3.3rem;
}

.sub-reserve-faq .accordion-content {
  background-color: #fff0f1;
  border-radius: 0.4rem;
  display: none;
  padding-bottom: 2.9rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2.9rem;
}

.sub-reserve-faq .accordion-content a {
  color: #00e;
  display: inline-block;
  text-decoration: underline;
}

.sub-reserve-faq .accordion-content p {
  line-height: calc(28 / 16);
}

.sub-reserve-faq .accordion-title {
  position: relative;
}

.sub-reserve-faq .accordion-title::after {
  border-right: solid 1px #282828;
  border-top: solid 1px #282828;
  content: "";
  display: block;
  height: 0.9rem;
  position: absolute;
  right: 2.3rem;
  top: 45%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  width: 0.9rem;
}

.sub-reserve-faq .accordion-title.open::after {
  top: 41%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.sub-reserve-cancel {
  margin-top: 10.7rem;
}

.sub-reserve-cancel__box {
  background-color: #fff;
  margin-top: 4.7rem;
  padding-bottom: 8rem;
  padding-left: 11rem;
  padding-right: 11rem;
  padding-top: 6rem;
}

.sub-reserve-cancel__item {
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.philosophy_img img {
  max-width: 600px;
  display: block;
  margin: 5rem auto 7rem auto;
}

.sub-reserve-cancel__item-text-container {
  margin-top: 0.6rem;
  width: 57.2rem;
}

.sub-reserve-cancel__item-text:not(:first-of-type) {
  margin-top: 3.6rem;
}

.sub-reserve-cancel__item-text:nth-of-type(2) .sub-reserve-cancel__item-desc {
  margin-top: 2.3rem;
}

.sub-reserve-cancel__item-title {
  font-size: 2.4rem;
  font-weight: 600;
}

.sub-reserve-cancel__item-desc {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 2.5rem;
}

.sub-reserve-cancel__item-desc span {
  display: block;
}

.sub-reserve-cancel__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 26.8rem;
}

/* ==============================================================
*  セクション(sub-shop)
* ============================================================ */
.sub-shop__box {
  /*  background-color: #fff;*/
  /*   padding-left: 4rem;
  padding-right: 4rem; */
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.sub-shop__container {
  display: block;
}

.sub-shop .c-flexbox01__head span {
  position: relative;
}

.contents_ttl_001 {
  background: rgb(31, 137, 214);
  background: -moz-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: #282828;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f89d6', endColorstr='#2e2b8f', GradientType=1);
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  margin: 0 0 3rem 0;
}

.contents_ttl_001 span {
  color: #fff;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.construction_item + .construction_item {
  margin: 4rem 0 0 0;
}

.construction_item .year {
  font-size: 2rem;
  color: #1f89d6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
}

.construction_item table {
  width: 100%;
  border-collapse: collapse;
}

.construction_item table th {
  padding: 1rem 1rem 1rem 1rem;
  background: #edf4fa;
  font-weight: 500;
  border: 1px solid #cecece;
}

.construction_item table td {
  padding: 1rem 1rem 1rem 1rem;
  border: 1px solid #cecece;
}

.sub-shop__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 47rem;
}

.sub-shop__table {
  width: 100%;
  left: 0;
  position: relative;
  text-align: left;
  padding: 0 5rem 0 5rem;
}

.sub-shop__table tr {
  /*    border-top: 1px solid #cecece;*/
  display: block;
  padding: 1.8rem;
}

.sub-shop__table th {
  width: 13rem;
  color: #242424;
  font-weight: 500;
}

.sub-shop__table td {
  line-height: 1.5;
}

.sub-shop__table td span {
  display: block;
}

.sub-shop__table td span.map {
  text-align: right;
}

.sub-shop__table td a {
  color: #00e;
  display: inline-block;
  text-decoration: underline;
}

.sub-shop__map {
  margin: 4.3rem 0 7rem 0;
}

.sub-shop__map iframe {
  height: 30rem;
  width: 100%;
}

/* ==============================================================
*  セクション(sub-single)
* ============================================================ */
.sub-single img {
  width: 10px;
}

.sub-single__box {
  background-color: #fff;
  padding: 3rem;
	border-radius: 14px;
}

.sub-single__title-area {
  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;
}

.sub-single__title {
  /* color: #1F89D6; */
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1.1rem;
}

.sub-single__time-category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sub-single__time {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.2rem;
  /*    font-weight: 600;*/
  color: #282828;
}

.sub-single__category {
  border: 1px solid #1f89d6;
  color: #1f89d6;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.2rem;
  margin-left: 1.9rem;
  padding: 0.35rem 0.7rem;
}

.sub-single__main {
  line-height: calc(34 / 16);
  margin-top: 1rem;
}

.sub-single__main h2 {
  background-color: #1f89d6;
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin-top: 3rem;
  padding: 1.3rem 2rem;
}

.sub-single__main h3 {
  border-bottom: 1rem solid #1f89d6;
  color: #1f89d6;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 4.5rem;
  padding-bottom: 1.6rem;
}

.sub-single__main h4 {
  border-left: 0.5rem solid #1f89d6;
  color: #1f89d6;
  display: inline-block;
  font-size: 2.2rem;
  line-height: 1;
  margin-top: 5.4rem;
  padding: 0.1rem 1.1rem;
}

.sub-service__list.type002 .sub-service__item::before {
  display: none;
}

.sub-single__main h5 {
  color: #1f89d6;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
  margin-top: 5.8rem;
}

.sub-single__main p {
  font-size: 1.6rem;
  margin-top: 1rem;
}

.sub-single__main ul,
.sub-single__main ol {
  margin-top: 2rem;
}

.sub-single__main li {
  font-size: 1.6rem;
  /*   margin-left: 2.5rem; */
  position: relative;
}

.sub-single__main figure {
  margin-top: 8rem;
}

sub-single .inner {
  padding: 0 0 0 0;
}

.sub-single__main figcaption {
  font-size: 1.8rem;
  line-height: calc(38 / 18);
  margin-top: 2rem;
  text-align: center;
}

.sub-single__main a {
  color: #00e;
  display: inline-block;
  text-decoration: underline;
}

.sub-single__btn-group {
  margin-top: 5.8rem;
  position: relative;
  text-align: center;
}

.sub-single__btn {
  background: rgb(31, 137, 214);
  background: -moz-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(31, 137, 214, 1) 0%,
    rgba(46, 43, 143, 1) 100%
  );
  background: #282828;
  background: #282828;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f89d6', endColorstr='#2e2b8f', GradientType=1);
  color: #fff;
  display: inline-block;
  font-size: 1.8rem;
  padding: 1rem 5rem;
}

.sub-single .nav-previous,
.sub-single .nav-next {
  bottom: 0;
  display: inline-block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  position: absolute;
  top: 0;
}

.sub-single .nav-previous a,
.sub-single .nav-next a {
  padding: 2rem;
}

.sub-single .nav-previous {
  left: 40.6rem;
}

.sub-single .nav-next {
  right: 40.6rem;
}

.sub-single .banner.-sub {
  margin-top: 10rem;
}

/* ==============================================================
*  セクション(sub-terms)
* ============================================================ */
.sub-terms__box {
  background-color: #fff;
  color: #2f2f2f;
  margin-top: 4.1rem;
  padding-bottom: 7.75rem;
  padding-left: 11rem;
  padding-right: 11rem;
  padding-top: 6.5rem;
}

.sub-terms__item:not(:first-of-type) {
  margin-top: 6.5rem;
}

.sub-terms__title {
  font-size: 2rem;
}

.sub-terms__list-child {
  margin-left: 4.4rem;
  margin-top: 2.1rem;
}

.sub-terms__item-child {
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
}

.sub-terms__item-child span {
  font-size: 1.6rem;
  left: -2.4rem;
  margin-right: 1rem;
  position: absolute;
  top: -0.3rem;
}

.sub-terms__item-child:not(:first-of-type) {
  margin-top: 1.9rem;
}

.sub-terms__item-child:nth-child(n + 10) {
  padding-left: 0.8rem;
}

.sub-terms__list-end {
  margin-left: 6rem;
  margin-top: 2rem;
}

.sub-terms__item-end {
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
}

.sub-terms__item-end span {
  font-size: 1.6rem;
  left: -2.3rem;
  margin-right: 1rem;
  position: absolute;
  top: -0.3rem;
}

.sub-terms__item-end:not(:first-of-type) {
  margin-top: 1.9rem;
}

.sub-terms__desc {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 2.2rem;
}

.sub-terms__desc span {
  display: block;
}

.sub-terms__desc span:not(:first-of-type) {
  margin-top: 2.4rem;
}

/* ==============================================================
*  セクション(sub-thanks)
* ============================================================ */
.sub-thanks__box {
  background-color: #fff;
  padding-bottom: 6.2rem;
  padding-top: 6.6rem;
}

.sub-thanks__title {
  color: #1f1f1f;
  font-size: 2.4rem;
  text-align: center;
}

.sub-thanks__desc {
  color: #1f1f1f;
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 3.1rem;
  text-align: center;
}

.sub-thanks__desc span {
  display: block;
}

.sub-thanks__list {
  left: 0.9rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.2rem;
  max-width: 622px;
  position: relative;
}

.sub-thanks__item {
  font-size: 1.6rem;
  line-height: calc(30 / 16);
  position: relative;
}

.sub-thanks__item::before {
  background-color: #282828;
  border-radius: 50%;
  content: "";
  height: 0.8rem;
  left: -1.8rem;
  margin: auto;
  position: absolute;
  top: 1.1rem;
  width: 0.8rem;
}

.sub-thanks__item:not(:first-of-type) {
  margin-top: 0.4rem;
}

.sub-thanks__tel-area {
  margin-top: 4.2rem;
  text-align: center;
}

.sub-thanks__tel-title {
  color: #0c3b2c;
  font-size: 3.2rem;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: 33rem;
}

.sub-thanks__tel-title::before {
  background-image: url(../img/sub/contact/arrow-contact.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 1.433rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 4.9rem;
  width: 33rem;
}

.sub-thanks__tel {
  color: #0c3b2c;
  display: inline-block;
  font-size: 3.4rem;
  font-weight: 600;
  margin-top: 5.9rem;
  padding-left: 3rem;
  pointer-events: none;
  position: relative;
}

.sub-thanks__tel::before {
  background-image: url(../img/common/tel-color.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 2.744rem;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0.6rem;
  width: 2.744rem;
}

.sub-thanks__time {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0.4rem;
  margin-top: 1rem;
}

.sub-thanks__time span {
  color: #0c3b2c;
}

.sub-thanks__time span:nth-of-type(1) {
  border: 1px solid #0c3b2c;
  font-size: 1.6rem;
  padding: 0.4rem 1.2rem;
}

.sub-thanks__time span:nth-of-type(2) {
  font-size: 1.8rem;
  margin-left: 0.9rem;
}

.sub-thanks__link {
  margin-top: 6.2rem;
  text-align: center;
}

.sub-thanks__link a {
  border-bottom: 1px solid #1f89d6;
  color: #1f89d6;
  display: inline-block;
}

/* ==============================================================
*  レスポンシブPC(common)
* ============================================================ */
/* ==============================================================
*  レスポンシブPC(home)
* ============================================================ */
@media screen and (max-width: 1168px) {
  .home-shop__text {
    padding-bottom: 6rem;
    padding-left: 2.4rem;
    padding-top: 13.8rem;
    width: 76.2rem;
  }

  .home-shop__img {
    top: 13.9rem;
    width: 58.4rem;
  }
}

@media screen and (min-width: 1169px) {
  .home-shop__text {
    padding-bottom: calc(6rem + ((1vw - 11.69px) * (40 / 7.51)));
    padding-left: calc(2.4rem + ((1vw - 11.69px) * (376 / 7.51)));
    /*     padding-top: calc(13.8rem + ((1vw - 11.69px) * (26 / 7.51))); */
    padding-top: calc(13.8rem + ((1vw - 1.69px) * (26 / 7.51)));
    width: calc(76.2rem + ((1vw - 11.69px) * (491 / 7.51)));
  }

  .home-shop__img {
    /*     top: calc(13.9rem + ((1vw - 11.69px) * (25 / 7.51))); */
    top: calc(13.9rem + ((1vw - 1.69px) * (25 / 7.51)));
    width: calc(58.4rem + ((1vw - 11.69px) * (376 / 7.51)));
  }
}

@media screen and (min-width: 1920px) {
  .home-shop__text {
    padding-bottom: 10rem;
    padding-left: 40rem;
    padding-top: 14.4rem;
    width: 125.3rem;
  }

  .home-shop__img {
    top: 14.4rem;
    width: 85rem;
  }
}

/* ==============================================================
*  レスポンシブSP(common)
* ============================================================ */
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .home-section-title {
    font-size: 9vw;
  }

  .home-section-title.type001 {
    color: #1f89d6;
  }

  .home-section-title.type001 span {
    color: #1f89d6;
  }

  .home-section-title span {
    font-size: 4.5vw;
    margin-top: 1vw;
  }

  .home-section__desc {
    font-size: 3.5vw;
    margin-top: 0;
    width: 100%;
  }

  .banner.-home-top {
    margin-top: 10vw;
  }

  .banner.-home-bottom {
    padding-bottom: 10vw;
    padding-top: 10vw;
  }

  .banner.-sub {
    margin-top: 0;
    padding: 4vw;
  }

  .banner.-sub .inner {
    padding: 0;
  }

  .banner__link {
    width: 100%;
  }

  .banner__link.-sub {
    width: 100%;
  }

  .btn {
    font-size: 3vw;
    padding-bottom: 3.5vw;
    padding-top: 3.5vw;
    width: 42vw;
  }

  .btn span {
    width: 2.5vw;
  }

  .sub-shop .c-flexbox01__head span::before {
    top: 1rem;
    right: -1rem;
  }
}

@media screen and (max-width: 767px) {
  .l-page-cover__ttl {
    font-size: 8vw !important;
    /* 		background: linear-gradient(to right, #64b3f4, #2159ba 100%) !important;
		background-clip: text !important;
		background-size: 200% !important;
		-webkit-text-fill-color: transparent !important;
		-webkit-background-clip: text !important; */
    width: 100% !important;
    padding: 40px 0 40px 4vw !important;
  }

  .header-sp {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    background: #fff;
    -webkit-box-shadow: 1px 0px 15px 5px rgb(167 169 170 / 20%);
    box-shadow: 1px 0px 15px 5px rgb(167 169 170 / 20%);
  }

  .header-sp.-sub {
    background-color: #fff;
  }

  .header-sp__top {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 3vw;
    padding-left: 5vw;
    padding-top: 3vw;
  }

  .header-sp__logo {
    position: relative;
    width: 35vw;
    z-index: 1;
  }

  .hamburger {
    border: none;
    cursor: pointer;
    height: 14vw;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
    width: 15vw;
    z-index: 40;
    background: #282828;
  }

  .hamburger.-sub span {
    background-color: #fff;
  }

  .hamburger span {
    background-color: #fff;
    height: 0.35vw;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    width: 4.7vw;
  }

  .hamburger__lineTop {
    top: 5.1vw;
  }

  .hamburger__lineCenter {
    top: 6.4vw;
  }

  .hamburger__lineBottom {
    top: 7.7vw;
  }

  .nav-drawer {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    /* display: none; */
    height: 100vh;
    max-height: 100vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-y: auto;
    padding-bottom: 25vw;
    padding-top: 12vw;
    position: fixed;
    text-align: center;
    top: 0;
    width: 80%;
    right: 100%;
    z-index: 50;
    transition: all 0.4s;
  }

  .nav-drawer.open {
    right: 20%;
  }

  .p-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 40;
  }

  .nav-drawer_ttl {
    font-size: 2rem;
    background: var(--color-main);
    position: absolute;
    top: 0px;
    width: 100%;
    height: 14vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-drawer__nav_logo {
    padding: 0 5rem;
  }

  .nav-drawer_ttl p {
    color: #fff;
  }

  .nav-drawer__nav {
    padding-left: 0;
    padding-top: 2rem;
  }

  .nav-drawer__list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    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;
    position: relative;
    color: var(--text-color);
  }

  .nav-drawer__snsWrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 3rem;
  }

  .nav-drawer__snsWrap .nav-drawer__item:not(:first-of-type) {
    margin-top: 0;
  }

  .nav-drawer__link {
    font-size: 4.7vw;
    text-align: center;
    width: 240px;
    padding: 2rem;
    border-bottom: 1px dashed #cacaca;
  }

  .nav-drawer__link > img {
    width: 4rem;
  }

  .header_nav-sns {
    width: 4rem;
    margin: auto;
  }

  .nav-drawer__btn {
    width: 300px;
    margin-top: 2rem;
  }

  .nav-drawer__btn {
    color: #fff;
    display: inline-block;
    font-size: 4vw;
    padding: 3vw;
    background: #ffc85e;
    background: -moz-linear-gradient(left, #fbd180 0%, #de6443 100%);
    background: -webkit-linear-gradient(left, #ffc85e 0%, #de6443 100%);
    background: linear-gradient(to right, #ffc85e 0%, #de6443 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc85e', endColorstr='#de6443', GradientType=1);
    background: #282828;
  }

  .nav-drawer__tel {
    font-size: 4vw;
    margin-top: 7vw;
    color: var(--text-color);
  }

  .nav-drawer__tel a {
    display: inline-block;
    margin-left: 4vw;
    position: relative;
    font-size: 6vw;
  }

  .nav-drawer__tel a::before {
    background-image: url(../img/common/tel-color.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    height: 4vw;
    left: -5vw;
    margin: auto;
    position: absolute;
    top: 0;
    width: 4vw;
  }

  .nav-drawer__time {
    font-size: 4vw;
    margin-top: 7vw;
    color: var(--text-color);
  }

  .nav-drawer__time span {
    border: 1px solid var(--text-color);
    display: inline-block;
    margin-right: 2vw;
    padding: 1vw;
    margin-bottom: 0.7rem;
  }

  /* 表示された時用のCSS */
  .open .hamburger {
    /*     background-color: #fff; */
    -webkit-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
  }

  .open .hamburger__lineTop {
    top: 6.7vw;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .open .hamburger__lineCenter {
    display: none;
  }

  .open .hamburger__lineBottom {
    top: 6.7vw;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .open .hamburger span {
    background-color: #fff;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
}

/*----sp_menu----*/
.menu-sns.ig {
  width: 10vw;
  margin: 0 auto;
  padding-top: 1rem;
}

.nav-drawer_accordion {
  /*  margin: 2em 0;*/
  transition: line-height 0.3s ease-out, opacity 0.1s linear 0.1s,
    visibility 0.1s linear 0.1s;
  width: 100%;
}

.accordion__summary {
  display: block;
  background: #282828;
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 38px 20px 10px;
  width: 100%;
  /* 	border: 1px solid #94b8ac; */
  text-align: left;
  padding: 20px;
  font-size: 4.2vw;
  color: #fff;
}

.accordion-content.accordion__detail {
  border: 1px solid #282828;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__summary::after {
  content: "";
  font-size: 1.4em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background-position: center center;
  background-image: url(../img/common/arrow2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 16px;
  height: 16px;
  z-index: 10;
  transition: 0.3s;
}

.accordion__summary.open::after {
  transform: translateY(-50%);
  transition: 0.3s;
}

/*
.nav-drawer_accordion[open] .accordion__summary::after {
    content: "";
    background-position: center center;
    background-image: url(../img/common/arrow2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 16px;
    height: 16px;
    z-index: 10;
}
*/
.accordion__detail {
  padding: 0vw 4vw 0vw 3vw;
  margin: 0;
  /*     border: solid #94b8ac; */
  border-width: 0px 1px 1px 1px;
}

.accordion__detail .nav-drawer__item:last-child {
  border: none;
}

.accordion__text {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .nav-drawer__item:not(:first-of-type) {
    margin-top: 0;
  }

  .nav-drawer__item {
    /*        padding: 16px;*/
    /*        border-bottom: 1px solid #94b8ac;*/
    width: 100%;
    position: relative;
  }

  /*
    .nav-drawer {
        padding-left: 4vw;
        padding-right: 4vw;
    }
*/
  .nav-drawer__link {
    text-align: left;
  }

  .nav-drawer__item::after {
    content: "";
    top: 15px;
    position: absolute;
    right: 20px;
    display: block;
    width: 20px;
    height: 20px;
    z-index: 10;
    background-position: center center;
    background-image: url(../img/common/arrow2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    filter: brightness(0) saturate(100%) invert(14%) sepia(5%) saturate(18%)
      hue-rotate(323deg) brightness(93%) contrast(93%);
  }

  .accordion__detail .nav-drawer__item::after {
    left: -5px;
    top: 18px;
  }

  .accordion__detail .nav-drawer__item {
    padding: 0;
  }

  .nav-drawer__list .accordion {
    width: 100%;
  }

  .accordion-content.accordion__detail .nav-drawer__item::before {
    right: auto;
    left: -7%;
  }

  .accordion-content.accordion__detail .nav-drawer__item .nav-drawer__link {
    padding-left: 20px;
  }

  .nav-drawer__item:last-child a {
    border-bottom: 0px;
  }

  .nav-drawer__item.-top .nav-drawer__link {
    width: 275px;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 15vw;
  }

  .footer_link_banner {
    padding: 40px 15px 40px 15px;
  }

  .footer_link_banner .footer_link_banner_inner {
    gap: 0;
  }

  .footer_link_banner .footer_link_banner_inner a {
    width: 46%;
    margin: 0 2% 3% 2%;
  }

  .footer__item:not(:first-of-type) {
    margin-left: 0;
    /* margin-top: 10vw; */
  }

  .footer__item:last-of-type {
    margin-left: 0;
    /* margin-top: 10vw; */
  }

  .footer__item:last-of-type a {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__link {
    font-size: 4vw;
  }

  .footer__logo {
    margin-top: 10vw;
    width: 80vw;
  }

  .footer__address {
    margin-top: 3vw;
  }

  .footer__address span {
    font-size: 14px;
  }

  .footer__copyright {
    font-size: 3.5vw;
    margin-top: 10vw;
    padding-bottom: 6vw;
    padding-top: 6vw;
    margin-bottom: 55px;
  }

  .footer .page-top span {
    font-size: 2.5vw;
    margin-top: 1vw;
  }

  .footer .page-top__img {
    width: 4vw;
  }

  .footer .page-top a {
    bottom: 4vw;
    right: 3vw;
    z-index: 10;
  }
}

/* ==============================================================
*  レスポンシブSP(home)
* ============================================================ */
@media screen and (max-width: 767px) {
  .home-mv__catch {
    font-size: clamp(20px, 5vw, 40px);
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .home-mv__catch span {
    display: block;
  }

  .home-mv__slide img {
    height: calc(100vh / 2);
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    height: 120vw;
  }

  .home-mv .slide-dots li {
    margin: 0 2vw;
  }

  .home-mv .slide-dots li.slick-active button::before {
    height: 2vw;
    width: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .home-shop {
    padding-top: 8vw;
    background: #1f89d6;
  }

  .home-shop .home-section__desc {
    margin-top: 5vw;
  }

  .home-shop__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 8vw;
    position: static;
  }

  .home-shop__img {
    position: static;
    width: 100%;
  }

  .home-shop__text {
    padding: 10vw 5vw;
    width: 100%;
  }

  .home-shop__intro {
    font-size: 5vw;
    width: 100%;
  }

  .home-shop .btn {
    margin-top: 8vw;
    /*     padding-right: 3vw; */
  }

  .home-shop .btn span {
    right: 7vw;
  }
}

@media screen and (max-width: 767px) {
  .home-center {
    margin-top: 15vw;
    padding-bottom: 0;
    padding-top: 10vw;
  }

  .home-center .inner {
    padding: 0;
  }

  .home-center__container.-service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .home-center__container.-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .home-center__text {
    margin-top: 0rem;
    padding: 6vw 0vw 3vw 0vw;
    width: 100%;
  }

  .home-center__img {
    margin-top: 3vw;
    width: 100%;
  }

  .home-service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .home-service .btn {
    margin-top: 8vw;
    /*     padding-right: 3vw; */
  }

  .home-service .btn span {
    right: 4vw;
  }

  .home-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 10vw;
    margin-bottom: 4rem;
  }

  .home-price .btn {
    margin-top: 8vw;
    /*     padding-right: 3vw; */
  }

  .home-price .btn span {
    right: 11vw;
  }
}

@media screen and (max-width: 767px) {
  .home-gallery {
    padding-bottom: 15vw;
    padding-top: 10vw;
  }

  .home-gallery__list {
    gap: 5vw 5vw;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 8vw;
  }

  .home-gallery__btn {
    margin-top: 10vw;
  }

  .home-gallery__btn .btn {
    padding-right: 2vw;
  }

  .home-gallery__btn .btn span {
    right: 7vw;
  }
}

@media screen and (max-width: 767px) {
  .home-works {
    padding-bottom: 0;
    padding-top: 0;
    margin: 0rem 0 0 0;
  }

  .home-works__box {
    padding: 0vw 0vw 10vw;
  }

  .home-works__container {
    margin-top: 8vw;
    flex-direction: column;
    /*	  gap: 0;*/
  }

  .home-works__link {
    display: block;
    width: 100%;
  }

  .home-works__link:not(:first-of-type) {
    margin-top: 2vw;
  }

  .home-works__time {
    font-size: 3.5vw;
  }

  .home-works__category {
    font-size: 3.5vw;
    margin-left: 0;
    /*        width: 35vw;*/
  }

  .home-works__time-category {
    padding: 1rem 0rem 0 1rem;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    align-content: flex-start;
    align-items: flex-start;
  }

  .home-works__title {
    font-size: 100%;
    margin-left: 0;
    margin-top: 0vw;
    width: 60vw;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }

  .home-works__btn {
    margin-top: 10vw;
  }

  .home-works__btn a span {
    right: 8vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-common)
* ============================================================ */
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 3vw;
    padding-bottom: 3vw;
    padding-top: 19vw;
  }

  .sub-bg {
    padding-bottom: 10vw;
    padding-top: 10vw;
  }

  .sub-bg::before {
    height: 90vw;
  }

  .sub-section-title {
    font-size: 12vw;
  }

  .sub-section-title span {
    font-size: 4.5vw;
  }

  .sub-section-subtitle {
    font-size: 6vw;
    line-height: 1.5;
    margin-top: 5vw;
    text-align: center;
  }

  .sub-section-subtitle::before,
  .sub-section-subtitle::after {
    width: 16vw;
  }

  .sub-section-subtitle.-color::after,
  .sub-section-subtitle.-color::before {
    width: 16vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-404)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-404__box {
    margin-top: 0;
    padding-bottom: 12vw;
    padding-top: 0;
  }

  .sub-404__title {
    font-size: 4.5vw;
  }

  .sub-404__desc {
    font-size: 2.6vw;
    margin-top: 6vw;
  }

  .sub-404__link {
    margin-top: 9vw;
  }

  .sub-404__link a {
    font-size: 4.5vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-archive)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-archive__box {
    margin-top: 0;
    padding: 5vw 0;
  }

  .sub-archive__container {
    margin-top: 8vw;
    flex-direction: column;
    row-gap: 4rem;
  }

  .sub-archive__category-name {
    font-size: 4.5vw;
  }

  .sub-archive__select-title {
    font-size: 3vw;
  }

  .sub-archive__select {
    font-size: 3vw;
    margin-left: 2vw;
  }

  .sub-archive__select::before {
    border-left: 1vw solid transparent;
    border-right: 1vw solid transparent;
    border-top: 1.5vw solid #1e1d1d;
    right: 1vw;
    top: 2vw;
  }

  .sub-archive select {
    padding-bottom: 1vw;
    padding-left: 1vw;
    padding-right: 4vw;
    padding-top: 1vw;
  }

  .sub-archive__link {
    display: block;
    padding-bottom: 5vw;
    padding-right: 0;
    padding-top: 5vw;
    padding: 0 0 0 0;
    width: 100%;
  }

  .sub-archive__time {
    font-size: 3.5vw;
  }

  .sub-archive__category {
    font-size: 4.5vw;
    font-size: 100%;
    margin-left: 0;
    padding: 1vw 2vw;
  }

  .sub-archive__title {
    font-size: 4.5vw;
    font-size: 100%;
    margin-left: 0;
    margin-top: 0vw;
  }

  .sub-archive .pagination-wrapper__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 5vw;
  }

  .sub-archive .pagination-wrapper .page-numbers {
    font-size: 5vw;
    height: 9.5vw;
    margin-left: 2vw;
    margin-right: 2vw;
    width: 24vw;
  }

  .sub-archive .pagination-wrapper .page-numbers.next,
  .sub-archive .pagination-wrapper .page-numbers.prev {
    border: none;
  }

  .sub-archive .pagination-wrapper .page-numbers.next a,
  .sub-archive .pagination-wrapper .page-numbers.prev a {
    border: 1px solid #0c3b2c;
    padding: 2vw 6vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-contact)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-contact__top {
    margin-top: 0;
    padding-bottom: 10vw;
    padding-top: 5vw;
  }

  .sub-contact__list-top {
    display: block;
  }

  .sub-contact__item-top:not(:first-of-type) {
    margin-left: 0;
    margin-top: 15vw;
    text-align: center;
  }

  .sub-contact__top-title {
    font-size: 6vw;
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }

  .sub-contact__top-title::before {
    height: 3vw;
    top: 8vw;
    width: 60vw;
  }

  .sub-contact__top-qr {
    margin-top: 10vw;
    width: 70%;
  }

  .sub-contact__top-qr-desc {
    font-size: 4.5vw;
    line-height: 1.5;
    margin-top: 6vw;
    text-align: center;
  }

  .sub-contact__tel {
    display: inline-block;
    font-size: 7vw;
    margin-top: 14vw;
    padding-left: 7vw;
    pointer-events: all;
  }

  .sub-contact__tel::before {
    height: 5vw;
    left: 0;
    top: 1vw;
    width: 5vw;
  }

  .sub-contact__time {
    margin-left: 0;
    margin-top: 5vw;
  }

  .sub-contact__time span:nth-of-type(1) {
    font-size: 5vw;
    padding: 1vw 3vw;
  }

  .sub-contact__time span:nth-of-type(2) {
    font-size: 5vw;
    margin-left: 3vw;
  }

  .sub-contact__box {
    margin-top: 5vw;
    padding-bottom: 12vw;
  }

  .sub-contact__title {
    font-size: 6vw;
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }

  .sub-contact__title::before {
    height: 3vw;
    top: 8vw;
    width: 60vw;
  }

  .sub-contact__intro {
    font-size: 3.5vw;
    margin-left: 0;
    margin-top: 10vw;
  }

  .sub-contact__intro span {
    display: block;
  }

  .sub-contact__form {
    margin-top: 0;
    padding: 0;
  }

  .sub-contact__item {
    display: block;
    padding-bottom: 6vw;
    padding-top: 6vw;
  }
  .sub-contact__item:first-child {
    border-top: none;
  }
  .sub-contact__item dt {
    font-size: 4.5vw;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
  }

  .sub-contact__item dt span {
    font-size: 3vw;
    margin-right: 3vw;
    padding: 1vw 2vw;
  }

  .sub-contact__item dd {
    margin-left: 0;
    margin-top: 4vw;
  }

  .sub-contact__item input,
  .sub-contact__item textarea {
    font-size: 4.5vw;
    padding: 2vw;
  }

  .sub-contact__item input.short {
    width: 100%;
  }

  .sub-contact__item textarea {
    height: 40vw;
  }

  .sub-contact__privacy {
    padding-top: 7vw;
  }

  .sub-contact__privacy-intro {
    font-size: 3.5vw;
  }

  .sub-contact__privacy-intro span {
    display: block;
  }

  .sub-contact__submit {
    margin-top: 7vw;
  }

  .sub-contact__submit input {
    border-radius: 1.8vw;
    font-size: 5vw;
    padding: 5vw 18vw;
  }

  .sub-contact__privacy-wrapper {
    height: 50vw;
    margin-top: 10vw;
    max-width: none;
    padding: 5vw 3vw;
  }

  .sub-contact__privacy-text {
    height: 40vw;
    padding-right: 2vw;
  }

  .sub-contact__privacy-text::-webkit-scrollbar {
    width: 1.8vw;
  }

  .sub-contact__privacy-item:not(:first-of-type) {
    margin-top: 8vw;
  }

  .sub-contact__privacy-title {
    font-size: 3vw;
  }

  .sub-contact__privacy-desc {
    font-size: 3vw;
    margin-top: 2vw;
  }

  .sub-contact .wpcf7-not-valid-tip {
    border-radius: 0.6vw;
    font-size: 3vw;
    height: 6vw;
    margin-top: 3vw;
    padding-left: 3vw;
    width: 54vw;
  }

  .sub-contact .wpcf7-not-valid-tip::before {
    height: 2vw;
    left: 4vw;
    top: -7.8vw;
    width: 3vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-price)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-price__intro {
    font-size: 4.5vw;
    margin-top: 6vw;
  }

  .sub-price__intro span {
    display: block;
    line-height: 1.5;
  }

  .sub-price__title {
    font-size: 6vw;
  }

  .sub-price__title::before {
    bottom: -3vw;
    width: 18vw;
  }

  .sub-price__box {
    margin-top: 0vw;
    padding-bottom: 12vw;
    /*     padding-left: 5vw;
    padding-right: 5vw; */
    padding-top: 12vw;
  }

  .sub-price__price {
    border-radius: 0.6vw;
    font-size: 10vw;
    margin-top: 10vw;
    padding-bottom: 5vw;
    padding-top: 4vw;
  }

  .sub-price__price span {
    font-size: 4.5vw;
    top: 0.2vw;
  }

  .sub-price__container:not(:first-of-type) {
    margin-top: 12vw;
  }

  .sub-price__group {
    display: block;
    margin-top: 8vw;
  }

  .sub-price__plan {
    width: 100%;
  }

  .sub-price__plan:not(:first-of-type) {
    margin-top: 10vw;
  }

  .sub-price__plan-title {
    border-radius: 0.8vw 0.8vw 0 0;
    font-size: 7vw;
    padding-bottom: 4vw;
    padding-top: 3vw;
  }

  .sub-price__plan-title span {
    font-size: 4.5vw;
  }

  .sub-price__list {
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .sub-price__item {
    padding-bottom: 7vw;
    padding-top: 6vw;
  }

  .sub-price__item:nth-of-type(2) {
    padding-bottom: 7vw;
  }

  .sub-price__item:nth-of-type(3) {
    padding-bottom: 7vw;
  }

  .sub-price__item-title {
    font-size: 4.5vw;
  }

  .sub-price__item-desc {
    font-size: 8vw;
    margin-top: 3vw;
  }

  .sub-price__item-desc span {
    font-size: 4.5vw;
  }

  .sub-price__attention-list {
    margin-top: 6vw;
  }

  .sub-price__attention-item {
    font-size: 4.5vw;
    text-indent: -1em;
  }

  .sub-price__btn {
    margin-top: 8vw;
  }

  .sub-price__btn .btn {
    font-size: 3vw;
    padding-right: 3vw;
  }

  .sub-price__btn .btn span {
    right: 6vw;
  }

  .sub-price__banner-title {
    font-size: 5vw;
    margin-bottom: 7vw;
    margin-top: 12vw;
  }

  .sub-price__banner-title::before {
    height: 3vw;
    top: 7.5vw;
    width: 50vw;
  }

  .sub-price__title-desc {
    font-size: 4.5vw;
    margin-top: 8vw;
    text-align: left;
  }

  .sub-price__title-desc span.tel {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}

/* 
==============================================================
*  レスポンシブSP(sub-service)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-service__list {
    margin-top: 8vw;
  }

  .sub-service__item {
    padding-bottom: 8vw;
    /*     padding-left: 5vw;
    padding-right: 5vw; */
    padding-top: 5vw;
    width: 100%;
  }

  .sub-service__item:nth-of-type(odd)::before {
    left: auto;
    right: 2vw;
    top: 60vw;
  }

  .sub-service__item:nth-of-type(odd) .sub-service__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .sub-service__item:nth-of-type(odd) .sub-service__text {
    margin-left: 0;
  }

  .sub-service__item:nth-of-type(even)::before {
    left: auto;
    right: 2vw;
    top: 62vw;
  }

  .sub-service__item:nth-of-type(even) .sub-service__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .sub-service__item:nth-of-type(even) .sub-service__text {
    margin-right: 0;
  }

  .sub-service__item:not(:first-of-type) {
    margin-top: 10vw;
  }

  .sub-service__item:nth-of-type(1) .sub-service__text-title span {
    display: block;
  }

  .sub-service__item:nth-of-type(1)::before {
    height: 18vw;
    width: 23vw;
  }

  .sub-service__item:nth-of-type(2)::before {
    height: 18vw;
    width: 23vw;
  }

  .sub-service__item:nth-of-type(3)::before {
    height: 18vw;
    width: 23vw;
  }

  .sub-service__item:nth-of-type(4)::before {
    height: 18vw;
    width: 23vw;
  }

  .sub-service__item:nth-of-type(5)::before {
    height: 18vw;
    width: 23vw;
  }

  .sub-service__container {
    padding: 0;
    position: static;
  }

  .sub-service__img {
    width: 100%;
  }

  .sub-service__text {
    margin-top: 6vw;
    width: 100%;
  }

  .sub-service__text-title {
    font-size: 5vw;
  }

  .sub-service__text-desc {
    font-size: 4.5vw;
    margin-top: 8vw;
  }

  .sub-service__text-desc span:not(:first-of-type) {
    margin-top: 5vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-reserve)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-reserve-flow__box {
    margin-top: 8vw;
    padding-bottom: 15vw;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 15vw;
  }

  .sub-reserve-flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sub-reserve-flow__item:not(:first-of-type) {
    border-top: 1px solid #9da3a7;
    margin-top: 15vw;
    padding-top: 15vw;
  }

  .sub-reserve-flow__item-text {
    margin-top: 0;
    width: 100%;
  }

  .sub-reserve-flow__item-title {
    border-left: 2.5vw solid #edbd21;
    font-size: 7vw;
    padding-bottom: 2vw;
    padding-left: 3vw;
    padding-top: 3vw;
  }

  .sub-reserve-flow__item-title span {
    font-size: 12vw;
    left: 24vw;
    top: -1vw;
  }

  .sub-reserve-flow__item-intro {
    font-size: 5vw;
    margin-top: 4vw;
    white-space: normal;
  }

  .sub-reserve-flow__item-desc {
    font-size: 4.5vw;
    margin-top: 6vw;
  }

  .sub-reserve-flow__item-img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 8vw;
    width: 50%;
  }

  .sub-reserve-flow__img {
    margin: auto;
    margin-top: 10vw;
    width: 70%;
  }

  .sub-reserve-flow__line-btn {
    margin-inline: auto;
    margin-top: 8vw;
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .sub-reserve-faq {
    padding-top: 0vw;
  }

  .sub-reserve-faq__box {
    margin-top: 0vw;
    padding-bottom: 7vw;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 0vw;
  }

  .sub-reserve-faq .accordion-title {
    font-size: 3.5vw;
    padding-bottom: 4vw;
    padding-left: 0;
    padding-right: 6vw;
    padding-top: 4vw;
  }

  .sub-reserve-faq .accordion-title span {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 8vw;
    margin-right: 3vw;
    width: 8vw;
  }

  .sub-reserve-faq .accordion-content {
    -webkit-column-break-before: 0.6vw;
    break-before: 0.6vw;
    padding: 3vw;
  }

  .sub-reserve-faq .accordion-content p {
    font-size: 3vw;
  }

  .sub-reserve-faq .accordion-title::after {
    height: 2vw;
    right: 2vw;
    width: 2vw;
  }
}

@media screen and (max-width: 767px) {
  .sub-reserve-cancel {
    margin-top: 20vw;
  }

  .sub-reserve-cancel__box {
    margin-top: 8vw;
    padding-bottom: 15vw;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 10vw;
  }

  .sub-reserve-cancel__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sub-reserve-cancel__item-text-container {
    margin-top: 0;
    width: 100%;
  }

  .sub-reserve-cancel__item-text:not(:first-of-type) {
    margin-top: 10vw;
  }

  .sub-reserve-cancel__item-text:nth-of-type(2) .sub-reserve-cancel__item-desc {
    margin-top: 5vw;
  }

  .sub-reserve-cancel__item-title {
    font-size: 5vw;
  }

  .sub-reserve-cancel__item-desc {
    font-size: 4.5vw;
    margin-top: 5vw;
  }

  .sub-reserve-cancel__img {
    margin: auto;
    margin-top: 10vw;
    width: 70%;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-shop)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-shop__box {
    margin-top: 5vw;
    padding: 0vw;
  }

  .sub-shop__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .sub-shop__img {
    width: 100%;
  }

  .sub-shop__text {
    margin-top: 10vw;
  }

  .sub-shop__table {
    font-size: 4.5vw;
    position: static;
    width: 100%;
    padding: 0;
  }

  .sub-shop__table tr {
    padding-bottom: 3vw;
    padding-top: 3vw;
  }

  .sub-shop__table th {
    width: 22vw;
  }

  .sub-shop__map {
    margin-top: 5vw;
  }

  .sub-shop__map iframe {
    height: 60vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-single)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-single__box {
    padding: 2rem;
  }

  .sub-single__time {
    font-size: 3.5vw;
  }

  .sub-single__category {
    font-size: 14px;
    margin-left: 4vw;
    padding: 1vw 2vw;
  }

  .sub-single__title {
    font-size: 4.5vw;
    margin-top: 3vw;
  }

  .sub-single__main {
    margin-top: 5vw;
  }

  .sub-single__main h2 {
    font-size: 5vw;
    margin-top: 6vw;
    padding: 2vw 3vw;
  }

  .sub-single__main h3 {
    border-bottom: 1.2vw solid #006947;
    font-size: 4.5vw;
    margin-top: 6vw;
    padding-bottom: 3vw;
  }

  .sub-single__main h4 {
    border-left: 1.5vw solid #006947;
    font-size: 4.5vw;
    margin-top: 6vw;
    padding: 1vw 2vw;
  }

  .sub-single__main h5 {
    font-size: 3.5vw;
    margin-top: 6vw;
  }

  .sub-single__main p {
    font-size: 3.6vw;
    /*     margin-bottom: 10vw;
    margin-top: 6vw; */
  }

  .sub-single__main ul,
  .sub-single__main ol {
    margin-top: 6vw;
  }

  .sub-single__main li {
    font-size: 3vw;
    /*     margin-left: 4vw; */
  }

  .sub-single__main li::before {
    height: 2vw;
    left: -3.5vw;
    top: 2.5vw;
    width: 2vw;
  }

  .sub-single__main figure {
    margin-top: 8vw;
  }

  .sub-single__main figcaption {
    font-size: 3vw;
    margin-top: 3vw;
  }

  .sub-single__btn-group {
    margin-top: 8vw;
  }

  .sub-single__btn {
    font-size: 4.5vw;
    padding: 2vw 6vw;
  }

  .sub-single .nav-previous a,
  .sub-single .nav-next a {
    padding: 3vw;
  }

  .sub-single .nav-previous a img,
  .sub-single .nav-next a img {
    width: 3vw;
  }

  .sub-single .nav-previous {
    left: 16vw;
  }

  .sub-single .nav-next {
    right: 16vw;
  }

  .sub-single .banner.-sub {
    margin-top: 15vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-terms)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-terms__box {
    margin-top: 10vw;
    padding-top: 10vw;
    padding-bottom: 10vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .sub-terms__item:not(:first-of-type) {
    margin-top: 12vw;
  }

  .sub-terms__title {
    font-size: 4.5vw;
  }

  .sub-terms__list-child {
    margin-left: 5vw;
    margin-top: 4vw;
  }

  .sub-terms__item-child {
    font-size: 3vw;
  }

  .sub-terms__item-child span {
    font-size: 3vw;
    left: -4vw;
    margin-right: 2vw;
    top: -0.6vw;
  }

  .sub-terms__item-child:not(:first-of-type) {
    margin-top: 3vw;
  }

  .sub-terms__list-end {
    margin-left: 3vw;
    margin-top: 3vw;
  }

  .sub-terms__item-end {
    font-size: 3vw;
  }

  .sub-terms__item-end span {
    font-size: 3vw;
    left: -4vw;
    margin-right: 2vw;
    top: -0.6vw;
  }

  .sub-terms__item-end:not(:first-of-type) {
    margin-top: 3vw;
  }

  .sub-terms__desc {
    font-size: 3vw;
    margin-top: 4vw;
  }
}

/* ==============================================================
*  レスポンシブSP(sub-thanks)
* ============================================================ */
@media screen and (max-width: 767px) {
  .sub-thanks__box {
    margin-top: 0;
    padding: 0;
  }

  .sub-thanks__title {
    font-size: 5vw;
  }

  .sub-thanks__desc {
    font-size: 3.5vw;
    margin-top: 5vw;
  }

  .sub-thanks__list {
    margin-top: 8vw;
    max-width: none;
  }

  .sub-thanks__item {
    font-size: 3vw;
    margin-left: 2vw;
  }

  .sub-thanks__item::before {
    height: 1.5vw;
    left: -3vw;
    top: 2vw;
    width: 1.5vw;
  }

  .sub-thanks__tel-area {
    margin-top: 10vw;
  }

  .sub-thanks__tel-title {
    font-size: 6vw;
    margin-left: auto;
    margin-right: auto;
    width: auto;
  }

  .sub-thanks__tel-title::before {
    height: 3vw;
    top: 8vw;
    width: 60vw;
  }

  .sub-thanks__tel {
    font-size: 7vw;
    margin-top: 10vw;
    padding-left: 7vw;
    pointer-events: all;
  }

  .sub-thanks__tel::before {
    height: 5vw;
    left: 0;
    top: 1vw;
    width: 5vw;
  }

  .sub-thanks__time {
    margin-left: 0;
    margin-top: 5vw;
  }

  .sub-thanks__time span:nth-of-type(1) {
    font-size: 5vw;
    padding: 1vw 3vw;
  }

  .sub-thanks__time span:nth-of-type(2) {
    font-size: 5vw;
    margin-left: 3vw;
  }

  .sub-thanks__link {
    margin-top: 12vw;
  }

  .sub-thanks__link a {
    font-size: 4.5vw;
  }
}

/*# sourceMappingURL=style.css.map */
/* --------------20230719--------------------- */
/* --------------------------------
l-page
----------------------------------- */
.l-page-cover {
  /*background-image: url(../img/common/cover.jpg);*/

  /*background-repeat: no-repeat;*/
  /*background-position: bottom 30% center;*/
  /*background-size: cover;*/
  background-color: #fff9ee;

  position: relative;
}

/*
.l-page-cover::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
*/

.l-page-cover__inner {
  padding: 50px 0 0px 0;
  position: relative;
  z-index: 1;
}

.page-id-14 .l-page-cover__ttl,
.page-id-2360 .l-page-cover__ttl {
  border-bottom: 0px solid #242424;
}

/* --------------------------------
header
----------------------------------- */
.header-sp__top {
  height: 14vw;
  /*	    border-top: 2px solid #282828;*/
}

.header-sp .nav-drawer__list {
  color: #282828;
  box-shadow: none;
}

.header-sp .nav-drawer__btn {
  background: var(--color-main);
  padding: 14px 80px;
}

.header-sp .nav-drawer__tel {
  color: #282828;
}

.header-sp .nav-drawer__time {
  color: #282828;
}

.header-sp .nav-drawer__time span {
  border-color: #282828;
  font-size: 3.5vw;
}

.header-sp .hamburger {
  background: var(--color-main);
}

/* --------------------------------
c-heading
----------------------------------- */
.c-heading01 {
  color: #282828;
  font-size: 7vw;
  font-weight: 700;
  line-height: 1.45;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.c-heading01 span {
  display: block;
  color: #282828;
  font-size: 4.5vw;
  margin-top: 1vw;
  font-weight: 500;
}

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

.c-heading01_border {
  padding-bottom: 10px;
  border-bottom: 2px solid #1f89d6;
}

.c-heading02 {
  color: #282828;
  border-bottom: 1px solid #242424;
  background: transparent;
  padding: 0 0 1.5rem 0.5rem;
  font-size: 2.5rem;
  font-weight: 500;
}

/* --------------------------------
c-news
----------------------------------- */
.c-news__link {
  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: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 1rem 0;
}

.c-news__data {
  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;
}

.c-news__tag {
  display: block;
  width: 35vw;
  font-weight: 500;
  height: 2.6rem;
  background: #f2efec;
  color: #282828;
  border-radius: 5px;
  text-align: center;
  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;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-news__time {
  padding-right: 2rem;
}

.c-news__ttl {
  margin-top: 2vw;
  line-height: 1.5;
}

.c-news__link:hover .c-news__ttl span {
  background-size: 100% 1px;
}

/* --------------------------------
btn
----------------------------------- */
.btn {
  background-color: #fff;
  color: #164a81;
}

.btn:hover {
  color: #fff;
}

.btn:hover::after {
  background-color: #164a81;
}

.btn.-color:hover {
  color: #001842;
}

/* --------------------------------
c-card
----------------------------------- */
.c-card {
  width: 100%;
  background-color: #fff;
  /*
    -webkit-box-shadow: 0 0px 20px rgb(93 81 81 / 10%);
    box-shadow: 0 0px 20px rgb(93 81 81 / 10%);
*/
  border-radius: 6px;
  border-radius: 0px;
}

.c-card__img-wrap {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  border-radius: 0;
  position: relative;
}

.c-card__img-wrap img {
  max-height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.c-card__body {
  padding: 1rem;
}

.c-card__body-top {
  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;
}

.c-card__time {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 4vw;
}

.c-card__body-bottom {
  font-size: 4vw;
  line-height: 1.5;
  margin-top: 2vw;
  /*    padding-top: 1rem;*/
}

/* --------------------------------
c-tag
----------------------------------- */
.c-tag {
  border: 1px solid #8c8c8c;
  color: #282828;
  font-size: 4.5vw;
  width: 35vw;
  height: 2.6rem;
  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;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-tag span {
  font-weight: 500;
}

.c-card__cat.c-tag {
  /*    position: absolute;*/
  width: auto;
  padding: 4px 10px;
}

/* --------------------------------
c-media
----------------------------------- */
.c-media__body {
  padding-top: 2rem;
}

.c-media__ttl {
  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;
  color: #164a81;
  line-height: 1.5;
  border-bottom: 2px solid #64b3f4;
  padding-bottom: 5px;
}

.c-media__ttl .ja {
  font-size: 5vw;
  font-weight: 500;
}

.c-media__txt {
  line-height: 1.7;
  padding-top: 2.7rem;
}

/* --------------------------------
c-accordion
----------------------------------- */
.c-accordion {
  border-bottom: 1px solid #9da3a7;
}

.c-accordion__title {
  width: 100%;
  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;
  cursor: pointer;
  padding: 4vw 6vw 4vw 0;
  position: relative;
  font-size: 3.5vw;
  line-height: 1.75;
}

.c-accordion__title span {
  width: 8vw;
  height: 8vw;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(100, 179, 244)),
    to(rgb(33, 89, 186))
  );
  background: linear-gradient(
    90deg,
    rgb(100, 179, 244) 0%,
    rgb(33, 89, 186) 100%
  );
  color: #fff;
  font-weight: 500;
  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;
  margin-right: 3vw;
}

.c-accordion__title::after {
  content: "";
  width: 2vw;
  height: 2vw;
  border-top: 1px solid #282828;
  border-right: 1px solid #282828;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 45%;
  right: 2vw;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-accordion__title.open::after {
  top: 41%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.c-accordion__content {
  display: none;
  background-color: #edf4fa;
  padding: 3vw;
}

.c-accordion__content p {
  font-size: 3vw;
  line-height: 1.75;
}

/* --------------------------------
c-flexbox
----------------------------------- */
.c-flexbox01__body {
  padding-top: 3rem;
  padding-left: 5rem;
}

.c-flexbox02__body {
  padding-top: 2rem;
}

.c-flexbox01__head {
  margin-right: -70px;
}

/* --------------------------------
c-table
----------------------------------- */
.c-table {
  width: 100%;
  text-align: left;
}

.c-table tr {
  display: block;
  /*    border-top: 1px solid #cecece;*/
  line-height: 1.5;
  padding: 3vw 1.8rem;
}

.c-table th {
  width: 22vw;
  vertical-align: top;
  color: #282828;
  font-weight: 500;
}

.sub-shop .c-table span {
  display: block;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
main.home {
  /*  background: url(../img/common/bg002.jpg);*/
  background-size: cover;
  background-attachment: fixed;
}

.p-home-sec01 {
  padding: 4rem 4rem 4rem 4rem;
}

.p-home-sec01__box {
  background-color: #fff;
  padding: 6rem 6rem 6rem 6rem;
  border-radius: 6px;
}

/*
.p-home-sec01__cont {
    padding-top: 8vw;
}
.p-home-sec01__cont article {
    border-bottom: 1px solid #e5e5e5;
}
*/
.p-home-sec01__btn-wrap {
  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: 2rem;*/
}

.p-home-sec02 {
  background: #1f89d6;
  padding-top: 11rem;
}

.p-home-sec02__ttl {
  position: relative;
  z-index: 1;
  color: #006fce;
}

.p-home-sec02__ttl span {
  color: #fff;
}

.p-home-sec02 .home-shop__text {
  background: #1f89d6;
  /* 	    border-radius: 0 15px 15px 0; */
  width: 100% !important;
}

.p-home-sec03__inner {
  padding-top: 10rem;
}

.p-home-sec03__txt {
  line-height: 1.5;
  padding-top: 3rem;
  text-align: center;
}

.p-home-sec03__item-wrap {
  padding-top: 5rem;
}

.p-home-sec03 .item {
  color: #fff;
}

.p-home-sec03 .item__link {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.p-home-sec03 .item__link01 {
  background-image: url(../img/home/sec03-01.jpg);
  background-position: top;
}

.p-home-sec03 .item__link02 {
  background-image: url(../img/home/sec03-02.jpg);
  background-position: top;
}

.p-home-sec03 .item__link03 {
  background-image: url(../img/home/sec03-03.jpg);
}

.p-home-sec03 .item__link::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
}

.p-home-sec03 .item__inner {
  position: relative;
  z-index: 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;
  padding: 8rem 2rem;
}

.p-home-sec03 .item__ttl {
  font-size: 6vw;
  font-weight: 500;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

.p-home-sec03 .item__txt {
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  line-height: 1.5;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 2rem;
}

.p-home-sec03 .item__readmore {
  position: relative;
  margin-top: 3rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

.p-home-sec03 .item__readmore::after {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.official-line-inner {
  max-width: 1100px;
  margin: 4rem auto 1rem auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.official-line-inner li {
  font-size: 1.7rem;
  font-weight: 500;
}

.p-home-sec04__inner {
  padding-top: 15rem;
  padding-bottom: 10rem;
}

.p-home-sec04__item-wrap {
  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;
  padding-top: 5rem;
  margin-top: -2rem;
}

.p-home-sec04__item {
  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;
  margin-top: 2rem;
}

.p-home-sec04__btn-wrap {
  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: 5rem;
}

.p-home-sec05__inner {
  padding-top: 14rem;
  padding-bottom: 6rem;
}

.p-home-sec05__item-wrap {
  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;
  padding-top: 3rem;
  margin-top: -2rem;
}

.p-home-sec05__item {
  padding-top: 2rem;
}
.home-works__title span {
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#001842),
      to(#001842)
    )
    0 100%/0 1px no-repeat;
  background: linear-gradient(#001842, #001842) 0 100%/0 1px no-repeat;
  color: #282828;
  font-size: 2rem;
}

.p-feature-sec01 .c-heading01 {
  color: #1f89d6;
}

.p-feature-sec01 .c-heading01 span {
  color: #1f89d6;
}

.p-feature-sec01 .c-heading01_border {
  border-bottom: 2px solid #1f89d6;
}

.sub-service__item:nth-of-type(1)::before {
  background-image: url(../img/sub/feature/01.svg);
}

.sub-service__item:nth-of-type(2)::before {
  background-image: url(../img/sub/feature/02.svg);
}

.sub-service__item:nth-of-type(3)::before {
  background-image: url(../img/sub/feature/03.svg);
}

.p-service-sec01 {
  text-align: center;
}

.p-service-sec01__txt {
  line-height: 1.5;
}

.p-service-sec02 {
  /*    background-image: linear-gradient(-135deg, #f9fff4 0%, #d3ebff 100%);*/
  padding: 5rem 0;
  margin-top: 5rem;
}

.p-service-sec02__ancLink {
  margin-top: -1rem;
}

.p-service-sec02__ancLink li {
  margin-top: 1rem;
}

.p-service-sec02__ancLink li a {
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 2rem 3rem 2rem 2rem;
  position: relative;
  line-height: 1.5;
  color: #164a81;
  font-weight: 500;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.p-service-sec02__ancLink li a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8.7px 5px 0 5px;
  border-color: #164a81 transparent transparent transparent;
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-service-sec03__inner {
  padding-top: 0rem;
}

.p-service-sec03__cont {
  margin-top: -5rem;
  padding-top: 3rem;
}

.p-service-sec03 .cont__item {
  margin-top: 5rem;
}

.sec05__inner {
  padding-top: 8rem;
}

.project_area {
  padding-top: 5rem;
  margin-bottom: 7rem;
}

.project_area .txt {
  line-height: 1.5;
  text-align: center;
}

.project_area .project_inner .item .item_ttl {
  color: #282828;
  border: none;
  text-align: center;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
}

.project_area .project_inner .item .img img {
  display: block;
  margin: 0 auto 3rem auto;
}

.p-service-sec05 .project_area .project_inner .item .img img {
  display: block;
  margin: 0 auto 3rem auto;
}

.p-service-sec05 .project_area {
  padding-top: 5rem;
}

.p-service-sec05 .project_area .txt {
  line-height: 1.5;
  text-align: center;
}

.p-service-sec05 .project_area .project_inner .item .item_ttl {
  color: #006fce;
  border: none;
  text-align: center;
  padding: 0;
}

.p-service-sec06__ttl {
  color: #1ba2e6;
  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;
  font-size: 3rem;
  font-weight: 600;
  padding: 1.5rem;
}

.p-service-sec06__item-wrap {
  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;
  padding-top: 3rem;
  margin-top: -5rem;
}

.p-service-sec06__item {
  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;
  margin-top: 5rem;
}

.p-service-sec06__item a img {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.p-service-sec06 .item__txt {
  color: #282828;
  padding-top: 2rem;
  line-height: 1.7;
}

.p-service-sec07__inner {
  padding-top: 10rem;
  padding-bottom: 4rem;
}

.p-service-sec07__ttl {
  font-size: 3rem;
  font-weight: 600;
  color: #1ba2e6;
  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: 1.5rem;
  margin-bottom: 2rem;
}

.p-company-sec01 .item__ttl {
  color: #1f89d6;
  font-size: 5vw;
  font-weight: 500;
  border-bottom: 2px solid #1f89d6;
  padding: 0 0 10px 0;
}

.p-company-sec01 .item__ttl span {
  display: block;
  font-size: 3vw;
  font-weight: 400;
  padding-top: 1rem;
  color: #ffbf13;
  font-weight: 500;
}

.p-company-sec01 .item__txt {
  line-height: 1.7;
  padding-top: 2rem;
}

.p-company-sec02__cont {
  padding-top: 5rem;
  padding-bottom: 7rem;
}

.p-company-sec02 .cont .item01__table {
  padding-top: 3rem;
}

.p-company-sec02 .cont__item02 {
  padding-top: 1.875rem;
}

.p-company-sec02 .cont .item02__map {
  padding-top: 25rem;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0 5rem;
}

.p-company-sec02 .cont .item02__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-company-sec03 {
  background: linear-gradient(180deg, white 0%, #edf3f9 100%);
}

.p-company-sec03__inner {
  padding-top: 4rem;
  padding-bottom: 8rem;
  margin-top: 0rem;
}

.p-company-sec03 .cont__ttl {
  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;
  color: #1f89d6;
}

.p-company-sec03 .cont__ttl .ja {
  font-size: 5vw;
  font-weight: 500;
  position: relative;
}

.p-company-sec03 .cont__ttl .en {
  font-size: 3vw;
  padding-top: 1rem;
  color: #ffbf13;
  font-weight: 500;
}

.p-company-sec03 .cont__top {
  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-company-sec03 .cont .top__img-wrap {
  padding-top: 2rem;
}

.p-company-sec03 .cont .top__img-wrap img {
  width: 65rem;
}

.p-company-sec03 .cont__btm {
  margin-top: -5rem;
  padding-top: 5rem;
}

.p-company-sec03 .cont .btm__item {
  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;
  margin-top: 8rem;
}

.p-company-sec03 .cont .btm__txt {
  line-height: 1.7;
  padding-top: 3rem;
}

.p-company-sec03 .cont .btm__img-wrap {
  padding-top: 4rem;
}

.p-company-sec03 .cont .btm__img-wrap img {
  width: 22.2rem;
}

.p-company-sec04 .cont__item:nth-child(2),
.p-company-sec04 .cont__item:nth-child(3),
.p-company-sec04 .cont__item:nth-child(4),
.p-company-sec04 .cont__item:nth-child(5) {
  display: none;
}

.p-company-sec04__inner {
  padding-top: 8rem;
}

.p-company-sec04__cont {
  padding-top: 3rem;
}

.p-company-sec04 .cont__item + .cont__item {
  padding-top: 5rem;
}

.p-company-sec04 .item .body .top__txt {
  color: #1f89d6;
  font-size: 5vw;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.p-company-sec04 .item .body .top__table tr {
  display: block;
  padding: 0.5rem 0;
  line-height: 1.7;
}

.p-company-sec04 .item .body .top__table th {
  font-weight: 400;
  text-align: left;
  width: 20vw;
}

.p-company-sec04 .item .body__btm {
  padding-top: 3rem;
}

.p-company-sec04 .item .body .btm__txt {
  color: #1f89d6;
  font-size: 5vw;
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.p-company-sec04 .item .body .btm__table tr {
  display: block;
  padding: 1rem 0;
  line-height: 1.5;
  border-bottom: 1px solid #cecece;
}

.p-company-sec04 .item .body .btm__table th {
  font-weight: 400;
  text-align: left;
  width: 20vw;
}

.p-company-sec04 .item .body .btm__btn-wrap {
  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: 3rem;
}

.p-topics-wrap .c-news__item {
  border-top: 1px solid #cecece;
}

.p-topics-wrap .c-news__item:last-child {
  border-bottom: 1px solid #cecece;
}

.p-topics-wrap .c-news__link {
  padding: 5vw 0;
}

.p-topics-wrap .sub-single__title {
  color: #282828;
}

.p-topics-wrap .sub-single__category {
  border: 1px solid #282828;
  color: #282828;
}

.p-topics-wrap .sub-single__main h1 {
  font-size: 1.125rem;
  background-color: #164a81;
  color: #fff;
  padding: 0.46875rem 1.5625rem;
  margin-top: 1.875rem;
}

.p-topics-wrap .sub-single__main h2 {
  font-size: 2.4rem;
  background-color: #85c667;
  color: #fff;
  padding: 0.46875rem 0.625rem 0.46875rem;
  margin-top: 1.875rem;
  border: none;
}

.p-topics-wrap .sub-single__main h3 {
  font-size: 2rem;
  border-left: 10px solid #85c667;
  padding: 0.46875rem 0.625rem;
  margin-top: 1.875rem;
  border-bottom: none;
}
.p-topics-wrap .sub-single__main h3::before {
  content: none;
}

.p-topics-wrap .sub-single__main h4 {
  font-size: 1.8rem;
  border-bottom: 2px solid #85c667;
  padding: 0.46875rem 0.75rem 0.46875rem;
  margin-top: 1.875rem;
  border-left: none;
  color: #85c667;
}

.p-topics-wrap .sub-single__main h5 {
  font-size: 0.9375rem;
  border-bottom: 2px solid #164a81;
  padding: 0 0 0.46875rem;
  margin-top: 1.875rem;
}

.p-topics-wrap .sub-single__main h6 {
  font-size: 0.9375rem;
  margin-top: 1.875rem;
}

.p-topics-wrap .sub-single__main p {
  padding-top: 1.25rem;
}

.p-topics-wrap .sub-single__main p + p {
  padding-top: 1.25rem;
}

.p-topics-wrap .navigation .nav-previous {
  left: 13vw;
}

.p-topics-wrap .navigation .nav-next {
  right: 13vw;
}

.p-topics-sec01__cont {
  padding-top: 8vw;
}

.p-works-wrap .sub-single__title {
  color: #282828;
}

.p-works-wrap .sub-single__category {
  border: 1px solid #282828;
  color: #282828;
}

.p-works-wrap .sub-single__main {
  border-top: 1px solid #282828;
}

.p-works-wrap .sub-single__main h1,
.p-works-wrap .sub-single__main h2,
.p-works-wrap .sub-single__main h3,
.p-works-wrap .sub-single__main h4,
.p-works-wrap .sub-single__main h5,
.p-works-wrap .sub-single__main h6 {
  color: #164a81;
  font-weight: 500;
}

.p-works-wrap .sub-single__main h1 {
  font-size: 1.125rem;
  background-color: #164a81;
  color: #fff;
  padding: 0.46875rem 1.5625rem;
  margin-top: 1.875rem;
}

.p-works-wrap .sub-single__main h2 {
  font-size: 1rem;
  background-color: #64b3f4;
  color: #fff;
  border-left: 10px solid #164a81;
  padding: 0.46875rem 0.625rem 0.46875rem;
  margin-top: 1.875rem;
}

.p-works-wrap .sub-single__main h3 {
  font-size: 1rem;
  border-left: 10px solid #164a81;
  padding: 0.46875rem 0.625rem;
  margin-top: 1.875rem;
}

.p-works-wrap .sub-single__main h4 {
  font-size: 0.9375rem;
  border-top: 2px solid #164a81;
  border-bottom: 2px solid #164a81;
  padding: 0.46875rem 0.75rem 0.46875rem;
  margin-top: 1.875rem;
}

.p-works-wrap .sub-single__main h5 {
  font-size: 0.9375rem;
  border-bottom: 2px solid #164a81;
  padding: 0 0 0.46875rem;
  margin-top: 1.875rem;
}

.p-works-wrap .sub-single__main h6 {
  font-size: 0.9375rem;
  margin-top: 1.875rem;
}

.p-works-wrap .sub-single__main p {
  padding-top: 2rem;
}

.p-works-wrap .sub-single__main p + p {
  padding-top: 1.25rem;
}

.p-works-wrap .navigation .nav-previous {
  left: 13vw;
}

.p-works-wrap .navigation .nav-next {
  right: 13vw;
}

.p-topics-sec01__cont {
  padding-top: 8vw;
}

.p-contact-sec01 .sub-contact__tel {
  color: #282828;
}

.p-contact-sec01 .sub-contact__time span {
  color: #282828;
}

.p-contact-sec01 .sub-contact__time span:nth-of-type(1) {
  border: 1px solid #282828;
  font-size: 1.2rem;
}

.p-contact-sec01 .sub-contact__submit input {
  background: #85c667;
  border-radius: 50px;
}

.p-privacy-policy-sec01__inner {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.p-privacy-policy-sec01__cont {
  background-color: #fff;
  padding: 10vw 5vw;
}

.p-privacy-policy-sec01 .cont__item {
  line-height: 1.5;
}

.p-privacy-policy-sec01 .cont__item + .cont__item {
  padding-top: 10rem;
}

.p-privacy-policy-sec01 .item__ttl {
  color: #1f89d6;
  text-align: center;
  font-size: 5vw;
  font-weight: 500;
  position: relative;
}

.p-privacy-policy-sec01 .item__ttl::after {
  content: "";
  width: 10rem;
  height: 2px;
  background-color: #ffc014;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -10px;
}

.p-privacy-policy-sec01 .item__txt {
  font-size: 3vw;
  padding-top: 10vw;
}

.p-privacy-policy-sec01 .item__list {
  margin-top: -1.875rem;
  padding-top: 2.5rem;
}

.p-privacy-policy-sec01 .item .list__item {
  margin-top: 12vw;
}

.p-privacy-policy-sec01 .item .list__ttl {
  color: #1f89d6;
  font-weight: 500;
  font-size: 4.5vw;
}

.p-privacy-policy-sec01 .item .list__desc {
  font-size: 3vw;
  padding-top: 4vw;
}

.p-privacy-policy-sec01 .item .list__desc a {
  color: #64b3f4;
  text-decoration: underline;
}

.p-privacy-policy-sec01 .item .list__desc_txtRight {
  text-align: right;
}

.p-privacy-policy-sec01 .item .list .child__ttl {
  font-size: 3vw;
}

.p-privacy-policy-sec01 .item .list .child__desc {
  font-size: 3vw;
  padding-top: 4vw;
}

.p-privacy-policy-sec01 .item .list .child__item {
  margin-top: 5vw;
}

.p-privacy-policy-sec01 .item .list .child__item ul {
  padding-top: 4vw;
}

.p-privacy-policy-sec01 .item .list .child__item ul li {
  font-size: 3vw;
  position: relative;
  padding-left: 2rem;
}

.p-privacy-policy-sec01 .item .list .child__item ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
@media (min-width: 768px) {
  .l-page-cover__ttl {
    font-size: 5rem;
    padding: 8.75rem 0 9.375rem 7.5rem;
    letter-spacing: 0.05em;
    margin-left: auto;
    margin-right: auto;
    max-width: 116.8rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .header__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10px;
    top: -3px;
    position: relative;
  }

  .header__nav {
    margin-right: 3rem;
  }

  .header__top {
    padding-top: 0;
    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;
  }

  .header__time {
    /*    padding-top: 1rem;*/
    margin-left: 0;
  }

  .header__btn_contact img {
    width: 3rem;
  }

  .header__btn_contact {
    display: flex;
    gap: 10px;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
	  font-weight: bold;
  }

  .c-heading01 {
    font-size: 5rem;
  }

  .c-heading01 span {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }

  .c-news__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1.5rem 0;
  }

  .c-news__tag {
    width: 10rem;
    font-size: 1.2rem;
    margin-right: 2rem;
  }

  .c-news__time {
    font-size: 1.2rem;
  }

  .c-news__ttl {
    margin-top: 0;
    font-weight: 500;
    width: 50rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
  }

  .c-news__ttl span {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#282828),
        to(#282828)
      )
      0 100%/0 1px no-repeat;
    background: linear-gradient(#282828, #282828) 0 100%/0 1px no-repeat;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .c-card {
    width: 31.5%;
  }

  .c-card__time {
    font-size: 1.2rem;
    margin-right: 2rem;
  }

  .c-card__body-bottom {
    font-size: 1.6rem;
    margin-top: 0;
  }

  .c-card_link .c-card__ttl {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#282828),
        to(#282828)
      )
      0 100%/0 1px no-repeat;
    background: linear-gradient(#282828, #282828) 0 100%/0 1px no-repeat;
  }

  .c-card_link:hover .c-card__ttl {
    background-size: 100% 1px;
  }

  .c-tag {
    font-size: 1.2rem;
    width: 100%;
  }

  .c-media {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .c-media__img-wrap {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    margin-right: 3.3333%;
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  }

  .c-media__body {
    width: 50rem;
    padding-top: 0;
  }

  .c-media__ttl .ja {
    font-size: 2.4rem;
  }

  .c-media_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .c-media_reverse .c-media__img-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-right: 0;
  }

  .c-media_reverse .c-media__body {
    margin-right: 3.3333%;
  }

  .c-accordion__title {
    font-size: 1.6rem;
    padding: 3rem 2rem;
  }

  .c-accordion__title span {
    width: 3.3rem;
    height: 3.3rem;
    margin-right: 1rem;
  }

  .c-accordion__title::after {
    width: 0.9rem;
    height: 0.9rem;
    right: 2.3rem;
  }

  .c-accordion__content {
    padding: 2.9rem 2rem;
  }

  .c-accordion__content p {
    font-size: 1.6rem;
  }

  .c-flexbox01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .c-flexbox01__body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 0;
  }

  .c-flexbox01__body:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0;
    background: linear-gradient(180deg, #5e5e5e8a 1%, #ffffff00 30%);
    background: #f8f8f8;
    z-index: -2;
  }

  .c-flexbox02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .c-flexbox02__head {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
  }

  .c-flexbox02__body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 3.3333%;
    padding-top: 0;
  }

  .c-table tr {
    padding: 1.8rem;
  }

  .c-table th {
    width: 13rem;
  }

  .home-mv__catch img {
    max-width: 690px;
  }

  .p-home-sec02 {
    background: #fff;
  }

  .p-home-sec03__inner {
    padding-top: 6rem;
  }

  .p-home-sec03__item-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 5rem;
  }

  .p-home-sec03__item {
    width: 50%;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-home-sec03 .item__link {
    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-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .p-home-sec03 .item__link:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-home-sec03 .item__inner {
    padding: 20rem 15rem;
  }

  .p-home-sec03 .item__ttl {
    font-size: 2.4rem;
  }

  .p-home-sec03 .item__readmore {
    margin-top: 5rem;
  }

  .p-home-sec04__item-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-home-sec04__item {
    width: 24%;
  }

  .p-home-sec04__btn-wrap {
    padding-top: 8rem;
  }

  .p-home-sec05__item-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 5rem;
  }

  .p-home-sec05__item {
    width: 33.333%;
  }

  .p-service-sec02__ancLink {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-service-sec02__ancLink li {
    width: 23%;
  }

  .p-service-sec03__cont {
    margin-top: -8rem;
  }

  .p-service-sec03 .cont__item {
    margin-top: 8rem;
  }

  /*
    .p-service-sec05__inner {
        padding-top: 3.5rem;
    }
*/
  .p-service-sec06__item-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 5rem;
  }

  .p-service-sec06__item {
    width: 23%;
  }

  .p-company-sec01 .item__ttl {
    font-size: 3rem;
    border-bottom: none;
  }

  .p-company-sec01 .item__ttl span {
    font-size: 1.6rem;
    margin-top: 0.8rem;
  }

  .p-company-sec02 .cont .item01__table {
    padding: 0 5rem;
  }

  .p-company-sec02 .cont__item02 {
    padding-top: 3.125rem;
  }

  .p-company-sec02 .cont .item02__map {
    padding-top: 40rem;
  }

  .p-company-sec03 .cont__ttl .ja {
    font-size: 3rem;
  }

  .p-company-sec03 .cont__ttl .en {
    font-size: 1.6rem;
  }

  .p-company-sec03 .cont__btm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .p-company-sec03 .cont .btm__item {
    width: 50%;
    padding: 0 2rem;
  }

  .p-company-sec04 .cont__item + .cont__item {
    padding-top: 8rem;
  }

  .p-company-sec04 .item .body .top__txt {
    font-size: 2rem;
  }

  .p-company-sec04 .item .body .top__table th {
    width: 12rem;
  }

  .p-company-sec04 .item .body .btm__txt {
    font-size: 2rem;
  }

  .p-company-sec04 .item .body .btm__table th {
    width: 12rem;
  }

  .p-company-sec04 .item .body .btm__btn-wrap {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .p-topics-wrap .c-news__link {
    padding: 2.5rem 1.8rem 3.2rem 0;
  }

  .p-topics-wrap .navigation .nav-previous {
    left: 37rem;
  }

  .p-topics-wrap .navigation .nav-next {
    right: 37rem;
  }

  .p-topics-sec01__cont {
    padding-top: 3.2rem;
  }

  .p-works-wrap .sub-single__main h1 {
    font-size: 1.5rem;
    margin-top: 3.125rem;
  }

  .p-works-wrap .sub-single__main h2 {
    font-size: 1.375rem;
    padding: 0.46875rem 0.9375rem 0.46875rem;
    margin-top: 2.5rem;
  }

  .p-works-wrap .sub-single__main h3 {
    font-size: 1.375rem;
    padding: 0.46875rem 0.9375rem;
    margin-top: 2.5rem;
  }

  .p-works-wrap .sub-single__main h4 {
    font-size: 1.25rem;
    padding: 0.46875rem 1.0625rem 0.46875rem;
    margin-top: 2.5rem;
  }

  .p-works-wrap .sub-single__main h5 {
    font-size: 1.25rem;
    padding: 0 0 0.6875rem;
    margin-top: 2.1875rem;
  }

  .p-works-wrap .sub-single__main h6 {
    font-size: 1.25rem;
  }

  .p-works-wrap .navigation .nav-previous {
    left: 37rem;
  }

  .p-works-wrap .navigation .nav-next {
    right: 37rem;
  }

  .p-topics-sec01__cont {
    padding-top: 3.2rem;
  }

  .p-privacy-policy-sec01__cont {
    padding: 2rem 0 2rem;
  }

  .p-privacy-policy-sec01 .item__ttl {
    font-size: 3rem;
  }

  .p-privacy-policy-sec01 .item__txt {
    font-size: 1.6rem;
    padding-top: 5rem;
  }

  .p-privacy-policy-sec01 .item__list {
    margin-top: -4.0625rem;
  }

  .p-privacy-policy-sec01 .item .list__item {
    margin-top: 6.5rem;
  }

  .p-privacy-policy-sec01 .item .list__ttl {
    font-size: 2rem;
  }

  .p-privacy-policy-sec01 .item .list__desc {
    font-size: 1.6rem;
    padding-top: 2.2rem;
  }

  .p-privacy-policy-sec01 .item .list .child__ttl {
    font-size: 1.6rem;
  }

  .p-privacy-policy-sec01 .item .list .child__desc {
    font-size: 1.6rem;
    padding-top: 1.9rem;
  }

  .p-privacy-policy-sec01 .item .list .child__item {
    margin-top: 4rem;
  }

  .p-privacy-policy-sec01 .item .list .child__item ul {
    padding-top: 2rem;
  }

  .p-privacy-policy-sec01 .item .list .child__item ul li {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-privacy-policy-sec01__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 0;
    padding-right: 0;
  }

  .p-privacy-policy-sec01 .item__txt {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .p-privacy-policy-sec01 .item .list__ttl {
    font-size: 1.6rem;
  }

  .p-privacy-policy-sec01 .item .list__desc {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .p-privacy-policy-sec01 .item .list .child__ttl {
    font-size: 1.5rem;
  }

  .p-privacy-policy-sec01 .item .list .child__desc {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .p-privacy-policy-sec01 .item .list .child__item ul li {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  /*
    .p-service-sec06 .item__txt {
        font-size: 1.5rem;
    }
*/
  .p-service-sec06 {
    padding-bottom: 0rem;
  }

  .p-service-sec03__inner {
    padding-top: 5rem;
  }

  .sec05__inner {
    padding-top: 0rem;
  }

  .project_inner .item .txt {
    padding: 1rem 10px 2rem;
    text-align: left;
    line-height: calc(24 / 14);
  }

  .p-service-sec05__inner {
    padding-top: 4rem;
  }

  .p-service-sec05__inner > .sub-price__box {
    margin-top: 0;
    padding-top: 1rem;
  }

  /*
    .p-service-sec06 {
        margin-top: 0rem;
        padding: 0;
        padding-bottom: 5rem;
    }
*/
  .p-service-sec07__inner {
    padding-top: 5rem;
  }

  .c-heading02 {
    font-size: 2rem;
  }

  .sec03-text {
    font-size: 1.6rem !important;
  }

  .flowList {
    flex-wrap: wrap;
    gap: 2.5rem;
  }

  .flowItem {
    width: 100% !important;
  }

  .p-company-sec02__inner {
    padding-top: 0rem;
  }

  .p-company-sec02__cont {
    padding-top: 0rem;
  }

  .c-table tr {
    line-height: 1.7;
    padding: 3vw 0;
  }

  .p-company-sec03__inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
    margin-top: 6rem;
  }

  .p-company-sec04__inner {
    padding-top: 6rem;
  }

  .c-news__tag {
    font-size: 4.5vw;
  }

  /*
    .p-home-sec01__box {
        padding: 5vw 5vw !important;
    }
*/
  .p-home-sec02 {
    padding-top: 3rem;
    margin-top: 3rem;
  }

  .p-home-sec03__inner {
    padding-top: 5rem;
  }

  .p-home-sec04__inner {
    padding-top: 6rem;
    padding-bottom: 5rem;
  }

  .p-home-sec05__inner {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .c-news__time {
    font-size: 4.5vw;
  }

  .c-news__ttl {
    font-size: 4.5vw;
  }

  .c-card__time {
    font-size: 4.5vw;
  }

  .c-media__txt {
    font-size: 4.5vw;
  }

  .c-table {
    font-size: 4vw;
  }

  .p-home-sec03__txt {
    font-size: 14px;
  }

  .p-home-sec03 .item__txt {
    font-size: 4.5vw;
  }

  .p-home-sec03 .item__readmore {
    font-size: 4.5vw;
  }

  .p-service-sec01__txt {
    font-size: 4.5vw;
  }

  .p-service-sec02__ancLink li a {
    font-size: 4.5vw;
  }

  .p-company-sec01 .item__txt {
    font-size: 3.5vw;
  }

  .p-company-sec03 .cont .btm__txt {
    font-size: 4.5vw;
  }

  .p-company-sec04 .item .body .top__table tr {
    font-size: 4.5vw;
  }

  .p-company-sec04 .item .body .btm__table tr {
    font-size: 4.5vw;
  }

  .home-center__container.-service {
    margin: 4rem 0 4rem 0;
    padding: 0rem 1rem;
  }

  .official-line-inner {
    flex-direction: column;
    text-align: center;
  }

  .official-line-inner li {
    font-size: 1.6rem;
  }

  .p-contact-sec01 .sub-contact__time span:nth-of-type(1) {
    font-size: 3.5vw;
  }
}

.home-works-area {
  background: linear-gradient(180deg, white 0%, #fffcf1 100%);
  padding: 0 0 8rem 0;
  margin-top: 5rem;
}

.home-works-area .img_area {
  display: flex;
  margin: 8rem 0 0 0;
}

.home-works-area .p-home-sec02__ttl {
  margin-top: 3rem;
}

.home-works-area .home-center__container.-service {
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.table_simple {
  padding: 0 0 0 0;
}

.table_simple tr {
  padding: 0 0 0 0 !important;
  display: flex;
  gap: 10px;
  background: #fcf8f3;
}

.table_simple th {
  padding: 2rem;
  background: #86c768;
  width: 20%;
  border-bottom: 1px solid #fff;
  color: #fff;
}

.table_simple td {
  padding: 1.8rem;
  border-bottom: 1px solid #cecece;
  width: 80%;
}

.sub-shop .home-feature {
  background: linear-gradient(180deg, white 0%, #fffcf1 100%);
}

.recruit_list {
  margin: 3rem 0 4rem 0;
}

.recruit_list li {
  font-size: 1.8rem;
  color: #282828;
  font-weight: 600;
  margin-top: 2rem;
}

.recruit_list li::before {
  content: "i";
  background: #ffc014;
  color: #fff;
  padding: 1px 10px 1px 10px;
  border-radius: 20px;
  font-weight: 600;
  margin: 0 10px 0 0;
  font-size: 1.5rem;
}

.recruit_list.type002 li {
  color: #1f89d6;
}

.recruit_list.type002 li span {
  color: #282828;
  display: block;
  font-size: 1.5rem;
  line-height: 1.7;
  margin: 1.5rem 0 0 0;
}

.recruit_list.type002 li::before {
  display: none;
}

.recruit_staff {
  background-color: rgba(255, 255, 255, 0.8) !important;
  background-blend-mode: lighten;
  background: url(../img/home/recruit_bg001.jpg);
  margin: 7rem 0 0 0;
  padding: 4rem 0 4rem 0;
  background-size: 140%;
  background-position: top center;
  background-repeat: no-repeat;
}

.recruit_staff .staff_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  margin: 3rem 0 0 0;
}

.recruit_staff .staff_list li {
  width: 23.8%;
  background: #fff;
  padding: 1.4rem 1.4rem 3rem 1.4rem;
  line-height: 1.5;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin: 0 0 2% 0;
}

.recruit_staff .staff_list li .name {
  text-align: center;
  margin: 2rem 0 2rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #006fce;
}

.recruit_staff .staff_list li .img img {
  max-width: 150px;
  margin: 0 auto;
}

.sec04 {
  background-color: #fbf9f7;
  padding: 0rem 0 0 0;
  /*	background-image: url(../img/common/bg001.jpg);*/
  background-size: cover;
  background-attachment: fixed;
  background-color: #fff;
  background-blend-mode: darken;
}

.aboutWrap {
  margin-top: 20px;
}

.aboutBox {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.aboutBox:nth-child(odd) {
  flex-direction: row-reverse;
}

.aboutBox:nth-child(odd) .about_body {
  border-radius: 6px 0 0 0;
  padding: 60px 0 60px 60px;
}

.aboutBox:nth-child(odd) .about_ttl {
  padding-right: 20px;
}

.aboutBox:nth-child(odd) .about_text {
  padding-right: 20px;
}

.aboutBox:nth-child(odd) .about_pic {
  margin-right: -5%;
}

.aboutBox:nth-child(odd) .about_pic img {
  border-radius: 0;
}

.aboutBox:nth-child(even) .about_body {
  border-radius: 0px 30px 30px 0px;
  padding: 60px 25% 60px 0px;
}

.aboutBox:nth-child(even) .about_ttl {
  margin-left: auto;
  padding-left: 20px;
}

.aboutBox:nth-child(even) .about_ttl::before {
  left: 20px;
}

.aboutBox:nth-child(even) .about_text {
  margin-left: auto;
  padding-left: 20px;
}

.aboutBox:nth-child(even) .about_pic {
  margin-left: -22%;
}

.aboutBox:nth-child(even) .about_pic img {
  border-radius: 6px 0px 0px 6px;
}

.aboutBox + .aboutBox {
  margin-top: 60px;
}

/*
.aboutBox:nth-child(1) .about_ttl::before {
  background-image: url(../img/home/num1.svg);
}
*/
.aboutBox:nth-child(2) .about_ttl {
  padding-top: 70px;
}

/*
.aboutBox:nth-child(2) .about_ttl::before {
  background-image: url(../img/home/num2.svg);
}
.aboutBox:nth-child(3) .about_ttl::before {
  background-image: url(../img/home/num3.svg);
}
*/
.about_body {
  background-color: #fff;
  width: 60%;
  min-height: 32vw;
  z-index: 2;
  height: 100%;
}

.about_ttlWrap {
  border-bottom: 2px solid #282828;
}

.about_ttl {
  font-size: 24px;
  line-height: 1.45833;
  color: #282828;
  max-width: 575px;
  padding-top: 0;
  padding-bottom: 18px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.about_ttl::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 100px;
  background: no-repeat left center/contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.about_text {
  margin: 0 auto;
  max-width: 575px;
  margin-top: 27px;
  line-height: 1.7;
}

.about_text span {
  display: block;
}

.about_text span .btn {
  margin-top: 3rem;
  background: #282828;
}

.about_pic {
  width: 70%;
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.about_btn {
  margin-top: 60px;
}

.aboutBox.-primary .about_pic.-primary {
  margin-right: 0;
}

.aboutBox.-primary .about_body.-primary {
  padding: 60px 0 60px 60px;
  border-radius: 0;
}

.aboutBox.-primary .about_pic img {
  border-radius: 0;
}

.flowList {
  display: flex;
  margin: 40px -15px 0;
}

.flowItem {
  margin: 0 15px;
  position: relative;
  width: calc((100% - 0px) / 2);
  z-index: 1;
}

.flowItam_body {
  width: calc(100% - 10px);
  border-radius: 6px;
  padding: 30px 10px;
  position: relative;
}

.flowItam_body.blue {
  border: 2px solid #eeb8a2;
  background-color: #eeb8a2;
}

.flowItam_body.pink {
  border: 2px solid #fedfe6;
  background-color: #fedfe6;
}

.flowItam_body.orange {
  border: 2px solid #fedb99;
  background-color: #fedb99;
}

.flowItam_body.white {
  border: 2px solid #fff;
  background-color: #fff;
}

.flowItem_pic {
  min-height: 105px;
  display: flex;
  align-items: center;
}

.flow-ico {
  margin: 0 auto;
}

.flow-ttl {
  min-height: 70px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  margin-top: 20px;
  line-height: 2.4rem;
  flex-direction: column;
}

.flow-ttl .marker.yellow {
  font-size: 2rem;
  /*    background: linear-gradient(transparent 80%, #FCFFA7 80%);*/
  font-weight: 600;
  margin-bottom: 1rem;
}

.flow-ttl .marker.pink {
  font-size: 24px;
  background: linear-gradient(transparent 80%, #ffebec 80%);
}

.flow_btn {
  margin-top: 70px;
}

.p-company-sec02 .philosophy p {
  text-align: center;
  margin: 2rem 0 3rem 0;
}

.p-company-sec02 .philosophy .item01__table {
  margin: 0 0 4rem 0;
  padding: 0 !important;
}

.p-company-sec02 .philosophy .item01__table table tr {
  border: none !important;
  padding: 0rem 0 2rem 0;
}

.p-company-sec02 .philosophy .item01__table table tr td {
  display: block;
}

.p-company-sec02 .philosophy .table_simple td {
  padding: 0 0 2rem 0;
  line-height: 1.7;
  font-size: 1.4rem;
}

.p-company-sec02 .philosophy {
  margin: 0 0 7rem 0;
}

.philosophy .p-company-sec01 {
  margin: 5rem 0 0 0;
}

@media only screen and (max-width: 767px) {
  .home-works-area .inner {
    padding-top: 2rem;
  }

  .footer_flex {
    flex-direction: column;
  }

  .footer_flex .left,
  .footer_flex .right {
    width: 100%;
    margin: 0 auto 1rem auto !important;
  }

  .footer_flex .right {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-top: 2rem;
    padding-bottom: 4rem;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .footer_top {
    padding-top: 0;
    padding-bottom: 0;
  }

  .footer_flex .tel {
    font-size: 3rem !important;
    /*		background: url(../img/common/tel-color.svg) no-repeat left 15% top 1rem/2rem auto !important;*/
  }

  .table_simple th {
    padding: 1.2rem;
    font-size: 1.4rem;
    width: 10rem;
  }

  .table_simple td {
    padding: 1.2rem;
    font-size: 1.4rem;
  }

  .p-home-sec01 {
    padding: 4rem 0rem 4rem 0rem;
  }

  .c-heading01 {
    font-size: 7vw;
  }

  .home-works-area {
    padding: 0 0 1rem 0;
  }

  .home-feature {
    margin-top: 6rem;
    padding: 0 0 1rem 0;
  }

  .home-shop .p-home-sec02__ttl {
    font-size: 2rem;
  }

  .footer_text {
    font-size: 14px;
    padding: 0 5vw;
  }

  .l-page-cover__ttl::before {
    display: none;
  }

  .project_inner {
    flex-direction: column;
    gap: 0;
  }

  .project_inner .item {
    width: 100%;
    padding: 2rem;
    background-color: #fff;
    border-radius: 1vw;
  }

  .p-service-sec05 .project_inner .item {
    width: 100%;
  }

  .p-company-sec03 .cont .btm__item:first-child {
    margin-top: 0rem;
  }

  .p-company-sec03 .cont__btm {
    padding-top: 0rem;
  }

  .recruit_staff .staff_list {
    flex-direction: column;
  }

  .recruit_staff .staff_list li {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}

.sec05 {
  margin-top: 7rem;
}

.sec05 .sec_inner__big {
  background-color: #fff;
  padding-top: 60px;
  /*    padding-bottom: 8rem;*/
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(90deg, #eaeaea 30%, #ffffff 30%);
}

.scheduleWrap {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
}

.scheduleWrap .left {
  width: 51%;
  margin-right: 3%;
}

.scheduleWrap .right {
  width: 46%;
}

.schedule_pic01 {
  width: 90%;
  border-radius: 6px;
  overflow: hidden;
}

.schedule_pic02 {
  width: 52.6%;
  margin-left: auto;
  margin-top: -75px;
  border-radius: 6px;
  overflow: hidden;
}

.programList {
  margin-top: 5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 8rem;
}

.programList::after {
  content: "";
  display: none;
  width: 1200px;
  height: 1000px;
  background: #fff;
  position: absolute;
  top: 0;
  left: -35px;
  z-index: -1;
  border-radius: 50%;
}

.programItem {
  display: flex;
  align-items: center;
}

.programItem + .programItem {
  margin-top: 30px;
}

.programItem:nth-child(odd) {
  flex-direction: row-reverse;
}

.programItem:nth-child(odd) .program_pic {
  margin-right: 3%;
}

.programItem:nth-child(even) .program_pic {
  margin-left: 3%;
}

.program_body {
  width: 46%;
  padding-bottom: 13px;
  line-height: 1.7;
}

.program_ttl {
  font-size: 18px;
}

.program_ttl span {
  /*  background: linear-gradient(transparent 80%, #FCFFA7 80%);*/
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.program_text {
  margin-top: 15px;
  /*  font-weight: 500;*/
}

.program_pic {
  border-radius: 0px;
  overflow: hidden;
  width: 51%;
}

.schedule_btn {
  margin-top: 45px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1168px) {
  /*
  .programItem {
    align-items: flex-start;
  }
*/
}

@media screen and (max-width: 767px) {
  .p-home-sec02__inner {
    padding-top: 5rem;
  }

  .about_body {
    width: calc(100% - 15px);
    min-height: 0px;
    margin-top: -60px;
  }

  .aboutBox {
    flex-direction: column-reverse !important;
  }

  .aboutBox:nth-child(odd) .about_body {
    padding: 70px 0 40px 20px;
    border-radius: 20px 0 0 20px;
  }

  .aboutBox:nth-child(even) .about_body {
    padding: 70px 20px 40px 0px;
    border-radius: 0px 20px 20px 0px;
  }

  .about_ttl {
    font-size: 19px;
    max-width: 100%;
    padding-top: 28px;
  }

  .about_ttl::before {
    height: 70px;
  }

  .aboutBox:nth-child(2) .about_ttl {
    padding-top: 40px;
  }

  .about_text {
    max-width: 100%;
    margin-top: 20px;
    font-size: 14px;
  }

  .aboutBox:nth-child(odd) .about_pic img {
    border-radius: 0;
  }

  .about_btn {
    margin-top: 40px;
  }

  .about_pic {
    width: 90%;
    max-width: 690px;
    margin: 0;
  }

  .aboutBox:nth-child(odd) .about_body {
    margin-left: auto;
  }

  .aboutBox:nth-child(even) .about_pic {
    margin-left: auto;
  }

  .sec05 {
    margin-top: 40px;
  }

  .sec05 .sec_inner__big {
    /*    border-radius: 20px;*/
    padding: 30px 0 50px;
  }

  .scheduleWrap {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .scheduleWrap .left {
    width: 100%;
    margin-right: 0;
  }

  .scheduleWrap .right {
    width: 100%;
    margin-top: 3rem;
  }

  .schedule_pic01,
  .schedule_pic02,
  .program_pic {
    border-radius: 7px;
  }

  .programList {
    margin-top: 3rem;
    margin-bottom: 0rem;
  }

  .programList::after {
    width: 800px;
    height: 800px;
    left: -275px;
    top: 80px;
  }

  .programItem {
    flex-direction: column-reverse !important;
  }

  .programItem + .programItem {
    margin-top: 50px;
  }

  .program_pic {
    width: 100%;
    margin: 0;
  }

  .program_body {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 0;
  }

  .program_ttl {
    font-size: 17px;
  }

  .program_text {
    margin-top: 10px;
  }

  .programItem {
    flex-direction: column-reverse !important;
    position: static;
  }

  .program_body {
    margin: -50px 0px 0 auto;
  }

  .programItem.right .program_body {
    padding: 60px 10% 60px 4%;
  }

  .program_body {
    width: 100%;
    margin: -50px 0px 0 auto;
  }

  .programItem {
    display: flex;
    align-items: center;
  }

  .inner {
    position: relative;
  }

  .programItem.right .program_body {
    padding: 60px 10% 60px 4%;
  }

  .programItem.right .program_ttl {
    position: relative;
    font-size: 29px;
    /*    padding: 5vw 0px 20px 0;*/
    line-height: 1.8;
  }

  .programItem.right .program_body {
    padding: 70px 10% 50px 4%;
  }

  .programItem.right .program_ttl {
    font-size: 20px;
  }

  .p-service-sec05 table {
    border-collapse: collapse;
  }

  .p-service-sec05 table tr {
    display: table;
    width: 100%;
    text-align: center;
  }

  .p-service-sec05 table tr th {
    border-right: 1px solid #cecece;
    border-left: 1px solid #cecece;
  }

  .p-service-sec05 table tr td + td {
    border-left: 1px solid #cecece;
  }

  .p-service-sec05 table tr td:last-child {
    border-right: 1px solid #cecece;
  }

  .p-service-sec05 .note {
    line-height: 1.5;
    margin: 1.5rem 0 5rem 1.5rem;
  }

  .flowItem_pic_img {
    display: flex;
    align-items: center;
    max-width: 400px;
    margin: auto;
  }

  .flowItem_pic_img img {
    border-radius: 6px;
  }

  .flowItem_pic {
    min-height: 105px;
    display: flex;
    align-items: center;
    width: 150px;
    margin: auto;
  }

  .p-service-sec05 table tr {
    table-layout: fixed;
  }

  .c-table th {
    color: #282828;
  }

  .programItem.right h3.program_ttl.service-icon_02 {
    /*    padding: 10px 0px 30px 80px;*/
    text-align: center;
  }

  .programItem.left h3.program_ttl.service-icon_05 {
    /*    padding: 10px 0 10px 80px;*/
    margin-bottom: 2rem;
  }

  h2.c-heading03 {
    font-size: 6vw;
  }
}

/*追加*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  /*    margin: 6rem 0 0;*/
}

.slider2 {
  margin-top: 60px;
}

.slider2 img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider2 .slick-slide {
  margin: 0 20px;
  /*スライド左右の余白調整*/
  border-radius: 20px;
  overflow: hidden;
}

.slider3 img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider3 .slick-slide {
  margin: 0 0px;
  /*スライド左右の余白調整*/
}

/*top*/
.aboutBox:nth-child(odd) .about_pic {
  margin-right: -80px;
}

.about_ttl::before {
  content: "";
  display: inline-block;
  width: 100px;
  height: 100px;
  background: no-repeat left center/contain;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.img_001 {
  max-width: 800px;
  margin: 0 auto;
}

img.img_001 {
  padding-top: 4rem;
}

section {
  margin-bottom: 0rem;
}

.map {
  margin: 0 auto;
  max-width: 1000px;
  padding: 2vw 0;
}

iframe {
  height: 30rem;
  width: 100%;
  border-radius: 6px;
}

ul.home-gallery__list img {
  border-radius: 6px;
}

section.sec03.bg_01 {
  background-color: #fff8f9;
}

section.sec03.bg_01 h2.c-heading01.c-heading01_center {
  padding-top: 8rem;
}

.home .sec03 .flowItam_body.white a.btn.-color {
  margin-top: 2rem;
}

li.flowItem .flowItam_body.white .about_text {
  max-width: 575px;
  margin-top: 0px;
  line-height: 1.7;
}

li.flowItem .flowItam_body.white h3.about_ttl {
  padding-top: 2rem;
}

main.home article.home-works {
  background: linear-gradient(360deg, #fff 50%, #fdf7ee 50%);
  background: #fff;
  padding-bottom: 0rem;
}

@media screen and (min-width: 768px) {
  .aboutBox:nth-child(odd) .about_pic {
    margin-right: -80px;
  }

  .about_ttl::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 100px;
    background: no-repeat left center/contain;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
  }
}

@media screen and (max-width: 767px) {
  .about_pic {
    width: 100%;
  }

  .aboutBox:nth-child(odd) .about_body {
    padding: 60px 20px 40px 20px;
    border-radius: 0vw;
  }

  .about_body {
    width: calc(100%);
    min-height: 0px;
    margin-top: -60px;
  }

  .aboutBox:nth-child(odd) .about_text {
    padding-right: 0px;
  }

  .aboutBox:nth-child(odd) .about_ttl {
    padding-right: 0px;
  }

  .about_ttl::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 100px;
    background: no-repeat left center/contain;
    position: absolute;
    left: 230px;
    top: 40px;
    z-index: -1;
  }

  main.home article.home-works {
    padding-bottom: 0;
  }
}

.custom-shape-divider-top-1701395521 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1701395521 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 16px;
}

.custom-shape-divider-top-1701395521 .shape-fill {
  fill: #ffffff;
}

.custom-shape-divider-bottom-1701396302 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1701396302 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 19px;
}

.custom-shape-divider-bottom-1701396302 .shape-fill {
  fill: #ffffff;
}

.custom-shape-divider-top-1701396362 {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-top-1701396362 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 19px;
}

.custom-shape-divider-bottom-1701396302 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.4px);
  height: 30px;
}

.custom-shape-divider-top-1701396362 .shape-fill {
  fill: #ffffff;
}

.inner.inner_gallery {
  padding-top: 10rem;
  padding-bottom: 4rem;
}

h2.c-heading01.c-heading01_center {
  padding-top: 5rem;
}

h2.instagram_banner img {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 0;
}

@media screen and (max-width: 767px) {
  .inner.inner_gallery {
    padding-top: 0;
    padding-bottom: 2rem;
  }

  h2.c-heading01.c-heading01_center {
    padding-top: 2rem;
  }

  .custom-shape-divider-bottom-1701396302 svg {
    height: 12px;
  }

  .custom-shape-divider-top-1701396362 svg {
    height: 12px;
  }
}

/*サービス*/
/*PC*/
.box__title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 2rem;
}

.box__inner {
  margin: 15px auto 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.box__inner__item {
  width: 48%;
  margin: 0 1%;
  padding: 20px;
  border: 2px solid #f3b3b3;
  border-radius: 6px;
}

.box__inner__item {
  width: 48%;
  margin: 0 1%;
  padding: 20px;
  border: 2px solid #f3b3b3;
  border-radius: 6px;
  background: #fff1f1;
}

.inner__title {
  text-align: center;
  /* background-color: #f3b3b3; */
  padding: 6px 0;
  margin-bottom: 15px;
  color: #cd7171;
  font-size: 2rem;
  font-weight: 500;
}

.box__inner__item.type2 {
  border: 2px solid #c0e2a4;
  background: #f7fff0;
}

.box__inner__item.type2 .inner__title {
  /* background-color: #c0e2a4; */
  color: #7c9268;
}

.t-m10 {
  margin-top: 10px;
}

p.inner__txt {
  text-align: center;
}

.inner_pageArea {
  margin: 5rem 0 8rem 0;
  background: #fff;
  border-radius: 6px;
  padding: 5rem;
  box-shadow: 1px 0px 15px 5px rgb(117 117 117 / 10%);
}

.project_area .project_inner .item .img img {
  display: block;
  margin: 0 auto 3rem auto;
  border-radius: 0;
}

.project_inner .item {
  padding: 2rem;
  border-radius: 6px;
  background: #fff;
  box-shadow: 1px 0px 15px 5px #ede3e491;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-service-sec06 h2.c-heading01.c-heading01_center {
  padding-top: 4rem;
  padding: 0;
}

h3.program_ttl {
  position: relative;
  font-size: 29px;
  /*    padding: 0 0 40px 70px;*/
  line-height: 1.8;
}

section#sec04 .sub-price__box {
  box-shadow: none;
}

.page-id-2358 h3.program_ttl {
  font-size: 29px;
  padding: 0;
}

.programList::after {
  display: none;
}

.program_pic {
  border-radius: 0px;
  overflow: hidden;
  width: 51%;
  float: left;
  max-width: 500px;
  width: 85%;
  margin: 0 0px 0 0;
  z-index: 1;
  margin-right: -7%;
}

.program_body {
  width: 46%;
  padding-bottom: 13px;
  line-height: 1.7;
  width: 100%;
  margin: 0 0 0 auto;
  background: #fff;
  padding: 40px 4% 60px 10%;
  border-radius: 6px;
  z-index: -10;
  box-shadow: 1px 0px 15px 5px #ede3e491;
  top: 40px;
  position: relative;
}

.programItem.right .program_body {
  padding: 17% 10% 50px 4%;
}

.programItem .program_pic {
  margin-right: -6%;
}

.programItem.right .program_pic {
  margin-left: -6%;
  margin-right: 0;
}

.programItem.left .program_pic {
  margin-right: -6%;
}

.programItem + .programItem {
  margin-top: 100px;
}

section#schedule {
  background: #ffeaec;
  padding-bottom: 8rem;
}

section#sec04 {
  background: #f8f8f8;
}

section#sec04 .sub-price__box {
  background-color: #f8f8f8;
  /* box-shadow: 1px 0px 15px 5px rgb(117 117 117 / 10%); */
}

section#sec04 .sec05__inner {
  padding-top: 0rem;
  padding-bottom: 4rem;
  margin-top: 6rem;
}

article.home-works {
  padding-top: 4rem;
  /*    background-color: #f8f8f8;*/
}

@media screen and (min-width: 1168px) {
  .programList::after {
    content: "";
    display: none;
    width: 1156px;
    height: 1368px;
    background: #fff;
    position: absolute;
    top: 0;
    left: -35px;
    z-index: -1;
    border-radius: 40%;
  }

  .programList::after {
    content: "";
    display: none;
    width: 1200px;
    height: 1600px;
    background: #fff;
    position: absolute;
    top: 0;
    left: -35px;
    z-index: -1;
    border-radius: 50%;
  }

  .programItem.right .program_body {
    padding: 5% 10% 50px 4%;
  }

  h3.program_ttl {
    font-size: 29px !important;
    /*    padding: 0 0 40px 70px!important;*/
  }

  h2.instagram_banner img {
    max-width: 700px !important;
  }
}

/*TAB*/
@media screen and (min-width: 768px) {
  .page-id-2358 h3.program_ttl {
    font-size: 20px;
    /*    padding: 0 0 20px 0px!important;*/
  }

  h3.program_ttl {
    font-size: 20px;
    /*    padding: 0 0 10px 70px;*/
  }

  h3.program_ttl.service-icon_02::before,
  h3.program_ttl.service-icon_03::before,
  h3.program_ttl.service-icon_04::before,
  h3.program_ttl.service-icon_05::before {
    top: -18px;
  }

  h2.instagram_banner img {
    max-width: 480px;
  }
}

/*SP*/
@media screen and (max-width: 767px) {
  .programList::after {
    width: 830px;
    height: 1670px;
    left: -275px;
    top: 80px;
    border-radius: 50%;
  }

  .box__inner__item {
    width: 100%;
    margin: 0 1%;
    padding: 20px;
    border: 2px solid #f3b3b3;
    background: #fff0f0;
  }

  .inner_pageArea {
    margin: 6rem 0 0rem 0;
    border-radius: 6px;
    padding: 5vw;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
  }

  .box__title {
    font-size: 5.5vw;
    text-align: center;
    padding-bottom: 1rem;
  }

  .box__inner__item {
    width: 100%;
    padding: 0vw;
    border: 2px solid #f3b3b3;
  }

  .inner__title {
    text-align: center;
    padding: 6vw 0 2vw;
    margin-bottom: 4vw;
  }

  p.inner__txt {
    padding: 1vw 2vw 6vw;
    font-size: 4.5vw;
  }

  .t-m10 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 4.5vw;
  }

  .box__inner__item.type2 {
    margin: 4vw 0 0;
  }

  .inner_pageArea {
    margin: 2rem 0 3rem 0;
  }

  .pageArea__box {
    margin: 6vw 0 4vw;
  }

  .home-center__container.-service {
    margin: 2rem 0 4rem 0;
    padding: 0rem 1rem;
  }

  li.programItem:last-child {
    margin-bottom: 12vw;
  }

  .sub-price__box {
    border-radius: 6px;
  }

  .txt {
    font-size: 14px;
  }

  .txt p {
    font-weight: normal;
    font-size: 14px;
  }

  .program_ttl {
    font-size: 6vw;
  }

  .program_text {
    margin-top: 1rem;
    font-weight: normal;
    font-size: 14px;
  }

  .note_txt01 {
    font-size: 4.5vw;
  }

  h3.program_ttl {
    font-size: 20px;
  }

  .scheduleWrap .right {
    width: 100%;
    margin-top: 3rem;
  }

  .program_pic {
    width: 100%;
  }

  .program_body {
    width: 100%;
    margin: 0 0 0 auto;
    background: #fff;
    padding: 20% 4vw 40px 4vw;
    border-radius: 6px;
  }

  .programItem.left .program_pic,
  .programItem.right .program_pic {
    margin: 0 auto -15% auto;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .programItem.right .program_body {
    padding: 5% 4vw 40px 4vw;
  }

  .project_inner .item {
    padding: 1rem;
    margin: 0 0 20px 0;
  }

  .program_ttl span {
    /* background: linear-gradient(transparent 80%, #FCFFA7 80%); */
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
  }

  .project_inner.-column2 .item {
    width: 100%;
  }
}

/*concept*/
.page.page-id-2358 .programList::after {
  display: none;
}

.page-id-2358 p.program_text {
  text-align: left;
}

.page-id-2358 .program_ttl {
  font-size: 18px;
  text-align: left;
}

.page-id-2358 .programItem .program_body {
  padding: 40px 0px 60px 90px;
  box-shadow: none;
  border-radius: 180px;
  z-index: 2;
  width: 70%;
}

.page-id-2358 .programItem .program_pic {
  margin-right: -5%;
  width: 100%;
  max-width: fit-content;
}

.flowItem_pic img {
  width: 150px;
  margin: 0 auto;
}

section.sec03.bg_02 {
  background: #f8f8f8;
  margin-top: 6rem;
}

.bg_02 {
  background: #f8f8f8;
}

/*company*/
.company_img {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0 4rem;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}

.company_img img {
  width: 420px;
  border-radius: 0px;
}

.p-company-sec02 .philosophy p {
  text-align: left;
  margin: 2rem 0 3rem 0;
}

section.p-company-sec01 .c-flexbox01 {
  display: flex;
  align-items: center;
}

.greeting-txt.txt {
  letter-spacing: 0.06em;
  line-height: 2.4rem;
  margin: 0 auto;
  /*    background-color: #f8f8f8;*/
  border-radius: 6px;
  position: relative;
  padding: 20px;
  margin-top: 0rem;
}

.p-company-sec02 .philosophy p {
  text-align: left;
  margin: 2rem 0 3rem 0;
  padding: 0rem;
}

.sub-shop__box.p-company-sec02__inner.inner.bg_01 {
  background: #ffffff;
  border-radius: 0px;
}

.c-flexbox01.cont__item.item {
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}

section#greeting {
  padding-bottom: 5rem;
  background: #fff;
}

.sub-shop__box.p-company-sec02__inner.inner {
  /*    background: #f8f8f8;*/
  border-radius: 6px;
}

.home-center__img img {
  border-radius: 0;
}

.home-works.-home_01 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.sec03.-home_03 h2.c-heading01.c-heading01_center {
  padding-top: 6rem;
}

.sec03.-home_03 .contents_group {
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 116.8rem;
  /* padding-left: 2.4rem; */
  /* padding-right: 2.4rem; */
  position: relative;
  width: 100%;
  padding-bottom: 8rem;
}

.sec03.-home_03 .item_group h2.c-heading01.c-heading01_center {
  padding-top: 0;
}

.sec04.-center.-home_04 h2.c-heading01.c-heading01_center {
  padding-top: 8rem;
}

.-home_03 .inner-wide {
  background: #f8f8f8;
}

.company_access {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
  margin-top: 4rem;
}

.access_map {
  margin-top: 2rem;
}

.access_map iframe {
  aspect-ratio: 16 / 9;
}

.access_heading {
  font-size: 2rem;
}

.access_info {
  margin-top: 2rem;
}

.access_info li {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 6fr;
}

.access_info li:not(:first-of-type) {
  margin-top: 1rem;
}

.access_info span {
  background: #e6e6e6;
  color: #282828;
  padding: 6px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.access_group {
  background: #fff;
  padding: 20px;
}

/*PC*/
@media screen and (min-width: 1168px) {
  .p-home-sec01 .p-home-sec01__box h2.c-heading01.c-heading01_center {
    padding-top: 3rem;
  }

  .p-home-sec03__inner h2.c-heading01.c-heading01_center {
    padding-top: 2rem;
  }

  .footer_flex .tel_text .text02 {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer_flex .tel_text .text03 {
    font-size: 16px !important;
  }

  .p-home-sec01__box {
    padding: 3rem 6rem 3rem 6rem !important;
  }
}

@media screen and (min-width: 1222px) {
  .header__link {
    font-size: 1.5rem !important;
    font-weight: 400;
  }
}

/*TAB*/
@media screen and (min-width: 768px) {
  section#schedule {
    padding-bottom: 6rem;
  }

  .programItem.right .program_body {
    padding: 5% 10% 50px 4%;
  }

  .header__nav {
    margin-right: 4rem !important;
  }

  .inner.news h2.c-heading01.c-heading01_center {
    padding-top: 2rem !important;
  }
}

/*SP*/
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 140px;
  }

  section.p-company-sec01 .c-flexbox01 {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .p-company-sec02 .philosophy p {
    padding: 2rem;
  }

  .company_img {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0 2rem;
  }

  .table_simple th {
    padding: 1rem;
    width: 9rem;
    font-size: 1.2rem;
  }

  .c-flexbox01.cont__item.item {
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .sub-shop__box.p-company-sec02__inner.inner {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-bottom: 1vw;
  }

  section#greeting .p-company-sec01__inner.inner {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .c-flexbox01__body:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0;
    background: linear-gradient(180deg, #5e5e5e8a 1%, #ffffff00 30%);
    background: #f8f8f8;
    z-index: -2;
  }

  .p-company-sec02 .philosophy p {
    padding: 0 4vw;
    margin: 0rem 0 1rem 0;
  }

  .p-company-sec02 .cont .item02__map .sub-single img {
    margin: 0;
  }

  .p-company-sec02 .cont .item02__map {
    margin: 0;
  }

  .page-id-2358 .programItem .program_body {
    padding: 5vw;
    box-shadow: none;
  }

  .page-id-2358 h3.program_ttl {
    font-size: 6vw;
    padding: 0;
    text-align: center;
    line-height: 1.2;
  }

  .page-id-2358 .programItem .program_pic {
    margin-right: 0;
    width: 100%;
  }

  .project_area {
    padding-top: 0rem;
    margin-bottom: 0rem;
    margin-top: 2rem;
  }

  .inner_pageArea {
    margin: 2rem 0 3rem 0;
    margin-bottom: 22vw;
  }

  section#schedule {
    padding-bottom: 0rem;
  }

  .tel_text {
    margin: 1rem !important;
  }
}

section.sub-service.sub-bg {
  padding-bottom: 0rem;
}

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

.home-center__container.-service {
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 4rem;
  box-shadow: 1px 0px 15px 5px #ede3e491;
}

.page-id-2360 h2.c-heading01.c-heading01_center {
  padding-top: 3rem;
}

.header__time_contents {
  position: relative;
  top: 0.6rem;
}

.header__time {
  padding-bottom: 0.4rem;
  margin-left: 0;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0rem;
  position: relative;
  top: 0px;
}

.header__tel {
  font-size: 2.6rem;
  font-weight: 600;
  position: relative;
}

.entry-content {
  margin-top: 15px;
}

.entry-content a {
  padding: 15px 15px 15px 30px;
  font-weight: 500;
  font-size: 18px;
  text-decoration: underline;
  color: #282828;
  position: relative;
  padding-left: 30px;
  display: block;
}

.entry-header {
  margin-top: 40px;
}

#evaluation .sub-shop__box.js-fadeUp.is-inview-mv.p-company-sec02__inner.inner {
  padding-top: 30px;
  padding-bottom: 60px;
  background: none;
}

.pdf-icon {
  display: inline-block;
  margin-left: 5px;
  width: 15px;
  height: 20px;
  background-image: url(../img/sub/archive/pdf.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: -4px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider_item {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 100%;
  margin: 0 auto;
  /*	margin-top: 3rem;*/
}

.slider_item img {
  width: 26vw;
  /*スライダー内の画像を20vwにしてレスポンシブ化*/
  height: auto;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.slider_item .slick-slide {
  transform: scale(1);
  transition: all 0.5s;
  /*	opacity: 0.5;*/
  margin-left: 40px;
}

.slider_item .slick-slide.slick-center {
  transform: scale(1);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}

.slider_item .slick-slide a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.slider_item .slick-slide .slick-center a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  /*
    border-top: 2px solid #666;
    border-right: 2px solid #666;
*/
  height: 15px;
  width: 15px;
  z-index: 10;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 3%;
  /*    transform: rotate(-135deg);*/
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 3%;
  /*    transform: rotate(45deg);*/
}

/*ドットナビゲーションの設定*/
.slider_item .slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slider_item .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slider_item .slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slider_item .slick-dots .slick-active button {
  background: #282828;
  /*ドットボタンの現在地表示の色*/
}

.slider_item .slick-slide p {
  margin: 0 auto;
  margin-top: 2rem;
  line-height: 1.5;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .slider_item img {
    width: 60vw;
    height: auto;
    margin: 0 auto;
  }

  .slider_item .slick-slide {
    margin-left: 10px;
  }
}

.slick-prev:before,
.slick-next:before {
  content: "";
  z-index: 10;
  font-size: 30px;
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  /*    background-color: white;*/
  /*     border-radius: 50%;  */
  text-align: center;
  line-height: 40px;
  font-family: Arial, sans-serif;
  color: #282828;
}

.slick-prev:after,
.slick-next:after {
  color: #282828;
  z-index: 10;
  font-size: 30px;
  position: absolute;
}

.sec03.bg_01 .sec_inner.inner {
  max-width: max-content;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

/*---slider_item2----*/
.slider_item2 {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 90%;
  margin: 0 auto;
  padding: 0 0%;
}

.slider_item2 img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider_item2 .slick-slide {
  margin: 0 10px;
}

.slider_item2 .slick-slide p {
  margin-top: 2rem;
  line-height: 1.5;
  font-size: 1.8rem;
}

.slider_item2 img {
  width: 20vw;
  /*スライダー内の画像を20vwにしてレスポンシブ化*/
  height: auto;
}

@media screen and (max-width: 767px) {
  .slider_item2 .slick-slide p {
    font-size: 4vw;
  }

  .slider_item2 img {
    width: 60vw;
  }

  .slick-prev,
  .slick-next {
    position: absolute;
    top: 35%;
  }

  .slick-prev {
    left: 0%;
    /* transform: rotate(-135deg); */
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.ttl_icon {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 2rem;
}

.ttl_icon span {
  font-size: 3rem;
}

.ttl_icon img {
  width: 50px;
  min-width: 20px;
}

.ttl_icon .blank_icon {
  margin-left: 0px;
  width: 30px;
}

.ttl_icon a:hover {
  opacity: 0.7;
}

/*----サービス----*/
.contents_group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3%;
}

.contents_item .contents_ttl {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 500;
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
}

.contents_group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3%;
  margin-top: 8rem;
}

.contents_item {
  background: #ffffd4;
}

.contents_item p {
  color: #282828;
  line-height: 1.7;
  font-size: 1.5rem;
  padding: 1rem 30px 3rem;
  text-align: left;
  margin-top: 2rem;
}

.icon_01 li p {
  color: #187ecf;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5em;
}

.sec05 .item_group {
  padding-top: 6rem;
}

section#\30 1 {
  position: relative;
  z-index: 0;
}

section#\30 2 {
  padding-bottom: 0;
  position: relative;
  z-index: 0;
}

.contents_item a:hover {
  box-shadow: 2px 2px 8px rgb(185 161 161 / 30%);
}

.contents_item a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 8px 8px 20px rgb(185 161 161 / 10%);
  transition: 0.2s ease-in-out;
  transition-property: box-shadow, color;
  background-color: #fff;
}

.contents_item a:hover .contents_img img {
  transform: scale(1.1);
}

.contents_img img {
  transition: 0.5s;
}

.sp_cta a .contents_item .contents_img img {
  /*
	width: 100%;
    height: 100%;
*/
  vertical-align: bottom;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.contents_item a:hover p {
  color: #949494;
}

.contents_img {
  height: auto;
}

.contents_txt {
  height: calc(100% - 200px);
  box-sizing: border-box;
  text-align: left;
  background-color: #fff;
  position: relative;
  padding: 10px;
}

.home .contents_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-id-2360 .contents_body ul {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  gap: 10px;
}

.programList.-secondary .programItem.left .program_pic {
  margin-right: 0;
  width: 100%;
  max-width: fit-content;
  position: relative;
  border-radius: 0;
  margin-right: -6%;
}

.programList.-secondary .program_body {
  line-height: 1.7;
  width: 100%;
  margin: 0 0 0 auto;
  background: #fff;
  padding: 30px 4% 60px 4%;
  border-radius: 6px;
  z-index: 5;
  left: 0%;
  bottom: -40px;
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.programList.-secondary .programItem {
  display: flex;
  align-items: flex-end;
}

article.home-works .contents_group_02 .contents_item {
  box-shadow: none;
}

.contents_group_02 .contents_item a {
  box-shadow: none;
}

.contents_group_02 .contents_item {
  background: #fff;
  padding: 20px;
  padding-bottom: 4rem;
  border-radius: 6px;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 767px) {
  .contents_group {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 0rem;
    padding: 4vw 0;
  }

  .contents_group {
    display: grid;
    grid-template-columns: 1fr;
    padding: 4vw;
  }

  .programList.-secondary .programItem.left .program_pic {
    margin-right: 0;
  }

  .programList.-secondary .program_body {
    margin: 0 0 0 auto;
    padding: 20px 4% 30px 4%;
    border-radius: 0 0 6px 6px;
    left: 0%;
    bottom: 0px;
  }

  .contents_group_02 .contents_item {
    padding: 0px;
  }

  .home .contents_group_02 .contents_item {
    padding: 0 0 10vw 0;
  }

  .home .sec03.-home_03 .contents_group {
    padding-bottom: 40vw;
  }

  .home .sec03.-home_03 .banner_contents {
    margin-bottom: 20vw;
  }

  .home .contents_group_02 .contents_item .btn_03 {
    margin-top: 1rem;
  }
}

.banner_contents {
  margin-top: 8rem;
}

.item_group {
  margin-top: 0rem;
  padding-bottom: 0rem;
  padding-top: 6rem;
  padding-top: 0rem;
  padding-left: 0rem;
  padding-right: 0rem;
}

.cd-fixed-bg.cd-bg-1 {
  padding: 6rem 0;
  margin: 0 auto;
}

.cd-fixed-bg.cd-bg-1 .inner.p-home-sec03__inner {
  /*    background: #ffffffc9;*/
  border-radius: 6px;
  padding: 1rem 0 2rem;
  margin: 0 auto;
}

.cd-fixed-bg.cd-bg-1 .inner.p-home-sec03__inner .home__btn {
  margin: 0 auto;
  text-align: center;
  margin-top: 3rem;
}

.p-home-sec03 {
  margin-top: 10rem;
}

.cd-fixed-bg.cd-bg-1 .inner.p-home-sec03__inner .btn_03 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*==========パララックス==========*/
.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 2;
}

.cd-fixed-bg.cd-bg-1 {
  background-image: url(../img/common/contents_bg02.png);
  margin-top: 6rem;
  width: 100%;
}

.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/common/contents_bg02.png");
  /*
  background-color: rgb(255 255 255 / 50%);
  background-blend-mode: lighten;
*/
}

@media screen and (min-width: 768px) {
  .cd-fixed-bg.cd-bg-2 {
    background-image: url("../img/common/contents_bg02.png");
    background-color: rgb(255 255 255 / 50%);
    background-blend-mode: lighten;
  }
}

.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/common/contents_bg02.png");
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-repeat: repeat;
  background-color: rgb(255 255 255 / 50%);
  background-blend-mode: lighten;
}

@media screen and (max-width: 736px) {
  .cd-fixed-bg {
    background-size: cover;
    background-attachment: scroll;
  }

  .cd-fixed-bg.cd-bg-2 {
    background-image: url("../img/common/contents_bg02_sp.png");
  }

  .cd-fixed-bg.cd-bg-3 {
    background-image: url("../img/common/contents_bg02_sp.png");
  }
}

.contents_group_02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 6rem;
}

.sec04.-center {
  background: linear-gradient(180deg, #eaeaea 40%, #fff 40%);
  background: #282828;
  position: relative;
  padding-bottom: 8rem;
}

.sec04.-center .about_text {
  width: 100%;
  max-width: fit-content;
  text-align: center;
  color: #282828;
  display: inline-block;
}

.btn.-color.-white {
  background: #fff;
  color: #282828;
}

.contents_body h3 {
  text-align: center;
  margin-top: 2rem;
  font-size: 2.2rem;
  font-weight: 500;
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
}

/*==========footer==========*/
.contact_other {
  display: block;
  background: #282828;
  color: #fff;
  width: 360px;
  max-width: 100%;
  border-radius: 45px;
  text-align: center;
  padding: 15px 10px;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  margin: auto 0 auto;
  border: 2px solid #282828;
}

/*==========会社概要　company==========*/
.name img {
  width: 25rem;
}

.name {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.p-company-sec02 .philosophy .name span {
  font-size: 2rem;
}

.contents_body ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 2rem;
  width: 100%;
}

.contents_body li {
  display: flex;
  gap: 10px;
  line-height: 1.7;
}

.contents_body li span {
  color: #fff;
  background: #dec193;
  padding: 4px 10px;
  width: 20%;
  text-align: center;
}

.contents_map {
  margin-top: 2rem;
}

.page_link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  align-items: center;
  gap: 20px;
  align-items: stretch;
  max-width: 116.8rem;
  margin: 21px auto 0;
  padding: 10px;
  height: 6rem;
}

.page_link a {
  background: #5b9342;
  padding: 10px 20px;
  border-radius: 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid #5b9342;
}

.page_link a:hover {
  color: #5b9342;
  background-color: #fff;
}

.page-id-14 .sub-bg {
  padding-bottom: 0rem;
}

.page-id-14 .p-company-sec02__cont {
  padding-top: 5rem;
  padding-bottom: 0rem;
}

.p-company-sec01__cont.cont {
  display: flex;
  gap: 3%;
  margin-top: 1rem;
}

.cont__item.item01 {
  margin-top: 4rem;
}

@media screen and (min-width: 768px) {
  .page_link {
    height: 8rem;
  }

  .border-line {
    left: 0.9em;
  }
}

@media screen and (max-width: 767px) {
  .contents_body li {
    flex-direction: column;
    font-size: 4vw;
  }

  .contents_body li span {
    width: 100%;
  }

  .cont__item.item01 {
    margin-top: 0;
  }

  .name img {
    width: 50%;
    margin: 0 4vw 0 0;
  }

  .name {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
  }

  .page-id-14 .c-flexbox01.cont__item.item {
    margin: 0rem 0;
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .c-flexbox01__head {
    margin-top: 0;
    margin-right: 0;
  }

  .p-company-sec02 .philosophy {
    margin: 0 0 0rem 0;
  }

  .cd-fixed-bg.cd-bg-3 .program_body {
    width: 100%;
    margin: 0 0 0 auto;
    background: none;
    padding: 6% 4vw 0px 4vw;
    border-radius: 0px;
    padding: 10% 4vw 30px 4vw;
    border-radius: 0px;
    background: #fff;
  }

  .page_link a {
    padding: 8px 20px;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .p-company-sec01__cont.cont {
    display: flex;
    gap: 3%;
    margin-top: 1rem;
    flex-direction: column;
  }

  .c-flexbox01__body {
    padding-top: 0;
    padding-left: 0;
  }
}

.flow04 {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.flow04 > li {
  list-style-type: none;
  width: calc(100% / 4);
  max-width: 40rem;
  display: flex;
}

.flow04 > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: #282828;
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}

.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: #282828;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow04 > li dl {
  padding: 30px 20px;
  margin: 0;
  /* border: 3px solid #282828; */
  position: relative;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #282828;
}

.flow04 > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid #282828;
  border-right: 4px solid #282828;
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flow04 > li dl dt {
  font-size: 1.3em;
  color: #282828;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 10px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}

.flow04 > li dl dd {
  margin-left: 0;
  line-height: 1.5;
}

.flow_design04 {
  width: 100%;
  margin-top: 4rem;
}

.flow04 > li dl dd img {
  margin-top: 2rem;
}

.flow_area h2.c-heading01.c-heading01_center {
  padding-top: 8rem;
}

@media (max-width: 767px) {
  .flow04 {
    gap: 20px;
  }

  .flow04 > li {
    max-width: unset;
    display: block;
    width: 90%;
  }

  .flow04 > li:not(:first-child) dl::before {
    display: none;
  }

  .flow04 > li dl dd {
    font-size: 14px;
  }
}

/*----FAQ----*/
.sub-reserve-faq {
  padding: 0rem 0 0rem 0;
  margin-bottom: 5rem;
  margin-top: 00rem;
  /* 矢印 */
}

.p-flow-sec02 .sub-reserve-faq .inner {
  background: none;
}

.sub-reserve-faq__box {
  max-width: 112rem;
  margin: 0 auto;
  padding: 7rem 0 5rem 0;
  background-color: #fff;
}

.sub-reserve-faq .accordion {
  position: relative;
  width: 100%;
}

.sub-reserve-faq .accordion-item {
  border-bottom: 1px solid #9da3a7;
}

.sub-reserve-faq .accordion-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  line-height: calc(28 / 16);
  padding-bottom: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 3rem;
}

.sub-reserve-faq .accordion-title span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #282828;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  height: 3.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 1rem;
  width: 3.3rem;
}

.sub-reserve-faq .accordion-content {
  background-color: #eaeaea;
  border-radius: 0.4rem;
  display: none;
  padding-bottom: 2.9rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2.9rem;
}

.sub-reserve-faq .accordion-content a {
  color: #00e;
  display: inline-block;
  text-decoration: underline;
}

.sub-reserve-faq .accordion-content p {
  line-height: calc(28 / 16);
}

.sub-reserve-faq .accordion-title {
  position: relative;
}

.sub-reserve-faq .accordion-title::after {
  border-right: solid 1px #282828;
  border-top: solid 1px #282828;
  content: "";
  display: block;
  height: 0.9rem;
  position: absolute;
  right: 2.3rem;
  top: 45%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  width: 0.9rem;
}

.sub-reserve-faq .accordion-title.open::after {
  top: 41%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

div#FAQ {
  background: #fff;
  padding: 8rem 7rem 0rem;
}

@media screen and (max-width: 767px) {
  .sub-reserve-faq {
    margin-bottom: 4rem;
    padding: 10px;
    margin-top: 2rem;
  }

  .p-flow-sec02 .flow_content {
    padding: 0px !important;
  }

  .p-flow-sec02 .flow_content .row {
    flex-direction: column-reverse !important;
  }

  .p-flow-sec02 .flow_content .row:last-child {
    border-bottom: none;
  }

  .p-flow-sec02 .flow_content .detail {
    width: 100% !important;
    padding: 0 0px 0 0px !important;
  }

  .p-flow-sec02 .flow_content .detail .head {
    font-size: 2rem !important;
    padding: 5px 0 15px 0 !important;
  }

  .p-flow-sec02 .flow_content .detail .text {
    font-size: 1.5rem;
  }

  .p-flow-sec02 .flow_content .img {
    width: 100% !important;
    margin: 20px 0 0 0 !important;
  }

  .p-flow-sec02 .flow_content .detail .num {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 4.8rem !important;
  }

  .sub-reserve-faq__box {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 0vw;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 0vw;
  }

  .p-flow-sec02 {
    padding: 2rem 0 4rem 0 !important;
  }

  .sub-reserve-faq__box .contents_ttl_001 {
    margin: 0 auto 1rem auto;
  }

  .sub-reserve-faq .accordion-title {
    font-size: 3.5vw;
    padding-bottom: 4vw;
    padding-left: 0;
    padding-right: 6vw;
    padding-top: 4vw;
  }

  .sub-reserve-faq .accordion-title span {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 8vw;
    margin-right: 3vw;
    width: 8vw;
  }

  .sub-reserve-faq .accordion-content {
    -webkit-column-break-before: 0.6vw;
    break-before: 0.6vw;
    padding: 3vw;
  }

  .sub-reserve-faq .accordion-content p {
    font-size: 3vw;
  }

  .sub-reserve-faq .accordion-title::after {
    height: 2vw;
    right: 2vw;
    width: 2vw;
  }

  div#FAQ {
    background: #fff;
  }
}

/*----　料金----*/
p.price {
  display: inline-block;
  font-size: 2.4rem;
}

.table_group {
  /*    background: #fff;*/
  /*    padding: 60px 0;*/
  margin-top: 4rem;
  border-radius: 6px;
}

.price_sub.-v001 .table_group {
  background: none;
}

.price_sub {
  margin-bottom: 0;
  margin-top: 8rem;
  padding: 2rem 0;
  background: #f9f8f6;
}

td.txt,
td.price {
  border-left: 0px solid #707070;
}

.price_group {
  margin-top: 8rem;
  margin-bottom: 10rem;
}

/**/
.table_price2 {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 90%;
}

.table_price2 tr {
  background-color: #fff;
  border-bottom: 2px solid #fff;
}

.table_price2 tr:nth-child(even) {
  background-color: #f9f8f6;
}

.table_price2 th,
.table_price2 td {
  padding: 1em 1em;
  border-left: none;
  font-family: "Noto Sans JP", sans-serif;
}

.table_price2 thead th {
  font-size: 1.8rem;
  padding: 1em;
  font-weight: 500;
}

.table_price2 thead tr {
  background-color: #282828;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.table_price2 tbody th {
  text-align: left;
  font-size: 1.8rem;
}

.table_price2 .txt {
  text-align: left;
  font-size: 0.75em;
}

.table_price2 .price {
  text-align: right;
  color: #ff3535;
  font-weight: 500;
}

.table_price2 {
  width: 90%;
  margin: 0 auto;
}

.pricedown {
  text-decoration: line-through;
  font-size: 16px;
}

@media screen and (max-width: 600px) {
  .table_price2 {
    border: 0;
    width: 100%;
  }

  .table_price2 th {
    background-color: #137f36;
    display: block;
    border-right: none;
  }

  .table_price2 thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .table_price2 tr {
    display: block;
    margin-bottom: 0.625em;
    border: 1px solid #dec193;
  }

  .table_price2 td {
    border-bottom: 1px dotted #bbb;
    display: block;
    font-size: 0.8em;
    text-align: right;
    position: relative;
    padding: 1.5em 1em 1.5em 4em;
    border-right: none;
  }

  .table_price2 td::before {
    content: attr(data-label);
    font-weight: 500;
    position: absolute;
    left: 10px;
    color: #a47c01;
  }

  .table_price2 td:last-child {
    border-bottom: 0;
  }

  .table_price2 tbody th {
    color: #282828;
    padding: 1em;
    background: #dec193;
    line-height: 1.7;
    text-align: center;
  }

  .table_price2 tr:nth-child(even) {
    background-color: #fff;
  }

  .flow_design04.-column4 .flow04 > li {
    width: 100%;
  }

  .table_ttl_sp {
    font-size: 6vw;
    text-align: center;
    color: #a98750;
  }
}

.price_note {
  display: block;
  font-size: 1.4rem;
  margin-top: 10px;
  color: #282828;
}

article.home-works .banner_contents {
  margin-top: 0;
}

.flow_design04 {
  width: 100%;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.page-id-2358 .page_link {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  align-items: center;
  gap: 20px;
}

.page-id-2360 .sub-price__box {
  padding-bottom: 0;
}

.cd-fixed-bg.cd-bg-1 h2.c-heading01.c-heading01_center {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .about_pic {
    z-index: 2;
  }

  .aboutBox:nth-child(odd) .about_pic {
    margin-right: 0;
  }

  .item_group h2.c-heading01.c-heading01_center {
    padding-top: 5rem;
  }

  .home .sec03 .item_group .btn {
    margin-top: 0rem;
  }

  .banner_contents {
    margin-top: 4rem;
    padding: 0 4vw;
  }

  .sec03 {
    padding-bottom: 4rem;
  }

  .contents_group_02 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 3rem;
  }

  .page-id-2360 .contents_group_02 {
    gap: 60px;
  }

  h2.c-heading01.c-heading01_center {
    padding-top: 3rem;
    z-index: 10;
    position: relative;
    margin-bottom: 0rem;
  }

  .contents_item p {
    padding: 0rem 20px 2rem;
    margin-top: 2rem;
    font-size: 14px;
  }

  .cd-fixed-bg.cd-bg-1 .inner.p-home-sec03__inner {
    border-radius: 0px;
    padding: 0rem 4vw 2rem;
  }

  .banner.-sub .inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .banner.-sub {
    margin-bottom: 4rem;
  }

  .page-id-2360 .banner.-sub {
    margin-bottom: 4rem;
    margin-top: 3rem;
  }

  .map {
    margin-bottom: 4rem;
  }

  .contents_item .contents_ttl {
    font-size: 6vw;
  }

  .contents_body h3 {
    font-size: 6vw;
  }

  article.home-works {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .page_link {
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    align-items: center;
    gap: 10px;
    height: auto;
  }

  .programItem.left .program_pic,
  .programItem.right .program_pic {
    margin: 0 auto;
  }

  .sec05 .sec_inner__big {
    border-radius: 6px;
    padding: 30px 0 0;
  }
}

/*----フッター　footer----*/
.footer-contact .left__btn-wrap .btn.-color.mail:hover {
  color: var(--primary-color);
}

.footer__logo {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  width: 21rem;
  display: flex;
  justify-content: flex-start;
}

.footer_group {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  margin-top: 2rem;
}

.footer_left {
  display: flex;
  text-align: left;
  gap: 20px;
  width: 100%;
}

.footer-contact__right {
  width: 100%;
  padding: 0;
  margin-top: 2rem;
  height: 100%;
}

iframe {
  height: 20vw;
  width: 100%;
}

.footer__list {
  row-gap: 15px;
  column-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    row-gap: 5px;
  }
}

.footer__item:not(:first-of-type) {
  margin-left: 0;
}

.footer_group .footer_banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  margin-top: 3rem;
  width: auto;
  flex-direction: column;
}

.footer_left_contents {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 35px;

  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .textAreaLeft {
    .footer_ttl {
      margin-top: 20px;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.5;
    }

    .footer__address {
      margin-top: 8px;
      font-size: 12px;
      font-weight: 500;
    }
  }

  .textAreaRight {
    flex-shrink: 0;
    max-width: 304px;

    .footer_rigth_contents {
      + .footer_rigth_contents {
        margin-top: 21px;
      }

      .footerListTit {
        font-family: "M PLUS 1", serif;
        color: var(--color-main);
        font-size: 18px;
        font-weight: bold;
        line-height: 1.5;
        margin-bottom: 10px;
        text-transform: uppercase;
      }

      .footer__list {
        .footer__item {
          .footer__link {
            padding-left: 0;
            color: #01090d;
            font-size: 14px;
            font-weight: 500;

            &::before {
              display: none;
            }
          }
        }
      }
    }
  }
}

.footer_rigth {
  .right__map {
    iframe {
      aspect-ratio: 70 / 29;
    }
  }
}

h3.footer_ttl {
  color: #000;
  font-weight: 600;
}

.footer_banner img {
  width: 100%;
}

.parallax_1.cd-fixed-bg.cd-bg-5 {
  height: 100%;
  display: inline-block;
  width: 100%;
}

.footer-contact__left {
  width: 100%;
}

.contact_group {
  display: flex;
  gap: 2%;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.footer-contact .left__btn-wrap {
  padding-top: 0;
}

.btn {
  padding-bottom: 2.5rem;
  padding-top: 2.5rem;
  width: 29rem;
}

.footer-contact__left {
  width: 80%;
  background: #fff;
  margin: 0 auto;
  color: #282828;
  padding: 20px;
}

.footer__item:last-of-type a {
  width: auto;
}

.footer_rigth {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
}

.footer_banner img {
  width: 50px;
}

.footer_rigth_contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 3rem;
}

.footer_sns {
  margin-top: 2rem;
}

.footer_note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #fff;
}

.right__map {
  height: 100%;
}

iframe {
  height: 100%;
  width: 100%;
}

.footer_top h2.c-heading01.c-heading01_center {
  color: #fff;
}

.footer_top .c-heading01 span {
  color: #fff;
}

.footer_text {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer-contact__left {
    width: 100%;
  }

  .footer-contact .left__btn-wrap .btn.-color.mail {
    width: 230px;
  }

  .footer-contact .left__btn-wrap {
    padding-top: 4vh;
  }

  .left__tel.tel {
    background: url(../img/common/tel-color.svg) no-repeat left 3% top 2.2rem /
      3rem auto;
  }

  .footer {
    padding-top: 80px;
  }

  .contact_group {
    flex-direction: column;
  }

  .footer_group {
    gap: 20px;
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .footer__link {
    display: inline-block;
  }

  .footer__item + .footer__item {
    margin-top: 10px;
  }

  .footer_left {
    flex-direction: column;
    margin-top: 0;
  }

  iframe {
    height: 50vw;
  }

  .footer_rigth {
    margin-top: 3rem;
  }

  .footer__logo {
    padding-top: 3rem;
  }

  .footer_sns {
    margin-top: 2rem;
    padding-right: 30px;
    display: flex;
    gap: 20px;
  }

  .footer_note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
    margin-top: 10px;
  }
}

/*==========フローティング==========*/
/*fixed_banner*/
.fixed_banner {
  position: fixed;
  z-index: 99999;
  top: 130px;
  right: -10px;
  /*    background-color: #ff9648;*/
  /*    padding: 6px 5px;*/
  /*    border-radius: 10px 0 0 10px;*/
  /*  border: 2px solid #fff;*/
  /*    border-right: none;*/
  /*    box-shadow: 0px 0px 10px 0px rgb(106 106 106 / 30%);*/
  /*    background: -webkit-linear-gradient(137deg, #ffbe49 0%, #ff934d 30%, #e62c91 70%, #df035f 100%);*/
}

.fixed_banner_pc {
  width: 100%;
  transition-duration: 0.5s;
}

.fixed_banner_pc:hover {
  opacity: 0.6;
}

.floating-banner:hover {
  opacity: 0.6;
}

.fixed_banner_sp {
  display: none;
}

.fixed_banner.-line_banner {
  top: 320px;
  background: #03c755;
}

.header-nav {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .fixed_banner_sp {
    display: inline-block;
    /*        width: 75%;*/
  }

  .fixed_banner_pc {
    display: none;
  }

  .fixed_banner {
    position: static;
    /*        padding: 4px 8px;*/
    /*        border-radius: 10px;*/
    /*        border: 3px solid #04b34d;*/
    margin-top: 7vw;
    /*        max-width: 300px;*/
  }

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

/*----works お客様の声----*/
.single-works .sub-single__main h2 {
  background-color: #fff;
  color: #282828;
  line-height: 1;
  margin-top: 3rem;
  padding: 1.3rem 0.5rem;
  font-size: 2.6rem;
  border-bottom: 3px dotted #282828;
}

.nav-previous,
.nav-next {
  max-width: 10px;
}

.sub-single .nav-next {
  right: 35%;
}

.sub-single .nav-previous {
  left: 35%;
}

.flex-item {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 20px;
  align-items: center;
}

.single-works .sub-single img,
.single .sub-single img {
  width: 100%;
}

.sub-single__main p.single-works_comment {
  font-size: 3rem;
  color: #282828;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.image-container img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.p-post-article__textarea {
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  .flex-item {
    grid-template-columns: 1fr;
  }

  .single-works .sub-single__main h2 {
    font-size: 6vw;
  }

  .single .sub-single__main h2 {
    font-size: 5vw;
    padding: 0.8rem 0.5rem;
  }

  .single .sub-single__main h3 {
    font-size: 5vw;
    line-height: 1.2;
    margin-top: 3.5rem;
    padding-bottom: 0.6rem;
  }

  .single .sub-single__main h4 {
    font-size: 4.8vw;
    line-height: 1.2;
    margin-top: 3.5rem;
  }
}

/*----下層見出し----*/
.c-heading03 {
  font-weight: 500;
  font-size: 4rem;
  padding-bottom: 0.5em;
  text-align: center;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.c-heading03 .heading_sub::before {
  position: absolute;
  top: 50%;
  right: -63px;
  width: 50px;
  height: 1px;
  content: "";
  background: #282828;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.heading_sub {
  position: relative;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}

.heading_main {
  margin-top: 1rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  h2.c-heading03 {
    font-size: 6vw;
  }
}

section#history {
  /*    background: linear-gradient(225deg, #fdf7ee, #fff);*/
  padding-top: 0;
}

.illust_deco {
  position: absolute;
  top: 0;
  width: 210px;
}

.illust_deco.-deco01 {
  right: 0;
  z-index: 0;
  width: 100%;
  opacity: 0.4;
}

.illust_deco.-bottom.-deco01 {
  position: absolute;
  top: 0;
  opacity: 0.1;
  transform: scale(1, -1);
}

@media only screen and (max-width: 767px) {
  .illust_deco.-bottom.-deco01 {
    position: absolute;
    top: 88%;
    z-index: 0;
    width: 500px;
    left: 0;
  }
}

/*----TOP SP----*/
@media only screen and (max-width: 767px) {
  .aboutBox.-primary .about_body.-primary {
    padding: 60px 20px 40px 20px;
  }

  .sec03.-home_03 h2.c-heading01.c-heading01_center {
    padding-top: 6rem;
  }

  .sec04.-center.-home_04 h2.c-heading01.c-heading01_center {
    padding-top: 6rem;
  }

  .sec03.-home_03 .item_group h2.c-heading01.c-heading01_center {
    padding-top: 0rem;
  }

  .aboutBox.-primary .about_body.-primary .btn_03 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .home .about_body.-primary .btn_03 {
    margin-top: 6rem;
  }

  .sec03.-home_03 h2.c-heading01.c-heading01_center {
    padding-top: 0rem;
  }

  .p-home-sec03 {
    margin-top: 4rem;
  }

  .footer_top {
    margin-top: 0rem;
  }

  .sec03.-home_03 .contents_group {
    margin-top: 2rem;
  }

  main.home .contents_body .btn_03 {
    margin-top: 1rem;
  }

  .home section.sec03.-home_03 {
    padding-bottom: 0;
    margin-top: 0;
  }

  .home .slick-dotted.slick-slider {
    margin-bottom: 0px;
  }
}

/*----service SP----*/
@media only screen and (max-width: 767px) {
  .program_body {
    padding: 10% 4vw 40px 4vw;
    top: 0px;
  }

  .item_group.-service {
    margin-top: 3rem;
  }

  .page-id-2360 .sub-price__box {
    margin-top: 5vw;
  }

  .page-id-2360 .project_area {
    margin-bottom: 4rem;
  }

  .page-id-2360 .home-works {
    padding-top: 4rem;
  }

  .page-id-2360 .p-service-sec06__inner.inner .project_area {
    margin-bottom: 4rem;
  }

  .page-id-2358 .page_link {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .programItem + .programItem {
    margin-top: 20px;
  }

  .programItem .program_ttl {
    padding: 0;
    line-height: 1.5;
  }

  .page-id-14 .page_link {
    grid-template-columns: 1fr;
  }

  .p-service-sec06__inner.inner {
    margin-top: 4rem;
  }

  .page-id-2358 .slick-slider {
    margin: 0;
  }

  .table_price2 tbody th {
    color: #fff;
  }

  .table_price2 td::before {
    color: #282828;
  }

  .price_group {
    margin-bottom: 6rem;
  }

  .page-id-2358 .home-center__container.-service {
    margin-bottom: 0rem;
  }

  .page-id-2358 .home-works .banner_contents {
    margin-top: 0;
    padding-bottom: 4rem;
  }

  .table_price2 {
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
  }

  div#FAQ {
    padding: 1rem 1rem 0rem;
  }

  .table_ttl_sp {
    font-size: 6vw;
    text-align: left;
    color: #a98750;
    padding: 0 0 0 18px;
    position: relative;
  }

  .table_ttl_sp:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 120%;
    top: 0;
    left: 0;
    background: #dec193;
  }
}

/*----company SP----*/
@media only screen and (max-width: 767px) {
  .page-id-14 h2.c-heading03 span {
    font-size: 80%;
    line-height: 1.5;
  }

  .page-id-14 .programItem.right .program_ttl {
    position: relative;
    padding: 0vw 0px 0px 0;
    line-height: 1.8;
  }

  .page-id-14 .p-company-sec02__cont {
    padding-top: 0;
    padding-bottom: 0rem;
  }
}

/*============動き==============*/
.displayed {
  animation: fadeUp 3s forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(-100px);
  }
}

/* 画面外 */
.fade-block2 {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 1.2s, -webkit-transform 0.8s;
  transition: opacity 1.2s, -webkit-transform 0.8s;
  transition: opacity 1.2s, transform 0.8s;
  transition: opacity 1.2s, transform 0.8s, -webkit-transform 0.8s;
}

/* 画面に入った時の動き */
.fade-block2.blockIn {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*
.scroll-block {
  height: 100vh;
}
*/
/*============動き==============*/
/*----新着情報----*/
.c-card.-wn {
  width: 31.5%;
  width: 100%;
  display: flex;
  transition: 0.3s;
}

.c-card.-wn:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.c-card__time.-wn {
  font-size: 1.2rem;
  margin-right: 2rem;
}

.c-card__body-bottom.-wn {
  font-size: 1.6rem;
  margin-top: 0;
}

.c-card_link .c-card__ttl.-wn {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#282828),
      to(#282828)
    )
    0 100%/0 1px no-repeat;
  background: linear-gradient(#282828, #282828) 0 100%/0 1px no-repeat;
}

.c-card_link:hover .c-card__ttl.-wn {
  background-size: 100% 1px;
}

.c-card__img-wrap.-wn {
  border-radius: 0;
}

.c-card__img-wrap.-wn img {
  max-height: 70px;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.c-card__body.-wn {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  padding-bottom: 20px;
}

.c-card__body-bottom.-wn {
  font-size: 1.6rem;
  margin-top: 0;
  padding-top: 0;
}

.home-works__container.-wn {
  margin: 0 auto;
  margin-top: 3.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .home-works__container.-wn {
    margin: 0 auto;
    margin-top: 2.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    width: 100%;
  }

  .c-card__body.-wn {
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-direction: column;
    width: 100%;
    padding-top: 20px;
  }

  .c-tag {
    font-size: 14px;
    width: 30vw;
    height: 2rem;
  }

  .c-card__img-wrap.-wn img {
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  .c-card__img-wrap.-wn {
    height: 30vw;
  }

  .c-card__body-top.-wn {
    flex-direction: row;
    display: flex;
    align-items: center;
  }

  .c-card__body-bottom {
    line-height: 1.3;
    margin-top: 2vw;
    padding-top: 0;
  }

  .c-card__body-bottom.-wn {
    font-size: 14px;
  }
}

.sub-archive__container.-item .c-card {
  width: 100%;
}

.sub-archive__container.-item {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  flex-wrap: wrap;
  gap: 1rem;
}

@media screen and (max-width: 767px) {
  .c-card__body-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .sub-archive__container.-item {
    margin-top: 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

section#\30 1:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url(../img/common/illust05.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 200px;
  position: absolute;
  right: 0;
  opacity: 0.3;
  z-index: 0;
}

section#\30 2:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/illust08.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -20%;
  position: absolute;
  right: 0;
  opacity: 0.3;
  z-index: 0;
}

section#\30 3 {
  position: relative;
}

section#\30 3:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url(../img/common/illust05.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 200px;
  position: absolute;
  right: 0;
  opacity: 0.3;
  z-index: 0;
}

.programList.-secondary {
  z-index: 10;
}

.page-id-2360 section#\30 2 {
  padding-bottom: 6rem;
}

.page-id-2360 section#\30 2:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/contents_bg02.png);
  background-size: cover;
  background-repeat: no-repeat;
  bottom: 0;
  position: absolute;
  right: 0;
  opacity: 0.3;
  z-index: 0;
}

.page-id-2360 section#\30 1:before {
  background: url(../img/common/illust08.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.page-id-2358 article.home-works {
  padding-top: 8rem;
  background-color: #f8f8f8;
}

section.p-home-sec03.-home_06 .cd-fixed-bg.cd-bg-2 {
  width: 60%;
  padding: 0;
  margin: 0 auto;
  right: 0;
  display: flex;
}

.company_group {
  display: flex;
}

.company_img.-home img {
  width: 800px;
  border-radius: 0px;
}

section.p-home-sec03.-home_06 .cd-fixed-bg.cd-bg-2 {
  width: 50%;
  padding: 0;
  margin: 0 auto;
}

.company_img.-home {
  width: 60%;
  padding: 0;
  gap: 0;
  margin: 0;
  top: -30px;
  position: relative;
  margin-right: -10%;
}

.company_contents {
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

.company_contents h2.c-heading01.c-heading01_center {
  padding-top: 0;
}

@media screen and (max-width: 767px) {
  .company_group {
    display: flex;
    flex-direction: column;
  }

  .company_img.-home {
    width: 100%;
    padding: 0;
    gap: 0;
    margin: 0;
    top: 0;
    position: relative;
    margin-right: 0;
  }

  section.p-home-sec03.-home_06 .cd-fixed-bg.cd-bg-2 {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .slider_item .slick-slide p {
    width: 200px;
  }

  section.sec03.-home_03 h2.c-heading01.c-heading01_center {
    padding-top: 4rem;
  }

  .page-id-2358 article.home-works {
    padding-top: 1rem;
    background-color: #f8f8f8;
  }

  .sub-single__main p.single-works_comment {
    font-size: 18px;
  }

  .greeting-txt.txt {
    font-size: 4vw;
    margin-top: 0rem;
    padding: 20px 0;
  }

  .company_contents {
    padding: 3rem 1rem;
  }
}

.c-card__img-wrap.-item img {
  aspect-ratio: 1 / 1;
}

.banner_contents.-banner2 {
  margin-top: 0;
  padding-bottom: 4rem;
}

.page-id-2360 .home-works {
  padding-top: 8rem;
}

/* 商品個別ページ */
.item-slider {
  width: 100%;
  padding-right: 4rem;
  margin: 0 auto;
  margin-top: 3rem;
}

.property-slider__arw {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
  width: 4rem;
  height: 12rem;
  background-color: #000000b3;
  border-radius: revert-layer;
}

.property-slider__arw.prev::before,
.property-slider__arw.next::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
}

.property-slider__arw.prev {
  left: 0;
}

.property-slider__arw.prev::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  left: 1.6rem;
}

.property-slider__arw.next {
  right: 0;
}

.property-slider__arw.next::before {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 1.6rem;
}

.item-flex {
  display: flex;
  flex-direction: column;
}

.property-slider__img-wrap img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.property-slider {
  margin-top: 0;
}

.thumbnail-slider {
  margin-top: 3rem;
}

.thumbnail-slider .slick-slide {
  padding: 5px;
}

.item .sub-single__category {
  background-color: #282828;
  color: #fff;
  margin-left: 0;
  border: none;
}

.item .sub-single__main {
  border-top: none;
}

.item_price_wrap {
  display: flex;
  align-items: center;
}

.price_ttl {
  font-size: 16px;
  margin-right: 30px;
  border: 1px solid #9d845d;
  padding: 0 5px;
  color: #9d845d;
  line-height: 1.5;
}

.price_big {
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 600;
}

.price_small {
  font-size: 14px;
  line-height: 1.5;
}

.item_detail {
  margin-top: 4rem;
}

.item_info,
.item_remarks {
  margin-top: 3rem;
  padding-top: 2rem;
  line-height: 1.5;
  border-top: 1px solid #f0f0f0;
}

.item .sub-single__box {
  max-width: 50%;
}

.item_cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 1rem;
}

.btn.-color.-item {
  width: 100%;
  padding: 10px;
  text-decoration: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
}

.btn.-color.-item::before,
.btn.-color.-item::after {
  display: none;
}

.btn.-color:hover {
  color: #fff;
  opacity: 0.6;
}

.btn_icon {
  width: 20px;
  height: 20px;
}

.single .sub-single img.btn_icon {
  width: 20px;
  height: 20px;
}

.item_cta_ttl {
  text-align: center;
  font-weight: 600;
  font-size: 2.4rem;
  margin-top: 2rem;
  color: #9d845d;
}

@media screen and (max-width: 767px) {
  .item-slider {
    width: 100%;
    padding-right: 0;
  }

  .item-flex {
    display: block;
  }

  .item .sub-single__box {
    margin-top: 2rem;
  }

  .item .sub-single__box {
    max-width: 100%;
  }

  .price_ttl {
    font-size: 12px;
    margin-right: 20px;
  }

  .item_price_wrap {
    display: flex;
    align-items: flex-start;
  }

  .price_big {
    font-size: 10vw;
  }

  .sub-single__main {
    border-top: 1px solid #282828;
    font-size: 14px;
    line-height: calc(28 / 14);
    margin-top: 3rem;
  }

  .item_info,
  .item_remarks {
    margin-top: 3rem;
    padding-top: 2rem;
    line-height: calc(28 / 14);
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
  }

  .item_cta {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .property-slider__arw {
    width: 4rem;
    height: 4rem;
  }
}

aside.banner.-sub.-bottom {
  margin-top: 4rem;
}

/*20240719*/
/*ホバーエフェクト*/
.header__link::after {
  /*アンダーラインのスタイル*/
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  bottom: -15px;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header__link:hover::after {
  /*横方向等倍まで拡大*/
  transform: scale(1, 1);
}

#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-main);
  border-radius: 100px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
  flex-direction: column;
  margin: 0 20px 0 0;
}

#page-top span {
  padding-top: 4px;
}

#page-top a:hover {
  background: #898989;
}

#page-top {
  position: fixed;
  right: 10px;
  z-index: 100;
  opacity: 0;
  transform: translateY(100px);
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

@media screen and (max-width: 767px) {
  #page-top {
    display: none;
  }
}

.flow_txt .list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list .icon {
  max-width: 20px;
}

.secondary {
  margin-top: 20px;
  font-size: 120%;
}

.secondary span,
.secondary2 span {
  background-color: #dec193;
  padding: 4px 8px;
  margin-right: 10px;
  color: #fff;
  font-size: 80%;
}

.secondary2 {
  margin-top: 20px;
  font-size: 120%;
}

.flow_txt .list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-flow-sec02 .promise {
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .flow01 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .flow_design01 dd {
    line-height: 1.5;
    margin-top: 1rem;
  }

  .flow01 > li {
    list-style-type: none;
    display: flex;
  }

  .flow01 dl {
    display: flex;
    gap: 0px;
    flex-direction: column;
    width: 100%;
  }

  .flow_txt .list li {
    gap: 4px;
  }

  .secondary2,
  .secondary {
    font-size: 100%;
  }
}

.access_top {
  padding-top: 3rem;
}

.access_top_contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
  gap: 40px;
}

.access_top_txt ul {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access_top_txt li:before {
  position: absolute;
  content: "01";
  top: 0;
  left: 0;
  z-index: 10;
  font-weight: 600;
  font-size: 110%;
  color: #fff;
  background: #dec193;
  padding: 4px;
}

.access_top_txt li:nth-child(2):before {
  content: "02";
}

.access_top_txt li:nth-child(3):before {
  content: "03";
}

.access_top_txt li:nth-child(4):before {
  content: "04";
}

.access_top_txt li {
  position: relative;
  padding: 0 0 0 40px;
  line-height: 1.5;
}

.access_ttl {
  font-weight: 500;
  font-family: "Noto Serif JP";
  border-bottom: 1px solid #dec193;
  margin-top: 3rem;
  font-size: 3rem;
  padding-bottom: 14px;
}

.access_top_img iframe,
.access_top iframe {
  aspect-ratio: 16 / 9;
}

.p-service-sec01.-access {
  margin: 4rem 0;
}

article#map3 {
  background-color: #f8f8f8;
}

@media screen and (max-width: 767px) {
  .access_top_contents {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2rem;
    gap: 30px;
    margin-bottom: 10vw;
  }

  .access_ttl {
    border-bottom: 1px solid #282828;
    margin-top: 1rem;
    font-size: 6vw;
    padding-bottom: 14px;
  }
}

.flow_design04.-column4 .flow04 > li {
  list-style-type: none;
  width: calc(100% / 5);
  max-width: 40rem;
  display: flex;
}

.flow_design04.-column4 .flow04 {
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .flow_design04.-column4 .flow04 > li {
    width: 90%;
  }

  .table_ttl_sp {
    font-size: 6vw;
    text-align: left;
    color: #a98750;
    padding: 0 0 0 18px;
    position: relative;
    font-family: "Noto Serif JP";
  }

  .table_price_group {
    margin-top: 2rem;
  }
}

section#\30 2 .sec_inner.sec_inner__big {
  background: #f8f8f8;
}

a.banner__link.-sub.-wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 116.8rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  position: relative;
  width: 100%;
}

a.feed-powered-by-es {
  display: none;
}

.es-header-btn,
.es-header-btn:active,
.es-header-btn:focus {
  -webkit-box-orient: vertical;
  align-items: center;
  background-color: #282828;
  border: var(--90491438);
  border-radius: var(--3ce46202);
  color: var(--6220a96a);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
  justify-content: center;
  line-height: inherit;
  overflow: hidden;
  padding: var(--0f817159);
  text-decoration: none;
  text-overflow: ellipsis;
  transition: all 0.15s ease-out;
  white-space: nowrap;
  z-index: 1;
}

.es-header-btn:hover {
  background-color: #282828;
  color: var(--6220a96a);
}

.es-collage {
  display: grid;
  gap: var(--de08556a);
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
}

/*header調整*/
.header__link {
  color: #fff;
}

.header__tel {
  color: #fff;
}

.header__time_contents {
  color: #fff;
}

.header .header__tel::before {
  background-image: url(../img/common/tel-white.svg);
}

.footer_flex .left {
  padding: 0;
  gap: 1rem;
}

.beforeafter__container {
  margin-top: 3.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 6rem;
}

.home-mv__slides .slick-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #5e5e5e8a 1%, #ffffff00 30%);
  background: #ffffff00;
}

/*home*/
.home-about__group {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: column;
}

.body__txt {
  line-height: 1.7;
  margin-top: 3rem;
  /*    font-weight: 300;*/
}

.home-about__img {
  width: 100%;
  position: relative;
  z-index: 2;
  top: 10px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home .sec01 {
  margin-top: 3rem;
  margin-bottom: 20rem;
  position: relative;
}

.home-about {
  position: relative;
  z-index: 2;
  padding-top: 12rem;
}

.home-about__body {
  width: 70%;
  z-index: 1;
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-about__logo {
  width: 20rem;
  margin-bottom: 1rem;
}

.sec03 {
  margin-top: 6rem;
  text-align: center;
  padding-bottom: 8rem;
  text-align: center;
  /*    background: #282828;*/
}

.sec03-text {
  font-size: 2.5rem;
  margin-top: 2rem;
  line-height: 1.7;
}

.sec03-text .marker {
  background: linear-gradient(transparent 60%, #ffebec 60%);
  font-weight: 500;
}

.home .sec03 .btn {
  margin-top: 5rem;
}

.sec03-text02 {
  margin-top: 3rem;
  line-height: 1.7;
}

.service_group__01 {
  margin-top: 3rem;
}

.service_group__item {
  display: flex;
  gap: 40px;
  position: relative;
  align-items: center;
}

.service_group__item:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
}

.service_group__item:nth-child(even) .ttl_sub {
  right: 55%;
}

.service_group__body {
  width: 50rem;
  /*    position: relative;*/
  /*    margin-top: 6rem;*/
}

.service_group__txt {
  line-height: 1.7;
  margin-top: 3rem;
}

.event-list {
  margin-top: 1rem;
}

.event-list li {
  padding-left: 30px;
  position: relative;
}

.event-list li:not(:last-of-type) {
  margin-bottom: 10px;
}

.event-list li:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/event_list.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.c-heading04 {
  font-size: 3rem;
}

.service_group__body h3 {
  font-size: 3.5rem;
  font-weight: 700;
}

.service_group__img img {
  object-fit: cover;
  aspect-ratio: 3/2;
}

.service_group__img {
  width: 50%;
}

.home-service_area {
  margin-top: 3rem;
  padding-bottom: 6rem;
}

.home-service__main {
  margin-top: 6rem;
}

.home-service_group__02 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
  margin-top: 2rem;
  padding-bottom: 6rem;
}

.service_group__work__img {
  position: relative;
}

.number {
  position: absolute;
  top: 0;
  font-size: 11rem;
  font-family: "Noto Sans JP", sans-serif;
  right: 2rem;
  color: #fff;
  z-index: 10;
  text-shadow: 0 0 20px #00000047;
  font-weight: 700;
}

.service_group__work__body {
  margin-top: 3rem;
  position: absolute;
  bottom: 0;
  color: #fff;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 10;
}

.service_group__work__body h3 {
  font-size: 2.4rem;
  text-align: left;
  position: relative;
}

.ttl__sub {
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.home-service_group__link {
  position: relative;
}

.home-service_group__link:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #5e5e5e8a 1%, #ffffff00 30%);
  background: #0000003d;
  z-index: 2;
  text-shadow: 0 0 20px #000000b3;
}

/*
.service_group__work__img:before {
    content: "Event";
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -5%;
    left: 0;
    color: #ffffff;
    z-index: 0;
    font-size: 80px;
    font-family: "Noto Sans JP", sans-serif;
    text-align: left;
    text-transform: uppercase;
}
.home-service_group__link:nth-child(2) .service_group__work .service_group__work__img:before {
    content: "ironwork";
}
.home-service_group__link:nth-child(3) .service_group__work .service_group__work__img:before {
    content: "Tent";
}
.home-service_group__link:nth-child(4) .service_group__work .service_group__work__img:before {
    content: "Lease/Sales";
}
*/
.ttl_sub {
  font-family: "Noto Sans JP", sans-serif;
  color: #aaaaaa;
  font-size: 8.5rem;
  opacity: 0.2;
  position: absolute;
  z-index: -1;
  right: 5%;
  top: 15%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  color: black;
  -webkit-text-fill-color: #ffffff00;
  -webkit-text-stroke: 1px #8f8f8f;
}

.ttl_sub span {
  font-size: 140%;
  padding-left: 10px;
  font-weight: 600;
}

.home-works-wrap {
  background: #f8f8f8;
}

.sec03 .home-service_area {
  margin-top: 0;
}

.sec03 .home-service__main {
  margin-top: 0rem;
}

.ttl-bottom__txt {
  margin: 0 auto;
  margin-top: 3rem;
  line-height: 1.7;
  text-align: center;
}

.home-company__area {
  margin-top: 3rem;
}

.home-company__group {
  display: flex;
  flex-direction: row-reverse;
}

.home-company__body {
  width: 50%;
  padding: 80px 50px 0;
  background: #fff;
}

.home-company__img {
  width: 50%;
}

.-white {
  color: #fff;
}

.c-heading01 span.-white {
  color: #fff;
}

.home-history__area {
  margin-top: 6rem;
  background: #fff;
  width: 100%;
  position: relative;
}

.sec04.-center .inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
}

.home-history__area .inner {
  padding: 3rem;
  position: relative;
  z-index: 0;
}

.home-history__area .inner .ttl_sub {
  bottom: 0;
  top: -50%;
  z-index: -1;
  font-weight: 500;
  font-size: 15rem;
  opacity: 0.2;
}

/*
.home-history__area .inner:before {
    position: absolute;
    content: '';
    top: 10%;
    left: 0;
    width: 0;
    height: 0;
    background-image: url(../img/home/history.png);
    background-attachment: fixed;
    width: 80%;
    z-index: -1;
    height: 80%;
    background-size: contain;
    background-repeat: no-repeat;
}
*/
.sec04.-center .home-history__area .inner {
  display: flex;
  flex-direction: row;
  padding: 3rem 0 0;
  justify-content: space-between;
  align-items: flex-end;
}

.home-history__item {
  width: 60%;
  /* margin-left: 2%; */
  padding-bottom: 4rem;
  padding: 20px 40px 60px;
}

.home-history__img {
  width: 40%;
}

h3.c-heading05 {
  font-size: 3.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

h3.c-heading05 span {
  font-size: 60%;
  padding-left: 20px;
}

.detail_ttl {
  font-size: 2.4rem;
  margin-top: 1rem;
  font-weight: 700;
}

.home-item {
  /*        background: linear-gradient(180deg, white 0%, #fdf7ee 100%);*/
  padding-bottom: 8rem;
  padding-top: 8rem;
  position: relative;
  z-index: 1;
  /* 	    margin: 8rem 0 0 0; */
  /*	background-color: rgba(255,255,255,0.3);*/
  background-blend-mode: lighten;
  background: #fff;
}

.home-item .inner {
  padding: 0;
}

.home-item__box {
  background: unset;
  width: 100%;
  padding: 0;
}

.home-item__box .btn_03 {
  margin: 0 auto;
  margin-top: 2rem;
}

.home-item__container {
  margin-top: 3.9rem;
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2rem;
}

.home-item__link {
  display: block;
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 5px rgba(160, 160, 160, 0.2);
  border-radius: 6px;
}

.home-item__thumbnail {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.home-item__thumbnail img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.home-item__time-category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  /*	padding: 1rem 1rem 0 1rem;*/
}

.home-item__time {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.home-item__category {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #282828;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1f89d6', endColorstr='#2e2b8f', GradientType=1);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.2rem;
  height: 2.6rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0rem;
  width: 14rem;
  position: absolute;
}

.home-item__title {
  line-height: 1.5;
  padding: 1rem 1rem 1rem 1rem;
}

.home-item__btn {
  margin-top: 6.1rem;
  text-align: center;
}

.home-item__btn a {
  border: 1px solid #0c3b2c;
  /*   padding-right: 1.8rem; */
}

.home-item__btn a span {
  right: 6.2rem;
}

.home-item__title span {
  background: linear-gradient(#001842, #001842) 0 100%/0 1px no-repeat;
}

main.home article.home-item {
  background: #fff;
}

article.home-item {
  padding-top: 5rem;
  background-color: #f8f8f8;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
  /*    box-shadow: 40px 40px 0px 0px #282828;*/
}

.home-item.-home_01 {
  padding-top: 0rem;
}

main.home article.home-item {
  background: #fff;
}

@media screen and (min-width: 768px) {
  .home-item__title span {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#1f89d6),
        to(#1f89d6)
      )
      0 100%/0 1px no-repeat;
    background: linear-gradient(#1f89d6, #1f89d6) 0 100%/0 1px no-repeat;
    text-decoration: none;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
  }

  .home-item__link:hover .home-item__title span {
    background-size: 100% 1px;
    /* 線の横幅を100%にする */
  }
}

@media screen and (max-width: 767px) {
  .ttl-bottom__txt {
    text-align: left;
    margin-top: 0rem;
  }

  .home-item {
    padding-bottom: 0;
    padding-top: 0;
    margin: 0rem 0 0 0;
  }

  .home-item__box {
    padding: 0vw 5vw 14vw;
    margin-bottom: 10vw;
  }

  .home-item__container {
    margin-top: 8vw;
    flex-direction: column;
    gap: 0;
  }

  .home-item__link {
    display: block;
    width: 100%;
  }

  .home-item__link:not(:first-of-type) {
    margin-top: 10vw;
  }

  .home-item__time {
    font-size: 4.5vw;
  }

  .home-item__category {
    font-size: 4.5vw;
    margin-left: 4vw;
    width: 35vw;
  }

  .home-item__title {
    font-size: 4.5vw;
    margin-left: 0;
    margin-top: 2vw;
  }

  .home-item__btn {
    margin-top: 10vw;
  }

  .home-item__btn a span {
    right: 8vw;
  }
}

.home-recruit__group {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  align-items: center;
}

.home-recruit__body {
  width: 50rem;
  padding: 20px;
}

.home-recruit__img {
  width: 55%;
}

.home-recruit__area {
  margin-top: 4rem;
}

.home .gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

section#access {
  padding-bottom: 6rem;
}

section#access .sub-shop__box.p-company-sec02__inner.inner {
  padding-bottom: 7rem;
}

.banner.-sub.-home {
  margin-top: 7rem;
  margin-bottom: 7rem;
}

@media screen and (min-width: 768px) {
  .home-service_group__link:hover {
    /*    opacity: 0.6;*/
    transition: all 0.3s ease-in-out;
  }

  .home-service_group__link:hover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #5e5e5e8a 1%, #ffffff00 30%);
    background: #000000c2;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  .home-service_group__link:hover:after {
    transition: all 0.3s ease-in-out;
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../img/common/service_menu.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    align-content: center;
    bottom: 5%;
    right: 0;
    transform: translate(-50%, -50%);
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
}

@media screen and (max-width: 767px) {
  .slick-slider {
    margin: 13% 0 0;
  }

  .home .sec01 {
    margin-top: 3rem;
    margin-bottom: 10rem;
  }

  .home-about__body {
    width: 100%;
    margin-left: 0;
    z-index: 1;
    padding: 0;
  }

  .home-about__img {
    width: 100%;
    position: relative;
    z-index: 2;
    top: 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .service_group__item {
    flex-direction: column;
    gap: 2rem;
  }

  .ttl_sub {
    font-size: 18vw;
    opacity: 0.4;
    z-index: 7;
    right: 0;
    top: -60px;
  }

  .service_group__item:nth-child(even) .ttl_sub {
    right: 0;
  }

  .service_group__img {
    width: 100%;
  }

  .service_group__body {
    width: 100%;
    position: relative;
    z-index: 0;
    margin-top: 0;
  }

  .service_group__item:nth-child(even) {
    display: flex;
    flex-direction: column;
  }

  .service_group__item + .service_group__item {
    margin-top: 5rem;
  }

  .home-service_group__02 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 0rem;
    padding-bottom: 0rem;
  }

  .home-item__container {
    display: grid;
    gap: 10px;
    margin-bottom: 0rem;
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }

  .home-item__category {
    font-size: 4.5vw;
    margin-left: 0;
    width: 50vw;
  }

  .home-company__group {
    display: flex;
    flex-direction: column-reverse;
  }

  .home-company__body {
    width: 100%;
    padding: 20px 4vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-company__img {
    width: 100%;
  }

  .home-history__area {
    margin-top: 3rem;
  }

  .sec04.-center .home-history__area .inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .home-history__item {
    width: 100%;
    padding: 2rem 4vw 4rem;
  }

  .home-history__img {
    width: 100%;
  }

  .home-history__area .inner .ttl_sub {
    bottom: 0;
    top: -30%;
    z-index: 0;
    font-weight: 500;
    font-size: 7rem;
    opacity: 0.2;
  }

  .home-recruit__group {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
    flex-direction: column-reverse;
  }

  .home-recruit__body {
    width: 100%;
    padding: 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .home-recruit__img {
    width: 100%;
    padding: 0 4vw;
  }

  .service_group__work__img:before {
    font-size: 4rem;
  }

  .number {
    font-size: 6rem;
    right: 1rem;
  }

  .ttl__sub {
    font-size: 3rem;
    text-transform: uppercase;
    left: 1rem;
  }

  .home-recruit__area {
    margin-top: 0;
  }

  section#access {
    padding-bottom: 0rem;
  }
}

@media screen and (min-width: 768px) {
  section#access {
    padding-bottom: 0rem;
  }
}

@media screen and (min-width: 1168px) {
  section#access {
    padding-bottom: 6rem;
  }
}

/*company*/
.timeline {
  /*  max-width: 900px;*/
  width: 100%;
  /*  margin:50px auto;*/
  padding: 0 30px;
  margin-top: 4rem;
}

.timeline li {
  position: relative;
  list-style: none;
  padding: 0 0 20px 0;
}

.timeline dd strong {
  display: block;
  /*  padding:10px 0;*/
  font-size: 2rem;
  font-weight: 500;
}

.border-line {
  position: absolute;
  left: 0.55em;
  top: 0;
  width: 4px;
  height: 0;
  background: #d1d1d1;
}

.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  background: url(../img/common/timeline.svg);
  background-repeat: no-repeat;
}

.timeline_img_dd {
  display: grid;
  grid-template-columns: 0.3fr 1fr 1fr;
  margin-top: 2rem;
}

.timeline_img_dd img {
  padding-left: 3%;
}

.timeline_txt_dd {
  display: grid;
  grid-template-columns: 0.3fr 2fr;
  /*    align-items: center;*/
  margin-top: 2rem;
}

.timeline_year {
  font-size: 70%;
  font-weight: 900;
  color: #282828;
}

.timeline dl {
  margin: 0 0 20px 3em;
  display: grid;
  grid-template-columns: 0.25fr 2fr;
  display: flex;
  flex-direction: column;
}

.timeline dt {
  font-size: 3rem;
  font-weight: 600;
  color: #282828;
}

.timeline p {
  line-height: 1.7;
}

.timeline_day {
  font-weight: 600;
  font-size: 120%;
}

@media screen and (max-width: 767px) {
  .timeline dl {
    grid-template-columns: 1fr;
  }

  .timeline_img_dd,
  .timeline_txt_dd {
    grid-template-columns: 1fr;
  }

  .timeline dl {
    gap: 10px;
  }

  .timeline dd strong {
    padding-bottom: 10px;
  }

  .timeline_img_dd img {
    padding-left: 0;
    padding-top: 10px;
  }

  .timeline {
    padding: 0 10px;
  }

  .timeline_txt_dd,
  .timeline_img_dd {
    margin-top: 0;
  }

  .company_access {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3%;
    margin-top: 1rem;
  }

  .access_info li {
    grid-template-columns: 1fr 4fr;
    line-height: 1.7;
  }

  .timeline dt {
    font-size: 2.4rem;
  }
}

.service_top {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.service_ttl_img {
  width: 80%;
}

.service_ttl_img img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.c-heading04 {
  font-size: 3rem;
  margin-left: 2.4rem;
  margin-right: -250px;
  display: flex;
  flex-direction: column;
}

.c-heading04 .heading_sub {
  position: relative;
  font-size: 8rem;
  text-transform: uppercase;
  font-family: "Noto Sans JP", sans-serif;
  color: #282828;
  opacity: 0.2;
  font-weight: 700;
}

.service_intro {
  display: flex;
  gap: 40px;
  position: relative;
  justify-content: space-between;
  align-items: center;
}

.service_intro_img {
  display: flex;
  position: relative;
  z-index: 10;
  width: 70%;
  justify-content: flex-end;
}

.p-service-sec03,
.p-service-sec04,
.p-service-sec05,
.p-service-sec06 {
  margin-top: 8rem;
}

.-bg_color {
  background: #f8f8f8;
  padding: 8rem 0;
}

.service_intro_body {
  width: 50%;
  margin-left: 2.4rem;
}

.service_intro_txt {
  line-height: 1.7;
  margin-top: 3rem;
}

.service_intro_img_1 {
  position: relative;
  top: 0;
  right: 0;
  z-index: 10;
  width: 80%;
}

.service_intro_img_1 img {
  object-fit: cover;
  height: 45rem;
  width: 100%;
  right: 0;
  position: relative;
}

.service_intro_img_2 {
  position: absolute;
  bottom: -10%;
  left: 0;
  z-index: 11;
}

.service_intro_img_2 img {
  object-fit: cover;
  height: 25rem;
  width: 100%;
}

.service_area_body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.service_area_ttl {
  text-align: center;
  font-size: 2rem;
}

.service_area__text {
  line-height: 1.7;
}

.service_area_heading {
  margin-top: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.service_area_txt {
  margin-top: 1rem;
}

.c-heading05 {
  font-size: 3rem;
}

.service_works_top .service_area__img {
  width: 50%;
}

.service_works_text {
  line-height: 1.7;
  width: 50rem;
}

.service_works_txt {
  margin-top: 1rem;
}

.service_works_cont {
  display: flex;
  align-items: center;
  gap: 40px;
}

.service_works_cont:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
}

.service_works_text h3 {
  font-size: 3rem;
  font-weight: 700;
}

.service_works_area.-work02 {
  margin-top: 5rem;
}

.stepbar {
  margin: 0 auto;
  width: 80%;
}

.stepbar .stepbarwrap {
  margin: 2em 0;
  position: relative;
}

.stepbar .stepbarwrap .steptitle {
  display: inline-flex;
  align-items: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle {
  display: inline-block;
  width: 3em;
  height: 3em;
  content: "";
  border-radius: 50%;
  background-color: #282828;
  color: #fff;
  text-align: center;
}

.stepbar .stepbarwrap .steptitle .stepcircle span {
  display: inline-block;
  line-height: 0em;
  font-size: 1.4em;
  font-weight: bold;
  position: relative;
  top: 0.8em;
}

.stepbar .stepbarwrap .steptitle .title {
  margin: 0.5em;
  font-weight: bold;
  font-size: 1.4em;
}

.stepbar .stepbarwrap .steptxt {
  padding-left: 3.5em;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.stepbar .stepbarwrap .steptxt .txt {
  font-size: 0.9em;
  line-height: 1.7;
}

.stepbar .stepbarwrap .stepline {
  width: 1px;
  height: calc(100% + 1em);
  background-color: #282828;
  position: absolute;
  top: 1em;
  left: 1.5em;
  z-index: -1;
}

.stepbarwrap:last-of-type .stepline:last-of-type {
  display: none;
}

@media screen and (max-width: 767px) {
  .stepbar {
    width: 100%;
  }

  .stepbar .stepbarwrap .steptxt {
    grid-template-columns: 1fr;
  }

  .service_intro_img_1 img {
    height: 30rem;
  }

  .p-service-sec03,
  .p-service-sec04,
  .p-service-sec05,
  .p-service-sec06 {
    margin-top: 0rem;
  }

  .p-service-sec07 {
    padding-bottom: 2rem;
  }

  .service_intro_img_2 img {
    height: auto;
    aspect-ratio: 1 / 1;
    width: 18rem;
  }

  .service_intro_img_2 {
    aspect-ratio: 1 / 1;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 3rem;
}

.p-service-sec07 {
  background: #282828;
}

.service_works_list {
  margin-top: 3rem;
}

.p-service-sec06 {
  padding-bottom: 12rem;
}

.p-service-sec07 {
  background: #282828;
  padding-bottom: 8rem;
}

.c-heading03.-white {
  color: #fff;
}

.c-heading03.-white .heading_sub::before {
  background: #fff;
}

.p-service-sec08 {
  padding: 8rem 0 8rem;
}

.p-service-sec09 {
  margin-top: 0;
  background: #f8f8f8;
  padding: 8rem 0 10rem;
}

.p-service-sec09_area {
  margin-top: 3rem;
}

.p-service-sec08_ttl {
  font-size: 2.4rem;
  background: #282828;
  color: #fff;
  padding: 10px;
}

.p-service-sec08_area {
  margin-top: 3rem;
}

.p-service-sec08__img {
  margin-top: 3rem;
}

.p-service-sec08_txt {
  line-height: 1.7;
  margin-top: 2rem;
}

.home-item__box.-service {
  display: flex;
  flex-direction: column;
}

.home-item.-service {
  box-shadow: 40px 40px 0px 0px #28282800;
}

.home-item.-service {
  box-shadow: 40px 40px 0px 0px #28282800;
  padding-top: 0;
}

.works_link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  row-gap: 0;
  margin-top: 2rem;
}

.works_link .btn_03 {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .service_intro {
    display: flex;
    gap: 20px;
    position: relative;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
  }

  .service_intro_body {
    width: 100%;
    margin-left: 0;
    padding-left: 4vw;
    padding-right: 4vw;
    margin-top: 3rem;
  }

  .service_intro_img {
    width: 100%;
  }

  .p-service-sec03,
  .p-service-sec05 {
    margin-top: 3rem;
    background: #f8f8f8;
    padding: 0rem 0 6rem;
  }

  .p-service-sec04,
  .p-service-sec06 {
    padding: 0rem 0 3rem;
  }

  .service_ttl_img {
    width: 80%;
  }

  .c-heading04 .heading_sub {
    font-size: 4rem;
  }

  .service_ttl_img img {
    height: 200px;
  }

  .service_works_cont {
    flex-direction: column;
  }

  .service_works_top .service_area__img {
    width: 100%;
  }

  .service_works_text {
    line-height: 1.7;
    width: 100%;
  }

  .service_works_text h3 {
    font-size: 6vw;
  }

  .service_works_cont:nth-child(even) {
    display: flex;
    flex-direction: column;
    margin-top: 4rem;
  }

  .service_area_body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 2rem;
  }

  .service_area_heading {
    margin-top: 1rem;
    font-size: 6vw;
    font-weight: 700;
  }

  .service_works_cont {
    gap: 1rem;
  }

  .works_link {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 2rem;
  }

  .works_link .btn_03 {
    margin-top: 0;
    margin-bottom: 0;
  }

  .banner.-sub.-home {
    margin-top: 3rem;
    margin-bottom: 0rem;
  }

  .home-service_area {
    margin-top: 0;
    padding-bottom: 0;
  }

  .inner-wide {
    width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    max-width: 100%;
  }

  h3.c-heading05 span {
    font-size: 60%;
    padding-left: 0;
    display: block;
    padding-top: 10px;
  }

  .service_group__body h3 {
    font-size: 6vw;
  }

  .service_group__work__body h3 {
    font-size: 4vw;
    text-align: left;
    position: relative;
  }

  .service_group__work__body {
    margin-top: 1rem;
    left: 1.5rem;
    bottom: -2rem;
  }

  .p-service-sec06 {
    padding-bottom: 0rem;
  }

  .p-service-sec08 {
    padding: 4rem 0 8rem;
  }

  .p-service-sec09 {
    margin-top: 0;
    padding: 4rem 0 4rem;
  }

  .p-service-sec06 .item_category {
    margin-top: 2rem;
  }

  .service_works_list {
    margin-top: 2rem;
  }

  .c-heading05 {
    font-size: 6vw;
  }
}

.news {
  position: relative;
  bottom: 90px;
  width: 60%;
  position: absolute;
  display: flex;
  justify-content: center;
}

.news .p-home-sec01__box {
  padding: 10px 20px 10px 30px !important;
  display: grid;
  grid-template-columns: 1fr 2fr 6fr;
  align-items: center;
  gap: 20px;
  background: url(../img/common/bg002.jpg);
  background-size: cover;
  background-attachment: fixed;
  background: #fff;
  border-radius: 6px 6px 0 0;
}

.news h2.c-heading01.c-heading01_center {
  font-size: 2rem;
  padding-top: 0;
  color: #141414;
}

.news_more {
  font-size: 90%;
}

.mv_heading {
  text-transform: uppercase;
  font-size: 2.5rem;
  text-align: center;
}

.mv_heading span {
  font-weight: 700;
}

.home-item-wrap {
  padding: 0 30px;
}

/*== 線の上を別の線が伸びる */
.news_more {
  position: relative;
  color: #282828;
  padding: 10px 30px 10px 20px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 100%;
  margin-top: 0;
  text-transform: uppercase;
}

/*線の設定*/
.news_more::before,
.news_more::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #282828;
  width: 100%;
  height: 1px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

/*hover時に伸びる線の形状*/
.news_more::after {
  width: 0;
  background: #282828;
}

/*hover時に100%に伸びる*/
.news_more:hover::after {
  width: 100%;
}

/*矢印の設定*/
.news_more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 50%;
  right: 15px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #282828;
  border-right: 1px solid #282828;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

/*hover時に矢印が移動*/
.news_more:hover span::after {
  right: 10px;
}

.news_more span:hover {
  opacity: 0.75;
  transition: all 0.3s;
}

@media screen and (min-width: 1168px) {
  .news {
    width: 80%;
    bottom: 200px;
  }
}

@media screen and (min-width: 768px) {
  .news {
    width: 80%;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .news {
    bottom: 0;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
  }

  .news .p-home-sec01__box {
    padding: 10px 20px 10px 30px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 6px 6px 0 0;
  }

  .news .c-news__ttl {
    font-size: 4vw;
  }

  .news_heading_group.sp-only {
    display: flex;
    margin-top: 2rem;
    align-items: center;
    gap: 20px;
  }
}

.item_category_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 3rem;
  gap: 2px;
}

.category__img {
  height: auto;
  transition: transform 0.3s ease;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: all 0.3s ease-in-out;
}

.category__group {
  cursor: pointer;
  /* max-width: 500px; */
  overflow: hidden;
  width: 100%;
  background-color: #fff;
  background-blend-mode: overlay;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .category__img:hover {
    transform: scale(1.1);
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }

  .category__img:hover:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #5e5e5e8a 1%, #ffffff00 30%);
    background: #000000c2;
    transition: all 0.3s ease-in-out;
  }
}

.category__txt {
  position: absolute;
  z-index: 100;
}

.category__txt {
  position: absolute;
  z-index: 100;
  color: #fff;
  font-size: 2.3rem;
  bottom: 0;
  text-align: center;
  font-weight: 700;
}

p.category__txt {
  background: #0000009c;
  width: 100%;
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .item_category_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 0rem;
  }

  .category__txt {
    font-size: 1.4rem;
    text-align: center;
  }
}

/*
.related_links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-content: center;
    justify-items: center;
    background: #282828;
    padding: 0rem 10rem 3rem;
}
*/
.related__link {
  width: 100%;
  background: #fff;
  border-radius: 4px;
}

.related__img:hover {
  opacity: 0.6;
}

.footer_top .sec_inner {
  padding: 5rem 10px 6rem;

  @media screen and (max-width: 767px) {
    padding: 6rem 0 4rem;
  }
}

.sec_inner.-related {
  background: #282828;
  padding: 0;
}

.related_links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #282828;
  justify-items: center;
  padding: 0rem 10rem 3rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 116.8rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  justify-content: center;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .related_links {
    grid-template-columns: 1fr;
  }
}

/*商品紹介　ブロック調整*/
/*-------- 色指定 ---------*/
:root {
  --f-text: #242424;
  /*文字の色*/
  --f-line: #242424;
  /*線の色*/
  --f-bg1: #d7d7d7;
  /*タイトル行の背景色*/
  --f-bg2: #ffffff;
  /*ストライプの背景色*/
}

.item-table table {
  color: var(--f-text);
  text-align: center;
  border: 2px solid var(--f-line);
  background-color: white;
}

.item-table table th {
  border: 1px dotted white;
  text-align: center;
}

.item-table thead {
  border-bottom: 1px solid var(--f-line);
}

.item-table table td {
  border: 1px dotted var(--f-line);
  text-align: center;
  padding: 14px 0;
}

.item-table thead {
  color: white;
}

.item-table th {
  background-color: var(--f-bg1);
}

.item-table tr:nth-child(even) {
  background-color: var(--f-bg2);
}

.item_p {
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sub-single__box.-item {
  max-width: 100%;
}

.wp-block-table .has-fixed-layout tr:first-child {
  background: var(--f-line);
  color: #fff;
}

.block-editor-content p {
  line-height: 1.7;
}

/*h2見出し*/
main h2.wp-block-heading {
  color: #242424;
  font-size: 20px;
  padding: 20px;
  display: block;
  border-top: 2px solid #242424;
  border-bottom: 2px solid #242424;
  margin-bottom: 1rem;
  margin-top: 3rem;
  font-weight: 600;
}

/*H3見出し*/
main h3.wp-block-heading {
  color: #242424;
  font-size: 18px;
  padding: 10px 20px 10px 40px;
  display: block;
  position: relative;
  margin-bottom: 1rem;
  margin-top: 3rem;
  font-weight: 600;
}

main h3.wp-block-heading:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  border-left: 2px solid #242424;
  border-right: 2px solid #242424;
  transform: skewX(-15deg);
  margin-bottom: 1rem;
  font-weight: 600;
}

/*H4見出し*/
main h4.wp-block-heading {
  border-left: 10px double #242424;
  display: block;
  font-size: 16px;
  padding: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 3rem;
  font-weight: 600;
}

.wp-block-list li {
  padding-left: 2rem;
  line-height: 1.7;
  position: relative;
}

ul.wp-block-list {
  margin-top: 3rem;
}

.wp-block-list li:before {
  position: absolute;
  content: "";
  top: 0.5em;
  left: 0;
  width: 12px;
  height: 12px;
  background: #85c667;
  /*   background-image: url(../img/common/item_list.svg); */
  background-attachment: fixed;
  z-index: 110;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.item_info {
  font-weight: 600;
  font-size: 2rem;
  background: #f8f8f8;
  padding: 2rem;
}

@media screen and (max-width: 767px) {
  .item_info {
    font-size: 4.5vw;
    padding: 1rem;
  }
}

/*カルーセル*/
.xslider_wrap {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 10rem;
  /*
	background: #e2ffc4;
	box-shadow: 0 2px 5px #646464;
*/
}

.xslider1,
.xslider2 {
  display: inline-flex;
  flex: none;
  animation: xslider 30s 2s linear infinite;
}

/*
.xslider_wrap:hover div {
	animation-play-state: paused!important;
}
*/
.xslider1 div,
.xslider2 div {
  flex: none;
  /*  	padding: 10px;*/
}

/*
.xslider1 div:hover , .xslider2 div:hover {
	transform: translateY(-5px);
}
*/
.sec05#blooming .xslider_wrap {
  margin-bottom: 5rem;
}

@keyframes xslider {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.xslider_wrap img {
  width: 180px;
}

.sec03 .sec_inner.inner {
  margin-top: 6rem;
  /*    background: #fff;*/
  border-radius: 10px;
  padding-bottom: 6rem;
}

@media screen and (max-width: 767px) {
  .sub-recruit.sub-bg .inner {
    padding: 0;
  }

  .xslider_wrap img {
    width: 120px;
  }

  .xslider_wrap {
    margin-top: 0rem;
    margin-bottom: 4rem;
  }
}

.sub-recruit__box {
  max-width: 1000px;
  margin: 0 auto;
}

.job_name {
  background: var(--color-main);
  color: #fff;
  padding: 20px;
  font-size: 2rem;
}

.sub-recruit__image {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding-top: 4px;
}

.sub-shop__container + .sub-shop__container {
  margin-top: 6rem;
}

h2.c-heading01.c-heading01_center {
  padding-top: 0rem;
  padding-bottom: 3rem;
}

.xslider_wrap.-recruit {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 0rem;
}

.recruit_link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 3rem;
}

.recruit_link a {
  background: #242424;
  padding: 20px 10px;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  border-radius: 4px;
}

.recruit_link a:hover {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

.recruit_txt {
  line-height: 1.7;
  margin-top: 3rem;
  text-align: center;

  @media screen and (max-width: 767px) {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .recruit_link {
    grid-template-columns: 1fr;
  }
}

.btn_04 {
  position: relative;
  color: #fff;
  padding: 20px 30px 20px 30px;
  display: inline-block;
  text-decoration: none;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  margin: 0 auto;
  margin-top: 3rem;
  text-transform: uppercase;
  background: #242424;
  width: 80%;
  border: 1px solid #242424;
  left: 50%;
  text-align: center;
  transform: translate(-50%, 0%);
}

.sub-archive__top.-item_top {
  display: flex;
  justify-content: flex-end;
}

.item-category_group {
  margin-top: 8rem;
}

.item-category_group {
  padding: 3rem;
}

.item_category.-item_top .item_category_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 3rem;
  gap: 2px;
}

.item_category.-item_top .category__txt {
  position: absolute;
  z-index: 100;
  color: #fff;
  font-size: 100%;
  bottom: 0;
  text-align: center;
}

.item-category_group_top {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
}

.btn_04:hover {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
  color: #282828;
  background: #e8e8e8;
}

@media screen and (max-width: 767px) {
  .item_category.-item_top .item_category_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
    gap: 2px;
  }

  .item-category_group {
    padding: 0;
  }

  section.sec03.-center.-home_02 .inner {
    padding: 0;
  }

  .btn_04 {
    text-align: center;
    padding: 10px;
    width: 100%;
    font-size: 4vw;
  }
}

.home-works .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  box-sizing: border-box;
  bottom: -40px;
  position: relative;
}

.home-works .slick-dots li {
  width: 100%;
  height: 5px;
  background-color: #ebebeb;
  margin: 0;
}

.bg-blue .slick-dots li {
  background-color: #fff;
}

.home-works .slick-dots li.slick-active {
  background-color: #262830;
}

.home-works .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  color: transparent;
  border: none;
  background: transparent;
}

.home-works .slick-dots li button:before {
  content: none;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: absolute;
  border: 1px solid #222;
}

.slick-prev:before,
.slick-next:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: solid 2px #282828;
}

.slick-prev:before {
  border-left: none;
  border-bottom: none;
  transform: rotate(225deg);
}

.slick-next:before {
  border-right: none;
  border-top: none;
  transform: rotate(225deg);
}

.category-list ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.category-list li {
  color: #fff;
  background: #282828;
  padding: 10px 15px;
}

.sub-archive__category.-blog {
  background: transparent;
  /*    border: 1px solid #646464;*/
  color: #646464;
  padding: 5px 10px;
  display: inline-block;
}

.single-works .sub-single__main {
  border-top: none;
}

.single-works .sub-single__title {
  text-align: center;
}

.single-works .sub-archive__category.-blog {
  padding: 0;
  font-size: 14px;
  display: flex;
  gap: 10px;
}

.single-works .flex-item {
  gap: 4rem;
}

.p-post-article__table th {
  color: #646464;
  width: 5.875rem;
  margin-right: 2rem;
  text-align: left;
  font-size: 14px;
}

.p-post-article__table tr {
  padding: 1.125rem 0;
  display: block;
  border-top: 1px solid #646464;
  font-size: 16px;
  width: 100%;
}

.p-post-article__table tr:first-child {
  border-top: none;
}

.p-post-article__table {
  width: 100%;
}

.single-works .sec_ttl {
  text-align: center;
  margin-top: 5rem;
}

.gallery-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.875rem;
  margin-top: 2.875rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid;
}

.gallery-wrap img {
  aspect-ratio: 100 / 100;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-post-article__table tr {
    width: 100%;
  }

  .single-works .flex-item {
    gap: 1rem;
  }

  .gallery-wrap {
    grid-template-columns: 1fr;
  }

  .category-list ul {
    gap: 1rem;
  }
}

.es-header-btn,
.es-header-btn:active,
.es-header-btn:focus {
  -webkit-box-orient: vertical;
  align-items: center;
  background-color: #001842;
  border: var(--90491438);
  border-radius: var(--3ce46202);
  color: var(--6220a96a);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
  justify-content: center;
  line-height: inherit;
  overflow: hidden;
  padding: var(--0f817159);
  text-decoration: none;
  text-overflow: ellipsis;
  transition: all 0.15s ease-out;
  white-space: nowrap;
  z-index: 1;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
.box {
  opacity: 0;
}

/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-about__bg {
  position: absolute;
  top: 0;
  z-index: 1;
}

.home .sec01 .inner-wide:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  /*
    background: linear-gradient(180deg, #5e5e5e8a 1%, #ffffff00 30%);
    background: #f8f8f8;
*/
  z-index: -2;
}

.home-about__lead {
  font-size: 3rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  color: #3b3b3b;
}

.home-about__sideimg {
  position: absolute;
  top: auto;
  left: auto;
  right: auto;
  z-index: 1;
}

.home-about__sideimg.-left {
  left: 0%;
  width: 28%;
  top: 5%;
}

.home-about__sideimg.-right {
  right: 0;
  width: 30%;
  top: 0%;
}

.home-about__sideimg.-right_bottom {
  top: 80%;
  width: 28%;
  right: 0;
}

.home-about__sideimg.-left_bottom {
  top: 78%;
  width: 33%;
  left: 0%;
}

@media screen and (max-width: 767px) {
  .home-about__sideimg.-right {
    right: 0;
    width: 30%;
    top: 15%;
  }

  .home-about__lead {
    font-size: 5.5vw;
  }

  .home-about__sideimg.-left_bottom {
    top: 90%;
    width: 40%;
    left: 0%;
  }

  .home-about__sideimg.-right_bottom {
    right: -15%;
    top: 80%;
    width: 50%;
  }

  .home-about__sideimg.-left {
    left: 0;
    width: 40%;
    top: 5%;
  }

  .home-about__body .btn_03 {
    margin-bottom: 2rem;
    margin-top: 1rem;
  }

  .sec02.-center.-home_02 {
    padding: 4rem 0 0;
  }

  .service_group__01 {
    margin-top: 0;
  }

  .home-works-wrap {
    background: #f8f8f8;
    padding: 4rem 0 0;
  }

  .home-works__box .btn_03 {
    margin-top: 6rem;
  }

  /*
    .sec03 {
        margin-top: 5rem;
    }
*/
  article.home-item {
    padding-top: 4rem;
  }

  .btn_03 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .detail_ttl {
    font-size: 6vw;
    margin-top: 1rem;
  }

  .service_group__txt {
    margin-top: 2rem;
  }

  .p-service-sec07 {
    padding-bottom: 3rem;
  }

  .p-service-sec08_area {
    margin-top: 1rem;
  }

  .home-item-wrap {
    padding: 0;
  }
}

.home-service__top_icon {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 116.8rem;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.home-service__top_icon_cont img {
  width: 20rem;
}

.home-service__top_icon_cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon_cont_no {
  position: absolute;
  top: 0;
  left: 5%;
  font-size: 8rem;
  font-weight: 600;
  color: black;
  -webkit-text-fill-color: #ffffff00;
  -webkit-text-stroke: 2px #bebebe;
  opacity: 0.4;
}

.advantage_ttl {
  margin-top: 2rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.home-service_cont {
  margin-top: 5rem;
}

.home-service__body {
  width: 70%;
  z-index: 1;
  padding-left: 10rem;
  padding-right: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .home-service__body {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-top: 10vw;
  }

  .home-service__top_icon {
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 0;
  }

  .home-service__top_icon_cont {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .home-service__top_icon_cont img {
    width: 10rem;
    margin-left: 20px;
  }

  .icon_cont_no {
    position: absolute;
    top: -20px;
    left: 0%;
    font-size: 4rem;
    font-weight: 600;
    color: black;
    -webkit-text-fill-color: #ffffff00;
    -webkit-text-stroke: 2px #bebebe;
    opacity: 0.4;
  }
}

.sub-single__number {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  align-items: center;
}

.sub-single__stock {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  align-items: center;
}

.sub-single__number .sub-single__label {
  color: #fff;
  padding: 0.35rem 0.7rem;
  font-size: 1.2rem;
  background: #282828;
}

.sub-single__stock .sub-single__label {
  color: #fff;
  padding: 0.35rem 0.7rem;
  font-size: 1.2rem;
  background: #282828;
}

.sub-archive__number {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  align-items: center;
  position: absolute;
  bottom: 0;
  background: #282828;
  width: 100%;
  color: #fff;
  padding: 6px;
}

.sub-archive__stock {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  align-items: center;
}

.sub-archive__label {
  background: #282828;
  color: #fff;
  padding: 0.35rem 0.7rem;
  font-size: 1.2rem;
}

/*
.home .c-heading01 {
    position: relative;
}
.home .c-heading01:before {
    position: absolute;
    content: '';
    top: 0%;
    transform: translate(-50%, -50%);
    left: 50%;
    background-image: url(../img/common/event_list.svg);
    background-attachment: fixed;
    width: 60px;
    z-index: 110;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
}
*/

.home .sec01 {
  margin-top: 3rem;
  padding-bottom: 10rem;
  position: relative;
  background-color: #f8f8f8;
  background-image: url(../img/home/heading01.png);
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
}

.home .sec02.-center.-home_02 {
  position: relative;
  background-image: url(../img/home/heading02.png);
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
  background-size: contain;
  background-repeat: no-repeat;
}

.home-works-wrap {
  position: relative;
  background-image: url(../img/home/heading03.png);
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
}

.home .sec03.-center {
  position: relative;
  background-image: url(../img/home/heading04.png);
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
}

article.home-item {
  position: relative;
  background-image: url(../img/home/heading05.png);
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
}

.sec04.-center .inner {
  position: relative;
  background-image: url(../img/home/heading06.png);
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
}

.home .sec05.-center {
  position: relative;
  background-image: url(../img/home/heading07.png);
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
}

.footer_top {
  position: relative;
  background-image: url(../img/home/heading08.png);
  background-repeat: no-repeat;
  background-position: top center;
  z-index: 10;
  background: #f9f1e5;
}

@media screen and (max-width: 767px) {
  .home .sec01 {
    background-position: top 5% center;
    z-index: 1;
    background-size: contain;
    margin-bottom: 3rem;
    background-image: url(../img/home/heading01_sp.png);
  }

  .home .sec02.-center.-home_02 {
    background-position: top 2% center;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/home/heading02_sp.png);
  }

  .home-works-wrap {
    background-position: top 3% center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/home/heading03_sp.png);
  }

  .home .sec03.-center {
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/home/heading04_sp.png);
    padding-top: 5rem;
    margin-top: 0;
    padding-bottom: 0;
  }

  article.home-item {
    background-size: contain;
    background-repeat: no-repeat;
  }

  .sec04.-center .inner {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top 2%;
    background-image: url(../img/home/heading06_sp.png);
  }

  .home .sec05.-center {
    background-size: contain;
    background-position: top center;
    background-image: url(../img/home/heading07_sp.png);
  }

  .footer_top {
    background-repeat: no-repeat;
    background-position: top 2% center;
    background-size: contain;
    background-image: url(../img/home/heading08_sp.png);
  }
}

.home {
  .home-mv {
    .home-mv__schedule {
      position: absolute;
      z-index: 5;
      right: 0;
      bottom: -4%;
      background-color: var(--color-yellow);
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      padding: 27px 20px;
      display: flex;
      gap: 19px;
      transition: 0.4s;

      @media screen and (max-width: 767px) {
        padding: 4vw 8vw 4vw 6vw;
        gap: 10px;
        bottom: -10%;
      }

      .textArea {
        .date {
          font-size: 16px;
          line-height: 1.5;
          font-weight: bold;

          @media screen and (max-width: 767px) {
            font-size: 12px;
          }
        }

        .tit {
          font-size: 16px;
          font-weight: 500;
          line-height: 1.5;
          margin-top: 5px;

          @media screen and (max-width: 767px) {
            font-size: 12px;
          }
        }
      }

      .imageArea {
        margin-top: -122px;
        aspect-ratio: 1 / 1.4141;

        @media screen and (max-width: 767px) {
          margin-top: -50px;
        }

        img {
          width: 139px;

          @media screen and (max-width: 767px) {
            width: 80px;
          }
        }
      }
    }
  }

  .p-about {
    padding: 8rem 0 10rem;
    background: #e5f0df;
    border-radius: 100px;
    margin-top: 4rem;

    .p-about-box {
      position: relative;

      .p-about-box__bg {
        position: absolute;
        width: 378px;

        @media screen and (max-width: 1050px) {
          width: 200px;

          @media screen and (max-width: 767px) {
            width: 100px;
          }
        }

        &.p-about-box__bg--01 {
          bottom: 0;
          left: -100px;

          @media screen and (max-width: 1050px) {
            bottom: -56px;
            left: 20px;

            @media screen and (max-width: 767px) {
              left: 0;
              bottom: -56px;
            }
          }
        }

        &.p-about-box__bg--02 {
          bottom: 0;
          right: -100px;

          @media screen and (max-width: 1050px) {
            right: 20px;
            bottom: -56px;

            @media screen and (max-width: 767px) {
              right: 0;
              bottom: -56px;
            }
          }
        }
      }

      .c-textA {
        max-width: 800px;
        margin: 40px auto 0;
      }

      .p-about-box__btnArea {
        margin-top: 60px;
        display: flex;
        justify-content: center;
      }
    }
  }

  .p-guide {
    padding: 40px 0 80px;
    background-color: var(--color-bg);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;

    .c-textA {
      max-width: 800px;
      margin: 40px auto 0;
    }

    .p-guide-box {
      margin-top: 60px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;

      @media screen and (max-width: 768px) {
        gap: 20px;

        @media screen and (max-width: 767px) {
          grid-template-columns: repeat(1, 1fr);
          gap: 30px;
        }
      }

      .p-guide-box__link {
        position: relative;
        border-radius: 20px;
        overflow: hidden;

        &:hover {
          img {
            transform: scale(1.1);
          }
        }

        img {
          transition: 0.4s;
          width: 100%;
        }

        .tit {
          position: absolute;
          z-index: 3;
          bottom: 15px;
          left: 50%;
          transform: translateX(-50%);
          color: #fff;
          font-size: 28px;
          font-weight: bold;
          margin: 0;
          width: 100%;
          text-align: center;

          @media screen and (max-width: 768px) {
            font-size: 2em;

            @media screen and (max-width: 767px) {
              font-size: 1.4em;
              width: auto;
            }
          }
        }
      }
    }

    .p-guide__btnArea {
      margin-top: 60px;
      display: flex;
      justify-content: center;
    }
  }

  .p-news {
    padding: 60px 0 40px;
    .p-news-box {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      height: 300px;
      overflow-y: scroll;

      @media screen and (max-width: 768px) {
        gap: 20px;

        @media screen and (max-width: 767px) {
          grid-template-columns: repeat(1, 1fr);
        }
      }
    }

    .p-news__btnArea {
      margin-top: 60px;
      display: flex;
      justify-content: center;
    }
  }

  .p-recruit {
    .p-recruit-box {
      position: relative;

      @media screen and (max-width: 768px) {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 30px;
      }

      .p-recruit-box__textArea {
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 2%;
        background-color: var(--color-green);
        padding: 40px 75px 40px 54px;
        border-radius: 30px;
        width: 42%;
        transform: translateY(-50%);

        @media screen and (max-width: 768px) {
          width: 100%;
          padding: 30px 20px;
          position: relative;
          top: auto;
          left: auto;
          transform: none;
          margin-top: -30px;
        }

        .c-titA {
          align-items: flex-start;
        }

        .c-textA {
          margin-top: 40px;
        }

        .imgBg {
          position: absolute;
          top: 40px;
          right: 0;

          @media screen and (max-width: 767px) {
            top: 10px;
          }

          img {
            width: 200px;

            @media screen and (max-width: 767px) {
              width: 100px;
            }
          }
        }

        .btnArea {
          margin-top: 40px;
        }
      }

      .p-recruit-box__imageArea {
        width: 80.83%;
        margin-left: auto;
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;

        @media screen and (max-width: 768px) {
          width: 100%;
          border-top-left-radius: 0;
          border-bottom-left-radius: 0;
        }

        img {
          width: 100%;
        }
      }
    }
  }

  .p-newsLetter {
    margin: 10rem 0 0;
    padding: 8rem 0 8rem;
    background: #fff9ee;
    border-radius: 4rem;

    .p-newsLetter-box {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 40px;
      gap: 2%;

      @media screen and (max-width: 767px) {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
      }
    }

    .p-newsLetter__btnArea {
      margin-top: 50px;
      display: flex;
      justify-content: center;
    }
  }

  .p-gallery {
    padding: 8rem 0;

    .p-gallery-box {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 40px;

      @media screen and (max-width: 767px) {
        grid-template-columns: repeat(2, 1fr);
      }

      .p-gallery-box__link {
        transition: all 0.4s;

        &:hover {
          opacity: 0.7;

          .imageArea {
            img {
              transform: scale(1.1);
            }
          }
        }

        .imageArea {
          border-radius: 20px;
          overflow: hidden;
          aspect-ratio: 1 / 1;

          img {
            transition: 0.4s;
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
        }
      }
    }

    .p-gallery__btnArea {
      margin-top: 50px;
      display: flex;
      justify-content: center;
    }
  }
}

.sub {
  &.sub--guide {
    .p-sec01 {
      margin: 3rem 0;
      padding: 6rem 0;
      background: #fff9ee;
      border-radius: 2rem;

      .c-textA {
        margin: 2rem auto 0;
        max-width: 800px;
      }

      .p-sec01-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 2rem;
        row-gap: 3rem;
        margin-top: 4rem;

        @media screen and (max-width: 767px) {
          grid-template-columns: repeat(1, 1fr);
        }

        .p-sec01-box__item {
          display: flex;
          flex-direction: column;

          .imageArea {
            border-radius: 2rem;
            overflow: hidden;
            aspect-ratio: 550 / 367;

            img {
              width: 100%;
            }
          }

          .textArea {
            display: flex;
            flex-direction: column;
            margin-top: 0;
            /*background: #fff;*/
            padding: 2rem 0;
            /*border-radius: 0 0 2rem 2rem;*/

            .titArea {
              display: flex;
              align-items: center;
              gap: 9px;

              .num {
                /*
                width: 54px;
                height: 54px;
                */
                background-color: var(--color-main);
                display: flex;
                font-family: "Comfortaa", serif;
                font-size: 3vw;
                font-weight: bold;
                color: #fff;
                padding: 1% 2%;
                aspect-ratio: 1 / 1;
                border-radius: 10px;
                line-height: 0;
                align-content: center;
                justify-content: center;
                align-items: center;
                padding: 2.5vh 2vh 2vh;

                @media screen and (max-width: 767px) {
                  font-size: 23px;
                  margin-top: 3px;
                }
              }

              .tit {
                font-size: 26px;
                line-height: 1.5;
                font-weight: bold;
              }
            }

            .c-textA {
              margin-bottom: auto;
            }

            .listArea {
              margin-top: 23px;

              .list {
                border-radius: 10px;
                background-color: #fff;
                padding: 24px 32px;

                .listItem {
                  display: flex;
                  gap: 9px;

                  + .listItem {
                    margin-top: 14px;
                  }

                  img {
                    width: 24px;
                  }

                  .contents {
                    margin-top: 5px;
                    line-height: 1.5;
                  }
                }
              }
            }
          }
        }
      }
    }

    .p-sec02 {
      padding: 70px 0;

      .c-textA {
        margin: 40px auto 40px;
      }

      .p-sec02-contentsWrap {
        + .p-sec02-contentsWrap {
          margin-top: 70px;
        }

        .titArea {
          display: flex;
          gap: 4px;

          img {
            width: 29px;
          }

          .tit {
            background: linear-gradient(
              transparent 70%,
              var(--color-yellow) 70%
            );
            font-size: 24px;
            line-height: 1.5;
            font-weight: bold;
            display: inline;

            @media screen and (max-width: 767px) {
              font-size: 18px;
            }
          }
        }

        .p-sec02-contentsWrap__tableArea {
          margin-top: 20px;

          @media screen and (max-width: 767px) {
            overflow: auto;
          }

          table {
            border: 1px solid #f1f1f1;
            border-collapse: collapse;
            border-radius: 20px;

            @media screen and (max-width: 767px) {
              width: 600px;
            }

            tbody {
              tr {
                th,
                td {
                  border: 1px solid #f1f1f1;
                  border-collapse: collapse;
                  padding: 25px 0;
                  text-align: center;
                  font-size: 14px;
                  line-height: 1.5;

                  @media screen and (max-width: 767px) {
                    font-size: 12px;
                    padding: 15px 10px;
                  }

                  span {
                    font-size: 12px;

                    @media screen and (max-width: 767px) {
                      font-size: 11px;
                    }
                  }
                }

                .rowHead {
                  width: 160px;
                }

                &.head {
                  th {
                    background-color: var(--color-bg);
                    width: 210px;

                    &:first-child {
                      border-top-left-radius: 10px;
                    }

                    &:last-child {
                      border-top-right-radius: 10px;
                    }
                  }
                }

                &:last-child {
                  th {
                    border-bottom-left-radius: 10px;
                  }

                  td {
                    &:last-child {
                      border-bottom-right-radius: 10px;
                    }
                  }
                }
              }
            }

            &.table02 {
              tr {
                th {
                  background-color: var(--color-bg);
                }
              }
            }

            &.table03 {
              @media screen and (max-width: 767px) {
                width: 500px;
              }

              tr {
                th {
                  background-color: var(--color-bg);
                }
              }
            }
          }
        }
      }
    }
  }

  &.sub--recruit {
    .sub-shop__box {
      .c-titA {
        margin-bottom: 40px;
      }

      .sub-shop__container {
        .jobWrap {
          + .jobWrap {
            margin-top: 70px;
          }
        }
      }
    }
  }

  &.sub--aboutus {
    .p-sec01 {
      padding: 100px 0 100px;

      .p-sec01-contents {
        position: relative;

        .p-sec01-contents__bg {
          position: absolute;
          top: -20px;
          right: -20px;
          width: 148px;
        }

        .c-textA {
          margin: 40px auto 0;
          max-width: 800px;
        }

        .p-sec01-contents__box {
          margin: 40px auto 0;
          display: flex;
          justify-content: center;
          gap: 40px;

          @media screen and (max-width: 767px) {
            flex-direction: column;
          }
        }
      }
    }

    .p-sec02 {
      .p-sec02-contents {
        margin-top: 40px;
        background-color: var(--color-bg);
        border-top-left-radius: 100px;
        border-top-right-radius: 100px;
        padding-bottom: 100px;
        padding-top: 60px;

        @media screen and (max-width: 767px) {
          border-top-left-radius: 30px;
          border-top-right-radius: 30px;
        }

        .p-sec02-contents__titArea {
          position: relative;

          .icon {
            position: absolute;
            top: -63px;
            right: 0;
            width: 220px;

            @media screen and (max-width: 767px) {
              width: 35vw;
              top: 6vh;
              right: -10%;
            }
          }
        }

        .p-sec01-swiperArea {
          position: relative;
          z-index: 3;
          margin-top: 3rem;

          .p-sec01-swiperArea__cat {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;

            @media screen and (max-width: 767px) {
              grid-template-columns: repeat(1, 1fr);
            }

            a {
              background-color: #fff;
              border-radius: 10px;
              display: flex;
              align-items: center;
              gap: 20px;
              transition: 0.4s;
              padding: 28px 18px;

              img {
                width: 30px;
              }

              .tit {
                font-size: 14px;
                line-height: 1.5;
                font-weight: bold;
              }

              &.is-active {
                background-color: #ffebb4;
              }
              &:hover {
                background-color: #ffebb4;
              }
            }
          }

          .swiper {
            .swiper-wrapper {
              .swiper-slide {
                .tabTextArea {
                  background-color: #fff;
                  border-radius: 10px;
                  padding: 37px 40px;
                  font-size: 14px;
                  line-height: 2.2;
                  @media screen and (max-width: 767px) {
                    padding: 4vw;
                    line-height: 1.8;
                  }
                }
              }
            }
          }
        }
      }
    }

    .p-sec03 {
      padding: 60px 0 100px;

      .p-sec03__theme {
        background-color: var(--color-main);
        padding: 30px 40px;
        border-radius: 30px;
        margin-top: 34px;

        @media screen and (max-width: 767px) {
          padding: 30px 20px;
        }

        .mainTheme {
          color: #fff;
          font-size: 32px;
          line-height: 1.5;
          font-weight: bold;
          text-align: center;

          @media screen and (max-width: 767px) {
            font-size: 22px;
          }
        }

        .themeText {
          margin-top: 30px;
          background-color: #fff;
          padding: 17px 20px;
          border-radius: 20px;

          @media screen and (max-width: 767px) {
          }

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

      .p-sec03-themeBox {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
        margin-bottom: 30px;
        margin-top: 30px;

        @media screen and (max-width: 767px) {
          grid-template-columns: repeat(2, 1fr);
        }

        .p-sec03-themeBox__item {
          border-radius: 10px;
          border: 1px solid var(--color-main);
          padding: 30px 10px;
          display: flex;
          flex-direction: column;

          .imageArea {
            display: flex;
            justify-content: center;

            img {
              width: 76px;
            }
          }

          .textArea {
            margin-top: 23px;

            .tit {
              font-size: 14px;
              line-height: 1.5;
              font-weight: bold;
              margin-top: 0;
              margin-bottom: 20px;

              @media screen and (max-width: 767px) {
                text-align: center;
              }
            }
          }
        }
      }
    }

    .p-sec04 {
      .p-sec04-contents {
        background-color: var(--color-bg);
        padding: 60px 40px;
        position: relative;
        border-radius: 30px;

        @media screen and (max-width: 767px) {
          padding: 30px 20px;
        }

        .p-sec04-contents__bg {
          position: absolute;
          top: 30px;
          right: 30px;

          img {
            width: 256px;

            @media screen and (max-width: 767px) {
              width: 25vw;
            }
          }
        }

        .p-sec04-contents__list {
          margin-top: 62px;

          .listItem {
            + .listItem {
              margin-top: 45px;
            }

            .c-titC {
              margin-bottom: 26px;
            }
          }
        }
      }
    }

    .p-sec05 {
      padding: 60px 0 0;

      .p-sec05__theme {
        margin-top: 30px;
        background-color: var(--color-green);
        padding: 27px 34px 30px;
        border-radius: 30px;

        @media screen and (max-width: 767px) {
          padding: 30px 20px;
        }

        .mainTheme {
          font-size: 32px;
          line-height: 1.5;
          font-weight: bold;
          color: #fff;
          text-align: center;

          @media screen and (max-width: 767px) {
            font-size: 18px;
          }
        }

        .themeText {
          margin-top: 40px;
          padding: 17px 20px;
          background-color: #fff;
          border-radius: 20px;
          text-align: center;
        }
      }
    }

    .p-sec06 {
      padding: 60px 0 100px;

      .p-sec06-contents {
        margin-top: 30px;

        .p-sec06-contents__box {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;

          @media screen and (max-width: 767px) {
            grid-template-columns: repeat(1, 1fr);
          }

          .boxItem {
            padding: 28px 26px;
            background-color: var(--color-bg);
            border-radius: 30px;

            @media screen and (max-width: 767px) {
              padding: 30px 20px;
            }
          }
        }

        .p-sec06-contents__largeArea {
          margin-top: 20px;
          padding: 28px 26px;
          background-color: var(--color-bg);
          border-radius: 30px;

          @media screen and (max-width: 767px) {
            padding: 30px 20px;
          }
        }

        .p-sec06-contents__after {
          margin-top: 30px;
          font-size: 14px;
          line-height: 2.2;
        }
      }
    }

    .p-sec07 {
      padding: 60px 0 100px;
      background-color: var(--color-bg);
      border-bottom-left-radius: 100px;
      border-bottom-right-radius: 100px;

      @media screen and (max-width: 767px) {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
      }

      .p-sec07-contents {
        margin-top: 50px;

        .p-sec07-contents__theme {
          font-size: 40px;
          line-height: 1.5;
          font-weight: 900;
          margin-bottom: 30px;
          text-align: center;
          color: var(--color-main);

          @media screen and (max-width: 767px) {
            font-size: 18px;
          }
        }

        .p-sec07-contents__text {
          font-size: 14px;
          line-height: 2.2;
          text-align: center;
        }

        .p-sec07-contents__box {
          margin-top: 38px;
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 20px;

          @media screen and (max-width: 767px) {
            grid-template-columns: repeat(1, 1fr);
          }

          .boxItem {
            background-color: #fff;
            border-radius: 30px;
            padding: 28px 26px;

            @media screen and (max-width: 767px) {
              padding: 30px 20px;
            }

            .itemTit {
              font-size: 18px;
              font-weight: bold;
              line-height: 1.5;
              text-align: center;
              margin-bottom: 20px;

              @media screen and (max-width: 767px) {
                font-size: 16px;
              }

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

    .p-sec08 {
      padding: 100px 0;

      .p-sec08__map {
        margin-top: 100px;
        aspect-ratio: 10 / 3;

        @media screen and (max-width: 767px) {
          margin-top: 50px;
          aspect-ratio: 5 / 3;
        }

        iframe {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
}

.l-page-cover__ttl {
  font-size: 2.6rem;
  text-align: center;
}
.l-page-cover__ttl .big {
  font-size: 12rem;
  font-family: "Comfortaa", sans-serif;
}
.l-page-cover__ttl .big span {
  color: #85c66782;
  font-weight: 700;
  line-height: 1;
  position: relative;
  border-radius: 0 20px 0 0;
  text-align: center;
  overflow: hidden;
  font-size: 12rem;
  letter-spacing: 0;
  text-transform: uppercase;
}
.l-page-cover__ttl .small {
  margin-top: -7rem;
  font-family: "M PLUS 1", sans-serif;
}
.l-page-cover__ttl span {
  display: inline-block;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100%);
  animation: fadeSlideUp 0.6s ease forwards;
  font-size: 2.6rem;
}

.l-page-cover__ttl span:nth-child(1) {
  animation-delay: 0s;
}
.l-page-cover__ttl span:nth-child(2) {
  animation-delay: 0.1s;
}
.l-page-cover__ttl span:nth-child(3) {
  animation-delay: 0.2s;
}
.l-page-cover__ttl span:nth-child(4) {
  animation-delay: 0.3s;
}
.l-page-cover__ttl span:nth-child(5) {
  animation-delay: 0.4s;
}
.l-page-cover__ttl span:nth-child(6) {
  animation-delay: 0.5s;
}
.l-page-cover__ttl span:nth-child(7) {
  animation-delay: 0.6s;
}
.l-page-cover__ttl span:nth-child(8) {
  animation-delay: 0.7s;
}
.l-page-cover__ttl span:nth-child(9) {
  animation-delay: 0.8s;
}
.l-page-cover__ttl span:nth-child(10) {
  animation-delay: 0.9s;
}
.l-page-cover__ttl span:nth-child(11) {
  animation-delay: 1s;
}
.l-page-cover__ttl span:nth-child(12) {
  animation-delay: 1.1s;
}
.l-page-cover__ttl span:nth-child(13) {
  animation-delay: 1.2s;
}
.l-page-cover__ttl span:nth-child(14) {
  animation-delay: 1.3s;
}
.l-page-cover__ttl span:nth-child(15) {
  animation-delay: 1.4s;
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) {
  .l-page-cover__ttl {
    font-size: 2rem;
  }
  .l-page-cover__ttl .big span {
    font-size: 6rem;
  }
  .l-page-cover__ttl .small {
    margin-top: -4.5rem;
    font-size: 2rem;
  }
  .l-page-cover__ttl .big {
    font-size: 9rem;
    top: -1rem;
    position: relative;
    opacity: 0.5;
  }
  .l-page-cover__ttl span {
    font-size: 2rem;
  }
}

.nikoniko {
  width: 130px;
  position: absolute;
  top: 0;
  right: 0;
  animation: shake 10s infinite;
  transform: rotate(4deg);
}
.nikoniko2 {
  width: 130px;
  position: absolute;
  top: 0;
  right: 0;
  animation: shake2 10s infinite;
  transform: rotate(-4deg);
}

@keyframes shake {
  50% {
    transform: rotate(-4deg);
  }

  100% {
    transform: rotate(4deg);
  }
}

@keyframes shake2 {
  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(-4deg);
  }
}

/*20250116*/
/*top*/
.home-mv__schedule:hover .imageArea img {
  opacity: 0.7;
}
.home-mv__schedule_ttl {
  position: absolute;
  bottom: -10%;
  background: #85c667;
  padding: 1rem 2rem;
  border-radius: 10px;
  color: #fff;
  width: 100%;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .home-mv .slick-track img {
    height: 55vh;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .home-mv__schedule_ttl {
    position: absolute;
    bottom: -10%;
    background: #85c667;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: #fff;
    width: 100%;
    font-size: 3vw;
  }
}

/*guide*/
.p-service-sec01.-guide .page_link {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 767px) {
  .p-service-sec01.-guide .page_link {
    grid-template-columns: repeat(1, 1fr);
  }
  .sub.sub--guide .p-sec01 {
    margin: 2rem 0;
    padding: 6rem 0;
    background: #fff9ee;
    border-radius: 2rem;
  }
}

.anchor-item {
  scroll-margin-top: 10rem;
}

/*aboutus*/
.sub-shop__text {
  margin-top: 3rem;
}

/*画像拡大問題*/
.home-mv__slide img {
  /*  height: 100%;*/
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  opacity: 0;
}

.home-mv .slider-img img {
  height: auto;
  width: 100%;
}
.home-mv .slick-track img {
  /*height: auto;*/
  width: 100%;
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
}

/*下層タイトル*/
.l-page-cover__inner img.illust_deco03.nikoniko {
  top: 40%;
  right: 0;
  width: 30rem;
}

@media screen and (max-width: 767px) {
  .l-page-cover__inner img.illust_deco03.nikoniko {
    top: auto;
    bottom: 10%;
    right: 0;
    width: 10rem;
  }
}

/*ttl*/
.p_ill-ttl {
  display: flex;
  gap: 5%;
  justify-content: center;
  align-items: center;
}
.p_ill-ttl img.illust_deco01 {
  width: 20rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p_ill-ttl img.illust_deco01 {
    width: 20vw;
  }
}

/*footer ill*/
.footer_top img.nikoniko {
  width: 24vw;
  right: auto;
  left: 1%;
  top: -6%;
}
.footer_top img.nikoniko2 {
  width: 18vw;
  top: auto;
  bottom: -5%;
  right: 0%;
}
@media screen and (max-width: 767px) {
  .footer_top img.nikoniko {
    width: 40vw;
    right: auto;
    left: 0;
    top: -18%;
  }
  .footer_top img.nikoniko2 {
    width: 27vw;
    top: auto;
    bottom: -15%;
    right: 2%;
  }
}

/*illust*/
.illust_deco {
  position: absolute;
}

.illust_deco.-right {
  right: 0;
}

.illust_deco.-left {
  left: 0;
}

.illust_deco {
  position: absolute;
  top: auto;
  left: 85%;
  bottom: 0;
}

.illust_deco.-left {
  left: 3%;
  top: -26%;
  height: 20vw;
}
.illust_deco.-bg {
  position: absolute;
  top: auto;
  left: 85%;
  bottom: 80%;
}
.illust_deco.-left img.illust_deco01 {
  width: 14vw;
  height: 16vw;
}

.home-mv__schedule .illust_deco.-left {
  left: -50%;
  bottom: -30%;
  top: auto;
  right: auto;
  transform: scale(-1, 1);
}
.home-mv__schedule .illust_deco.-left img.illust_deco01 {
  width: 15vw;
}

@media screen and (max-width: 767px) {
  .illust_deco img.illust_deco01 {
    width: 40vw;
  }
  .illust_deco.-left img.illust_deco01 {
    display: none;
  }
  .home-mv__schedule .illust_deco.-left {
    left: -80%;
    bottom: -30%;
    top: auto;
    right: auto;
  }
  .home-mv__schedule .illust_deco.-left img.illust_deco01 {
    width: 30vw;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p_ill-ttl img.illust_deco01 {
    width: 16vw;
  }
  .home .p_ill-ttl {
    gap: 0;
  }
}

.titArea-sub {
  margin-top: 2rem;
}
.titArea-sub span.tit {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  display: inline;
}
td.td_txt {
  width: 50rem;
  text-align: left;
}
.sub {
  &.sub--guide {
    & .p-sec02 {
      & .p-sec02-contentsWrap {
        & .p-sec02-contentsWrap__tableArea {
          & table {
            & tbody {
              & tr {
                td.td_txt {
                  border: 1px solid #f1f1f1;
                  border-collapse: collapse;
                  padding: 25px 10px;
                  text-align: left;
                  font-size: 14px;
                  line-height: 1.5;
                }
              }
            }
          }
        }
      }
    }
  }
}
span.l-txt {
  display: block;
  padding: 10px 20px;
}
.first-char {
  font-size: 1.3em !important;
  font-weight: bold;
}

/*
.header__item:not(:first-of-type) {
    margin-left: 2rem;
}
*/
/* .header__item:nth-last-of-type(1) a {
  width: 1.995rem;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(222deg) brightness(110%) contrast(100%);
} */
.nav-drawer__insta {
  width: 4rem;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.p-news .illust_deco img {
  width: 150px;
}
.p-news .illust_deco {
  bottom: -3rem;
  left: auto;
  right: 2%;
  width: auto;
}
.p-news-box_wrap {
  padding: 2rem;
  border: 1px solid #85c667;
  border-radius: 20px;
  margin-top: 3rem;
  background: #fff;
}
.grid-col02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.grid-col02_text {
  line-height: 2;
}
.-about-grid img {
  border-radius: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.-about-grid {
  margin-top: 3rem;
}
.-about-grid .grid-col02_text {
  background: #ffffff85;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .grid-col02 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.c-titA.-left {
  align-items: flex-start;
}
.-about-grid .c-titA {
  margin-bottom: 3rem;
}
.-about-grid + .-about-grid {
  margin-top: 4rem;
}
.-about-grid strong {
  font-size: 2rem;
  position: relative;
  padding-left: 2rem;
}
.-about-grid strong::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50px;
  position: absolute;
  top: 10px;
  left: 0;
  background: #85c667;
}
.about-grid-img {
  position: relative;
}
img.about-grid-img01 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180px;
  height: auto;
  border-radius: 0;
}
img.about-grid-img02 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: auto;
  border-radius: 0;
}
.home-map {
  margin-top: 2rem;
}
.company {
  margin-top: 4rem;
  position: relative;
}
/* --------------------------------
c-accordion
----------------------------------- */
.c-accordion {
  border-bottom: 1px solid #9da3a7;
}

.c-accordion__title {
  width: 100%;
  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;
  cursor: pointer;
  padding: 4vw 6vw 4vw 0;
  position: relative;
  font-size: 3.5vw;
  line-height: 1.75;
}

.c-accordion__title span {
  width: 8vw;
  height: 8vw;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(100, 179, 244)),
    to(rgb(33, 89, 186))
  );
  background: linear-gradient(
    90deg,
    rgb(100, 179, 244) 0%,
    rgb(33, 89, 186) 100%
  );
  color: #fff;
  font-weight: bold;
  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;
  margin-right: 3vw;
}

.c-accordion__title::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #141414;
  border-right: 2px solid #141414;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 42%;
  right: 2rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-accordion__title.open::after {
  top: 41%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.c-accordion__content {
  display: none;
  background-color: #edf4fa;
  padding: 3vw;
}

.c-accordion__content p {
  font-size: 3vw;
  line-height: 1.75;
}
.accordion .js-accordion-title {
  background-color: #e5f0df;
  /* border-bottom: 1px solid #114979; */
  cursor: pointer;
  padding: 15px 20px 23px;
  position: relative;
  font-size: 3rem;
  margin-top: 2rem;
  position: relative;
  border-radius: 20px;
}
.accordion .js-accordion-title::before {
  content: "";
  position: absolute;
  display: block;
  width: 3.2rem; /* 画像の幅 */
  height: 4rem; /* 画像の高さ */
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-top: 3px;
  vertical-align: middle;
  background-image: url(../img/common/illust06.png);
  left: 2.2rem;
  font-size: 3rem;
  color: #347928;
  font-weight: 900;
}
.accordion .js-accordion-title span {
  font-size: 16px;
  margin-left: 5rem;
  margin-bottom: 5px;
}

.accordion .js-accordion-title i.arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 4px solid #85c667;
  border-right: 4px solid #85c667;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s ease-in-out;
}

.accordion .js-accordion-title.open i.arrow {
  transform: translateY(-50%) rotate(-45deg);
}

.accordion-content {
  display: none;
  /* background-color: #f9f9f9; */
  padding: 25px 20px;
  font-size: 16px;
  position: relative;
  padding-left: 7rem;
  line-height: 1.5;
}
.accordion-content::before {
  content: "";
  position: absolute;
  display: block;
  width: 3.3rem; /* 画像の幅 */
  height: 3.5rem; /* 画像の高さ */
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  margin-top: 3px;
  vertical-align: middle;
  background-image: url(../img/common/illust05.png);
  left: 2rem;
  top: 2rem;
  font-size: 3rem;
  color: #347928;
  font-weight: 900;
}
.faq.inner {
  max-width: 1000px;
}
.faq {
  padding-top: 6rem;
  padding-bottom: 10rem;
}

@media screen and (max-width: 768px) {
  .accordion .js-accordion-title {
    margin-top: 1rem;
    padding: 4px 18px 15px;
  }
  .accordion .js-accordion-title span {
    margin-left: 2rem;
  }
  .accordion .js-accordion-title::before {
    font-size: 2.5rem;
    left: 1.2rem;
    top: 1rem;
    width: 2.2rem;
  }
  .accordion .js-accordion-title i.arrow {
    right: 11px;
    border-top: 3px solid #85c667;
    border-right: 3px solid #85c667;
  }
  .accordion .js-accordion-title span {
    font-size: 14px;
  }
  .accordion {
    margin-top: 3rem;
  }
  .accordion-content {
    padding: 15px 10px;
    padding-left: 4rem;
    font-size: 15px;
  }
  .accordion-content::before {
    font-size: 2.4rem;
    left: 1.2rem;
    width: 2.3rem;
  }
}
.sub-service .c-titA .en {
  font-family: "M PLUS 1", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.-service-grid .grid-col02_text {
  line-height: 2;
}
.-service-grid .grid-col02_text span {
  font-size: 2.4rem;
  display: block;
  line-height: 1.5;
  color: #5b9342;
  margin-bottom: 2rem;
}
.flow_design01 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design01 ul {
  padding: 0;
}

.flow_design01 li {
  list-style-type: none;
}

.flow_design01 dd {
  margin-left: 0;
}

.flow01 > li {
  position: relative;
  list-style: none;
}

.flow01 > li:not(:last-child) {
  margin-bottom: 25px;
}

.flow01 > li dl {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px;
  display: grid;
  grid-template-columns: 150px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #86c768;
  border-radius: 10px;
  position: relative;
  background: #edf5e9;
}

.flow01 > li:not(:last-child) dl::before,
.flow01 > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow01 > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #86c768;
}

.flow01 > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #edf5e9;
}

.flow01 > li dl dt {
  font-size: 1.2em;
  font-weight: 600;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}

.flow01 > li dl dt .icon01 {
  font-size: 0.6em;
  color: #fff;
  background: #86c768;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

@media (max-width: 650px) {
  .flow01 > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .flow01 > li dl {
    display: block;
    padding: 10px 15px;
  }

  .flow01 > li dl dt {
    margin-right: 0;
  }

  .flow01 > li dl dt .icon01 {
    font-size: 0.7em;
  }
}
.-service-grid02 {
  align-items: start;
  grid-template-columns: 37% 60%;
  margin-top: 3rem;
}
.-service-grid02 .table_simple th {
  width: 28%;
}
.service01 {
  padding-top: 4rem;
}
.service-ttl {
  color: #5b9342;
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.service-ttl::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50px;
  background: #5b9342;
  position: absolute;
  top: 6px;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.price-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.6rem;
  border: 1px solid #86c768;
}

.price-table th,
.price-table td {
  border: 1px solid #fff;
  padding: 1.5rem;
  vertical-align: middle;
  line-height: 1.5;
}
.price-table td {
  border-bottom: 1px solid #cecece;
}

.price-table .head-left {
  background: #86c768;
  text-align: center;
  font-weight: 700;
  color: #fff;
}

.price-table .head-left small {
  font-weight: 400;
}

.price-table .head-right {
  font-weight: 700;
  font-size: 1.8rem;
  text-align: left;
  border-bottom: 1px solid #cecece;
}

.price-table .section {
  background: #86c768;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.price-table .label {
  background: #86c768;
  font-weight: 700;
  width: 120px;
  color: #fff;
}

.price-table strong {
  font-weight: 700;
}
.price-table-wrap {
  margin-top: 2rem;
}
.note {
  line-height: 1.5;
  margin-top: 1rem;
	font-size: 2.4rem;
}
.service02 {
  margin-top: 10rem;
  padding-bottom: 15rem;
}
.-service-grid img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
}
.illust_deco03.-mv {
  bottom: 0;
  right: 3%;
  width: 180px;
  top: auto;
}
.illust_deco03.-about {
  top: -3rem;
  right: -2rem;
  width: 180px;
  border-radius: 0;
  object-fit: contain;
  height: 160px;
}
.illust_deco03.-company {
  width: 230px;
  right: 2%;
  top: 5%;
  z-index: 2;
}
/* mq */

@media screen and (max-width: 767px) {
  .illust_deco03.-mv {
    bottom: -4rem;
    width: 130px;
  }
  .c-cardA {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
  }
  .p-news-box_wrap {
    padding: 1rem;
  }
  .c-cardA .tit {
    font-size: 16px;
    margin-top: 4px;
  }
  .c-cardA .imageArea {
    border-radius: 12px;
  }
  .p-news .illust_deco {
    bottom: -5rem;
    width: 90px;
  }
  img.about-grid-img01 {
    width: 120px;
  }
  .illust_deco03.-about {
    width: 140px;
    height: 120px;
	  top: -10rem;
	  z-index: 3;
  }
  .-about-grid.-odd {
    display: flex;
    flex-direction: column-reverse;
  }
  img.about-grid-img02 {
    width: 130px;
    right: auto;
  }
  .p-about {
    padding-bottom: 8rem;
  }
  .illust_deco03.-company {
    width: 170px;
    top: -17%;
  }
  .-service-grid .grid-col02_text span {
    font-size: 2rem;
  }
  .-service-grid02 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-ttl {
    font-size: 2rem;
  }
  .price-table-wrap {
    margin-top: 3rem;
  }
  .price-table th,
  .price-table td {
    padding: 3px;
  }
  .price-table .head-left small {
    font-size: 11px;
  }
  .price-table .label {
    width: 90px;
  }
  .price-table .head-right {
    padding-left: 1rem;
    font-size: 1.6rem;
  }
  .price-table td {
    padding: 1rem 0 1rem 1rem;
  }
	.sub-service .c-titA .en {
		font-size: 2.2rem;
	}
	.note {
		font-size: 2rem;
	}
}

/* mq */
