@charset "UTF-8";
/* mixin */
/* 基本設定 */
@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .spOnly {
    display: block !important;
  }
}
body {
  font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Meiryo", sans-serif;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  color: #333;
  background-color: #f9f9f9;
  font-size: 14px;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.8;
}

p {
  letter-spacing: 0.03em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .container {
    width: 90%;
    padding: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
}

/* ヘッダー */
@media screen and (min-width: 769px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.15);
    border: solid 1px rgba(255, 255, 255, 0.34);
    box-sizing: border-box;
    z-index: 100;
  }
  .container.header-container {
    padding: 0;
  }
  .logo {
    font-size: 24px;
    font-weight: bold;
    /* color: #ff6600; */
  }
  .headLogoBox {
    display: flex;
    align-items: center;
  }
  .headLogo {
    max-width: 110px;
    width: 100%;
    height: auto;
    text-align: center;
    background: #fff;
    display: inline-block;
  }
  .headLogo a {
    display: block;
    box-sizing: border-box;
    padding: 14px 20px;
    margin-bottom: -10px;
  }
  .headText {
    padding-left: 10px;
    text-align: left;
    color: #fff;
    display: inline-block;
  }
  nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    box-sizing: border-box;
    padding-right: 40px;
  }
  nav li {
    margin-left: 30px;
    text-align: center;
  }
  nav a {
    font-size: 16px;
    font-weight: bold;
    transition: opacity 0.3s;
    color: #fff;
    font-family: brothers, sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  nav a:hover {
    opacity: 0.7;
  }
  nav a span {
    display: block;
    font-size: 12px;
    line-height: 1em;
    color: #999;
    font-weight: 500;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  .hamburger-icon {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .spHeadLogo {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .spHeadLogo {
    display: block;
    position: absolute;
    left: 20px;
    top: 10px;
    width: 70px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .hamburger-menu {
    width: 100%;
    position: fixed;
    right: 0px;
    top: 0;
    height: 50px;
    padding-top: 20px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
  }
  .headLogoBox {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .headLogoBox a {
    display: block;
  }
  .headLogoBox .headLogo {
    width: 100%;
    text-align: center;
    display: block;
  }
  .headLogoBox .headLogo a {
    width: 120px;
    margin: 0 auto 10px;
  }
  .headLogoBox .headText {
    display: block;
    color: #fff;
    font-size: 22px;
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
  }
  .main-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
  }
  .main-nav ul li a {
    color: #fff;
    font-family: brothers, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
  }
  .main-nav ul li a span {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.8);
  }
  .main-nav ul li a span:before {
    content: "｜";
    padding-right: 10px;
  }
  /* ハンバーガーアイコン */
  .hamburger-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 1001;
    right: 20px;
  }
  /* ハンバーガーの線 */
  .hamburger-icon span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
    position: absolute;
  }
  /* 1本目（上の線） */
  .hamburger-icon span:nth-child(1) {
    top: 0;
  }
  /* 2本目（中央の線） */
  .hamburger-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  /* 3本目（下の線） */
  .hamburger-icon span:nth-child(3) {
    bottom: 0;
  }
  /* フルスクリーンメニュー */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
  }
  /* メニューが開いたとき */
  .menu.active {
    opacity: 1;
    visibility: visible;
  }
  .hamburger-menu.active .hamburger-icon span {
    background: #fff;
  }
  /* ハンバーガーアイコンが「×」に変形 */
  .hamburger-menu.active .hamburger-icon span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  .hamburger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .hamburger-icon span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
}
@media screen and (max-width: 768px) {
  footer .container {
    width: 100%;
    margin: 0 auto;
  }
}
footer.site-footer {
  background-color: #1a202c;
  color: #fff;
  padding: 120px 0 40px;
}
@media screen and (max-width: 768px) {
  footer.site-footer {
    padding: 80px 0 40px;
  }
}
footer.site-footer .footer-contact {
  text-align: center;
  margin-bottom: 120px;
}
footer.site-footer .footer-contact p {
  font-size: 18px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  footer.site-footer .footer-contact {
    width: 90%;
    margin: 0 auto 60px;
  }
  footer.site-footer .footer-contact p {
    font-size: 16px;
  }
}
footer.site-footer .fotBtnContact a {
  height: 66px;
  line-height: 66px;
  border-radius: 33px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 30px;
  max-width: 350px;
  width: 100%;
  background: #fff;
  color: #000;
  text-align: center;
  margin: 0 auto;
  font-size: 16px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
footer.site-footer .fotBtnContact a .nseLogo img {
  width: 60px;
  margin-top: 10px;
}
footer.site-footer .fotBtnContact a .instLogo img {
  width: 30px;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  footer.site-footer .fotBtnContact a {
    height: 50px;
    line-height: 50px;
  }
  footer.site-footer .fotBtnContact a .nseLogo img {
    width: 40px;
    margin-top: 10px;
  }
  footer.site-footer .fotBtnContact a .instLogo img {
    width: 20px;
    margin-top: 15px;
  }
}
footer.site-footer .btn-instagram {
  background-color: #fff;
  color: #1a202c;
  margin-top: 20px;
  padding: 10px 50px;
}
footer.site-footer .btn-instagram:hover {
  background-color: #eee;
}
footer .footer-bottom {
  text-align: center;
  display: block;
}
footer .footer-bottom nav {
  display: block;
  text-align: center;
  padding: 0;
}
footer .footer-bottom nav ul {
  display: flex;
  justify-content: center;
}
footer .footer-bottom nav ul li {
  margin-left: 0;
  text-align: center;
}
footer .footer-bottom .footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
footer .footer-bottom .footer-nav ul li {
  margin-left: 20px;
}
footer .footer-bottom .footer-nav ul li:first-child {
  margin-left: 0;
}
footer .footer-bottom .footer-nav ul li a {
  font-size: 13px;
  transition: opacity 0.3s;
}
footer .footer-bottom .footer-nav ul li a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom .footer-nav {
    text-align: left;
  }
  footer .footer-bottom .footer-nav ul {
    display: block;
    width: 96%;
    margin: 0 auto;
  }
  footer .footer-bottom .footer-nav ul li {
    width: 100%;
    margin-left: 0 !important;
    text-align: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  }
  footer .footer-bottom .footer-nav ul li:first-child {
    border-top: 1px dashed rgba(255, 255, 255, 0.4);
  }
  footer .footer-bottom .footer-nav ul li a {
    display: block;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
    padding: 0 20px;
    font-family: brothers, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.1);
  }
  footer .footer-bottom .footer-nav ul li a span {
    font-family: hiragino-kaku-gothic-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.8);
  }
  footer .footer-bottom .footer-nav ul li a span:before {
    content: "｜";
    padding-right: 10px;
  }
}
footer .copyright {
  color: #9d9696;
  font-size: 10px;
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    margin-top: 20px;
    text-align: center;
    display: block;
  }
}

