@charset "UTF-8";
/*
Theme Name: ads-type-b_wp
Author: ADS テンプレートB
Version: 1.0
*/
@import url("assets/scss/reset.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
/* iOSでのデフォルトスタイルをリセット */
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}
/* this project font */
/* JetBrains Mono */
/* Homemade Apple */
/* Zen Maru Gothic */
/*----------------------------------------------------------------------
　サイトパーツ
----------------------------------------------------------------------*/
body {
  color: #333333 !important;
  letter-spacing: 0.05em;
  background-color: #F6F4EF;
  font-family: "Zen Maru Gothic";
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  body {
    font-size: 4.267vw;
  }
}
body input,
body button {
  font-family: inherit;
}
body a {
  color: inherit;
}
body p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  body p {
    line-height: 1.8em;
  }
}
body strong {
  font-weight: bold;
}
body .underline {
  text-decoration: underline;
}
body img {
  max-width: 100%;
  height: auto;
}
body iframe {
  max-width: 100%;
}

.container {
  width: 1132px;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 5vw;
  }
}

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

.list {
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
}
.list:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .list:not(:first-child) {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}
.list:not(:last-child) {
  border-bottom: 2px dashed rgba(51, 51, 51, 0.3);
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .list:not(:last-child) {
    padding-bottom: calc(50 * 2 / 10 * 1vw);
  }
}
.list__title {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .list__title {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .list__title {
    margin-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .list__title {
    font-size: 5.867vw;
  }
}
.list__number {
  max-width: 200px;
}

/*----------------------------------------------------------------------
　フェードイン
----------------------------------------------------------------------*/
.fade-in {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fade-in.animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fade-in-delay {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.sup {
  font-size: 0.8em;
  vertical-align: top;
  color: #EDA00E;
  padding-right: 10px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .sup {
    padding-right: calc(10 * 2 / 10 * 1vw);
  }
}

.line-dashed {
  border-bottom: 2px dashed rgba(51, 51, 51, 0.3);
}

.number {
  background-color: #EDA00E;
  color: #fff;
  padding-top: 5px;
  padding-bottom: 5px;
  text-align: center;
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 4px;
}
@media screen and (max-width: 767px) {
  .number {
    padding-top: calc(5 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .number {
    padding-bottom: calc(5 * 2 / 10 * 1vw);
  }
}
.number span {
  line-height: 1;
  display: block;
}

.color-main {
  color: #EDA00E;
}

.font-size--md {
  font-size: 1.2em;
}

.font-size--sm {
  font-size: 0.8em;
}

/*----------------------------------------------------------------------
　メインビジュアル
----------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  main {
    margin-top: 0vw;
  }
}

@media screen and (max-width: 767px) {
  .main-visual {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.main-visual__wrap {
  position: relative;
  z-index: 0;
  height: calc(80vh - 96px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .main-visual__wrap {
    padding-bottom: calc(100 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .main-visual__wrap {
    height: auto;
    gap: 6vw 0;
  }
}
.main-visual__wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(assets/images/house/ill_house-01.svg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: bottom 0% right;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .main-visual__wrap::after {
    opacity: 0.6;
    bottom: -15vw;
    background-size: 50% auto;
  }
}
.main-visual__slider {
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-visual__slider {
    padding-left: 0;
    height: 100vw;
    width: 100%;
  }
}
.main-visual__slider .slider, .main-visual__slider .slick-list, .main-visual__slider .slick-track, .main-visual__slider .slick-slide, .main-visual__slider .slider__img, .main-visual__slider img {
  height: inherit;
}
.main-visual__mv-text-block {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main-visual__mv-text-block {
    width: 100%;
  }
}
.main-visual__mv-text-block-inner {
  display: inline-block;
}

.mv-text-block__title-block-inner {
  line-height: 1.4;
}
.mv-text-block__sub-title {
  font-size: 22px;
  position: absolute;
  bottom: -50px;
  right: -10px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-style: normal;
  color: #EDA00E;
}
@media (max-width: 767px) {
  .mv-text-block__sub-title {
    font-size: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .mv-text-block__sub-title {
    bottom: -16vw;
    right: -2vw;
  }
}
.mv-text-block__title {
  font-size: 42px;
  margin-top: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .mv-text-block__title {
    font-size: 6.933vw;
  }
}
@media screen and (max-width: 767px) {
  .mv-text-block__title {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .mv-text-block__title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .mv-text-block__title {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.mv-text-block__text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .mv-text-block__text {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .mv-text-block__text {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .mv-text-block__text {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.mv-text-block__text-inner {
  font-size: 18px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .mv-text-block__text-inner {
    font-size: 4.267vw;
  }
}
.mv-text-block__logo {
  font-size: 20px;
}
@media (max-width: 767px) {
  .mv-text-block__logo {
    font-size: 5.333vw;
  }
}
.mv-text-block__logo-text {
  color: #585C07;
}
.mv-text-block__mv-logo {
  max-width: var(--max-width-pc);
  margin: auto;
}
.mv-text-block__mv-logo img {
  display: block;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .mv-text-block__mv-logo {
    max-width: var(--max-width-sp);
  }
}

.main-image--block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.main-image--block-left {
  position: absolute;
  top: -0.5px;
  left: -0.5px;
  display: inline-block;
  width: 63%;
  height: 22%;
  background-color: #F6F4EF;
  -webkit-clip-path: polygon(0 0, 100% 0%, 0% 101%);
          clip-path: polygon(0 0, 100% 0%, 0% 101%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-image--block-left {
    height: 20vw;
  }
}

.main-image--block-right {
  position: absolute;
  top: -0.5px;
  display: inline-block;
  width: 37%;
  height: 30%;
  right: 0;
  background-color: #F6F4EF;
  -webkit-clip-path: polygon(0 0%, 101% 0%, 101% 100%);
          clip-path: polygon(0 0%, 101% 0%, 101% 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .main-image--block-right {
    height: 20vw;
  }
}

/*----------------------------------------------------------------------
　スライダー
----------------------------------------------------------------------*/
.slider {
  position: relative;
  z-index: 0;
}
.slider__item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .slider .slick-dots {
    display: none !important;
  }
}
.slider .slick-dots li {
  width: initial;
  height: initial;
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .slider .slick-dots li {
    margin-left: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .slider .slick-dots li {
    margin-right: calc(10 * 2 / 10 * 1vw);
  }
}
.slider .slick-dots li button {
  width: initial;
  height: initial;
}
.slider .slick-dots li button::before {
  width: initial;
  height: initial;
  color: #fff !important;
  font-size: 14px;
}
@media (max-width: 767px) {
  .slider .slick-dots li button::before {
    font-size: 2.933vw;
  }
}

/*----------------------------------------------------------------------
　ヘッダー
----------------------------------------------------------------------*/
.header {
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .header {
    position: relative;
  }
}
.header__wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px;
  padding-left: 40px;
  padding-right: 40px;
  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-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;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__wrap {
    padding: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header__wrap {
    padding-left: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header__wrap {
    padding-right: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header__wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__logo {
  width: 100%;
  max-width: var(--max-width-pc);
}
@media screen and (max-width: 767px) {
  .header__logo {
    max-width: var(--max-width-sp);
    width: 80vw;
    height: 10vw;
    text-align: center;
  }
  .header__logo a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .header__logo img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.header__logo-text {
  font-size: 28px;
  font-weight: 600;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  line-height: 1.6;
  color: #585C07;
}
@media (max-width: 767px) {
  .header__logo-text {
    font-size: 5.333vw;
  }
}
.header__navi-block {
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .header__navi-block {
    top: inherit;
    -webkit-transform: inherit;
            transform: inherit;
    position: fixed;
    bottom: 5vw;
    left: 0;
    right: 0;
  }
}
.header__navi-block-inner {
  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;
  position: relative;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .header__navi-block-inner {
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 3vw;
  }
}
.header__sticky-menu {
  position: absolute;
  top: 2px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .header__sticky-menu {
    top: inherit;
    left: 0;
    bottom: 0;
    width: 55vw;
    position: relative;
  }
}

/*----------------------------------------------------------------------
　ヘッダーナビ
----------------------------------------------------------------------*/
.header-navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-navi__item {
  text-transform: uppercase;
  font-size: 16px;
}
@media (max-width: 767px) {
  .header-navi__item {
    font-size: 4.267vw;
  }
}
@media screen and (max-width: 1047px) {
  .header-navi__item {
    font-size: 12px;
  }
}
@media screen and (max-width: 1047px) and (max-width: 767px) {
  .header-navi__item {
    font-size: 4.267vw;
  }
}
.header-navi__item::after {
  content: "";
  width: 0px;
  height: 1px;
  background-color: #EDA00E;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-navi__item:hover::after {
  width: 30px;
}
.header-navi__item {
  position: relative;
  z-index: 0;
}
.header-navi__item .mega-menu-content {
  padding-top: 40px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .header-navi__item .mega-menu-content {
    padding-top: calc(40 * 2 / 10 * 1vw);
  }
}
.header-navi__item .mega-menu-content__wrap {
  width: 110px;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  background-color: #EDA00E;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header-navi__item .mega-menu-content__wrap {
    padding-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header-navi__item .mega-menu-content__wrap {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header-navi__item .mega-menu-content__wrap {
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header-navi__item .mega-menu-content__wrap {
    padding-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
.header-navi__item .mega-menu-content__item:not(:first-child) {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .header-navi__item .mega-menu-content__item:not(:first-child) {
    margin-top: calc(15 * 2 / 10 * 1vw);
  }
}
.header-navi__item .mega-menu-content__item:not(:last-child) {
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .header-navi__item .mega-menu-content__item:not(:last-child) {
    padding-bottom: calc(15 * 2 / 10 * 1vw);
  }
}
.header-navi__item:hover .mega-menu-content {
  visibility: visible;
  opacity: 1;
}
.header-navi__contact {
  background-color: #0084B4;
  background-image: url(assets/images/icon/mail.svg);
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .header-navi__contact {
    width: 10vw;
    height: 10vw;
    background-size: 60%;
  }
}
.header-navi__navi a {
  display: block;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .header-navi__navi a {
    padding-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header-navi__navi a {
    padding-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header-navi__navi a {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .header-navi__navi a {
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.header-navi__navi a:hover {
  opacity: 0.8;
}

/*----------------------------------------------------------------------
　ハンバーガー
----------------------------------------------------------------------*/
.sticky-menu {
  background-color: #EDA00E;
  border-radius: 30px;
  width: 200px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .sticky-menu {
    padding-top: calc(15 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .sticky-menu {
    padding-bottom: calc(15 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .sticky-menu {
    border-radius: 5vw;
    width: 25vw;
    gap: 0 2vw;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sticky-menu {
    padding-left: calc(5 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sticky-menu {
    padding-right: calc(5 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sticky-menu {
    padding-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sticky-menu {
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.sticky-menu__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 10px;
}
@media screen and (max-width: 767px) {
  .sticky-menu__block {
    gap: 0 2vw;
  }
}
.sticky-menu__link-block {
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .sticky-menu__link-block {
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    bottom: 60%;
    left: 0;
    right: 0;
    background-color: #EDA00E;
    border-radius: 30px 30px 0 0;
  }
}
.sticky-menu__link-block.open {
  padding-top: 10px;
  padding-bottom: 20px;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .sticky-menu__link-block.open {
    padding-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .sticky-menu__link-block.open {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .sticky-menu__link-block.open {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sticky-menu__link-block.open {
    padding-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sticky-menu__link-block.open {
    padding-bottom: calc(40 * 2 / 10 * 1vw);
  }
}

.menu-trigger {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 !important;
  position: relative;
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .menu-trigger {
    width: 5.5vw;
  }
}

.menu-text {
  color: #fff;
  width: 60%;
}
@media screen and (max-width: 767px) {
  .menu-text {
    width: 20vw;
  }
}

/*----------------------------------------------------------------------
　ハンバーガーメニュー
----------------------------------------------------------------------*/
.sp-navi {
  color: #fff;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sp-navi {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .sp-navi {
    width: 80%;
    margin: auto;
  }
}
.sp-navi__item {
  font-size: 16px;
  text-align: center;
}
@media (max-width: 767px) {
  .sp-navi__item {
    font-size: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .sp-navi__item:first-child {
    margin-top: 0px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sp-navi__item:first-child {
    margin-top: calc(0 * 2 / 10 * 1vw);
  }
}
.sp-navi__item:not(:last-child) {
  position: relative;
  z-index: 0;
}
.sp-navi__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(left, #fff, #fff 3px, transparent 3px, transparent 2px);
  background-image: linear-gradient(to right, #fff, #fff 3px, transparent 3px, transparent 2px); /* 幅2の線を作る */
  background-size: 6px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  opacity: 0.4;
  width: 100%;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .sp-navi__item:not(:last-child)::after {
    bottom: 0;
  }
}
.sp-navi__item .mega-menu-content__item:not(:last-child) {
  position: relative;
  z-index: 0;
}
.sp-navi__item .mega-menu-content__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(left, #fff, #fff 3px, transparent 3px, transparent 2px);
  background-image: linear-gradient(to right, #fff, #fff 3px, transparent 3px, transparent 2px); /* 幅2の線を作る */
  background-size: 6px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  opacity: 0.4;
  width: 100%;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .sp-navi__item .mega-menu-content__item:not(:last-child)::after {
    bottom: 0;
  }
}
.sp-navi__item-click a {
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sp-navi__item-click a {
    padding-top: calc(15 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .sp-navi__item-click a {
    padding-bottom: calc(15 * 2 / 10 * 1vw);
  }
}
.sp-navi__freecall {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sp-navi__freecall {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.sp-navi__tel {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sp-navi__tel {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　フッター
----------------------------------------------------------------------*/
.footer {
  background-color: #FAF9F2;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: calc(80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: calc(80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer {
    padding-top: calc(120 * 2 / 10 * 1vw);
  }
}
.footer__wrap {
  width: 1132px;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    padding: 0 5vw;
  }
}
.footer__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer__block {
    gap: 8vw;
  }
}
.footer__left {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__left {
    text-align: center;
  }
}
.footer__logo {
  font-size: 24px;
  font-weight: 500;
  width: 100%;
  max-width: var(--max-width-pc);
}
@media (max-width: 767px) {
  .footer__logo {
    font-size: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin: auto;
    max-width: var(--max-width-sp);
  }
}
.footer__address {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .footer__address {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .footer__address {
    font-size: 3.733vw;
  }
}
.footer__info-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer__info-block {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .footer__info-block {
    font-size: 3.733vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__info-block {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 3vw;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer__info-block {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer__info-block > span {
    width: 100%;
    display: block;
  }
  .footer__info-block > span:nth-of-type(2) {
    position: relative;
    z-index: 0;
  }
  .footer__info-block > span:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #333333;
    width: 1px;
    height: 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer__info-block > span:nth-of-type(2)::before {
    display: none;
  }
}
.footer__info-block > span {
  display: block;
}
.footer__info-block > span:nth-of-type(2) {
  position: relative;
  z-index: 0;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .footer__info-block > span:nth-of-type(2) {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer__info-block > span:nth-of-type(2) {
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer__info-block > span:nth-of-type(2) {
    padding-left: calc(0 * 2 / 10 * 1vw);
  }
}
.footer__info-block > span:nth-of-type(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #333333;
  width: 1px;
  height: 100%;
}
.footer__to-top {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .footer__to-top {
    top: -16vw;
    right: 0;
    left: 0;
    margin: auto;
  }
}
.footer__legal {
  font-size: 10px;
  margin-top: 40px;
  line-height: 1.6;
  color: #AAAAAA;
}
@media (max-width: 767px) {
  .footer__legal {
    font-size: 2.667vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__legal {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer__legal {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer__legal {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.footer__banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .footer__banner {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer__banner {
    margin-top: 40px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 5vw 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer__banner {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.footer__banner a {
  display: block;
  max-width: 280px;
  height: 110px;
}
@media screen and (max-width: 767px) {
  .footer__banner a {
    max-width: 100%;
    height: auto;
    margin: auto;
  }
}
.footer__banner span {
  display: block;
  max-width: 280px;
  height: 110px;
}
@media screen and (max-width: 767px) {
  .footer__banner span {
    max-width: 100%;
    height: auto;
    margin: auto;
  }
}
.footer__banner img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__sns {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　フッターメニュー
----------------------------------------------------------------------*/
.footer-navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-navi {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10vw 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-navi__block {
    width: 50%;
  }
}
.footer-navi__item {
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer-navi__item {
    font-size: 3.733vw;
  }
}
.footer-navi a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-navi a:hover {
  opacity: 0.6;
}
.footer-navi__block--item .footer-navi__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer-navi__block--item .footer-navi__item:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer-navi__block--item .footer-navi__item:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer-navi__block--item .footer-navi__item:not(:first-child) {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.footer-navi .mega-menu-content__item {
  margin-top: 20px;
  position: relative;
  z-index: 0;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .footer-navi .mega-menu-content__item {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer-navi .mega-menu-content__item {
    padding-left: calc(25 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .footer-navi .mega-menu-content__item {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .footer-navi .mega-menu-content__item {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.footer-navi .mega-menu-content__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-image: url(assets/images/arrow--link.svg);
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .footer-navi .mega-menu-content__item::after {
    background-size: auto 100%;
    width: 90%;
    height: 90%;
  }
}

/*----------------------------------------------------------------------
　ページトップ
----------------------------------------------------------------------*/
.to-top {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .to-top {
    width: 10vw;
    height: 10vw;
  }
}
.to-top:hover {
  opacity: 1;
}

/*----------------------------------------------------------------------
　ボタン
----------------------------------------------------------------------*/
.normal-btn {
  display: inline-block;
  max-width: 260px;
  width: 100%;
  background-color: #AA9A7C;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border: 2px solid #fff;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: left;
  padding-left: 40px;
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .normal-btn {
    padding-left: calc(40 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .normal-btn {
    font-size: 4.267vw;
  }
}
@media screen and (max-width: 767px) {
  .normal-btn {
    padding-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .normal-btn {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .normal-btn {
    max-width: 65vw;
  }
}
.normal-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #fff;
  width: 10%;
  height: 2px;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.normal-btn::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -6px;
  border-radius: 100px;
  background-color: #AA9A7C;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.normal-btn:hover:before {
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.parts-btn {
  display: inline-block;
  width: 100%;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: left;
  font-size: 16px;
  padding-right: 70px;
}
@media (max-width: 767px) {
  .parts-btn {
    font-size: 4.267vw;
  }
}
@media screen and (max-width: 767px) {
  .parts-btn {
    padding-right: calc(70 * 2 / 10 * 1vw);
  }
}
.parts-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #fff;
  width: 10%;
  height: 2px;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.normal-btn-border-none {
  border: none;
}

.contact-btn {
  font-size: 16px;
  display: inline-block;
  width: 100%;
  background-color: #0084B4;
  color: #fff;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .contact-btn {
    font-size: 4.267vw;
  }
}
.contact-btn a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact-btn a {
    padding-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .contact-btn a {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.contact-btn:hover {
  background-color: #fff;
  color: #0084B4;
}

.contact-btn--white {
  font-size: 16px;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  color: #0084B4;
  border: 1px solid #0084B4;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .contact-btn--white {
    font-size: 4.267vw;
  }
}
.contact-btn--white a {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .contact-btn--white a {
    padding-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .contact-btn--white a {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.contact-btn--white:hover {
  background-color: #0084B4;
  color: #fff;
}

.btn {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .btn {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .btn {
    text-align: center;
  }
}

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

.btn-margin--xl {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .btn-margin--xl {
    margin-top: calc(80 * 2 / 10 * 1vw);
  }
}

@media screen and (max-width: 767px) {
  .btn-anker {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.btn-anker a {
  font-size: 20px;
}
@media (max-width: 767px) {
  .btn-anker a {
    font-size: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .btn-anker a {
    width: 100%;
    display: block;
  }
}
.btn-anker a:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .btn-anker a:not(:last-child) {
    margin-right: calc(20 * 2 / 10 * 1vw);
  }
}
.btn-anker a:not(:first-child) {
  position: relative;
  z-index: 0;
}
.btn-anker a:not(:first-child)::after {
  content: "";
  position: absolute;
  background-color: #333333;
  left: -30px;
  width: 1px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .btn-anker a:not(:first-child)::after {
    top: -3vw;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(51, 51, 51, 0.2);
  }
}

.btn-flex {
  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;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .btn-flex {
    gap: 6vw;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .btn-flex > div {
    width: 100%;
  }
}

/*----------------------------------------------------------------------
　ページ周り
----------------------------------------------------------------------*/
.page {
  padding: 120px 0px 120px;
}
@media screen and (max-width: 767px) {
  .page {
    padding: 18vw 0px 18vw;
  }
}
.page__heading {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .page__heading {
    margin-bottom: calc(50 * 2 / 10 * 1vw);
  }
}
.page-full {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .page-full {
    padding-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .page-full {
    padding-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
.page-breadcrumb {
  padding-top: 10px;
  padding-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .page-breadcrumb {
    padding-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .page-breadcrumb {
    padding-bottom: calc(0 * 2 / 10 * 1vw);
  }
}
.page-top--sm {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .page-top--sm {
    padding-top: calc(10 * 2 / 10 * 1vw);
  }
}
.page-top {
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .page-top {
    padding-top: calc(150 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .page-top {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-top {
    padding-top: calc(80 * 2 / 10 * 1vw);
  }
}
.page-top-none {
  padding-top: 0px;
}
@media screen and (max-width: 767px) {
  .page-top-none {
    padding-top: calc(0 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .page-top-none {
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-top-none {
    padding-top: calc(120 * 2 / 10 * 1vw);
  }
}
.page-bg-color--half {
  padding-top: 100px;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .page-bg-color--half {
    padding-top: calc(100 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .page-bg-color--half {
    padding-bottom: calc(200 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .page-bg-color--half {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-bg-color--half {
    padding-top: calc(0 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-bg-color--half {
    padding-bottom: calc(100 * 2 / 10 * 1vw);
  }
}
.page-bottom--sm {
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-bottom--sm {
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.page__common-contact {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .page__common-contact {
    padding: calc(20 * 2 / 10 * 1vw);
  }
}
.page__common-contact-inner {
  background-color: rgba(0, 132, 180, 0.1);
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .page__common-contact-inner {
    padding-top: calc(50 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .page__common-contact-inner {
    padding-bottom: calc(50 * 2 / 10 * 1vw);
  }
}

.page-mv {
  height: 440px;
  margin: auto;
  position: relative;
  width: 1132px;
  max-width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 16px;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .page-mv {
    padding: 0 5vw;
  }
}
@media screen and (max-width: 767px) {
  .page-mv {
    margin-top: calc(100 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .page-mv {
    height: 50vw;
    padding: 0 5vw;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .page-mv {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.page-mv > .container {
  height: 100%;
  background-position: center;
  background-size: cover;
}
.page-mv__content {
  position: absolute;
  top: -30px;
  left: 16px;
  z-index: 1;
  font-size: 34px;
}
@media (max-width: 767px) {
  .page-mv__content {
    font-size: 4.267vw;
  }
}
@media screen and (max-width: 767px) {
  .page-mv__content {
    left: 5vw;
    top: -2vw;
    color: #AAAAAA;
  }
}

.page-mv-title {
  font-size: 34px;
  letter-spacing: 0.2em;
  max-width: 1100px;
  margin: auto;
  padding-top: 40px;
}
@media (max-width: 767px) {
  .page-mv-title {
    font-size: 7.467vw;
  }
}
@media screen and (max-width: 767px) {
  .page-mv-title {
    padding-top: calc(40 * 2 / 10 * 1vw);
  }
}

.page-mv--block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page-mv--block-left {
  position: absolute;
  top: -0.5px;
  display: inline-block;
  width: 75%;
  height: 32%;
  left: 0;
  background-color: #F6F4EF;
  -webkit-clip-path: polygon(0 0, 100% 0%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 0% 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-mv--block-left {
    height: 12vw;
    top: -0.5px;
  }
}

.page-mv--block-right {
  position: absolute;
  top: -0.5px;
  display: inline-block;
  width: 25%;
  height: 40%;
  right: 0;
  background-color: #F6F4EF;
  -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%);
          clip-path: polygon(0 0%, 100% 0%, 100% 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-mv--block-right {
    height: 12vw;
    top: -0.5px;
  }
}

/*----------------------------------------------------------------------
　パーツサイド
----------------------------------------------------------------------*/
.parts-side__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .parts-side__block {
    gap: 8vw;
  }
}
.parts-side__block-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.parts-side__main {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .parts-side__main {
    width: 100%;
  }
}
.parts-side__sub {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .parts-side__sub {
    width: 100%;
  }
}

/*----------------------------------------------------------------------
　記事詳細
----------------------------------------------------------------------*/
.md-body {
  max-width: 800px;
  margin: auto;
  width: 100%;
}

.cateogry-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .cateogry-list {
    gap: 2vw;
  }
}
.cateogry-list__box {
  display: inline-block;
  padding: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  border: 1px solid #ADB400;
  color: #ADB400;
  border-radius: 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .cateogry-list__box {
    padding: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .cateogry-list__box {
    padding-top: calc(5 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .cateogry-list__box {
    padding-bottom: calc(5 * 2 / 10 * 1vw);
  }
}

.single {
  max-width: 600px;
  margin: auto;
}
.single__date {
  color: #AAAAAA;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-style: normal;
}
.single__title {
  line-height: 1.5;
  font-weight: 500;
  font-size: 26px;
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 767px) {
  .single__title {
    font-size: 6.4vw;
  }
}
@media screen and (max-width: 767px) {
  .single__title {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.single__date {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single__date {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .single__date {
    font-size: 4.267vw;
  }
}
.single__category {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .single__category {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.single__thumbnail {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .single__thumbnail {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.single__thumbnail img {
  width: 100%;
  aspect-ratio: 16/12;
  -o-object-fit: cover;
     object-fit: cover;
}
.single__content {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .single__content {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.single__voice-name {
  margin-top: 30px;
  text-align: center;
  color: #AAAAAA;
}
@media screen and (max-width: 767px) {
  .single__voice-name {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　記事詳細パーツ
----------------------------------------------------------------------*/
.wysiwyg {
  font-weight: 500;
  line-height: 1.8;
}
.wysiwyg p,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg table,
.wysiwyg dl,
.wysiwyg blockquote, .wysiwyg > ul, .wysiwyg > ol, .wysiwyg > figure, .wysiwyg > div {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .wysiwyg p,
  .wysiwyg h2,
  .wysiwyg h3,
  .wysiwyg h4,
  .wysiwyg table,
  .wysiwyg dl,
  .wysiwyg blockquote, .wysiwyg > ul, .wysiwyg > ol, .wysiwyg > figure, .wysiwyg > div {
    margin-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.wysiwyg h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .wysiwyg h2 {
    font-size: 5.867vw;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg h2 {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.wysiwyg h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .wysiwyg h3 {
    font-size: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg h3 {
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.wysiwyg h4 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .wysiwyg h4 {
    font-size: 4.8vw;
  }
}
.wysiwyg p {
  font-size: 16px;
  line-height: 2.2em;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .wysiwyg p {
    font-size: 4.267vw;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg p {
    margin-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg p {
    line-height: 1.8em;
  }
}
.wysiwyg .wp-block-table {
  overflow-x: scroll;
}
.wysiwyg .wp-block-table::-webkit-scrollbar {
  width: 10px;
}
.wysiwyg .wp-block-table::-webkit-scrollbar-track {
  border-radius: 10px;
  border: 1px solid #E7E7E7;
}
.wysiwyg .wp-block-table::-webkit-scrollbar-thumb {
  background-color: #F2F2F2;
  border-radius: 10px;
}
.wysiwyg img {
  max-width: 100%;
}
.wysiwyg img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wysiwyg img.alignright {
  float: right;
  margin-left: 1.5em;
}
.wysiwyg img.alignleft {
  float: left;
  margin-right: 1.5em;
}
.wysiwyg table thead {
  background-color: #454545;
  color: #fff;
  text-align: right;
}
.wysiwyg table thead th {
  text-align: center;
}
.wysiwyg table th,
.wysiwyg table td {
  padding: 20px;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wysiwyg table th,
  .wysiwyg table td {
    padding: calc(20 * 2 / 10 * 1vw);
  }
}
.wysiwyg table th::after,
.wysiwyg table td::after {
  content: "";
  display: block;
  width: 2px;
  height: 1.6em;
  background-color: #e6e6e6;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.wysiwyg table th:last-child::after,
.wysiwyg table td:last-child::after {
  display: none;
}
.wysiwyg table tbody tr td {
  border-bottom: 2px solid #e6e6e6;
}
.wysiwyg table tbody tr td:first-child {
  background-color: #F2F2F2;
}
.wysiwyg table tbody tr td:first-child::after {
  display: none;
}
.wysiwyg table tbody tr th {
  background-color: #F2F2F2;
}
.wysiwyg dl {
  border: 1px solid #ccc;
}
.wysiwyg dt, .wysiwyg dd {
  padding: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .wysiwyg dt, .wysiwyg dd {
    padding: calc(20 * 2 / 10 * 1vw);
  }
}
.wysiwyg dt {
  background-color: #454545;
  color: #fff;
}
.wysiwyg blockquote {
  font-size: 16px;
  line-height: 1.875;
  background-color: #F2F2F2;
  padding: 40px;
  position: relative;
}
@media (max-width: 767px) {
  .wysiwyg blockquote {
    font-size: 4.267vw;
  }
}
@media screen and (max-width: 767px) {
  .wysiwyg blockquote {
    padding: calc(40 * 2 / 10 * 1vw);
  }
}
.wysiwyg blockquote::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 24px;
  color: #9e9b94;
  font-size: 24px;
}
@media (max-width: 767px) {
  .wysiwyg blockquote::before {
    font-size: 5.333vw;
  }
}
.wysiwyg blockquote::after {
  content: "”";
  position: absolute;
  bottom: 12px;
  right: 24px;
  color: #9e9b94;
  font-size: 24px;
}
@media (max-width: 767px) {
  .wysiwyg blockquote::after {
    font-size: 5.333vw;
  }
}
.wysiwyg blockquote cite {
  font-size: 14px;
  display: block;
  text-align: right;
  color: #6f6c67;
  position: relative;
}
@media (max-width: 767px) {
  .wysiwyg blockquote cite {
    font-size: 3.733vw;
  }
}
.wysiwyg blockquote cite::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 28px;
  background-color: #707070;
  vertical-align: middle;
  margin-right: 1.5em;
}
.wysiwyg ul {
  list-style: disc;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .wysiwyg ul {
    margin-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
.wysiwyg ol {
  list-style: decimal;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .wysiwyg ol {
    margin-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
.wysiwyg ul, .wysiwyg ol {
  padding-left: 1.3em;
}
.wysiwyg ul li, .wysiwyg ol li {
  line-height: 1.8;
}
.wysiwyg strong {
  font-weight: bold;
}

/*----------------------------------------------------------------------
　ページネーション
----------------------------------------------------------------------*/
.pagination-wrap {
  width: 100%;
  margin: 100px auto 0;
}

.pagination, .page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .pagination, .page-numbers {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.pagination span, .pagination a, .page-numbers span, .page-numbers a {
  display: block;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 767px) {
  .pagination span, .pagination a, .page-numbers span, .page-numbers a {
    font-size: 4.267vw;
  }
}
.pagination span.current, .pagination span:hover, .pagination a.current, .pagination a:hover, .page-numbers span.current, .page-numbers span:hover, .page-numbers a.current, .page-numbers a:hover {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
  color: #BABABA;
}

/*----------------------------------------------------------------------
　パンくず
----------------------------------------------------------------------*/
.breadcrumb {
  margin-top: 20px;
}
.breadcrumb ul {
  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;
}
.breadcrumb li {
  white-space: nowrap;
}
.breadcrumb li::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 13px;
  background-image: url("./assets/images/arrow-right--mini.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 20px;
  color: #EBE4D8;
}
.breadcrumb li:last-child::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    overflow-x: scroll;
  }
}

/*----------------------------------------------------------------------
　見出し
----------------------------------------------------------------------*/
.heading__jp {
  font-size: 30px;
  margin-top: 30px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .heading__jp {
    font-size: 5.867vw;
  }
}
@media screen and (max-width: 767px) {
  .heading__jp {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.heading__jp--mini {
  font-size: 24px;
  color: #333333;
}
@media (max-width: 767px) {
  .heading__jp--mini {
    font-size: 5.333vw;
  }
}
.heading__en {
  font-size: 20px;
  color: #EDA00E;
  letter-spacing: 0.1em;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  .heading__en {
    font-size: 4.8vw;
  }
}
.heading__en--white {
  color: #fff !important;
}
.heading__en--accent {
  color: #0084B4;
}
.heading__en--sign {
  padding-left: 30px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .heading__en--sign {
    padding-left: calc(30 * 2 / 10 * 1vw);
  }
}
.heading__en--sign::after {
  content: "";
  position: absolute;
  top: 60%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #EDA00E;
  width: 10px;
  height: 10px;
  border-radius: 100px;
}

/*----------------------------------------------------------------------
　パーツ
----------------------------------------------------------------------*/
.parts__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .parts__heading {
    margin-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts__heading {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts__heading {
    margin-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
.parts__block-mini {
  max-width: 1000px;
  margin: auto;
}
.parts__title-block {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .parts__title-block {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.parts__flex {
  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;
}
.parts__flex-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.parts__line {
  margin-top: 40px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .parts__line {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.parts__line--left {
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .parts__line--left {
    padding-left: calc(50 * 2 / 10 * 1vw);
  }
}
.parts__title {
  font-size: 34px;
  text-align: center;
}
@media (max-width: 767px) {
  .parts__title {
    font-size: 7.467vw;
  }
}
.parts__title h3 {
  display: inline-block;
  line-height: 1.6;
  padding-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .parts__title h3 {
    padding-bottom: calc(5 * 2 / 10 * 1vw);
  }
}
.parts__title--en {
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-style: normal;
  color: #EDA00E;
}
.parts__title-mini {
  font-size: 26px;
}
@media (max-width: 767px) {
  .parts__title-mini {
    font-size: 6.4vw;
  }
}
.parts__text {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .parts__text {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.parts__img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/6;
}
@media screen and (max-width: 767px) {
  .parts__img img {
    aspect-ratio: 16/10;
  }
}
.parts__img--margin-top {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .parts__img--margin-top {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.parts__img-round img {
  border-radius: 10px;
}
.parts__title--description {
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .parts__title--description {
    font-size: 3.733vw;
  }
}
@media screen and (max-width: 767px) {
  .parts__title--description {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.parts__service-list {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .parts__service-list {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.parts__text-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .parts__text-center {
    text-align: left;
  }
}
.parts__text-mini {
  max-width: 600px;
  margin: auto;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .parts__text-mini {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.parts__tel-block {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .parts__tel-block {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.parts__freecall-block {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .parts__freecall-block {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　パーツ　カラム
----------------------------------------------------------------------*/
.parts-column__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .parts-column__heading {
    margin-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
.parts-column__block {
  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;
}
@media screen and (max-width: 767px) {
  .parts-column__block {
    gap: 8vw;
  }
}
.parts-column__block-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.parts-column__block-mini {
  max-width: 1000px;
  margin: auto;
}
.parts-column__block--margin-top {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .parts-column__block--margin-top {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.parts-column__left {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .parts-column__left {
    width: 100%;
  }
}
.parts-column__left--margin-left .parts-column__title {
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .parts-column__left--margin-left .parts-column__title {
    margin-left: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__left--margin-left .parts-column__title {
    margin-left: 0px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__left--margin-left .parts-column__title {
    margin-left: calc(0 * 2 / 10 * 1vw);
  }
}
.parts-column__right {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .parts-column__right {
    width: 100%;
  }
}
.parts-column__title {
  font-size: 34px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .parts-column__title {
    font-size: 8vw;
  }
}
.parts-column__title--mini {
  font-size: 26px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .parts-column__title--mini {
    font-size: 5.867vw;
  }
}
.parts-column__text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .parts-column__text {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.parts-column__text-block--white {
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-left: calc(80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-right: calc(80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-top: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-left: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-right: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__text-block--white {
    padding-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
.parts-column__text-block--white-bg {
  position: relative;
}
.parts-column__text-block--white-bg::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -8px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #333333;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.parts-column__text-block--round {
  border-radius: 10px;
}
.parts-column__text-block--border {
  border: 1px solid #333333;
}
.parts-column__text-block--margin-top {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .parts-column__text-block--margin-top {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__text-block--margin-top {
    margin-top: -80px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__text-block--margin-top {
    margin-top: calc(-80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__text-block--margin-top {
    margin-left: calc(40 * 2 / 10 * 1vw);
  }
}
.parts-column__text-block--margin-top-greeting {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .parts-column__text-block--margin-top-greeting {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.parts-column__sign {
  margin-top: 20px;
  padding-left: 10px;
  color: #AA9A7C;
}
@media screen and (max-width: 767px) {
  .parts-column__sign {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__sign {
    padding-left: calc(10 * 2 / 10 * 1vw);
  }
}
.parts-column__sign-inner {
  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;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .parts-column__sign-inner {
    gap: 0 4vw;
  }
}
.parts-column__img--margin-right {
  margin-right: 100px;
}
@media screen and (max-width: 767px) {
  .parts-column__img--margin-right {
    margin-right: calc(100 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__img--margin-right {
    margin-right: 0px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__img--margin-right {
    margin-right: calc(0 * 2 / 10 * 1vw);
  }
}
.parts-column__img--margin-top {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .parts-column__img--margin-top {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.parts-column__link-parts {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .parts-column__link-parts {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.parts-column__sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.parts-column__img-round img {
  border-radius: 10px;
}
.parts-column__block--sm {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .parts-column__block--sm {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.parts-column__block--sm > .parts-column__left {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .parts-column__block--sm > .parts-column__left {
    width: 100%;
  }
}
.parts-column__block--sm > .parts-column__right {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .parts-column__block--sm > .parts-column__right {
    width: 100%;
  }
}
.parts-column__block--md > .parts-column__left {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .parts-column__block--md > .parts-column__left {
    width: 100%;
  }
}
.parts-column__block--md > .parts-column__right {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .parts-column__block--md > .parts-column__right {
    width: 100%;
  }
}
.parts-column__block--xl > .parts-column__left {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .parts-column__block--xl > .parts-column__left {
    width: 100%;
  }
}
.parts-column__block--xl > .parts-column__right {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .parts-column__block--xl > .parts-column__right {
    width: 100%;
  }
}
.parts-column__block-area > .parts-column__block:not(:first-child) {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .parts-column__block-area > .parts-column__block:not(:first-child) {
    margin-top: calc(100 * 2 / 10 * 1vw);
  }
}
.parts-column__img--md {
  position: relative;
  z-index: 1;
  width: 110%;
}
@media screen and (max-width: 767px) {
  .parts-column__img--md {
    width: 100%;
  }
}
.parts-column__img--xl {
  position: relative;
  z-index: -1;
  width: 120%;
}
@media screen and (max-width: 767px) {
  .parts-column__img--xl {
    width: 90%;
  }
}
.parts-column__line--margin-top {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .parts-column__line--margin-top {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.parts-column__block-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.parts-column__block-r .parts-column__img--xl {
  left: -20%;
}
@media screen and (max-width: 767px) {
  .parts-column__block-r .parts-column__img--xl {
    left: 0;
  }
}
.parts-column__point:not(:last-child) {
  border-bottom: 2px dashed rgba(51, 51, 51, 0.3);
  padding-bottom: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .parts-column__point:not(:last-child) {
    padding-bottom: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__point:not(:last-child) {
    margin-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
.parts-column__access:not(:first-child) {
  border-top: 2px dashed rgba(51, 51, 51, 0.3);
  padding-top: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .parts-column__access:not(:first-child) {
    padding-top: calc(80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__access:not(:first-child) {
    margin-top: calc(80 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .parts-column__access:not(:first-child) {
    padding-top: 60px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__access:not(:first-child) {
    padding-top: calc(60 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .parts-column__access:not(:first-child) {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.parts-column__img-landscape img {
  width: 100%;
  aspect-ratio: 55/19;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .parts-column__img-landscape img {
    aspect-ratio: 55/30;
  }
}
.parts-column__text-center {
  text-align: center;
}
.parts-column__slogan {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .parts-column__slogan {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.parts-column__movie:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .parts-column__movie:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.parts-column__movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.parts-column--bg-color {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .parts-column--bg-color {
    padding-top: calc(100 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　アンダーライン
----------------------------------------------------------------------*/
.under-line {
  background-image: url(assets/images/common/under-line.png);
  background-position: bottom;
  background-size: 100% 10px;
  background-repeat: no-repeat;
  height: 100%;
}

.under-line--padding-bottom {
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .under-line--padding-bottom {
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　幅調整
----------------------------------------------------------------------*/
.obg-right img {
  width: 100%;
}

.obg-left img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .obj-left--md-none {
    width: 100vw !important;
    margin-left: calc((100vw - 100%) / 2 * -1) !important;
  }
}

@media screen and (max-width: 767px) {
  .obj-right--md-none {
    width: 100vw !important;
    margin-left: calc((100vw - 100%) / 2 * -1) !important;
  }
}

/*----------------------------------------------------------------------
　背景
----------------------------------------------------------------------*/
.bg-color {
  background-color: rgba(237, 160, 14, 0.1);
}

.bg-color-accent__01 {
  background-color: rgba(0, 132, 180, 0.1);
}
.bg-color-accent__02 {
  background-color: rgba(0, 132, 180, 0.2);
}

/*----------------------------------------------------------------------
　背景画像
----------------------------------------------------------------------*/
.bg-img-wallpaper {
  position: relative;
  z-index: 0;
}
.bg-img-wallpaper::before {
  content: "";
  background-image: url(assets/images/common/bg-img-paper.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .bg-img-wallpaper::before {
    background-image: url(assets/images/common/bg-img-paper_sp.jpg);
  }
}

.bg-img-wood {
  position: relative;
  z-index: 0;
}
.bg-img-wood::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(assets/images/common/bg-img-wood.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*----------------------------------------------------------------------
　背景色 共通
----------------------------------------------------------------------*/
.bg-color {
  background-color: #F5EFE5;
}

/*----------------------------------------------------------------------
　CTP 共通
----------------------------------------------------------------------*/
.common-contact__box:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .common-contact__box:not(:first-child) {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}
.common-contact__recruit {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .common-contact__recruit {
    margin-top: calc(80 * 2 / 10 * 1vw);
  }
}

.contact-box__info {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact-box__info {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.contact-box__title {
  line-height: 1.6;
}
.contact-box__info-block:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .contact-box__info-block:not(:first-child) {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .contact-box__info-block:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .contact-box__info-block:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.contact-box__tel-title {
  font-size: 15px;
}
@media (max-width: 767px) {
  .contact-box__tel-title {
    font-size: 4vw;
  }
}
.contact-box__tel {
  font-size: 30px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-style: normal;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .contact-box__tel {
    font-size: 5.867vw;
  }
}
@media screen and (max-width: 767px) {
  .contact-box__tel {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.contact-box__fax-title {
  font-size: 15px;
}
@media (max-width: 767px) {
  .contact-box__fax-title {
    font-size: 4vw;
  }
}
.contact-box__fax {
  font-size: 30px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-style: normal;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .contact-box__fax {
    font-size: 5.867vw;
  }
}
@media screen and (max-width: 767px) {
  .contact-box__fax {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.contact-box__btn:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .contact-box__btn:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.contact-box__time {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #0084B4;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contact-box__time {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .contact-box__time {
    font-size: 3.733vw;
  }
}
.contact-box__text-block {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact-box__text-block {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.contact-box__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .contact-box__block {
    gap: 6vw 0;
  }
}
.contact-box__left {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact-box__left {
    width: 100%;
  }
}
.contact-box__right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact-box__right {
    width: 100%;
  }
}

/*----------------------------------------------------------------------
　SNS周り
----------------------------------------------------------------------*/
.sns__wrap {
  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;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .sns__wrap {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .sns__item {
    width: 10vw;
  }
}

/*----------------------------------------------------------------------
　求人情報
----------------------------------------------------------------------*/
.recruit-table {
  max-width: 800px;
  margin: auto;
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
}
@media screen and (max-width: 767px) {
  .recruit-table {
    border-spacing: 0;
  }
}
.recruit-table tr {
  position: relative;
  z-index: 0;
}
.recruit-table tr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(left, #333333, #333333 6px, transparent 6px, transparent 8px);
  background-image: linear-gradient(to right, #333333, #333333 6px, transparent 6px, transparent 8px); /* 幅2の線を作る */
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  opacity: 0.4;
  width: 100%;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .recruit-table tr:not(:first-child) th {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .recruit-table tr:not(:first-child) th {
    padding-top: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .recruit-table tr th {
    color: #AA9A7C;
  }
}
.recruit-table th, .recruit-table td {
  padding: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .recruit-table th, .recruit-table td {
    padding: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .recruit-table th, .recruit-table td {
    padding-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .recruit-table th, .recruit-table td {
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.recruit-table th {
  width: 20%;
  vertical-align: text-top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .recruit-table th {
    width: 100%;
    display: block;
  }
}
.recruit-table td {
  line-height: 2;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .recruit-table td {
    width: 100%;
    display: block;
  }
}

.recruit-wrap {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .recruit-wrap {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}

.recruit-btn {
  margin: auto;
  max-width: 600px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .recruit-btn {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　アクセス
----------------------------------------------------------------------*/
.access-box__main {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .access-box__main {
    margin-right: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .access-box__main {
    margin-right: 0px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .access-box__main {
    margin-right: calc(0 * 2 / 10 * 1vw);
  }
}
.access-box__place {
  line-height: 1.6;
}
.access-box__title {
  width: 100%;
  font-size: 16px;
}
@media (max-width: 767px) {
  .access-box__title {
    font-size: 4.267vw;
  }
}
.access-box__title h4 {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
  background-color: #EDA00E;
  border-radius: 100px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .access-box__title h4 {
    padding-top: calc(0 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .access-box__title h4 {
    padding-bottom: calc(0 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .access-box__title h4 {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .access-box__title h4 {
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .access-box__title {
    width: 100%;
  }
}
.access-box__content {
  margin-top: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .access-box__content {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.access-box__description {
  margin-top: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .access-box__description {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.access-box__info {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .access-box__info {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.access-box__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 767px) {
  .access-box__map iframe {
    aspect-ratio: 16/14;
  }
}

/*----------------------------------------------------------------------
　企業情報
----------------------------------------------------------------------*/
.company-wrap {
  max-width: 800px;
  margin: auto;
}

.company-table {
  width: 100%;
}
.company-table th, .company-table td {
  padding: 10px;
  padding-top: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .company-table th, .company-table td {
    padding: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .company-table th, .company-table td {
    padding-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .company-table th, .company-table td {
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.company-table tr {
  position: relative;
  z-index: 0;
  display: table;
  width: 100%;
}
.company-table tr::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(left, #333333, #333333 6px, transparent 6px, transparent 8px);
  background-image: linear-gradient(to right, #333333, #333333 6px, transparent 6px, transparent 8px); /* 幅2の線を作る */
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  opacity: 0.4;
  width: 100%;
  height: 1px;
}
.company-table th {
  width: 16%;
  vertical-align: middle;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .company-table th {
    width: 30%;
  }
}
.company-table td {
  line-height: 2;
}

/*----------------------------------------------------------------------
　サービス内容
----------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .service-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(30px * -1);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .service-list__item {
    margin-bottom: 30px;
    margin-right: 30px;
    width: calc((100% - 30px * (3 - 1)) / 3);
  }
  .service-list__item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .service-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(8vw * -1);
  }
  .service-list__item {
    margin-bottom: 8vw;
    margin-right: 8vw;
    width: calc((100% - 8vw * (1 - 1)) / 1);
  }
  .service-list__item:nth-of-type(1n) {
    margin-right: 0;
  }
}

.service-list-item__title {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-list-item__title {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .service-list-item__title {
    font-size: 4.8vw;
  }
}
.service-list-item__text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .service-list-item__text {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.service-list-item__img {
  position: relative;
  z-index: 0;
}
.service-list-item__img-inner img {
  border-radius: 50%;
  aspect-ratio: 5/5;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-list-item__number {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 60%;
  margin: auto;
}

.service-list-detail__title {
  margin-top: 20px;
  font-size: 26px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .service-list-detail__title {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .service-list-detail__title {
    font-size: 5.867vw;
  }
}
.service-list-detail__text {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .service-list-detail__text {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.service-list-detail__img {
  position: relative;
  z-index: 0;
}
.service-list-detail__img-inner img {
  border-radius: 50%;
  aspect-ratio: 5/5;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-list-detail__number {
  max-width: 200px;
}

/*----------------------------------------------------------------------
　ギャラリー
----------------------------------------------------------------------*/
.gallery-list {
  gap: 40px 0;
}
@media screen and (min-width: 768px) {
  .gallery-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(20px * -1);
  }
  .gallery-list__item {
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc((100% - 20px * (3 - 1)) / 3);
  }
  .gallery-list__item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .gallery-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(8vw * -1);
  }
  .gallery-list__item {
    margin-bottom: 8vw;
    margin-right: 8vw;
    width: calc((100% - 8vw * (1 - 1)) / 1);
  }
  .gallery-list__item:nth-of-type(1n) {
    margin-right: 0;
  }
}

.gallery-list-item figcaption {
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .gallery-list-item figcaption {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.gallery-list-item img {
  aspect-ratio: 12/13;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-list-item__img-round img {
  border-radius: 10px;
}

/*----------------------------------------------------------------------
　スタッフ
----------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .staff-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(40px * -1);
  }
  .staff-list__item {
    margin-bottom: 40px;
    margin-right: 40px;
    width: calc((100% - 40px * (2 - 1)) / 2);
  }
  .staff-list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .staff-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(8vw * -1);
  }
  .staff-list__item {
    margin-bottom: 8vw;
    margin-right: 8vw;
    width: calc((100% - 8vw * (1 - 1)) / 1);
  }
  .staff-list__item:nth-of-type(1n) {
    margin-right: 0;
  }
}

.staff-list-item__block {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .staff-list-item__block {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.staff-list-item__item-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  line-height: 1.6;
  color: #AAAAAA;
}
@media (max-width: 767px) {
  .staff-list-item__item-block {
    font-size: 3.733vw;
  }
}
.staff-list-item__item {
  font-weight: 600;
}
.staff-list-item__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.staff-list-item__comment {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .staff-list-item__comment {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.staff-list-item__img img {
  aspect-ratio: 12/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-list-item__position {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .staff-list-item__position {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.staff-list-item__positon-inner {
  background-color: #EDA00E;
  color: #fff;
  display: inline-block;
  border-radius: 100px;
  font-size: 12px;
  padding: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  .staff-list-item__positon-inner {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .staff-list-item__positon-inner {
    padding: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .staff-list-item__positon-inner {
    padding-top: calc(5 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .staff-list-item__positon-inner {
    padding-bottom: calc(5 * 2 / 10 * 1vw);
  }
}
.staff-list-item__name {
  margin-top: 10px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .staff-list-item__name {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .staff-list-item__name {
    font-size: 4.8vw;
  }
}
.staff-list-item__img-round img {
  border-radius: 10px;
}

/*----------------------------------------------------------------------
　お客様の声
----------------------------------------------------------------------*/
.voice-list {
  max-width: 1000px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .voice-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(40px * -1);
  }
  .voice-list__item {
    margin-bottom: 40px;
    margin-right: 40px;
    width: calc((100% - 40px * (2 - 1)) / 2);
  }
  .voice-list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .voice-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(8vw * -1);
  }
  .voice-list__item {
    margin-bottom: 8vw;
    margin-right: 8vw;
    width: calc((100% - 8vw * (1 - 1)) / 1);
  }
  .voice-list__item:nth-of-type(1n) {
    margin-right: 0;
  }
}

.voice-list-item__info-block {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .voice-list-item__info-block {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.voice-list-item__info {
  color: #AAAAAA;
}
.voice-list-item__title {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .voice-list-item__title {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .voice-list-item__title {
    font-size: 4.8vw;
  }
}
.voice-list-item__thumbnail {
  overflow: hidden;
}
.voice-list-item__thumbnail img {
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.voice-list-item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*----------------------------------------------------------------------
　施工事例
----------------------------------------------------------------------*/
.works-list {
  max-width: 1000px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .works-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(30px * -1);
  }
  .works-list__item {
    margin-bottom: 30px;
    margin-right: 30px;
    width: calc((100% - 30px * (3 - 1)) / 3);
  }
  .works-list__item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .works-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: calc(6vw * -1);
    gap: 6vw 0;
  }
  .works-list__item {
    margin-bottom: 6vw;
    margin-right: 6vw;
    width: calc((100% - 6vw * (1 - 1)) / 1);
  }
  .works-list__item:nth-of-type(1n) {
    margin-right: 0;
  }
}

.works-list-item {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.works-list-item__info-block {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .works-list-item__info-block {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .works-list-item__info-block {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .works-list-item__info-block {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.works-list-item__status {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.works-list-item__date {
  color: #AAAAAA;
  font-size: 12px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
  .works-list-item__date {
    font-size: 2.667vw;
  }
}
.works-list-item__title {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .works-list-item__title {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
@media (max-width: 767px) {
  .works-list-item__title {
    font-size: 4.267vw;
  }
}
.works-list-item__category {
  font-size: 12px;
}
@media (max-width: 767px) {
  .works-list-item__category {
    font-size: 2.667vw;
  }
}
.works-list-item__img img {
  aspect-ratio: 13/14;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.works-list-item:hover {
  opacity: 0.8;
}
.works-list-item__works-summary {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .works-list-item__works-summary {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}

.works-summary-list {
  font-size: 14px;
}
@media (max-width: 767px) {
  .works-summary-list {
    font-size: 3.733vw;
  }
}

.works-summary-bg {
  background-color: rgba(186, 186, 186, 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .works-summary-bg {
    padding-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .works-summary-bg {
    padding-bottom: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .works-summary-bg {
    padding-left: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .works-summary-bg {
    padding-right: calc(30 * 2 / 10 * 1vw);
  }
}

.works-summary__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #BABABA;
}
@media screen and (max-width: 767px) {
  .works-summary__box {
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .works-summary__box {
    gap: 6vw;
  }
}
.works-summary__box:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .works-summary__box:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　沿革
----------------------------------------------------------------------*/
.history__heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .history__heading {
    margin-bottom: calc(60 * 2 / 10 * 1vw);
  }
}
.history__content {
  max-width: 880px;
  margin: auto;
}
.history__box-text {
  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;
}
.history__box {
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .history__box {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.history__box:not(:last-child) {
  position: relative;
  z-index: 0;
}
.history__box:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(left, #333333, #333333 6px, transparent 6px, transparent 8px);
  background-image: linear-gradient(to right, #333333, #333333 6px, transparent 6px, transparent 8px); /* 幅2の線を作る */
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  opacity: 0.4;
  width: 100%;
  height: 1px;
}
.history__box:not(:first-child) {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .history__box:not(:first-child) {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.history__box-year {
  width: 15%;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .history__box-year {
    width: 25%;
  }
}
.history__box-description {
  width: 85%;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .history__box-description {
    width: 70%;
  }
}
.history__box-img-block {
  margin-top: 20px;
  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;
}
@media screen and (max-width: 767px) {
  .history__box-img-block {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .history__box-img-block {
    gap: 4vw;
  }
}
.history__box-img {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .history__box-img {
    width: 100%;
  }
}
.history__box-img img {
  border-radius: 10px;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

/*----------------------------------------------------------------------
　電話番号
----------------------------------------------------------------------*/
.tel-block-center {
  text-align: center;
}

.tel-block-accent-color {
  color: #0084B4;
}

.tel-block__time {
  margin-top: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .tel-block__time {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.tel-block__title {
  font-size: 20px;
}
@media (max-width: 767px) {
  .tel-block__title {
    font-size: 4.8vw;
  }
}
.tel-block__number {
  font-size: 40px;
}
@media (max-width: 767px) {
  .tel-block__number {
    font-size: 7.467vw;
  }
}
.tel-block__number a {
  display: inline-block;
}

/*----------------------------------------------------------------------
　フリーコール
----------------------------------------------------------------------*/
.freecall-block-center {
  text-align: center;
}

.freecall-block-accent-color {
  color: #0084B4;
}

.freecall-block__time {
  margin-top: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .freecall-block__time {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.freecall-block__title {
  font-size: 20px;
}
@media (max-width: 767px) {
  .freecall-block__title {
    font-size: 4.8vw;
  }
}
.freecall-block__number {
  font-size: 40px;
}
@media (max-width: 767px) {
  .freecall-block__number {
    font-size: 7.467vw;
  }
}
.freecall-block__number a {
  display: inline-block;
}

/*----------------------------------------------------------------------
　よくある質問
----------------------------------------------------------------------*/
.faq__wrap {
  max-width: 1000px;
  margin: auto;
}
.faq__group {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .faq__group {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.faq__list {
  font-size: 26px;
}
@media (max-width: 767px) {
  .faq__list {
    font-size: 5.867vw;
  }
}

.faq-box {
  max-width: 800px;
  margin: auto;
}
.faq-box:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .faq-box:not(:first-child) {
    margin-top: calc(60 * 2 / 10 * 1vw);
  }
}
.faq-box__q {
  font-size: 20px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1.6;
  cursor: pointer;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .faq-box__q {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 767px) {
  .faq-box__q {
    padding-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .faq-box__q {
    margin-bottom: calc(10 * 2 / 10 * 1vw);
  }
}
.faq-box__q::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-linear-gradient(left, #333333, #333333 6px, transparent 6px, transparent 8px);
  background-image: linear-gradient(to right, #333333, #333333 6px, transparent 6px, transparent 8px); /* 幅2の線を作る */
  background-size: 10px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  opacity: 0.4;
  width: 100%;
  height: 1px;
}
@media screen and (max-width: 767px) {
  .faq-box__q {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .faq-box__q {
    margin-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.faq-box__q-color {
  color: #EDA00E;
}

.faq-none {
  padding-top: 20px;
  padding-bottom: 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .faq-none {
    padding-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .faq-none {
    padding-bottom: calc(100 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　お知らせ
----------------------------------------------------------------------*/
.news__box {
  background-color: #fff;
  padding: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .news__box {
    padding: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .news__box {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.news__box:not(:first-child) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .news__box:not(:first-child) {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}
.news__date {
  line-height: 1.6;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  font-style: normal;
  color: #AAAAAA;
  font-size: 12px;
}
@media (max-width: 767px) {
  .news__date {
    font-size: 3.2vw;
  }
}
.news__title {
  line-height: 1.6;
}
.news__title--ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*----------------------------------------------------------------------
　お問合わせ
----------------------------------------------------------------------*/
.wpcf7 form .wpcf7-response-output {
  border: 0 !important;
  padding: 20px !important;
  background-color: rgba(255, 0, 0, 0.3) !important;
  margin: 2em 0 0 0 !important;
  color: red !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  color: #46b450 !important;
  background-color: rgba(70, 180, 80, 0.3) !important;
}

/*----------------------------------------------------------------------
　お問合わせフォーム
----------------------------------------------------------------------*/
.form {
  max-width: 600px;
  margin: auto;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .form {
    margin-top: calc(100 * 2 / 10 * 1vw);
  }
}
.form__block:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .form__block:not(:first-child) {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__block:not(:first-child) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .form__block:not(:first-child) {
    margin-top: calc(50 * 2 / 10 * 1vw);
  }
}
.form__item-box {
  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;
  gap: 0 10px;
}
@media screen and (max-width: 767px) {
  .form__item-box {
    width: 100%;
    gap: 0 1em;
  }
}
.form__item-box-top {
  margin-bottom: auto;
}
.form__item {
  font-size: 20px;
}
@media (max-width: 767px) {
  .form__item {
    font-size: 4.8vw;
  }
}
.form__input {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .form__input {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.form__input input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form__input textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid rgba(51, 51, 51, 0.2);
  font-family: "Zen Maru Gothic";
  font-weight: 400;
  font-style: normal;
  border-radius: 10px;
}
.form__input input[type=text] {
  background-color: #F5F5F5;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  padding: 14px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form__input input[type=text] {
    padding: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__input input[type=text] {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__input input[type=text] {
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.form__input input[type=tel] {
  background-color: #F5F5F5;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  padding: 14px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form__input input[type=tel] {
    padding: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__input input[type=tel] {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__input input[type=tel] {
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.form__input input[type=email] {
  background-color: #F5F5F5;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  padding: 14px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form__input input[type=email] {
    padding: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__input input[type=email] {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__input input[type=email] {
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.form__input textarea {
  background-color: #F5F5F5;
  padding: 14px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  outline: none;
}
@media screen and (max-width: 767px) {
  .form__input textarea {
    padding: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__input textarea {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__input textarea {
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.form__request {
  display: inline-block;
  background-color: #EDA00E;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .form__request {
    padding: calc(5 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__request {
    padding-left: calc(10 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form__request {
    padding-right: calc(10 * 2 / 10 * 1vw);
  }
}
.form__textarea {
  margin-top: 10px;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .form__textarea {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.form .wpcf7-list-item {
  margin: 0;
}
.form__description {
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .form__description {
    margin-top: calc(10 * 2 / 10 * 1vw);
  }
}
.form .wpcf7-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-radio {
    gap: 0.5em 1em;
  }
}
.form .wpcf7-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  .form .wpcf7-checkbox {
    gap: 0.5em 1em;
  }
}
.form .wpcf7-validates-as-required {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form p {
  line-height: 1.4;
}
.form .submit-btn {
  cursor: pointer;
  display: inline-block;
  max-width: 240px;
  width: 100%;
  background-color: #AA9A7C;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border: 2px solid #fff;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: left;
  font-size: 16px;
}
@media (max-width: 767px) {
  .form .submit-btn {
    font-size: 4.267vw;
  }
}
.form .submit-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #fff;
  width: 10%;
  height: 2px;
  z-index: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form .submit-btn::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -6px;
  border-radius: 100px;
  background-color: #AA9A7C;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.form .submit-btn:hover:before {
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form .submit-btn input {
  cursor: pointer;
  background-color: #AA9A7C;
  color: #fff;
  border-radius: 100px;
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 80px;
}
@media (max-width: 767px) {
  .form .submit-btn input {
    font-size: 4.8vw;
  }
}
@media screen and (max-width: 767px) {
  .form .submit-btn input {
    padding-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form .submit-btn input {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form .submit-btn input {
    padding-left: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form .submit-btn input {
    padding-right: calc(80 * 2 / 10 * 1vw);
  }
}
.form .description {
  font-size: 12px;
}
@media (max-width: 767px) {
  .form .description {
    font-size: 3.2vw;
  }
}
.form__privacy {
  margin-top: 40px;
  color: #AAAAAA;
}
@media screen and (max-width: 767px) {
  .form__privacy {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.form__privacy a {
  text-decoration: underline;
}
.form__check {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .form__check {
    margin-top: calc(40 * 2 / 10 * 1vw);
  }
}
.form select {
  background-color: #F5F5F5;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 10px;
  padding: 14px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 767px) {
  .form select {
    padding: calc(14 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form select {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .form select {
    padding-right: calc(20 * 2 / 10 * 1vw);
  }
}
.form select::-ms-expand {
  display: none;
}
.form .select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.form .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0;
  height: 0;
  pointer-events: none;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form__yubin {
  font-size: 14px;
  margin-left: 5px;
}
@media (max-width: 767px) {
  .form__yubin {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .form__yubin {
    margin-left: calc(5 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　link-parts
----------------------------------------------------------------------*/
.link-parts {
  counter-reset: link-number;
}
.link-parts__box {
  counter-increment: link-number;
  font-size: 20px;
  background-image: url(assets/images/common/under-line.png);
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position: bottom;
  padding-bottom: 20px;
  padding-left: 20px;
  display: block;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .link-parts__box {
    font-size: 5.333vw;
  }
}
@media screen and (max-width: 767px) {
  .link-parts__box {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .link-parts__box {
    padding-left: calc(20 * 2 / 10 * 1vw);
  }
}
.link-parts__box:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .link-parts__box:not(:first-child) {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
.link-parts__box .outlineNumber::before {
  content: "0" counter(link-number);
}
.link-parts__box:hover .arrow {
  right: 4%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-parts__box--flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.link-parts__box--flex .arrow {
  position: absolute;
  top: 35%;
  right: 10%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.arrow-color {
  stroke: #EDA00E;
}

.bg-obj-house__roof {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.bg-obj-house__roof::before {
  content: "";
  background-image: url(assets/images/common/bg-img-paper.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .bg-obj-house__roof::before {
    background-image: url(assets/images/common/bg-img-paper_sp.jpg);
  }
}

.bg-obj-house--block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.bg-obj-house--block-left {
  position: absolute;
  top: 199px;
  display: inline-block;
  width: 28%;
  height: 22%;
  left: 0;
  background-color: #F6F4EF;
  -webkit-clip-path: polygon(0 0, 100% 0%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .bg-obj-house--block-left {
    height: 30vw;
  }
}

.bg-obj-house--block-right {
  position: absolute;
  top: 199px;
  display: inline-block;
  width: 72%;
  height: 30%;
  right: 0;
  background-color: #F6F4EF;
  -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 100%);
          clip-path: polygon(0 0%, 100% 0%, 100% 100%);
}
@media screen and (max-width: 767px) {
  .bg-obj-house--block-right {
    height: 30vw;
  }
}

/*----------------------------------------------------------------------
　サービスのポイント
----------------------------------------------------------------------*/
.point__img img {
  border-radius: 10px;
  aspect-ratio: 16/8;
  -o-object-fit: cover;
     object-fit: cover;
}
.point__block {
  margin-top: 30px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .point__block {
    margin-top: calc(30 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .point__block {
    padding-left: calc(40 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .point__block {
    padding-right: calc(40 * 2 / 10 * 1vw);
  }
}
.point__title {
  font-size: 26px;
}
@media (max-width: 767px) {
  .point__title {
    font-size: 5.867vw;
  }
}
.point__title h3 {
  text-indent: -1.3em;
  padding-left: 1em;
  line-height: 1.6;
}
.point__text {
  margin-top: 20px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .point__text {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .point__text {
    padding-left: calc(30 * 2 / 10 * 1vw);
  }
}

/*----------------------------------------------------------------------
　イラスト
----------------------------------------------------------------------*/
.ill-house {
  position: relative;
  z-index: 0;
}
.ill-house-01::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(assets/images/house/ill_house-01.svg);
  background-position: top 80% right 5%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ill-house-01::before {
    opacity: 0.6;
    background-size: 50% auto;
  }
}
.ill-house-01-concept::before {
  background-position: top 5% right 5%;
  background-repeat: no-repeat;
}
.ill-house-01-recruit::before {
  background-position: top 10% right 5%;
  background-repeat: no-repeat;
}
.ill-house-01--margin-top {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .ill-house-01--margin-top {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.ill-house-02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(assets/images/house/ill_house-02.svg);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ill-house-02::after {
    opacity: 0.6;
    background-size: 50% auto;
  }
}
.ill-house-02-concept::after {
  top: 0;
  left: 0;
  background-position: top 50% left 5%;
  background-repeat: no-repeat;
}
.ill-house-02-service::after {
  top: 0;
  right: 0;
  background-position: top 2% right 5%;
  background-repeat: no-repeat;
}
.ill-house-02-company::after {
  top: 0;
  right: 0;
  background-position: top 2% right 5%;
  background-repeat: no-repeat;
}
.ill-house-02-access::after {
  top: 0;
  right: 0;
  background-position: top 10% right 5%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .ill-house-02-access::after {
    background-position: top 4% right 5%;
  }
}
.ill-house-02-recruit::after {
  background-position: bottom left;
  background-repeat: no-repeat;
}
.ill-house-03::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(assets/images/house/ill_house-03.svg);
  background-position: top 10% right;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ill-house-03::after {
    opacity: 0.6;
    background-position: top 5% right;
    background-size: 50% auto;
  }
}
.ill-house-03-concept::after {
  background-position: bottom right 5%;
  background-repeat: no-repeat;
}
.ill-house-03-greeting::after {
  background-position: top 18% right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .ill-house-03-greeting::after {
    background-position: top 3% right;
  }
}
.ill-house-04::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(assets/images/house/ill_house-04.svg);
  background-position: bottom 5% left 10%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ill-house-04::after {
    opacity: 0.6;
    background-size: 50% auto;
  }
}
.ill-house-05::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(assets/images/house/ill_house-05.svg);
  background-position: top 40% right 10%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ill-house-05::after {
    opacity: 0.6;
    background-size: 50% auto;
  }
}
.ill-house-06::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(assets/images/house/ill_house-06.svg);
  background-position: top 90% right 78%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ill-house-06::after {
    opacity: 0.6;
    background-size: 50% auto;
    background-position: top 10% right 10%;
  }
}
.ill-house-06--margin-top {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .ill-house-06--margin-top {
    margin-top: calc(20 * 2 / 10 * 1vw);
  }
}
.ill-house-common::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(assets/images/house/common-house.svg);
  background-position: bottom 8% left 2%;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ill-house-common::after {
    opacity: 0.6;
    background-size: 50% auto;
  }
}

/*----------------------------------------------------------------------
　voice / faq
----------------------------------------------------------------------*/
.link-box__wrap {
  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;
}
@media screen and (max-width: 767px) {
  .link-box__wrap {
    gap: 8vw 0;
  }
}
.link-box__block {
  width: 48%;
  background-color: #EDA00E;
  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;
}
@media screen and (max-width: 767px) {
  .link-box__block {
    width: 100%;
  }
}
.link-box__block:hover {
  background-color: rgba(237, 160, 14, 0.9);
}
.link-box__block:hover .parts-btn:before {
  right: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link-box__inner {
  width: 90%;
  padding: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .link-box__inner {
    padding: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .link-box__inner {
    padding-top: calc(20 * 2 / 10 * 1vw);
  }
}
@media screen and (max-width: 767px) {
  .link-box__inner {
    padding-bottom: calc(20 * 2 / 10 * 1vw);
  }
}
.link-box__block-full {
  width: 100%;
}

/*----------------------------------------------------------------------
　社長あいさつ
----------------------------------------------------------------------*/
.president-sign {
  max-width: 200px;
}
@media screen and (max-width: 767px) {
  .president-sign {
    max-width: 60vw;
  }
}
.president-sign img {
  aspect-ratio: 16/4;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */