@charset "UTF-8";
/* =========================
 PC
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}
@media (max-width: 960px) {
  body.menu-open {
    overflow: hidden;
  }
}

h1, h2, h3, h4, h5, h6, p, strong, span, em, li, a {
  color: #1D1D1D;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  letter-spacing: 2px;
}

ul, ol {
  list-style: none;
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

strong {
  color: #E6531D;
}

/*-----------------------------------------------------------------------------------------*/
/*共通パーツ*/
/*-----------------------------------------------------------------------------------------*/
main {
  overflow: hidden;
  margin-top: 104px;
}
@media (max-width: 1080px) {
  main {
    margin-top: 64px;
  }
}

[id] {
  scroll-margin-top: 104px;
}
@media (max-width: 1080px) {
  [id] {
    scroll-margin-top: 64px;
  }
}

.section-contents {
  padding: 104px 0;
}
@media (max-width: 768px) {
  .section-contents {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  .section-contents {
    padding: 48px 0;
  }
}

.inner {
  width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 100%;
    padding: 0 64px;
  }
}
@media (max-width: 768px) {
  .inner {
    padding: 0 40px;
  }
}
@media (max-width: 480px) {
  .inner {
    padding: 0 24px;
  }
}
.inner > .flex-box {
  display: flex;
  gap: 80px;
}
.inner > .flex-box .head-box {
  width: 360px;
}
.inner > .flex-box .head-box + div {
  width: calc(100% - 440px);
}
@media (max-width: 960px) {
  .inner > .flex-box {
    flex-direction: column;
    gap: 24px;
  }
  .inner > .flex-box .head-box {
    width: 100%;
  }
  .inner > .flex-box .head-box + div {
    width: 100%;
  }
}

.bg-gray {
  background: #F5F5F5;
}

.breadcrumb {
  padding: 20px 0;
  background: #E6531D;
}
@media (max-width: 480px) {
  .breadcrumb {
    padding: 12px 0;
  }
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb ul li {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 480px) {
  .breadcrumb ul li {
    font-size: 12px;
  }
}
.breadcrumb ul li a {
  position: relative;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  margin-right: 32px;
}
.breadcrumb ul li a::before {
  position: absolute;
  content: "›";
  width: 5px;
  height: 17px;
  right: -18px;
}

.page-mv {
  overflow: hidden;
}
.page-mv .inner {
  position: relative;
  padding-top: 64px;
  padding-bottom: 48px;
}
@media (max-width: 768px) {
  .page-mv .inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .page-mv .inner {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.page-mv .inner::before {
  position: absolute;
  content: "";
  width: 321px;
  height: 313px;
  top: -32px;
  left: -188px;
  background: url("../img/deco-logo-gray.png") no-repeat center/contain;
  z-index: -1;
}
@media (max-width: 768px) {
  .page-mv .inner::before {
    width: 200px;
    height: 240px;
    top: -24px;
    left: -48px;
  }
}
@media (max-width: 480px) {
  .page-mv .inner::before {
    width: 160px;
    height: 180px;
    top: -16px;
    left: -56px;
  }
}
.page-mv h2 {
  font-family: "Geom", sans-serif;
  font-weight: 400;
  font-size: 64px;
  color: #E6531D;
}
@media (max-width: 768px) {
  .page-mv h2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .page-mv h2 {
    font-size: 32px;
  }
}
.page-mv span {
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 768px) {
  .page-mv span {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .page-mv span {
    font-size: 14px;
  }
}
.page-mv p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 48px;
}
@media (max-width: 480px) {
  .page-mv p {
    font-size: 15px;
    margin-top: 24px;
  }
}
.page-mv img {
  position: relative;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-mv img {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .page-mv img {
    height: 200px;
  }
}

.section-intro .ttl-box h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .section-intro .ttl-box h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.section-intro .ttl-box h2 strong {
  font-weight: 500;
}
.section-intro .ttl-box p {
  margin-top: 24px;
}
.section-intro .ttl-box p:first-of-type {
  margin-top: 0;
}

.ttl-box .flex-box {
  display: flex;
  justify-content: space-between;
}
.ttl-box .flex-box div {
  width: 440px;
}
.ttl-box .flex-box p {
  width: 600px;
}
@media (max-width: 768px) {
  .ttl-box .flex-box {
    display: block;
  }
  .ttl-box .flex-box div {
    width: 100%;
  }
  .ttl-box .flex-box p {
    width: 100%;
  }
}
.ttl-box h2 {
  font-size: 56px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 12px;
}
.ttl-box h2 .sp {
  display: none;
}
@media (max-width: 768px) {
  .ttl-box h2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .ttl-box h2 {
    font-size: 28px;
  }
  .ttl-box h2 .sp {
    display: block;
  }
}
.ttl-box h2 strong {
  font-weight: 500;
}
.ttl-box span {
  display: block;
  color: #E6531D;
  font-size: 28px;
  font-family: "Geom", sans-serif;
  font-weight: 500;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .ttl-box span {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .ttl-box span {
    font-size: 15px;
    margin-bottom: 32px;
  }
}
.ttl-box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 24px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .ttl-box p {
    font-size: 15px;
    letter-spacing: 1px;
  }
  .ttl-box p br {
    display: none;
  }
}

.head-box {
  margin-bottom: 64px;
}
@media (max-width: 480px) {
  .head-box {
    margin-bottom: 24px;
  }
}
.head-box h2 {
  color: #E6531D;
  font-family: "Geom", sans-serif;
  font-size: 56px;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 768px) {
  .head-box h2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .head-box h2 {
    font-size: 28px;
  }
}
.head-box h2 strong {
  font-weight: 500;
}
.head-box span {
  display: block;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .head-box span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .head-box span {
    font-size: 16px;
  }
}
.head-box p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 24px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .head-box p br {
    display: none;
  }
}
.head-box.flex-box {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .head-box.flex-box {
    flex-direction: column;
    gap: 0;
  }
}
.head-box.flex-box .head {
  width: 360px;
}
@media (max-width: 960px) {
  .head-box.flex-box .head {
    width: 100%;
  }
}
.head-box.flex-box .txt {
  width: calc(100% - 440px);
}
@media (max-width: 960px) {
  .head-box.flex-box .txt {
    width: 100%;
  }
}
.head-box.flex-box .txt h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .head-box.flex-box .txt h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.head-box.flex-box .txt h3 strong {
  font-weight: 500;
}
.head-box.flex-box .txt p {
  font-size: 14px;
  margin-top: 24px;
}
.head-box.flex-box .txt p strong {
  font-weight: 500;
}
.head-box.center-box {
  text-align: center;
}

.btn {
  display: flex;
  align-items: center;
  width: 240px;
  height: 64px;
  border-radius: 64px;
  margin-top: 48px;
  font-size: 16px;
  font-family: "Geom", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 16px 40px;
  background: #fff url(../img/icon-btn-more.png) no-repeat center right 16px;
  background-size: 40px;
  text-decoration: none;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.btn.btn-gray {
  background: #F5F5F5 url(../img/icon-btn-more.png) no-repeat center right 16px;
  background-size: 40px;
}
@media (max-width: 480px) {
  .btn {
    margin: 32px 0 0;
  }
}
.btn:hover {
  opacity: 0.7;
}

.section-cta {
  display: flex;
  width: 100%;
}
@media (max-width: 960px) {
  .section-cta {
    flex-direction: column;
  }
}
.section-cta br.sp {
  display: none;
}
@media (max-width: 480px) {
  .section-cta br.sp {
    display: block;
  }
}
.section-cta .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 96px 32px;
  box-sizing: border-box;
  text-align: center;
  color: #fff;
}
@media (max-width: 1200px) {
  .section-cta .box {
    padding: 64px 16px;
  }
}
@media (max-width: 960px) {
  .section-cta .box {
    width: 100%;
    padding: 48px 16px;
  }
}
.section-cta .box.orange {
  background: url("../img/bg-member.png") no-repeat center;
  background-size: cover;
}
.section-cta .box.blue {
  background: url("../img/bg-collabo.png") no-repeat center;
  background-size: cover;
}
.section-cta .box h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 1200px) {
  .section-cta .box h2 {
    font-size: 28px;
  }
}
.section-cta .box p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .section-cta .box p {
    font-size: 15px;
  }
}
.section-cta .box .btn {
  width: 320px;
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .section-cta .box .btn {
    margin-top: 32px;
  }
}

.activity-box .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .activity-box .box {
    display: block;
  }
}
@media (max-width: 480px) {
  .activity-box .box {
    margin-top: 48px;
  }
}
.activity-box .box:nth-child(even) {
  flex-direction: row-reverse;
}
.activity-box .box img {
  width: 456px;
  height: 248px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .activity-box .box img {
    width: 360px;
  }
}
@media (max-width: 768px) {
  .activity-box .box img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .activity-box .box img {
    height: 180px;
  }
}
.activity-box .box .txt {
  position: relative;
  width: calc(100% - 500px);
}
@media (max-width: 960px) {
  .activity-box .box .txt {
    width: calc(100% - 408px);
  }
}
@media (max-width: 768px) {
  .activity-box .box .txt {
    width: 100%;
  }
}
.activity-box .box .txt span {
  color: #E6531D;
  font-size: 16px;
  font-weight: 500;
}
.activity-box .box .txt span.number {
  position: absolute;
  width: 144px;
  height: 150px;
  right: 0;
  bottom: -64px;
  color: rgba(230, 83, 29, 0.1);
  font-size: 128px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  z-index: 1;
  text-align: right;
}
@media (max-width: 480px) {
  .activity-box .box .txt span.number {
    bottom: -32px;
  }
}
.activity-box .box .txt h3 {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  margin: 12px 0;
  z-index: 2;
}
@media (max-width: 480px) {
  .activity-box .box .txt h3 {
    font-size: 20px;
  }
}
.activity-box .box .txt p {
  position: relative;
  font-size: 14px;
  z-index: 2;
}
.activity-box .box .txt .btn {
  position: relative;
  margin-top: 24px;
  z-index: 2;
}
@media (max-width: 480px) {
  .activity-box .box .txt .btn {
    margin: 24px 0 0;
  }
}

