@charset "utf-8";
/* CSS Document */

/*common*/
html {
    overflow-y: scroll;
}

body {
	font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', '游ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo','ＭＳ Ｐゴシック', sans-serif;
    font-size: 16px;
    line-height: 1.8;
	color: #333333;
	background: #FFF;
}

body, div, span, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6, form, input, textarea,
p, table, thead, tbody, th, td, pre, figure, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

table, tbody, th, td {
    border-spacing: 0;
    border-collapse: collapse;
}

h1, h2, h3, h4 {
    font-size: 100%;
}

img, abbr, acronym, fieldset {
    border: 0;
}

img {
	display: block;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    width: 100%;
    height: auto;
}

em, var {
    font-style: normal;
}

li {
    list-style-type: none;
}

a {
	text-decoration: underline;
}

a:link {
    color: #00A2DE;
}

a:visited{
    color: #00A2DE;
}

a:hover{
    color: #13537E;
}

a:active{
    color: #13537E;
}
.inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}
.btn a,
.btn button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    background: #FF4500;
    border: 2px solid #FFF;
    border-radius: 9999px;
    box-shadow: 0px 4px 0 0 rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.btn a::after,
.btn button::after {
    display: block;
    content: "";
    width: 18px;
    height: 18px;
    margin-left: 10px;
    background: url("../img/icon_btn.png") no-repeat;
    background-size: 100% 100%;
}
.btn a:hover,
.btn button:hover {
    box-shadow: none;
    transform: translateY(4px);
}
.sp {
    display: none;
}
section {
    overflow-x: hidden;
}
section .btn {
    width: 460px;
    margin: 0 auto 40px;
}
section .btn a,
section .btn button {
    padding: 15px;
    font-size: 28px;
}
section .btn a::after,
section .btn button::after {
    width: 30px;
    height: 30px;
}


