@charset "UTF-8";
/*-------------------------------
色設定
-------------------------------*/
/*-------------------------------
文字太さ設定
-------------------------------*/
/*-------------------------------
mixin
-------------------------------*/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); /* 開始時はマイナス指定 */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 終了時の位置をデフォルトに */
  }
}
.fade {
  opacity: 0;
  transform: translateY(20px);
}
.fade.-in {
  animation: fadeIn 0.5s ease-out forwards;
  animation-fill-mode: both;
}

.fadeChild {
  opacity: 0;
  transform: translateY(20px);
}
.fadeChild.-in {
  animation: fadeIn 0.5s ease-out forwards;
  animation-fill-mode: both;
}

/*-------------------------------
全体設定
-------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  background-color: #fff;
  color: #1c2420;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
body.-active {
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  opacity: 0.6;
}

.container {
  width: 100%;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

/*-------------------------------
Utility
-------------------------------*/
.u-mtA {
  margin-top: auto !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mb80-40 {
  margin-bottom: 80px !important;
}
@media (max-width: 767px) {
  .u-mb80-40 {
    margin-bottom: 40px !important;
  }
}

.u-mb60-30 {
  margin-bottom: 60px !important;
}
@media (max-width: 767px) {
  .u-mb60-30 {
    margin-bottom: 30px !important;
  }
}

.u-wbr {
  word-break: keep-all;
}

.u-textLink {
  text-decoration: underline;
  word-break: break-all;
}

.u-pc {
  display: inline-block;
}
@media (max-width: 1024px) {
  .u-pc {
    display: none;
  }
}

.u-pcTab {
  display: none;
}
@media (min-width: 768px) {
  .u-pcTab {
    display: inline-block;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 767px) {
  .u-sp {
    display: inline-block;
  }
}

/*-------------------------------
ヘッダー
-------------------------------*/
.header {
  height: 82px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 767px) {
  .header {
    height: 50px;
  }
}

.headerLogo {
  position: absolute;
  top: 10px;
  left: 10px;
}
@media (max-width: 767px) {
  .headerLogo {
    top: 5px;
  }
}
.headerLogo_link {
  max-width: 240px;
  display: block;
}
@media (max-width: 767px) {
  .headerLogo_link {
    max-width: 100px;
  }
}

.headerNavWrap {
  position: absolute;
  top: 0;
  right: 0;
  border-bottom-left-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .headerNavWrap {
    height: 100%;
    width: 80%;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 8;
    padding: 70px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border-bottom-left-radius: 0;
    box-shadow: none;
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .headerNavWrap.-on {
    right: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
}

.headNav {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
@media (max-width: 767px) {
  .headNav {
    display: block;
    margin-bottom: 20px;
    border: 3px solid #81af2f;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.headNav_item {
  margin: 5px 0;
  padding: 5px 20px;
}
.headNav_item:not(:last-child) {
  border-right: 1px solid #eaeaea;
}
@media (max-width: 767px) {
  .headNav_item {
    margin: 0;
    padding: 20px;
  }
  .headNav_item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
}
.headNav_link {
  display: block;
  color: #219b61;
  font-weight: 700;
}

.bottomNavWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .bottomNavWrap {
    display: block;
  }
}

.bottomNav {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .bottomNav {
    display: block;
  }
}
.bottomNav.-first {
  background-color: #219b61;
  border-bottom-left-radius: 5px;
}
@media (max-width: 767px) {
  .bottomNav.-first {
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.bottomNav.-second {
  background-color: #81af2f;
}
@media (max-width: 767px) {
  .bottomNav.-second {
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  }
}
.bottomNav_item {
  margin: 5px 0;
  padding: 5px 23px;
}
.bottomNav_item:not(:last-child) {
  border-right: 1px solid #eaeaea;
}
@media (max-width: 767px) {
  .bottomNav_item {
    margin: 0;
    padding: 20px;
  }
  .bottomNav_item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
}
.bottomNav_link {
  display: block;
  color: #fff;
  font-weight: 700;
}

.headerSubLink {
  display: none;
}
@media (max-width: 767px) {
  .headerSubLink {
    display: block;
  }
}
.headerSubLink_link {
  display: block;
  text-decoration: underline;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
.headerSubLink_icon {
  margin-left: 10px;
}

.headNavBottomDlSpBtn {
  padding: 20px;
  background-color: #219b61;
  color: #fff;
  width: 100%;
  border-radius: 3px;
}
.headNavBottomDlSpBtn_text {
  font-size: 14px;
}

.headNavBottomDlPcBtn {
  position: absolute;
  top: 104px;
  right: 16px;
  background-color: #fff;
  color: #219b61;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 40px;
  border-radius: 240px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.16);
  transition: 0.2s;
}
@media (max-width: 767px) {
  .headNavBottomDlPcBtn {
    display: none;
  }
}
.headNavBottomDlPcBtn:hover {
  opacity: 1;
  transform: translateY(3px);
}

.navBtn {
  width: 50px;
  height: 50px;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  background-color: #219b61;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 767px) {
  .navBtn {
    visibility: visible;
    opacity: 1;
  }
}
.navBtn_wrap {
  height: 100%;
  width: 100%;
  position: relative;
}
.navBtn_item {
  height: 2px;
  width: 100%;
  background-color: #fff;
  display: block;
  transition: 0.2s;
  position: absolute;
}
.navBtn_item:nth-child(1) {
  top: 0;
  left: 0;
}
.navBtn_item:nth-child(2) {
  top: 7px;
  left: 0;
}
.navBtn_item:nth-child(3) {
  bottom: 0;
  left: 0;
}
.navBtn_text {
  margin-top: 4px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0em;
}
.navBtn.-on .navBtn_item:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}
.navBtn.-on .navBtn_item:nth-of-type(2) {
  opacity: 0;
}
.navBtn.-on .navBtn_item:nth-of-type(3) {
  transform: rotate(-45deg);
  bottom: 7px;
}

/*-------------------------------
フッター
-------------------------------*/
.footer {
  width: 100%;
}

.footerNav {
  padding: 20px 0;
  background-color: #fff;
}

.footerNavList {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footerNavList {
    display: block;
  }
}

.footerNavItem {
  padding: 5px 30px;
  border-right: 1px solid #eaeaea;
}
.footerNavItem:first-child {
  border-left: 1px solid #eaeaea;
}
@media (max-width: 767px) {
  .footerNavItem {
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
  }
  .footerNavItem:first-child {
    border-left: none;
    border-top: 1px solid #eaeaea;
  }
}
.footerNavItem_link {
  display: block;
}
.footerNavItem_text {
  font-weight: 700;
}

.footerLink {
  padding: 40px 0;
  background-color: #81af2f;
}
@media (max-width: 767px) {
  .footerLink {
    padding: 20px 0;
  }
}

.footerLinkList {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 767px) {
  .footerLinkList {
    display: block;
  }
}

.footerLinkItem {
  width: 100%;
  max-width: 240px;
  background-color: #fff;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .footerLinkItem {
    margin: 0 auto;
  }
  .footerLinkItem:not(:last-child) {
    margin-bottom: 10px;
  }
}
.footerLinkItem_link {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.footerLinkItem_image {
  max-height: 50px;
  width: auto;
}

.footerCopy {
  padding: 15px 0;
  background-color: #219b61;
  text-align: center;
}
.footerCopy_text {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}

/*-------------------------------
TOPへ戻るボタン
-------------------------------*/
.toTop {
  position: fixed;
  bottom: 0;
  right: 20px;
  display: none;
}
@media (max-width: 767px) {
  .toTop {
    bottom: 0;
    right: 10px;
  }
}
.toTop.-show {
  display: block;
}
.toTop_link {
  height: 45px;
  width: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1c2420;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 20px;
}
.toTop_link > i {
  color: #fff;
}

/*-------------------------------
grecaptcha-badge
-------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
}

/*-------------------------------
MV
-------------------------------*/
.mainVisual {
  height: 600px;
  position: relative;
  padding: 50px 0;
  background-image: url(../image/kv_bg.jpg);
  background-repeat: repeat;
  background-position: 50% 50%;
}
@media (max-width: 767px) {
  .mainVisual {
    height: 100%;
    padding: 0;
    background: none;
  }
}
.mainVisual_imageWrap {
  height: 111%;
  max-width: 1240px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .mainVisual_imageWrap {
    padding: 0;
  }
}

/*-------------------------------
サイト内共通コンポーネント
-------------------------------*/
.pageSection {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .pageSection {
    padding: 40px 0;
  }
}
.pageSection.-bg01 {
  background-image: url(../image/bg01.jpg);
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.pageSection.-bg02 {
  background-image: url(../image/kv_bg.jpg);
  background-position: 50% 50%;
  background-repeat: repeat;
}
.pageSection.-headLine::before {
  content: "";
  height: 5px;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #337ea3 0%, #81af2f 100%);
}
.pageSection.-p0 {
  padding: 0;
}

.indexTitle.-sizeL {
  position: relative;
}
.indexTitle.-sizeL .indexTitle_text {
  font-size: 70px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .indexTitle.-sizeL .indexTitle_text {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0em;
  }
}
.indexTitle.-sizeM {
  padding-left: 20px;
  border-left: 7px solid #fff;
}
@media (max-width: 767px) {
  .indexTitle.-sizeM {
    padding-left: 10px;
    border-left: 5px solid #fff;
  }
}
.indexTitle.-sizeM .indexTitle_text {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .indexTitle.-sizeM .indexTitle_text {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0em;
  }
}
.indexTitle.-sizeS .indexTitle_text {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .indexTitle.-sizeS .indexTitle_text {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.indexTitle.-center {
  text-align: center;
}
.indexTitle.-white {
  color: #fff;
}
.indexTitle.-green {
  color: #219b61;
}
.indexTitle.-tate {
  width: 20%;
}
.indexTitle.-tate .indexTitle_text {
  writing-mode: vertical-rl;
}
.indexTitle.-right .indexTitle_text {
  position: absolute;
  top: 0;
  left: 0;
}
.indexTitle.-left .indexTitle_text {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .indexTitle.-left .indexTitle_text {
    right: auto;
    left: 0;
  }
}

.indexText.-small {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.indexText.-middle {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .indexText.-middle {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.indexText.-bold {
  font-weight: 700;
}

.pageMain {
  padding-top: 150px;
  background-image: url(../image/bg01.jpg);
  background-position: 50% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .pageMain {
    padding-top: 80px;
  }
}

.pageHeading {
  margin-bottom: 40px;
}

.pageTitle {
  position: relative;
  padding-bottom: 10px;
  color: #fff;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .pageTitle {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.pageTitle::before {
  content: "";
  height: 2px;
  width: 100px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
}
.pageTitle.-sizeM {
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .pageTitle.-sizeM {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.pageTitle.-sizeM::before {
  content: none;
}

.cta {
  padding: 50px 20px;
}
@media (max-width: 767px) {
  .cta {
    padding: 40px 20px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px 0;
  background: linear-gradient(90deg, #219b61 0%, #3291c1 50%, #219b61 100%);
  background-size: 200% 100%;
  border: 3px solid #fff;
  border-radius: 60px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  transition: 0.2s;
}
.btn:hover {
  opacity: 1;
  transform: translateY(3px);
  background-position: 100% 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.btn.-w340 {
  max-width: 340px;
}
.btn.-list {
  width: 100%;
  max-width: 150px;
  justify-content: left;
  padding: 5px 10px;
  margin: 0 auto;
  border: 1px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn.-list .btn_text {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.btn.-list .btn_icon {
  right: 10px;
  font-size: 10px;
}
.btn.-list:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
}
.btn.-disabled {
  background: none;
  background-color: #777;
  opacity: 0.4;
  cursor: auto;
}
.btn.-disabled:hover {
  transform: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.btn.-center {
  margin: 0 auto;
}
.btn_text {
  color: #fff;
  font-weight: 700;
}
.btn_icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #fff;
}

.contentGrid {
  display: grid;
}
@media (max-width: 1024px) {
  .contentGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-col4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .contentGrid.-col4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contentGrid.-gap10 {
  gap: 10px;
}
.contentGrid.-gap20 {
  gap: 20px;
}
.contentGrid.-gap40 {
  gap: 40px;
}
.contentGrid.-gap40-20 {
  gap: 40px;
}
@media (max-width: 1024px) {
  .contentGrid.-gap40-20 {
    gap: 20px;
  }
}
.contentGrid.-w740 {
  max-width: 740px;
  margin: 0 auto;
}

.text {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-center {
  text-align: center;
}
.text.-small {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text.-small {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-middle {
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text.-middle {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-large {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .text.-large {
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.text.-bold {
  font-weight: 700;
}
.text.-indent1 {
  text-indent: -1em;
  padding-left: 1em;
}
.text.-indent2 {
  text-indent: -2em;
  padding-left: 2em;
}
.text_link {
  font-weight: 700;
  text-decoration: underline;
}

/*-------------------------------
ABOUT
-------------------------------*/
.aboutWrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: left;
}

.aboutBox {
  width: 80%;
  max-width: 960px;
  padding: 40px 50px;
  background-color: #f7f7f7;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .aboutBox {
    padding: 20px;
  }
}
.aboutBox_title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #81af2f;
  color: #0d3e27;
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .aboutBox_title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.aboutBox_textWrap {
  margin-bottom: 30px;
}

/*-------------------------------
OUTLINE
-------------------------------*/
.outLineWrap {
  display: flex;
  justify-content: right;
}
@media (max-width: 767px) {
  .outLineWrap {
    flex-direction: row-reverse;
  }
}

.outLineList {
  width: 80%;
  max-width: 960px;
}

.outLineItem {
  display: flex;
  align-items: stretch;
  background-color: #f7f7f7;
}
@media (max-width: 767px) {
  .outLineItem {
    display: block;
  }
}
.outLineItem:not(:last-child) {
  margin-bottom: 20px;
}
.outLineItem_title {
  width: 20%;
  padding: 30px;
  border-right: 1px solid #81af2f;
}
@media (max-width: 767px) {
  .outLineItem_title {
    width: 100%;
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #81af2f;
  }
}
.outLineItem_text {
  width: 80%;
  padding: 30px;
}
@media (max-width: 767px) {
  .outLineItem_text {
    width: 100%;
    padding: 20px;
  }
}
.outLineItem_smallText {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.outLineItem_item {
  position: relative;
  padding-left: 20px;
}
.outLineItem_item::before {
  content: "\f14a";
  position: absolute;
  top: 3px;
  left: 0;
  color: #219b61;
  font-size: 16px;
  line-height: 1;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.outLineItem_item:not(:last-child) {
  margin-bottom: 10px;
}
.outLineItem_link {
  text-decoration: underline;
  transition: 0.2s;
}
.outLineItem_link:hover {
  text-decoration: none;
}

/*-------------------------------
TIME SCHEDULE
-------------------------------*/
.schedule {
  padding: 40px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .schedule {
    padding: 20px;
  }
}

.lectureBox:not(:last-child) {
  margin-bottom: 50px;
}
.lectureBox_label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.lectureBox_labelType {
  padding: 5px 18px;
  border: 1px solid #fff;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.lectureBox_labelTime {
  margin-left: 20px;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.lectureBox_title {
  margin-bottom: 30px;
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .lectureBox_title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.lectureBox_titleSub {
  font-size: 18px;
}
@media (max-width: 767px) {
  .lectureBox_titleSub {
    font-size: 16px;
  }
}
.lectureBox_text {
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.lecturer {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}
@media (max-width: 767px) {
  .lecturer {
    display: block;
  }
}
.lecturer_profile {
  width: 37.5%;
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width: 767px) {
  .lecturer_profile {
    width: 100%;
  }
}
.lecturer_imageWrap {
  max-width: 100px;
  margin-right: 15px;
}
.lecturer_label {
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.lecturer_name {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.lecturer_largeText {
  margin-right: 6px;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.lecturer_career {
  width: 62.5%;
  padding: 20px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .lecturer_career {
    width: 100%;
  }
}

/*-------------------------------
アクセス
-------------------------------*/
.accessWrap {
  max-width: 1200px;
  margin: 0 auto;
}

.access {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .access {
    display: block;
  }
}
.access_textWrap {
  width: 48%;
  padding: 50px 20px 0;
}
@media (max-width: 767px) {
  .access_textWrap {
    width: 100%;
    padding: 40px 20px 20px;
  }
}
.access_mapWrap {
  height: 0;
  width: 50%;
  position: relative;
  padding-top: 40%;
}
@media (max-width: 767px) {
  .access_mapWrap {
    width: 100%;
    padding-top: 45%;
  }
}
.access_mapWrap > iframe {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .access_mapWrap > iframe {
    top: 0;
  }
}

/*-------------------------------
新川崎ネットワーク協議会とは
-------------------------------*/
.aboutSkncBox {
  padding: 50px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .aboutSkncBox {
    padding: 20px;
  }
}

/*-------------------------------
出展企業一覧
-------------------------------*/
.listText {
  color: #fff;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .listText {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.listWrap {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .listWrap {
    padding-bottom: 50px;
  }
}

.listTable {
  width: 100%;
}

.listItem {
  display: flex;
  align-items: center;
}
.listItem.-head {
  background-color: #3291c1;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 767px) {
  .listItem.-head {
    display: none;
  }
}
.listItem.-data {
  align-items: stretch;
  background-color: #fff;
}
@media (min-width: 768px) {
  .listItem.-data:nth-child(odd) {
    background-color: #f7f7f7;
  }
}
@media (max-width: 767px) {
  .listItem.-data {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, max-content);
  }
}
.listItem_headWrap {
  width: 30%;
  padding: 8px;
  text-align: center;
  border-right: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.listItem_headWrap:last-child {
  border-right: none;
}
.listItem_headWrap.-w9 {
  width: 9%;
}
.listItem_headWrap.-w10 {
  width: 10%;
}
.listItem_headWrap.-w13 {
  width: 13%;
}
.listItem_headWrap.-w15 {
  width: 15%;
}
.listItem_headWrap.-w20 {
  width: 20%;
}
.listItem_headWrap.-w27 {
  width: 27%;
}
.listItem_headText {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.listItem_dataWrap {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px;
}
@media (min-width: 768px) {
  .listItem_dataWrap:not(:last-child) {
    border-right: 1px solid #eaeaea;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap {
    width: 100%;
    flex-direction: row;
    border-bottom: 1px solid #eaeaea;
  }
}
.listItem_dataWrap.-w9 {
  width: 9%;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-w9 {
    width: 100%;
  }
}
.listItem_dataWrap.-w10 {
  width: 10%;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-w10 {
    width: 100%;
  }
}
.listItem_dataWrap.-w13 {
  width: 13%;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-w13 {
    width: 100%;
  }
}
.listItem_dataWrap.-w15 {
  width: 15%;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-w15 {
    width: 100%;
  }
}
.listItem_dataWrap.-w20 {
  width: 20%;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-w20 {
    width: 100%;
  }
}
.listItem_dataWrap.-w27 {
  width: 27%;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-w27 {
    width: 100%;
  }
}
.listItem_dataWrap.-w30 {
  width: 30%;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-w30 {
    width: 100%;
  }
}
.listItem_dataWrap.-center {
  align-items: center;
}
.listItem_dataWrap.-rest {
  width: 90%;
  background-color: #219b61;
  border: none;
  color: #fff;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-rest {
    width: 100%;
    height: auto;
  }
}
.listItem_dataWrap.-rest.-w10 {
  width: 10%;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-rest.-w10 {
    width: 60%;
  }
}
.listItem_dataWrap.-cat {
  width: 100%;
  background-color: #219b61;
  border: none;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-cat {
    grid-row: 1/2;
    grid-column: 1/3;
  }
}
.listItem_dataWrap.-name {
  flex-direction: row;
  align-items: center;
  justify-content: left;
}
@media (max-width: 767px) {
  .listItem_dataWrap.-name {
    grid-row: 1/2;
    grid-column: 1/3;
    background-color: #3291c1;
    border: none;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-pitchTime {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-pitchTitle {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-pitchCat {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-pitchSite {
    grid-row: 6/7;
    grid-column: 1/2;
    border: none;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-pitchIndustry {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-pitchZigyo {
    grid-row: 6/7;
    grid-column: 2/3;
    border: none;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-pitchStage {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-pitchBooth {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-site {
    grid-row: 6/7;
    grid-column: 1/2;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-industry {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-zigyo {
    grid-row: 6/7;
    grid-column: 2/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-booth {
    grid-row: 3/4;
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-time {
    grid-row: 4/5;
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .listItem_dataWrap.-career {
    grid-row: 5/6;
    grid-column: 1/3;
  }
}
.listItem_dataLink {
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media (max-width: 767px) {
  .listItem_dataLink {
    text-decoration-color: #fff;
    width: 100%;
  }
}
.listItem_dataIcon {
  font-size: 12px;
  display: inline;
}
@media (max-width: 767px) {
  .listItem_dataIcon {
    color: #fff;
  }
}
.listItem_spHeading {
  width: 100%;
  max-width: 115px;
  position: relative;
  font-weight: 700;
}
.listItem_spHeading::before {
  content: "：";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.listItem_dataText {
  font-weight: 700;
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .listItem_dataText {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .-name .listItem_dataText {
    color: #fff;
    width: auto;
  }
}

/*.listTable{
	width: 100%;
	border-collapse: collapse;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	overflow: hidden;
	@include mediaSmartphone{
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
	&_thead{
		.listTable_tr{
			background-color: $color-blue01;
		}
		.listTable_heading{
			width: 20%;
			padding: 8px;
			text-align: center;
			color: $color-white;
			@include text(14, 1.5, 0);
			&.-w10{
				width: 10%;
			}
			&.-w15{
				width: 15%;
			}
			&.-w30{
				width: 30%;
			}
			&.-w40{
				width: 40%;
			}
		}
		@include mediaSmartphone{
			display: none;
		}
	}
	&_tbody{
		.listTable_tr{
			background-color: $color-white;
			&:nth-child(even){
				background-color: $color-gray03;
			}
			@include mediaSmartphone{
				display: flex;
				flex-wrap: wrap;
			}
		}
		.listTable_heading{
			padding: 8px;
			color: $color-black01;
			font-weight: $weight-bold;
			vertical-align: middle;
			@include text(14, 1.5, 0);
			&:not(:last-child){
				border-right: 1px solid $color-gray02;
			}
			@include mediaSmartphone{
				width: 100%;
				display: block;
				padding: 6px;
				background-color: $color-blue01;
				color: $color-white;
				&:not(:last-child){
					border-right: none;
					border-bottom: 1px solid $color-gray02;
				}
			}
		}
		.listTable_data{
			padding: 8px;
			font-weight: $weight-bold;
			vertical-align: middle;
			@include text(14, 1.5, 0);
			&:not(:last-child){
				border-right: 1px solid $color-gray02;
			}
			&.-pitchBooth,
			&.-booth{
				text-align: center;
				@include mediaSmartphone{
					text-align: left;
				}
			}
			@include mediaSmartphone{
				display: block;
				padding: 6px;
				&:not(:last-child){
					border-right: none;
					border-bottom: 1px solid $color-gray02;
				}
				&.-pitchTime{
					width: 100%;
					order: 2;
				}
				&.-pitchCat{
					width: 100%;
					order: 3;
				}
				&.-pitchCompany{
					width: 100%;
					order: 1;
					background-color: $color-blue01;
					color: $color-white;
				}
				&.-pitchSite{
					width: 50%;
					order: 6;
				}
				&.-pitchGyosyu{
					width: 100%;
					order: 4;
					display: flex;
				}
				&.-pitchZigyo{
					width: 50%;
					order: 7;
				}
				&.-pitchBooth{
					width: 100%;
					order: 5;
					border-bottom: 1px solid $color-gray02;
				}
				&.-rest{
					width: 100%;
				}
				&.-company{
					width: 100%;
					order: 1;
					background-color: $color-blue01;
					color: $color-white;
				}
				&.-site{
					width: 50%;
					order: 4;
				}
				&.-gyosyu{
					width: 100%;
					display: flex;
					order: 2;
				}
				&.-zigyo{
					width: 50%;
					order: 5;
				}
				&.-booth{
					width: 100%;
					order: 3;
					border-bottom: 1px solid $color-gray02;
				}
			}
		}
		.listTable_spHeading{
			width: 100%;
			max-width: 114px;
			position: relative;
			margin-right: 10px;
			&::before{
				content: "：";
				display: block;
				position: absolute;
				top: 0;
				right: -4px;
			}
		}
	}
}*/
.modalItem {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.modalItem.-active {
  opacity: 1;
  visibility: visible;
}
.modalItem_bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}
.modalItem_contentsWrap {
  width: 90%;
  height: 80vh;
  max-width: 1200px;
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 40px;
  transform: translate(-50%, -50%);
  background: #fff;
}
@media (max-width: 767px) {
  .modalItem_contentsWrap {
    padding: 16px;
  }
}
.modalItem_contents {
  height: 100%;
  overflow: auto;
}
.modalItem_titleWrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eaeaea;
}
.modalItem_boothNum {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f7f7;
  width: 170px;
  height: 36px;
}
@media (max-width: 767px) {
  .modalItem_boothNum {
    font-size: 10px;
    width: 80px;
    height: 25px;
  }
}
.modalItem_name {
  color: #000;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .modalItem_name {
    font-size: 14px;
  }
}
.modalItem_categoryWrap {
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .modalItem_categoryWrap {
    margin-bottom: 8px;
  }
}
.modalItem_category {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 27px;
  background-color: #219b61;
  color: #fff;
  font-size: 12px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .modalItem_category {
    margin-bottom: 6px;
    font-size: 10px;
    width: 120px;
    height: 26px;
  }
}
.modalItem_categoryText {
  font-size: 14px;
}
@media (max-width: 767px) {
  .modalItem_categoryText {
    font-size: 12px;
  }
}
.modalItem_siteUrl {
  font-size: 12px;
  background-color: #f7f7f7;
  padding: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .modalItem_siteUrl {
    margin-bottom: 10px;
  }
}
.modalItem_siteUrlLink {
  text-decoration: underline;
}
.modalItem_flexWrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .modalItem_flexWrap {
    flex-direction: column-reverse;
  }
}
.modalItem_textareaWrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 720px;
  width: 48vw;
}
@media (max-width: 767px) {
  .modalItem_textareaWrap {
    max-width: none;
    width: 100%;
  }
}
.modalItem_textareaWrap.-noimg {
  max-width: none;
  width: 100%;
}
.modalItem_textarea {
  font-size: 14px;
}
@media (max-width: 767px) {
  .modalItem_textarea {
    font-size: 12px;
  }
}
.modalItem_textareaTitle {
  position: relative;
  padding-left: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}
.modalItem_textareaTitle::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: #219b61;
}
.modalItem_textareaDescription {
  line-height: 1.8;
}
@media (max-width: 767px) {
  .modalItem_textareaDescription {
    line-height: 1.6;
  }
}
.modalItem_imgWrap {
  max-width: 380px;
  width: 30vw;
}
@media (max-width: 767px) {
  .modalItem_imgWrap {
    max-width: none;
    width: 100%;
    margin-bottom: 20px;
  }
}
.modalItem_close {
  width: 92px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -39px;
  right: 0;
  background-color: #fff;
  cursor: pointer;
}
.modalItem_closeIcon {
  color: #1c2420;
  font-size: 16px;
}
.modalItem_closeText {
  margin-left: 6px;
  color: #1c2420;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
}

/*-------------------------------
お問い合わせ
-------------------------------*/
.contactWrap {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .contactWrap {
    padding-bottom: 50px;
  }
}

.formWrap {
  max-width: 800px;
  margin: 0 auto;
}

.confirmText {
  padding: 40px;
  margin-bottom: 40px;
  border: 3px solid #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .confirmText {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.confirmText_text {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .confirmText_text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.thanksText {
  margin-bottom: 50px;
  color: #fff;
  font-size: 96px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 900;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
}
@media (max-width: 767px) {
  .thanksText {
    margin-bottom: 30px;
    font-size: 54px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.thanksBox {
  padding: 40px;
  margin-bottom: 50px;
  border: 1px solid #fff;
}
@media (max-width: 767px) {
  .thanksBox {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.thanksBox_text {
  color: #fff;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.formItem_title {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: auto !important;
}
.formItem_label {
  margin-right: 15px;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
@media (max-width: 767px) {
  .formItem_label {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.formItem_label.-required {
  background-color: #cc0000;
  color: #fff;
}
.formItem_label.-any {
  background-color: #fff;
  color: #1c2420;
}
.formItem_desc input[type=text],
.formItem_desc input[type=email],
.formItem_desc input[type=tel] {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.formItem_desc input[type=text]::-moz-placeholder, .formItem_desc input[type=email]::-moz-placeholder, .formItem_desc input[type=tel]::-moz-placeholder {
  color: #eaeaea;
}
.formItem_desc input[type=text]::placeholder,
.formItem_desc input[type=email]::placeholder,
.formItem_desc input[type=tel]::placeholder {
  color: #eaeaea;
}
.formItem_desc textarea {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.formItem_desc textarea::-moz-placeholder {
  color: #eaeaea;
}
.formItem_desc textarea::placeholder {
  color: #eaeaea;
}

.formConsent {
  text-align: center;
  font-size: 1.4rem;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0em;
}
.formConsent_check {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .formConsent_check {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.formConsent_check .wpcf7-list-item {
  margin: 0;
}
.formConsent_check input[type=checkbox] {
  height: 16px;
  width: 16px;
  margin-right: 5px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.formConsent_link {
  color: #1c2420;
  text-decoration: underline;
}

.formBtn_confirmWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .formBtn_confirmWrap {
    display: block;
  }
}
.formBtn_wrap {
  width: 100%;
  max-width: 300px;
  position: relative;
  margin: 0 auto 20px;
}
.formBtn_btn {
  width: 100%;
  display: block;
  position: relative;
  padding: 15px 20px;
  background: linear-gradient(90deg, #219b61 0%, #3291c1 50%, #219b61 100%);
  background-size: 200% 100%;
  border: 3px solid #fff;
  border-radius: 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.16);
  text-align: center;
  transition: 0.2s;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.formBtn_btn:hover {
  opacity: 0.7;
}
.formBtn_btn.-previous {
  border: 3px solid #eaeaea;
  background: none;
  background-color: #777;
  color: #fff;
}
.formBtn .wpcf7-spinner {
  position: absolute;
}
.formBtn_icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  transition: 0.2s;
}
.-previous + .formBtn_icon {
  color: #fff;
}
.formBtn_wrap:hover .formBtn_icon {
  opacity: 0.7;
}
.formBtn_text {
  text-align: center;
  font-size: 1.4rem;
}
.formBtn_text a {
  text-decoration: underline;
  color: #1c2420;
}

/*-------------------------------
フォームブリッジ用サンクスページ
-------------------------------*/
.formBridge {
  padding: 100px 0;
}
.formBridge_title {
  font-size: 20px;
  font-weight: 700;
}
.formBridge_description {
  line-height: 1.8;
}
.formBridge_description:last-of-type {
  line-height: 1.5;
}

.formBridgeWrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}/*# sourceMappingURL=layout.css.map */