.recommend-list {
  margin-top: 48px;
  list-style: none;
}
.recommend-list li {
  position: relative;
  padding: 20px 0 20px 32px;
  border-bottom: 1px solid #D9D9D9;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
.recommend-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 10px;
  background: url("../img/footer_arrow.png") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
}

.organizer-list .row {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-bottom: 1px solid #D9D9D9;
}
.organizer-list .row:first-child {
  border-top: 1px solid #D9D9D9;
}
.organizer-list .row:last-child {
  border: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .organizer-list .row {
    flex-direction: column;
    gap: 8px;
  }
}
.organizer-list .row dt {
  flex-shrink: 0;
  width: 160px;
  font-weight: 700;
  letter-spacing: 1px;
}
.organizer-list .row dd {
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .organizer-list .row dd {
    font-size: 15px;
  }
}
.organizer-list .row dd a {
  color: #E6531D;
  font-weight: 500;
  text-decoration: underline;
}

.organizer-contact {
  margin-top: 32px;
  font-weight: 500;
}
.organizer-contact a {
  color: #E6531D;
  text-decoration: underline;
}

.number-box .box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #D9D9D9;
}
.number-box .box:first-child {
  border-top: 1px solid #D9D9D9;
}
.number-box .box:last-child {
  border: 0;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .number-box .box {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 0;
  }
}
.number-box .box span {
  flex-shrink: 0;
  width: 80px;
  font-size: 48px;
  font-weight: 400;
  color: #E6531D;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .number-box .box span {
    position: absolute;
    top: 16px;
    right: 0;
    width: auto;
    color: #FDEEE9;
    font-size: 96px;
    z-index: 1;
  }
}
.number-box .box .txt {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 768px) {
  .number-box .box .txt {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.number-box .box .txt h3 {
  width: 380px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #1D1D1D;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .number-box .box .txt h3 {
    width: 100%;
    font-size: 20px;
    letter-spacing: 2px;
  }
}
.number-box .box .txt p {
  width: calc(100% - 230px);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 768px) {
  .number-box .box .txt p {
    width: 100%;
  }
}

.section-recommend {
  position: relative;
  background: linear-gradient(90deg, #F5F5F5 0%, rgba(245, 245, 245, 0) 71%), url("../img/bg-about-recommend.png") no-repeat center/cover;
}
@media (max-width: 960px) {
  .section-recommend {
    background: linear-gradient(0deg, #F5F5F5 75%, rgba(245, 245, 245, 0) 80%), url("../img/bg-about-recommend.png") no-repeat top center/100%;
  }
}
@media (max-width: 480px) {
  .section-recommend {
    padding-top: 156px;
  }
}
.section-recommend .ttl-box h2 {
  font-family: "Geom", sans-serif;
  font-size: 40px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .section-recommend .ttl-box h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .section-recommend .ttl-box h2 {
    font-size: 20px;
  }
}
.section-recommend .ttl-box h2 strong {
  color: #E6531D;
}
.section-recommend ul {
  margin-top: 48px;
}
@media (max-width: 768px) {
  .section-recommend ul {
    margin-top: 24px;
  }
}
.section-recommend ul li {
  position: relative;
  border-bottom: none;
  padding-left: 38px;
  font-size: 20px;
  font-weight: 500;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .section-recommend ul li {
    font-size: 18px;
    margin-top: 16px;
  }
}
@media (max-width: 480px) {
  .section-recommend ul li {
    font-size: 16px;
    padding-left: 28px;
  }
}
.section-recommend ul li::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 24px;
  top: 4px;
  left: 0;
  background: url("../img/icon-check.svg") no-repeat center/contain;
}
@media (max-width: 480px) {
  .section-recommend ul li::before {
    width: 19px;
    height: 18px;
    background: url("../img/icon-check.svg") no-repeat center/contain;
    background-size: 19px;
  }
}

.page-collaboration .section-recommend {
  background: linear-gradient(90deg, #F5F5F5 0%, rgba(245, 245, 245, 0) 71%), url("../img/bg-collaboration-recommend.png") no-repeat center/cover;
}
@media (max-width: 960px) {
  .page-collaboration .section-recommend {
    background: linear-gradient(0deg, #F5F5F5 75%, rgba(245, 245, 245, 0) 80%), url("../img/bg-collaboration-recommend.png") no-repeat top center/100%;
  }
}

.section-banner {
  position: relative;
  padding: 96px 0;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .section-banner {
    padding: 64px 0;
  }
}
.section-banner br.sp {
  display: none;
}
@media (max-width: 480px) {
  .section-banner br.sp {
    display: block;
  }
}
.section-banner.orange {
  background: url("../img/bg-member.png") no-repeat center/cover;
}
.section-banner.blue {
  background: url("../img/bg-collabo.png") no-repeat center/cover;
}
.section-banner .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-banner h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section-banner h2 {
    font-size: 24px;
  }
}
.section-banner p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.125em;
  line-height: 1.75;
}
.section-banner .btn {
  width: 320px;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .section-banner .btn {
    width: 100%;
    max-width: 320px;
  }
}

.section-flow .number-box .box {
  align-items: flex-start;
}
.section-flow .number-box .box:first-child {
  border-top: 0;
  padding-top: 0;
}
.section-flow .number-box .box .txt {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.section-flow .number-box .box .txt h3 {
  width: auto;
}
.section-flow .number-box .box .txt p {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  margin-top: 16px;
}
.section-flow .number-box .box .txt a {
  color: #E6531D;
  font-weight: 500;
  text-decoration: underline;
}

.section-voice .voice-box .box {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #D9D9D9;
}
.section-voice .voice-box .box:last-child {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 480px) {
  .section-voice .voice-box .box {
    gap: 16px;
  }
}
.section-voice .voice-box .box .icon {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #F5F5F5;
  border: #EAEAEA 1px solid;
  overflow: hidden;
}
@media (max-width: 480px) {
  .section-voice .voice-box .box .icon {
    width: 64px;
    height: 64px;
  }
}
.section-voice .voice-box .box .icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-voice .voice-box .box .txt span {
  display: block;
  margin-bottom: 8px;
  color: #E6531D;
  font-size: 16px;
  font-weight: 500;
}
.section-voice .voice-box .box .txt p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.section-faq .faq-box .box {
  margin-bottom: 16px;
  background: #fff;
}
.section-faq .faq-box .faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 24px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 480px) {
  .section-faq .faq-box .faq-q {
    padding: 12px 16px 12px;
    gap: 8px;
  }
}
.section-faq .faq-box .faq-q .label {
  color: #E6531D;
  font-family: "Geom", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 480px) {
  .section-faq .faq-box .faq-q .label {
    font-size: 24px;
  }
}
.section-faq .faq-box .faq-q .text {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .section-faq .faq-box .faq-q .text {
    font-size: 16px;
  }
}
.section-faq .faq-box .faq-q .icon {
  color: #E6531D;
  font-family: "Geom", sans-serif;
  font-size: 32px;
  line-height: 1;
}
@media (max-width: 480px) {
  .section-faq .faq-box .faq-q .icon {
    font-size: 24px;
  }
}
.section-faq .faq-box .faq-a {
  display: none;
  gap: 16px;
  padding: 0 0 20px;
  border-top: 1px solid #D9D9D9;
  margin: 0 24px;
}
@media (max-width: 480px) {
  .section-faq .faq-box .faq-a {
    padding: 0 0 12px;
    margin: 0 16px;
    gap: 8px;
  }
}
.section-faq .faq-box .faq-a .label {
  flex-shrink: 0;
  padding-top: 16px;
  color: #E6531D;
  font-family: "Geom", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 480px) {
  .section-faq .faq-box .faq-a .label {
    font-size: 24px;
  }
}
.section-faq .faq-box .faq-a p {
  padding-top: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .section-faq .faq-box .faq-a p {
    padding-top: 12px;
    font-size: 14px;
  }
}
.section-faq .faq-box .box.is-open .faq-a {
  display: flex;
}
.section-faq .faq-note {
  margin-top: 48px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .section-faq .faq-note {
    margin-top: 20px;
    font-size: 15px;
    letter-spacing: 0;
  }
}
.section-faq .faq-note br {
  display: none;
}
@media (max-width: 480px) {
  .section-faq .faq-note br {
    display: block;
  }
}
.section-faq .faq-note a {
  color: #E6531D;
  font-weight: 500;
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------------------*/
/*header & footer*/
/*-----------------------------------------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: #fff;
  z-index: 1000;
}
@media (max-width: 1080px) {
  .header {
    height: 64px;
  }
}
.header .inner {
  display: flex;
  align-items: center;
  height: 104px;
}
@media (max-width: 1080px) {
  .header .inner {
    height: 64px;
    padding: 0;
  }
}
.header img {
  display: block;
}
@media (max-width: 1080px) {
  .header .logo img {
    width: 170px;
    margin: 18px 0 14px 16px;
  }
}
.header .nav {
  margin-left: auto;
}
@media (max-width: 1080px) {
  .header .nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100% - 64px);
    z-index: 9999;
    background: #fff;
    overflow-y: auto;
  }
  .header .nav.is-open {
    display: block;
  }
}
.header .nav .nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1080px) {
  .header .nav .nav-list {
    display: block;
  }
}
.header .nav .nav-list a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
}
.header .nav .nav-list .nav-item .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #E6531D;
  border-bottom: 2px solid #E6531D;
  transform: rotate(45deg);
  margin-top: -4px;
}
@media (max-width: 1080px) {
  .header .nav .nav-list .nav-item .arrow {
    display: none;
  }
}
.header .nav .nav-list .nav-item .accordion-icon {
  display: none;
}
@media (max-width: 1080px) {
  .header .nav .nav-list .nav-item .accordion-icon {
    display: block;
    color: #E6531D;
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
  }
}
@media (max-width: 1080px) {
  .header .nav .nav-list .nav-item {
    width: 100%;
    padding: 0 24px;
  }
  .header .nav .nav-list .nav-item + .nav-item > a, .header .nav .nav-list .nav-item + .nav-item .nav-parent {
    border-top: none;
  }
  .header .nav .nav-list .nav-item {
    /* ホーム・入会案内などサブメニューなし項目 */
  }
  .header .nav .nav-list .nav-item > a:not(.nav-parent) {
    width: calc(100% + 48px);
    margin-left: -24px;
    box-sizing: border-box;
    padding: 15px 24px;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    font-size: 16px;
    letter-spacing: 2px;
  }
}
.header .nav .nav-list .menu {
  position: relative;
}
.header .nav .nav-list .menu:hover .submenu, .header .nav .nav-list .menu:focus-within .submenu {
  display: block;
}
@media (max-width: 1080px) {
  .header .nav .nav-list .menu {
    /* hoverより.is-openを優先（アコーディオン開閉の不具合対策） */
  }
  .header .nav .nav-list .menu:hover .submenu, .header .nav .nav-list .menu:focus-within .submenu {
    display: none;
  }
  .header .nav .nav-list .menu:hover .submenu.is-open, .header .nav .nav-list .menu:focus-within .submenu.is-open {
    display: block;
  }
}
@media (max-width: 1080px) {
  .header .nav .nav-list .menu .nav-parent {
    width: calc(100% + 48px);
    margin-left: -24px;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 15px 16px 15px 24px;
    border-top: 1px solid #D9D9D9;
    font-size: 16px;
    letter-spacing: 2px;
  }
}
.header .nav .nav-list .menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 224px;
  padding: 16px 0 0;
  margin: 0;
  z-index: 1100;
  background-color: transparent;
}
.header .nav .nav-list .menu .submenu li {
  list-style: none;
  border: 1px solid #D9D9D9;
  padding: 16px;
  font-size: 15px;
  letter-spacing: 2px;
  background-color: #fff;
}
.header .nav .nav-list .menu .submenu li:first-child {
  border-bottom: 0;
}
.header .nav .nav-list .menu .submenu li a {
  position: relative;
  padding-left: 8px;
  font-weight: 400;
  font-size: 15px;
}
.header .nav .nav-list .menu .submenu li a:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url("../img/footer_arrow.png") no-repeat center;
  background-size: contain;
  position: relative;
  top: 0.5px;
}
@media (max-width: 1080px) {
  .header .nav .nav-list .menu .submenu {
    position: static;
    width: auto;
    padding: 0;
  }
  .header .nav .nav-list .menu .submenu.is-open {
    display: block;
    width: calc(100% + 48px);
    margin-left: -24px;
    padding: 7px 24px;
    border-top: 1px solid #D9D9D9;
  }
  .header .nav .nav-list .menu .submenu li {
    margin: 5px 0 10px;
    padding: 0;
    border: none;
    background: transparent;
  }
  .header .nav .nav-list .menu .submenu li a {
    display: block;
    line-height: 1.4;
    padding-left: 25px;
    font-weight: 500;
    letter-spacing: 2px;
  }
  .header .nav .nav-list .menu .submenu li a:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header .header-actions {
  display: flex;
  align-items: center;
  margin-left: 40px;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .header .header-actions {
    margin-left: auto;
  }
}
.header .header-actions .hamburger {
  display: none;
}
@media (max-width: 1080px) {
  .header .header-actions .hamburger {
    display: flex;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: #fff;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
  }
  .header .header-actions .hamburger span {
    width: 28px;
    height: 1px;
    background: #1D1D1D;
    display: block;
    transition: 0.3s;
  }
  .header .header-actions .hamburger.is-open span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
  }
  .header .header-actions .hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header .header-actions .hamburger.is-open span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
  }
}
.header .header-actions .contact-btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 96px;
  background: #E6531D;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 1080px) {
  .header .header-actions .contact-btn {
    display: none;
  }
}
.header .header-actions .header-contact {
  display: none;
}
@media (max-width: 1080px) {
  .header .header-actions .header-contact {
    display: flex;
    width: 64px;
    height: 64px;
    background: #E6531D;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  .header .header-actions .header-contact img {
    width: 100%;
    height: 100%;
  }
}

.footer {
  position: relative;
  padding: 64px 0;
}
@media (max-width: 960px) {
  .footer {
    padding: 40px 0 0;
    margin-bottom: 60px;
  }
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }
}
@media (max-width: 960px) {
  .footer .footer-logo {
    text-align: center;
  }
}
.footer .footer-logo a {
  display: inline-block;
  transition: opacity 0.3s;
}
.footer .footer-logo a:hover {
  opacity: 0.7;
}
.footer .footer-logo img {
  display: block;
  width: 164px;
  height: 123px;
}
@media (max-width: 960px) {
  .footer .footer-logo img {
    margin: 0 auto;
  }
}
.footer .footer-logo p {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 1px;
}
@media (max-width: 960px) {
  .footer .footer-logo p {
    text-align: center;
  }
}
.footer .fnav {
  display: flex;
  gap: 40px;
}
@media (min-width: 961px) and (max-width: 1200px) {
  .footer .fnav {
    margin-left: 40px;
    gap: 0;
  }
}
@media (max-width: 960px) {
  .footer .fnav {
    display: block;
  }
}
.footer .fnav .box {
  width: 220px;
}
@media (min-width: 961px) and (max-width: 1200px) {
  .footer .fnav .box {
    padding-right: 20px;
  }
}
@media (max-width: 960px) {
  .footer .fnav .box {
    width: 100%;
  }
  .footer .fnav .box + .box h3 {
    border-top: none;
  }
}
.footer .fnav .box h3 {
  padding-bottom: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  border-bottom: 1px solid #D9D9D9;
}
@media (max-width: 960px) {
  .footer .fnav .box h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: calc(100% + 48px);
    margin: 0 0 0 -24px;
    padding: 15px 0 15px 24px;
    border-top: 1px solid #D9D9D9;
    cursor: pointer;
  }
}
.footer .fnav .box ul {
  list-style: none;
}
.footer .fnav .box ul li + li {
  margin-top: 4px;
}
@media (max-width: 960px) {
  .footer .fnav .box ul {
    display: none;
    margin-top: 15px;
  }
  .footer .fnav .box ul li {
    margin: 5px 0 10px;
    letter-spacing: 2px;
  }
  .footer .fnav .box ul li + li {
    margin-top: 0;
  }
  .footer .fnav .box ul.is-open {
    display: block;
    width: calc(100% + 48px);
    margin-left: -24px;
    padding: 0 24px 7px;
    border-bottom: 1px solid #D9D9D9;
  }
}
.footer .fnav .box a {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #1D1D1D;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer .fnav .box a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 10px;
  background: url("../img/footer_arrow.png") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
}
.footer .fnav .box a:hover {
  opacity: 0.7;
}
.footer .footer-bottom {
  display: flex;
  align-items: center;
  border-top: 1px solid #D9D9D9;
  margin-top: 48px;
  padding: 24px 0;
}
@media (max-width: 960px) {
  .footer .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
    border-top: none;
    margin-top: 24px;
    padding: 0;
  }
}
.footer small {
  font-size: 14px;
}
@media (max-width: 960px) {
  .footer small {
    display: block;
    box-sizing: border-box;
    width: 100vw;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding: 16px 24px;
    background: #E6531D;
  }
}
.footer .footer-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  letter-spacing: 1px;
}
.footer .footer-links a {
  font-size: 14px;
  color: #1D1D1D;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer .footer-links a:hover {
  opacity: 0.7;
}
@media (max-width: 960px) {
  .footer .footer-links {
    margin-left: 0;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    text-align: center;
  }
  .footer .footer-links a {
    display: block;
  }
}
.footer .page-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 999;
  transition: opacity 0.3s;
}
.footer .page-top:hover {
  opacity: 0.7;
}
.footer .page-top img {
  display: block;
}
@media (max-width: 960px) {
  .footer .page-top {
    right: 8px;
    bottom: 64px;
  }
  .footer .page-top img {
    width: 48px;
    height: 48px;
  }
}
.footer .accordion-icon {
  display: none;
}
@media (max-width: 960px) {
  .footer .accordion-icon {
    display: block;
    color: #E6531D;
    font-size: 21px;
    line-height: 1;
    font-weight: 700;
    padding: 0 16px 0 0;
  }
}
@media (max-width: 960px) {
  .footer {
    overflow-x: clip;
  }
}