/*header*/
header {
    padding: 20px 0 0;
    background: url("../img/bg_header.png") center bottom no-repeat;
    background-size: cover;
}
header .header_top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 20px 12px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
header .header_top .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-shrink: 0;
}
header .header_top .logo .image {
    width: 140px;
    margin-right: 10px;
}
header .header_top .logo h1 {
    font-size: 10px;
    font-weight: bold;
    color: #00933B;
    line-height: 1.5;
}
/* ナビゲーション */
header .header_nav.pc {
    margin-left: auto;
    margin-right: clamp(16px, 1.4vw, 24px);
}
header .header_nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(20px, 2.2vw, 32px);
}
header .header_nav ul li a {
    font-size: 13px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid #00933B;
    white-space: nowrap;
    display: block;
}
header .header_nav ul li a:hover {
    color: #00933B;
}
/* ヘッダー右ボタンエリア */
header .header_btns {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
header .header_btns .btn {
    width: 210px;
}
/* LINEボタン */
.btn_line,
.btn_line:link,
.btn_line:visited {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: bold;
    color: #00933B;
    text-decoration: none;
    border-radius: 9999px;
    white-space: nowrap;
    transition: background 0.2s ease;
}
.btn_line:hover {
    background: rgba(0,147,59,0.08);
    color: #00933B;
}
.btn_line img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
/* ハンバーガーボタン：920px以下のみ表示 */
header .header_actions {
    display: none;
}
.hamburger-btn {
    display: none;
}
@media screen and (max-width: 920px) {
    header .header_nav.pc,
    header .header_btns.pc {
        display: none !important;
    }
    header .header_actions {
        display: flex;
        align-items: center;
        margin-left: auto;
        gap: 8px;
        flex-shrink: 0;
    }
    header .header_line.sp,
    header .header_line.sp:link,
    header .header_line.sp:visited {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        padding: 5px;
        text-decoration: none;
    }
    header .header_line img {
        width: 28px;
        height: 28px;
    }
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
        flex-shrink: 0;
    }
    .hamburger-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: #333;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }
    .hamburger-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
/* ドロワー（全幅で共通定義） */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}
.sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}
.sp-nav.open {
    transform: translateX(0);
    visibility: visible;
}
.sp-nav-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    padding: 20px 0 30px;
    overflow-y: auto;
}
/* 閉じるボタン */
.sp-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 12px;
}
.sp-nav-close span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #555;
    border-radius: 2px;
}
.sp-nav-close span:nth-child(1) { transform: rotate(45deg); }
.sp-nav-close span:nth-child(2) { transform: rotate(-45deg); }
/* ナビリンク */
.sp-nav nav {
    flex: 1;
    padding-top: 50px;
}
.sp-nav nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sp-nav nav ul li {
    border-bottom: 1px solid #eee;
}
.sp-nav nav ul li a,
.sp-nav nav ul li a:link,
.sp-nav nav ul li a:visited {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
.sp-nav nav ul li a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 14px;
    background: #00933B;
    border-radius: 2px;
    margin-right: 10px;
    flex-shrink: 0;
}
.sp-nav nav ul li a:hover {
    color: #00933B;
    background: #f5faf6;
}
/* ボタンエリア */
.sp-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 20px 0;
}
.sp-nav-btns .btn {
    width: 100%;
}
.sp-nav-btns .btn_line,
.sp-nav-btns .btn_line:link,
.sp-nav-btns .btn_line:visited {
    justify-content: center;
    border: 2px solid #00933B;
    padding: 10px 14px;
}
.fixed-line-banner {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: block;
    width: clamp(150px, 15.28vw, 220px);
    height: clamp(150px, 15.28vw, 220px);
    text-decoration: none;
    background: url("../img/banner.png?20260616b") center center no-repeat;
    background-size: clamp(150px, 15.28vw, 220px) clamp(150px, 15.28vw, 220px);
    filter: drop-shadow(0 6px 16px rgba(0,0,0,0.22));
    transition: transform 0.2s ease, filter 0.2s ease;
}
.fixed-line-banner:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.26));
}
@media screen and (max-width: 920px) {
    .fixed-line-banner {
        right: 12px;
        bottom: 12px;
        width: 130px;
        height: 130px;
        background-size: 130px 130px;
        filter: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.22);
    }
}
header .catch {
    display: flex;
    justify-content: space-between;
    padding: 0 30px 0 50px;
}
header .catch .catch_main {
    max-width: 405px;
    margin-right: 20px;
}
header .catch .catch_sub {
    display: flex;
    align-items: flex-end;
    max-width: 738px;
}
/*section#promise*/
section#promise {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    background: url("../img/bg_green.png") center top;
    background-size: 500px 300px;
}
section#promise::before {
    content: none;
}
section#promise::after {
    content: none;
}
section#promise h2 {
    margin-bottom: 40px;
    padding: 0 160px 0 265px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    color: #FFF;
}
section#promise .box {
    position: relative;
    margin-bottom: 40px;
    padding: 60px;
    background: #FFF;
    border-radius: 40px;
}
section#promise .box::after {
    position: absolute;
    display: block;
    content: "";
    width: 278px;
    height: 371px;;
    background: url("../img/person_01.png") no-repeat;
    background-size: 100% 100%;
    top: -160px;
    left: 80px;
}
section#promise .box p.explain {
    margin-bottom: 30px;
    padding-left: 330px;
}
section#promise .point {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
section#promise .point .point_01 {
    width: 100%;
    margin-bottom: 20px;
}
section#promise .point .point_01 img {
    width: 531.5px;
    height: 71.5px;
    margin: 0 auto;
}
section#promise .point .point_02,
section#promise .point .point_03 {
    width: calc(50% - 20px);
}
/* ボタン配置（c-btnはc-btn.cssで定義） */
section#promise .promise_cta_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}
section#promise .seminar_cta {
    text-align: center;
}
section#promise .seminar_lead {
    color: #fff;
    font-size: clamp(13px, 1.6vw, 22px);
    line-height: 1.7;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}
