/*** The new CSS reset - version 1.8.4 (last updated 14.2.2023) ***/
 
*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg*,symbol*)){all:unset;display:revert}*,*::before,*::after{box-sizing:border-box}a,button{cursor:revert}ol,ul,menu{list-style:none}img{max-inline-size:100%;max-block-size:100%}table{border-collapse:collapse}input,textarea{-webkit-user-select:auto}textarea{white-space:revert}meter{-webkit-appearance:revert;appearance:revert}:where(pre){all:revert}::placeholder{color:unset}::marker{content:initial}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable="false"])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable="true"]){-webkit-user-drag:element}:where(dialog:modal){all:revert}
*{margin:0;padding:0;}
/*** base ***/

:root {
    --yellow: #F4B119;
    --green: #488E2A;
    --blue: #093D8F;
    --black: #222222;
    --white: #FFFFFF;
    --xl: 3.2rem;
    --lg: 2.4rem;
    --md: 6rem;
    --sm: 1.4rem;
    --ss: 1.2rem;
    --index-header: 100;
    --index-modal: 200;
    --index-animation: 1000;
    --inner : 110rem;
}

html {
    font-size: 62.5%;
    color: var(--black);
}

body {
    font-size: 1.4rem;
    font-family: 'Noto Sans JP';
    letter-spacing: .2rem;
}

@media (min-width: 768px) {
    body {
        overflow-x: hidden;
        min-width: 1310px;
    }
}

img {
    vertical-align: bottom;
}

a {
    transition: opacity .2s ease;
    color: var(--black)
}

a:hover {
    opacity: .8;
}

/*** common ***/

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block !important;
}

@media (min-width: 768px) {
    .d-lg-none {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .d-lg-block {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .d-lg-inline-block {
        display: inline-block !important;
    }
}

.fz-24 {
    font-size: 2.4rem !important;
}

@media screen and (min-width: 768px) {
    .fz-lg-36 {
        font-size: 3.6rem !important;
    }
}

@media screen and (min-width: 768px) {
    .fz-lg-48 {
        font-size: 4.8rem !important;
    }
}

@media screen and (min-width: 768px) {
    .fz-lg-64 {
        font-size: 6.4rem !important;
    }
}

.c-yellow {
    color: var(--yellow) !important;
}

.c-green {
    color: var(--green) !important;
}

.c-blue {
    color: var(--blue) !important;
}

.c-white {
    color: var(--white) !important;
}

/*** module ***/

.highlight {
    display: inline-block;
    padding-right: .4rem;
    padding-left: .4rem;
}

.highlight.yellow {
    background-color: var(--yellow);
}

.highlight-under {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-under::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: .4rem;
    border-bottom: .4rem solid #000;
    width: 100%;
    z-index: -1;
}

.highlight-under.yellow::after {
    border-bottom-color: var(--yellow);
}

.button {
    display: block;
    padding: 1.8rem;
    background-color: var(--yellow);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--black);
    text-align: center;
    text-decoration: none;
}

/*** page ***/

.hero {
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        min-width: 1310px;
    }
}

.hero-slide-item {
    position: relative;
}

@media (min-width: 768px) {
}

.hero-slide-item img {
    object-fit: cover;
    object-position: 70% 50%;
    width: 100vw;
    height: 600px;
}

@media (min-width: 768px) {
    .hero-slide-item img {
        min-width: 1310px;
        height: auto;
    }
}

.hero-slide-item-inner {
    position: absolute;
    top: 0;
    left: 20px;
    display: flex;
    align-items: center;
    height: 100%;
}

@media (min-width: 768px) {
    .hero-slide-item-inner {
        left: 150px;
    }
}

.hero-title {
    font-weight: bold;
}

.hero-title-main {
    font-size: 3.6rem;
    color: var(--blue);
}

@media (min-width: 768px) {
    .hero-title-main {
        font-size: 6.4rem;
    }
}

.hero-title-sub {
    font-size: 2.0rem;
}

