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

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

body {
	font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', '游ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo','ＭＳ Ｐゴシック', sans-serif;
    font-size: 4.5vw;
    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 {
    padding: 0 4vw;
}
.btn {
    margin-bottom: 4vw;
}
.btn a,
.btn button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4vw;
    color: #FFF;
    font-size: 5.5vw;
    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: 4.5vw;
    height: 4.5vw;
    margin-left: 3vw;
    background: url("../img/icon_btn.png") no-repeat;
    background-size: 100% 100%;
}
.btn a:hover,
.btn button:hover {
    box-shadow: none;
    transform: translateY(4px);
}
.pc {
    display: none;
}
section {
    overflow-x: hidden;
}
section .btn a,
section .btn button {
    padding: 4vw 4vw;
    font-size: 5.5vw;
}
section .btn a::after,
section .btn button::after {
    width: 5vw;
    height: 5vw;
}


/*header*/
header {
    background: url("../img/bg_header.png") center bottom no-repeat;
    background-size: cover;
}
header .inner {
    padding: 0;
}
header .header_top {
    padding: 3vw 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:rgba(255,255,255,0.85);
}
header .header_top .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header .header_top .logo .image {
    width: 30vw;
    margin-right: 2.5vw;
}
header .header_top .logo h1 {
    font-size: 3vw;
    font-weight: bold;
    color: #00933B;
}
header .header_actions {
    display: flex;
    align-items: center;
    gap: 2vw;
    flex-shrink: 0;
}
header .header_line,
header .header_line:link,
header .header_line: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;
}
/* ハンバーガーボタン：SP では常に表示 */
.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);
}
/* ドロワー（SP用 — pc.cssが読まれないため重複定義必要） */
.nav-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    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: 82vw;
    max-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: 4vw 5vw;
    font-size: 4vw;
    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;
}
/* LINEボタン基本スタイル（pc.cssが読まれないSP用） */
.btn_line,
.btn_line:link,
.btn_line:visited {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: bold;
    color: #00933B;
    text-decoration: none;
    border-radius: 9999px;
    white-space: nowrap;
}
.btn_line img {
    width: 22px !important;
    height: 22px;
    flex-shrink: 0;
}
.sp-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 3vw;
    padding: 5vw 5vw 0;
}
.sp-nav-btns .btn {
    width: 100%;
    margin-bottom: 0;
}
.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: 3vw;
    font-size: 3.5vw;
}
.sp-nav-btns .btn a {
    font-size: 3.5vw;
    padding: 3vw;
}
.fixed-line-banner {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 900;
    display: block;
    width: 130px;
    height: 130px;
    text-decoration: none;
    line-height: 0;
    background: url("../img/banner.png?20260616b") center center / 130px 130px no-repeat;
}
@supports (-webkit-touch-callout: none) {
    .fixed-line-banner {
        transform: rotate(-90deg);
        transform-origin: center center;
    }
}
header .catch {
    padding: 6vw 4vw 0;
    background:rgba(255,255,255,0.6);
}
header .catch .catch_main {
    margin-bottom: 6vw;
    padding: 0 6vw;
}
header .catch .catch_sub {
    margin: 0 -4vw;
}
/*section#promise*/
section#promise {
    padding: 6vw 0 8vw;
    position: relative;
    overflow: hidden;
    background: url("../img/bg_green.png") center top;
    background-size: 50vw 30vw;
}
section#promise::before {
    content: none;
}
section#promise::after {
    content: none;
}
section#promise h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4vw;
    font-size: 5vw;
    font-weight: bold;
    color: #FFF;
}
section#promise h2::before {
    display: block;
    content: "";
    width: 30vw;
    height: 39.89vw;
    background: url("../img/person_01.png") center bottom no-repeat;
    background-size: 30vw 39.89vw;
}
section#promise h2 span {
    width: calc(100% - 34vw);
}
section#promise .box {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6vw;
    padding: 6vw 4vw;
    background: #FFF;
    border-radius: 4vw;
}
section#promise .box .point {
    order: 1;
}
section#promise .box p.explain {
    width: 100%;
    margin-top: 6vw;
    order: 2;
}
section#promise .point .point_01 {
    margin-bottom: 6vw;
}
section#promise .point .point_02{
    margin-bottom: 5vw;
}
/* ボタン配置（c-btnはc-btn.cssで定義） */
section#promise .promise_cta_wrap {
    margin-bottom: 6vw;
}
section#promise .seminar_cta {
    text-align: center;
}
section#promise .seminar_lead {
    color: #fff;
    font-size: clamp(10px, 2.8vw, 15px);
    line-height: 1.7;
    margin-bottom: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    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 {
    width: 100%;
}
section#promise .seminar_cta_wrap .c-btn--big {
    font-size: 4.2vw;
    gap: 2vw;
    padding-right: calc(3.125vw + 9vw + 2vw);
}
section#promise .seminar_cta_wrap .c-btn__arrow {
    width: 5vw;
    height: 5vw;
    min-width: 5vw;
}
section#promise .seminar_cta_wrap .c-btn__arrow-img {
    width: 6px !important;
}
section#promise .seminar_cta_wrap .c-btn__detail {
    letter-spacing: 0;
    line-height: 1.3;
}
/*section#adviser — お客様の声スライダー（SP）*/
section#adviser {
    margin-top: -2.5vw;
    padding: 8vw 0 calc(10vw + 40px);
    position: relative;
    overflow: hidden;
    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 {
    padding: 0 4vw;
    margin-bottom: 6vw;
}
section#adviser .adviser_head_text {
    text-align: left;
}
section#adviser .adviser_subtitle {
    font-size: 3.2vw;
    color: #00933B;
    font-weight: bold;
    margin-bottom: 2vw;
    gap: 1.5vw;
    justify-content: flex-start;
}
section#adviser h2 {
    font-size: 9vw;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}
