@charset "UTF-8";

:root {
  --cc-green-dark: #008232;
  --cc-green-mid: #7FBF26;
  --cc-dark-green: #144424;
  --cc-yellow: #FFE100;
  --cc-orange: #F28D00;
  --cc-tan: #C69C6D;
  --cc-white: #FFFFFF;
  --cc-black: #000000;
  --cc-bg-light: #f5f5f0;
  --cc-font-base: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--cc-font-base);
  color: var(--cc-black);
  background: #fff;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
}

/* ========================================
   Base
   ======================================== */
.cc-wrap {
  width: 100%;
  margin: 0 auto;
  font-family: var(--cc-font-base);
  font-weight: 500;
  color: var(--cc-black);
  line-height: 1.6;
  overflow-x: hidden;
}
.cc-wrap *,
.cc-wrap *::before,
.cc-wrap *::after {
  box-sizing: border-box;
}
.cc-wrap img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.cc-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.cc-wrap .cc-deco-flag {
  height: 0.95em;
  width: auto;
  vertical-align: -0.1em;
}
.cc-deco-flag--l {
  margin-right: 22px;
}
.cc-deco-flag--r {
  margin-left: 22px;
  transform: scaleX(-1);
}

/* ========================================
   Hero (full-width)
   ======================================== */
.cc-hero {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}
.cc-hero img {
  width: 100%;
  height: auto;
}
.cc-hero__pc { display: block; }
.cc-hero__sp { display: none; }

/* ========================================
   Info Section
   ======================================== */
.cc-info {
  padding: 60px 0 50px;
  background: var(--cc-white);
  font-family: var(--cc-font-base);
  font-weight: 300;
}
.cc-info img {
  max-width: 100%;
  height: auto;
}
.cc-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.cc-info__item {
  text-align: center;
  padding: 0 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 482px;
}
.cc-info__body {
  margin: auto 0;
}
.cc-info__item:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 78px;
  bottom: 16px;
  right: 0;
  width: 2px;
  background: #06243f;
}
.cc-info__label {
  display: block;
  background: var(--cc-green-mid);
  color: var(--cc-white);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  padding: 13px 0;
  border-radius: 4px;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  margin: 0 0 14px;
}
.cc-info__img {
  display: block;
  margin: 4px auto 2px;
  height: auto;
  max-width: 100%;
  padding: 0 20px;
}
/* .cc-info__img--year { width: 384px; }
.cc-info__img--plan { width: 346px; }
.cc-info__img--free { width: 359px; }
.cc-info__img--web  { width: 347px; } */
.cc-info__note-img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: 2px auto 0 0;
}
.cc-info__bullets-img {
  display: block;
  height: auto;
  max-width: 100%;
  margin: 18px auto 0 0;
}

/* ========================================
   Region Buttons
   ======================================== */
.cc-region {
  padding: 86px 0 50px;
  background: var(--cc-white);
}
.cc-region__heading {
  text-align: center;
  margin: 0 0 30px;
  line-height: 0;
}
.cc-region__heading-img {
  display: block;
  width: 531px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.cc-region__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}
.cc-region__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cc-green-dark);
  color: var(--cc-white);
  font-size: 36px;
  font-weight: 700;
  font-family: var(--cc-font-base);
  letter-spacing: -0.04em;
  width: 100%;
  max-width: 350px;
  height: 100%;
  margin: 0;
  padding: 26px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.3s;
  border: none;
  cursor: pointer;
}
.cc-region__btn:hover {
  opacity: 0.8;
}
.cc-region__btn::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background-image: url("../images/beginner/icon_btn.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45px 45px;
}

/* ========================================
   Accordion (注意点)
   ======================================== */