/* ヒーローセクション (トップページ) */
.hero-philosophy {
  background: url("../img/bg_top.jpg") no-repeat center center;
  position: relative;
  /* 画像がないため背景色で代用 */
  background-color: #2c3e50;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}
.hero-philosophy .container {
  padding: 100px 0;
}
.hero-philosophy h2 {
  font-size: 21px;
  margin-bottom: 0;
  color: #929699;
  line-height: 1em;
  font-family: brothers, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.hero-philosophy h1 {
  font-size: 32px;
  margin-top: 5px;
  margin-bottom: 20px;
}
.hero-philosophy p {
  font-size: 16px;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .hero-philosophy {
    padding: 50px 0;
  }
  .hero-philosophy p {
    text-align: left;
    line-height: 2em;
    font-size: 15px;
  }
}
.hero-philosophy .pickupNews {
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  left: auto;
  right: auto;
  background: rgba(40, 60, 190, 0.3);
  height: 50px;
  line-height: 50px;
  box-sizing: border-box;
  padding: 0 0px;
}
.hero-philosophy .pickupNews .pickupNewsIn {
  text-align: left;
  display: flex;
  justify-content: flex-start;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.hero-philosophy .pickupNews .PickupNewsTitle {
  flex-basis: 90px;
  text-align: center;
}
.hero-philosophy .pickupNews ul {
  text-align: left;
  text-align: left;
  margin: 0;
  list-style: none;
  padding: 0;
}
.hero-philosophy .pickupNews ul li a {
  display: block;
  text-decoration: underline;
}

/* セクション共通 */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}

/* NSEの取り組み */
.nse-initiatives {
  padding: 80px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .nse-initiatives {
    padding: 40px 0;
  }
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .initiatives-grid {
    display: block;
  }
}

.initiative-item {
  /* border: 1px solid #e0e0e0; */
  padding: 0px;
  margin-bottom: 40px;
}
.initiative-item h3 {
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-top: 0;
  line-height: 1.4em;
}
.initiative-item p {
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  .initiative-item {
    margin-bottom: 60px;
  }
  .initiative-item p {
    line-height: 1.6em;
  }
}

.nse-initiatives .center-logo {
  width: 280px;
  margin: 0 auto;
}

/* 中央ロゴ */
.center-logo {
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .center-logo {
    padding: 0px 0 40px;
  }
  .center-logo img {
    width: 80%;
  }
}

/* CTAセクション */
.cta-section {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta-section h2 {
    font-size: 22px !important;
  }
}

.academy-cta {
  background: url("../img/bg_acd.png") no-repeat center center;
  background-size: cover;
  background-color: #1a202c;
  color: #fff;
}
.academy-cta p + p {
  font-weight: bold;
}
.academy-cta h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .academy-cta p {
    text-align: left;
  }
}

.sponsor-cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.academy-cta h2 span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.05em;
  line-height: 1em;
  font-family: brothers, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.sponsor-cta {
  background-color: #fff;
}
.sponsor-cta h2 span {
  display: block;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.42);
  letter-spacing: 0.05em;
  line-height: 1em;
  font-family: brothers, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.sponsor-cta .container {
  max-width: 1000px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
}
.sponsor-cta .container p {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sponsor-cta .container p {
    text-align: left;
  }
}

.btn {
  display: inline-block;
  padding: 6px 70px;
  /* border-radius: 5px; */
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 6px 0;
    display: block;
    width: 80%;
    margin: 20px auto 0;
  }
}