section#promise .seminar_lead::before,
section#promise .seminar_lead::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 3px;
    height: 1.2em;
    background: #fff;
}
section#promise .seminar_lead::before {
    transform: rotate(-20deg);
}
section#promise .seminar_lead::after {
    transform: rotate(20deg);
}
section#promise .seminar_lead strong {
    display: inline;
    font-size: inherit;
    font-weight: bold;
    color: #ffd700;
}
section#promise .seminar_cta_wrap {
    display: flex;
    justify-content: center;
}
section#promise .seminar_cta_wrap .c-btn--big {
    font-size: 28px;
    /* アイコン分だけ右側にも同じ余白を確保してテキストを中央寄せ */
    padding-right: calc(clamp(10px, 1.25vw, 18px) + 40px + 15px);
}
section#promise .seminar_cta_wrap .c-btn__detail {
    line-height: 1.3;
}
section#promise .seminar_cta_wrap .c-btn__arrow {
    width: 26px;
    height: 26px;
    min-width: 26px;
}
section#promise .seminar_cta_wrap .c-btn__arrow-img {
    width: 7px !important;
}
/*section#adviser — お客様の声スライダー*/
section#adviser {
    margin-top: -2.5vw;
    padding: 60px 0 calc(10vw + 40px);
    position: relative;
    overflow: visible;
    background: #E2F0A6;
}
section#adviser::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #FFF;
    border-left: 100vw solid transparent;
}
section#adviser::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #FFF;
    border-right: 100vw solid transparent;
}
/* ヘッダー */
section#adviser .adviser_head {
    margin-bottom: 32px;
    overflow: visible;
}
section#adviser .adviser_head_text {
    max-width: calc(100% - 220px);
    margin: 0 auto;
    text-align: center;
}
@media screen and (max-width: 920px) {
    section#adviser .adviser_head_text {
        max-width: 100%;
        text-align: left;
    }
}
section#adviser .adviser_subtitle {
    font-size: 16px;
    color: #00933B;
    font-weight: bold;
    margin-bottom: 8px;
    justify-content: center;
    gap: 8px;
}
@media screen and (max-width: 920px) {
    section#adviser .adviser_subtitle {
        justify-content: flex-start;
    }
}
section#adviser h2 {
    font-size: 52px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}
/* スライダー */
section#adviser .adviser_slider {
    position: relative;
    padding: 0 80px;
}
/* person を絶対配置でカードリストの上端に */
section#adviser .adviser_person {
    position: absolute;
    right: 130px;
    top: -195px;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}
section#adviser .voice-swiper {
    overflow: hidden;
}
/* カードの高さを最大に揃える */
section#adviser .voice-swiper .swiper-wrapper {
    align-items: stretch;
}
section#adviser .voice-swiper .swiper-slide {
    height: auto;
}
/* カード（4枚横並び・縦レイアウト） */
.voice-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.voice-card__photo {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 4/3;
    background: #ddd;
    overflow: hidden;
}
.voice-card__main {
    margin-top: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.voice-card__profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}