section#adviser .adviser_slider {
    position: relative;
    padding: 0 7vw;
}
/* SP: person はカードリストの右上に絶対配置 */
section#adviser .adviser_person {
    position: absolute;
    right: 15vw;
    top: -28.7vw;
    width: 22vw;
    z-index: 10;
    pointer-events: none;
}
/* カードの高さ揃え */
section#adviser .voice-swiper .swiper-wrapper {
    align-items: stretch;
}
section#adviser .voice-swiper .swiper-slide {
    height: auto;
}
section#adviser .voice-swiper {
    overflow: hidden;
}
.voice-card {
    background: #fff;
    border-radius: 16px;
    padding: 4vw;
    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: 4vw;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.voice-card__profile {
    display: flex;
    align-items: center;
    gap: 3vw;
    padding-bottom: 3vw;
    border-bottom: 1px solid #eee;
    margin-bottom: 3vw;
}
.voice-card__avatar {
    width: 11vw;
    height: 11vw;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
    overflow: hidden;
}
.voice-card__name {
    font-size: 3.8vw;
    font-weight: bold;
    color: #333;
}
.voice-card__meta {
    font-size: 3vw;
    color: #888;
    margin-top: 1vw;
}
.voice-card__title {
    font-size: 3.8vw;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    margin-bottom: 2vw;
}
.voice-card__body {
    font-size: 3.4vw;
    color: #555;
    line-height: 1.7;
    flex: 1;
}
.voice-prev,
.voice-next {
    width: 36px !important;
    height: 36px !important;
    margin-top: -18px !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: 11px !important;
    color: #555;
}
.voice-prev { left: -3px !important; }
.voice-next { right: -3px !important; }
.voice-pagination {
    margin-top: 5vw;
    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 {
    margin-bottom: 3vw;
    font-size: 5vw;
    text-align: center;
    font-weight: bold;
}
section#point p.lead {
    margin-bottom: 6vw;
    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: 4vw;
}
section#point h3 {
    margin-bottom: 2vw;
    font-size: 5vw;
    font-weight: bold;
    color: #00B100;
    text-align: center;
}
section#point p.explain {
    margin-bottom: 6vw;
}
/*section#flow*/
section#flow {
    margin-top: -5vw;
    position: relative;
    padding: calc(5vw + 6vw) 0 calc(10vw + 10px);
    background: url("../img/bg_green.png") center top;
    background-size: 50vw 30vw;
    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: 6vw;
    font-size: 5vw;
    color: #FFF;
    text-align: center;
}
section#flow .box {
    padding: 4vw;
    background: #FFF;
    border-radius: 4vw;
}
section#flow .comparison {
    display: none;
}
section#flow .sp-flow-comparison {
    display: block;
    margin-bottom: 6vw;
}
/* feature — th.feature の値をそのまま踏襲 */
.sp-flow-comparison__feature {
    padding-bottom: 7vw;
    background: url("../img/person_03.png") bottom right no-repeat;
    background-size: 28vw 29.8vw;
}
.sp-flow-comparison__feature ol {
    padding-right: 3vw;
}
.sp-flow-comparison__feature ol li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 3vw;
}
.sp-flow-comparison__feature ol li:last-child {
    margin-bottom: 0;
}
.sp-flow-comparison__feature ol li p {
    width: calc(100% - 16vw);
    font-size: 4vw;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}
