@charset "utf-8";

html {
  font-size: 62.5%;
}

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

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

.nosp {
  display: none !important;
}

img {
  max-width: 100%;
}

.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
  }
}

/*==================================================
$共通
==================================================*/

.contents {
  padding-top: 86.6875px;
}

/*ボタン*/
.fill_btn {
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 0;
	color: #fff;
	background-color: #15BC4D;
}

/*リスト*/
.bullet_list li {
}

.bullet_list li::before {
  content: '・';
}

.number_list {
  padding-left: 1.5em;
}

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

/*テーブル横スクロール*/
.scroll_tbl {
  overflow-x: scroll;
}

.scroll_tbl>* {
  width: 600px;
}

.scroll_tbl::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
}

.scroll_tbl::-webkit-scrollbar {
  height: 8px;
  /* スクロールバーの高さ */
}

.scroll_tbl::-webkit-scrollbar-thumb {
  background: #999;
  /* ツマミの色 */
  border-radius: 100px;
  /* ツマミ両端の丸み */
}

.scroll_tbl::-webkit-scrollbar-track {
  background: #ccc;
  /* トラックの色 */
  border-radius: 100px;
  /* トラック両端の丸み */
}

/* スクロール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);
}

/*==================================================
$header
==================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  padding: 10px 0;
  line-height: 1em;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0px 3px 16px rgb(0 0 0 / 5%);
  height: 60px;
}

.header_logo {
  content: '';
  background-image: url(../img/logo.svg);
  background-size: cover;
  display: block;
  width: 110px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}

.toppage .header.change .header_logo {
  background-image: url(../img/logo_change.svg);
}

.global_menu_wrap {
  width: 90%;
}

.global_menu {
  /* height: calc(100vh - 100px); */
  overflow-y: scroll;
}

.menu:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}

.menu>p, .menu>a {
  display: block;
  width: 100%;
  padding: 20px;
  position: relative;
}

.parent_menu>p::after {
  position: absolute;
  content: '';
  width: 5px;
  height: 5px;
  border-top: 2px solid #EC8A3F;
  border-right: 2px solid #EC8A3F;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 20px;
}

.business.parent_menu>p::after {
  border-top: 2px solid #2C6BC5;
  border-right: 2px solid #2C6BC5;
}
.partner.parent_menu>p::after {
  border-top: 2px solid #00AFBC;
  border-right: 2px solid #00AFBC;
}
.owner.parent_menu>p::after {
  border-top: 2px solid #25B47E;
  border-right: 2px solid #25B47E;
}

.childmenu {
  display: none;
  width: 100%;
  pointer-events: none;
  background-color: #fff;
  padding: 0 20px 20px;
}

.childmenu.open {
  display: block;
  pointer-events: auto;
}

.childmenu_list {}

.childmenu_list {
  break-inside: avoid;
}

.childmenu_list a , .childmenu_ttl {
  padding: 15px 0;
  display: block;
}

.global_menu_wrap {
  position: fixed;
  top: 60px;
  right: 0;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
  overflow-y: scroll;
}

.header_contact {
display: flex;
width: 40px;
height: 40px;
border-radius: 100px;
align-items: center;
justify-content: center;
position: absolute !important;
top: 0;
right: 50px;
}

.header_contact span {
  display: none;
}

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

/* アニメーション後のメニューの状態 */
.global_menu_wrap.is-active {
  pointer-events: auto;
  opacity: 1;
  z-index: 10;
}

/*ハンバーガー*/
.burger,
.burger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.burger {
  width: 25px;
  height: 20px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  margin: auto;
  cursor: pointer;
  z-index: 100;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #EC8A3F;
  border-radius: 4px;
}

.burger span:nth-of-type(1) {
  top: 0;
}

.burger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.burger span:nth-of-type(3) {
  bottom: 0;
}

.burger.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}

.burger.is-active span:nth-of-type(2) {
  opacity: 0;
}