/*-----------------------------------------------------------------------------------------*/
/*TOP*/
/*-----------------------------------------------------------------------------------------*/
.mv {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 600px;
  background: url("../img/mv-top.jpg") no-repeat bottom;
  background-size: cover;
}
@media (max-width: 768px) {
  .mv {
    align-items: end;
    background: url("../img/mv-top-sp.jpg") no-repeat bottom;
    background-size: cover;
    padding-bottom: 64px;
  }
}
.mv .inner br.sp {
  display: none;
}
@media (max-width: 480px) {
  .mv .inner br.sp {
    display: block;
  }
}
.mv .inner h2 {
  font-size: 56px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .mv .inner h2 {
    font-size: 28px;
  }
}
.mv .inner h2 span {
  background: linear-gradient(transparent 10%, #fff 10%);
}
.mv .inner p {
  margin-top: 20px;
}
@media (max-width: 960px) {
  .mv .inner p {
    margin-top: 16px;
  }
}
.mv .inner p span {
  font-size: 24px;
  font-weight: 500;
  padding-left: 8px;
  background: linear-gradient(transparent 10%, #fff 10%);
}
.mv .inner p span strong {
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 960px) {
  .mv .inner p span {
    font-size: 16px;
  }
}

.logo-area {
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.logo-area .logo-inner {
  width: 100%;
  margin: 0 auto;
}
.logo-area .logo-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: logo-scroll 20s linear infinite;
}
.logo-area .logo-list {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 120px;
}
.logo-area .logo-list .logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.logo-area .logo-list .logo-item img {
  height: 80px;
  width: auto;
  max-width: 272px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.logo-area .logo-list .logo-item.logo-company1 {
  margin-right: 0;
  margin-left: 40px;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.section-about {
  position: relative;
  overflow: hidden;
  background: #F7F7F7;
}
.section-about .inner {
  position: relative;
  z-index: 2;
}
.section-about::before, .section-about::after {
  position: absolute;
  content: "";
  z-index: 1;
}
.section-about::before {
  width: 438px;
  height: 428px;
  top: 0;
  left: -48px;
  background: url(../img/about-logo-left.png) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 768px) {
  .section-about::before {
    width: 280px;
    height: 280px;
    left: auto;
    right: -24px;
  }
}
.section-about::after {
  width: 681px;
  height: 769px;
  right: -48px;
  bottom: -48px;
  background: url(../img/about-logo-right.png) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 768px) {
  .section-about::after {
    display: none;
  }
}

.section-feature {
  position: relative;
}
.section-feature .inner {
  position: relative;
  z-index: 2;
}
.section-feature::before, .section-feature::after {
  position: absolute;
  content: "";
  z-index: 1;
}
.section-feature::before {
  width: 584px;
  height: 592px;
  top: -32px;
  left: -80px;
  background: url(../img/deco-logo-gray.png) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 768px) {
  .section-feature::before {
    width: 280px;
    height: 280px;
    left: auto;
    right: -48px;
  }
}
.section-feature::after {
  width: 605px;
  height: 629px;
  top: -64px;
  right: 0;
  background: url(../img/img-top-feature.png) no-repeat;
}
@media (max-width: 1200px) {
  .section-feature::after {
    display: none;
  }
}
.section-feature .activity-box {
  margin-top: 104px;
}
@media (max-width: 480px) {
  .section-feature .activity-box {
    margin-top: 40px;
  }
}

.section-sponsor {
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}
.section-sponsor .inner {
  position: relative;
  z-index: 2;
}
.section-sponsor .ttl-box {
  padding-bottom: 70px;
  border-bottom: 1px solid #D9D9D9;
}
@media (max-width: 480px) {
  .section-sponsor .ttl-box {
    padding-bottom: 40px;
  }
}
.section-sponsor .ttl-box h2 {
  font-size: 36px;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  .section-sponsor .ttl-box h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .section-sponsor .ttl-box h2 {
    font-size: 24px;
  }
}
.section-sponsor .ttl-box h2 strong {
  color: #E6531D;
}
.section-sponsor .ttl-box span {
  font-size: 20px;
  margin-bottom: 24px;
}
.section-sponsor::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: -20px;
  width: 410px;
  height: 410px;
  background: url(../img/logo-deco.png) no-repeat center/contain;
  opacity: 1;
}

.sponsor-company {
  display: flex;
  align-items: center;
  height: 180px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .sponsor-company {
    flex-direction: column;
    height: auto;
    gap: 24px;
    align-items: flex-start;
  }
}

.sponsor-logo {
  flex-shrink: 0;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.08);
  width: 360px;
  height: 170px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .sponsor-logo {
    width: 100%;
  }
}

.sponsor-logo img {
  max-width: 75%;
  height: auto;
}

.sponsor-info {
  flex: 1;
  align-items: center;
  margin-left: 50px;
}
@media (max-width: 768px) {
  .sponsor-info {
    margin-left: 0;
  }
}

.sponsor-company-name {
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-size: 20px;
  font-weight: 500;
  color: #1D1D1D;
}

.sponsor-company-text {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.sponsor-url {
  font-size: 16px;
  letter-spacing: 0;
}
.sponsor-url a {
  display: block;
  color: #E6531D;
  text-decoration: underline;
}

.section-partner {
  position: relative;
  overflow: hidden;
  background: #F5F5F5;
}
.section-partner .inner {
  position: relative;
  z-index: 2;
}
.section-partner .ttl-box {
  margin-bottom: 24px;
}
.section-partner .ttl-box h2 {
  font-size: 36px;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  .section-partner .ttl-box h2 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .section-partner .ttl-box h2 {
    font-size: 24px;
  }
}
.section-partner .ttl-box span {
  font-size: 20px;
  margin-bottom: 24px;
}
.section-partner .ttl-box p a {
  color: #E6531D;
  text-decoration: underline;
}
.section-partner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background: url(../img/logo-deco.png) no-repeat center bottom/contain;
  background-size: 100% auto;
}
@media (max-width: 768px) {
  .section-partner::before {
    width: 280px;
    height: 320px;
    top: -16px;
    left: auto;
    right: -24px;
  }
}
.section-partner .partner-banner-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.section-partner .partner-banner-list img {
  width: 100%;
}
@media (max-width: 768px) {
  .section-partner .partner-banner-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .section-partner .partner-banner-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.cta-btn-box {
  display: flex;
  width: 100%;
}
@media (max-width: 960px) {
  .cta-btn-box {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
  }
}
.cta-btn-box .cta-column {
  width: 50%;
  height: 144px;
  display: flex;
  align-items: center;
}
.cta-btn-box .cta-column a {
  position: relative;
}
.cta-btn-box .cta-column a::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 64px;
  top: calc(50% - 32px);
  right: 40px;
  z-index: 2;
}
@media (max-width: 960px) {
  .cta-btn-box .cta-column a::before {
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
    right: 8px;
  }
}
.cta-btn-box .cta-column.orange {
  background: #C53500;
  justify-content: flex-end;
}
.cta-btn-box .cta-column.orange a::before {
  background: url(../img/icon-yagirushi_orange.png) no-repeat;
  background-size: 100% auto;
}
.cta-btn-box .cta-column.blue {
  background: #043192;
  justify-content: flex-start;
}
.cta-btn-box .cta-column.blue a::before {
  background: url(../img/icon-yagirushi_blue.png) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 960px) {
  .cta-btn-box .cta-column {
    height: 60px;
    justify-content: center;
  }
}
.cta-btn-box .cta-item {
  position: relative;
  text-decoration: none;
  width: 540px;
  height: 144px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}
.cta-btn-box .cta-item:hover {
  opacity: 0.7;
}
.cta-btn-box .cta-item h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Geom", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  padding: 0 56px;
  box-sizing: border-box;
}
@media (max-width: 960px) {
  .cta-btn-box .cta-item h3 {
    font-size: 14px;
    line-height: 1.4;
    padding: 0 18px;
  }
}
@media (max-width: 480px) {
  .cta-btn-box .cta-item h3 {
    letter-spacing: 1px;
  }
}
.cta-btn-box .cta-item img {
  position: absolute;
  right: 90px;
  bottom: -20px;
  width: 170px;
  height: auto;
  opacity: 0.2;
  filter: brightness(2.8);
  pointer-events: none;
}
@media (min-width: 961px) and (max-width: 1200px) {
  .cta-btn-box .cta-item img {
    right: 60px;
  }
}
@media (max-width: 960px) {
  .cta-btn-box .cta-item img {
    display: none;
  }
}
@media (max-width: 960px) {
  .cta-btn-box .cta-item {
    width: 100%;
    height: 60px;
  }
}
.cta-btn-box .cta-column.orange .cta-item {
  background: #E6531D;
}
@media (min-width: 961px) {
  .cta-btn-box .cta-column.orange .cta-item {
    margin-left: 30px;
  }
}
.cta-btn-box .cta-column.orange .cta-item img {
  bottom: -5px;
  width: 140px;
}
@media (min-width: 961px) and (max-width: 1200px) {
  .cta-btn-box .cta-column.orange .cta-item img {
    width: 30%;
  }
}
.cta-btn-box .cta-column.blue .cta-item {
  background: #1E49A4;
}
@media (min-width: 961px) {
  .cta-btn-box .cta-column.blue .cta-item {
    margin-right: 30px;
  }
}
.cta-btn-box .cta-column.blue .cta-item img {
  top: 5px;
  bottom: -5px;
  width: 170px;
}
@media (min-width: 961px) and (max-width: 1200px) {
  .cta-btn-box .cta-column.blue .cta-item img {
    top: 15px;
    width: 35%;
  }
}

/*-----------------------------------------------------------------------------------------*/
/*bB-connectとは*/
/*-----------------------------------------------------------------------------------------*/
.section-about-mission .head-box {
  align-items: first baseline;
}
.section-about-mission .head-box.flex-box {
  margin-bottom: 0;
}
.section-about-mission .head-box.flex-box .txt {
  margin-top: 24px;
}
.section-about-mission .head-box.flex-box .txt h3 br.sp {
  display: none;
}
@media (max-width: 480px) {
  .section-about-mission .head-box.flex-box .txt h3 br.sp {
    display: block;
  }
}
.section-about-mission .head-box.flex-box .txt p {
  font-size: 16px;
}

/*-----------------------------------------------------------------------------------------*/
/*入会案内*/
/*-----------------------------------------------------------------------------------------*/
.section-join-get .get-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1280px) {
  .section-join-get .get-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section-join-get .get-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .section-join-get .get-box {
    margin-top: 36px;
  }
}
.section-join-get .get-box .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  min-height: 252px;
  padding: 40px 20px 32px;
  border: 1px solid #E6531D;
  border-radius: 16px;
  background: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .section-join-get .get-box .box {
    flex-direction: inherit;
    gap: 24px;
    min-height: auto;
    text-align: left;
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .section-join-get .get-box .box {
    gap: 16px;
    padding: 20px;
    border-radius: 8px;
  }
}
.section-join-get .get-box .box img {
  display: block;
  height: 60px;
  width: auto;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .section-join-get .get-box .box img {
    width: 80px;
    height: auto;
  }
}
@media (max-width: 480px) {
  .section-join-get .get-box .box img {
    width: 48px;
  }
}
.section-join-get .get-box .box h3 {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 500;
}
.section-join-get .get-box .box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .section-join-get .get-box .box p br {
    display: none;
  }
}

