@charset "utf-8";

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

@media only screen and (-webkit-min-device-pixel-ratio: 2) {}

/*==================================================
$common
==================================================*/
html {
  font-size: 62.5%;
}

body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  position: relative;
  color: #000;
  font-family: 'Noto Sans JP', "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.05em;
}

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

a[href^="tel:"] {
  pointer-events: none;
}

.nopc {
  display: none !important;
}

img {
  max-width: 100%;
}

/*==================================================
$共通
==================================================*/
.contents {
  padding-top: 89.6875px;
}
.inner {
  max-width: 1080px;
  min-width: 900px;
  margin: auto;
  width: 90%;
  position: relative;
}

.s_inner {
  width: 760px;
  margin: auto;
}

.screen-over-content {
  display: none;
}

.screen-over .screen-over-content {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 96px;
  left: 0;
  z-index: -1;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.contents {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.pc_center {
  text-align: center;
}

.link_txt {
  color: #EC8A3F;
  text-decoration: underline;
  transition: .2s;
  font-weight: 500;
}

.business .link_txt {
  color: #2C6BC5;
}

.owner .link_txt {
  color: #00AFBC;
}

.parnter .link_txt {
  color: #25B47E;
}

.link_txt:hover {
  opacity: .6;
}

.link_disable , .link_disable>* {
  text-decoration: none;
  color: #000;
  pointer-events: none;
  cursor: default;
}

.red_txt {
  color: #E00000;
}

.w100 {
  width: 100%;
}

.business .base_color_txt {
  color: #2C6BC5;
}

.owner .base_color_txt {
  color: #00AFBC;
}

.partner .base_color_txt {
  color: #25B47E;
}

.base_color_txt {
  color: #EC8A3F;
}

.business .base_color_bg {
  background-color: #2C6BC5;
}

.owner .base_color_bg {
  background-color: #00AFBC;
}

.partner .base_color_bg {
  background-color: #25B47E;
}

.base_color_bg {
  background-color: #EC8A3F;
}

.ja_gray, .en_gray {
  font-weight: 600;
  color: #8E8E8E;
  font-size: 1.4rem;
}

.en_gray {
  font-family: montserrat, sans-serif;
  font-size: 1.4rem;
}

.right_txt {
  text-align: right;
}

.relative {
  position: relative;
}

/*セクション*/
main>section {
  padding: 0 0 100px;
}

main>section:last-of-type {
  padding-bottom: 120px;
}

.bg_cover, .bg_cover>.inner {
  position: relative;
      background-size: cover;
}

.bg_cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg_gray {
  background-color: #F6F6F6;
  padding: 100px 0 !important;
}

.bg_gray+section {
  padding-top: 100px;
}

.bg_gray+section.bg_gray {
  padding-top: 0 !important;
}

main>section section:not(:last-of-type) {
  margin-bottom: 100px;
}

.border_sec:not(:last-of-type) {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: solid 1px #EEEEEE;
}

.bg_hanging {
  position: relative;
}

div.bg_hanging {
  padding-bottom: 100px;
}

.bg_hanging::before {
  content: '';
  background-color: #F6F6F6;
  height: calc(100% - 200px);
  position: absolute;
  top: 200px;
  left: 0;
  z-index: -1;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.pd_top_clear {
  padding-top: 0 !important;
}

.pd_btm_clear {
  padding-bottom: 0 !important;
}

/*タブ分け*/
.tab-area {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.tab {
  line-height: 30px;
  color: #000;
  width: 100%;
  padding: 15px;
  font-size: 1.5rem;
  transition: .3s;
  border: solid 1px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tab:hover {
  color: #fff;
  background-color: #1C4A6D;
  border: none;
}

.tab.active {
  color: #000 !important;
  position: relative;
  pointer-events: none;
}

.tab.active::before {
  content: '';
  background-color: #1C4A6D;
  width: 100%;
  height: 3.5px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.content {
  display: none;
}

.content.show {
  display: block;
}

/*ページ遷移タブ*/
.tab_btn_area {
  margin-bottom: 35px;
}

.tab_btn_wrap {
  display: flex;
  gap: 35px;
  justify-content: center;
}

.tab_btn_wrap a {
  width: calc((100% - 35px*2)/3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #EC8A3F;
  border-radius: 7px;
  padding: 25px 0;
  font-size: 2.0rem;
  font-weight: bold;
  color: #EC8A3F;
  position: relative;
  transition: .3s;
  flex-wrap: wrap;
  text-align: center;
}

.business .tab_btn_wrap a {
    border: solid 1px #2C6BC5;
    color: #2C6BC5;
}

.partner .tab_btn_wrap a {
    border: solid 1px #25B47E;
    color: #25B47E;
}

.tab_btn_wrap a:hover {
  color: #fff;
  background-color: #EC8A3F;
}

.tab_btn_wrap a.current {
  color: #fff;
  background-color: #EC8A3F;
  pointer-events: none;
}

.business .tab_btn_wrap a:hover , .business .tab_btn_wrap a.current {
  background-color: #2C6BC5;
}

.partner .tab_btn_wrap a:hover , .partner .tab_btn_wrap a.current {
  background-color: #25B47E;
}

.tab_btn_wrap a.current::before {
  content: '';
  position: absolute;
  width: 23px;
  height: 14px;
  background-image: url(../img/v_orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -25px;
  margin: auto;
}

.business .tab_btn_wrap a.current::before {
  background-image: url(../img/v_business.svg);
}

.partner .tab_btn_wrap a.current::before {
  background-image: url(../img/v_partner.svg);
}

.tab_btn_wrap a small {
  width: 100%;
  font-size: 1.6rem;
}

/*タイトル*/
.top_sec_ttl, .page_mv_ttl {
  font-weight: bold;
  font-size: 3.4rem;
  text-align: center;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 35px;
  line-height: 1.5em;
}

.top_sec_ttl span, .page_mv_ttl span {
  font-size: 1.2rem;
  display: block;
  color: #8E8E8E;
  font-family: montserrat, sans-serif;
}

.top_sec_ttl::after, .page_mv_ttl::after {
  content: '';
  background-color: #EC8A3F;
  width: 62px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.business .top_sec_ttl::after, .business .page_mv_ttl::after {
  background-color: #2C6BC5;
}

.owner .top_sec_ttl::after, .owner .page_mv_ttl::after {
  background-color: #00AFBC;
}

.partner .top_sec_ttl::after, .partner .page_mv_ttl::after {
  background-color: #25B47E;
}

.top_sec_ttl_wrap {
  display: flex;
  gap: 50px;
  align-items: center;
}

.top_sec_ttl_wrap .top_sec_ttl {
  margin-bottom: 0;
}

.sec_leftttl {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.pocky_ttl {
  font-size: 2.0rem;
  font-weight: bold;
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 10px;
}

.pocky_ttl::before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #C9C9C9;
  position: absolute;
  bottom: 0;
  left: 0;
}

.pocky_ttl::after {
  content: '';
  width: 54px;
  height: 2px;
  background-color: #EC8A3F;
  position: absolute;
  bottom: 0;
  left: 0;
}

.business .pocky_ttl::after {
  background-color: #2C6BC5;
}

.owner .pocky_ttl::after {
  background-color: #00AFBC;
}

.partner .pocky_ttl::after {
  background-color: #25B47E;
}

/*ボタン*/
.btn {
  position: relative;
  padding: 6px 45px 6px 30px;
}

.btn::after {
  background-image: url(../img/plus_orange.svg);
}

.business .btn::after {
  background-image: url(../img/plus_business.svg);
}

.owner .btn::after {
  background-image: url(../img/plus_owner.svg);
}

.partner .btn::after {
  background-image: url(../img/plus_partner.svg);
}

.btn:hover::after {
  background-image: url(../img/arrow_orange.svg);
}

.business .btn:hover::after {
  background-image: url(../img/arrow_business.svg);
}

.owner .btn:hover::after {
  background-image: url(../img/arrow_owner.svg);
}

.partner .btn:hover::after {
  background-image: url(../img/arrow_partner.svg);
}

.btn::after {
  content: '';
  width: 12px;
  height: 12px;
  transition: .5s;
  transform: rotateZ(0deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.btn:hover::after {
  transform: rotateZ(180deg);
}

.grad_btn {
  background-image: linear-gradient(to right, #f9a463, #eb673f);
  transition: .3s;
  position: relative;
  overflow: hidden;
  flex-direction: row-reverse;
}

.grad_btn>* {
  position: relative;
}

.grad_btn::before {
  background-image: linear-gradient(to right, #eb673f, #f9a463);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: .5s;
  width: 100%;
}

.grad_btn:hover::before {
  opacity: 0;
}

.fill_btn {
  position: relative;
  z-index: 0;
  text-align: center;
  font-weight: bold;
  padding: 20px 0;
  overflow: hidden;
}

.fill_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  display: block;
  z-index: -1;
  transition: .3s;
}

.fill_btn:hover:before {
  width: 100%;
}

.white_btn {
  background-color: #fff;
  box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
  color: #616161;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 1.4rem;
  transition: .3s;
}

.extend_txt {
  position: relative;
}

.extend_txt::after {
  content: '';
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.extend_txt:hover::after {
  transform: scale(1, 1);
}

.hover_img {
  overflow:
    hidden;
  height: 225px;
  width: auto;
}

.hover_img img {
  transition: .4s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover_scale:hover .hover_img img {
  transform: scale(1.1, 1.1);
}

.dl_btn {
  position: relative;
  width: 226px;
  padding: 5px;
}

.dl_btn::after {
  content: '';
  width: 15px;
  height: 13px;
  transition: .5s;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.dl_btn:hover {
  box-shadow: 0 1.5px 3px rgb(0 0 0 / 10%);
  transform: translateY(5px);
}

.business .dl_btn::after {
  background-image: url(../img/dl_icon_business.svg);
}

.owner .dl_btn::after {
  background-image: url(../img/dl_icon_owner.svg);
}

.partner .dl_btn::after {
  background-image: url(../img/dl_icon_partner.svg);
}

.stick_btn_wrap {
  max-width: 862px;
  margin: auto;
}

.stick_btn {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5em;
  background-color: #fff;
  transition: .3s;
}

.stick_btn:hover {
  transform: translateY(6px);
  box-shadow: none;
}

.stick_btn::after {
  content: '';
  background-image: url(../img/stick_btn.svg);
  width: 24px;
  height: 24px;
}

.back_btn {
  background-color: #fff;
  box-shadow: 0 3px 6px rgb(0 0 0 / 20%);
  color: #616161;
  width: 182px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-size: 1.4rem;
  padding: 6px;
  transition: .3s;
  position: relative;
  margin: 100px auto 0;
}

.back_btn::before {
  background-image: url(../img/arrow_orange.svg);
  content: '';
  width: 12px;
  height: 12px;
  transition: .5s;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 25px;
  background-size: contain;
  background-repeat: no-repeat;
}

.business .back_btn::before {
  background-image: url(../img/arrow_business.svg);
}

.owner .back_btn::before {
  background-image: url(../img/arrow_owner.svg);
}

.partner .back_btn::before {
  background-image: url(../img/arrow_partner.svg);
}

.back_btn:hover::before {
  left: 18px;
}

/*リスト*/
.bullet_list li {
  padding-left: 14px;
  position: relative;
}

.bullet_list li::before {
  content: '';
  margin-right: 5px;
  background-color: #EC8A3F;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: calc(1em - 3px);
}

.business .bullet_list li::before {
  background-color: #2C6BC5;
}

.owner .bullet_list li::before {
  background-color: #00AFBC;
}

.partner .bullet_list li::before {
  background-color: #25B47E;
}

.bullet_sublist li::after {
  content: '';
  margin-right: 5px;
  background-color: #fff;
  width: 4px;
  height: 4px;
  border-radius: 100px;
  position: absolute;
  left: 1px;
  top: calc(1em - 2px);
}

.number_list {
  padding-left: 1.5em;
}

.number_list li {
  list-style-type: decimal;
}

.indent_list li {
  text-indent: -1em;
  padding-left: 1em;
}

.bb_list>* {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: solid 1px #EEEEEE;
  padding-bottom: 20px;
  margin-bottom: 20px;
  gap: 35px;
  align-items: flex-start;
}

.bb_list_lbl {
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  font-size: 1.2rem;
  padding: 3px 12px;
}

.list_img {
  margin-bottom: 10px;
}

.list_ttl {
  font-weight: bold;
  color: #EC8A3F;
  font-size: 2.0rem;
}

.list_txt {
  font-size: 1.4rem;
}

.check_list_wrap {
  display: flex;
  justify-content: center;
}

.check_list li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 25px;
  font-weight: bold;
}

.check_list li::before, .check_list li::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.check_list li::before {
  background-color: #EC8A3F;
  width: 37px;
  height: 37px;
  border-radius: 100px;
}

.check_list_tag ul {
  justify-content: center;
  gap: 0 30px;
  display: flex;
  flex-wrap: wrap;
}

.check_list_tag li {
  background-color: #fff;
  padding: 15px 20px 15px 70px;
}

.business .check_list li::before {
  background-color: #2C6BC5;
}

.owner .check_list li::before {
  background-color: #00AFBC;
}

.parnter .check_list li::before {
  background-color: #25B47E;
}

.check_list li::after {
  background-image: url(../img/check.svg);
  width: 18px;
  height: 13px;
  background-repeat: no-repeat;
  background-size: contain;
  left: 25px;
}

/*テーブル*/
.gap_tbl {
  border-collapse: separate;
  border-spacing: 3px;
  width: 100%;
}

.gap_tbl tr {}

.gap_tbl tr td {
  background-color: #fff;
  font-size: 1.4rem;
  padding: 20px;
}

.gap_tbl tr td:first-of-type {
  font-size: 1.6rem;
  font-weight: bold;
}

.king_tbl {
  width: 100%;
  border-top: solid 1px #EEEEEE;
}

.king_tbl tr {
  border-bottom: solid 1px #EEEEEE;
}

.king_tbl tr td {
  padding: 25px;
}

.king_tbl tr td:first-of-type {
  border-right: solid 1px #EEEEEE;
}

.event_detail_tbl th {
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.event_detail_tbl th:after {
  content: '：';
  margin: 0 5px;
}

.border_tbl {
  width: 100%;
}

.border_tbl tr td:first-of-type {
  font-weight: bold;
}

.border_tbl tr td {
  border: solid 1px #EEEEEE;
  padding: 20px;
}

/*折り返さない*/
.nobr_td tr td:first-of-type {
  white-space: nowrap;
}

/*ボックス*/
.flex-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.flex-2>* {
  width: calc((100% - 30px) / 2);
}

.flex-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.flex-3>* {
  width: calc((100% - 30px * 2) / 3);
}

.flex-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.flex-4>* {
  width: calc((100% - 30px * 3) / 4);
}

.flex-2.gap50 {
  gap: 50px;
}

.flex-2.gap50>* {
  width: calc((100% - 50px) / 2);
}

.flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
}

.flex-nowrap>* {
  width: 100%;
}

.ribbon_contents {
  background-color: #fff;
  padding: 70px 3% 45px;
  position: relative;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.05);
}

.ribbon_num {
  background-color: #EC8A3F;
  color: #fff;
  font-weight: bold;
  font-family: montserrat, sans-serif;
  position: absolute;
  height: 42px;
  display: inline-flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  padding: 0 35px 0 45px;
}

.ribbon_num::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 42px 18px 0 0;
  border-color: #EC8A3F transparent transparent transparent;
  position: absolute;
  right: -18px;
}

.business .ribbon_num {
  background-color: #2C6BC5;
}

.owner .ribbon_num {
  background-color: #00AFBC;
}

.partner .ribbon_num {
  background-color: #25B47E;
}

.business .ribbon_num::after {
  border-color: #2c6cc5 transparent transparent transparent;
}

.owner .ribbon_num::after {
  border-color: #00AFBC transparent transparent transparent;
}

.partner .ribbon_num::after {
  border-color: #25B47E transparent transparent transparent;
}

.ribbon_img {
  display: block;
  margin: 0 auto 20px;
  height: 65px;
}

.flex-bx, .flex-bx-ls {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.05);
  padding: 40px 35px;
  flex-wrap: nowrap;
  gap: 35px;
}

.flex-bx-ls {
  align-items: flex-start;
}

.flex-bx:not(:last-of-type) {
  margin-bottom: 30px;
}

.flex-bx>* {
  width: 100%;
}

.flex-bx-ls>*:first-of-type {
  width: 55%;
}

.flex-bx-ls>*:last-of-type {
  width: 35%;
}

.owner .border_block {
  border: solid 1px #00AFBC;
  padding: 20px;
}

/*エントランス cond 導線*/
.cond_main {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}

.cond_main_txt {
  max-width: 327px;
  position: relative;
  z-index: 1;
}

.cond_main_txt .cond_ttl {
  font-size: 3.4rem;
}

.cond_ttl small {
  font-size: 1.6rem;
}

.cond_letter {
  margin-bottom: 60px;
  margin-top: 10px;
}

.cond_main_img {
  width: calc(100% + 80px - 327px);
  margin-left: -80px;
  height: 430px;
}

.cond_sub {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 60px;
  border-top: solid 1px #D9DCDE;
}

.cond_sub_contents {
  padding: 40px 0 60px;
  position: relative;
  width: 100%;
}

.cond_sub_contents:not(:last-of-type)::before {
  content: '';
  background-color: #D9DCDE;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  top: -3px;
  right: -33px;
  position: absolute;
}

.cond_sub_contents:not(:last-of-type)::after {
  content: '';
  background-color: #D9DCDE;
  width: 1px;
  height: 100%;
  top: 0;
  right: -30px;
  position: absolute;
}

.cond_sub_contents .hover_img {
  height: 180px !important;
  margin-bottom: 15px;
}

.cond_sub .cond_ttl {
  font-size: 2.0rem;
}

.cond_sub .cond_letter {
  margin-bottom: 15px;
  line-height: 1.7em;
}

.cond_sub .white_btn {
  width: 182px;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.cond_ttl {
  font-weight: bold;
  font-size: 2.0rem;
  line-height: 1.5em;
}

.cond_shadow {
  box-shadow: 6px 6px 16px rgb(0 0 0 / 7%);
  position: relative;
}

.cond_shadow_txt {
  padding: 25px 25px 70px 25px;
}

.cond_shadow *:not(:last-of-type) {
  margin-bottom: 10px;
}

.cond_shadow_detail {
  position: absolute;
  bottom: 25px;
  color: #616161;
  font-size: 1.4rem;
  right: 10px;
  padding-right: 45px;
}

.cond_line {
  border-left: solid 2px #EC8A3F;
  padding: 15px 20px;
}

.cond_lbl {
  font-size: 1.2rem;
  color: #fff;
  background-color: #EC8A3F;
  padding: 0 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 5px;
}

.cond_gray {
  font-size: 1.4rem;
  color: #8E8E8E;
}

.hold_list_txt {
  background-color: #fff;
  width: 320px;
  margin-top: -48px;
  position: relative;
  margin-left: -15px;
  padding: 18px;
  box-shadow: 0 3px 13px rgb(0 0 0 / 7%);
}

.hold_list_ttl {
  line-height: 1.3em;
  font-weight: bold;
  margin-bottom: 25px;
}

.hold_list_item .hold_list_img {
  overflow:
    hidden;
  height: 220px;
  width: 100%;
  text-align: center;
}

.hold_list_item .hold_list_img img {
  transition: .4s;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hold_list_item:hover .hold_list_img img {
  transform: scale(1.1, 1.1);
}

.thumb_list_ttl {
  line-height: 1.625em;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.thumb_list_img {
  overflow: hidden;
  height: 225px;
  width: auto;
  margin-bottom: 10px;
}

.thumb_list_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in+.fade-in {
  transition-delay: .2s;
}

.fade-in+.fade-in+.fade-in {
  transition-delay: .4s;
}

.fade-in+.fade-in+.fade-in+.fade-in {
  transition-delay: .6s;
}

.fade-in+.fade-in+.fade-in+.fade-in+.fade-in {
  transition-delay: .8s;
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/*連番box*/
.sqnum_wrap {
  counter-reset: number 0;
}

.sqnum_wrap>.sqnum_bx:not(:last-of-type) {
  margin-bottom: 8px;
}

.sqnum_wrap2 {
  counter-reset: number 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sqnum_wrap2>.sqnum_bx {
  width: calc((100% - 8px)/2);
}

.sqnum_ttl {
  position: relative;
  color: #EC8A3F;
  font-size: 2.0rem;
  font-weight: bold;
  padding-left: 80px;
  line-height: 1.5em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  min-height: 58px;
}

.business .sqnum_ttl {
  color: #2C6BC5;
}

.owner .sqnum_ttl {
  color: #00AFBC;
}

.partner .sqnum_ttl {
  color: #25B47E;
}

.sqnum_ttl::before {
  content: '';
  background-color: #EC8A3F;
  border-radius: 3px;
  width: 58px;
  height: 58px;
  position: absolute;
  left: 0;
}

.business .sqnum_ttl::before {
  background-color: #2C6BC5;
}

.owner .sqnum_ttl::before {
  background-color: #00AFBC;
}

.partner .sqnum_ttl::before {
  background-color: #25B47E;
}

.sqnum_ttl::after {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  font-family: montserrat, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sqnum_bx {
  position: relative;
  min-height: calc(58px + 25px*2);
  background-color: #fff;
  width: 100%;
}

.sqnum_bx::before {
  content: '';
  background-color: #EC8A3F;
  border-radius: 3px;
  width: 58px;
  height: 58px;
  position: absolute;
  left: 25px;
  top: 25px;
}

.business .sqnum_bx::before {
  background-color: #2C6BC5;
}

.owner .sqnum_bx::before {
  background-color: #00AFBC;
}

.partner .sqnum_bx::before {
  background-color: #25B47E;
}

.sqnum_bx::after {
  counter-increment: number 1;
  content: counter(number) " ";
  position: absolute;
  font-family: montserrat, sans-serif;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 25px;
  top: 25px;
}

.sqnum_bx_inner {
  padding: 25px 25px 25px 105px;
  position: relative;
}

.sqnum_bx_ttl {
  font-size: 2.0rem;
  color: #EC8A3F;
  font-weight: bold;
  margin-bottom: 10px;
}

.business .sqnum_bx_ttl {
  color: #2C6BC5;
}

.owner .sqnum_bx_ttl {
  color: #00AFBC;
}

.partner .sqnum_bx_ttl {
  color: #25B47E;
}

/*==================================================
$header
==================================================*/
.header {
  position: fixed;
  top: 33px;
  left: 0;
  width: 100%;
  line-height: 1em;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 5%);
  transition: .5s;
  height: 63px;
  display: flex;
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 98%;
}

.toppage_before .header {
  /* box-shadow: none;
  background-color: transparent; */
}

.header_logo {
  content: '';
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  height: 35px;
  width: 110px;
  transition: .5s;
}

@media (max-width: 1280px) {
  .header_logo {
    height: 40px;
    width: 10vw;
  }
}

.global_menu {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.menu>p, .menu>a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.01em;
  font-size: 1.6rem;
}

.parent_menu>p {
  padding: 20px 22px 20px 15px;
}

.parent_menu>p::after, .childmenu a::after {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #EC8A3F;
  border-right: 3px solid #EC8A3F;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 0;
  bottom: 0;
  right: 5px;
  transition: .3s;
  margin: auto;
}

.business.parent_menu>p::after, .business .childmenu a::after {
  border-top: 3px solid #2C6BC5;
  border-right: 3px solid #2C6BC5;
}

.owner.parent_menu>p::after, .owner .childmenu a::after {
  border-top: 3px solid #00AFBC;
  border-right: 3px solid #00AFBC;
}

.partner.parent_menu>p::after, .partner .childmenu a::after {
  border-top: 3px solid #25B47E;
  border-right: 3px solid #25B47E;
}

.childmenu a::after {
  transform: rotate(45deg);
}

.parent_menu>p:hover::after {
  top: 8px;
}

.childmenu_list a:hover::after {
  right: 2px;
}

@media (max-width: 1200px) {
  .menu>p, .menu>a {
    font-size: 1.2vw;
    padding: 20px 10px;
  }

  .parent_menu>p {
    padding: 20px 2vw 20px 1vw;
  }
}

.childmenu {
  opacity: 0;
  transition: .3s;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  width: 100%;
  left: 0;
  top: 96px;
  right: 0;
  pointer-events: none;
  background-color: #fff;
  z-index: 1;
  font-weight: bold;
  min-height: 230px;
}

.menu.active .childmenu {
  opacity: 1;
  pointer-events: auto;
}

.childmenu_list {
  padding: 10px 50px 30px;
  width: 70%;
}

.childmenu_list a {
  border-bottom: solid 1px #ECEAEA;
  padding: 20px 35px 20px 0;
  position: relative;
  display: inline-block;
  min-width: 25%;
  margin-right: 45px;
}

.childmenu_ttl {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.3rem;
  background-color: #EC8A3F;
  line-height: 1.5em;
  position: relative;
  background-blend-mode: multiply;
  background-size: cover;
  transition: .3s;
  padding: 0 50px;
}

.childmenu_ttl:hover {
  opacity: .7;
}

.childmenu_ttl::after {
  right: 30px !important;
}

.childmenu_ttl::before {
  content: '';
  background-color: #fff;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 20px;
  border-radius: 100px;
}

.childmenu_ttl span b {
  font-family: montserrat, sans-serif;
  font-size: 1.2rem;
  opacity: .6;
  display: block;
}

.business .childmenu_ttl {
  background-color: #2C6BC5;
  background-image: url(../img/top/for_business.png);
}

.owner .childmenu_ttl {
  background-color: #00AFBC;
  background-image: url(../img/top/for_owner.png);
}

.partner .childmenu_ttl {
  background-color: #25B47E;
  background-image: url(../img/top/for_members.png);
}

.burger {
  display: none;
}

.header_contact {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  border-radius: 100px;
  font-size: 1.4rem;
  padding: 0 20px;
}

.header_contact::after {
  content: '';
  background-image: url(../img/header_mail.svg);
  width: 12px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.header_contact {}

.header_contact span {
  position: relative;
}

.header_contact::before {
  background-image: linear-gradient(to right, #eb673f, #f9a463);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: .5s;
  width: 100%;
}

.header_contact:hover::before {
  opacity: 0;
}

@media (max-width: 1280px) {
  .header_contact {
    width: 4vw;
    height: 4vw;
    padding: 5px;
  }

  .header_contact span {
    display: none;
  }

  .header_contact::after {
    width: 1.5vw;
    height: 1.5vw;
  }
}

/*==================================================
$グローバルヘッダー
==================================================*/
/* 220314 */
.groupmenu {
	position: fixed;
	top: 0;
	left: 0;
	margin: auto;
	width: 100%;
	z-index: 101;
	background: #F2F2F2;
	height: 33px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
.groupmenu>span {
	max-height: 100%;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
}
.groupmenu>span::before {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: -5px;
	bottom: 0;
	right: 11px;
	margin: auto;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}
.groupmenu.open>span::before {
	transform: rotate(-45deg) scale(1,-1);
	top: 5px;
}
.groupmenu>span::after {
	content: '';
	width: 33px;
	height: 33px;
	background: rgba(65, 92, 84,.4);
	margin-left: 10px;
}
.groupmenu div {
	background: #F6F6F6;
	width: 100%;
	padding: 30px 0;
	text-align: center;
	position: fixed;
	top: 33px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
  height: 100%;
        overflow: scroll;
}
.groupmenu.open div {
	opacity: 1;
	pointer-events: auto;
}
.groupmenu div ul {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}
.groupmenu div ul li {
	width: 24%;
	max-width: 250px;
	margin: 0 1.3% 1.3% 0;
	position: relative;
}
.groupmenu div ul li:nth-child(4n) {
	margin: 0 0 1.3% 0;
}
.groupmenu div ul.banner li:after {
	content: '';
	width: 1px;
	height: 90%;
	border-right: 1px dotted #707070;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -3%;
	margin: auto;
}
.groupmenu div ul.banner li img {
	width: 80%;
	margin: auto;
	display: block;
}
.groupmenu div .close {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	color: #7A7A7A;
	padding: 0 0 0 30px;
	position: relative;
	cursor: pointer;
}
.groupmenu div .close span {
	display: inline-block;
}
.groupmenu div .close span::before,
.groupmenu div .close span::after {
	content: '';
	width: 20px;
	height: 1px;
	background: #7A7A7A;
	position: absolute;
	top: 3px;
	bottom: 0;
	left: 0;
	margin: auto;
	transform: rotate(45deg);
}
.groupmenu div .close span::after {
	transform: rotate(-45deg);
}

.groupmenu div ul.link li img,
.groupmenu div ul.banner li img{
    opacity: 1;
    transition: all 0.5s;
    max-width: 100%;
}

.groupmenu div ul li {
	box-shadow: 1px 1px 5px rgb(0 0 0 / 20%);
}
.groupmenu div ul li:hover {
	box-shadow: none;
	transition: .3s;
}

/*==================================================
$footer
==================================================*/
footer {
  background-color: #4A4949;
  color: #fff;
  padding: 75px 0 35px;
}

footer .inner {
  max-width: 95%;
}

.foot_sitemap {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.foot_sitemap_list {}

.foot_sitemap_list a {
  font-size: 1.2rem;
  opacity: .7;
  display: block;
  transition: .3s;
}

.foot_sitemap_list a.foot_sitemap_parent {
  font-size: 1.4rem;
  opacity: 1;
}

.foot_sitemap_list a:hover {
  opacity: .4 !important;
}

.foot_sitemap_parent+.foot_sitemap_parent {
  margin-top: 10px;
}

.foot_sitemap_list a.foot_sitemap_child {
  text-indent: 1em;
}

.foot_logo {
  margin-bottom: 20px;
  width: 138px;
}

.foot_btm {
  text-align: center;
}

.foot_copy {
  font-size: 1.2rem;
  font-family: montserrat, sans-serif;
  font-weight: bold;
}

.totop {
  position: fixed;
  bottom: 5vh;
  right: 5vw;
  background-color: rgba(236, 138, 63, 0.8);
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  z-index: 1;
}

.totop::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(-45deg);
  top: 30px;
  right: 0;
  left: 0;
  margin: auto;
}

.footer_contact {
  display: flex;
  flex-wrap: nowrap;
}

.footer_contact_contents {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(249, 164, 99);
  background: linear-gradient(90deg, rgba(249, 164, 99, 1) 0%, rgba(235, 103, 63, 1) 100%);
  color: #fff;
  text-align: center;
}

.footer_contact_business, .footer_contact_owner, .footer_contact_other {
  display: none;
}

.footer_contact_contents img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_contact_inner {}

.footer_contact_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.32em;
  margin-bottom: 25px;
}

.footer_contact_txt {
  margin-bottom: 25px;
}

.footer_contact_inner .white_btn {
  width: 254px;
  height: 54px;
}

.footer_contact_other .footer_contact_inner {
  width: 90%;
}

.footer_contact_other .footer_contact_inner>.flex-2 {
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.footer_contact_other .footer_contact_inner>.flex-2:not(:last-of-type) {
  border-bottom: solid 1px #fff;
}
.footer_contact_other .footer_contact_inner>.flex-2 .footer_contact_ttl {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.footer_contact_other .footer_contact_inner>.flex-2 .footer_contact_txt {
  margin-bottom: 0;
  font-size: 1.4rem;
}

@media screen and (min-width:1200px) {
  .footer_contact_contents {
    max-height: 500px;
  }
}

/*==================================================
$トップページ
==================================================*/
/*mv*/
.mv {
  background-image: url(../img/top/mv.jpg);
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 35px;
}

.mv .inner {
  height: 100%;
}

.mv::before {
  background-color: rgba(22, 159, 175, 0.23);
  background: -moz-linear-gradient(top, rgba(22, 159, 175, 0.23) 0%, rgba(255, 255, 255, 0.49) 100%);
  background: -webkit-linear-gradient(top, rgba(22, 159, 175, 0.23) 0%, rgba(255, 255, 255, 0.49) 100%);
  background: linear-gradient(to bottom, rgba(22, 159, 175, 0.23) 0%, rgba(255, 255, 255, 0.49) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3b169faf', endColorstr='#007db9e8', GradientType=0);
}

/* @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .mv {
    background-image: url(../img/top/mv@2x.png);
  }
} */

.mv_float {
  position: absolute;
  left: 0;
  /* Safari用 */
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  letter-spacing: 0.04em;
}

.mv_copy {
  font-size: 4.7rem;
  line-height: 1.45em;
  margin-bottom: 25px;
  font-weight: bold;
}

.mv_subcopy {
  font-size: 1.8rem;
  line-height: 1em;
  font-weight: bold;
}

/*top_cond_sec*/
.top_cond_sec {
  min-width: 900px;
  margin-bottom: 48px;
}

.top_cond_wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.top_cond_contents {
  position: relative;
  background-size: cover;
  padding: 70px 20px;
  width: calc(100vw/3);
  min-width: 300px;
  height: 385px;
}

.top_cond_ttlwrap {
  color: #fff;
  position: relative;
  text-align: center;
}

.top_cond_ttlwrap::after {
  content: '';
  background-color: #fff;
  width: 62px;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.top_cond_enttl {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: montserrat, sans-serif;
}

.top_cond_ttl {
  font-size: 3.0rem;
  font-weight: bold;
  padding-bottom: 20px;
}

.top_cond_bx {
  background-color: #fff;
  padding: 25px 35px calc(45px + 54px + 30px);
  position: absolute;
  top: 230px;
  left: 0;
  right: 0;
  margin: auto;
  width: 85%;
  box-shadow: 3px 6px 16px rgb(0 0 0 / 5%);
}

.top_cond_caption {}

.top_cond_btn {
  color: #fff;
  max-width: 232px;
  width: 90%;
  border-radius: 100px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: absolute;
  bottom: 45px;
  right: 0;
  left: 0;
}

.top_cond_btn::after {
  background-image: url(../img/plus_white.svg);
}

.top_cond_btn:hover::after {
  background-image: url(../img/arrow_white.svg);
}

.top_cond_business {
  background-image: url(../img/top/for_business.png);
}

.top_cond_business::before {
  background-color: rgba(44, 107, 197, 0.6);
}

.top_cond_business .top_cond_btn {
  background-color: #2C6BC5;
}

.top_cond_owner {
  background-image: url(../img/top/for_owner.png);
}

.top_cond_owner::before {
  background-color: rgba(0, 175, 188, 0.6);
}

.top_cond_owner .top_cond_btn {
  background-color: #00AFBC;
}

.top_cond_members {
  background-image: url(../img/top/for_members.png);
}

.top_cond_members::before {
  background-color: rgba(37, 180, 126, 0.6);
}

.top_cond_members .top_cond_btn {
  background-color: #25B47E;
}

/*top_event_sec*/
.top_event_sec {
  padding: 60px 0;
  background-image: url(../img/top/event.png);
}

.top_event_sec::before {
  background-color: rgba(219, 219, 219, 0.8);
}

.top_event_sec .top_sec_ttl_wrap {
  margin-bottom: 25px;
}

.top_event_sec .top_sec_ttl {
  font-size: 2.2rem;
  padding-bottom: 0;
}

.top_event_sec .top_sec_ttl::after {
  content: none;
}

.top_event_sec .sec_enttl {}

.top_event_sec .top_sec_ttl_wrap .white_btn {}

/*top_renace_sec*/
.top_renace_sec {
  padding-top: 90px;
}

/*top_news_sec*/
.top_news_sec , .top_press_sec {
  padding: 60px 0 0;
}

.top_news_sec .inner {border-top: dotted #ccc 3px;padding: 60px 0;}

.top_news_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.top_news_wrap .top_sec_ttl_wrap {
  display: initial;
  text-align: center;
  width: 25%;
}

.top_news_wrap .top_sec_ttl {
  margin-bottom: 35px;
}

.top_news_wrap .top_sec_ttl span {}

.top_news_wrap .top_sec_ttl_wrap .white_btn {}

.top_news_list {
    width: 70%;
}

.top_news_list .bb_list>* {
  align-items: center;
}

/*top_about_sec*/
.top_about_sec {
  background-image: url(../img/top/about.png);
  padding: 50px 0 70px;
}

.top_about_sec::before {
  background-color: rgba(255, 255, 255, 0.75);
}

.top_about_sec .top_sec_ttl {}

.top_about_sec .top_sec_ttl span {}

.top_about_sec .white_btn {}

/*top_products_sec*/
.top_products_sec {
  padding: 50px 0 70px;
}

/*top_works_sec*/
.top_works_sec {
  padding: 60px 0 !important;
}

.top_works_sec .top_sec_ttl_wrap {
  margin-bottom: 50px;
}

.top_works_sec .top_sec_ttl {
  text-align: left;
}

.top_works_sec .top_sec_ttl::after {
  right: initial;
}

.top_works_sec .top_sec_ttl span {}

.top_works_sec .top_sec_ttl_wrap .white_btn {}

.works_slider {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding-bottom: 30px;
}

.works_slider li.slick-slide {
  margin-right: 40px;
}

.works_slider .slick-dots {
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.works_slider .slick-dots li button:before {
  background-color: rgba(236, 138, 63, 0.4);
}

.works_slider .slick-dots li.slick-active button:before {
  background-color: #EC8A3F;
}

.works_slider .slick-prev, .works_slider .slick-next {
  background-image: url(../img/top/slider_arrow.svg);
  transform: none;
  border: none;
  background-repeat: no-repeat;
  width: 67px;
  height: 5px;
  top: auto;
  bottom: -15px;
  background-size: contain;
  right: 50%;
}

.works_slider .slick-next {}

.works_slider .slick-prev {
  transform: scale(-1, 1);
  left: 50%;
}

/*==================================================
$下層　共通
==================================================*/
.page_mv {
  margin: 55px 0;
}

.page_mv+.bg_gray {}

.page_mv_ttl {
  font-size: 3.6rem;
}

.intro_main_letter {
  text-align: center;
  margin: 0 auto 35px;
  font-size: 2.4rem;
  font-weight: bold;
}

.intro_letter {
  max-width: 760px;
  margin: 0 auto 35px;
  line-height: 2;
}

.page_mv+.intro_main_letter+.intro_letter {
  margin: 0 auto 55px;
}

.sec_ttl {
  color: #EC8A3F;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5em;
}

.business .sec_ttl {
  color: #2C6BC5;
}

.owner .sec_ttl {
  color: #00AFBC;
}

.partner .sec_ttl {
  color: #25B47E;
}

.sec_subttl {
  margin-bottom: 15px;
  font-size: 2.0rem;
  font-weight: bold;
}

.sec_numttl {
  font-family: montserrat, sans-serif;
  font-weight: bold;
  font-size: 6.0rem;
  text-align: center;
  color: #EC8A3F;
}

.business .sec_numttl {
  color: #2C6BC5;
}

.owner .sec_numttl {
  color: #00AFBC;
}

.partner .sec_numttl {
  color: #25B47E;
}

.full_img {
  height: 450px;
  width: 100%;
  object-fit: cover;
}

.page_anchor_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.page_anchor_wrap a {
  width: calc((100% - 30px * 2) / 3);
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
}

.page_anchor_wrap a::before {
  content: '';
  background-color: #8E8E8E;
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 100px;
  right: 0;
}

.page_anchor_wrap a::after {
  content: '';
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 11px;
  right: 8px;
  transition: .3s;
  margin: auto;
}

.page_anchor_wrap a:hover::after {
  top: 15px;
}

.pankuzu {
  position: absolute;
  top: calc(96px + 8px);
  right: 0;
  left: 0;
  margin: auto;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  color: #8E8E8E;
  width: 90%;
  justify-content: flex-end;
  max-width: 1080px;
  min-width: 900px;
}

.pankuzu>* {
  display: contents;
}

.pankuzu>*:not(:last-child)::after {
  content: '＞';
  margin: 0 10px;
}

.pankuzu>*:last-child {
  pointer-events: none;
  color: #000;
}

.incomp_full_img {
  height: 455px;
  max-width: 900px;
  width: 90%;
  object-fit: cover;
  margin: auto;
  display: block;
}

.pager {

}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: montserrat, sans-serif;
  font-weight: bold;
  margin-top: 100px;
}

.wp-pagenavi a , .wp-pagenavi span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #616161;
}

.wp-pagenavi a.current , .wp-pagenavi span.current {
  background-color: #616161;
  color: #fff;
}

.result_txt {
  font-weight: bold;
  font-size: 2.0rem;
  text-align: center;
  padding-top: 130px;
  position: relative;
}

.result_txt::before {
  content: '';
  background-image: url(../img/result_orange.svg);
  width: 120px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  margin: auto;
}

.business .result_txt::before {
  background-image: url(../img/result_business.svg);
}

.owner .result_txt::before {
  background-image: url(../img/result_owner.svg);
}

.partner .result_txt::before {
  background-image: url(../img/result_partner.svg);
}

/*画像拡大*/
/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%);
  width: 70%;
  background-color: #fff;
  padding: 50px;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.openModal>img {
  width: 100%;
}

.openModal {
  border: none;
  background-color: transparent;
  display: block;
  margin: auto;
}

/*==================================================
$加盟店募集
==================================================*/
.offer_support_contents {
  background-color: #FFFFFF;
  padding: 35px;
}

.offer_support_catch {
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.56em;
}

.offer_support_caption {
  color: #8E8E8E;
  font-size: 1.3rem;
}

.offer_support_caption b {
  white-space: nowrap;
}

.offer_support_caption b:not(:last-of-type)::after {
  content: '／';
}

.offer_tools_img img {
  object-fit: contain;
  width: 100%;
  height: 208px;
  margin-bottom: 15px;
}

.offer_tools_ttl {
  color: #2C6BC5;
  font-weight: bold;
  font-size: 2.0rem;
  line-height: 1.5em;
}

.offer_tools_caption {
  color: #8E8E8E;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.offer_tools_txt {
  font-size: 1.4rem;
}

/*==================================================
$アクセス
==================================================*/
.access_map {
  width: 100%;
  height: 550px;
  margin-bottom: 60px;
}

/*==================================================
$過去のセミナー動画
==================================================*/
.js-modal-video {
  margin-bottom: 5px;
  cursor: pointer;
}

.js-modal-video iframe {
  pointer-events: none;
  width: 100%;
  height: 200px;
}

/*==================================================
$資料ダウンロード
==================================================*/
.data.contents .flex-3>div {
  text-align: center;
}

/*==================================================
$加盟店一覧
==================================================*/
.partner_ul li p:first-of-type {
  width: 25%;
    font-weight: bold;
}

.partner_ul li p:nth-of-type(2) {
  width: 35%;
}

.partner_ul li p:nth-of-type(n+3) {
  width: 20%;
}

.partner_ul li p a {
  text-decoration: underline;
}

/*==================================================
$知ってほしい・基礎知識
==================================================*/
.knowledge .stick_btn:not(:last-of-type),
.knowhow .stick_btn:not(:last-of-type) {
  margin-bottom: 20px;
}

/*==================================================
$フランチャイズ事業
==================================================*/
.fc_map {
  max-width: 545px;
  margin: auto;
  display: block;
}

.fc_intro_emp {
  font-size: 2.0rem;
  font-weight: bold;
  color: #EC8A3F;
}

/*==================================================
$施工実績
==================================================*/
.works_summary_sec {
  padding-bottom: calc(90px + 72px);
}

.works_summary_sec .inner {
  position: relative;
  height: 100%;
}

.works_summary_img {
  width: 80%;
  margin-left: 20%;
}

.works_summary_img img {
  width: 100%;
  height: 648px;
  object-fit: cover;
}

.works_summary_txt {
  box-shadow: 20px 16px 30px rgba(0, 0, 0, 0.1);
  width: 580px;
  padding: 55px;
  position: absolute;
  bottom: -72px;
  left: 0;
  background-color: #fff;
}

.works_summary_ttl {
  font-weight: bold;
  font-size: 2.0rem;
  margin-bottom: 10px;
}

.works_summary_tbl {}

.works_summary_tbl tr {
  display: flex;
  flex-wrap: nowrap;
}

.works_summary_tbl tr td:first-of-type {
  color: #EC8A3F;
  font-weight: bold;
  width: 88px;
  display: flex;
  justify-content: space-between;
}

.works_summary_tbl tr td:first-of-type::after {
  content: '｜';
}

.works_summary_tbl tr td:nth-of-type(2) {
  width: calc(100% - 88px);
}

.works_image_img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/*==================================================
$加盟店インタビュー
==================================================*/
.interview_img {
  height: 385px;
  object-fit: contain;
}

.interview_img + .interviewee {
margin-left: -200px;
margin-top: -45px;
}

.interviewee {
  background-color: #fff;
  width: 570px;
  padding: 32px 45px;
  box-shadow: 20px 16px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  position: relative;
  font-weight: bold;
  margin: auto;
}

.business .interviewee_inner {
  border-left: solid 2px #2C6BC5;
  padding-left: 25px;
}

.owner .interviewee_inner {
  border-left: solid 2px #00AFBC;
  padding-left: 25px;
}

.interviewee_position {
  font-size: 1.4rem;
  color: #8E8E8E;
}

.interviewee_name {
  font-size: 2.4rem;
}

.interviewer {
  border-bottom: solid 1px #D9DCDE;
  padding: 40px 0;
}

.interviewer_name {
  font-size: 1.4rem;
  color: #8E8E8E;
  margin-bottom: 10px;
  display: block;
  font-weight: bold;
}

.interview_q {
  color: #2C6BC5;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.interview_a {
    margin-top: 40px;
}

.interview_a_name {
  display: block;
  font-weight: bold;
}

/*==================================================
$プロモーションツール
==================================================*/
.incomp_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.incomp_img {
  width: 30%;
}

.incomp_img img {}

.incomp_txt {
  width: 66%;
}

.incomp_sub_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}

/*==================================================
$イベント・セミナー　詳細
==================================================*/
.event_ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 60px;
  padding-bottom: 20px;
}

.business .event_ttl {
  border-bottom: dotted 2px #2C6BC5;
}

.owner .event_ttl {
  border-bottom: dotted 2px #00AFBC;
}

.partner .event_ttl {
  border-bottom: dotted 2px #25B47E;
}

.event_inner .flex-2>div:nth-of-type(2) img {
  width: 100%;
}

/*==================================================
$実験データ
==================================================*/
.report_tbl tr td:last-of-type {
  width: 70px;
  padding: 10px;
  vertical-align: middle;
  text-align: center;
}

.report_tbl tr td:nth-last-child(2) {
  max-width: 680px;
}

/*==================================================
$高い入居率
==================================================*/
.oc_tbl {
  font-size: 1.4rem;
}

.oc_tbl tr {}

.oc_tbl tr td {
  border: solid 1px #707070;
  text-align: center;
  padding: 10px 0;
  vertical-align: middle;
  width: 158px;
}

.oc_tbl tr td.oc_light {
  background-color: #E5F7F8;
}

.oc_tbl tr td.oc_base {
  background-color: #00AFBC;
  color: #fff;
  font-weight: bold;
  width: 165px;
}

.oc_tbl tr td.oc_gray {
  background-color: #E5DBD3;
}

.oc_tbl tr td.oc_black {
  background-color: #616161;
  color: #fff;
  font-weight: bold;
}

.circle01_wrap {
  position: relative;
  height: calc(320px + 60px);
  padding: 30px 0;
}

.circle01 {
  position: absolute;
  width: 320px;
  float: right;
  left: 50%;
  -webkit-transform: translate(-50%);
  /* Safari用 */
  transform: translate(-50%);
}

.circle01_ttl {
  position: absolute;
  left: -80%;
  bottom: 0;
  top: 45%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  height: 2em;
  border-bottom: solid 2px #707070;
  line-height: 2em;
  padding-bottom: 15px;
}

.circle01 img {}

.circle01_data {
  position: absolute;
  font-size: 7.0rem;
  font-weight: bold;
  color: #00AFBC;
  /* Safari用 */
  width: 100%;
  text-align: center;
  /* Safari用 */
  margin: auto;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  line-height: 1em;
}

.oc_tbl .area {
  position: relative;
}

.oc_tbl .area::before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 100%;
  left: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.oc_tbl.touhoku .area::before {background-color: #A7DBAD;}

.oc_tbl.kyusyu .area::before {background-color: #FBD1B1;}

.oc_tbl.cyugoku .area::before {background-color: #FBB1C4;}

.oc_tbl.kinki .area::before {background-color: #E3B1FB;}

.oc_tbl.toukai .area::before {background-color: #F6F032;}

.oc_tbl.kantou .area::before {background-color: #B1CCFB;}

.oc_tbl.touhoku {
  position: absolute;
  bottom: 265px;
  right: 21px;
  width: calc((100% - 20px * 6)/5);
}

.floor_plan_wage {
  width: 98%;
}

.floor_plan_wage.oc_tbl tr td:not(.oc_black) {
      width: 125px;
}

/*==================================================
$プレスリリース
==================================================*/
.press_list p:first-of-type {
  width: 10%;
}

.pless_release .press_list p:nth-of-type(2) {
  width: 75%;
}

.pless_release .press_list p:nth-of-type(3) {
  width: 15%;
}

/*==================================================
$お問い合わせ
==================================================*/
.form_sec input:not([type="radio"]):not([type="checkbox"]) {
  border: none;
  height: 45px;
  display: flex;
  font-size: 1.6rem;
  padding: 10px;
  width: 100% !important;
}

.form_sec textarea {
  width: 100% !important;
  height: 200px !important;
}

.mfp_rows {
  display: flex;
  gap: 20px;
}

span.require {
  color: #EC8A3F;
  border: solid 1px #EC8A3F;
  padding: 3px 8px;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #fff;
  line-height: 1em;
  margin-left: 10px;
}

.mailform table {
  width: 100%;
}

.mailform tr {
  display: flex;
  margin-bottom: 20px;
}

.mailform tr th, .mailform tr td {}

.mailform tr th {
  display: flex;
  align-items: center;
  width: 25%;
}

.mailform tr td {
  width: 70%;
}

.form_option_inner {
  max-width: 900px;
  margin: auto;
}

.form_option_ttl {
  border: solid 1px #707070;
  text-align: center;
  padding: 15px;
  margin-bottom: 50px;
}

/*==================================================
$サイトマップ
==================================================*/
.sitemap {
}
.sitemap_list {margin-bottom: 30px;}
.sitemap_list a {display: block;padding: 10px 0;position: relative;}
.sitemap_list a::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background-image: url(../img/v_gray.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  right: 0;
  top: 0;
  bottom: 0;
}
.sitemap_list a.sitemap_parent {border-bottom: solid 1px #EC8A3F;padding-bottom: 10px;margin-bottom: 20px;font-weight: bold;font-size: 2.0rem;}
.sitemap_list a.sitemap_parent::after {
  width: 15px;
  height: 9px;
  background-image: url(../img/v_orange.svg);
  transform: rotate(-90deg);
}

/*==================================================
$グループ企業
==================================================*/
.incomp_img figure {
  border: 2px solid #ccc;
  padding: 30px 20px;
}

.incomp_txt .txt {
  margin-bottom: 20px;
}

.incomp_txt .add_box {
  margin-top: 40px;
}

.group .incomp_txt .white_btn:first-of-type {
  margin-right: 10px;
}

/*==================================================
$プライバシーポリシー
==================================================*/
.privacy_policy main>section section:not(:last-of-type) {
  margin-bottom: 50px;
}

/*==================================================
$デベロッパーの方へページ
==================================================*/

.dp-mv{
  background-size: cover;
  width: 100vw;
}

.flex{
  display: flex;
  justify-content: space-between;
  padding: 40px 35px;
  flex-wrap: nowrap;
  gap: 35px;
  align-items: stretch;
}

.not-last{
  padding-bottom: 0px !important;
}

.gray{
  background-color: #F6F6F6;
}
.gray span{
  font-size: 2.0rem;
  font-weight: bold;
}

.sub-title{
    font-weight: bold !important;
    font-size: 32px;
    text-align: center;
    color: #2C6BC5;
    padding-top: 50px;
    padding-bottom: 30px;
}

.sub-title h2{
  font-weight: bold !important;
}

.blue_check_box{
  border: solid 3px #2C6BC5;
  max-width: 1080px;
  padding: 40px 80px;
  margin: 10px auto 90px auto;
}

.blue_check_box ul{
  font-size: 25px;
  font-weight: bold;
}

.blue_check_box li{
  font-size: 23px;
  color: #2C6BC5;
  margin-top: 10px;
  margin-bottom: 10px;
}

.blue_check_box img{
  margin-right: 20px;
}

.blue-letter{
  background-color: #2C6BC5;
  color: white;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  padding-top:25px;
  padding-bottom: 25px;
}

.blue-box-list{
  background-color: #2C6BC5;
  color: white;
  border-radius: 3px;
  padding: 10px 20px
}

.blue-sub-title{
  font-size: 22px !important;
  color: #2C6BC5;
}

.allow-area{
  text-align: center;
  margin: 90px 0 50px 0;
}

.letter-area{
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  padding-bottom: 100px;
}

.yellow-line{
  font-size: 30px !important;
  background:linear-gradient(transparent 60%, #ff6 60%);
}

.renace-method{
  display: flex;
  justify-content: space-between;
  padding: 40px 35px;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 35px;
}

.renace-method img{
  width: 50%;
  vertical-align: bottom;
}

.renace-method div{
  width: 50%;
  align-items: flex-start;
}

.renace-letter{
  color: #A48B78;
}

.orange-title{
  font-size: 26px;
  background-color: #F9C170;
  padding: 10px 20px 10px 20px;
  width: 80% !important;
  margin-bottom: 20px;
  font-weight: bold;
}

.blue-title{
  font-size: 26px;
  background-color: #87ABDA;
  padding: 10px 20px 10px 20px;
  width: 80% !important;
  margin-bottom: 30px;
  margin-top: 30px;
  font-weight: bold;
}

.benefit-card{
  width: 50%;
  padding: 30px;
  background-color: #fff;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.05);
}

.benefit-card img{
  text-align: center;
}

.benefit-title{
  font-size: 25px;
  color: #169FAF;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 30px;
}

.renace-archive{
  border-left: 2px solid #EC8A3F;
}

.renace-archive img{
  margin-bottom: 20px;
  width: 70%;
}

.benefit-letter{
  font-size: 20px;
  color: #EC8A3F;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 30px;
}

.archive-child{
  background-color: #EC8A3F;
  color: white;
  border-radius: 15px;
  padding: 2px 10px;
  margin-top: 20px;
  margin-right: 10px;
  margin-bottom: 30px;
}

.archive-build{
  font-weight: bold;
  font-size: 25px;
}

.renace-youtube{
  height: 600px;
}
.pt90{
  padding-top:90px !important;
}

/* 241211追加 */

.floating-banner {
  position: fixed;
  bottom: 6vh;
  right: 220px;
  background-color: #C2272D;
  color: #ffffff;
  padding: 25px 30px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index:20000;
}

.floating-banner:hover {
  transform: scale(1.05);
  opacity: 0.9;
}