@charset "UTF-8";
/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  -webkit-box-shadow: 0 0 0 5px Canvas;
          box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

/* ROOT
--------------------------------------------------------- */
:root {
  --BK: #000;
  --OR: #eb6100;
  --RD: #a40000;
  --DBL: #02194b;
  color-scheme: light;
}

body {
  font-size: 16px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: normal;
  position: relative;
  color: #30340f;
  line-height: 1;
	padding-top: 90px;
}

.font-min {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

/* PC・SP出し分け */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
img {
  vertical-align: top;
  max-width: 100%;
}

@media screen and (min-width: 769px) {
	a {
	  -webkit-transition: all ease 0.3s;
	  transition: all ease 0.3s;
	}
	a:hover {
	  opacity: 0.7;
	}
}

.bg-gray{
	background-color: #fef9f6;
}



/* ---------------------------------------------------------
 　■ Header
--------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
		line-height: 1.7;
}

/* --- 上段 --- */
.header-top {
    border-bottom: 1px solid #e5e5e5;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
}

/* ロゴ */
.header-logo a {
    display: block;
}

.header-logo img {
    height: 42px;
    width: auto;
    display: block;
}

/* 電話・ボタンエリア */
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Shippori Mincho', serif;
}

.header-tel-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1px;
}

.tel-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #333;
    white-space: nowrap;
}

.tel-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

.tel-number {
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    font-weight: 700;
    color: #1565c0;
    text-decoration: none;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.tel-number:hover {
    opacity: 0.8;
}

.tel-hours {
    font-size: 11px;
    color: #666;
    white-space: nowrap;
}

.header-btns {
    display: flex;
    gap: 10px;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
    min-width: 110px;
}

.header-btn:hover {
    opacity: 0.8;
}

.header-btn-contact {
    background-color: #ffffff;
    color: #01306C;
    border: 1px solid #01306C;
    min-width: 180px;
}

.header-btn-download {
    background-color: #01306C;
    color: #ffffff;
    border: 1px solid #01306C;
    min-width: 180px;
}

/* --- 下段：ナビゲーション --- */
.header-nav-wrap {
    background-color: #ffffff;
}

.header-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 0 14px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    height: 40px;
    line-height: 40px;
    transition: color 0.2s;
}

.nav-list > li > a:hover {
    color: #002F6C;
}

.nav-arrow {
    font-size: 9px;
    opacity: 0.55;
    margin-left: 1px;
}

/* ドロップダウン */
.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 2px solid #002F6C;
    min-width: 160px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
}

.dropdown li a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.dropdown li a:hover {
    background: #f4f7f9;
    color: #002F6C;
}

/* ==========================================================================
   モバイルヘッダー（768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
    body {
        padding-top: 62px; /* モバイルヘッダー高さ分 */
    }

    /* 上段：電話・ボタンエリアを非表示、ハンバーガー表示 */
    .header-top {
        border-bottom: none;
    }

    .header-top-inner {
        padding: 10px 16px;
        height: 62px;
        box-sizing: border-box;
    }

    .header-contact {
        display: none;
    }

    .hamburger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin-left: auto;
    }

    .hamburger-icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 24px;
        height: 20px;
    }

    .hamburger-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #333;
        border-radius: 2px;
    }

    /* ナビ下段を非表示 */
    .header-nav-wrap {
        display: none;
    }
}

/* PCではハンバーガーとドロワーを非表示 */
@media screen and (min-width: 769px) {
    .hamburger-btn {
        display: none;
    }

    .drawer,
    .drawer-overlay {
        display: none !important;
    }
}

/* ==========================================================================
   ドロワーメニュー
   ========================================================================== */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.drawer.is-open {
    transform: translateX(0);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

body.drawer-open {
    overflow: hidden;
}

/* ドロワーヘッダー */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    height: 62px;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 22px;
    color: #333;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* ドロワーナビ */
.drawer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drawer-nav-list li {
    border-bottom: 1px solid #e8e8e8;
}

.drawer-nav-list li a {
    display: block;
    padding: 18px 20px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
}

.drawer-nav-list li a:hover {
    background: #f4f7f9;
}

/* ドロワーボタン */
.drawer-btns {
    display: flex;
    gap: 12px;
    padding: 24px 20px;
}

.drawer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 14px 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
}

.drawer-btn:hover {
    opacity: 0.8;
}

.drawer-btn-contact {
    background: #ffffff;
    color: #002F6C;
    border: 1px solid #002F6C;
}

.drawer-btn-download {
    background: #002F6C;
    color: #ffffff;
    border: 1px solid #002F6C;
}
/* ---------------------------------------------------------
 　■ ファーストビュー
--------------------------------------------------------- */
.section-fv {
	background-image: url(../images/fv-bg.png);
	background-position: center top;
	text-align: center;
	padding: 48px 0 37px;
	position: relative;
	background-size: cover;
}
.section-fv::before {
	display: none !important;
}

/* PC用オーバーレイ */

.section-fv .container {
    position: relative;
}

.section-fv .fv-title {
	color: #ffffff;
	text-align: center;
	letter-spacing: -0.03em;
}

.section-fv .fv-subtitle {
	color: #fff;
	text-align: center;
	font-size: 24px;
	line-height: 1.8;
	span{ font-size: 20px; }
}

.fv-target-label {
	display: inline-block;
	color: #fff;
	padding: 8px 20px;
	margin-bottom: 12px;
	border-radius: 4px;
	position: relative;
}
.fv-target-label::before ,
.fv-target-label::after {
	background-position: 0px 0px;
	background-repeat: no-repeat;
	position: absolute;
	top: -1px;
	width: 10px;
	height: 27px;
	content: "";
	display: block;
}
.fv-target-label::before {
	background-image: url(../images/fv-target-label_lt.png);
	left: 0px;
}
.fv-target-label::after {
	background-image: url(../images/fv-target-label_rt.png);
	right: 0px;
}
@media screen and (max-width: 768px){
  .fv-target-label::after,
  .fv-target-label::before{
    top:7px;
  }
}


.fv-title {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
}
.fv-subtitle {
    font-weight: 700;
    margin-bottom: 32px;
}
.section-fv .notice-text {
	color: #ffffff;
	margin-top: 20px;
	font-size: 12px;
}

.section-fv a.btn{
	font-size: 24px;
	text-decoration: none;
	color: #012114;
	background-color: #ffffff;
	text-align: center;
	line-height: 60px;
	margin: 0 auto;
	width: 400px;
	height: 60px;
	box-shadow: 5px 5px 0px #d15a36;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .section-fv a.btn{
    width: 90%;
  }
}

/* === FV：学べることボックス === */
.fv-learn-box {
    max-width: 505px;
    margin: 0 auto 41px;
    padding: 25px 10px 20px 46px;
    border: 3px solid var(--OR);
    background: rgba(135, 72, 33,0.4);
    border-radius: 12px;
    backdrop-filter: #eb6100(2px);
    -webkit-backdrop-filter: #eb6100(2px);
    text-align: left;
}

.fv-learn-heading {
    font-size: 22px;
    color: #fff;
    margin: 0 0 27px;
    text-align: center;
}

.fv-learn-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fv-learn-list li {
    position: relative;
    padding-left: 29px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 6px;
    font-weight: 300;
}

.fv-learn-list li:last-child {
    margin-bottom: 0;
}

.fv-learn-list li::before {
	background-image: url(../images/check-circle_wh.svg);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 18px;
	height: 18px;
	content: "";
}

/* FV：PC微調整 */
@media screen and (min-width: 769px) {
    .section-fv .container {
        max-width: 1200px;
				margin: 0 auto;
    }

    .fv-title {
        margin-bottom: 29px;
    }

    .fv-subtitle {
        margin-bottom: 29px;
    }
}

/* === FV：スマホ調整 === */
@media screen and (max-width: 768px) {
    .fv-learn-box {
        width: 100%;
        margin: 18px 0 24px;
        padding: 14px 14px 12px;
        border-radius: 10px;
    }

    .fv-learn-heading {
        font-size: 0.88rem;
        margin-bottom: 8px;
    }

    .fv-learn-list li {
        font-size: 0.85rem;
        line-height: 1.65;
        margin-bottom: 4px;
        padding-left: 2em;
    }

    .notice-text {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}
/* --- セクション1：ファーストビュー（スマホのみ） --- */
@media screen and (max-width: 768px) {
    .section-fv {
        height: 100vh;
        padding: 0;
        display: flex;
        align-items: stretch;
    }

    .section-fv .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 80px 17px 48px;
    }

    .section-fv .fv-target-label {
        margin-bottom: 32px;
    }

    .fv-title {
        font-size: 1.53rem;
        font-weight: 900;
        text-align: left;
        width: 100%;
        margin-bottom: 10px;
    }

    .fv-subtitle {
        text-align: left;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0;
    }

    .fv-btn-area {
        width: 100%;
        text-align: center;
    }

    .fv-btn-area .btn {
        width: 100%;
        font-size: 1.1rem;
        padding: 18px 24px;
        border-radius: 6px;
    }
}



/* ---------------------------------------------------------
 　■ section共通
--------------------------------------------------------- */
.section::before {
	width: 55px;
	height: 10px;
	content: "";
	display: block;
	border-radius: 10px;
	margin: 0 auto;
	background-image: linear-gradient(90deg, #eb6100 40%, #e5782b 60%);
}

/* ---------------------------------------------------------
 　■ 実績紹介
--------------------------------------------------------- */

.section-achievements {
    padding: 50px 20px 60px;
}

.section-achievements .section-title{
	font-size: 32px;
	text-align: center;
	line-height: 1.7;
	margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .section-achievements .section-title{
    font-size: 24px;;
  }
}
.achievement-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 55px;
	max-width: 1100px;
	margin: 48px auto;
}

.achievement-card {
	background-color: #ffffff;
	padding: 10px;
	box-shadow: 0 4px 14px #eb6100;
	text-align: center;
	width: 330px;
	min-height: 255px;
}
.achievement-card .inner{
	border-radius: 20px 20px 0 0;
	background-image: linear-gradient(90deg, #eb6100 40%, #e5782b 60%);
	color: #fff;
	padding: 24px 5px 15px;
}

.achievement-card:nth-child(1),
.achievement-card:nth-child(2),
.achievement-card:nth-child(3){
  min-height: 240px;
}

.achievement-number {
    font-size: 38px;;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-main);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
}

.achievement-number-small {
    font-size: 2.2rem;
}

.achievement-number-iso {
    font-size: 2rem;
    letter-spacing: 0;
    word-break: break-word;
}

.achievement-title {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.5;
    margin-bottom: 6px;
}

.achievement-note {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    padding: 13px 0 0 15px;
}

.achievement-bottom-message {
	margin-top: 78px;
	padding: 0 20px;
	font-size: 24px;
}

.achievement-bottom-message p {
    margin: 0;
    font-weight: 700;
    line-height: 1.9;
    text-align: center;
    color: var(--OR);
}



/* スマホ */
@media screen and (max-width: 768px) {
    .section-achievements {
        padding: 60px 20px;
    }

    .achievements-lead {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .achievement-card {
        padding: 22px 18px 18px;
        border-radius: 10px;
        min-height: 240px;
    }

    .achievement-sub {
        min-height: auto;
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .achievement-number {
        font-size: 2.3rem;
        margin-bottom: 10px;
    }

    .achievement-number-small {
        font-size: 2rem;
    }

    .achievement-number-iso {
        font-size: 1.8rem;
    }

    .achievement-title {
        min-height: auto;
        font-size: 1.05rem;
        margin-bottom: 12px;
    }

    .achievement-note {
        font-size: 0.76rem;
        text-align: center;
    }

    .achievement-bottom-message {
        padding: 20px 16px;
        margin-top: 28px;
    }

    .achievement-bottom-message p {
        text-align: center;
        font-size: 0.95rem;
    }
}


/* ---------------------------------------------------------
 　■ セクション3：読み物コンテンツ
--------------------------------------------------------- */
.section-reading {
	padding: 52px 20px 0;
	position: relative;
}
.section-reading::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 150px 50vw 0 50vw;
	border-color: #fef9f6 transparent transparent transparent;
	position: absolute;
	bottom: -150px;
	left: 0;
}

@media screen and (max-width: 768px){
 .section-reading::after{
  border-width: 60px 50vw 0 50vw;
  bottom: -60px;
 } 
}


.section-reading-title {
	margin: 13px 0 0;
	font-size: 32px;
	line-height: 1.7;
	text-align: center;
	font-weight: 700;
}

.section-reading .problem-box{
	background: var(--OR);
	max-width: 800px;
	padding: 33px 10px 25px;
	border-radius: 20px;
	margin: 40px auto 54px;
	display: flex;
	justify-content: center;
}
.problem-list{
	margin:0;
	padding-left:0;
	list-style:none;
	display: inline-block;
}
.problem-list li{
	position:relative;
	padding-left: 36px;
	margin-bottom: 8px;
	line-height: 1.8;
	color: #fff;
	font-size: 20px;
}
.problem-list li::before{
	background-image: url(../images/check-circle_wh.svg);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0px;
	top: 6px;
	width: 23px;
	height: 23px;
	content: "";
}

.reading-bridge{
	text-align:center;
	font-weight:600;
	margin-bottom: 55px;
	font-size: 24px;
}

.reading-discovery-box {
	text-align: center;
	margin: 0 auto 66px;
}
.reading-discovery-title {
	position: relative;
	display: inline-block;
	font-size: 36px;
	font-weight: 700;
	color: #000;
	line-height: 1.8;
	margin: 0 auto;
	/* padding: 0px 10px 0px 60px; */
	letter-spacing: -0.05em;
}
.reading-discovery-title::before ,
.reading-discovery-title::after {
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0px;
	width: 12px;
	height: 140px;
	content: "";
	display: block;
}
.reading-discovery-title::before {
	background-image: url(../images/reading-discovery_lt.svg);
	left: -50px;
}
.reading-discovery-title::after {
	background-image: url(../images/reading-discovery_rt.svg);
	right: -47px;
}
@media screen and (max-width: 768px) {
  .reading-discovery-title::before {
	left: -30px;
  top:7px;
}
.reading-discovery-title::after {
	right: -30px;
  top:7px;
}
}
.reading-discovery-number {
    display: inline-block;
    font-size: 60px;
    color: var(--OR);
    font-weight: 900;
    margin: 0 0.08em;
    line-height: 1;
}
@media screen and (max-width: 768px) {
  .reading-discovery-number{
    font-size: 40px;
  }
}
.reading-discovery-title .l-space{
	letter-spacing: -0.15em;
}

.reading-description {
	margin: 0 auto 42px;
	text-align: center;
}

.reading-description p {
	font-size: 18px;
	line-height: 1.778;
	margin: 0 0 27px;
	color: #000;
	letter-spacing: -0.065em;
	font-weight: 600;
}
.reading-description p .highlight-text{
	color: var(--OR);
	font-size: 24px;
}
@media screen and (max-width: 768px) {
  .reading-description p .highlight-text{
    font-size:20px ;
  }
}
.reading-description p:last-child {
    margin-bottom: 0;
}

.reading-voice-link {
	text-align: center;
}
.reading-voice-text {
	font-size: 24px;
	line-height: 1.8;
	letter-spacing: -0.05em;
  color: var(--OR);
}

.reading-arrow {
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 24px solid var(--color-main);
}

/* スマホ */
@media screen and (max-width: 768px) {
    .section-reading {
        padding: 60px 20px 30px;
    }

    .section-reading-title {
        font-size: 1.55rem;
        margin-bottom: 30px;
    }

    .reading-list {
        margin-bottom: 28px;
    }

    .reading-list li {
        font-size: 1rem;
        line-height: 1.85;
        margin-bottom: 14px;
    }

    .reading-bridge {
        padding: 22px 18px 20px;
        margin-bottom: 30px;
        border-radius: 8px;
    }

    .reading-bridge p {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .reading-discovery-box {
        padding: 28px 18px;
        margin-bottom: 28px;
    }

    .reading-discovery-lead {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .reading-discovery-title {
        font-size: 1.55rem;
        line-height: 1.55;
    }

    .reading-description {
        margin-bottom: 30px;
    }

    .reading-description p {
        font-size: 0.98rem;
        line-height: 1.95;
        margin-bottom: 14px;
    }

    .reading-voice-text {
        font-size: 1.08rem;
        line-height: 1.75;
    }

    .reading-arrow {
        border-left-width: 18px;
        border-right-width: 18px;
        border-top-width: 20px;
    }
}


/* ---------------------------------------------------------
 　■ お客様の声セクション
--------------------------------------------------------- */
.section-voices {
	padding: 180px 20px 70px;
}

.voice-card {
	border: 1px solid #dbe4ee;
	border-radius: 20px;
	padding: 50px 47px 40px 55px;
	box-shadow: 10px 10px 20px var(--OR);
	max-width: 1100px;
	margin: 0 auto;
}


.voice-location {
	font-size: 24px;
	margin: -13px 0 32px -13px;
	display: inline-block;
}

.voice-top {
	display: flex;
	align-items: flex-start;
	gap: 57px;
	margin-bottom: 20px;
}

.voice-photo {
	flex-shrink: 0;
	width: 250px;
}

.voice-photo img {
    width: 100%;
}
.voice-info {
    flex: 1;
    min-width: 0;
    line-height: 1.8;
}
.voice-info p {
    margin: 0;
}


.voice-before-after{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .voice-before-after{
    display: block;
  }
}

.voice-before,
.voice-after {
    padding-top: 4px;
}
@media screen and (max-width: 768px) {
  .voice-before,
  .voice-after {
    width: 100% !important;
  }
}
.voice-before {
	width: 48%;
}
.voice-after {
	width: 48%;
}
.voice-before .voice-issue-list{
	background-color: #eeeeee;
	border-radius: 15px;
	padding: 26px 20px 38px 30px;
}
@media screen and (max-width: 768px){
  .voice-before .voice-issue-list{
    padding: 26px 20px 10px 30px;
  }
}
.voice-after .voice-result-list{
	background-color: #f4f7f9;
	border: 1px solid var(--OR);
	border-radius: 15px;
	padding: 18px 20px 10px 20px;
}

.voice-label {
	font-size: 24px;
	font-weight: 700;
	padding: 3px 18px;
	margin-bottom: 5px;
}

.voice-label-before {
	color: #626262;
}

.voice-label-after {
	color: var(--OR);
	text-align: right;
}

.voice-issue-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voice-issue-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .voice-issue-list li{
    padding-left: 20px;
  }
}

.voice-issue-list li:last-child {
    border-bottom: none;
}

.voice-issue-list li::before {
	background-image: url(../images/check-circle_blu.svg);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0px;
	top: 7px;
	width: 18px;
	height: 18px;
	content: "";
	display: block;
}
@media screen and (max-width: 768px) {
  .voice-issue-list li::before{
    left:-10px;
  }
}

.voice-arrow {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--color-main);
    line-height: 1;
    text-align: center;
    margin: 10px 0;
}

.voice-result-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voice-result-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 600;
	color: #000;
}

.voice-result-list li:last-child {
    border-bottom: none;
}

.voice-result-list li::before {
	background-image: url(../images/check-circle_blu.svg);
	background-position: 0px 0px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0px;
	top: 7px;
	width: 18px;
	height: 18px;
	content: "";
	display: block;
}
@media screen and (max-width: 768px){
  .voice-result-list li::before{
    left:-10px;
  }
}

.voice-num {
	font-size: 24px;
	color: var(--OR);
	font-weight: 600;
	font-style: normal;
}

@media screen and (max-width: 768px) {
    .section-voices {
        padding: 80px 20px 60px;
    }

    .voice-card {
        padding: 22px 18px 20px;
    }

    .voice-top {
        flex-direction: column;
        gap: 12px;
    }

    .voice-photo {
        width: 100%;
    }

    .voice-photo img {
        width: 100%;
        height: auto;
    }
}



/* ---------------------------------------------------------
 　■ 登壇者プロフィールセクション
--------------------------------------------------------- */
.section-profile {
  padding: 50px 20px 85px;
}

.section-profile-title {
	margin: 13px 0 48px;
	font-size: 32px;
	line-height: 1.7;
	text-align: center;
	font-weight: 700;
}

.profile-card {
	border: 1px solid #dbe4ee;
	border-radius: 25px;
	padding: 43px 53px 45px 45px;
	box-shadow: 6px 6px 16px rgba(160, 160, 160, 1);
	max-width: 1100px;
	margin: 0 auto;
  background-color: #fff;
}