.voice-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
    overflow: hidden;
}
.voice-card__name {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
.voice-card__meta {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}
.voice-card__title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
}
.voice-card__body {
    font-size: 12px;
    color: #555;
    line-height: 1.7;
    flex: 1;
}
/* ナビゲーション */
.voice-prev,
.voice-next {
    width: 44px !important;
    height: 44px !important;
    margin-top: -22px !important;
    background: #fff;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.voice-prev::after,
.voice-next::after {
    font-size: 13px !important;
    color: #555;
}
.voice-prev { left: 16px; }
.voice-next { right: 16px; }
/* ページネーション */
.voice-pagination {
    margin-top: 20px;
    position: static !important;
    text-align: center;
}
.voice-pagination .swiper-pagination-bullet {
    background: #00933B;
    opacity: 0.3;
}
.voice-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}
/*section#point*/
section#point {
    position: relative;
    margin: -2.5vw 0 0;
    padding: 40px 0 2.5vw;
}
section#point .inner {
    padding-bottom: 40px;
}
section#point::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    content: "";
    height: 0;
    border-top: 5vw solid #FFF;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    z-index: 100;
}
section#point h2 {
    font-size: 44px;
    text-align: center;
    font-weight: bold;
}
section#point p.lead {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}
section#point p.lead span.marker-animation {
    padding: 2px 0;
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-repeat: repeat-x;
    background-size: 200% 1.5em;
    background-position: 0 0;
    transition: all 1.5s ease;
    font-weight: bold;
}
section#point p.lead span.marker-animation.active{
    background-position: -100% 0;
}
section#point .image {
    margin-bottom: 40px;
    padding: 0 60px;
}
section#point h3 {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    color: #00B100;
    text-align: center;
}
section#point p.explain {
    margin-bottom: 60px;
    text-align: center;
}
/*section#flow*/
section#flow {
    margin-top: calc(-5vw + 1px);
    position: relative;
    padding: calc(5vw + 60px) 0 calc(10vw + 10px);
    background: url("../img/bg_green.png") center top;
    background-size: 500px 300px;
    z-index: 50;
}
section#flow::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #F0F0F0; 
    border-left: 100vw solid transparent;
}
section#flow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #F0F0F0; 
    border-right: 100vw solid transparent;
}
section#flow h2 {
    margin-bottom: 40px;
    font-size: 44px;
    color: #FFF;
    text-align: center;
}
section#flow .box {
    padding: 60px 40px 60px;
    background: #FFF;
    border-radius: 20px;
}
section#flow .comparison table {
    width: calc(100% - 2px);
    margin-bottom: 60px;
}
section#flow .comparison table th,
section#flow .comparison table td {
    border-right: 2px solid #1BB101;
    border-bottom: 2px solid #1BB101;
    vertical-align: middle;
    font-size: 18px;
}
section#flow .comparison table thead th.feature {
    background: url("../img/person_03.png") bottom right no-repeat;
    background-size: 158.5px 168.5px;
    vertical-align: top;
}
section#flow .comparison table thead th.feature ol li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}
section#flow .comparison table thead th.feature ol li p {
    font-size: 22px;
    font-weight: bold;
    text-align: left;
}
@media screen and (max-width: 1250px) {
    section#flow .comparison table thead th.feature ol li p {
        font-size: 20px;
    }
}
section#flow .comparison table thead th.feature ol li p span {
    color: #00B100;
}
section#flow .comparison table thead th.feature ol li::before {
    display: block;
    width: 74.5px;
    height: 69px;
    content: "";
    margin-right: 10px;
}
section#flow .comparison table thead th.feature ol li.feature_01::before {
    background: url("../img/icon_feature_01.png") center center no-repeat;
    background-size: 74.5px 69px;
}
section#flow .comparison table thead th.feature ol li.feature_02::before {
    background: url("../img/icon_feature_02.png") center center no-repeat;
    background-size: 74.5px 69px;
}
section#flow .comparison table thead tr.tit th {
    border-right: none;
    border-bottom: none;
}
section#flow .comparison table thead tr.tit th h3 {
    margin: -20px -1px 0;
    padding: 15px 20px;
    color: #FFF;
    font-size: 26px;
    border-radius: 20px 20px 0 0; 
}
section#flow .comparison table thead tr.tit th.our,
section#flow .comparison table thead tr.tit th.our h3 {
    background: #00B100;
}
section#flow .comparison table thead tr.tit th.other h3 {
    margin-left: 0;
}
section#flow .comparison table thead tr.tit th.other,
section#flow .comparison table thead tr.tit th.other h3 {
    background: #6F6F6F;
}
section#flow .comparison table thead tr.explain th {
    width: 340px;
    padding: 20px 40px;
}
section#flow .comparison table thead tr.explain th.our {
    font-weight: bold;
}
section#flow .comparison table thead tr.explain th.other {
    padding: 20px 60px;
}
section#flow .comparison table thead tr.explain th p.tit {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
    text-align: left;
} 
section#flow .comparison table thead tr.explain th p.explain {
    font-size: 18px;
    text-align: left;
} 
section#flow .comparison table thead tr.explain th p.explain span {
    color: #00B100;
}
section#flow .comparison table thead tr.explain th.our {
    border-left: 2px solid #1BB101;
}
section#flow .comparison table thead tr.explain th.our img {
    width: 188px;
    height: auto;
    margin: 0 auto 10px;
}
section#flow .comparison table thead tr.explain th.other {
    background: url("../img/person_04.png") right bottom no-repeat;
    background-size: 132.5px 115px;
}
section#flow .comparison table tbody th.step {
    width: 154px;
    padding: 90px 40px 70px;
    border-bottom: none;
    background: url("../img/bg_step.png") center top no-repeat;
    background-size: 100% 32px;
    border-left: 2px solid #1BB101;
}
section#flow .comparison table tbody tr.step_01 th.step {
    background: none;
    border-top: 2px solid #1BB101;
}
section#flow .comparison table tbody tr.step_01 th.part {
    border-top: 2px solid #1BB101;
}
section#flow .comparison table tbody tr.step_06 th.step {
     border-bottom: 2px solid #1BB101;
}
section#flow .comparison table tbody th.step img {
    width: 54px;
    height: auto;
    margin: 0 auto;
}
section#flow .comparison table tbody th.part {
    padding: 40px 20px;
}
section#flow .comparison table tbody th.part h3 {
    margin-bottom: 10px;
    font-size: 30px;
    color: #00B100;
    font-weight: bold;
}
section#flow .comparison table tbody th.part h3 br {
    display: none;
}
section#flow .comparison table tbody th.part p {
    text-align: left;
}
section#flow .comparison table tbody th.part p span.marker-animation {
    padding: 2px 0;
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(249,222,55) 50%);
    background-repeat: repeat-x;
    background-size: 200% 1.5em;
    background-position: 0 0;
    transition: all 1.5s ease;
    font-weight: bold;
}
section#flow .comparison table tbody th.part p span.marker-animation.active{
    background-position: -100% 0;
}
section#flow .comparison table tbody td.our,
section#flow .comparison table tbody td.other {
    width: 340px;
    padding: 60px 40px;
    text-align: left;
}
section#flow .comparison table tbody td.our {
    font-weight: bold;
    background: #E5F2CC;
}
section#flow .comparison table tbody td.our span {
    color: #00B100;
}
section#flow .comparison table tbody td.other {
    background: #EFF0EF;
}