.section-category {
  background: url(../img/bg-member.png) no-repeat;
  background-size: cover;
  text-align: center;
}
.section-category .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-category .inner > p {
  color: #fff;
  margin-top: 24px;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 480px) {
  .section-category .inner > p {
    font-size: 15px;
    text-align: left;
  }
}
.section-category .head-box {
  margin-bottom: 0;
}
.section-category .head-box h2 {
  color: #fff;
}
.section-category .head-box span {
  color: #fff;
}
.section-category .head-box p {
  color: #fff;
}
.section-category .head-box p strong {
  color: #fff;
}
.section-category .category-lead {
  font-family: "Geom", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section-category .category-lead {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .section-category .category-lead {
    font-size: 24px;
  }
}
.section-category .category-lead br.sp {
  display: none;
}
@media (max-width: 480px) {
  .section-category .category-lead br.sp {
    display: block;
  }
}
.section-category .category-lead strong {
  color: #fff;
  font-family: "Geom", sans-serif;
  font-size: 64px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .section-category .category-lead strong {
    font-size: 40px;
  }
}
.section-category .category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
  list-style: none;
}
@media (max-width: 480px) {
  .section-category .category-tags {
    margin: 32px 0 16px;
  }
}
.section-category .category-tags li {
  padding: 8px 16px;
  border-radius: 16.5px;
  background: #fff;
  color: #E6531D;
  font-size: 14px;
  font-weight: 500;
}
.section-category .btn {
  width: 320px;
  margin-top: 40px;
}
@media (max-width: 480px) {
  .section-category .btn {
    width: 100%;
    max-width: 320px;
  }
}

