@charset "utf-8";

/* -------------------
共通
------------------- */
.lower-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 280px;
    background: url("/images/h1-school.jpg");
	background-size: cover;
	background-position: center;
    /*padding: 0 40px;*/
    overflow: hidden;
}
.lower-hero.individual {
    background: url("/images/h1-individual.jpg")!important;
	background-size: cover!important;
	background-position: center!important;
}
.lower-hero.company {
    background: url("/images/h1-company.jpg")!important;
	background-size: cover!important;
	background-position: center!important;
}
.lower-hero-inner {
	width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
	background: linear-gradient(90deg, rgb(7 77 154 / 80%) 0%, rgb(27 149 224 / 80%) 100%);
}
.lower-contents {
    padding: 60px 48px 240px;
}
.lower-h1-hero {
    color: var(--color-white);
    font-size: 48px;
    font-family: var(--font-noto-sans-jp);
    font-weight: 700;
    letter-spacing: 0.07em;
}
.lower-h2 {
    font-family: var(--font-noto-sans-jp);
    background: linear-gradient(90deg, #074D9A 0%, #1B95E0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 40px;
    letter-spacing: 0.07em;
    width: fit-content;
    margin-bottom: 64px;
}
.lower-h3 {
    font-size: 32px;
    color: var(--color-blue-secondary);
    letter-spacing: 0.07em;
    width: fit-content;
    margin-bottom: 48px;
	padding-bottom: 16px;
	border-bottom: 2px solid #c2d0e2;
	position: relative;
}
/*.lower-h3::before,
.lower-h3::after {
    content: '';
    display: block;
    width: 28px;
    height: auto;
    aspect-ratio: 13.4 / 16.1;
    background: url(/images/lower-h3.svg) no-repeat center center;
    background-size: contain;
}*/
.lower-h3::before {
	content: "";
	background: var(--color-blue-primary);
	width: 2rem;
    height: 2px;
	position: absolute;
	bottom: -2px;
}
.lower-h4 {
    font-size: 24px;
    color: var(--color-blue-secondary);
    letter-spacing: 0.07em;
    width: fit-content;
    margin-bottom: 28px;
    padding: 0;
/*    border-top: 1px solid var(--color-blue-primary);
    border-bottom: 1px solid var(--color-blue-primary);*/
}
.lower-h5 {
	font-size: 16px;
    margin-bottom: 8px;
	color: var(--color-blue-secondary);
}
@media screen and (max-width: 720px) {
	.lower-h5 {
		font-size: 15px;
	}
}
.lower-contents .sentence {
    color: var(--color-black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 2.111em;
}
.lower-contents .sentence.bigger {
	font-size: 1.28rem;
	font-weight: 500;
}
.lower-hero-deco {
    position: absolute;
    height: 100%;
    top: 0;
    left: 6.25vw;
}

.lower-contents section {
    max-width: 1180px;
    margin: 0 auto;
}
.border-gray {
    border: 1px solid #E5EAF0;
}

@media screen and (max-width: 960px) {
    .lower-hero {
        /*padding: 20px;*/
        height: auto;
        min-height: 200px;
    }
	.lower-hero-inner {
        height: 100%;
        min-height: 200px;
	}
    .lower-hero-deco {
        left: 3vw;
    }
    .lower-contents {
        padding: 50px 30px 180px;
    }
    .lower-h1-hero {
        font-size: 32px;
    }
    .lower-h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .lower-h3 {
        font-size: 22px;
		margin-bottom: 24px;
    }
    .lower-h3::after { 
        width: 16px;
    }
    .lower-h4 {
        font-size: 20px;
        padding: 0;
		margin-bottom: 16px;
    }
    .lower-contents .sentence {
        font-size: 16px;
    }
	.lower-contents .sentence.bigger {
		font-size: 1.02rem;
	}
}

@media screen and (max-width: 720px) {
    .lower-hero {
        /*padding: 10px;*/
        height: auto;
        min-height: 100px;
    }
	.lower-hero-inner {
        height: 100%;
        min-height: 100px;
	}
    .lower-hero-deco {
        left: 0;
    }
    .lower-contents {
        padding: 40px 20px 120px;
    }
    .lower-h1-hero {
        font-size: 18px;
		margin: 0 8px;
    }
    .lower-h2 {
        font-size: 20px;
        margin-bottom: 32px;
    }
    .lower-h3 {
        font-size: 18px;
    }
    .lower-h3::after { 
        width: 13px;
    }
    .lower-h4 {
        font-size: 16px;
        padding: 0;
		margin-bottom: 12px;
    }
    .lower-contents .sentence {
        font-size: 14px;
    }
}

/* リンク */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--color-blue-secondary);
    font-family: var(--font-noto-sans-jp);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.111em;
    text-decoration-line: underline;
}
.text-link::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    aspect-ratio: 1 / 1;
    background: url(/images/link-arrow-right-blue.svg) no-repeat center center;
    background-size: contain;
}

.text-link:hover {
    color: var(--color-blue-tertiary);
    transition: 0.2s;
}
@media screen and (max-width: 960px) {
    .text-link {
        font-size: 16px;
    }
}

@media screen and (max-width: 720px) {
    .text-link {
        font-size: 14px;
    }
}
/*装飾無しのテキストリンク*/
.text-link-simple {
	color: var(--color-blue-secondary);
    font-family: var(--font-noto-sans-jp);
    text-decoration-line: underline;
	font-size: 1em;
}

/*リスト要素*/
.ul .list {
	display: flex;
	color: var(--color-black);
    font-size: 1.056rem;
    line-height: 2rem;
    align-items: baseline;
    gap: 10px;
}
.ul .list::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: var(--color-blue-primary);
	flex-shrink: 0;
}
@media screen and (max-width: 960px)  {	
	.ul .list {
		font-size: 16px;
	}
}
@media screen and (max-width: 720px) {
	.ul .list {
		font-size: 14px;
	}
}

/* パンくずリスト */
.breadcrumb {
    max-width: 1180px;
    margin: 0 auto;
}
.breadcrumb-list {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1em;
    white-space: nowrap;
}
.breadcrumb-list a {
	color:var(--color-blue-primary)!important;
}
.breadcrumb-icon {
    margin-right: 8px;
}
.breadcrumb-item a {
    display: flex;
    align-items: center;
}
.breadcrumb-item a:hover {
    color: var(--color-blue-tertiary);
    text-decoration: underline;
    transition: 0.2s;
}

.breadcrumb-item.active {
    color: var(--color-black);
    font-weight: 700;
    white-space: wrap;
}

@media screen and (max-width: 720px) {
    .breadcrumb-list {
        font-size: 12px;
        gap: 4px;
    }
    
}

/* テーブル */
.lower-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5EAF0;
  font-size: 18px;
  color: var(--color-black);
  line-height: 1.6;
}

.lower-table th {
  background-color: var(--color-blue-gray);
  padding: 40px 20px;
  text-align: left;
  font-weight: 500;
  width: 25%;
  vertical-align: middle;
}

.lower-table td {
  background-color: white;
  padding: 1.5rem;
  vertical-align: top;
  padding: 40px 20px;
}

.lower-table tr:not(:last-child) th,
.lower-table tr:not(:last-child) td {
  border-bottom: 1px solid #E5EAF0;
}
.lower-table.no-responsive th, 
.lower-table.no-responsive td {
		width: 20%!important;
	text-align: center;
}