.sp-flow-comparison__feature ol li.feature_02 p {
    padding-right: 5vw;
}
.sp-flow-comparison__feature ol li p span {
    display: block;
    color: #00B100;
}
.sp-flow-comparison__feature ol li::before {
    display: block;
    width: 13.79vw;
    height: 10vw;
    content: "";
}
.sp-flow-comparison__feature ol li.feature_01::before {
    background: url("../img/icon_feature_01.png") center center no-repeat;
    background-size: 10.79vw 10vw;
}
.sp-flow-comparison__feature ol li.feature_02::before {
    background: url("../img/icon_feature_02.png") center center no-repeat;
    background-size: 10.79vw 10vw;
}
/* セクション外枠 — テーブルと同じ #1BB101 ボーダー */
.sp-flow-comparison__section {
    border: 2px solid #1BB101;
    border-radius: 2.5vw;
    overflow: hidden;
    margin-bottom: 4vw;
}
/* ヘッダー — thead tr.tit th h3 と同値 */
.sp-flow-comparison__head {
    padding: 2.5vw 1vw 2vw;
    color: #fff;
    font-size: 4.5vw;
    font-weight: bold;
    text-align: center;
}
.sp-flow-comparison__other {
    border-color: #6F6F6F;
}
.sp-flow-comparison__other .sp-flow-comparison__head {
    background: #6F6F6F;
}
.sp-flow-comparison__other .sp-flow-comparison__list li {
    border-top-color: #6F6F6F;
}
.sp-flow-comparison__other .sp-flow-comparison__body {
    border-top-color: #6F6F6F;
}
.sp-flow-comparison__other .sp-flow-comparison__step {
    border-right-color: #6F6F6F;
}
.sp-flow-comparison__other .sp-flow-comparison__name {
    color: #6F6F6F;
}
.sp-flow-comparison__our .sp-flow-comparison__head {
    background: #00B100;
}
/* リスト */
.sp-flow-comparison__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sp-flow-comparison__list li {
    display: flex;
    align-items: stretch;
}
/* ステップ列 — tbody th.step と同値 */
.sp-flow-comparison__step {
    width: 13vw;
    min-width: 13vw;
    padding: 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("../img/bg_step_sp.png") center top no-repeat;
    background-size: 100% 2.83vw;
    border-right: 2px solid #1BB101;
}
.sp-flow-comparison__other .sp-flow-comparison__step {
    background-image: url("../img/bg_step_sp_gray.png");
}
.sp-flow-comparison__list li:first-child .sp-flow-comparison__step {
    background: none;
}
.sp-flow-comparison__list li:first-child .sp-flow-comparison__body {
    border-top: none;
}
.sp-flow-comparison__step img {
    width: 100%;
    height: auto;
}
/* テキスト列 */
.sp-flow-comparison__body {
    flex: 1;
    padding: 3vw;
    border-top: 2px solid #1BB101;
}
.sp-flow-comparison__other .sp-flow-comparison__body {
    background: #EFF0EF;
}
.sp-flow-comparison__our .sp-flow-comparison__body {
    background: #E5F2CC;
}
/* タイトル — tbody th.part h3 と同値 */
.sp-flow-comparison__name {
    font-size: 5vw;
    font-weight: bold;
    color: #00B100;
    margin-bottom: 2vw;
}
/* 説明文 — tbody td.our / td.other と同値 */
.sp-flow-comparison__desc {
    font-size: 4vw;
    line-height: 1.6;
    text-align: left;
}
.sp-flow-comparison__our .sp-flow-comparison__desc {
    font-weight: bold;
}
.sp-flow-comparison__our .sp-flow-comparison__desc span {
    color: #00B100;
}
/* セクション間の矢印 */
.sp-flow-comparison__arrow {
    text-align: center;
    font-size: 8vw;
    color: #333;
    padding: 2vw 0;
    margin-bottom: 2vw;
}
section#flow .comparison table {
    width: 144vw;
}
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 {
    padding-bottom: 7vw;
    background: url("../img/person_03.png") bottom right no-repeat;
    background-size: 20vw 21.26vw;
    vertical-align: bottom;
}
section#flow .comparison table thead th.feature ol {
    padding-right: 3vw;
}
section#flow .comparison table thead th.feature ol li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 3vw;
}
section#flow .comparison table thead th.feature ol li:last-child {
    margin-bottom: 0;
}
section#flow .comparison table thead th.feature ol li p {
    width: calc(100% - 16vw);
    font-size: 4vw;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
}
section#flow .comparison table thead th.feature ol li.feature_02 p {
    padding-right: 5vw;
}
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: 13.79vw;
    height: 10vw;
    content: "";
}
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: 10.79vw 10vw;
}
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: 10.79vw 10vw;
}
section#flow .comparison table thead tr.tit th {
    border-right: none;
    border-bottom: none;
}
section#flow .comparison table thead tr.tit th h3 {
    margin-top: -5vw;
    padding: 2.5vw 1vw 2vw;
    color: #FFF;
    font-size: 4.5vw;
    border-radius: 2.5vw 2.5vw 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: 42vw;
    padding: 2vw 3vw;
    line-height: 1.4;
}
section#flow .comparison table thead tr.explain th.our {
    font-weight: bold;
}
section#flow .comparison table thead tr.explain th.other {
    padding: 3vw;
    vertical-align: top;
}
section#flow .comparison table thead tr.explain th p.tit {
    margin-bottom: 2vw;
    font-size: 4.5vw;
    font-weight: bold;
} 
section#flow .comparison table thead tr.explain th p.explain {
    font-size: 4vw;
    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: 80%;
    height: auto;
    margin: 0 auto 2vw;
}
section#flow .comparison table thead tr.explain th.other {
    background: url("../img/person_04.png") right bottom no-repeat;
    background-size: 23.13vw 20vw;
}
section#flow .comparison table tbody th.step {
    width: 13vw;
    padding: 4vw;
    border-bottom: none;
    background: url("../img/bg_step_sp.png") center top no-repeat;
    background-size: 100% 2.83vw;
    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;
    line-height: 1.6;
}
section#flow .comparison table tbody tr.step_06 th.step {
     border-bottom: 2px solid #1BB101;
}
section#flow .comparison table tbody th.step img {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
section#flow .comparison table tbody th.part {
    padding: 3vw;
}
section#flow .comparison table tbody th.part h3 {
    margin-bottom: 2vw;
    font-size: 5vw;
    color: #00B100;
    font-weight: bold;
}
section#flow .comparison table tbody th.part p {
    text-align: left;
    font-size: 4vw;
}
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: 42vw;
    padding: 3vw;
    text-align: left;
    font-size: 4vw;
    line-height: 1.6;
}
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: -4vw;
    padding: 10vw 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 {
    position: relative;
    margin-bottom: 6vw;
    font-size: 5vw;
    font-weight: bold;
    text-align: center;
}
section#service h2::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    right: 2vw;
    width: 13.52vw;
    height: 36vw;
    background: url("../img/person_05.png") no-repeat;
    background-size: 100% 100%;
    z-index: 50;
}
section#service .service_type {
    margin-bottom: 6vw;
    z-index: 100;
}
section#service .service_type .box {
    position: relative;
    margin-bottom: 4vw;
    padding: 4vw;
    background: #FFF;
    border-radius: 4vw;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.1);
    z-index: 100;
}
section#service .service_type .box h3 {
    margin-bottom: 4vw;
    font-size: 6vw;
    font-weight: bold;
    color: #00B100;
    text-align: center;
    line-height: 1.4;
}
section#service .service_type .box img {
    width: 60%;
    height: auto;
    margin: 0 auto 4vw;
}
section#service .service_type .box ol {
    counter-reset: my-counter;
}
section#service .service_type .box ol li {
    padding-left: 8vw;
    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: 6vw;
    width: 6vw;
    color: #FFF;
    font-size: 85%;
    line-height: 1;
    position: absolute;
    top: 0.5vw;
    left: 0;
}
/*section#faq*/
section#faq {
    margin-bottom: 8vw;
}
section#faq h2 {
    margin-bottom: 6vw;
    font-size: 5vw;
    font-weight: bold;
    text-align: center;
}
section#faq dl {
    margin: 0 0 4vw;
    border: 2px solid #00B100;
}
section#faq dl:last-of-type {
    margin-bottom: 6vw;
}
section#faq dl dt,
section#faq dl dd {
    display: flex;
    justify-content: space-between;
}