.btn-primary {
  background-color: #ff6600;
  color: #fff;
  border: 1px solid #ff6600;
}
.btn-primary:hover {
  background-color: #e65c00;
}

/* スポンサーロゴ */
.sponsors-logo {
  padding: 80px 0;
  background-color: #fff;
  background: #fff;
}
.sponsors-logo .logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.sponsors-logo .sponsor-logo-item {
  font-size: 24px;
  font-weight: bold;
  color: #555;
}
@media screen and (max-width: 768px) {
  .sponsors-logo {
    padding-top: 0;
  }
  .sponsors-logo h2 {
    font-size: 22px;
    margin-top: 0;
  }
  .sponsors-logo .logo-list {
    gap: 30px;
  }
  .sponsors-logo .sponsor-logo-item {
    font-size: 20px;
  }
}
.sponsors-logo .sponsorBox {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.sponsors-logo .sponsorBox:first-child {
  margin-top: 0;
}
.sponsors-logo .sponsorBox h3 {
  margin: 0;
  text-align: center;
  display: block;
  font-size: 18px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  height: 38px;
  line-height: 38px;
  background: #cecece;
}
.sponsors-logo .sponsorBox ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.sponsors-logo .sponsorBox ul li {
  width: 50%;
  box-sizing: border-box;
  text-align: center;
  padding: 30px 4%;
}
.sponsors-logo .sponsorBox ul li.nopd {
  padding-top: 0;
  padding-bottom: 0;
}
.sponsors-logo .sponsorBox.column3 ul li {
  width: 33%;
  padding-left: 3%;
  padding-right: 3%;
}
.sponsors-logo .sponsorBox.column4 ul li {
  width: 25%;
  padding-left: 2%;
  padding-right: 2%;
}

/* ============================
   下層ページ用スタイル
   ============================ */
/* 下層ページ共通 */
.subpage {
  box-sizing: border-box;
}
.subpage .page-hero {
  background: url("../img/bg_acd.png") no-repeat center center;
  background-size: cover;
  background-color: #1a202c;
  background-color: #1a202c;
  color: #fff;
  padding: 160px 0 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subpage .page-hero {
    padding: 100px 0 40px;
  }
}
.subpage .page-content {
  width: 96%;
  margin: 0 auto;
}
.subpage .page-title {
  font-size: 32px;
  margin: 5px 0 0 0;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.subpage .page-title .page-subtitle {
  display: block;
  font-size: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-family: brothers, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1em;
}
@media screen and (max-width: 768px) {
  .subpage .page-title {
    font-size: 22px;
  }
}
.subpage .page-content {
  padding: 80px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .subpage .page-content {
    padding: 40px 0;
  }
}
.subpage .content-section {
  margin-bottom: 60px;
  display: flex;
}
.subpage .content-section h2 {
  margin: 0;
}
.subpage .content-section ol {
  margin: 0;
}
.subpage .content-section .content-title {
  font-size: 24px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  width: 280px;
  margin-bottom: 10px;
}
.subpage .content-section .conotentBox {
  flex: 1;
}
.subpage .content-section .conotentBox.profile h3 {
  font-size: 16px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin: 0;
}
.subpage .content-section .conotentBox.profile h3 + p {
  margin-top: 0;
  margin-bottom: 50px;
}
.subpage .content-section .conotentBox.profile h3 + p span {
  display: block;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.subpage .content-section.nerai .conotentBox {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.subpage .content-section.col1 {
  display: block;
}
.subpage .content-section.col1 .content-title {
  font-size: 24px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .subpage .content-section {
    display: block;
  }
  .subpage .content-section .content-title {
    text-align: center;
    width: 100%;
    font-size: 22px;
  }
}
.subpage .text-center {
  text-align: center;
}

/* アカデミーページ */
.styled-list {
  padding-left: 20px;
}
.styled-list li {
  margin-bottom: 10px;
}

.course-box {
  border: 1px solid #ddd;
  margin-bottom: 30px;
}

.course-header {
  color: #fff;
  background: #18335c;
  box-sizing: border-box;
  padding: 10px 20px;
}
.course-header h3 {
  margin: 0;
  font-size: 18px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.course-header span {
  font-size: 16px;
  margin-left: 15px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.course-body {
  box-sizing: border-box;
  padding: 10px 20px;
}
.course-body p {
  margin: 0 0 10px;
}
.course-body ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.course-body .calendar {
  display: block;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-top: 10px;
}

.coach-title {
  text-align: center;
  font-size: 20px;
}

.profile-section {
  margin-bottom: 30px;
}
.profile-section h4 {
  border-left: 4px solid #ff6600;
  padding-left: 10px;
  margin-bottom: 10px;
}

/* スポンサーページ */
.sponsor-section {
  margin-bottom: 50px;
}
.sponsor-section h2 {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sponsor-section h2 {
    text-align: center;
  }
}
.sponsor-section .sponsorTorikumiArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sponsor-section .sponsorTorikumiArea .sponsorTorikumiBox {
  box-sizing: border-box;
  width: 48%;
  margin-bottom: 30px;
}
.sponsor-section .sponsorTorikumiArea .sponsorTorikumiBox h3 {
  border-bottom: solid 1px #dcd5d5;
  padding-bottom: 5px;
  font-size: 18px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.sponsor-section .sponsorTorikumiArea .sponsorTorikumiBox h3 span {
  display: block;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .sponsor-section .sponsorTorikumiArea {
    display: block;
  }
  .sponsor-section .sponsorTorikumiArea .sponsorTorikumiBox {
    width: 100%;
  }
  .sponsor-section .sponsorTorikumiArea .sponsorTorikumiBox h3 span {
    font-size: 18px;
    display: inline-block;
  }
  .sponsor-section .sponsorTorikumiArea .sponsorTorikumiBox h3 span:after {
    content: "｜";
    margin-left: 8px;
  }
}
.sponsor-section .sponsorMessage {
  text-align: center;
  font-size: 22px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 80px;
}

.formal-text {
  text-align: left;
  margin-bottom: 30px;
}

.signature {
  text-align: right;
}

.highlight-text {
  font-size: 20px;
  font-weight: bold;
  color: #ff6600;
  line-height: 1.6;
  margin: 40px 0;
}

.sponsor-plan {
  background-color: #ffffff;
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 30px 20px;
  margin-bottom: 30px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sponsor-plan {
    display: block;
  }
}
.sponsor-plan h3 {
  margin-top: 0;
  font-size: 22px;
}
.sponsor-plan .price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.sponsor-plan .spLeft {
  width: 280px;
}
.sponsor-plan .spLeft h3 {
  line-height: 1em;
  font-size: 18px;
  margin-bottom: 0;
}
.sponsor-plan .spLeft h3 + p {
  margin: 10px 0 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .sponsor-plan .spLeft {
    width: 100%;
    margin-bottom: 10px;
  }
}
.sponsor-plan .spRight {
  flex: 1;
  font-size: 16px;
}
.sponsor-plan .spRight p {
  margin: 0;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.sponsor-plan .spRight p + p {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
}
.sponsor-plan .spRight ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}/*# sourceMappingURL=style.css.map */