.burger.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

/*==================================================
$グローバルメニュー
==================================================*/
/* 220315 */
.groupmenu {
	margin: 20px auto 100px;
	width: 96%;
	order: 4;
	background: #F2F2F2;
}
.groupmenu>span {
	max-height: 100%;
	position: relative;
	padding: 10px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.groupmenu>span::before {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: -5px;
	bottom: 0;
	right: 9px;
	margin: auto;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	z-index: 2;
}
.groupmenu.open>span::before {
	transform: rotate(-45deg) scale(1,-1);
	top: 5px;
}
.groupmenu>span::after {
	content: '';
	width: 30px;
	height: 100%;
	background: rgba(65, 92, 84,.4);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
.groupmenu div {
	display: none;
}
.groupmenu div ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	padding: 3%;
	box-sizing: border-box;
}
.groupmenu div ul li {
	width: 49%;
	margin: 0 0 2% 0;
	position: relative;
}
.groupmenu div ul.banner li:not(:nth-child(2n)):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 {
	display: none;
}

.groupmenu img{
    opacity: 1;
    transition: all 0.5s;
    max-width: 100%;
		width: auto;
}

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


/*ここから*/
/*==================================================
$共通
==================================================*/
.inner {
  margin: auto;
  width: 90%;
  position: relative;
}

.s_inner {
  margin: auto;
  width: 90%;
}

.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
  }
}

.sp_center {
  text-align: center;
}

.link_disable {
  cursor: default;
}

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

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

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

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

.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: bold;
  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 50px;
}

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

.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: 50px 0 !important;
}

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

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

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

.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;
  border: solid 1px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.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: 12px;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.tab_btn_wrap a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #EC8A3F;
  border-radius: 7px;
  padding: 15px 5px;
  font-weight: bold;
  color: #EC8A3F;
  position: relative;
  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.current {
  color: #fff;
  background-color: #EC8A3F;
  pointer-events: none;
}

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

.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%;
}

/*タイトル*/
.top_sec_ttl, .page_mv_ttl {
  font-weight: bold;
  font-size: 2.0rem;
  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: 15px;
  align-items: center;
  justify-content: space-evenly;
}

.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::after {
  content: '';
  width: 12px;
  height: 12px;
  transform: rotateZ(0deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.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;
  width: 100%;
}

.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;
}

.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;
}

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

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

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

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

.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 45px 15px 15px;
  font-weight: bold;
  line-height: 1.5em;
  background-color: #fff;
}

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

.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;
  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);
}

/*リスト*/
.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>* {
  border-bottom: solid 1px #EEEEEE;
  padding-bottom: 20px;
  margin-bottom: 20px;
  display: block;
  position: relative;
}

.bb_list_lbl {
  color: #fff;
  font-weight: bold;
  border-radius: 100px;
  font-size: 1.1rem;
  padding: 1px 8px;
  position: absolute;
  top: 0;
  left: 95px;
}

.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 {
}

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

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

.check_list li::before {
  background-color: #EC8A3F;
  width: 30px;
  height: 30px;
  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;
  width: 100%;
}

.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: 15px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: contain;
  left: 20px;
}

/*テーブル*/
.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: 10px;
}

.gap_tbl tr td:first-of-type {
  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: 20px;
}

.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;
}

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

.sp-flex-2>* {
  width: calc((100% - 20px) / 2);
  margin-bottom: 0 !important;
}

.flex-nowrap , .flex-2>*:not(:last-of-type) , .flex-3>*:not(:last-of-type) , .flex-4>*:not(:last-of-type) {margin-bottom: 30px;display: block;}

.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: 35px;
  display: inline-flex;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  padding: 0 28px 0 35px;
}

.ribbon_num::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 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: -20px auto 20px;
  height: 65px;
}

.flex-bx, .flex-bx-ls {
  background-color: #fff;
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 7%;
}

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

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

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

.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 {
  margin-bottom: 55px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 20px;
}

.cond_main_txt {
  position: relative;
  z-index: 1;
  width: 100%;
}

.cond_main_txt .cond_ttl {
  font-size: 2.6rem;
  text-align: center;
}

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

.cond_letter {
  margin: 10px 0;
}

.cond_main_img {width: 100%;}

.cond_sub {
}

.cond_sub_contents {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  display: block;
}

.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_main .white_btn , .cond_sub .white_btn {
  width: 182px;
  display: flex;
  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;
  display: block;
}

.cond_shadow_txt {
  padding: 10px 25px 50px 25px;
}

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

.cond_shadow_detail {
  position: absolute;
  bottom: 10px;
  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;
  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: 95%;
  text-align: center;
  background-color: rgba(0,0,0,0.05);
  margin-left: 5%;
}

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

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

.thumb_list_img {
  height: 235px;
  overflow: hidden;
  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;
}

.sqnum_wrap2>.sqnum_bx {margin-bottom: 10px;}

.sqnum_ttl {
  position: relative;
  color: #EC8A3F;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 58px;
  line-height: 1.5em;
  margin-bottom: 5px;
  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: 40px;
  height: 40px;
  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: 1.8rem;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.sqnum_bx {
  position: relative;
  background-color: #fff;
}

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

.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: 1.+rem;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 15px;
  top: 15px;
}

.sqnum_bx_inner {
  padding: 15px 25px 20px 65px;
  position: relative;
}

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

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

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

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


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

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

.foot_sitemap {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.foot_sitemap_list {
    width: calc((100% - 25px)/2);
}

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

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

.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: 7vw;
  background-color: rgba(236, 138, 63, 0.8);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  font-size: 1.2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  z-index: 1;
}

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

.footer_contact {
}

.footer_contact_contents {
  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: 170px;
  object-fit: cover;
}

.footer_contact_inner {
    padding: 30px 0;
}

.footer_contact_ttl {
  font-size: 2.0rem;
  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>.flex-2 {
  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;
}

/*==================================================
$トップページ
==================================================*/
/*mv*/
.mv {
  background-image: url(../img/top/mv.jpg);
  height: 70vh;
  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);
  z-index: 1;
  background: rgba(255,255,255,0.5);
}

/* @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;
  z-index: 2;
}

.mv_copy {
  font-size: 6vw;
  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_contents {
  position: relative;
  background-size: cover;
  padding: 35px 20px;
}

.top_cond_ttlwrap {
  color: #fff;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.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: 20px 25px;
  margin: auto;
  width: 98%;
  position: relative;
  box-shadow: 3px 6px 16px rgb(0 0 0 / 5%);
}

.top_cond_caption {
    margin-bottom: 15px;
}

.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;
}

.top_cond_btn::after {
  background-image: url(../img/plus_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);
  background-size: cover;
}

.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_press_sec {
  padding: 60px 0 30px;
}
.top_news_sec {
  padding-bottom: 60px;
}

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

.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 {
    margin: 0 auto 30px;
    display: block;
    width: 190px;
}

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

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

.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: 35px 0 50px;
}

/*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: auto;
  width: 90%;
  padding-bottom: 30px;
}

.works_slider li.slick-slide {
}

.works_slider .slick-dots {
}

.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: 2.6rem;
}

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

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

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

.sec_ttl {
  color: #EC8A3F;
  font-weight: bold;
  font-size: 2.0rem;
  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: 4.0rem;
  text-align: center;
  color: #EC8A3F;
}

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

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

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

.full_img {
  height: 200px;
  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;
  margin: auto;
}
.pankuzu {
  position: absolute;
  top: calc(70px + 8px);
  right: 0;
  left: 0;
  margin: auto;
  font-size: 1.1rem;
  align-items: center;
  color: #8E8E8E;
  width: 90%;
  justify-content: flex-end;
}

.pankuzu>* {
  display: contents;
}

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

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

.incomp_full_img {
  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>* {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #616161;
}

.wp-pagenavi>*.current {
  background-color: #616161;
  color: #fff;
}

.result_txt {
  font-weight: bold;
  font-size: 2.0rem;
  text-align: center;
  padding-top: 130px;
  position: relative;
  max-width: 90%;
  margin: auto;
}

.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: 90%;
  background-color: #fff;
  padding: 50px 20px;
  overflow: scroll;
}

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

.openModal>img {
  width: 100%;
}

.modalContents {
  width: 500px;
}

/* 以下ボタンスタイル */
.openModal {
  border: none;
  background-color: transparent;
  display: block;
  margin: auto;
  position: relative;
  padding-bottom: 2em;
}