/*section#service*/
section#service {
    position: relative;
    margin-top: clamp(-80px, -4vw, 0px);
    padding: 70px 0 calc(10vw + 10px);
    background: #F0F0F0;
    background-size: 500px 300px;
}
section#service::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #FFF; 
    border-left: 100vw solid transparent;
}
section#service::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 10vw solid #FFF; 
    border-right: 100vw solid transparent;
}
section#service h2 {
    margin-bottom: 30px;
    font-size: 44px;
    font-weight: bold;
    text-align: center;
}
section#service .service_type {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 60px;
    margin-bottom: 30px;
}
section#service .service_type::before {
    position: absolute;
    display: block;
    content: "";
    top: -246px;
    right: 125px;
    width: 189px;
    height: 503px;
    background: url("../img/person_05.png") no-repeat;
    background-size: 100% 100%;
    z-index: 50;
}
section#service .service_type .box {
    width: calc(33.333% - 20px);
    padding: 25px;
    background: #FFF;
    border-radius: 40px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    z-index: 100;
}
/*section#service .service_type .box:last-child {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}*/
section#service .service_type .box h3 {
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #00B100;
    text-align: center;
    line-height: 1.4;
}
/*section#service .service_type .box:last-child h3 {
    margin: 0;
}*/
section#service .service_type .box img {
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
}
/*section#service .service_type .box:last-child img {
    margin: 0;
}*/
section#service .service_type .box ol {
    counter-reset: my-counter;
    padding: 0 10px;
}
/*section#service .service_type .box:last-child ol {
    padding: 0;
}*/
section#service .service_type .box ol li {
    padding-left: 30px;
    position: relative;
}
section#service .service_type .box ol li:before {
    content: counter(my-counter);
    counter-increment: my-counter;
    background-color: #00B100;
    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 22px;
    width: 22px;
    color: #FFF;
    font-size: 85%;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
}
/*section#faq*/
section#faq {
    margin-bottom: 60px;
}
section#faq h2 {
    margin-bottom: 30px;
    font-size: 44px;
    font-weight: bold;
    text-align: center;
}
section#faq dl {
    margin: 0 60px 30px;
    border: 4px solid #00B100;
}
section#faq dl:last-of-type {
    margin-bottom: 60px;
}
section#faq dl dt,
section#faq dl dd {
    display: flex;
    justify-content: space-between;
}

section#faq dl dt {
    padding: 10px 60px;
    background: url("../img/bg_green.png") center top;
    background-size: 500px 300px;
    align-items: center;
}
section#faq dl dt::before {
    display: block;
    content: "";
    width: 23px;
    height: 46px;
    background: url("../img/icon_q.png") no-repeat;
    background-size: 100% 100%;
}
section#faq dl dd {
    padding: 20px 60px;
    align-items: flex-start ;
}
section#faq dl dd::before {
    display: block;
    content: "";
    width: 22px;
    height: 46px;
    background: url("../img/icon_a.png") no-repeat;
    background-size: 100% 100%;
}
section#faq dl dt p {
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
}
section#faq dl dt p,
section#faq dl dd p {
    width: calc(100% - 50px);
}
/*section#groupsite*/
section#groupsite {
    background: #E8E8E8;
}
section#groupsite h2 {
    margin-bottom: 60px;
    padding: 30px 20px;
    font-size: 24px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    background: #B8943E;
}
section#groupsite ul.banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
section#groupsite ul.banner li {
    width: 321px;
    margin-right: 20px;
    margin-bottom: 20px;
}
section#groupsite ul.banner li:nth-child(3n+3) {
    margin-right: 0;
}
section#groupsite ul.banner li p.explain {
    margin-top: 5px;
    font-size: 10px;
    text-align: right;
}
/*footer*/
.footer {
  padding: 0;
  position: relative;
  /*
  background: -webkit-linear-gradient(315deg, #048798 0%, #014750 100%);
  background: linear-gradient(135deg, #048798 0%, #014750 100%);
  */
  background:#333;
    font-size: 14px;
}