.section-membership .membership-box .box {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #D9D9D9;
}
.section-membership .membership-box .box:first-child {
  border: 0;
  padding: 0;
  margin: 0;
}
.section-membership .membership-box .box h3 {
  margin-bottom: 8px;
  color: #E6531D;
  font-size: 16px;
  font-weight: 500;
}
.section-membership .membership-box .box p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
.section-membership .membership-box .box .price {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
}
.section-membership .membership-box .box .price strong {
  color: #1D1D1D;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
.section-membership .membership-box .box .price span {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
}
.section-membership .membership-box .box .price small {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

/*-----------------------------------------------------------------------------------------*/
/*お問い合わせフォーム*/
/*-----------------------------------------------------------------------------------------*/
.form-page-alert-box {
  box-sizing: border-box;
  border: 1px solid #E6531D;
  border-radius: 12px;
  background-color: rgba(230, 83, 29, 0.05);
  padding: 32px;
  margin-top: 64px;
}
@media (max-width: 1200px) {
  .form-page-alert-box {
    margin-top: 48px;
  }
}
@media (max-width: 768px) {
  .form-page-alert-box {
    margin-top: 42px;
  }
}
@media (max-width: 480px) {
  .form-page-alert-box {
    padding: 20px 18px;
    margin-top: 36px;
  }
}
.form-page-alert-box .form-page-alert-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 32px;
  background: url("../img/icon-alert.svg") no-repeat left center/24px 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 4px;
  color: #E6531D;
}
.form-page-alert-box .form-page-alert-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 1px;
  color: #1D1D1D;
  padding-top: 18px;
  width: 100%;
}
@media (max-width: 768px) {
  .form-page-alert-box .form-page-alert-text {
    padding-top: 14px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .form-page-alert-box .form-page-alert-text {
    font-size: 15px;
    line-height: 1.6;
    padding-top: 12px;
  }
}

.contact-form-section {
  width: 100%;
  background-color: #F5F5F5;
}
.contact-form-section .contact-form-inner {
  padding: 96px 180px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1200px) {
  .contact-form-section .contact-form-inner {
    padding: 80px 80px;
  }
}
@media (max-width: 768px) {
  .contact-form-section .contact-form-inner {
    padding: 60px 40px;
  }
}
@media (max-width: 480px) {
  .contact-form-section .contact-form-inner {
    padding: 48px 24px;
  }
}
.contact-form-section .contact-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .contact-form-section .contact-form {
    max-width: 100%;
  }
}
.contact-form-section .contact-form .form-group {
  margin-bottom: 32px;
}
.contact-form-section .contact-form .form-group:not(:has(+ .form-group)) {
  margin-bottom: 0;
}
.contact-form-section .contact-form .form-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 2px;
  color: #1D1D1D;
}
.contact-form-section .contact-form .form-label::before {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 23px;
  padding: 3px 8px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #FFFFFF;
  border-radius: 2px;
  white-space: nowrap;
}
.contact-form-section .contact-form .form-label.required::before {
  content: "必須";
  background-color: #E6531D;
}
.contact-form-section .contact-form .form-label.optional::before {
  content: "任意";
  background-color: #7C7C7C;
}
.contact-form-section .contact-form .form-select,
.contact-form-section .contact-form .form-input,
.contact-form-section .contact-form .form-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 12px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
}
@media (max-width: 1200px) {
  .contact-form-section .contact-form .form-select,
  .contact-form-section .contact-form .form-input,
  .contact-form-section .contact-form .form-textarea {
    margin-top: 14px;
  }
}
@media (max-width: 768px) {
  .contact-form-section .contact-form .form-select,
  .contact-form-section .contact-form .form-input,
  .contact-form-section .contact-form .form-textarea {
    margin-top: 13px;
  }
}
@media (max-width: 480px) {
  .contact-form-section .contact-form .form-select,
  .contact-form-section .contact-form .form-input,
  .contact-form-section .contact-form .form-textarea {
    margin-top: 12px;
  }
}
.contact-form-section .contact-form .form-select {
  height: 51px;
  color: #1D1D1D;
  letter-spacing: 0;
  padding: 0px 24px 0px 20px;
  line-height: 49px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E6531D' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 24px) center;
  background-size: 9px 6px;
}
@media (max-width: 480px) {
  .contact-form-section .contact-form .form-select {
    padding: 0px 16px 0px 20px;
  }
}
.contact-form-section .contact-form .form-input {
  height: 51px;
  color: #1D1D1D;
  padding: 16px 20px;
  letter-spacing: 1px;
}
.contact-form-section .contact-form .form-input::-moz-placeholder {
  color: #C4C4C4;
}
.contact-form-section .contact-form .form-input::placeholder {
  color: #C4C4C4;
}
.contact-form-section .contact-form .form-textarea {
  height: 200px;
  resize: vertical;
  color: #1D1D1D;
  padding: 16px 20px;
  letter-spacing: 1px;
}
.contact-form-section .contact-form .form-textarea::-moz-placeholder {
  color: #C4C4C4;
}
.contact-form-section .contact-form .form-textarea::placeholder {
  color: #C4C4C4;
}
@media (max-width: 480px) {
  .contact-form-section .contact-form .form-textarea {
    padding: 16px 17px 16px 20px;
    line-height: 1.18;
  }
}
.contact-form-section .contact-form .form-privacy {
  margin-top: 48px;
  text-align: left;
}
@media (max-width: 1200px) {
  .contact-form-section .contact-form .form-privacy {
    margin-top: 42px;
  }
}
@media (max-width: 768px) {
  .contact-form-section .contact-form .form-privacy {
    margin-top: 36px;
  }
}
@media (max-width: 480px) {
  .contact-form-section .contact-form .form-privacy {
    margin-top: 24px;
  }
}
.contact-form-section .contact-form .form-privacy .privacy-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 1px;
  color: #1D1D1D;
}
@media (max-width: 480px) {
  .contact-form-section .contact-form .form-privacy .privacy-text {
    line-height: 1.86667;
  }
}
.contact-form-section .contact-form .form-privacy .privacy-link {
  color: #E6531D;
  text-decoration: underline;
}
.contact-form-section .contact-form .form-privacy .privacy-link:hover {
  text-decoration: none;
}
.contact-form-section .contact-form .form-privacy .form-sp-br {
  display: none;
}
@media (max-width: 376px) {
  .contact-form-section .contact-form .form-privacy .form-sp-br {
    display: inline;
  }
}
@media (max-width: 351px) {
  .contact-form-section .contact-form .form-privacy .form-sp-br {
    display: none;
  }
}
.contact-form-section .contact-form .form-submit-area {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.contact-form-section .contact-form .form-submit-area .submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 240px;
  height: 64px;
  background-color: #E6531D;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
  transition: opacity 0.3s;
}
.contact-form-section .contact-form .form-submit-area .submit-btn-text {
  font-family: "Geom", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  color: #FFFFFF;
}
.contact-form-section .contact-form .form-submit-area .submit-btn-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form-section .contact-form .form-submit-area .submit-btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-form-section .contact-form .form-submit-area .submit-btn:hover {
  opacity: 0.7;
}