/* 学校内購買 */
.school-shop {
    margin-top: 160px;
}
.school-shop-content {
    width: 100%;
    /* display: flex; */
    align-items: flex-start;
    margin-bottom: 80px;
}
.h3-school-shop {
    padding: 23px;
    display: block;
    width: 100%;
    background-color: var(--color-gray-light);
    color: var(--color-blue-secondary);
    font-family: var(--font-noto-sans-jp);
    font-size: 24px;
    font-weight: 700;
    line-height: 2em;
    letter-spacing: 0.105em;
    border-radius: 16px;
    margin-bottom: 40px;
}
.school-shop-info {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}
.school-shop-info p {
    color: var(--color-black);
    font-family: var(--font-noto-sans-jp);
    font-size: 18px;
    font-weight: 400;
    line-height: 2.11em;
}
.school-shop-address {
    width: 100%;
}
.school-shop-address iframe {
    width: 100%;
    aspect-ratio: 555.00/415.10;
    margin-bottom: 32px;
}
.school-shop-time {
    width: 100%;
}
.school-shop-time iframe {
   /* width: 100%;*/
    aspect-ratio: 555.00/455.10;
    margin-bottom: 0;
    height: auto;
	
}
@media screen and (max-width: 720px) {
	.school-shop-time iframe {
		aspect-ratio: 555.00/465.00;
	}
}
.school-shop-image {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.school-shop-image a {
    min-width: 137px; 
    height: auto;
}
.school-shop-image img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 960px) {
    .lower-table {
        font-size: 16px;
    }
    .lower-table tr,
    .lower-table th,
    .lower-table td {
        display: block;
    }
    .lower-table th,
    .lower-table td {
        width: 100%;
        padding: 16px 24px;
    }
    .h3-school-shop {
        padding: 16px;
        font-size: 18px;
        margin-bottom: 24px;
    }
    .school-shop-info p {
        font-size: 16px;
    }
    .school-shop {
        margin-top: 100px;
    }
    .school-shop-info {
        flex-direction: column;
        margin-bottom: 32px;
        gap: 40px;
    }
    .school-shop-image {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 4vw;
        margin-bottom: 24px;
    }
    .school-shop-image a {
        flex: 1 0 calc(48% - 4vw);
        min-width: 120px;
        height: auto;
    }
}