.openModal::before {
  content: '＋タップして拡大';
  position: absolute;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,0.8);
  font-weight: bold;
  bottom: 0;
  right: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/*==================================================
$加盟店募集
==================================================*/
.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 {
    font-weight: bold;
}

.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 {
  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 {
}

.works_summary_img img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.works_summary_txt {
  box-shadow: 20px 16px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
  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: 150px;
  object-fit: cover;
}

/*==================================================
$加盟店インタビュー
==================================================*/
.interview_img {
  height: 250px;
  margin-bottom: 10px;
}

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

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

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

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

.interviewee_name {
  font-size: 2.0rem;
}

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

.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 {}

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

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

.incomp_img {
    margin-bottom: 10px;
}

.incomp_img img {
    width: 100%;
}

.incomp_txt {
}

.incomp_sub_ttl {
  font-weight: bold;
  margin: 5px 0 15px;
  font-size: 1.6rem;
}

/*==================================================
$イベント・セミナー　詳細
==================================================*/
.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;
  width: 100%;
  display: table !important;
}

.oc_tbl tr {}

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

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

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

.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 {


  /* Safari用 */
}

.circle01_ttl {

  /* Safari用 */

border-bottom: solid 2px #707070;

margin-bottom: 30px;

font-size: 1.6rem;

padding-bottom: 10px;
}

.circle01 img {
    width: 80%;
    display: block;
    margin: auto;
}

.circle01_data {
  position: absolute;
  font-size: 5rem;
  font-weight: bold;
  color: #00AFBC;
  /* Safari用 */
  width: 100%;
  text-align: center;
  /* Safari用 */
  margin: auto;
  top: 57%;
  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;}

.sp_replace_tbl {
    -ms-writing-mode : tb-lr;
    writing-mode : vertical-lr;
}
.sp_replace_tbl th {
    -ms-writing-mode : lr-tb;
    writing-mode : horizontal-tb;
}
.sp_replace_tbl td {
    -ms-writing-mode : lr-tb;
    writing-mode : horizontal-tb;
}

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

.press_list p:nth-of-type(2) {
}

.press_list p:nth-of-type(3) {text-align: right;}

/*==================================================
$お問い合わせ
==================================================*/
.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;
}
/*==================================================
$デベロッパーの方へページ
==================================================*/

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

.flex{
  display: block;
}

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

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

.sub-title{
    font-weight: bold !important;
    font-size: 23px;
    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: 20px 20px;
    margin: 10px auto 90px auto;
}

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

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

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

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

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

.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: 20px;
  padding-bottom: 100px;
}

.letter-area .yellow-line{
  font-size: 25px !important;
}

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

.renace-method{
  display: bloc;

}

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

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

.renace-letter{
  color: #A48B78;
}

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

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

.benefit-card{
  width: 100%;
  padding: 30px;
  margin-bottom: 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;
}

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

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

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

.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: 250px;
}

/* 241211追加 */

.floating-banner {
  position: fixed;
  bottom: 6vh;
  left: 7vw;
  background-color: #C2272D;
  color: #ffffff;
  padding: 15px 16px;
  font-size: 18px;
  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;
}