.profile-card-inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .profile-card-inner{
  display: block;
  }
  .profile-photo{
  margin: 0 auto;
  }
  .profile-name{
    font-size: 22px;
  }
}
.profile-photo{
  max-width: 205px;
  width: 100%;
}

.profile-info{
  max-width: 690px;
  width: 100%;
}

.profile-position,
.profile-name{
  font-size: 24px;
  line-height: 1.7;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .profile-position,
.profile-name{
  font-size: 20px;
}
}

.profile-text{
  margin-top: 30px;
}

.profile-text p{
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "palt";
  color: #000;
}

.profile-achievements{
  margin-top: 20px;
  color: var(--OR);
}

.profile-achievements li{
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
}

.profile-achievements li::before{
  content: "● ";
}



/* ---------------------------------------------------------
 　■ 開催概要セクション
--------------------------------------------------------- */
.section-outline {
  padding: 55px 20px 75px;
}

.section-outline-title {
  margin: 13px 0 45px;
  font-size: 32px;
  line-height: 1.7;
  text-align: center;
  font-weight: 700;
}

.outline-table-wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.outline-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #fff;
  box-shadow: 8px 8px 16px rgba(160, 160, 160, 1);
}
@media screen and (max-width: 768px) {
  tr,td,th{
    display: block;
  }
  .outline-table th{
    width: 100%;
  }
}

.outline-table tr:nth-child(n+2){
  border-top: 1px solid #cfcfcf;
}

.outline-table th,
.outline-table td {
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .outline-table th,
  .outline-table td {
    width: 100% !important;
  }
}

.outline-table th {
  padding: 20px 30px;
  width: 250px;
  background-color: #f4f7f9;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: left;
  color: #000;
}

.outline-table td {
  padding: 20px 45px;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  color: #000;
}

.outline-note {
  color: #a40000;
  font-size: 12px;
}

.outline-contact-title {
  font-weight: 700;
}

.outline-contact-list li::before {
  content: "● ";
}





/* ---------------------------------------------------------
 　■ 経営課題の解決セクション
--------------------------------------------------------- */
.section-case {
  padding: 50px 20px 58px;
}

.section-case-title {
  margin: 13px 0 58px;
  font-size: 32px;
  line-height: 1.7;
  text-align: center;
  font-weight: 700;
}

.case-lead {
  text-align: center;
  color: #000;
}

.case-lead-main {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

.case-lead-main span {
  color: #eb6100;
}

.case-lead-sub {
  font-size: 16px;
  line-height: 1.8;
}

.case-subtitle {
  margin-top: 55px;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  font-feature-settings: "palt";
}

.case-grid {
  max-width: 1000px;
  width: 100%;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 38px;
}
@media screen and (max-width: 768px) {
  .case-subtitle {
  font-size: 23px;
}
  .case-grid{
    display: block;
  }
}
.case-card {
  position: relative;
  border-radius: 15px;
  padding: 68px 25px 35px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .case-card{
    margin-bottom: 35px;
  }
}

.case-card-number {
  position: absolute;
  top: 0;
  left: 48px;
  color: var(--OR);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  z-index: 10;
}

.case-card::after{
  content: "";
  width: 80px;
  height: 80px;
  background-color: #fef9f6;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 24px;
  top: -40px;
}
@media screen and (max-width: 768px) {
  .case-card::after{
    top:-35px
  }
}

.case-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.case-card-company {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: #000;
  font-feature-settings: "palt";
}

.case-card-rating {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  color: #1c00eb;
}

.case-card-title {
  margin-top: 35px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.case-card-text {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
}




/* ---------------------------------------------------------
 　■ お申し込み状況セクション
--------------------------------------------------------- */
.section-schedule {
  padding: 70px 20px 120px;
}

.schedule-card {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 8px 8px 16px rgba(160, 160, 160, 1);
}

.schedule-card-head {
  padding: 15px 20px 20px;
  background-color: var(--OR);
  text-align: center;
}

.schedule-card-title {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
}

.schedule-card-body {
  width: 100%;
}

.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 70px;
  border-top: 1px solid #cfcfcf;
}

.schedule-item:first-child {
  border-top: none;
}

.schedule-date {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  color: #000;
}

.schedule-status {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--OR);
}