@media screen and (max-width: 720px) {
    .lower-table {
        font-size: 14px;
    }
    .lower-table tr,
    .lower-table th,
    .lower-table td {
        display: block;
    }
    .lower-table th ,
    .lower-table td {
        width: 100%;
        padding: 14px 20px;
    }
	.lower-table.no-responsive tr{
		display: table-row;
	}
	.lower-table.no-responsive th,
	.lower-table.no-responsive td{
		display: table-cell;
		padding: 0.4rem!important;
	}
    .h3-school-shop {
        padding: 14px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .school-shop {
        margin-top: 80px;
    }
    .school-shop-info {
        flex-direction: column;
        margin-bottom: 24px;
        gap: 30px;
    }
    .school-shop-address iframe {
        margin-bottom: 8px;
    }
    .school-shop-info p {
        font-size: 14px;
    }
    .school-shop-image {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 4.2vw;
        margin-bottom: 20px;
    }
    .school-shop-image a {
        flex: 1 0 calc(48.665% - 4.2vw);
        min-width: 100px;
        height: auto;
    }
    
}

/* カードリンク */
.card-link {
    display: flex;
    text-decoration: none;
    width: 100%;
    max-width: 575px;
    border-radius: 16px;
    box-shadow: -4px 0px 16px 0px rgba(51, 51, 51, 0.1);
    overflow: hidden;
}

.card-link-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.card-link-text, .card-link-image {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-link-text {
    padding: 36px 30px;
}

.card-link-text dl {
    margin: 0;
}

.card-link-text dt, .card-link-text dd {
    margin: 0;
    margin-bottom: 24px;
}

.card-link-text dt {
    color: var(--color-blue-primary);
    font-weight: bold;
    font-size: 18px;
    line-height: 1.556em;
    font-family: var(--font-noto-sans-jp);
    color: var(--color-blue-primary);
    text-align: center;
}

.card-link-text dd {
    color: var(--color-black);
    font-family: var(--font-noto-sans-jp);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
}

.card-link-text img {
    width: 32px;
    height: 32px;
}

.card-link-image {
    background-image: url('/images/card-link-login-02.png');
    background-size: auto 100%;
    background-position: center;
    width: 50%;
    height: 100%;
    display: flex;
    transition: 0.2s;
}

.card-link:hover {
    opacity: 0.8;
    transition: 0.2s;
}
.card-link:hover .card-link-image {
   background-size: auto 120%;
   transition: 0.4s ease;
}

@media screen and (max-width: 720px) {
    .card-link {
        max-width: 360px;
    }
    .card-link-content {
        flex-direction: column;
    }
    .card-link-text, .card-link-image {
        width: 100%;
        order: 2;
    }
    .card-link-text {
        padding: 20px 30px 35px;
    }
    .card-link-text dt, .card-link-text dd {
        margin-bottom: 20px;
    }
    .card-link-image {
        height: auto;
        aspect-ratio: 360 / 230;
        order: 1;
        background-size: 100% auto;
    }
    .card-link-image {
        background-size: 100% auto;
    }
    .card-link:hover .card-link-image {
        background-size: 120% auto;
    }
    
}

/* よくある質問 */
.inpage-link-parent {
    margin-bottom: 40px;
    width: fit-content;
}
.inpage-link {
    display: flex;
    align-items: center;
    gap: 14px;
}
.page-link {
    display: flex;
    padding: 24px;
    justify-content: space-between;
    align-items: center;
    width: 290px;
    background-color: var(--color-blue-primary);
    border-radius: 16px;
    font-family: var(--font-noto-sans-jp);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.4px;
    height: 72px;
    transition: 0.2s;
}
.page-link:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background: url(/images/link-arrow-right-blue.svg) no-repeat center center;
    background-size: contain;
}
.jump .page-link:after {
	rotate:90deg;
}
.page-link.supplies {
    color: var(--color-white);
}
.page-link.supplies:after {
    background-image: url(/images/link-arrow-right.svg);
}
.page-link.goods {
    background-color: var(--color-gray-light);
    color: var(--color-blue-primary);
    border: 2px solid transparent;
}

.page-link.supplies:hover {
    background-color: var(--color-blue-tertiary);
    transition: 0.2s;
}

.page-link.goods:hover {
    background-color: var(--color-white);
    border: 2px solid var(--color-blue-primary);
    transition: 0.2s;
}

/*タブ切り替え*/
.page-link.tab {
    background-color: var(--color-gray-light);
    color: var(--color-blue-primary);
    border: 2px solid transparent;
	cursor: pointer;
}

.page-link.tab:hover {
    background-color: var(--color-white);
    border: 2px solid var(--color-blue-primary);
    transition: 0.2s;
}

.page-link.tab.select {
    background-color: var(--color-blue-primary);
    color: var(--color-white);
	border:none;
}
.page-link.tab.select:after {
    background-image: url(/images/link-arrow-right.svg);
}
.page-link.tab.select:hover {
    background-color: var(--color-blue-tertiary);
    transition: 0.2s;
}
.tab-panel {
	display: none;
}
.tab-panel.select{
	display: block;
}
/* /タブ切り替え*/

.accordion {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 8px;
    border: 2px solid var(--color-gray-light);
    background: var(--color-blue-gray);
    display: flex;
    margin-bottom: 18px;
    flex-direction: column;
    cursor: pointer;
    transition: .1s;
}
.accordion:hover {
    background: var(--color-white);
    transition: 0.4s;
}
.accordion.active {
    background: var(--color-white);
}

.accordion-title {
    display: flex;
    gap: 18px;
    padding-right: 32px;
}

.accordion-label {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.25em;
    color: var(--color-blue-primary);
}
.accordion-a .accordion-label {
    color: #F26C6C;
}

.accordion-text {
    flex: 1;
    font-size: 18px;
    line-height: 1.5em;
    color: var(--color-blue-secondary);
    font-weight: 500;
    line-height: 1.4;
}
.accordion-a .accordion-text {
    font-size: 16px;
    color: var(--color-black);
}

.accordion-q {
    position: relative;
}
.accordion-a {
    /* visibility: hidden; */
    height: 0;
    overflow: hidden;
    gap: 18px;
    margin-top: 0;
    transition: .3s;
    opacity: 0;
}
.active .accordion-a {
    display: flex;
    visibility: visible;
    height: auto;
    margin-top: 32px;
    transition: .4s;
    opacity: 1;
}

.accordion .chevron-up-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.accordion.active .chevron-up-icon {
    transform: translateY(-50%) rotate(-180deg);
}

@media (max-width: 960px) {
    .page-link {
        padding: 24px;
        font-size: 16px;
    }
    .accordion {
        padding: 32px;
    }
    .accordion-title {
        gap: 18px;
    }
    .accordion-text {
        font-size: 18px;
    }
}

@media (max-width: 720px) {
    .inpage-link-parent {
        margin-bottom: 24px;
        width: auto;
    }
    .inpage-link {
        flex-direction: column;
        gap: 14px;
    }
    .page-link {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    .accordion {
        padding: 24px;
    }
    .accordion-title {
        gap: 16px;
    }
    .accordion-text {
        font-size: 16px;
    }
}
/*文字色*/
.red {
	color: var(--color-red)!important;
}

/*ECサイトの使い方*/
@media screen and (max-width: 720px) {
	.how-to-content {
		flex-direction: column-reverse;
	}
}
.txt-box {
	background: var(--color-gray-light);
    padding: 16px;
    border-radius: 10px;
}
.txt-box .ul .list {
	font-size: 0.96rem;
    line-height: 1.64rem;
}
.txt-box .ul .list::before {
	content: '';
    width: 8px;
    height: 8px;
    border-radius: 8px;
}
@media screen and (max-width: 720px) {
	.txt-box .ul .list {
		font-size: 14px
	}
}
.how-number {
	display: flex;
	align-items: center;
    justify-content: center;
	background: var(--color-blue-primary);
    border-radius: 10px;
    width: 60px;
    height: 60px;
	margin-bottom: 24px;
}
.how-number span {
	font-size: 2.4rem;
	color: var(--color-white);
	font-family: "Outfit", sans-serif;
	font-weight: 500;
}
@media screen and (max-width: 720px) {
	.how-number {
		width: 40px;
		height: 40px;
		margin-bottom: 16px;
	}
	.how-number span {
		font-size: 1.4rem;
	}
}
.student-type {
	padding: 40px;
    background: var(--color-blue-gray);
    border-radius: 20px;
}
.attention-box{
	background: var(--color-blue-gray);
	padding: 60px;
}

.attention-box .lower-h4 {
	font-size: 36px!important;
}
@media screen and (max-width: 720px) {
	.attention-box {
		padding: 20px;
	}
	.attention-box .lower-h4 {
		font-size: 24px!important;
	}
}

/* モデルチェンジの流れ */
.model-change-flow img {
    width: 100%;
}
@media screen and (max-width: 960px) {
    .model-change-flow {
        overflow-x: scroll;
        padding-bottom: 10px;
    }
    .model-change-flow img {
        width: 100%;
        min-width: 1000px;
    }
}

/*お知らせ*/
.news-list {
    width: 72%;
}
.news-list ul {
    max-width: 876px;
    width: 100%;
}
.news-list-date {
    color: var(--color-blue-primary);
    font-weight: 600;
    margin-right: 10px;
    white-space: nowrap;
}
.news-list-label {
    font-size: 87.5%;
    font-weight: 700;
    display: block;
    background-color: var(--color-blue-primary);
    color: var(--color-white);
    padding: 4.5px 20px;
    border-radius: 20px;
    white-space: nowrap;
}
.news-list li:first-child {
    border-top: 2px solid var(--color-gray-light);
}
.news-list li a {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 2px solid var(--color-gray-light);
    padding: 38px 24px;
    font-size: 18px;
    gap: 32px;
    position: relative;
}
.news-list li a:hover {
    background-color: rgba(230, 230, 230, 0.5);
    backdrop-filter: blur(10px);
}
.news-list li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-secondary);
    transition: width 0.2s ease;
}