.footer__page-top {
  display: none;
}

@media screen and (min-width: 769px) {
  .footer__page-top {
    right: 40px;
    width: 60px;
  }
}

@media screen and (max-width: 768px) {
  .footer__page-top {
    right: 10px;
    width: 52px;
  }
}

.footer__page-top--default {
  position: absolute;
}

@media screen and (min-width: 769px) {
  .footer__page-top--default {
    top: -30px;
  }
}

@media screen and (max-width: 768px) {
  .footer__page-top--default {
    top: -26px;
  }
}

.footer__page-top--active {
  position: fixed;
}

@media screen and (min-width: 769px) {
  .footer__page-top--active {
    bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .footer__page-top--active {
    bottom: 10px;
  }
}

.footer__page-top img {
  display: block;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .footer__container {
    /* padding: 58px 0 46px 0; */
    padding: 58px 10% 46px 10%;
    display:flex;
  }
}

@media screen and (max-width: 768px) {
  .footer__container {
    /*
    width: 84%;
    padding: 44px 0 42px 0;
    margin: 0 auto;
    */
    font-weight: 600;
    font-size: 15px;
    font-feature-settings: "palt";
    line-height: 1.7;
    letter-spacing: 0.15em;
  }
}


.footer-box1{
	width:50%;
}
@media screen and (max-width: 768px) {
	.footer-box1{
		width:100%;
	    padding:0;
	    text-align:center;
	}

}

.footer-box2{
	width:50%;
    font-size: 15px;
    font-feature-settings: "palt";
    line-height: 1.8;
    letter-spacing: 0.15em;
    font-weight: bold;
    padding:0 0 0 20%;
}

@media screen and (max-width: 768px) {
	.footer-box2{
		width:100%;
	    padding:0;
	}

}

.footer-box2 .hplink{
	clear: both;
    color: #fff;
    display: inline-block;
    width: 380px;
    border: 2px #fff solid;
    text-align: center;
    text-decoration: none;
    margin: 30px;
    padding: 20px;
    float: right;
    font-size: 20px;
}

@media screen and (max-width: 768px) {

	.footer-box2 .hplink{
	    float: none;
	    text-align: center;
	    display: inline-block;
	    color: #fff;
	    width: 80%;
	    font-size: 20px;
	    margin: 30px 10%;
	}

}


.footer__logo {
  display: block;
  height: auto;
}

@media screen and (min-width: 769px) {
  .footer__logo {
    width: 275px;
    /* margin: 0 auto 30px auto; */
  }
}

@media screen and (max-width: 768px) {
  .footer__logo {
  	/*
    margin-bottom: 30px;
    width: 208px;
    */
	display: inline-block;
    width: 300px;
    margin: 40px 0 10px 0;
  }
}

.footer__address {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {
  .footer__address {
    /* 
    text-align: center;
    font-size: 18px;
    */
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 62px;
    margin-top: 16px;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 32px;
  }
}

.footer__copyright {
  text-align: center;
  background-color: #384546;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
  padding: 20px 0;
}

@media screen and (min-width: 769px) {
  .footer__copyright {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 13px;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .footer-nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (min-width: 769px) {
  .footer-nav__item:nth-child(1n+2) {
    margin-left: 42px;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav__item:nth-child(1n+2) {
    margin-left: 22px;
  }
}

.footer-nav__link {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {
  .footer-nav__link {
    padding-left: 22px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav__link {
    padding-left: 18px;
    font-size: 14px;
  }
}

.footer-nav__link:hover {
  color: #fff;
}

.footer-nav__link::before {
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../img/common/footer-nav-arrow.svg");
  background-position: center center;
  background-size: contain;
}
footer + div {
    color: #666;
    font-size: 1.3rem;
    letter-spacing: 0;
}

footer a:hover {
    color:#fff;
}

footer + div p {
    float: left;
    margin: 20px 0;
    font-weight: bold;
    font-feature-settings: "palt";
    line-height: 1.7;
}


footer + div a {
    color: #666;
    background: url(../img/arr_03.gif) no-repeat left center;
    padding-left: 10px;
    margin-right: 20px;
}

footer + div a:hover {
    opacity: 0.6;
}


footer + div p + p {
    float: right;
}

.cf:after {
    content: " ";
    display: block;
    clear: both;
}

@media screen and (max-width: 768px){
	.inner {
	    width: initial;
	}
}


@media screen and (max-width: 768px){
	footer + div p {
	    float: none !important;
	    text-align: center !important;
	}
}

@media screen and (max-width: 768px){
	footer + div p {
	    float: none !important;
	    text-align: center !important;
	}
}

footer ul {
    float: right;
    width:400px;
    margin:0 0 0 auto;
}


footer ul li {
    float: left;
    width: 190px;
    padding-left: 10px;
    background: url(../img/arr_02.gif) no-repeat left center;
}

footer ul li a,
footer ul li a:link,
footer ul li a:visited{
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px){
	footer ul {
	    float: none;
	    width: initial;
	    border-bottom: 1px solid #666;
	}
}

@media screen and (max-width: 768px){
	footer ul li {
	    width: initial;
	    float: none;
	    margin: 0;
	    padding: 0;
	    border-top: 1px solid #666;
	    background-position: 10px center;
	}
}

@media screen and (max-width: 768px){
	footer ul a {
	    display: block;
	    padding: 10px;
	    padding-left: 20px;
	}
}

.footer_btm.inner {
    margin: 0 10%;
    padding: 0;
    max-width: none;
    font-size: 14px;
    color: #333;
}
.footer_btm.inner a {
    color: #333;
}

@media screen and (max-width: 1100px) {
    header .header_top .logo h1 {
        display: none;
    }
    header .header_top .logo .image {
        width: 120px;
    }
    header .header_nav ul {
        gap: 20px;
    }
    header .header_nav ul li a {
        font-size: 11px;
    }
    .btn_line {
        font-size: 11px;
        padding: 8px 10px;
    }
    header .header_btns .btn {
        width: 180px;
    }
}
@media screen and (max-width: 1200px) {
    /*tablet*/
    header .header_top {
        margin-bottom: 30px;
    }
    header .catch {
        padding: 0;
    }
    section#promise h2 {
        padding: 0;
        font-size: 28px;
    }
    section#promise .box::after {
        top: 20px;
        width: 20vw;
        height: 26.6vw;
    }
    section#promise .box p.explain {
        padding-left: 26vw;
    }
    section#adviser h2 {
        font-size: 28px;
    }
    section#adviser h2 span {
        font-size: 36px;
    }
    section#adviser h2::after {
        width: 16vw;
        height: 20.984vw;
        right: 22px;
    }
    section#adviser ul.type {
        padding: 0;
    }
    section#adviser ul.type li a {
        padding: 20px 8px;
    }
    section#flow h2 {
        font-size: 36px;
    }
    section#flow .comparison {
        width: 100%;
        margin-bottom: 30px;
        padding-top: 20px;
        padding-left: 1px;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    section#flow .comparison table {
        width: 1200px;
    }
    section#flow .comparison table tbody th.part h3 br {
        display: block;
    }
    section#service .service_type {
        padding: 0;
    }
    section#service .service_type::before {
        top: -15vw;
        right: 5vw;
        width: 15vw;
        height: 39.915vw;
    }
    section#service h2 {
        font-size: 36px;
        padding-right: 25vw;
    }
    section#service .service_type .box {
        padding: 20px;
    }
    section#service .service_type .box h3 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    section#service .service_type .box:last-child h3 {
        width: 200px;
    }
    section#service .service_type .box img {
        width: 30vw;
        height: auto;
    }
    section#service .service_type .box ol {
        padding: 0;
    }
    section#faq dl {
        margin: 0 0 30px;
    }
    section#groupsite .inner {
        padding: 0 4vw;
    }
    section#groupsite ul.banner li {
        width: calc((100% - 6vw) / 3);
    }
    
    
}

/* ===== #study teacher (PC only) ===== */
.study-seminar__teacher {
  position: absolute;
  right: 0;
  top: -10px;
  width: 200px;
  height: auto;
  z-index: 2;
}

@media screen and (max-width: 920px) {
  .study-seminar__teacher {
    display: none;
  }
  section#service .service_type .box {
    width: calc(50% - 15px);
  }
}
