@charset "UTF-8";
  /*==============================
	STYLE.CSS
	==============================*/
.l-section__inner{
  padding: 0;
}
.box__wrap{
  padding-top: 40px;
  margin-top: 10px;
}
.-fin{
  position: relative;
  margin-left: -50%;
  margin-right: -50%;
}
.-fin::before{
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 25px;
  left: 0;
}
.-fin .h-txt{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 44px;
  text-align: center;
  font-weight: bold;
}
h2{
  color: #000;
  font-weight: bold;
  font-size: 3.4rem;
  text-align: center;
  margin-bottom: 18px;
}
.o-text_lead{
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .l-section__inner{
    padding: 60px 10px 0 !important;
  }
  .box__wrap{
    padding: 10px 15px 0;
  }
  .-fin{
    margin-left: 0;
    margin-right: 0;
  }
  .-fin::before {
    top: 10px;
  }
  .-fin .h-txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    text-align: center;
    width: 100%;
  }
  h2{
    font-size: 1.7rem;
    margin-bottom: 8px;
  }
  .o-text_lead{
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
}
.u-indent>* {
  padding-left: 1.0em;
  text-indent: -1.0em;
}

/*===============
headArea
===============*/
@media (min-width: 769px){
  #eventreport .p-pageTitle.-eventreport {
    height: 130px;
    background: #000;
    background-size: cover;
  }
  #eventreport .p-pageTitle.-eventreport .p-pageTitle__text{
    font-size: 2.0rem;
    margin-top: 2px;
  }
}
@media (max-width: 768px) {
  #eventreport .p-pageTitle.-eventreport .p-pageTitle__inner{
    padding: 0;
  }
}

/* Base Styles */
body {
  background-color: #f0f2f5;
}
figure {
    margin: 0; /* ブラウザデフォルトの余白をリセット */
}

/* Container */
.container {
    max-width: 900px;
    margin: 30px auto 50px;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* 影を少し大きくして立体感を */
    border-radius: 8px; /* 角を少し丸く */
    overflow: hidden;
}

/* Header (Dummy) */
.global-header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Main Visual */
.main-visual {
    width: 100%;
    margin: 0; /* これで右寄りのズレが解消されます */
}
.main-visual img {
    width: 100%;
}

/* Content Area */
.content-area {
    padding: 30px 40px 60px; /* PCでは少し内側の余白を広く */
}
.report-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
    text-align: center;
}
/* タイトル下の黄色いアクセントライン */
.report-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #fec800; /* GolfTEC Yellow */
}

/* Lead Text (導入文のデザインアップ) */
.lead-text {
    font-size: 16px;
    background-color: #fafafa;
    padding: 20px 25px;
    border-radius: 6px;
    border-left: 5px solid #fec800;
    margin-bottom: 50px;
}
.lead-text p:last-child {
    margin-bottom: 0;
}

/* Sections */
.section-wrap {
    margin-bottom: 60px;
}
.section-title {
    font-size: 22px;
    font-weight: bold;
    text-align: left;
    color: #000;
    padding-bottom: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #000;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #fec800;
}

.text-block {
    margin-bottom: 25px;
    font-size: 16px;
}
.text-block p {
    margin-bottom: 15px;
}

/* 強調文字（イマドキな黄色マーカー風デザインに） */
.highlight {
    font-weight: bold;
    background: linear-gradient(transparent 60%, #fff0b3 60%); /* マーカー線 */
    color: #111;
}

/* リンク用スタイル */
.text-link {
    color: #000;
    text-decoration: underline;
    text-decoration-color: #fec800;
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
    font-weight: bold;
    transition: opacity 0.3s;
}
.text-link:hover {
    opacity: 0.7;
}

/* Image Layouts */
.img-grid-2 {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.img-grid-2 figure {
    flex: 1;
}
.img-grid-2 img {
    border-radius: 4px; /* 画像の角を少しだけ丸く */
}
.img-single {
    margin-bottom: 25px;
}
.img-single img {
    width: 100%;
    border-radius: 4px;
}

/* Voices (カード型の吹き出しデザインにアップグレード) */
.voice-list {
    margin-bottom: 20px;
}
.voice-item {
    background-color: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 20px 20px 20px 50px;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    font-weight: bold;
    color: #333;
}
.voice-item::before {
    content: "“";
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 50px;
    color: #fec800;
    font-family: Georgia, serif;
    line-height: 0.8;
}

/* SNS Share */
.lesson-btn {
    text-align: center;
    padding: 40px 0 10px;
    border-top: 1px dashed #ccc; /* 点線にして柔らかい印象に */
}
.lesson-btn p {
    font-weight: bold;
    margin-bottom: 20px;
    color: #555;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.lesson-btn p::before {
   content: "＼";
   color: #555;
}
.lesson-btn p::after {
  content: "／";
  color: #555;
}
.lesson-btn a {
    color: #000;
    background: #f87229;
    display: inline-block;
    padding: 20px 25px;
    box-shadow: 0px 4px #a1420f;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.1;
    border-radius: 4px;
    box-sizing: border-box;
}

.global-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .container {
        margin-top: 15px;
        border-radius: 8px;
    }
    .content-area {
        padding: 20px 20px 40px;
    }
    .img-grid-2 {
        flex-direction: column;
        gap: 15px;
    }
    .report-title {
        font-size: 22px;
    }
    .section-title {
        font-size: 20px;
    }
    .lead-text {
        padding: 15px;
    }
    .voice-item {
        font-size: 16px;
    }
    .lesson-btn {
    padding: 40px 10px 10px;
    }
    .lesson-btn p {
    align-items: center;
    gap: 12px;
    line-height: 1.4;
    margin: 0 0 10px;
    }
    .lesson-btn p::before,
    .lesson-btn p::after {
    font-size: 2.5rem;
    font-weight: normal;
    }
    .lesson-btn a {
    font-size: 1.666rem;
    padding: 15px 20px;
    line-height: 1.2;
    }
}