.news-list li a:hover::after {
    width: 100%;
    transition: width 0.4s cubic-bezier(0, 0.19, 0.22, 0.9);
}

.news-list-right {
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}
.news-list-right ,
.news-list-left {
    display: flex;
    align-items: center;
}

.news-list li a span {
    display: inline-block;
}
.news-list li a span.news-list-arrow {
    margin-left: auto;
    width: 30px;
    min-width: 30px;
    aspect-ratio: 1 / 1;
}
.news-list li a span.news-list-arrow img {
    width: 100%;
}
@media screen and (max-width: 1440px) {
    .news-list li a {
        padding: 24px 16px;
        font-size: 16px;
        gap: 32px;
    }
    .news-list li a span.news-list-arrow {
        width: 24px;
        min-width: 24px;
    }
}
@media screen and (max-width: 960px) {
    .news-list {
        width: 100%;
    }
    .news-list li a {
        font-size: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 14px;
    }
    .news-list li a span.news-list-arrow {
        width: 22px;
        min-width: 22px;;
    }
    
}
@media screen and (max-width:720px) {
	.news img {
		width: 100%!important;
	}
}
@media screen and (max-width:720px) {
	.advantage-con {
		margin-left: auto!important;
		margin-right: auto!important;
	}
}

/*youtube*/
.youtube {
	margin: 0 auto;
    width: 720px;
    aspect-ratio: 16 / 9;
}
@media screen and (max-width:720px) {
	.youtube {
		width: 100%;
		aspect-ratio: 16 / 9;
	}
}
.youtube iframe {
	width: 100%;
	height: 100%;
}
/*沿革*/
.timeline > li {
  display: flex;
  margin: 0;
  padding-bottom: 4rem;
  position: relative;
}
@media screen and (max-width:992px) {
	.timeline > li {
		flex-direction: column;
		padding-bottom: 2rem;
	}
}
.timeline-date {
  width: 25%;
  display: flex;
  flex-direction: column;
  font-size: 40px;
  color: var(--color-blue-primary);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1rem;
  position: relative;
}
@media screen and (max-width:992px) {
	.timeline-date {
		width: 100%;
		flex-direction: row;
		align-items: baseline;
		font-size: 28px;
		padding-left: 25px;
	}
}
.timeline-date .year-ja {
	font-size: 14px;
	font-family: var(--font-noto-sans-jp);
	font-weight: normal;
	color: var(--color-black);
}
.timeline-content {
  width: 75%;
  padding-left: 30px;
  padding-top: 0.6rem;
  color: var(--color-black);
  line-height: 1.6;
}
@media screen and (max-width:992px) {
	.timeline-content {
		width: 100%;
		padding-left: 25px;
		font-size: 14px;
	}
}
.timeline-date:after {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--color-blue-tertiary);
  position: absolute;
  right: -10px;
  top: 0.8rem;
  border-radius: 100%;
	z-index: 10;
}
@media screen and (max-width:992px) {
	.timeline-date::after {
		right: unset;
		left: -8px;
	}
}
.timeline-content::after {
	position: absolute;
	content: "";
	top: 0.8rem;
	left: 25%;
	width: 3px;
    height: 100%;
	background:  var(--color-gray-light);
	z-index: 2;
}
@media screen and (max-width:992px) {
	.timeline-content::after {
		right: unset;
		left: 0;
	}
}
.rinen .list{
	font-size: 18px!important;
}
@media screen and (max-width:992px) {
	.rinen .list{
		font-size: 14px!important;
	}
}