.cc-accordion {
  padding: 38px 0 176px;
  background: var(--cc-white);
}
.cc-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #7fbe26;
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 16px 24px;
  font-size: 34px;
  font-weight: 700;
  font-family: var(--cc-font-base);
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}
.cc-accordion__trigger:hover {
  opacity: 0.8;
}
.cc-accordion__trigger::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-top: -4px;
}
.cc-accordion__trigger.is-open::after {
  transform: rotate(-135deg);
  margin-top: 4px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.cc-accordion__body {
  max-width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.cc-accordion__body.is-open {
  max-height: 2000px;
}
.cc-accordion__content {
  padding: 20px 0;
  font-size: 24px;
  line-height: 1.4;
  border-top: none;
  border-radius: 0 0 6px 6px;
}
.cc-accordion__content ul {
  margin: 10px 0 0;
}
.cc-accordion__content li {
  margin-bottom: 6px;
}
/* ========================================
   Video Section
   ======================================== */
.cc-video {
  padding: 116px 0 32px;
  background: #fcfcfc url("../images/beginner/stripe_bg.png") repeat;
  background-size: 46px 46px;
}
.cc-video__catch {
  text-align: center;
  margin-bottom: 44px;
  line-height: 0;
}
.cc-video__catch-img {
  display: block;
  width: 590px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.cc-video__heading {
  text-align: center;
  margin: 0 0 26px;
  line-height: 0;
}
.cc-video__heading-img {
  display: block;
  width: 390px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.cc-video__thumb {
  max-width: 780px;
  margin: 0 auto;
  border: 10px solid var(--cc-green-dark);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  aspect-ratio: 16 / 9;
}
.cc-video__thumb img {
  width: 100%;
  height: auto;
}
.cc-video__thumb iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ========================================
   Rules Section
   ======================================== */
.cc-rules {
  padding: 24px 0 56px;
  background: #fcfcfc url("../images/beginner/stripe_bg.png") repeat;
  background-size: 46px 46px;
}
.cc-rules__header {
  text-align: center;
  position: relative;
  z-index: 2;
  top: -41px;
}
.cc-rules__heading {
  margin: 0;
  line-height: 0;
}
.cc-rules__heading picture {
  display: block;
  width: 100%;
  max-width: 100%;
}
.cc-rules__heading-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.cc-rules__card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.cc-rules__notice {
  font-size: 22px;
  color: var(--cc-black);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.cc-rules__notice .cc-star {
  color: var(--cc-green-dark);
}
.cc-rules__item {
  margin: 0;
  border-top: 3px solid var(--cc-green-dark);
  border-bottom: 3px solid var(--cc-green-dark);
}

.cc-rules__item:last-of-type {
  border-bottom: none;
}

.cc-rules__item + .cc-rules__item {
  border-top: none;
}
.cc-rules__item-title {
  background: transparent;
  color: var(--cc-green-dark);
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  padding: 0 20px;
  border-bottom: 3px solid var(--cc-green-dark);
}
.cc-rules__item-body {
  padding: 14px 0 40px;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  overflow-x: hidden;
}
.cc-rules__item-body p {
  margin: 0 0 4px;
}
.cc-rules__item-body p:last-child {
  margin-bottom: 0;
}
.cc-rules__item-body--numbered {
  counter-reset: rule-step;
}
.cc-rules__item-body--numbered > p {
  display: flex;
  align-items: flex-start;
  gap: 0.4em;
  text-align: justify;
}
.cc-rules__item-body--numbered > p:last-child {
  margin-bottom: 0;
}
.cc-rules__item-body--numbered > p::before {
  counter-increment: rule-step;
  content: counter(rule-step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1.4em;
  height: 1.4em;
  background: #008232;
  color: #fff;
  border-radius: 50%;
  font-size: 0.75em;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.3em;
}
.cc-rules__footer-note {
  font-size: 17px;
  color: var(--cc-black);
  font-weight: 700;
  line-height: 1.55;
  margin-top: 22px;
  text-align: left;
  display: flex;
  align-items: flex-start;
}
.cc-rules__footer-note::before {
  content: "★";
  color: var(--cc-green-dark);
  flex-shrink: 0;
}

.cc-rules .cc-inner {
  background: #ffffff;
  position: relative;
  border-radius: 24px;
  margin-top: 41px;
  padding: 0 85px 64px;
}

/* ========================================
   Guide Section
   ======================================== */
.cc-guide {
  padding: 75px 0 60px;
  background: var(--cc-green-mid);
  color: var(--cc-white);
}
.cc-guide__header {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}
.cc-wrap .cc-guide__header-golfer {
  position: absolute;
  top: 0;
  width: auto;
  height: 200px;
  z-index: 1;
}
.cc-guide__header-golfer--l {
  left: 7%;
  height: 230px;
}
.cc-guide__header-golfer--r {
  right: 7%;
}
.cc-guide__ja-title {
  margin: 0 0 16px;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.cc-guide__heading-img {
  display: block;
  width: 471px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.cc-guide__section-title {
  text-align: center;
  margin-bottom: 47px;
  line-height: 0;
}
.cc-guide__section-title-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 80px auto 0;
}
.cc-guide__timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}
.cc-guide__step {
  position: relative;
  line-height: 0;
}
.cc-guide__step-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   Manor Section
   ======================================== */
.cc-manor {
  padding: 60px 0;
  background: var(--cc-green-mid);
  color: var(--cc-white);
}
.cc-manor__heading {
  text-align: center;
  margin: 0 0 40px;
  line-height: 0;
}
.cc-manor__heading-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.cc-manor__list {
  max-width: 1100px;
  margin: 0 auto;
}
.cc-manor__item {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: var(--cc-white);
  color: var(--cc-black);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 120px;
}
.cc-manor__item-label {
  background: var(--cc-white);
  color: var(--cc-green-mid);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  padding: 16px 12px 16px 24px;
  border-right: 6px solid var(--cc-green-mid);
  text-align: center;
  gap: 12px;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.cc-manor__item-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}
.cc-manor__item-body {
  padding: 14px 22px;
  font-size: 21px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow-x: hidden;
}
.cc-manor__item-body > div {
  width: 100%;
}
.cc-manor__item-note {
  font-size: 18px;
  color: var(--cc-black);
  margin-top: 4px;
}
.cc-manor__footer-notes {
  max-width: 1100px;
  margin: 20px auto 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.l-footer {
  margin-top: 0;
}

.cc-hide--pc {
  display: none;
}

.cc-manor__item-list-item::before {
  content: "・";
}

/* ========================================
   Responsive (Mid: 769px - 1149px)
   ======================================== */
@media screen and (min-width: 769px) and (max-width: 1149px) {
  .cc-rules__heading-img {
    width: 100%;
  }
  .cc-rules__header {
    top: calc(22px - 5.9vw);
  }
}

/* ========================================
   Responsive (SP)
   ======================================== */
@media screen and (max-width: 768px) {
  /* Hero */
  .cc-hero__pc { display: none; }
  .cc-hero__sp { display: block; }

  /* Info */
  .cc-info {
    padding: 40px 0 20px;
  }

  .cc-info .cc-inner {
    padding: 0 calc(-56px + 20.4vw);
  }

  .cc-info__grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 20px;
  }
  .cc-info__item {
    padding: 0 0 40px;
    border-right: none;
    min-height: auto;
  }
  .cc-info__item::after {
    display: none;
  }
  .cc-info__label {
    font-size: calc(21px + 4vw);
    padding: 10px 0;
    margin: 0 -16px 18px;
  }

  .cc-info__img {
    padding: 0;
  }

  .cc-info__img--year,
  .cc-info__img--plan,
  .cc-info__img--free,
  .cc-info__img--web {
    width: 100%;
    max-width: 380px;
  }

  /* Region */
  .cc-region {
    padding: 40px 0 40px;
  }
  .cc-region__heading-img {
    width: 100%;
    max-width: 420px;
  }
  .cc-region__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: none;
    padding: 0 20px;
  }
  .cc-region__btn {
    border-radius: 1000px;
    font-size: calc(11px + 5.6vw);
    width: 100%;
    height: auto;
    padding: calc(3px + 3.5vw) 0;
    max-width: calc(81px + 58.5vw);
  }
  .cc-region__btn::after {
    width: calc(12px + 7.5vw);
    height: calc(12px + 7.5vw);
    background-size: calc(12px + 7.5vw) calc(12px + 7.5vw);
  }

  /* Accordion */
  .cc-accordion {
    padding: 60px 0 60px;
  }
  
  .cc-accordion .cc-inner {
    padding:  0 100px;
  }

  .cc-accordion__trigger {
    font-size: calc(5.3vw);
    padding: 14px 18px;
  }

  /* Video */
  .cc-video {
    padding: 50px 0 40px;
  }
  .cc-video__catch {
    margin-bottom: 24px;
  }
  .cc-video__catch-img {
    width: 100%;
    max-width: 480px;
  }

  .cc-video__heading {
    margin-top: calc(1.5px + 8.1vw);
  }

  .cc-video__heading .cc-video__heading-img {
    width: 100%;
    max-width: calc(83.5px + 52.4vw);
  }
  .cc-video__thumb {
    max-width: 640px;
    margin: 0 auto;
  }

  /* Rules */
  .cc-rules {
    padding: calc(5px + 4.6vw) calc(6px + 4.3vw) calc(22px + 12.7vw);
  }
  .cc-rules__header {
    top: calc(-10px - 4vw);
  }
  .cc-rules__heading-img {
    width: 100%;
  }
  .cc-rules__notice {
    font-size: calc(6px + 2.8vw);
    text-align: left;
    letter-spacing: -2px;
  }
  .cc-rules__item-title {
    font-size: calc(-3px + 5.9vw);
    padding: 0 8px;
  }
  .cc-rules__item-body {
    font-size: calc(9px + 3vw);
    padding: 16px 0;
    line-height: 1.4;
    letter-spacing: -2px;
    margin-bottom: 24px;
  }
  .cc-rules__footer-note {
    font-size: calc(7px + 2.6vw);
  }

  /* Guide */
  .cc-guide {
    padding: 40px 0;
  }
  .cc-guide__header {
    margin-bottom: 4px;
  }
  .cc-wrap .cc-guide__header-golfer {
    top: calc(-123px + 16vw);
    z-index: 0;
    height: calc(76px + 9.7vw);
  }
  .cc-guide__header-golfer--l {
    left: 0;
  }
  .cc-guide__header-golfer--r {
    width: 17%;
    right: 0;
  }
  .cc-guide__heading-img {
    max-width: 64%;
    position: relative;
    top: 6vw;
  }
  .cc-guide__section-title {
    font-size: 26px;
  }
  .cc-guide__section-title::before,
  .cc-guide__section-title::after {
    width: 40px;
    margin: 0 10px;
  }
  .cc-guide__timeline {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .cc-guide__section-title-img {
    margin-top: 40px;
  }

  /* Manor */
  .cc-manor {
    padding: 0 0 20px;
  }
  .cc-manor__heading {
    overflow: hidden;
    width: 100%;
    margin: 0 0 24px;
  }
  .cc-manor__heading-img {
    width: auto;
    height: 32px;
    max-width: none;
  }
  .cc-manor__list {
    padding: 0 16px;
  }
  .cc-manor__item {
    border-radius: 8px;
    background: none;
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: 4px;
  }
  .cc-manor__item-label {
    background: var(--cc-white);
    border-radius: 8px;
    color: var(--cc-green-mid);
    flex-direction: row;
    border-right: none;
    padding: 12px 16px;
    font-size: calc(9px + 4.3vw);
    gap: 10px;
    white-space: normal;
    justify-content: center;
  }
  .cc-manor__item-icon {
    width: calc(17px + 6.1vw);
    height: calc(17px + 6.1vw);
  }
  .cc-manor__item-body {
    color: var(--cc-white);
    padding: 14px 0;
    font-size: calc(4.3vw);
  }
  .cc-manor__item-list-item {
    display: flex;
    align-items: flex-start;
    margin: 0;
  }
  /* .cc-manor__item-list-item + .cc-manor__item-list-item {
    margin-top: 0.3em;
  } */
  .cc-manor__item-list-item::before {
    content: "・";
    flex-shrink: 0;
  }
  .cc-manor__item-note {
    color: var(--cc-white);
    font-size: calc(-1px + 3.5vw);
    font-weight: 500;
    line-height: 1;
  }
  .cc-manor__footer-notes {
    padding: 0 16px;
    font-size: 18px;
  }
  .l-footer {
    margin-top: 0;
  }
  .cc-show--sp {
    display: block;
  }

  .cc-rules .cc-inner{
    padding: 0 calc(5vw + 10px) 40px;
  }

  .cc-accordion__content {
    font-size: calc(5px + 3.5vw);
  }

  .cc-accordion__content p {
    margin-bottom: 24px;
  }
}