/* form */
.section-form{
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 20px 120px;
}






/* ---------------------------------------------------------
 　■ サンクスページ
--------------------------------------------------------- */
.section-thanks {
  padding: 80px 20px 120px;
}

.thanks-message {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 68px 20px 80px;
  background: #f4f7f9;
  text-align: center;
}

.thanks-message__title {
  font-size: 32px;
  line-height: 1.7;
  text-align: center;
  font-weight: 700;
  font-feature-settings: "palt";
}

.thanks-message__body {
  margin-top: 78px;
}

.thanks-message__body p {
  color: #07100d;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(32/18);
  font-feature-settings: "palt";
}

.thanks-message__note {
  margin-top: 32px;
  color: #07100d;
  font-size: 14px;
  line-height: calc(24/14);
  font-weight: 400;
  font-feature-settings: "palt";
}

.thanks-download {
  max-width: 1100px;
  margin: 68px auto 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(160, 160, 160, 1);
}

.thanks-download__head {
  background: #02194b;
  padding: 17px 20px;
  text-align: center;
}

.thanks-download__head-text {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: calc(26/22);
}

.thanks-download__body {
  padding: 38px 40px 75px;
  text-align: center;
}

.thanks-download__image {
  max-width: 350px;
  margin: 0 auto;
}

.thanks-download__image img {
  width: 100%;
  height: auto;
  display: block;
}

.thanks-download__title {
  position: relative;
  display: inline-block;
  margin-top: 56px;
  padding: 0 22px;
  font-size: 22px;
  font-weight: 700;
  line-height: calc(26/22);
}

.thanks-download__title::before,
.thanks-download__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 40px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: 100%;
}

.thanks-download__title::before {
  left: 0;
  background-image: url(/academy/assets/images/quotation-left.png);
}

.thanks-download__title::after {
  right: 0;
  background-image: url(/academy/assets/images/quotation-right.png);
}

.thanks-download__text {
  margin-top: 38px;
}

.thanks-download__text p {
  color: #07100d;
  font-size: 15px;
  font-weight: 700;
  line-height: calc(32/15);
}

.thanks-download__btn-area {
  margin-top: 48px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 500px;
  min-height: 60px;
  padding: 18px 0;
  border-radius: 999px;
  background: #eb6100;
  box-shadow: 6px 8px 0 #51270a;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-download:hover {
  opacity: 0.8;
}


@media screen and (max-width: 768px) {
  .section-thanks {
    padding: 50px 0 85px;
  }

  .thanks-message {
    padding: 34px 20px 40px;
  }

  .thanks-message__title {
    font-size: 24px;
  }

  .thanks-message__body {
    margin-top: 34px;
  }

  .thanks-message__body p {
    font-size: 14px;
  }

  .thanks-message__note {
    margin-top: 18px;
    font-size: 10px;
  }

  .thanks-download {
    margin-top: 34px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .thanks-download__head-text {
    font-size: 18px;
    line-height: 1.5;
  }

  .thanks-download__body {
    padding: 28px 20px 38px;
  }

  .thanks-download__title {
    margin-top: 24px;
    padding: 0 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .thanks-download__text {
    margin-top: 22px;
  }

  .thanks-download__text p {
    font-size: 12px;
    line-height: 1.7;
  }

  .thanks-download__btn-area {
    margin-top: 28px;
  }

  .btn-download {
    min-width: 100%;
    min-height: 40px;
    padding: 10px 0;
    font-size: 16px;
    box-shadow: 3px 4px 0 #51270a;
  }
}


















.serif-ttl {
  background-image: url(../images/special_ttl_bg_pc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  height: 200px;
  padding-top: 45px;
}
@media screen and (max-width: 1300px) {
  .serif-ttl {
    height: 15.3846153846vw;
    padding-top: 3.4615384615vw;
  }
}
.serif-ttl span {
  display: block;
}
.serif-ttl .sub {
  font-size: 30px;
  letter-spacing: -0.07em;
}
@media screen and (max-width: 1300px) {
  .serif-ttl .sub {
    font-size: 2.3076923077vw;
  }
}
.serif-ttl .ttl {
  font-size: 48px;
  margin-top: 10px;
}
@media screen and (max-width: 1300px) {
  .serif-ttl .ttl {
    font-size: 3.6923076923vw;
    margin-top: 0.7692307692vw;
  }
}

@media screen and (max-width: 768px) {
  .serif-ttl {
    background-image: url(../images/special_ttl_bg_sp.png);
    height: 30vw;
    padding-top: 7vw;
  }
  .serif-ttl .sub {
    font-size: 4.8vw;
  }
  .serif-ttl .ttl {
    font-size: 7.2vw;
    margin-top: 3vw;
  }
}
.btn-wp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-wp li a {
  background-image: url(../images/btn_bl.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  line-height: 1.333;
  color: var(--YE);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  text-align: center;
  font-size: 26px;
  width: 366px;
  height: 127px;
  padding: 0 12px 15px 0;
}
@media screen and (max-width: 1300px) {
  .btn-wp li a {
    font-size: 2vw;
    width: 28.1538461538vw;
    height: 9.7692307692vw;
    padding: 0 0.9230769231vw 1.1538461538vw 0;
  }
}
.btn-wp li a::before {
  content: "";
  border: 0px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 50px;
  margin-top: -10px;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 1300px) {
  .btn-wp li a::before {
    right: 3.8461538462vw;
    margin-top: -0.7692307692vw;
    width: 1.1538461538vw;
    height: 1.1538461538vw;
  }
}

@media screen and (max-width: 768px) {
  .btn-wp {
    width: 100%;
  }
  .btn-wp li a {
    font-size: 3vw;
    width: 43.3vw;
    height: 14.7vw;
  }
  .btn-wp li a::before {
    right: 5vw;
    margin-top: -1.2vw;
    width: 1.6vw;
    height: 1.6vw;
  }
}
.btn-wp li.btn-rd a {
  background-image: url(../images/btn_rd.png);
}

.gd-list ul li {
  position: relative;
  line-height: 1.3;
  color: var(--GD);
  padding-left: 1.1em;
  font-size: 24px;
}
@media screen and (max-width: 1300px) {
  .gd-list ul li {
    font-size: 1.8461538462vw;
  }
}
@media screen and (max-width: 768px) {
  .gd-list ul li {
    font-size: 3.6vw;
  }
}
.gd-list ul li + li {
  margin-top: 0.6em;
}
@media screen and (max-width: 768px) {
  .gd-list ul li + li {
    margin-top: 2vw;
  }
}
.gd-list ul li::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  background-color: currentColor;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5em;
}

.ttl-ornate {
  background-image: url(../images/decorate_ttl_bg.png);
  background-position: center 13px;
  background-repeat: no-repeat;
  background-size: 80% auto;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .ttl-ornate {
    background-position: center 1vw;
  }
}
@media screen and (max-width: 768px) {
  .ttl-ornate {
    background-size: 100% auto;
    background-position: center 2.6vw;
  }
}
.ttl-ornate > span {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  margin: 0 auto;
  letter-spacing: -0.05em;
  color: var(--GD);
  font-size: 48px;
}
@media screen and (max-width: 1300px) {
  .ttl-ornate > span {
    font-size: 3.6923076923vw;
  }
}
@media screen and (max-width: 768px) {
  .ttl-ornate > span {
    font-size: 8vw;
  }
}

.youtube-wp {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube-wp iframe {
  width: 100%;
  height: 100%;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #fff799));
  background: linear-gradient(transparent 50%, #fff799 50%);
}

/* ---------------------------------------------------------
 　■ Footer
--------------------------------------------------------- */
footer {
  background-color: #1c2b6e;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

.footer-nav{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.footer-nav li a{
  text-decoration: none;
  font-size: 14px;
}

footer .copyright{
  margin-top: 18px;
}

footer .copyright small{
  font-size: 12px;
}




/*# sourceMappingURL=common.css.map */