@media (min-width: 768px) {
    .hero-title-sub {
        font-size: 3.2rem;
    }
}

.hero-button {
    position: absolute;
    display: block;
    margin: 0 20px;
    width: calc(100% - 40px);
    bottom: 30px;
}

@media (min-width: 768px) {
    .hero-button {
        right: 120px;
        bottom: 60px;
        width: 400px;
    }
}

@media (min-width: 768px) {
    .hero-slide-item:nth-child(2) .hero-button {
        right: auto;
        bottom: 160px;
        left: 130px;
    }
}

.section-arrow {
    position: relative !important;
    padding-bottom: 80px !important;
}

.section-arrow::before,
.section-arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    background-color: #FFEDBE;
    width: 50%;
    height: 40px;
}

.section-arrow::before {
    left: 0;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.section-arrow::after {
    right: 0;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.section-worries {
    background-size: 50%;
    background-image: url(../images/bg_white_1.jpg);
    background-position: 50% 50%;
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .section-worries {
        padding: 100px 0;
    }
}

.section-worries .section-h2 {
    position: relative;
    padding-bottom: 8px;
    font-size: 1.8rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-worries .section-h2 {
        margin: 0 auto 6px;
        padding-bottom: 0px;
        width: 700px;
        font-size: 4.0rem;
    }
}

.section-worries .section-h2::before, 
.section-worries .section-h2::after {
    content: "";
    position: absolute;
}

.section-worries .section-h2::before {
    bottom: -2px;
    left: 0;
    width: 100%;
    border-bottom: 3px solid var(--blue);
}

.section-worries .section-h2::after {
    bottom: -10px;
    left: calc( 50% - 4px );
    display: block;
    background-image: url(../images/bg_white_1.jpg);
    border-top: 3px solid transparent;
    border-right: 3px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    border-left: 3px solid transparent;
    height: 20px;
    width: 20px;
    transform: rotate(45deg);
}

.section-worries .section-h2 span {
    position: relative;
    font-size: 2.4rem;
}

@media (min-width: 768px) {
    .section-worries .section-h2 span {
        font-size: 4.8rem;
    }
}

.section-worries .section-h2 span::before {
    content: "";
    position: absolute;
    top: -6px;
    left: calc( 50% - 4px );
    border: 4px solid var(--yellow);
    border-radius: 10px;
}

.section-worries .list {
    margin: 20px 0 0;
}

@media (min-width: 768px) {
    .section-worries .list {
        display: flex;
        flex-wrap: wrap;
        gap: 66px;
        margin: 0 auto;
        width: 926px;
    }
}

@media (min-width: 768px) {
    .section-worries .list-item {
        width: 430px;
    }
}

.section-worries .list-item-head {
    position: relative;
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (min-width: 768px) {
    .section-worries .list-item-head {
        height: 200px;
    }
}

.section-worries .list-item-head-figure {
    position: absolute;
    left: 0;
    width: 140px;
    height: 140px;
}

@media (min-width: 768px) {
    .section-worries .list-item-head-figure {
        width: 200px;
        height: 200px;
    }
}

.section-worries .list-item-head-title {
    width: 220px;
    background-color: var(--blue);
    padding: 6px 4px;
    font-weight: bold;
    color: var(--white);
    text-align: center;
    z-index: 1;
}

@media (min-width: 768px) {
    .section-worries .list-item-head-title {
        margin-top: 20px;
        width: 276px;
        font-size: 2.0rem;
    }
}

.section-worries .list-item-content {
    min-height: 180px;
    background-color: #D9D9D9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-worries .list-item-content-inner {
    text-align: center;
    font-size: 1.6rem;
    line-height: 2rem;
}

@media (min-width: 768px) {
    .section-worries .list-item-content-inner {
        line-height: 2.6rem;
    }
}

.section-worries .list-item-content-inner .highlight-under::after {
    bottom: 0rem;
}

@media (min-width: 768px) {
    .section-worries .list-item-content-inner .highlight-under::after {
        bottom: .4rem;
    }
}

.section-recommend {
    background-color: #FFEDBE;
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .section-recommend {
        padding: 100px 0;
    }
}

@media (min-width: 768px) {
    .section-recommend .section-row {
        display: flex;
        gap: 40px;
        align-items: center;
        margin: 0 auto;
        width: 1310px;
    }
}

.section-recommend .section-h2 {
    font-size: 1.6rem;
    line-height: 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-recommend .section-h2 {
        font-size: 3.6rem;
        line-height: 8rem;
        text-align: left;
    }
}

.section-recommend .section-figure {
    margin: 20px 0 0;
}

@media (min-width: 768px) {
    .section-recommend .section-figure {
        width: 588px;
    }
}

.section-about {
    background-color: #F5F5F5;
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .section-about {
        padding: 100px 0;
    }
}

.section-about .box {
    border-top: 20px solid var(--green);
    background-color: var(--white);
}

@media (min-width: 768px) {
    .section-about .box {
        margin: 0 auto;
        width: 1000px;
    }
}

.section-about .box-title {
    margin: 20px 0;
    font-size: 2.4rem;
    color: var(--blue);
    font-weight: bold;
    text-align: center;
}

@media (min-width: 768px) {
    .section-about .box-title {
        position: relative;
        font-size: 4.8rem;
        z-index: 1;
    }
}

@media (min-width: 768px) {
    .section-about .box-body {
        position: relative;
        display: flex;
        align-items: center;
        height: 465px;
        margin-top: -60px;
    }
}

@media (min-width: 768px) {
    .section-about .box-body-figure {
        position: absolute;
        right: 0;
        height: 465px;
    }
}

.section-about .box-body-content {
    padding: 20px;
}

@media (min-width: 768px) {
    .section-about .box-body-content {
        position: relative;
        margin-left: 60px;
        width: 448px;
        font-size: 1.5rem;
        z-index: 1;
    }
}

.section-merit {
    background-color: #FFEDBE;
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .section-merit {
        padding: 100px 0;
    }
}

.section-merit .section-h2 {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .section-merit .section-h2 {
        gap: 30px;
    }
}

.section-merit .section-h2::before,
.section-merit .section-h2::after {
    content: "";
    background-size: contain;
    background-image: url(../images/anchor_2.png);
    width: 46px;
    height: 110px;
}

.section-merit .section-h2::after {
    transform: rotate(180deg);
}

.section-merit .section-h2 .title-sub {
    font-size: 1.6rem;
}

@media (min-width: 768px) {
    .section-merit .section-h2 .title-sub {
        font-size: 3.6rem;
    }
}

.section-merit .section-h2 .title-main {
    font-size: 3.2rem;
    color: var(--blue);
}

@media (min-width: 768px) {
    .section-merit .section-h2 .title-main {
        font-size: 6.4rem;
    }
}

.section-merit .list-item {
    position: relative;
    padding: 40px 0 0;
}

@media (min-width: 768px) {
    .section-merit .list-item {
        margin: 0 auto;
        padding: 80px 0 0;
        width: 1100px;
    }
}

.section-merit .list-item-number {
    position: absolute;
    top: 0px;
    left: 20px;
    font-family: 'Poppins';
    font-size: 4.8rem;
    font-weight: 500;
    color: var(--green);
    font-style: italic;
    z-index: 1;
}

@media (min-width: 768px) {
    .section-merit .list-item-number {
        top: 30px;
        left: 80px;
        font-size: 7.2rem;
    }
}

.section-merit .list-item-row {
    background-color: var(--white);
}

@media (min-width: 768px) {
    .section-merit .list-item-row {
        position: relative;
    }
}

.section-merit .list-item-row-content {
    overflow: hidden;
}

@media (min-width: 768px) {
    .section-merit .list-item-row-content {
        position: relative;
        margin-left: 80px;
        padding: 80px 0;
        width: 500px;
        z-index: 1;
    }
}

@media (min-width: 768px) {
    .section-merit .list-item-row-figure {
        position: absolute;
        right: 0;
        width: 620px;
        height: 100%;
    }
}

@media (min-width: 768px) {
    .section-merit .list-item-row-figure img {
        object-fit: cover;
        height: 100%;
    }
}

.section-merit .list-item-row-content-title {
    margin: 20px 0;
    padding: 0 10px;
    font-size: 2.0rem;
    color: var(--yellow)
}

@media (min-width: 768px) {
    .section-merit .list-item-row-content-title {
        font-size: 2.8rem;
    }
}

.section-merit .list-item-row-content-body {
    padding: 0 10px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .section-merit .list-item-row-content-body {
        font-size: 2.0rem;
    }
}

.section-merit .section-button {
    margin: 40px 0 20px;
}

@media (min-width: 768px) {
    .section-merit .section-button {
        margin: 40px auto;
        width: 400px;
    }
}

.section-professor {
    background-color: #F3F9FF;
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .section-professor {
        padding: 100px 0;
    }
}

.section-professor .section-h2 {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.4rem;
    align-items: center;
    color: var(--blue);
    text-align: center;
}

@media (min-width: 768px) {
    .section-professor .section-h2 {
        margin-bottom: 40px;
        font-size: 3.6rem;
    }
}

.section-professor .section-h2::before,
.section-professor .section-h2::after {
    content: "";
    background-size: contain;
    background-image: url(../images/anchor_1.png);
    background-repeat: no-repeat;
    width: 24px;
    height: 100px;
}

.section-professor .section-h2::after {
    transform: rotate(180deg);
}

.section-professor .section-h2-inner {
    text-align: center;
}

@media (min-width: 768px) {
    .section-professor .section-row {
        display: flex;
        gap: 40px;
        align-items: center;
        margin: 0 auto;
        width: 910px;
    }
}

.section-professor .section-row-figure {
    display: block;
    background-size: cover;
    background-position: 0 10%;
    padding-top: 70%;
    width: 100%;
}

@media (min-width: 768px) {
    .section-professor .section-row-figure {
        width: 370px;
        padding-top: 420px;
    }
}

.section-professor .section-row-content {
    
}

@media (min-width: 768px) {
    .section-professor .section-row-content {
        width: 500px;
    }
}

.section-professor .section-row-content-title {
    padding-bottom: 10px;
    margin: 20px 0;
    border-bottom: 1px solid var(--blue);
}

@media (min-width: 768px) {
    .section-professor .section-row-content-title {
        margin: 0 0 24px;
    }
}

@media (min-width: 768px) {
    .section-professor .section-row-content-title .title-sub {
        font-size: 2.4rem;
    }
}

.section-professor .section-row-content-title .title-main {
    font-size: 2.0rem;
    color: var(--blue);
}

@media (min-width: 768px) {
    .section-professor .section-row-content-title .title-main {
        font-size: 2.8rem;
    }
}

@media (min-width: 768px) {
    .section-professor .section-row-content-body {
        font-size: 2.0rem;
    }
}

.section-number {
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .section-number {
        padding: 100px 0;
    }
}

.section-number .section-h2 {
    margin-bottom: 14px;
    text-align: center;
}

.section-number .section-h2 .title-sub {
    font-size: 1.8rem;
}

@media (min-width: 768px) {
    .section-number .section-h2 .title-sub {
        margin-bottom: 20px;
        font-size: 3.2rem;
    }
}

.section-number .section-h2 .title-main {
    font-size: 2.4rem;
    color: var(--blue);
}

@media (min-width: 768px) {
    .section-number .section-h2 .title-main {
        margin-bottom: 30px;
        font-size: 4.8rem;
    }
}

@media (min-width: 768px) {
    .section-number .section-h2 .title-main .highlight-under.yellow::after {
        border-bottom-width: 1.2rem;
    }
}

.section-number .section-h2-copy {
    margin-bottom: 70px;
    font-size: 1.6rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-number .section-h2-copy {
        font-size: 2.4rem;
    }
}

@media (min-width: 768px) {
    .section-number .list-item {
        margin: 60px 0;
    }
}

@media (min-width: 768px) {
    .section-number .list-item-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin: 0 auto;
        width: 938px;
    }
}

.section-number .list-item-content-title {
    margin: 30px 0 10px;
    font-size: 1.8rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-number .list-item-content-title {
        margin: 0 0 20px;
        font-size: 3.6rem;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .section-number .list-item-content-title .highlight-under.yellow::after {
        border-bottom-width: 1.2rem;
    }
}

.section-number .list-item-content-body {
    margin-bottom: 10px;
    font-size: 1.3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-number .list-item-content-body {
        font-size: 2.0rem;
        text-align: left;
    }
}

.section-number .list-item-figure {
    overflow: hidden;
    background-color: rgba(255, 206, 95, 0.3);
    padding: 0 20px;
}

@media (min-width: 768px) {
    .section-number .list-item-figure {
        width: 440px;
    }
}

.section-number .list-item-figure .figure-title {
    margin: 30px 0 20px;
    font-size: 1.6rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-title {
        font-size: 2.0rem;
    }
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-image {
        margin: 0 16px;
    }
}

.section-number .list-item-figure .figure-caption {
    margin: 10px 0;
    font-size: 1.0rem;
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-caption {
        margin: 12px 0 24px;
        font-size: 1.2rem;
    }
}

.section-number .list-item-figure .figure-image .ranking {
    margin: 0 0 48px;
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-image .ranking {
        margin: 40px 0 48px;
    }
}

.section-number .list-item-figure .figure-image .ranking-item {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-image .ranking-item {
        font-size: 2.0rem;
    }
}

.section-number .list-item-figure .figure-image .ranking-item:first-child {
    font-size: 1.6rem;
    color: var(--green);
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-image .ranking-item:first-child {
        font-size: 2.4rem;
    }
}

.section-number .list-item-figure .figure-image .ranking-item-head {
    width: 50px;
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-image .ranking-item-head {
        width: 60px;
    }
}

.section-number .list-item-figure .figure-image .ranking-item-body {
    width: 140px;   
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-image .ranking-item-body {
        width: 180px;
    }
}

.section-number .list-item-figure .figure-image .ranking-item-foot {
    width: 50px;
}

@media (min-width: 768px) {
    .section-number .list-item-figure .figure-image .ranking-item-foot {
        width: 90px;
    }
}

.section-flow {
    background-size: contain;
    background-image: url(../images/bg_flow.jpg);
    padding: 60px 20px;
}

@media (min-width: 768px) {
    .section-flow {
        background-size: cover;
        background-repeat: no-repeat;
        padding: 100px 0;
    }
}

.section-flow .section-h2 {
    margin-bottom: 24px;
    font-size: 2.4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-flow .section-h2 {
        margin-bottom: 70px;
        font-size: 4.8rem;
    }
}

.section-flow .list-item {
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .section-flow .list-item {
        display: flex;
        margin: 0 auto 40px;
        width: 1000px;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
}

@media (min-width: 768px) {
    .section-flow .list-item-figure {
        width: 300px;
    }
}

@media (min-width: 768px) {
    .section-flow .list-item-figure img {
        object-fit: cover;
        height: 100%;
    }
}

.section-flow .list-item-body {
    overflow: hidden;
    background-color: var(--white);
    padding: 0 20px;
}

@media (min-width: 768px) {
    .section-flow .list-item-body {
        padding: 0 82px 60px;
        width: 700px;
    }
}

.section-flow .list-item-title {
    margin: 20px 0 10px;
    font-size: 2.0rem;
    color: var(--blue);
}

@media (min-width: 768px) {
    .section-flow .list-item-title {
        margin: 60px 0 20px;
        font-size: 2.8rem;
    }
}

.section-flow .list-item-content {
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .section-flow .list-item-content {
        font-size: 2.0rem;
    }
}

.section-flow .list-item-content-button {
    margin: 20px 0;
}

@media (min-width: 768px) {
    .section-flow .list-item-content-button {
        margin: 20px 0 0;
        width: 400px;
    }
}

.section-voice {
    padding: 60px 20px;
    background-color: #EBF5F1;
}

@media (min-width: 768px) {
    .section-voice {
        padding: 100px 0;
    }
}

.section-voice .section-h2 {
    margin-bottom: 20px;
    font-size: 2.4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-voice .section-h2 {
        margin-bottom: 70px;
        font-size: 4.8rem;
    }
}

@media (min-width: 768px) {
    .section-voice .list {
        margin: 0 auto;
        width: 926px;
    }
}

.section-voice .list-item {
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .section-voice .list-item {
        position: relative;
        display: flex;
        justify-content: flex-end;
        margin-bottom: 40px;
    }
}

.section-voice .list-item-figure {
    margin: 0 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .section-voice .list-item-figure {
        position: absolute;
        top: calc(50% - 100px);
        left: 0;
        width: 300px;
    }
}

.section-voice .list-item-body {
    margin-top: -20px;
    padding: 40px 20px 20px;
    background-color: var(--white);
}

@media (min-width: 768px) {
    .section-voice .list-item-body {
        margin: 0;
        padding: 0 24px 24px 107px;
        width: 685px;
    }
}

.section-voice .list-item-body-title {
    margin: 0 0 10px;
    
}

@media (min-width: 768px) {
    .section-voice .list-item-body-title {
        margin: 24px 0 10px;
    }
}

.section-voice .list-item-body-title-main {
    font-size: 1.6rem;
    font-weight: bold;
}

.section-voice .list-item-body-title-sub {
    font-size: 1.2rem;
}

.section-voice .list-item-body-content {
    margin: 0 0 10px;
}

@media (min-width: 768px) {
    .section-voice .list-item-body-content {
        font-size: 1.4rem;
        letter-spacing: 0rem;
    }
}

@media (min-width: 768px) {
    .list-item-body-content-caption {
        font-size: 1.2rem;
        letter-spacing: 0rem;
    }
}

.section-greeting {
    padding: 60px 20px;
    background-color: #F3F9FF;
}

.section-greeting .section-h2 {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.4rem;
    align-items: center;
    color: var(--blue);
    text-align: center;
}

@media (min-width: 768px) {
    .section-greeting .section-h2 {
        margin-bottom: 60px;
        font-size: 4.8rem;
    }
}

.section-greeting .section-h2::before,
.section-greeting .section-h2::after {
    content: "";
    background-size: contain;
    background-image: url(../images/anchor_1.png);
    background-repeat: no-repeat;
    width: 9px;
    height: 35px;
}

@media (min-width: 768px) {
    .section-greeting .section-h2::before,
    .section-greeting .section-h2::after {
        width: 20px;
        height: 75px;
    }
}

.section-greeting .section-h2::after {
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .section-greeting .row {
        display: flex;
        gap: 40px;
        margin: 0 auto;
        width: 910px;
    }
}

.section-greeting .row-figure {
    margin: 0 auto;
    width: 210px;
}

@media (min-width: 768px) {
    .section-greeting .row-figure {
        width: 370px;
    }
}

@media (min-width: 768px) {
    .section-greeting .row-body {
        width: 500px;
    }
}

.section-greeting .row-body-title {
    padding-bottom: 10px;
    margin: 20px 0;
    border-bottom: 1px solid var(--blue);
}

@media (min-width: 768px) {
    .section-greeting .row-body-title {
        margin: 0 0 24px;
    }
}

@media (min-width: 768px) {
    .section-greeting .row-body-title-sub {
        font-size: 2.4rem;
    }
}

.section-greeting .row-body-title-main {
    font-size: 2.0rem;
    color: var(--blue);
}

@media (min-width: 768px) {
    .section-greeting .row-body-title-main {
        font-size: 2.8rem;
    }
}

@media (min-width: 768px) {
    .section-greeting .row-body-content {
        font-size: 2.0rem;
    }
}