section#faq dl dt {
    padding: 4vw;
    background: url("../img/bg_green.png") center top;
    background-size: 50vw 30vw;
    align-items: center;
}
section#faq dl dt::before {
    display: block;
    content: "";
    width: 6vw;
    height: 12vw;
    background: url("../img/icon_q.png") no-repeat;
    background-size: 100% 100%;
}
section#faq dl dd {
    padding: 4vw;
    align-items: flex-start ;
}
section#faq dl dd::before {
    display: block;
    content: "";
    width: 6vw;
    height: 12vw;
    background: url("../img/icon_a.png") no-repeat;
    background-size: 100% 100%;
}
section#faq dl dt p {
    color: #FFF;
    font-size: 4.5vw;
    font-weight: bold;
}
section#faq dl dt p,
section#faq dl dd p {
    width: calc(100% - 12vw);
}
/*section#groupsite*/
section#groupsite {
    background: #E8E8E8;
}
section#groupsite h2 {
    margin-bottom: 6vw;
    padding: 4vw;
    font-size: 5vw;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    background: #B8943E;
}
section#groupsite ul.banner li {
    width: 100%;
    margin-bottom: 4vw;
}
section#groupsite ul.banner li p.explain {
    margin-top: 2vw;
    font-size: 3vw;
    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;
}

.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: 4vw;
    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: 4vw;
    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;
    margin: 30px;
    padding: 20px;
    float: right;
    font-size: 5vw;
    text-decoration: none;
}

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

	.footer-box2 .hplink{
	    float: none;
	    text-align: center;
	    display: inline-block;
	    color: #fff;
	    width: 80%;
	    font-size: 5vw;
	    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: 4vw;
    line-height: 1.7;
    margin-bottom: 62px;
    margin-top: 16px;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 4vw;
    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: 3vw;
  }
}

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

.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: 4vw;
  }
}

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

.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: 4vw;
    letter-spacing: 0;
}

footer a:hover {
    color:#fff;
}

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


footer + div a {
    color: #666;
    background: url(../img/common/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/common/arr_02.gif) no-repeat left center;
}


footer ul a {
    color: #fff;
}

@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 a:hover {
    color:#fff;
}

footer + div p {
    float: left;
    margin: 20px 0;
    font-size: 4vw;
    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 a {
    color: #333;
    text-decoration: none;
}


/* ===== #study teacher (SP: hidden) ===== */
.study-seminar__teacher { display: none; }

/* ===== #staff SP ===== */
section#staff { padding: 48px 0 60px; }

.staff__ttl { font-size: 6.4vw; }
.staff__catch { font-size: 4vw; }

.staff__card {
  border-radius: 16px;
  padding: 4vw;
}

.staff__features {
  flex-direction: column;
  gap: 24px;
}

.staff__feature {
  padding: 0 0 24px;
  border-right: none;
  border-bottom: 1.5px dashed #C8C5BC;
}

.staff__feature-head {
  min-height: 0;
}

.staff__feature-ttl {
  font-size: 18px;
}

.staff__feature-text {
  font-size: 15px;
  line-height: 1.8;
}

.staff__feature:last-child {
  border-bottom: none;
}

/* ===== #study SP ===== */
section#study { padding: 48px 0 60px; }

.study-seminar__head { margin-bottom: 20px; }

.study-seminar__ttl { gap: 10px; }

.study-seminar__ttl::before,
.study-seminar__ttl::after {
  width: 30px;
  height: 30px;
}
.study-seminar__ttl::before { left:  -30px; }
.study-seminar__ttl::after  { right: -30px; }

.study-seminar__ttl-en { font-size: 10vw; }
.study-seminar__ttl-ja { font-size: 6.5vw; }

.study-seminar__card {
  border-radius: 16px;
  padding: 4vw;
}

.study-seminar__item { padding: 24px 0; }

.study-seminar__link {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.study-seminar__thumb {
  flex: none;
  width: 100%;
}

.study-seminar__name { font-size: 5vw; }
.study-seminar__sub  { font-size: 3.5vw; }

.study-seminar__btn {
  padding: 14px 40px;
  font-size: 16px;
  gap: 8px;
}

/* ===== #note SP ===== */
#note { padding: 48px 0 60px; }

.note__card {
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: 16px;
}

.note__featured {
  flex: none;
  width: 100%;
}

.note__featured-img {
  border-radius: 0;
}

.note__list {
  padding: 4vw;
  gap: 0;
}

.note__item {
  padding: 4vw 0;
}

.note__thumb {
  flex: 0 0 34vw;
}

.note__item-ttl {
  font-size: 3.8vw;
}

.note__btn-wrap {
  width: 100%;
}