/*-----------------------------------------------------------------------------------------*/
/*プライバシーポリシー*/
/*-----------------------------------------------------------------------------------------*/
.privacy-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.privacy-inner {
  padding: 16px 180px 96px 180px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .privacy-inner {
    padding: 16px 80px 72px 80px;
  }
}
@media (max-width: 768px) {
  .privacy-inner {
    padding: 16px 40px 64px 40px;
  }
}
@media (max-width: 480px) {
  .privacy-inner {
    padding: 4px 24px 48px 24px;
  }
}
.privacy-block {
  margin-bottom: 64px;
}
.privacy-block:not(:has(+ .privacy-block)) {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .privacy-block {
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .privacy-block {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .privacy-block {
    margin-bottom: 40px;
  }
}
.privacy-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2087;
  letter-spacing: 1px;
  color: #1D1D1D;
}
@media (max-width: 480px) {
  .privacy-title {
    font-size: 20px;
    line-height: 1.15;
  }
}
.privacy-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E6531D;
  margin-top: 16px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .privacy-title::after {
    margin-top: 12px;
    margin-bottom: 16px;
  }
}
.privacy-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 1px;
  color: #1D1D1D;
}
@media (max-width: 480px) {
  .privacy-text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.privacy-list {
  margin-top: 16px;
  list-style: none;
  padding-left: 0;
}
.privacy-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.3em;
}
.privacy-list li::before {
  content: "・";
  flex: 0 0 1em;
  text-align: center;
}
.privacy-list {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 1px;
  color: #1D1D1D;
}
@media (max-width: 480px) {
  .privacy-list {
    font-size: 15px;
    line-height: 1.6;
  }
}
.privacy-info {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 1px;
  color: #1D1D1D;
}
@media (max-width: 480px) {
  .privacy-info {
    font-size: 15px;
    line-height: 1.6;
  }
}

/*-----------------------------------------------------------------------------------------*/
/*コラボについて*/
/*-----------------------------------------------------------------------------------------*/
.section-collab-menu {
  background: #fff;
}

.section-works .works-box {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 48px;
  padding: 48px;
  background: #fff;
}
@media (max-width: 768px) {
  .section-works .works-box {
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 24px;
  }
}
.section-works .works-box .icon {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #D9D9D9;
}
@media (max-width: 480px) {
  .section-works .works-box .icon {
    width: 120px;
    height: 120px;
  }
}
.section-works .works-box .icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-works .works-box .txt h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.17em;
}
@media (max-width: 480px) {
  .section-works .works-box .txt h3 {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
.section-works .works-box .txt p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.07em;
}
.section-works .works-box .txt .link {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.section-works .works-box .txt .link a {
  color: #E6531D;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */