@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif, "DM Sans", serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  letter-spacing: 0.1em;
}
body.is-fixed {
  position: fixed;
}

.inner {
  max-width: 365px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1180px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section-title_back-text {
  width: 100%;
  position: absolute;
  z-index: 0;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #e3dfdf;
  font-size: 64px;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "DM Sans", serif;
}
@media screen and (min-width: 768px) {
  .section-title_back-text {
    font-size: 150px;
    top: -144px;
  }
}

.section-title_text {
  position: relative;
  text-align: center;
}
.section-title_text strong {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .section-title_text strong {
    font-size: 50px;
  }
}

.section-title_line {
  width: 24px;
  height: 1px;
  background: #34897f;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-title_line {
    margin-top: 36px;
    width: 48px;
    height: 3px;
  }
}

.button {
  display: block;
  margin-top: 24px;
  padding: 6px 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  border-radius: 5px;
  border: #333 solid 1px;
  background: #fff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.button a {
  color: #333;
}
.button:hover {
  background: #f0f0f0;
}
@media screen and (min-width: 768px) {
  .button {
    margin-top: 48px;
  }
}
.button.--conversion {
  margin: 0;
  background: #34897f;
  border: none;
}
.button.--conversion a {
  color: #fff;
}
.button.--conversion.--drawer {
  margin-top: 12px;
}

.button-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .button-inner {
    gap: 18px;
  }
}

.button-text {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .button-text {
    font-size: 20px;
  }
}

.button-arrow img {
  width: 13px;
  height: 11px;
  vertical-align: baseline;
}
@media screen and (min-width: 768px) {
  .button-arrow img {
    width: 18px;
    height: 13px;
    vertical-align: inherit;
  }
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
}

.margin_between-contents {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .margin_between-contents {
    margin-top: 72px;
  }
}

.padding_last-contents {
  padding-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .padding_last-contents {
    padding-bottom: 100px;
  }
}

.padding_last-contents-archive {
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .padding_last-contents-archive {
    margin-bottom: 60px;
  }
}

.fade-in-on-view {
  opacity: 0; /* 初期状態: 不透明度 0 */
  -webkit-transform: translateY(20px);
          transform: translateY(20px); /* 下から少し上に移動 */
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease; /* アニメーション */
}

.fade-in-on-view.visible {
  opacity: 1; /* 不透明度を 1 に */
  -webkit-transform: translateY(0);
          transform: translateY(0); /* 元の位置に戻す */
}

.header {
  padding-top: 4px;
  padding-bottom: 4px;
  width: 100%;
  height: 51px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background: #f0f0f0;
}
@media screen and (min-width: 768px) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
    height: 80px;
  }
}
@media screen and (min-width: 768px) {
  .header .button.--conversion .button-text {
    font-size: clamp(12px, 1.5vw, 20px);
  }
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header-inner {
    max-width: 100%;
  }
}

.header-logo img {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header-logo img {
    width: 150px;
    height: auto;
  }
}

.header-menu_sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 6px;
  background-color: #333;
  border-radius: 50%;
  width: 43px;
  height: 43px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .header-menu_sp {
    width: 60px;
    height: 60px;
    gap: 0;
  }
}

.header-flex_pc {
  display: contents;
}
@media screen and (min-width: 768px) {
  .header-flex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

.menu_sp-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
@media screen and (min-width: 768px) {
  .menu_sp-hamburger {
    gap: 5px;
  }
}
.menu_sp-hamburger.is-open .hamburger_line:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(45deg);
          transform: translateY(6px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .menu_sp-hamburger.is-open .hamburger_line:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
}
.menu_sp-hamburger.is-open .hamburger_line:nth-of-type(2) {
  opacity: 0;
}
.menu_sp-hamburger.is-open .hamburger_line:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(-45deg);
          transform: translateY(-6px) rotate(-45deg);
}

.hamburger_line {
  width: 17px;
  height: 1px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .hamburger_line {
    width: 24px;
    height: 2px;
  }
}

.menu_sp-text {
  color: #fff;
  font-size: 9px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .menu_sp-text {
    font-size: 14px;
  }
}

.header-nav_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .header-nav_pc {
    display: none;
  }
}

.header-nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.menu-item a {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .menu-item a {
    font-size: clamp(12px, 1.5vw, 20px);
  }
}

.drawer-menu {
  height: 100%;
  width: 100%;
  position: fixed;
  padding-top: 51px;
  padding-bottom: 24px;
  right: -100%;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #f0f0f0;
  z-index: 900;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .drawer-menu {
    padding-top: 0;
    top: -100%;
    right: auto;
  }
}
.drawer-menu.is-open {
  right: 0;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .drawer-menu.is-open {
    top: 80px;
  }
}
.drawer-menu .menu-item a {
  padding-left: 6px;
}
.drawer-menu .menu-item::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/drawer-polygon.png) no-repeat center center / contain;
}
.drawer-menu .sub-menu {
  padding-left: 20px;
}
.drawer-menu .sub-menu a {
  padding-left: 0;
}
.drawer-menu .sub-menu .menu-item::before {
  content: "・";
  font-size: 16px;
  font-weight: 600;
  display: inline;
  background: none;
}
@media screen and (min-width: 768px) {
  .drawer-menu .button.--conversion {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .drawer-menu .footer-sns {
    display: block;
    padding-top: 5%;
  }
}

.footer-sns_pop.--drawer {
  color: #333;
}

.footer-sns_item-text.--drawer {
  color: #333;
}

.footer_content.--drawer .footer-content_item-text,
.footer_content.--drawer .footer-content_item-childs {
  color: #333;
}

.main-contents {
  margin-top: 51px;
}
@media screen and (min-width: 768px) {
  .main-contents {
    margin-top: 80px;
  }
}

.sns-list_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .sns-list_pc {
    position: fixed;
    top: 108px;
    right: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 36px;
    z-index: 2;
  }
}

.sns-icon_image img {
  display: block;
  width: 20px;
  height: auto;
}

.mv {
  overflow: hidden;
  position: relative;
}

.mv-inner {
  position: relative;
}

.mv-bg img {
  width: 100%;
}

.mv-title {
  position: absolute;
  bottom: 115px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 99%;
  font-size: clamp(17px, 6vw, 40px);
  font-weight: 700;
  letter-spacing: 0.22px;
  text-align: center;
  color: #fff;
  background: rgba(51, 51, 51, 0.5);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .mv-title {
    font-size: 40px;
    max-width: 800px;
    letter-spacing: 8px;
    bottom: 180px;
  }
}

.mv-title_renovation {
  position: absolute;
  bottom: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 7.5vw;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .mv-title_renovation {
    font-size: 50px;
    bottom: 180px;
  }
}

.mv-title_sub {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 90%;
  text-align: center;
  color: #fff;
  font-size: clamp(12px, 3.5vw, 20px);
  font-weight: 500;
  background: rgba(51, 51, 51, 0.5);
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
.mv-title_sub.--renovation {
  font-size: 4vw;
  bottom: 15%;
}
@media screen and (min-width: 768px) {
  .mv-title_sub.--renovation {
    font-size: 30px;
    bottom: 60px;
    max-width: 500px;
  }
}
.mv-title_sub.fade-in {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .mv-title_sub {
    font-size: 30px;
    max-width: 641px;
    bottom: 110px;
  }
}

/* 各パスの初期状態設定（仮の長さ1000を使用。必要に応じて調整） */
#leftPath,
#rightPath {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* 左側アニメーション設定 */
.animate-left {
  -webkit-animation: drawLeft 2s linear forwards;
          animation: drawLeft 2s linear forwards;
}

/* 右側アニメーション設定 */
.animate-right {
  -webkit-animation: drawRight 5s ease-out forwards;
          animation: drawRight 5s ease-out forwards;
}

@-webkit-keyframes drawLeft {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLeft {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes drawRight {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes drawRight {
  to {
    stroke-dashoffset: 0;
  }
}
.mv-title_lines {
  position: absolute;
  width: 100%;
  height: 50px;
  bottom: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .mv-title_lines {
    width: 825px;
    height: 109px;
    bottom: 45px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.mv-title_lines.--renovation {
  height: 7vw;
  bottom: 20%;
  width: 95%;
}
@media screen and (min-width: 768px) {
  .mv-title_lines.--renovation {
    width: 600px;
    height: 80px;
    bottom: 90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.mv-title_lines-inner {
  position: relative;
}

/* 左側コンテナの配置スタイル */
.mv-title_line-left {
  position: absolute;
  bottom: 0;
  left: 0;
}
.mv-title_line-left.--renovation svg {
  width: 90vw;
}
@media screen and (min-width: 768px) {
  .mv-title_line-left.--renovation svg {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .mv-title_line-left svg {
    width: 95vw;
  }
}

/* 右側コンテナの配置スタイル */
.mv-title_line-right {
  position: absolute;
  bottom: 16px;
  right: 0;
}
.mv-title_line-right.--renovation {
	right: -5%;
}
@media screen and (max-width: 767px) {
  .mv-title_line-right.--renovation {
    width: 7vw;
    bottom: 2vw;
    right: 0;
  }
  .mv-title_line-right.--renovation svg {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .mv-title_line-right {
    bottom: clamp(0.1px, 0.1vh, 3px);
    right: clamp(0.1px, 0.1vw, 8px);
  }
  .mv-title_line-right svg {
    width: clamp(20px, 7.5vw, 30px);
  }
}

.promise {
  background-image: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/promise-background.png);
  padding-top: 96px;
  padding-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .promise {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.promise-content {
  border-radius: 5px;
  background: #fff;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  .promise-content {
    padding: 72px;
  }
}

.promise-content_disc {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .promise-content_disc {
    font-size: 25px;
  }
}

.promise-content_item {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .promise-content_item {
    padding-top: 36px;
    gap: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.promise-content_item-check {
  width: 100%;
  max-width: 17px;
}
.promise-content_item-check img {
  width: 17px;
  height: 17px;
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  .promise-content_item-check img {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 30px;
    height: 30px;
    display: block;
  }
}

.promise-content_item-text {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .promise-content_item-text {
    font-size: 25px;
  }
}
.promise-content_item-text strong {
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .promise-content_item-text strong {
    font-size: 28px;
  }
}

.works {
  padding-top: 96px;
  padding-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .works {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.works-item {
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .works-item {
    max-width: 400px;
  }
}

.works-item_image img {
  width: 100%;
}

.works-item_text {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .works-item_text {
    font-size: 25px;
    margin-top: 12px;
    margin-left: auto;
    margin-right: auto;
  }
}

.swiper_ver1 {
  overflow: hidden;
}

.swiper-pagination {
  position: relative;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    margin-top: 48px;
  }
}

.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: #333;
  margin-left: 8px !important;
  margin-right: 8px !important;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    margin-left: 18px !important;
    margin-right: 18px !important;
  }
}

.swiper-pagination-bullet-active {
  background: #34897f;
}

.concept {
  background: url("https://miyabi-con.jp/wp-content/themes/miyabi-con/img/concept-background.png") no-repeat center center / cover;
  width: 100%;
  padding-top: 110px;
  padding-bottom: 72px;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .concept {
    background: url("https://miyabi-con.jp/wp-content/themes/miyabi-con/img/concept-bg_pc.png") no-repeat center center / cover;
    padding-top: 170px;
    padding-bottom: 150px;
  }
}
.concept.--lower-page {
  padding-bottom: 72px;
  padding-bottom: 100px;
}

.concept-line_head-left {
  background: #d0cbcb;
  height: 2px;
  position: absolute;
  left: -4%;
  top: 54px;
  width: 58vw;
  opacity: 0;
  -webkit-transform: rotate(150deg) translate(-100%, -100%);
          transform: rotate(150deg) translate(-100%, -100%);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s linear;
  transition: opacity 1s ease, -webkit-transform 1s linear;
  transition: opacity 1s ease, transform 1s linear;
  transition: opacity 1s ease, transform 1s linear, -webkit-transform 1s linear;
}
@media screen and (min-width: 768px) {
  .concept-line_head-left {
    width: 53.8vw;
    -webkit-transform: rotate(-21deg) translate(100%, 100%);
            transform: rotate(-21deg) translate(100%, 100%);
    left: -2%;
    -webkit-transition: 1s linear;
    transition: 1s linear;
  }
}
.concept-line_head-left.is-view {
  opacity: 1;
  -webkit-transform: rotate(150deg) translate(0);
          transform: rotate(150deg) translate(0);
}
@media screen and (min-width: 768px) {
  .concept-line_head-left.is-view {
    -webkit-transform: rotate(-21deg) translate(0);
            transform: rotate(-21deg) translate(0);
  }
}

.concept-line_head-right {
  background: #d0cbcb;
  height: 2px;
  position: absolute;
  right: -4%;
  top: 54px;
  width: 58vw;
  opacity: 0;
  -webkit-transform: rotate(-150deg) translate(100%, 100%);
          transform: rotate(-150deg) translate(100%, 100%);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s linear;
  transition: opacity 1s ease, -webkit-transform 1s linear;
  transition: opacity 1s ease, transform 1s linear;
  transition: opacity 1s ease, transform 1s linear, -webkit-transform 1s linear;
}
@media screen and (min-width: 768px) {
  .concept-line_head-right {
    width: 53.8vw;
    -webkit-transform: rotate(21deg) translate(-100%, -100%);
            transform: rotate(21deg) translate(-100%, -100%);
    right: -2%;
    -webkit-transition: 1s linear;
    transition: 1s linear;
  }
}
.concept-line_head-right.is-view {
  opacity: 1;
  -webkit-transform: rotate(-150deg) translate(0);
          transform: rotate(-150deg) translate(0);
}
@media screen and (min-width: 768px) {
  .concept-line_head-right.is-view {
    -webkit-transform: rotate(21deg) translate(0);
            transform: rotate(21deg) translate(0);
  }
}

.concept-line_bottom {
  background: #d0cbcb;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.5s ease-in, -webkit-transform 1s linear;
  transition: opacity 0.5s ease-in, -webkit-transform 1s linear;
  transition: opacity 0.5s ease-in, transform 1s linear;
  transition: opacity 0.5s ease-in, transform 1s linear, -webkit-transform 1s linear;
}
.concept-line_bottom.is-view {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.concept-item {
  display: block;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/concept-item1_back.png) no-repeat center center / cover;
  padding: 6px 18px;
  width: 100%;
  height: 100px;
  position: relative;
  border: #333 1px solid;
  border-radius: 10px;
}
.concept-item + .concept-item {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .concept-item + .concept-item {
    margin-top: 96px;
  }
}
.concept-item:nth-of-type(2) {
  background-image: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/concept-item2_back.png);
  margin-left: auto;
  margin-right: auto;
}
.concept-item:nth-of-type(3) {
  background-image: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/concept-item3_back.png);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .concept-item {
    width: 742px;
    height: 265px;
  }
}

.concept-deco-line {
  display: none;
}
@media screen and (min-width: 768px) {
  .concept-deco-line {
    position: absolute;
    top: 629px;
    left: 620px;
  }
  .concept-deco-line img {
    width: 70px;
  }
  .concept-deco-line.--2 {
    bottom: 423px;
    right: 544px;
    top: auto;
    left: auto;
  }
}

.concept-label {
  position: absolute;
  top: 6px;
  left: 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/concept-label_back.png) no-repeat center center / cover;
  width: 26px;
  height: 25px;
}
@media screen and (min-width: 768px) {
  .concept-label {
    width: 70px;
    height: 68px;
  }
}

.concept-label_number {
  font-size: 15px;
  font-weight: 500;
  font-family: "DM Sans", serif;
  text-align: center;
  padding-top: 2px;
}
@media screen and (min-width: 768px) {
  .concept-label_number {
    font-size: 40px;
    padding-top: 5px;
  }
}

.concept-title {
  position: absolute;
  top: 25px;
  left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .concept-title {
    top: 90px;
    left: 24px;
    gap: 24px;
  }
}

.concept-title_main {
  color: #34897f;
  font-family: "DM Sans", serif;
  font-size: 40px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept-title_main {
    font-size: 90px;
  }
}

.concept-title_sub {
  padding-top: 6px;
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .concept-title_sub {
    font-size: 40px;
  }
}

.concept-item_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 6px;
  right: 18px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #333;
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 768px) {
  .concept-item_button {
    width: 60px;
    height: 60px;
    bottom: 12px;
    right: 24px;
  }
}

.arrow-inner img {
  display: block;
  width: 9px;
  height: 7px;
}
@media screen and (min-width: 768px) {
  .arrow-inner img {
    width: 18px;
    height: 14px;
  }
}

.concept-deco-icons {
  display: none;
  position: absolute;
  top: 200px;
  right: 174px;
}
@media screen and (min-width: 768px) {
  .concept-deco-icons {
    display: block;
  }
}
.concept-deco-icons.--2 {
  bottom: 50px;
  left: 174px;
  top: auto;
  right: auto;
}

.concept-deco-icons_inner {
  position: relative;
  width: 64px;
  height: 303px;
}

.concept-deco-icons_house {
  display: block;
  position: absolute;
  right: 0;
  top: 30px;
  width: 31px;
  height: 28px;
}
.concept-deco-icons_house.--2 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: auto;
  right: auto;
  bottom: 30px;
  left: 0;
}

.concept-deco-icons_person {
  display: block;
  position: absolute;
  right: 0;
  top: 100px;
  width: 64px;
  height: 39px;
}
.concept-deco-icons_person.--2 {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  top: auto;
  bottom: 100px;
}

.concept-deco-icons_line {
  position: absolute;
  top: 0;
  right: 0;
  background: #333;
  width: 1px;
  height: 303px;
}
.concept-deco-icons_line.--2 {
  left: 0;
  right: auto;
}

.swiper_ver2 {
  overflow: hidden;
}

.swiper-scrollbar {
  position: relative !important;
  margin-top: 18px;
  max-width: 264px !important;
  height: 2px !important;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .swiper-scrollbar {
    margin-top: 36px;
    max-width: 800px !important;
  }
}

.swiper-scrollbar-drag {
  background: #34897f !important;
}

.event {
  padding-top: 96px;
  padding-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .event {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.event-item,
.blog-item {
  width: 200px;
}
.event-item + .event-item,
.event-item + .blog-item,
.blog-item + .event-item,
.blog-item + .blog-item {
  margin-left: 24px;
}
@media screen and (min-width: 768px) {
  .event-item + .event-item,
  .event-item + .blog-item,
  .blog-item + .event-item,
  .blog-item + .blog-item {
    margin-left: 48px;
  }
}
@media screen and (min-width: 768px) {
  .event-item,
  .blog-item {
    width: 25vw;
	max-width: 400px;
  }
}

.event-item_image,
.blog-item_image {
  display: block;
}

.event-item_title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .event-item_title {
    font-size: 20px;
    margin-top: 24px;
  }
}

.event-item_disc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .event-item_disc {
    gap: 6px;
    margin-top: 12px;
  }
}

.event-item_disc-icon img {
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .event-item_disc-icon img {
    width: 2vw;
    height: auto;
  }
}

.event-item_disc-text {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .event-item_disc-text {
    font-size: clamp(12px, 2vw, 25px);
  }
}

.plan {
  padding-top: 96px;
  padding-bottom: 72px;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/plan-background.png) no-repeat center center / cover;
}
@media screen and (min-width: 768px) {
  .plan {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.plan button {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .plan button {
    margin-top: 36px;
  }
}

.plan-section-inner .plan-inner {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .plan-section-inner .plan-inner {
    margin-top: 72px;
  }
}

.plan-disc {
  font-size: 16px;
}
.plan-disc span {
  color: #34897f;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .plan-disc {
    font-size: 30px;
  }
}

.plan-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .plan-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.plan-title_line {
  width: 2px;
  height: 24px;
  background: #34897f;
}
@media screen and (min-width: 768px) {
  .plan-title_line {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 3px;
    height: 48px;
  }
}

.plan-title_text {
  margin-left: 12px;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .plan-title_text {
    margin-left: 6px;
    font-size: 45px;
  }
}

.plan-title_icon {
  margin-left: 3px;
}
.plan-title_icon img {
  width: 15px;
  height: 17px;
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  .plan-title_icon img {
    width: 30px;
    height: 34px;
    display: block;
  }
}
.plan-title_icon.--reform img {
  width: 21px;
  height: 16px;
}
@media screen and (min-width: 768px) {
  .plan-title_icon.--reform img {
    width: 42px;
    height: 32px;
  }
}

.plan-flex_pc {
  display: contents;
}
@media screen and (min-width: 768px) {
  .plan-flex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .plan-flex_pc.--reform {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.plan-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .plan-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .plan-items.--reform {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.plan-item {
  display: block;
}

.plan-item_image {
  position: relative;
}

.plan-item_label {
  position: absolute;
  padding-left: 6px;
  top: 12px;
  left: 3px;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/select-plan_label.svg) no-repeat center center / cover;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 16px;
  height: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.plan-item_label span {
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .plan-item_label {
    font-size: 30px;
    height: 66px;
    padding-left: 12px;
    top: 27px;
    padding-right: 30px;
  }
}
.plan-item_label.--3 {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/reform-plan_label.svg) no-repeat center center / cover;
}
.interview {
  padding-top: 96px;
}
@media screen and (min-width: 768px) {
  .interview {
    padding-top: 150px;
  }
}

.interview-slider_image {
  width: 277px;
  height: auto;
  background: #f4f4f4;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .interview-slider_image {
    width: 820px;
    height: auto;
  }
}

.interview-slider_text {
  font-size: 14px;
  max-width: 277px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .interview-slider_text {
    font-size: 30px;
    max-width: 634px;
    margin-top: 24px;
  }
}

.swiper_ver3 {
  overflow: hidden;
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 133px;
  left: 0px;
  background: #34897f;
  width: 21px;
  height: 21px;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 90px;
    height: 90px;
    top: 270px;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  width: 7.5px;
  height: 12px;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/Vector.svg) no-repeat center center / contain;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    width: 25px;
    height: 40px;
  }
}

.swiper-button-next {
  right: 0px;
  left: auto;
}
.swiper-button-next::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.blog {
  padding-top: 96px;
}
@media screen and (min-width: 768px) {
  .blog {
    margin-top: 150px;
  }
}

.blog-item_disc {
  max-width: 205px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .blog-item_disc {
    max-width: 400px;
  }
}

.blog-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .blog-info {
    margin-top: 12px;
  }
}

.blog-tag {
  text-align: center;
  font-size: 10px;
  padding: 2px 7px;
  border: 1px solid #333;
  border-radius: 1px;
}
@media screen and (min-width: 768px) {
  .blog-tag {
    font-size: 20px;
    padding: 2px 12px;
  }
}

.blog-date {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .blog-date {
    font-size: 20px;
  }
}

.blog-text {
  font-size: 14px;
  margin-top: 6px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .blog-text {
    font-size: 20px;
    margin-top: 12px;
  }
}

.staff {
  padding-top: 96px;
}
@media screen and (min-width: 768px) {
  .staff {
    padding-top: 150px;
  }
}

.staff-inner {
  position: relative;
}

.swiper_ver4 {
  overflow: hidden;
}

.staff-card {
  border: 1px solid #ece2e2;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 12px 12px;
}
@media screen and (min-width: 768px) {
  .staff-card {
    padding: 30px 12px;
    max-width: 715px;
  }
}

.staff-card_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.staff-image img {
  width: 130px;
  height: 158px;
}
@media screen and (min-width: 768px) {
  .staff-image img {
    width: 270px;
    height: 330px;
  }
}

.staff-text {
  background: #f4f4f4;
  width: 183px;
  padding: 12px 6px;
  position: relative;
  margin-left: -12px;
}
@media screen and (min-width: 768px) {
  .staff-text {
    width: 415px;
  }
}

.staff-text_position {
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .staff-text_position {
    font-size: 20px;
  }
}

.staff-text_name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
}
.staff-text_name span {
  display: block;
}
@media screen and (min-width: 768px) {
  .staff-text_name {
    font-size: 40px;
    gap: 12px;
  }
}

.staff-text_message {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .staff-text_message {
    font-size: 25px;
  }
}

.staff-icon img {
  width: 14px;
  height: 14px;
  vertical-align: baseline;
}
@media screen and (min-width: 768px) {
  .staff-icon img {
    width: 34px;
    height: 34px;
  }
}

.staff-polygon-gray {
  position: absolute;
  top: -1px;
  right: -1px;
}
.staff-polygon-gray img {
  width: 21px;
  height: 21px;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .staff-polygon-gray img {
    width: 49px;
    height: 49px;
  }
}

.staff-polygon-white {
  position: absolute;
  top: -1px;
  right: -1px;
}
.staff-polygon-white img {
  width: 21px;
  height: 21px;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .staff-polygon-white img {
    width: 49px;
    height: 49px;
  }
}

.footer {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #333;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.footer .menu-item a {
  padding-left: 6px;
}
@media screen and (min-width: 768px) {
  .footer .menu-item a {
    font-size: 24px;
  }
}
.footer .menu-item::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/footer-polygon.png) no-repeat center center / contain;
}
.footer .sub-menu {
  padding-left: 20px;
}
.footer .sub-menu a {
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .footer .sub-menu a {
    font-size: 24px;
  }
}
.footer .sub-menu .menu-item::before {
  content: "・";
  font-size: 16px;
  font-weight: 600;
  display: inline;
  background: none;
}
@media screen and (min-width: 768px) {
  .footer .sub-menu .menu-item::before {
    font-size: 20px;
  }
}

.footer-sns_pop {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  font-family: "DM Sans", serif;
}
@media screen and (min-width: 768px) {
  .footer-sns_pop {
    font-size: 30px;
  }
}

.footer-sns_list {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer-sns_list {
    margin-top: 24px;
    gap: 36px;
  }
}

.footer-sns_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.footer-sns_item-icon img {
  width: 35px;
  height: 35px;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .footer-sns_item-icon img {
    width: 72px;
    height: 72px;
  }
}

.footer-sns_item-text {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer-sns_item-text {
    font-size: 20px;
  }
}

.footer_content {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .footer_content {
    margin-top: 60px;
    max-height: 252px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer-content_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.footer-content_item.--plan {
  display: block;
}
@media screen and (min-width: 768px) {
  .footer-content_item + .footer-content_item {
    margin-top: 12px;
  }
}

.footer-content_item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.footer-content_item-polygon img {
  display: block;
  width: 9px;
  height: 9px;
}
.footer-content_item-polygon.--plan img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.footer-content_item-text {
  color: #fff;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .footer-content_item-text {
    font-size: 25px;
  }
}

.footer-content_item-childs {
  color: #fff;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .footer-content_item-childs {
    font-size: 20px;
  }
}

.footer-content_item-text-child1 {
  display: block;
  padding-left: 24px;
}

.footer-content_item-text-child2 {
  display: block;
  padding-left: 36px;
}

.footer-copyright {
  display: block;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-family: "DM Sans", serif;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    margin-top: 72px;
    font-size: 20px;
  }
}

.footer-flex_pc {
  display: contents;
}
@media screen and (min-width: 768px) {
  .footer-flex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 240px;
  }
}

.footer-column_pc {
  display: contents;
}
@media screen and (min-width: 768px) {
  .footer-column_pc {
    display: block;
  }
}

.top-view {
  margin-top: 50px;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/works-top.png) no-repeat bottom center / cover;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .top-view {
    margin-top: 80px;
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/works-top-pc.png) no-repeat bottom center / cover;
    height: 430px;
  }
}
.top-view.--interview {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/interview-top.png) no-repeat bottom center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--interview {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/interview-top.png) no-repeat bottom center / cover;
  }
}
.top-view.--event {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/event-top.png) no-repeat center center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--event {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/event-top.png) no-repeat center center / cover;
  }
}
.top-view.--blog {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/blog-top.png) no-repeat bottom center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--blog {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/blog-top.png) no-repeat bottom center / cover;
  }
}
.top-view.--select-plan {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/select-plan-top.png) no-repeat bottom center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--select-plan {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/select-plan-top.png) no-repeat bottom center / cover;
  }
}
.top-view.--concept {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/concept-top.png) no-repeat bottom center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--concept {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/concept-top.png) no-repeat bottom center / cover;
  }
}
.top-view.--company {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/company-top.jpg) no-repeat center center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--company {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/company-top.jpg) no-repeat center center / cover;
  }
}
.top-view.--privacy {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/privacy-top.png) no-repeat center center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--privacy {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/privacy-top.png) no-repeat center center / cover;
  }
}
.top-view.--contact {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/contact-top.jpg) no-repeat center center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--contact {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/contact-top.jpg) no-repeat center center / cover;
  }
}
.top-view.--staff {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/staff-top.jpg) no-repeat top center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--staff {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/staff-top.jpg) no-repeat top center / cover;
  }
}
.top-view.--guarantee {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/guarantee-top.jpg) no-repeat center center / cover;
}
@media screen and (min-width: 768px) {
  .top-view.--guarantee {
    background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/guarantee-top.jpg) no-repeat center center / cover;
  }
}

.tv-inner {
  position: relative;
  height: 100%;
}

.tv-heading {
  position: absolute;
  bottom: -32px;
  left: 10px;
  background: rgba(51, 51, 51, 0.5);
  width: 123px;
  height: 64px;
}
@media screen and (min-width: 768px) {
  .tv-heading {
    width: 240px;
    height: 121px;
    left: 20px;
    bottom: -60px;
  }
}
.tv-heading.--interview {
  width: 149px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--interview {
    width: 288px;
  }
}
.tv-heading.--event {
  width: 135px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--event {
    width: 248px;
  }
}
.tv-heading.--blog {
  width: 105px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--blog {
    width: 190px;
  }
}
.tv-heading.--concept {
  width: 161px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--concept {
    width: 295px;
  }
}
.tv-heading.--privacy {
  width: 278px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--privacy {
    width: 544px;
  }
}
.tv-heading.--contact {
  width: 180px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--contact {
    width: 339px;
  }
}
.tv-heading.--staff {
  width: 178px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--staff {
    width: 336px;
  }
}
.tv-heading.--guarantee {
  width: 229px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--guarantee {
    width: 436px;
  }
}
.tv-heading.--select-plan {
  width: 234px;
}
@media screen and (min-width: 768px) {
  .tv-heading.--select-plan {
    width: 432px;
  }
}

.tv-heading_inner {
  position: relative;
}

.tv-heading_sub {
  position: absolute;
  left: 12px;
  top: 6px;
  color: #fff;
  font-family: "DM Sans", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .tv-heading_sub {
    font-size: 30px;
  }
}

.tv-heading_main {
  position: absolute;
  left: 12px;
  top: 16px;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .tv-heading_main {
    font-size: 50px;
    top: 30px;
  }
}

.tv-heading_line {
  position: absolute;
  left: 12px;
  top: 55px;
  background: #fff;
  width: 10px;
  height: 3px;
}
@media screen and (min-width: 768px) {
  .tv-heading_line {
    top: 108px;
    width: 23px;
  }
}

.pankuzu {
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .pankuzu {
    margin-top: 90px;
  }
}

.pankuzu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.pankuzu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.pankuzu-item:last-child {
	white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .pankuzu-item:last-child {
    max-width: 531px; 
	white-space: normal;
  }
}
.pankuzu-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background: #5f5656;
  -webkit-transform: rotate(-75deg);
          transform: rotate(-75deg);
}
@media screen and (min-width: 768px) {
  .pankuzu-item:not(:last-child)::after {
    width: 12px;
    height: 2px;
  }
}


.pankuzu_item-icon svg {
  display: block;
  width: 8px;
  height: 9px;
}
@media screen and (min-width: 768px) {
  .pankuzu_item-icon svg {
    width: 14px;
    height: 15px;
  }
}

.pankuzu_item-text {
  font-size: 10px;
  font-weight: 500;
  color: #5f5656;
  padding-right: 4px;
}
@media screen and (min-width: 768px) {
  .pankuzu_item-text {
    font-size: 16px;
  }
}

.lower-page-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}
@media screen and (min-width: 768px) {
  .lower-page-items {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
    row-gap: 100px;
  }
}
.lower-page-items.--ver2 {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .lower-page-items.--ver2 {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
    row-gap: 72px;
  }
}

.lower-page-item {
  display: block;
}

.lower-page-item_image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lower-page-item_image.--dummy {
  background: #d9d9d9;
  width: 100%;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .lower-page-item_image.--dummy {
    height: 200px;
  }
}
.lower-page-item_image img {
  display: block;
  width: 100%;
}

.works-page-item_text {
  font-size: 11px;
  font-weight: 500;
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .works-page-item_text {
    font-size: 20px;
  }
}

.lower-page-item_arrow {
  margin-top: 0px;
}
.lower-page-item_arrow svg {
  margin-left: auto;
  margin-right: auto;
  margin-top: -6px;
  display: block;
  width: 80%;
}

.lower-page-item_arrow-text {
  font-size: 10px;
  text-align: center;
  color: #34897f;
}
@media screen and (min-width: 768px) {
  .lower-page-item_arrow-text {
    font-size: 18px;
  }
}

.pagination {
  margin-bottom: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .pagination {
    gap: 24px;
    margin-bottom: 100px;
  }
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23px;
  height: 23px;
  border: 1px solid #333;
  border-radius: 50%;
  font-family: "DM Sans", serif;
  font-size: 12px;
  font-weight: 500;
  padding-left: 2px;
  padding-top: 1px;
}
@media screen and (min-width: 768px) {
  .page-numbers {
    font-size: 16px;
    width: 40px;
    height: 40px;
  }
}
.page-numbers img {
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 768px) {
  .page-numbers img {
    width: 20px;
    height: 20px;
  }
}
.page-numbers.current {
  background: #34897f;
  color: #fff;
}
.page-numbers.prev {
  width: auto;
  height: auto;
  border: none;
}
.page-numbers.next {
  width: auto;
  height: auto;
  border: none;
}

.interview-page-item_address {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .interview-page-item_address {
    margin-top: 12px;
    font-size: 15px;
  }
}

.interview-page-item_text {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .interview-page-item_text {
    margin-top: 12px;
    font-size: 20px;
  }
}

.lower-page-item.--ver2 {
  position: relative;
  padding-right: 12px;
  max-height: 150px;
  border-radius: 5px;
  border: 1px solid #dad3d3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .lower-page-item.--ver2 {
    max-height: 210px;
    gap: 24px;
  }
}

.article-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.article-image img {
  display: block;
  max-height: 150px;
  width: auto;
  height: auto;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media screen and (min-width: 768px) {
  .article-image img {
    max-height: 210px;
  }
}

.article-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: center;
	height: 90%;
}

.article-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .article-title {
    font-size: 20px;
  }
}

.event-text {
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .event-text {
    font-size: 16px;
  }
}

.article-button {
  position: absolute;
  bottom: 6px;
  right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .article-button {
    width: 45px;
    height: 45px;
  }
}

.article-button_arrow img {
  display: block;
  width: 9px;
  height: 7px;
}
@media screen and (min-width: 768px) {
  .article-button_arrow img {
    width: 12px;
    height: 10px;
  }
}

.blog-date {
  position: absolute;
  top: 6px;
  right: 6px;
  color: #7c7878;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .blog-date {
    top: 12px;
    right: 12px;
    font-size: 16px;
  }
}

.blog-category {
  margin-bottom: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 500;
  border-radius: 1px;
  border: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .blog-category {
    font-size: 14px;
    padding: 2px 12px;
  }
}

.blog-page_text {
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .blog-page_text {
    font-size: 13px;
  }
}

.introduction-text {
  font-size: 15px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .introduction-text {
    font-size: 24px;
  }
}

.plan_introduction_text {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .plan_introduction_text {
    font-size: 24px;
  }
}
.plan_introduction_text span {
  font-size: 30px;
  font-family: "DM Sans", serif;
}
@media screen and (min-width: 768px) {
  .plan_introduction_text span {
    font-size: 50px;
  }
}
.plan_introduction_text p + p {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .plan_introduction_text p + p {
    margin-top: 12px;
  }
}

.plan-features_all-inner {
  margin-top: 36px;
  height: 720px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .plan-features_all-inner {
    height: 650px;
    margin-top: 72px;
  }
}
.plan-features_all-inner.--custom {
  height: 520px;
}
@media screen and (min-width: 768px) {
  .plan-features_all-inner.--custom {
    height: auto;
  }
}

.plan-features-flex_sp {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .plan-features-flex_sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 72px;
    bottom: 0;
    left: 0;
    top: auto;
  }
}
@media screen and (min-width: 768px) {
  .plan-features-flex_sp.--custom {
    position: relative;
    gap: 24px;
    display: contents;
  }
}
.plan-features-flex_sp.--even {
  top: 110px;
  right: auto;
  left: 0;
}
@media screen and (min-width: 768px) {
  .plan-features-flex_sp.--even {
    right: 0;
    left: auto;
    top: 0;
    bottom: auto;
  }
}

.plan-features-flex_pc {
  display: contents;
}
@media screen and (min-width: 768px) {
  .plan-features-flex_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.plan-feature {
  width: 166px;
  height: 166px;
  border-radius: 50%;
  border: 3px solid #4d7e78;
  background: #c7eae6;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .plan-feature {
    width: 250px;
    height: 250px;
  }
}
.plan-feature.--custom {
  border: 3px solid #df6f5f;
  background: #ffd8d2;
}

.plan-feature_heading {
  font-family: "DM Sans", serif;
  color: #686868;
  position: absolute;
  left: 23px;
  top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .plan-feature_heading {
    left: 35px;
    top: 30px;
  }
}

.plan-feature_heading-text {
  font-size: 10px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-feature_heading-text {
    font-size: 15px;
  }
}

.plan-feature_heading-number {
  font-size: 30px;
  margin-top: -18px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-feature_heading-number {
    margin-top: -30px;
    font-size: 45px;
  }
}

.plan-feature_icon img {
  display: block;
  width: 50px;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .plan-feature_icon img {
    width: 75px;
    height: 75px;
  }
}

.plan-feature_title {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .plan-feature_title {
    font-size: 20px;
  }
}

.plan-features_deco {
  display: contents;
}
@media screen and (min-width: 768px) {
  .plan-features_deco.--custom {
    display: none;
  }
}

.plan-features_deco-house {
  position: absolute;
  top: 44px;
  left: 72px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-house {
    top: 120px;
    left: 80px;
  }
}
.plan-features_deco-house.--2 {
  top: auto;
  left: auto;
  bottom: 83px;
  right: 83px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-house.--2 {
    bottom: 125px;
    right: 99px;
  }
}
.plan-features_deco-house img {
  width: 35px;
  height: 37px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-house img {
    width: 50px;
    height: 50px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.plan-features_deco-person {
  position: absolute;
  top: 55px;
  left: 144px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-person {
    top: 214px;
    left: 95px;
  }
}
.plan-features_deco-person.--2 {
  top: auto;
  left: auto;
  bottom: 83px;
  right: 130px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-person.--2 {
    bottom: 200px;
    right: 106px;
  }
}
.plan-features_deco-person img {
  width: 14px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-person img {
    width: 28px;
    height: 40px;
    -webkit-transform: rotate(-90deg) scale(-1, 1);
            transform: rotate(-90deg) scale(-1, 1);
  }
}

.plan-features_deco-line {
  position: absolute;
  top: 80px;
  left: 43px;
  background: #969696;
  width: 41vw;
  height: 1px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-line {
    width: 1px;
    height: 30vw;
    left: 128px;
  }
}
.plan-features_deco-line.--2 {
  top: auto;
  left: auto;
  bottom: 83px;
  right: 50px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-line.--2 {
    right: 100px;
  }
}

.plan-features_deco-between-line {
  position: absolute;
  width: 20vw;
  height: 1px;
  background: #969696;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-30deg);
          transform: translateX(-50%) rotate(-30deg);
}
@media screen and (min-width: 768px) {
  .plan-features_deco-between-line {
    width: 30vw;
    left: auto;
    -webkit-transform: translate(0) rotate(-60deg);
            transform: translate(0) rotate(-60deg);
  }
}
.plan-features_deco-between-line.--1 {
  top: 150px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-between-line.--1 {
    top: 350px;
  }
}
.plan-features_deco-between-line.--2 {
  top: 250px;
  -webkit-transform: translateX(-50%) rotate(30deg);
          transform: translateX(-50%) rotate(30deg);
}
@media screen and (min-width: 768px) {
  .plan-features_deco-between-line.--2 {
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
    left: 170px;
  }
}
.plan-features_deco-between-line.--3 {
  top: 350px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-between-line.--3 {
    left: 350px;
  }
}
.plan-features_deco-between-line.--4 {
  top: 450px;
  -webkit-transform: translateX(-50%) rotate(30deg);
          transform: translateX(-50%) rotate(30deg);
}
@media screen and (min-width: 768px) {
  .plan-features_deco-between-line.--4 {
    top: 330px;
    left: 520px;
    -webkit-transform: rotate(70deg);
            transform: rotate(70deg);
  }
}
.plan-features_deco-between-line.--5 {
  top: 550px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-between-line.--5 {
    top: 350px;
    left: 700px;
  }
}

.plan-features_deco-between-person {
  position: absolute;
  top: 323px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-30deg) scale(-1, 1);
          transform: translateX(-50%) rotate(-30deg) scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .plan-features_deco-between-person {
    top: 279px;
    -webkit-transform: translateX(-50%) rotate(-60deg) scale(1);
            transform: translateX(-50%) rotate(-60deg) scale(1);
  }
}
.plan-features_deco-between-person img {
  width: 14px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .plan-features_deco-between-person img {
    width: 28px;
    height: 40px;
  }
}

.premium-plan {
  margin-top: 96px;
  padding-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .premium-plan {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.premium-plan.--select {
  padding-bottom: 0;
}

.plan_inner-bg {
  background: #f3fffd;
  margin-top: -30px;
  z-index: -1;
  padding-top: 54px;
}
@media screen and (min-width: 768px) {
  .plan_inner-bg {
    margin-top: -76px;
    padding-top: 120px;
  }
}
.plan_inner-bg.--custom {
  background: #fff4f2;
  padding-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .plan_inner-bg.--custom {
    padding-bottom: 100px;
  }
}

.select-plan {
  background: #f5f5ee;
  padding-bottom: 36px;
  z-index: 1;
  position: relative;
}
.select-plan.--two-story {
  background: #fff;
  margin-top: 0;
}

.select-plan_inner {
  position: relative;
}

.section-title {
  z-index: 1;
}
.section-title.--select {
  position: absolute;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  top: -30px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .section-title.--select {
    padding-left: 20px;
    padding-right: 20px;
    top: -4%;
  }
}
.section-title.--select .section-title_back-text {
  top: -150%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: none;
          transform: none;
  left: 0;
  text-wrap: nowrap;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .section-title.--select .section-title_back-text {
    font-size: 12vw;
  }
}
.section-title.--select .section-title_text {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section-title.--select .section-title_text strong {
    font-size: 4vw;
	text-wrap: nowrap;
  }
}
.section-title.--select .section-title_line {
  margin-left: 0;
}
.section-title.--ver2 {
  right: 0;
}
.section-title.--ver2 .section-title_back-text {
  right: 0;
  left: auto;
  -webkit-transform: none;
          transform: none;
}
.section-title.--ver2 .section-title_text {
  margin-right: auto;
  text-align: right;
}
.section-title.--ver2 .section-title_line {
  margin-left: auto;
  margin-right: 0;
}

.plan-title.--select {
  padding-top: 60px;
}
@media screen and (min-width: 768px) {
  .plan-title.--select {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
  .plan-title.--select .plan-title_line {
    -webkit-transform: none;
            transform: none;
    height: 36px;
  }
  .plan-title.--select .plan-title_text {
    margin-left: 0;
  }
}
.plan-title.--custom {
  padding-top: 0px;
}
@media screen and (min-width: 768px) {
  .plan-title.--custom {
    margin-top: 60px;
  }
}

.select-plan_disc {
  margin-top: 6px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .select-plan_disc {
    margin-top: 12px;
    font-size: 30px;
  }
}

.select-plan_image {
  margin-top: 12px;
  position: relative;
}
.select-plan_image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .select-plan_image {
    margin-top: 60px;
  }
}

.select-plan_image-info {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 1px 2px;
}
@media screen and (min-width: 768px) {
  .select-plan_image-info {
    padding: 12px;
  }
}

.select-plan_image-info-text {
  font-size: 8px;
}
@media screen and (min-width: 768px) {
  .select-plan_image-info-text {
    font-size: 20px;
  }
}

.swiper-container {
  margin: 0 auto;
}

/* ↓ ここからカスタムページネーションのスタイル ↓ */
.select-plan_pagenation {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin-left: auto;
  margin-right: auto;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .select-plan_pagenation {
    margin-top: 36px;
    gap: 36px;
  }
}
.select-plan_pagenation::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 1px;
  z-index: -1;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/pagenation-line.png) repeat center center / contain;
}
@media screen and (min-width: 768px) {
  .select-plan_pagenation::after {
    height: 3px;
  }
}

/* 通常時のボタン */
.select-plan_pagenation-item {
  font-size: 10px;
  font-weight: 500;
  border-radius: 5px;
  padding: 3px 6px;
  background: #fff;
  border: 1px solid #dad3d3;
  cursor: pointer; /* クリック可能に */
}
@media screen and (min-width: 768px) {
  .select-plan_pagenation-item {
    font-size: 25px;
    padding: 6px 24px;
  }
}

/* アクティブ時（--active） */
.select-plan_pagenation-item.--active {
  background: #34897f;
  color: #fff;
  border: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .select-plan_pagenation-item.--active {
    border: 3px solid #333;
  }
}

/* ページネーションの区切り(線) */
.select-plan_pagenation-line img {
  display: block;
  width: 12px;
}
@media screen and (min-width: 768px) {
  .select-plan_pagenation-line img {
    width: 36px;
  }
}

.select-plan_flex-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .select-plan_flex-inner {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 12px;
  }
}

.select-plan_deco-line {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.select-plan_deco-line img {
  width: 24px;
  height: 3px;
}
@media screen and (min-width: 768px) {
  .select-plan_deco-line img {
    width: 78px;
    height: 4px;
  }
}
@media screen and (min-width: 768px) {
  .select-plan_deco-line {
    -webkit-transform: none;
            transform: none;
  }
}

.select-plan_table {
  margin-top: 24px;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .select-plan_table {
    margin-top: 0;
    width: 415px;
    font-size: 20px;
  }
}

.table-header {
  width: 25%;
  background-color: #c7eae6;
  border: 1px solid #333;
  padding: 8px;
}

.table-data {
  border: 1px solid #333;
  padding: 8px;
}

.second-column {
  background-color: #fff;
}
.select-plan_point {
  padding-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .select-plan_point {
    max-width: 580px;
    padding-bottom: 24px;
  }
}

.select-plan_point-contents {
  position: relative;
  background: #fff;
  padding: 40px 6px 12px;
}
.select-plan_point-contents.--two-story {
  border: 1px solid #b4b1b1;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .select-plan_point-contents {
    padding: 79px 12px 24px;
  }
}

.plan-item_label.--select {
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 16px;
  height: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.plan-item_label.--select span {
  display: block;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .plan-item_label.--select span {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) {
  .plan-item_label.--select {
    height: 39px;
    padding-right: 30px;
  }
}
.select-plan_point-text {
  font-size: 12px;
}
.select-plan_point-text span {
  text-decoration: underline;
  text-decoration-color: #c7eae6;
  text-decoration-thickness: 3px;
}
@media screen and (min-width: 768px) {
  .select-plan_point-text {
    font-size: 20px;
  }
}

.select-plan_point-deco {
  position: absolute;
  right: 3px;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .select-plan_point-deco {
    right: 6px;
  }
}

.select-plan_point-deco-text {
  color: #34897f;
  font-family: "DM Sans", serif;
  font-size: 10px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .select-plan_point-deco-text {
    font-size: 20px;
  }
}

.select-plan_point-deco-icon svg {
  width: 19px;
  height: 23px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .select-plan_point-deco-icon svg {
    width: 29px;
    height: 32px;
  }
}

.smart-custom-plan {
  margin-top: 96px;
  padding-bottom: 72px;
}
@media screen and (min-width: 768px) {
  .smart-custom-plan {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.smart-custom-plan.smart-custom-plan {
  padding-bottom: 0;
}

.promise-items {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .promise-items {
    margin-top: 72px;
  }
}

.promise-item {
  position: relative;
}
.promise-item + .promise-item {
  margin-top: 60px;
}

.promise-item-heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.promise-item-heading.--2 {
  margin-left: auto;
  margin-right: 0;
}

.promise-item_text {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .promise-item_text {
    font-size: 1.5vw;
  }
}

.promise-item_number {
  font-size: 50px;
  font-family: "DM Sans", serif;
  font-weight: 500;
  margin-top: -25px;
  margin-bottom: -20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .promise-item_number {
    font-size: 7.5vw;
    margin-top: -36%;
    margin-bottom: -30%;
  }
  .promise-item_number.--1 {
    margin-top: -50%;
    margin-bottom: -40%;
  }
}

.promise-item_line {
  width: 12px;
  height: 2px;
  background: #34897f;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .promise-item_line {
    width: 40%;
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .promise-item_line.--2 {
    margin-right: 0;
    margin-left: auto;
  }
}

.promise-item_image {
  margin-top: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .promise-item_image {
    margin-top: 48px;
    padding-bottom: 36px;
  }
}
.promise-item_image img {
  display: block;
  width: 80vw;
}
@media screen and (min-width: 768px) {
  .promise-item_image img {
    width: 43vw;
  }
}
.promise-item_image.--2 {
  margin-left: auto;
  margin-right: 0;
}

.promise-item_card {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .promise-item_card {
    position: absolute;
    bottom: 0;
    left: 40%;
    border-radius: 5px;
    background: #f0f0f0;
    width: 38vw;
    padding: 36px 24px;
    min-width: 350px;
  }
}
@media screen and (min-width: 768px) {
  .promise-item_card.--2 {
    left: auto;
    right: 40%;
  }
}

.promise-item_card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.promise-item_card-title img {
  display: block;
  width: 22px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .promise-item_card-title img {
    width: 2.5vw;
    height: auto;
  }
}
.promise-item_card-title span {
  display: block;
  font-size: 20px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #c7eae6;
  text-decoration-thickness: 3px;
}
@media screen and (min-width: 768px) {
  .promise-item_card-title span {
    font-size: 2.5vw;
    text-decoration-thickness: 5px;
  }
}
.promise-item_card-title.--2 {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .promise-item_card-title.--2 {
    margin-right: auto;
    margin-left: 0;
  }
}

.promise-item_card-text {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .promise-item_card-text {
    font-size: 1.5vw;
  }
}

.concept-deco-icons.--promise {
  opacity: 0.5;
  top: 0;
  right: 0;
  display: block;
}
.concept-deco-icons.--promise.--2 {
  right: auto;
  left: 0;
}

@media screen and (min-width: 768px) {
  .concept-deco-icons_inner.--promise {
    height: 577px;
  }
}

.concept-deco-icons_house.--promise {
  width: 31px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .concept-deco-icons_house.--promise {
    width: 50px;
    height: 46px;
    top: 78px;
  }
}
.concept-deco-icons_house.--promise.--2 {
  bottom: auto;
  top: 30px;
}
@media screen and (min-width: 768px) {
  .concept-deco-icons_house.--promise.--2 {
    top: 78px;
  }
}
.concept-deco-icons_house.--promise.--3 {
  top: auto;
  bottom: 30px;
}
@media screen and (min-width: 768px) {
  .concept-deco-icons_house.--promise.--3 {
    bottom: 78px;
  }
}

.concept-deco-icons_person.--promise {
  width: 30px;
  height: 19px;
}
@media screen and (min-width: 768px) {
  .concept-deco-icons_person.--promise {
    width: 57px;
    height: 40px;
    top: 180px;
  }
}
.concept-deco-icons_person.--promise.--2 {
  right: auto;
  left: 0;
  bottom: 120px;
  top: auto;
}
@media screen and (min-width: 768px) {
  .concept-deco-icons_person.--promise.--2 {
    bottom: 260px;
  }
}
.concept-deco-icons_person.--promise.--3 {
  top: auto;
  bottom: 100px;
}
@media screen and (min-width: 768px) {
  .concept-deco-icons_person.--promise.--3 {
    bottom: 180px;
  }
}

@media screen and (min-width: 768px) {
  .concept-deco-icons_line.--promise {
    height: 577px;
  }
}
.concept.--lower-page {
  margin-top: 11%;
}
@media screen and (min-width: 768px) {
  .concept.--lower-page {
    margin-top: 150px;
  }
}

.concept-page_disc {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .concept-page_disc {
    font-size: 20px;
  }
}

.concept-page_items {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .concept-page_items {
    margin-top: 72px;
  }
}

.concept-page_item {
  position: relative;
}

.concept-page_item-card {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  border: 1px solid #c2bebe;
  background: #fff;
  padding: 12px 6px;
  max-width: 315px;
}
@media screen and (min-width: 768px) {
  .concept-page_item-card {
    left: auto;
    right: 40%;
    padding: 24px 12px;
    width: 42vw;
    max-width: 100%;
  }
}
.concept-page_item-card.--2 {
  left: auto;
  right: 0;
}
@media screen and (min-width: 768px) {
  .concept-page_item-card.--2 {
    right: auto;
    left: 40%;
  }
}

.concept-page_item-card_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.concept-page_item-card_title-en {
  font-family: "DM Sans", serif;
  color: #34897f;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .concept-page_item-card_title-en {
    font-size: 4vw;
  }
}

.concept-page_item-card_title-jp {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .concept-page_item-card_title-jp {
    font-size: 2vw;
  }
}

.concept-page_item-card-disc {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .concept-page_item-card-disc {
    font-size: 1.5vw;
  }
}

.concept-page_item-image {
  padding-top: 150px;
  margin-left: auto;
  margin-right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.concept-page_item-image img {
  display: block;
  width: 300px;
}
@media screen and (min-width: 768px) {
  .concept-page_item-image img {
    width: 43vw;
  }
}
.concept-page_item-image.--2 {
  margin-right: auto;
  margin-left: 0;
}

.concept-page_item-between-line {
  margin-top: 12px;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .concept-page_item-between-line {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.concept-page_item-between-line img {
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 3px;
  height: 46px;
}
@media screen and (min-width: 768px) {
  .concept-page_item-between-line img {
    width: 3px;
    height: 80px;
  }
}

.company-table_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.company-table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .company-table-row {
    padding-left: 23%;
    font-size: 20px;
  }
}

.company-table_header {
  width: 112px;
  font-weight: 600;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .company-table_header {
    width: 165px;
  }
}

.company-table_content {
  font-weight: 500;
}

.company-table_line {
  width: 100%;
  height: 1px;
  background: #dcdada;
}

.company-google-map {
  margin-top: 36px;
}
.company-google-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  display: block;
}
@media screen and (min-width: 768px) {
  .company-google-map {
    margin-top: 72px;
  }
}

.company-zeh {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .company-zeh {
    margin-top: 72px;
  }
}

.zeh-builder_image {
  width: 30vw;
}

.plan-title.--zeh {
  padding-top: 0px;
}
@media screen and (min-width: 768px) {
  .plan-title.--zeh .plan-title_text {
    font-size: 30px;
  }
}
.plan-title.--builder {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .plan-title.--builder {
    margin-top: 72px;
  }
}

.zeh-rate_items {
  margin-top: 12px;
}

.zeh-rate_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.zeh-rate_item + .zeh-rate_item {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .zeh-rate_item + .zeh-rate_item {
    margin-top: 12px;
  }
}

.zeh-rate_item-icon img {
  display: block;
  width: 17px;
  height: 17px;
}
@media screen and (min-width: 768px) {
  .zeh-rate_item-icon img {
    width: 20px;
    height: 20px;
  }
}

.zeh-rate_item-text {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .zeh-rate_item-text {
    font-size: 24px;
  }
}

.company-message {
  margin-top: 24px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .company-message {
    font-size: 25px;
    margin-top: 48px;
  }
}

.privacy-item + .privacy-item {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .privacy-item + .privacy-item {
    margin-top: 60px;
  }
}

.privacy-heading {
  font-size: 20px;
}
.privacy-heading span {
  font-family: "DM Sans", serif;
}
@media screen and (min-width: 768px) {
  .privacy-heading {
    font-size: 35px;
  }
}

.privacy-text {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .privacy-text {
    margin-top: 24px;
  }
}
.privacy-text + .privacy-text {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .privacy-text + .privacy-text {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .privacy-text {
    font-size: 20px;
  }
}

.contact {
  background: #e3dfdf;
  padding: 48px 16px;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 100px 24px;
  }
}

.contact-contents {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 24px 12px;
}
@media screen and (min-width: 768px) {
  .contact-contents {
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 96px;
  }
}

.contact-heading {
  position: absolute;
  top: -21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .contact-heading {
    top: -46px;
  }
}

.contact-heading_text {
  font-size: 22px;
  text-align: center;
  font-weight: 600;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .contact-heading_text {
    font-size: 50px;
  }
}

.contact-heading_line {
  margin-top: 6px;
  width: 24px;
  height: 2px;
  background: #34897f;
  margin-left: auto;
  margin-right: auto;
}

.contact-form.--hide {
  display: none;
}

.contact-form_item + .contact-form_item {
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  .contact-form_item + .contact-form_item {
    margin-top: 24px;
  }
}

.contact-form_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.label-tag {
  display: block;
  padding: 1px 6px;
  background: #df6f5f;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  border-radius: 2px;
}
.label-tag.--allowed {
  background: #6c9ac5;
}
@media screen and (min-width: 768px) {
  .label-tag {
    font-size: 12px;
  }
}

.label-text {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .label-text {
    font-size: 18px;
  }
}

.contact-form_input {
  margin-top: 6px;
  width: 100%;
  padding: 6px;
  font-size: 13px;
  font-weight: 500;
}
.contact-form_input::-webkit-input-placeholder {
  color: #a4a0a0;
}
.contact-form_input::-moz-placeholder {
  color: #a4a0a0;
}
.contact-form_input:-ms-input-placeholder {
  color: #a4a0a0;
}
.contact-form_input::-ms-input-placeholder {
  color: #a4a0a0;
}
.contact-form_input::placeholder {
  color: #a4a0a0;
}
@media screen and (min-width: 768px) {
  .contact-form_input {
    font-size: 18px;
  }
}

.contact-form_radios {
  margin-top: 6px;
}

.contact-form_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contact-form_radio {
    font-size: 16px;
  }
}
.contact-form_radio + .contact-form_radio {
  margin-top: 6px;
}
.contact-form_radio a {
  text-decoration: underline;
}
.contact-form_radio span {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .contact-form_radio span {
    font-size: 18px;
  }
}

.contact-form_textarea {
  margin-top: 6px;
  width: 100%;
  height: 144px;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contact-form_textarea {
    font-size: 18px;
    height: 190px;
  }
}
.contact-form_textarea::-webkit-input-placeholder {
  color: #a4a0a0;
}
.contact-form_textarea::-moz-placeholder {
  color: #a4a0a0;
}
.contact-form_textarea:-ms-input-placeholder {
  color: #a4a0a0;
}
.contact-form_textarea::-ms-input-placeholder {
  color: #a4a0a0;
}
.contact-form_textarea::placeholder {
  color: #a4a0a0;
}

.contact-form_select {
  padding: 6px;
  margin-top: 6px;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contact-form_select {
    font-size: 16px;
  }
}

/* ラジオボタンを非表示にする */
input[type=radio] {
  display: none;
}

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

/* カスタムラジオボタンのデザイン */
.custom-radio {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #333;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .custom-radio {
    width: 16px;
    height: 16px;
  }
}

/* 選択時のスタイル */
.custom-radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/check.svg) no-repeat center center / contain;
  width: 9px;
  height: 7px;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .custom-radio::after {
    width: 11px;
    height: 9px;
  }
}

/* ラジオボタンが選択された場合のスタイル */
input[type=radio]:checked + .custom-radio::after {
  opacity: 1;
}

input[type=checkbox]:checked + .custom-radio::after {
  opacity: 1;
}

.button.--submit {
  background: #6c9ac5;
}
.button.--submit .button-text {
  color: #fff;
}

.confirmation {
  display: none;
  padding-top: 36px;
  padding-bottom: 36px;
}
.confirmation.--visible {
  display: block;
}
.confirmation__title {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 0.5em;
}
.confirmation__subtitle {
  font-size: 1rem;
  text-align: left;
  margin-bottom: 1em;
  color: #555;
}
.confirmation__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
.confirmation__table thead th {
  padding: 10px;
  background-color: #ddd;
  font-weight: bold;
  border: 1px solid #ccc;
}
.confirmation__table tbody tr td {
  padding: 10px;
  border: 1px solid #ccc;
}
.confirmation__table tbody tr:nth-child(odd) {
  background-color: #f7f7f7;
}
.confirmation__table tbody tr:nth-child(even) {
  background-color: #fff;
}
.confirmation__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.confirmation__actions .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: #6c9ac5;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.confirmation__actions .btn svg {
  fill: currentColor;
}
.confirmation__actions .btn--back {
  background: #fff;
  border: 1px solid #333;
  color: #333;
}
.confirmation__actions .btn--back svg {
  margin-right: 8px;
}
.confirmation__actions .btn--submit svg {
  margin-left: 8px;
}

.staff-page {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .staff-page {
    margin-top: 100px;
  }
}

.staff-item {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/staff1-bg.png) no-repeat top center / cover;
  position: relative;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .staff-item {
    padding-bottom: 72px;
  }
}
.staff-item.--2 {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/staff2-bg.png) no-repeat top center / cover;
}
.staff-item.--3 {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/staff3-bg.png) no-repeat top center / cover;
}

.staff-name_card {
  max-width: 345px;
  height: 220px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .staff-name_card {
    max-width: 1140px;
    height: 441px;
  }
}

.staff-name-en_left {
  position: absolute;
  left: -34%;
  top: 82px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  color: #969696;
  font-family: "DM Sans", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .staff-name-en_left {
    font-size: 60px;
    top: 161px;
    left: -21%;
  }
}
.staff-name-en_left.--2 {
  left: -19%;
  top: 30px;
}
@media screen and (min-width: 768px) {
  .staff-name-en_left.--2 {
    left: -12%;
    top: 55px;
  }
}
.staff-name-en_left.--3 {
  top: 56px;
  left: -27%;
}
@media screen and (min-width: 768px) {
  .staff-name-en_left.--3 {
    left: -16%;
    top: 103px;
  }
}

.staff-name-en_top {
  top: -33px;
  left: 0;
  position: absolute;
  color: #969696;
  font-family: "DM Sans", serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .staff-name-en_top {
    font-size: 100px;
    top: -84px;
  }
}

.staff-item_image {
  position: absolute;
  top: 20px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .staff-item_image {
    top: 40px;
  }
}
.staff-item_image img {
  display: block;
  width: 154px;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .staff-item_image img {
    width: 300px;
    height: 400px;
  }
}

.staff-text.--lower-page {
  position: absolute;
  top: 53px;
  right: 36px;
  padding-bottom: 21px;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/staff-card-bg.svg) no-repeat top center / cover;
}
@media screen and (min-width: 768px) {
  .staff-text.--lower-page {
    top: 100px;
    right: auto;
    left: 30vw;
    padding: 36px 24px;
  }
}
.staff-text.--1 {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/staff-card-bg-white.svg) no-repeat top center / cover;
}

.staff-text_position.--lower-page {
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .staff-text_position.--lower-page {
    font-size: 24px;
  }
}

.staff-text_name.--lower-page {
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .staff-text_name.--lower-page {
    font-size: 50px;
  }
}

.staff-name_kana {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-left: 5px;
  margin-bottom: -10px;
}
@media screen and (min-width: 768px) {
  .staff-name_kana {
    gap: 60px;
    padding-left: 10px;
    margin-bottom: -20px;
  }
}
.staff-name_kana.--2 {
  gap: 26px;
}
.staff-name_kana.--3 {
  padding-left: 10px;
}
.staff-name_kana span {
  text-align: center;
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .staff-name_kana span {
    font-size: 20px;
  }
}

.staff-icon.--lower-page {
  position: absolute;
  bottom: -5px;
  right: -5px;
}
@media screen and (min-width: 768px) {
  .staff-icon.--lower-page {
    bottom: -10px;
    right: -10px;
  }
}
.staff-icon.--lower-page img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 768px) {
  .staff-icon.--lower-page img {
    width: 40px;
    height: 40px;
  }
}

.staff-item_profile-items {
  padding-top: 36px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .staff-item_profile-items {
    padding-top: 60px;
  }
}

.staff-profile-item {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #333;
}
.staff-profile-item + .staff-profile-item {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .staff-profile-item + .staff-profile-item {
    margin-top: 60px;
  }
}

.staff-profile-item_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 6px 8px;
}
@media screen and (min-width: 768px) {
  .staff-profile-item_heading {
    gap: 12px;
  }
}

.staff-profile-item_heading-icon img {
  display: block;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 768px) {
  .staff-profile-item_heading-icon img {
    width: 35px;
    height: 35px;
  }
}

.staff-profile-item_heading-text {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .staff-profile-item_heading-text {
    font-size: 30px;
  }
}

.staff-profile-item_content {
  border-top: 1px solid #333;
  padding: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .staff-profile-item_content {
    padding: 12px;
    font-size: 23px;
  }
}
.staff-profile-item_content p {
  font-size: 14px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .staff-profile-item_content p {
    font-size: 23px;
  }
}
.staff-profile-item_content p + p {
  margin-top: 9px;
}
@media screen and (min-width: 768px) {
  .staff-profile-item_content p + p {
    margin-top: 12px;
  }
}

.staff-item-space {
  margin-top: 24px;
  margin-bottom: 24px;
}
.staff-item-space img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 1px;
  height: 36px;
}

.outroduction-text {
  margin-top: 36px;
  font-size: 15px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .outroduction-text {
    margin-top: 60px;
    font-size: 24px;
  }
}

.guarantee-items {
  margin-top: 24px;
  border-radius: 5px;
  background: #f0f0f0;
  padding: 6px 12px;
}
@media screen and (min-width: 768px) {
  .guarantee-items {
    margin-top: 60px;
    padding: 12px 24px;
  }
}

.plan-title.--guarantee {
  padding-top: 0;
}

.guarantee-item {
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
}
.guarantee-item + .guarantee-item {
  border-top: 1px solid #333;
}

.guarantee-item_title {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .guarantee-item_title {
    font-size: 30px;
  }
}

.guarantee-item_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.guarantee-item_text a {
  font-size: 13px;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .guarantee-item_text a {
    font-size: 25px;
    gap: 12px;
  }
}

.guarantee-item-text_line {
  width: 6px;
  height: 1px;
  background: #333;
}
@media screen and (min-width: 768px) {
  .guarantee-item-text_line {
    width: 12px;
    height: 2px;
  }
}

.guarantee-item_button {
  position: absolute;
  right: 3px;
  bottom: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #34897f;
}
@media screen and (min-width: 768px) {
  .guarantee-item_button {
    width: 40px;
    height: 40px;
    right: 6px;
    bottom: 12px;
  }
}
.guarantee-item_button svg {
  display: block;
  width: 6px;
  height: 10px;
}
@media screen and (min-width: 768px) {
  .guarantee-item_button svg {
    width: 12px;
    height: 20px;
  }
}

.guarantee-newly,
.guarantee-renovation {
  padding-top: 96px;
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .guarantee-newly,
  .guarantee-renovation {
    margin-top: 72px;
    padding-top: 150px;
  }
}

.check-title {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .check-title {
    margin-top: 36px;
    gap: 12px;
  }
}

.check-icon_image svg {
  display: block;
  width: 18px;
  height: 13px;
}
@media screen and (min-width: 768px) {
  .check-icon_image svg {
    width: 36px;
    height: 26px;
  }
}

.check-title_text {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .check-title_text {
    font-size: 30px;
  }
}

.guarantee-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .guarantee-table {
    margin-top: 60px;
    font-size: 24px;
  }
}
.guarantee-table.--check {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .guarantee-table.--check {
    margin-top: 24px;
  }
}

.guarantee-period-item + .guarantee-period-item {
  margin-top: 36px;
}

.select-plan.--renovation {
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .select-plan.--renovation {
    padding-bottom: 100px;
  }
}

.introduction-text.--renovation {
  margin-top: 36px;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .introduction-text.--renovation {
    margin-top: 72px;
    margin-bottom: 72px;
  }
}

.plan_introduction_text.--renovation {
  padding-top: 9%;
}

.plan-ba {
  margin-top: 36px;
  background: #fff;
  padding: 12px 18px;
  border-radius: 5px;
  border: 1px solid #969696;
}
@media screen and (min-width: 768px) {
  .plan-ba {
    margin-top: 72px;
    padding: 24px 36px;
  }
}

.plan-ba_card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .plan-ba_card {
    gap: 12px;
  }
}

.plan-ba_before img {
  display: block;
  width: 110px;
  height: 118px;
}
@media screen and (min-width: 768px) {
  .plan-ba_before img {
    width: 330px;
    height: 354px;
  }
}

.plan-ba-before_text {
  margin-top: -10px;
  padding-left: 14px;
  color: #5e98ca;
  font-family: "DM Sans", serif;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .plan-ba-before_text {
    font-size: 24px;
    margin-top: -20px;
  }
}

.plan-ba_polygon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .plan-ba_polygon {
    gap: 6px;
  }
}
.plan-ba_polygon svg {
  width: 11px;
  height: 17px;
}
@media screen and (min-width: 768px) {
  .plan-ba_polygon svg {
    width: 22px;
    height: 34px;
  }
}

.plan-ba_after img {
  width: 170px;
  height: 181px;
}
@media screen and (min-width: 768px) {
  .plan-ba_after img {
    width: 510px;
    height: 543px;
  }
}

.plan-ba-after_text {
  color: #df6f5f;
  font-family: "DM Sans", serif;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-ba-after_text {
    font-size: 35px;
  }
}

.plan-accordion-items {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .plan-accordion-items {
    margin-top: 72px;
    gap: 60px;
  }
}

.plan-accordion {
  padding-top: 6px;
  padding-bottom: 6px;
  border-radius: 10px;
  border: 1px solid #5f5656;
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .plan-accordion {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.plan-accordion-head {
  padding-left: 6px;
  padding-right: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 768px) {
  .plan-accordion-head {
    padding-left: 12px;
    padding-right: 12px;
    gap: 12px;
  }
}
.plan-accordion-head.is-open::after {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.plan-accordion-head::after {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #bbbbb6;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .plan-accordion-head::after {
    height: 2px;
  }
}

.plan-accordion_heading {
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/point-home-bg.svg) no-repeat center center / contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  height: 38px;
  padding-top: 9px;
}
@media screen and (min-width: 768px) {
  .plan-accordion_heading {
    padding-top: 18px;
    width: 76px;
    height: 76px;
  }
}

.plan-accordion_heading-point {
  font-size: 8px;
  color: #5f5656;
  font-family: "DM Sans", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-accordion_heading-point {
    font-size: 16px;
  }
}

.plan-accordion_heading-number {
  margin-top: -13px;
  font-size: 20px;
  color: #5f5656;
  font-family: "DM Sans", serif;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .plan-accordion_heading-number {
    margin-top: -23px;
    font-size: 40px;
  }
}

.plan-accordion-head-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .plan-accordion-head-title {
    font-size: 30px;
  }
}

.plan-accordion-head_polygon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 24px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .plan-accordion-head_polygon {
    right: 48px;
  }
}
.plan-accordion-head_polygon.rotated {
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg); /* 矢印を逆向きに回転 */
}
.plan-accordion-head_polygon svg {
  display: block;
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .plan-accordion-head_polygon svg {
    width: 24px;
    height: 24px;
  }
}

.plan-accordion-body {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  padding: 6px;
}
@media screen and (min-width: 768px) {
  .plan-accordion-body {
    padding: 12px;
  }
}
.plan-accordion-body.is-open {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.plan-accordion-body_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .plan-accordion-body_item {
    gap: 12px;
  }
}

.plan-accordion-body_item-point {
  margin-top: 9px;
  width: 4px;
  height: 4px;
  background: #5f5656;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .plan-accordion-body_item-point {
    margin-top: 15px;
    width: 8px;
    height: 8px;
  }
}

.plan-accordion-body_item-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .plan-accordion-body_item-text {
    font-size: 20px;
  }
}

.plan_inner-bg.--flow {
  background: #f3fffd;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .plan_inner-bg.--flow {
    padding-bottom: 100px;
  }
}

.flow-items {
  margin-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .flow-items {
    margin-top: 72px;
    gap: 24px;
  }
}

.flow-item {
  padding: 12px;
  border-radius: 20px;
  border: 1px solid #333;
  background: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .flow-item {
    padding: 36px;
    border-radius: 30px;
  }
}

.flow-item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow-item_head {
    gap: 12px;
  }
}

.flow-item_head-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flow-item_head-image img {
  display: block;
  width: 89px;
  height: 89px;
}
@media screen and (min-width: 768px) {
  .flow-item_head-image img {
    width: 180px;
    height: 180px;
  }
}

.flow-item_head-title {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .flow-item_head-title {
    font-size: 40px;
  }
}
.flow-item_head-title span {
  font-family: "DM Sans", serif;
}

.flow-item_head-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .flow-item_head-text {
    font-size: 28px;
  }
}

.flow-item_head-deco {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 86%;
}
.flow-item_head-deco svg {
  display: block;
  width: 100%;
}
.flow-item_body {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .flow-item_body {
    margin-top: 24px;
    font-size: 24px;
  }
}

.flow-item_between-line {
  height: 40px;
  width: 1px;
  background: url(https://miyabi-con.jp/wp-content/themes/miyabi-con/img/flow-line.png) no-repeat center center / contain;
}
@media screen and (min-width: 768px) {
  .flow-item_between-line {
    height: 60px;
    width: 2px;
  }
}

.section-title_back-text.--reason {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 48px;
  top: -43px;
}
@media screen and (min-width: 768px) {
  .section-title_back-text.--reason {
    font-size: 100px;
    top: -90px;
  }
}

.reason-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}
@media screen and (min-width: 768px) {
  .reason-items {
    gap: 100px;
  }
}

.reason-item {
  width: 100%;
  aspect-ratio: 5/4;
  position: relative;
}

.reason-item_title-left {
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4em;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (min-width: 768px) {
  .reason-item_title-left {
    font-size: 3vw;
  }
}
.reason-item_title-left::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #333;
}
.reason-item_title-left.--2 {
  left: auto;
  right: 0;
}

.reason-item_title-top {
  position: absolute;
  top: 0;
  left: 10%;
  font-family: "DM Sans", serif;
  font-size: 25px;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .reason-item_title-top {
    font-size: 6vw;
    left: 11%;
  }
}
.reason-item_title-top.--2 {
  left: auto;
  right: 9%;
  text-align: right;
}

.reason-item_image {
  position: absolute;
  top: 13%;
  left: 9%;
  width: 83%;
}
@media screen and (min-width: 768px) {
  .reason-item_image {
    top: 11%;
    left: 11%;
  }
}
.reason-item_image img {
  display: block;
  width: 100%;
}
.reason-item_image.--2 {
  left: auto;
  right: 9%;
}

.reason-item_contents {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 5px;
  border: 1px solid #333;
  background: #f0f0f0;
  padding: 12px 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.1em;
  max-width: 260px;
}
@media screen and (min-width: 768px) {
  .reason-item_contents {
    font-size: 2.2vw;
    max-width: 50vw;
  }
}
.reason-item_contents.--2 {
  right: auto;
  left: 0;
}
.reason-item_contents .contents-underline {
  letter-spacing: 0;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #c7eae6;
  text-decoration-thickness: 4px;
}
@media screen and (min-width: 768px) {
  .reason-item_contents .contents-underline {
    text-decoration-thickness: 8px;
  }
}
.reason-item_contents p + p {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .reason-item_contents p + p {
    margin-top: 12px;
  }
}

.plan_inner-bg.--qa {
  background: #f0f0f0;
  padding-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .plan_inner-bg.--qa {
    padding-top: 160px;
    padding-bottom: 100px;
  }
}

.qa-accordion-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.qa-accordion {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #5f5656;
  background: #fff;
}

.qa-accordion-head {
  position: relative;
  padding: 9px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .qa-accordion-head {
    padding: 18px 12px;
  }
}

.qa-accordion-head-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #df6f5f;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .qa-accordion-head-icon {
    width: 60px;
    height: 60px;
  }
}
.qa-accordion-head-icon.--answer {
  background: #4d7e78;
}
.qa-accordion-head-icon span {
  display: block;
  color: #fff;
  text-align: center;
  font-family: "DM Sans", serif;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .qa-accordion-head-icon span {
    font-size: 35px;
  }
}

.qa-accordion-head-title {
  font-size: 13px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .qa-accordion-head-title {
    font-size: 28px;
  }
}

.qa-accordion-head-polygon {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  right: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.qa-accordion-head-polygon svg {
  display: block;
  width: 12px;
  height: 12px;
}
.qa-accordion-head-polygon.rotated svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.qa-accordion-body {
  padding: 9px 6px;
  border-top: 1px solid #5f5656;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 6px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .qa-accordion-body {
    padding: 18px 12px;
  }
}
.qa-accordion-body.is-open {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.qa-accordion-body_text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .qa-accordion-body_text {
    font-size: 24px;
  }
}
.qa-accordion-body_text p + p {
  margin-top: 6px;
}

.not-found {
  width: 90%;
  max-width: 600px;
  margin: 150px auto 100px;
  text-align: center;
}
.not-found__title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f08fa5;
}
.not-found__subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #666;
}
.not-found__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #999;
  margin-bottom: 2rem;
}
.not-found__btn {
  display: inline-block;
  padding: 0.8em 1.5em;
  background-color: #f1f1f1;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.not-found__btn:hover {
  background-color: #e2e2e2;
}

.thanks {
  width: 90%;
  max-width: 600px;
  margin: 72px auto 36px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .thanks {
  	margin: 150px auto 72px;
  }
}

.thanks__title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.thanks__message {
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.thanks__note {
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
}
.thanks__btn {
  display: inline-block;
  padding: 0.8em 1.5em;
  background-color: #f1f1f1;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.thanks__btn:hover {
  background-color: #e2e2e2;
}

article.event,
article.works,
article.interview {
  padding-top: 0;
  padding-bottom: 0;
}

/* 全体レイアウト */
.content-wrapper {
  margin: 0 auto;
  padding-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .content-wrapper {
    padding-bottom: 72px;
  }
}

/* メインコンテンツ */
.blog-single {
  margin-top: 50px;
  padding-top: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
}
@media screen and (min-width: 768px) {
  .blog-single {
    margin-top: 100px;
    padding-top: 80px;
  }
}

.blog-single .post-header {
  margin-bottom: 20px;
}

.blog-single .post-header .post-title {
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .blog-single .post-header .post-title {
    font-size: 32px;
  }
}

.blog-single .post-header .post-meta {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .blog-single .post-header .post-meta {
    font-size: 18px;
  }
}

.blog-single .post-header .post-meta span {
  margin-right: 15px;
}

/* カテゴリー表示（投稿上部）— 例として記事内のカテゴリー表示 */
.blog-single .post-header .post-meta .post-category {
  border: 1px solid #333;
  border-radius: 5px;
  padding: 2px 6px;
  display: inline-block;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .blog-single .post-header .post-meta .post-category {
    font-size: 18px;
  }
}

/* アイキャッチ画像 */
.blog-single .post-thumbnail {
  margin-bottom: 20px;
}

.blog-single .post-thumbnail img {
  display: block;
  border-radius: 5px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  height: 200px;
}
@media screen and (min-width: 768px) {
  .blog-single .post-thumbnail img {
    height: 400px;
  }
}

/* 本文エリア */
.blog-single .post-content {
  line-height: 1.7;
  font-size: 1rem;
}

.blog-single .post-content h2 {
  font-size: 20px;
  margin: 30px 0 15px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #34897f;
}
@media screen and (min-width: 768px) {
  .blog-single .post-content h2 {
    font-size: 25px;
  }
}

.blog-single .post-content h3 {
  font-size: 18px;
  margin: 25px 0 10px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #34897f;
}
@media screen and (min-width: 768px) {
  .blog-single .post-content h3 {
    font-size: 22px;
  }
}

.blog-single .post-content p {
  margin-bottom: 1em;
  letter-spacing: 0.2em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .blog-single .post-content p {
    font-size: 18px;
  }
}

/* サイドバー */
.sidebar {
  margin-top: 50px;
  padding-top: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .sidebar {
    padding-top: 80px;
    margin-top: 100px;
  }
}

.sidebar .widget-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-bottom: 1px solid #333;
}

/* 各ウィジェットの共通設定 */
.sidebar .sidebar-widget {
  margin-bottom: 36px;
}

/* カテゴリーウィジェット */
/* 各カテゴリを黒枠で囲み、横並びに配置（折り返し対応） */
.categories-widget .categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.categories-widget .categories-list .category-item {
  border: 1px solid #333;
  padding: 4px 8px;
  text-decoration: none;
  font-size: 0.9rem;
  color: inherit;
  border-radius: 5px;
}

/* 最新記事ウィジェット */
/* サムネイルとタイトルを横並びで表示 */
.recent-posts-widget .recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-widget .recent-posts-list .recent-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  border-radius: 5px;
  border: 1px solid #dad3d3;
}

.recent-posts-widget .recent-posts-list .recent-post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  text-decoration: none;
}

.recent-posts-widget .recent-posts-list .recent-post-item .recent-post-thumb {
  -webkit-box-flex: 0.4;
      -ms-flex: 0.4;
          flex: 0.4;
  overflow: hidden;
  border-radius: 5px;
}

.recent-posts-widget .recent-posts-list .recent-post-item .recent-post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.recent-posts-widget .recent-posts-list .recent-post-item .recent-post-title {
  -webkit-box-flex: 0.6;
      -ms-flex: 0.6;
          flex: 0.6;
  font-size: 0.9rem;
  line-height: 1.2;
}

/* アーカイブウィジェット */
.archives-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archives-widget ul li {
  margin-bottom: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
  .blog-single {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.related-articles {
  margin-top: 40px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.related-articles h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .related-articles h2 {
    font-size: 25px;
  }
}
.related-articles .related-article-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #fff;
}
.related-articles .related-article-card .related-article-thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  max-width: 30%;
}
.related-articles .related-article-card .related-article-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.related-articles .related-article-card .related-article-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.related-articles .related-article-card .related-article-content .related-article-title {
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.related-articles .related-article-card .related-article-content .related-article-title a {
  text-decoration: none;
  color: inherit;
}
.related-articles .related-article-card .related-article-content .related-article-title a:hover {
  text-decoration: underline;
}
.related-articles .related-article-card .related-article-content .related-article-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

/* event-page */
#root {
	margin-top: 50px;
}
@media screen and (min-width: 768px) {
  #root{
    margin-top: 80px;
  }
}