@charset "UTF-8";

.sp-br{
    display:none;
}
@media screen and (max-width:820px){
    .sp-br{
        display:block;
    }
}
/* =========================
header
========================= */
.header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #FEFAF6;
    z-index: 100;
}

.header__inner{
    width: 1200px;
    height: 100px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo img{
    width: 80px;
    height: auto;
    display: block;
}
.sectiontitle__text{
    font-size: 45px;
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-weight: 600;
}
@media screen and (max-width:1280px){
    .header__inner{
    width: 1000px;
    height: 100px;
}
}
@media screen and (max-width:1024px){
.header__inner{
    width: 85%;
}
.sectiontitle__text{
    font-size: 32px;
}
}
@media (max-width: 768px){
    .sectiontitle__text{
        font-size: 28px;
    }
}
@media (max-width: 480px){
    .sectiontitle__text{
        font-weight: 700;
    }
}
/* =========================
PCナビ
========================= */
.header__navList{
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.header__navList a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}
.header__navList a,
.spNav__list a{
    display: flex;
    align-items: center;
    gap: 6px;
}

.header__icon{
    width: 14px;
    display: inline-flex;
}

.header__icon img{
    width: 100%;
    display: block;
}
/* =========================
ハンバーガー
========================= */
.hamburger{
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;

    display: none;
    justify-content: center;
    align-items: center;

    position: relative;
    z-index: 999;
}

.hamburger span{
    position: absolute;

    width: 28px;
    height: 2px;
    background: #000;

    transition: .3s;
}

.hamburger span:nth-child(1){
    transform: translateY(-8px);
}

.hamburger span:nth-child(3){
    transform: translateY(8px);
}

/* active */

.hamburger.active span:nth-child(1){
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3){
    transform: rotate(-45deg);
}

/* =========================
SPメニュー
========================= */
.spNav{
    position: fixed;
    top: 80px;
    left: 0;

    width: 100%;
    height: calc(100vh - 80px);

    background: #FEFAF6;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition:
    opacity .3s,
    visibility .3s,
    transform .3s;
}

.spNav.active{
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.spNav__list{
    padding: 40px 20px;
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.spNav__list a{
    color: #000;
    text-decoration: none;
    font-size: 18px;
}
@media screen and (max-width: 1024px){

    .header__inner{
        height: 70px;
        padding: 0 20px;
    }

    .header__logo img{
        width: 50px;
    }

    .header__nav{
        display: none;
    }

    .hamburger{
        display: flex;
    }

    .spNav{
        top: 70px;
        height: calc(70vh - 70px);
    }
}
/* =========================
MV
========================= */
.mv{
    padding-top: 100px;
    overflow: hidden;
    position: relative;
}

.mvSwiper{
    overflow: visible;
}
.mvSwiper .swiper-slide{
    width: min(72vw, 1200px);
}
.mvSwiper .swiper-slide img{
    width: 100%;
    aspect-ratio: 1130 / 660;
    object-fit: cover;
    display: block;
}
.mvSwiper .swiper-slide img{
    width:100%;
    height:auto;
    display:block;
}
@media screen and (max-width:1024px){
    .mv{
    padding-top: 70px;
}
}
@media screen and (max-width: 480px){
    .mvSwiper .swiper-slide img{
        aspect-ratio: 375 / 350;
    }
}

/* =========================
PC MV矢印
========================= */
.mvSwiper__arrow{
    width: 60px;
    height: 60px;

    padding: 0;

    appearance: none;
    -webkit-appearance: none;

    background: transparent;
    border: none;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    z-index: 10;
    cursor: pointer;

    opacity: .2;
    transition: .3s;
}

.mvSwiper__arrow::before{
    content: "";

    display: block;

    width: 60px;
    height: 60px;

    border-top: 5px solid #000000;
    border-right: 5px solid #000000;

    position: absolute;
    top: 50%;
    left: 50%;
}

.mvSwiper__arrow:hover{
    opacity: .6;
}

/* 左 */

.mvSwiper__arrow--prev{
    left: 50px;
}

/* 右 */

.mvSwiper__arrow--next{
    right: 50px;
}
/* prev */

.mvSwiper__arrow--prev::before{
    transform:
    translate(-30%, -50%)
    rotate(-135deg);
}

/* next */

.mvSwiper__arrow--next::before{
    transform:
    translate(-70%, -50%)
    rotate(45deg);
}
@media screen and (max-width: 1024px){
 .mvSwiper__arrow::before{
    width: 40px;
    height: 40px;
}
}
@media screen and (max-width: 480px){
    .mvSwiper__arrow{
        display: none;
    }
}

/* =========================
pagination
========================= */
.mvControl{
    margin-top: 32px;

    display: flex;
    align-items: center;
    width: fit-content;
    margin-inline: auto;
    justify-content: center;
}
@media screen and (max-width:768px){
    .mvControl{
    margin: 32px auto 80px;
}
}
/* =========================
矢印
========================= */
.mvControl__arrow{
    width: 40px;
    height: 40px;

    padding: 0;

    background: transparent;
    border: none;

    position: relative;
    cursor: pointer;
}

.mvControl__arrow::before{
    content: "";

    width: 18px;
    height: 2px;

    background: #666;

    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
}

.mvControl__arrow::after{
    content: "";

    width: 8px;
    height: 8px;

    border-top: 2px solid #666;
    border-right: 2px solid #666;

    position: absolute;
    top: 50%;
    left: 50%;
}
.mvControl__arrow--prev::before{
    transform: translate(-40%, -50%);
}

.mvControl__arrow--prev::after{
    transform:
    translate(-50%, -50%)
    rotate(-135deg);
}
.mvControl__arrow--next::before{
    transform: translate(-60%, -50%);
}

.mvControl__arrow--next::after{
    transform:
    translate(-50%, -50%)
    rotate(45deg);
}
.mvControl__arrow--prev{
    margin-right: 24px;
}

.mvControl__arrow--next{
    margin-left: 24px;
}
@media screen and (max-width: 768px){
   .mvControl__arrow--prev{
    margin-right: 0;
}
.mvControl__arrow--next{
    margin-left: 0;
}
}

/* =========================
桜pagination
========================= */
.mvPagination.swiper-pagination{
    position: static;
    text-align: center;
    flex-shrink: 0;
}

.mvPagination .swiper-pagination-bullet{
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 0 10px !important;
    border-radius: 0;
    opacity: .45;
    background: url("/assets/img/sakura_icon.webp") no-repeat center / contain;
    filter: grayscale(1);
    transition: .3s;
}

.mvPagination .swiper-pagination-bullet-active{
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.12);
}
@media screen and (max-width:768px){
    .mvPagination .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
    margin: 0 8px !important;
}
}
@media (max-width: 480px){

}
/* =========================
news
========================= */
.news{
    max-width: 900px;
    width: 100%;
    margin: 80px auto;
    padding: 0 ;
}
.sectiontitle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    position:relative;
    text-align:center;
}
.sectiontitle img{
    position:absolute;
    left:47%;
    top:50%;
    transform:translate(-140px,-50%);
    width: 30px;
}
.sectiontitle span{
    display:inline-block;
}
.newsCategory{
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.newsCategory__button{
    min-width: 120px;
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #e0e0e0;
    background: transparent;
    font-size: 14px;
    line-height: 1;
}
.newsItem{
    border-top:1px solid #777;
}
.newsItem__content p {
    margin: 0 0 30px;
}

.newsItem__content p:last-child {
    margin-bottom: 0;
}
.newsItem__meta{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    flex-shrink: 0;
    color: #333;
}
.newsItem__title{
    flex: 1;
    min-width: 0;
    font-size: 20px;
    font-weight: 500;
    padding-left: 90px;
    color: #555;
}
.newsItem__category{
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}
.newsItem__body{
    display: none;
    padding-left: 90px;
}

.newsItem.is-open .newsItem__body{
    display: block;
}
.newsItem__content{
    margin-bottom: 20px;
    font-size: 20px;
}
.newsItem__content a{
    border-bottom: 1px solid #1E88E5;
    color: #1E88E5;
    font-weight: 500;
}
/* color */
.newsItem__category--site-info{
  background:#D4B481;
  color: #333;
}
.newsItem__category--product{
  background:#D56193;
}
.newsItem__category--media{
  background:#6FA56F;
}
.newsItem__category--blog{
  background:#4266AD;
}
.newsItem__category--recruit{
    background: #1893ff;
}
.newsItem__head{
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    cursor: pointer;
    text-align: left;
}
.newsItem__right{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.newsItem__icon{
    position: relative;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.newsItem__icon::before,
.newsItem__icon::after{
    content: "";
    position: absolute;
    background: #333;
    transition: 0.3s ease;
}

/* 横線 */
.newsItem__icon::before{
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* 縦線 */
.newsItem__icon::after{
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}
.newsItem.is-open .newsItem__icon::after{
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* 本文なしは＋非表示 */
.newsItem.is-noBody .newsItem__icon {
    display: none;
}
.newsItem.is-noBody .newsItem__head {
    cursor: default;
}
.buttonArea{
    text-align: center;
    margin-top:auto;
}
.commonButton{
    width:380px;
    background-color:#062C5E;
    font-size:24px;
    color:#fff;
    padding:10px 20px;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    border-radius:999px;
    margin:50px auto;
}

.commonButton::after{
    content: ">";

    font-size: 32px;
    line-height: 1;

    position: absolute;
    right: 32px;
    top: 45%;

    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.commonButton:hover::after{
    transform: translate(6px,-50%);
}
@media screen and (max-width:1280px){
    .commonButton{
    margin:50px auto 0;
}
}
@media screen and (max-width:1024px){
    .news{
    width: 80%;
}
.sectiontitle img{
    width: 30px;
    left:49%;
}
.newsCategory{
    margin-bottom: 40px;
}
.newsItem__title{
    font-size: 16px;
}
.newsItem__body{
    display: none;
}

.newsItem.is-open .newsItem__body{
    display: block;
}
.newsItem__content{
    margin-bottom: 20px;
    font-size: 16px;
}
}
@media screen and (max-width:820px){
    .commonButton{
    width:300px;
    font-size:20px;
}
}
@media screen and (max-width:768px){
    .commonButton{
    width: 200px;
    font-size:16px;
    padding: 5px 10px;
    margin: 40px auto;
}
.commonButton::after{
    font-size: 24px;
    right: 20px;
    top: 44%;
}
}
@media screen and (max-width:480px){
    .news{
    margin: 0 auto 60px;
}
.sectiontitle img{
    width: 25px;
    top: 45%;
    left: 55%;
}
.newsItem__right{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.newsItem__title{
    padding-left: 0%;
}
.newsItem__body{
    padding-left: 0;
}
.commonButton{
    margin: 40px auto 0;
}
}
/* =========================
ページネーション
========================= */

.pagination{
  margin: 80px 0 0;
}

.pagination .nav-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
}

.pagination .page-numbers{
  display:flex;
  justify-content:center;
  align-items:center;
  min-width:44px;
  height:44px;
  padding:0 16px;
  border:1px solid #062C5E;
  border-radius:999px;
  background:#fff;
  color:#062C5E;
  text-decoration:none;
  font-size:16px;
  font-weight:500;
  transition:.3s;
}

.pagination .page-numbers:hover{
  background:#062C5E;
  color:#fff;
}

/* 現在ページ */
.pagination .page-numbers.current{
  background:#062C5E;
  color:#fff;
  font-weight:500;
}

/* 次へ */
.pagination .next{
  min-width:auto;
}

/* =================================
事業内容
================================= */
.service{
    padding:100px 0 0;
     background:
  url(../img/sakura03.webp) no-repeat,
  url(../img/sakura04.webp) no-repeat,
  #FBF7F4;


background-size:
  18%,
  30%;

background-position:
  0% 5%,
  110% 75%;
}

.service__inner{
    width:min(80%,980px);
    margin:0 auto;
}

.service__head{
    text-align:center;
}
.subtitle__blue{
    font-size:32px;
    margin-bottom:50px;
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-weight: 600;
    color: #062C5E;
    text-align: center;
}
.section__lead{
    font-size: 24px;
    display:inline-block;
    text-align:left;
    min-height: 4lh;
}

.serviceList{
    list-style:none;
    font-size:26px;
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-weight:600;
    -webkit-text-stroke: 0.2px;
    color:#062C5E;
    display:grid;
    gap:26px;
    width:fit-content;
    margin:45px auto;
    counter-reset:number;
}

.serviceList__item{
    display:flex;
    align-items:center;
    gap:24px;
}

.serviceList__item::before{
    counter-increment:number;
    content:counter(number) ".";
    font-size:32px;
    color:#062C5E;
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-weight:500;
    line-height:1;
    flex-shrink:0;
}

.serviceGallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:80px;
}

.serviceGallery__item{
    overflow:hidden;
}

.serviceGallery__item img{
    object-fit:cover;
}
@media screen and (max-width:1024px){
    .subtitle__blue{
    font-size:26px;
    font-weight: 700;

}
.section__lead{
    font-size: 18px;
}

.serviceList{
    font-size:22px;
    margin:50px auto 40px;
}

.serviceList__item::before{
    font-size:28px;
}
}

@media screen and (max-width:768px){
    .service__inner{
    width:90%;
    margin:0 auto;
}
    .section__lead{
    font-size: 16px;
}
.serviceList{
    font-size:20px;
}
}
@media screen and (max-width:480px){
 .service{
    padding: 80px 0 0;
    background: url(../img/sakura03.webp) no-repeat, url(../img/sakura04.webp) no-repeat;
    background-size: 35%, 70%;
    background-position: 0% 1%, 100% 80%;
}
    .service__inner{
    width:82%;
    margin:0 auto;
}
.serviceList__item{
    align-items:flex-start;
    gap:10px;
    font-weight: 700;
}
    .subtitle__blue{
    font-size:20px;
}

.serviceList{
    font-size:16px;
    margin:40px auto 40px;
}

.serviceList__item::before{
    margin-top:4px;
    font-size:18px;
}
.serviceGallery{
    margin-top:60px;
    grid-template-columns:repeat(2,1fr);
}
.serviceGallery__item{
    aspect-ratio:2 / 1;
    overflow:hidden;
}
}
@media screen and (max-width:360px){
    .subtitle__blue{
    font-size:18px;
}
}

/* =================================
会報誌・TV番組事業
================================= */
.media__inner{
    width:100%;
    margin:0 auto;
    display:flex;
    align-items:stretch;
}
.media__item{
    width:50%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    text-align:center;
    height:100%;
}
.magazine{
    padding:100px 0 30px;
    background:#fdf5f9;
    /*background:
        url(../img/pc_flower_left.webp) no-repeat left top,
        url(../img/pc_flower_right.webp) no-repeat right top,
        #fdf5f9;
    background-size: 35%;*/
}
.yamatonokaze{
    padding:100px 0 80px;
    background:
        url(../img/wagara_top.webp) no-repeat left top,
        url(../img/wagara_bottom.webp) no-repeat right bottom,
        #f6efea;
    background-size: 60%;
}
.yamatonokaze__inner{
    width:88%;
    margin:0 auto;
}
.kaihoushi__inner{
    width:88%;
    margin:0 auto;
}
.magazine__image , .yamatonokaze__image{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:40px;
}

.media__item img{
    width:auto;
    height:400px;
}
@media screen and (max-width:1024px){
    .media__item img{
    height: 300px;
}
}
@media screen and (max-width:768px){
    .media__inner{
    flex-direction: column;
}
.media__item{
    width:100%;
    text-align:center;
}
}
@media screen and (max-width:480px){
.magazine{
    padding:80px 0 30px;
    background:
        url(../img/sp_flower_left.webp) no-repeat left top,
        url(../img/sp_flower_right.webp) no-repeat right top,
        #fdf5f9;
    background-size: 28%;
}
.media__item .section__lead{
    font-size: 16px;
}
}

.product{
    background:#E6F2F5;
    padding:80px 0;
}
.product__inner{
    width:min(90%,1100px);
    margin:0 auto;

    display:flex;
    align-items:center;
    gap:60px;
}
.product__image{
    width:40%;
}

.product__image img{
    width:100%;
    height:auto;
    display:block;
}
.product__content{
    width:60%;
}
@media screen and (max-width:1024px){
    .product{
    padding:60px 0;
}
}
@media screen and (max-width:768px){
    .product{
    padding:50px 0;
}
.product__inner{
    width:80%;
    flex-direction: column;
    gap:30px;
}
.product__image{
    width:100%;
}
.product__content{
    width:100%;
}
}
@media screen and (max-width:480px){

}
.banner{
    padding:80px 0;
}

.banner__inner{
    width:min(90%,1100px);
    margin:0 auto;

    display:flex;
    gap:40px;
    justify-content: center;
}
.banner__item{
    width:50%;
    display:block;
}

.banner__item img{
    width:100%;
    height:auto;
    display:block;
}
@media screen and (max-width:768px){

    .banner__inner{
        flex-direction:column;
        gap:30px;
    }

    .banner__item{
        width:100%;
    }

}
@media screen and (max-width:480px){
    .banner{
    padding:80px 0 0;
}
}
.companyInfo{
    padding:100px 0;
    background:
  url(../img/sakura03.webp) no-repeat,
  url(../img/sakura02.webp) no-repeat,
  #fff;

background-size:
  13%,
  15%;

background-position:
  0% 1%,
  100% 100%;
}
.companyInfo__inner{
    width:min(90%,1100px);
    margin:0 auto;

    display:flex;
    gap:60px;
    align-items:stretch;
}
.companyInfo__left{
    width:50%;
}

.companyInfo__name{
    font-size:28px;
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-weight:600;
    line-height:1;
    margin-bottom:10px;
    padding-bottom: 10px;
    border-bottom:1px solid #333;
}

.companyInfo__address{
    font-size: 18px;
    margin-bottom:30px;
}
.companyInfo__tel{
    font-size: 28px;
    font-weight: 400;
}
.companyInfo__tel span{
    font-size: 14px;
}
.companyInfo__block{
    margin-bottom:30px;
}

.companyInfo__label{
    font-size: 24px;
    position:relative;
    padding-left:18px;
    font-weight:500;
    margin-bottom:10px;
    color: #062C5E;
}

.companyInfo__label::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);

    width:5px;
    height:25px;
    background:#062C5E;
    border-radius:2px;
}
.companyInfo__button{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#062C5E;
    background-color: #E6F0FA;
    border: 1px solid #062C5E;
    border-radius: 9999px;
    padding: 5px 20px;
    text-decoration:none;
    font-size: 18px;
    font-weight:600;
}

.companyInfo__button .icon{
    font-size:14px;
}
.companyInfo__right{
    width:50%;
}

.companyInfo__right iframe{
    width:100%;
    height:100%;
}
@media screen and (max-width:768px){

.companyInfo__name{
    font-size:22px;
}
    .companyInfo{
    padding:70px 0;
}
    .companyInfo__left,
    .companyInfo__right{
        width:100%;
    }

    .companyInfo__right{
        min-height:0;
    }
    .companyInfo__address{
    font-size: 16px;
}
.companyInfo__tel{
    font-size: 20px;
    font-weight: 400;
}
.companyInfo__tel span{
    font-size: 14px;
}
.companyInfo__block{
    margin-bottom:30px;
}

.companyInfo__label{
    font-size: 18px;
}

.companyInfo__label::before{
    height:20px;
}
.companyInfo__button{
    font-size: 16px;
}
}
@media screen and (max-width:460px){
    .sp-br{
        display:block;
    }
    .companyInfo__inner{
        flex-direction:column;
        gap:0;
    }
     .companyInfo{
    padding:80px 0 20px;
    background:url(../img/sakura02.webp) no-repeat;

background-size:50%;
background-position:100% 60%;
}
}
.footer__top{
    background-color:#FEFAF6;
    padding:15px 0;
}

.footer__inner{
    width:min(90%,1200px);
    margin:0 auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.footer__logo{
    width:55px;
    display:block;
}

.footerNav__list{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:20px 40px;
    list-style:none;
}

.footerNav__item a{
    font-size:18px;
    color:#333;
    font-weight: 500;
    display:flex;
    align-items:center;
    gap:10px;
}

.footerNav__item--icon img{
    width:18px;
}

.footer__bottom{
    background-color:#062C5E;
    padding:15px 0;
}

.footer__bottomInner{
    width:min(90%,1200px);
    margin:0 auto;
    position:relative;
}

.footer__copy{
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-size:12px;
    color:#fff;
}

.footerSubNav{
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    display: flex;
}

.footerSubNav__list{
    display:flex;
    align-items:center;
    gap:10px;
    list-style:none;
    margin-left: 30px;
}
.footerSubNav__list2{
    display:flex;
    align-items:center;
    gap:15px;
    list-style:none;
}
.footerSubNav__list2 img{
    width: 25px;
    height: auto;
}

.footerSubNav__list li{
    color:#fff;
    font-size:14px;
}

.footerSubNav__list a{
    color:#fff;
    text-decoration:none;
}

@media screen and (max-width:840px){

    .footer__top{
        padding:50px 0;
    }

    .footer__inner{
        flex-direction:column;
    }

    .footerNav{
        width:100%;
    }

    .footerNav__list{
        justify-content:center;
        align-items:flex-start;
        gap:20px;
    }

    .footer__bottomInner{
        display:flex;
        flex-direction: column-reverse;
        align-items:center;
        gap:20px;
    }

    .footer__copy{
        text-align:center;
    }

    .footerSubNav{
    position: static;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footerSubNav__list{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-left: 0;
}

.footerSubNav__list2{
    display: flex;
    justify-content: center;
    margin: 0;
}
}
.sectionTitle{
    position:relative;
    text-align:center;
}

.sectionTitle img{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-140px,-50%);
}

.sectionTitle span{
    display:inline-block;
}

/* =================================
news
================================= */
.subpage_news{
    padding:100px 0 200px;
    background:url(../img/sakura04.webp) no-repeat;

    background-size:25%;
    background-position:right bottom;
}

.pageMv{
    padding:100px 0 50px;
    background:url(../img/sakura03.webp) no-repeat;

    background-size:20%;
    background-position:0% 70%;
}

.pageMv__title{
    text-align:center;
}

.newsArchive__section{
    padding:100px 0;
}
@media screen and (max-width:1024px){
    .subpage_news{
    padding:80px 0 100px;
    background-size:20%;
}
}
@media screen and (max-width:768px){
    .subpage_news{
    padding:70px 0;
    background:url(../img/sakura04.webp) no-repeat;

    background-size:30%;
    background-position:right bottom;
}
.pageMv {
        padding: 80px 0 50px;
        background-size: 25%;
        background-position: 0% 65%;
    }
}
@media screen and (max-width:480px){
    .pageMv{
    background-size:35%;
    background-position: 0% 85%;
}
    .subpage_news{
    background-size:50%;
    background-position:right bottom;
}
}

/* =================================
company
================================= */
.subpage_company{
    padding:100px 0 0;
}
.pageHeading{
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-size:32px;
    text-align:center;
    color:#062C5E;
    margin-bottom:60px;
}
.companyNav{
    padding:0 0 60px;
}

.companyNav__list{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.companyNav__list a{
    display: block;
    background: #062C5E;
    color: #fff;
    font-size: 20px;
    padding: 5px;
    border-radius: 999px;
    width: 200px;
    height: 40px;
    text-align: center;
}
@media screen and (max-width:1024px){
    .subpage_company{
    padding:70px 0 0;
}
}
@media screen and (max-width:820px){
    .subpage_company{
    padding:70px 0 0;
}
.companyNav__list a{
    font-size: 16px;
    padding: 5px;
    border-radius: 999px;
    width: 150px;
    height: 34px;
}
}
@media screen and (max-width:360px){
    .companyNav__list a{
    width: 130px;
}
}

.greeting{
    padding: 100px 0;
    background: #F5F8FA url(../img/sakura02.webp) no-repeat right bottom;
    background-size: 35%;
}
.greeting__inner{
    width: 1200px;
    margin: auto;
}

.greeting__content{
    display:flex;
    align-items:flex-start;
    gap:40px;
}

.greeting__text{
    flex:1;
}
.greeting__text p{
    padding-bottom: 20px;
    font-size: 24px;
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
font-weight: 500;
}

.greeting__image{
    width:min(40%,500px);
    flex-shrink:0;
}

.greeting__name{
    margin-top:40px;
}
@media screen and (max-width:1280px){
    .greeting__inner{
    width: 80%;
    margin: auto;
}
}
@media screen and (max-width:1024px){
.greeting__text p{
    font-size: 20px;
}

}
@media screen and (max-width:820px){
    .greeting{
    padding: 80px 0;
    background: #F5F8FA url(../img/sakura02.webp) no-repeat right bottom;
    background-size: 45%;
}
    .greeting__content{
        flex-direction:column-reverse;
    }
    .greeting__text p{
    font-size: 18px;
}
    .greeting__image{
        width:100%;
    }

}
@media screen and (max-width:480px){
    .greeting{
    background-size: 70%;
    padding: 80px 0 60px;
}
}
.overview{
    padding: 100px 30px;
}

.overview__content{
    display:flex;
    gap:30px;
    align-items:stretch;
}

.overview__image{
    width:30%;
}

.overview__image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overview__table{
    flex:1;
    width: 100%;
    margin: auto;
}

.companyTable{
    width:100%;
    border-collapse:collapse;
}

.companyTable th,
.companyTable td{
    padding:20px;
    vertical-align:top;
}

.companyTable th{
    width:180px;
    font-size:22px;
    font-weight:700;
    color:#062C5E;

    position:relative;
    padding-right:30px;
}
.companyTable th::after{
    content:"";
    position:absolute;

    top:10px;
    bottom:10px;

    right:0;
    width:2px;

   background:#062C5E20;;
}

.companyTable td{
    font-size: 20px;
    padding-left:30px;
}
.companyTable tr:nth-child(odd){
    background:#F5F8FA;
}
.access__map{
    width:100%;
}

.access__map iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
    margin-top: 30px;
}

@media screen and (max-width:1024px){
.overview__content{
    gap:14px;
}

.overview__image{
    width:30%;
}

.overview__image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.companyTable{
    width:100%;
    border-collapse:collapse;
}

.companyTable th,
.companyTable td{
    padding:15px;
}

.companyTable th{
    width:150px;
    font-size:18px;
    padding-right:15px;
}

.companyTable td{
    font-size: 16px;
    padding-left:15px;
}

.access__map iframe{
    height:290px;
    margin-top: 14px;
}
}

@media screen and (max-width:768px){
     .overview{
        padding:80px 0 0;
    }

    .overview__content{
        flex-direction:column;
        gap:40px;
    }

    .overview__image{
        width:100%;
    }


    .companyTable,
    .companyTable tbody,
    .companyTable tr,
    .companyTable th,
    .companyTable td{
        display:block;
        width:100%;
    }

    .companyTable tr{
        border-bottom:1px solid #D9D9D9;
        padding:20px;
        margin:0;
    }

    .companyTable th{
        padding:0;
        margin-bottom:5px;
        font-size:20px;
        font-weight:700;
        text-align: left;
    }
    .companyTable th::after{
    display: none;
}
    .companyTable td{
        padding:0;
    }
}
@media screen and (max-width:480px){
    .overview__content{
        gap:0;
    }
}

.history{
    background:url(../img/sakura04.webp) no-repeat;
    background-size:27%;
    background-position:100% 100%;
}
.history__inner{
    padding:0 30px 200px;
    width: 1200px;
    margin: auto;
}

.historyYear{
    margin-top:60px;
}

.historyYear:first-of-type{
    margin-top:0;
}

.historyYear__head{
    border-bottom:2px solid #062C5E;
    margin-bottom:30px;
}

.historyYear__year{
    display:inline-block;
    background:#062C5E;
    color:#fff;

    font-size:24px;
    font-weight:700;

    padding:10px 30px;
}

.historyList__item{
    display:flex;
    gap:40px;
    margin-bottom:15px;
}

.historyList__month{
    width:60px;
    flex-shrink:0;
    font-size: 20px;
    font-weight:700;
    color:#062C5E;
}

.historyList__text{
    flex:1;
    font-size: 20px;
}
@media screen and (max-width:1280px){
.history__inner{
    padding:0 0 150px;
    width: 80%;
}

.historyYear__year{
    font-size:22px;
}

.historyList__month{
    font-size: 20px;
}

.historyList__text{
    flex:1;
    font-size: 20px;
}
}
@media screen and (max-width:768px){
    .history{
    padding:80px 0;
    background-size:40%;
}
    .history__inner{
    padding:0 0 100px;
}

    .historyYear__head{
    margin-bottom:15px;
}

    .historyYear{
        margin-top:50px;
    }


    .historyYear__year{
        font-size:20px;
        padding:8px 20px;
    }

    .historyList__item{
        display:block;
        margin-bottom:24px;
    }

    .historyList__month{
        display:block;
        width:auto;
        margin-bottom:8px;
        font-size: 16px;
    }
    .historyList__text{
    flex:1;
    font-size: 16px;
}

}
@media screen and (max-width:480px){
    .history{
    background-size:80%;
}
.historyYear__year {
        font-size: 18px;
        padding: 4px 20px;
    }
}

/* ==========================
事業内容ページ
========================== */
.subpage_business{
    padding: 100px 0 0;
}
.business{
    padding:50px 0 0;
    background:url(../img/sakura04.webp) no-repeat;
    background-size:25%;
    background-position:100% 100%;
}

.business__head{
    width: 1200px;
    margin: auto;
    text-align:center;
}

.business__head .section__lead{
    margin-bottom:70px;

}

.businessService{
    padding-top:100px;
    background: #FFFCF9 url(../img/sakura04.webp) no-repeat;
    background-size: 30%;
    background-position: 100% 0;
}

.businessService__list{
    margin-top:60px;
    width: 980px;
    margin: auto;
    counter-reset:number;
}

.businessService__item{
    padding:0 0 50px;
    margin-bottom:30px;
}

.businessService__item:last-child{
    margin-bottom:0;
}

.businessService__title{
    display:flex;
    align-items:flex-start;
    gap:20px;
    font-size:26px;
    color:#062C5E;

    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-weight:600;

    counter-increment:number;
    border-bottom:1px solid #C9A063;
}

.businessService__title::before{
    content:counter(number) ".";

    flex-shrink:0;

    color:#062C5E;

    font-size:34px;
    line-height:1;

    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-weight:500;
}

.businessService__content{
    margin-top:20px;
    font-size: 20px;
}

.businessService__content p + p{
    margin-top:20px;
}

.businessService__note{
    font-size:16px;
}

.business .buttonArea{
    margin-top:80px;
}
.linkButton{
    width:380px;
    background-color:#062C5E;
    font-size:24px;
    color:#fff;
    padding:5px 0;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;

    border-radius:999px;
    margin:50px auto;
}
.linkButton__icon{
    width: 20px;
    margin-left: 15px;
}
@media screen and (max-width:1280px){
    .subpage_business{
    padding: 70px 0 0;
}
.business__head{
    width: 90%;
    margin: auto;
}
.businessService__title{
    font-size:24px;
    font-weight: 700;
}
.businessService__list{
    width: 80%;
}

.businessService__title::before{
    font-size:30px;
}
.business .buttonArea{
    margin-top:30px;
}
.linkButton{
    margin:auto;
    font-size: 20px;
}
}
@media screen and (max-width:768px){
    .business__head{
    width: 82%;
}
    .linkButton{
    width:300px;
    font-size:16px;
    margin:0 auto 50px;
}
.linkButton__icon{
    width: 20px;
    margin-left: 15px;
}
.yamatonokaze .commonButton{
    margin: 40px auto;
}
}
@media screen and (max-width:480px){

.business{
    padding:0;
    background-size:non;
}
.business__head .section__lead{
    margin-bottom:60px;
}
.businessService{
    padding-top:80px;
    background-size: 50%;
}
.businessService__list{
    width: 82%;
    margin-top:40px;
    padding-bottom: 0;
}

.businessService__item{
    padding-bottom:0;
    margin-bottom:50px;
}

.businessService__title{
    gap:5px;
    font-size: 18px;
    padding-bottom: 5px;
}

.businessService__title::before{
    font-size:20px;
    margin-top:3px;
    font-weight: 700;
}

.businessService__content{
    margin-top:15px;
}

.businessService__content p{
    font-size:16px;
}

.businessService__content p + p{
    margin-top:16px;
    font-size: 14px;
}
.business .buttonArea{
    margin-top:50px;
}

.business .linkButton{
    font-size:16px;
   margin:0 auto;
}
.yamatonokaze .commonButton{
    margin: 40px auto 60px;
}
}
@media screen and (max-width:360px){
.linkButton{
    width:90%;
    font-size:16px;
   margin:0 auto;
}
}

.magazine__top{
    padding:100px 0 80px;
    background:
    url(../img/pc_flower_left.webp) no-repeat left top,
    url(../img/pc_flower_right.webp) no-repeat right top,
    #FDF5F9;

    background-size:40%,33%;
}
.magazine{
    padding:100px 0 80px;
    position:relative;
    overflow:hidden;
}
.ume{
    position:absolute;
    z-index: 0;
    display:block;
    pointer-events:none;
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center;
    aspect-ratio:1;
    width:100px;
}
.magazine__inner,
.magazineVisual,
.magazineContact{
    position: relative;
    z-index: 2;
}

.ume01{
    width:230px;
    top:40px;
    left:0%;
    background-image:url(../img/ume01.png);
    animation: umeSoftFade 7.2s infinite ease-in-out;
    animation-delay: 0s;
}

.ume02{
    width:180px;
    top:500px;
    right:7%;
    background-image:url(../img/ume02.png);
    animation: umeSoftFade 9.5s infinite ease-in-out;
    animation-delay: -1.8s;
}

.ume03{
    width:180px;
    top:0;
    right:0%;
    background-image:url(../img/ume03.png);
    animation: umeSoftFade 11s infinite ease-in-out;
    animation-delay: -3.2s;
}

.ume04{
    width:200px;
    bottom:180px;
    left:6%;
    background-image:url(../img/ume04.png);
    animation: umeSoftFade 9.3s infinite ease-in-out;
    animation-delay: -5.0s;
}

.ume05{
    width:200px;
    bottom:0%;
    right:0;
    background-image:url(../img/ume05.png);
    animation: umeSoftFade 6.0s infinite ease-in-out;
    animation-delay: -2.6s;
}
@keyframes umeSoftFade {
    0% {
        opacity: .15;
        transform: scale(1);
    }
    25% {
        opacity: .35;
        transform: scale(1.02);
    }
    50% {
        opacity: .25;
        transform: scale(1);
    }
    75% {
        opacity: .85;
        transform: scale(1.03);
    }
    100% {
        opacity: .15;
        transform: scale(1);
    }
}


.magazine__inner{
    width: 1100px;
    margin: auto;
}
.magazinePoint{
    list-style:none;

    display:flex;
    justify-content:center;
    gap:40px;

    margin:50px 0;

    padding:0;
}

.magazinePoint__item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#062C5E;
    font-size: 26px;
    font-weight:600;
}

.magazinePoint__item::before{
    content:"";

    width:22px;
    height:22px;

    background:url(../img/ume.webp) no-repeat center;
    background-size:contain;

    flex-shrink:0;
}
.magazineVisual{
    margin-top:70px;
}

.magazineVisual img{
    width:70%;
    display:block;
    margin: auto;
}
.magazineContact{
    text-align:center;
    margin-top:50px;
}

.magazineContact__text{
     font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-size: 26px;
    font-weight:600;
}

.magazineContact__free{
     font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    margin-top:20px;
    font-size:32px;
    font-weight:600;
    color:#062C5E;
}
.magazineTel{
    width:min(100%,900px);
    margin:40px auto 0;
    padding:20px 0 0;
    display:flex;
    flex-direction:column;
    gap:10px;
    text-align:center;
    color: #fff;
    background:#062c5e;
    border-radius: 50px;
}

.magazineTel__small{
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-size:30px;
}

.magazineTel__number{
    display:flex;
    justify-content:center;
    align-items: center;
    gap:10px;
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-size:60px;
    font-weight:700;
}
.magazineTel__txt{
    font-family:
"Noto Serif JP",
"YuMincho",
"Yu Mincho",
"游明朝",
"Hiragino Mincho ProN",
serif;
    font-size:35px;
    font-weight:700;
}
@media screen and (max-width:1280px){
    .magazine__inner{
    width: 85%;
}
.magazinePoint__item{
    font-size: 22px;
}
.magazineVisual img{
    width:90%;
}
.magazineContact__text{
    font-size: 22px;
}
.magazineContact__free{
    font-size:26px;
}
.magazineTel{
    width:80%;
    gap: 0;
    border-radius: 30px;
}
.magazineTel__small{
    font-size:26px;
}
.magazineTel__txt{
    font-size:28px;
}
}
@media screen and (max-width:1024px){
    .magazineTel__small{
    font-size:22px;
}
.magazineTel__txt{
    font-size:24px;
}
}
@media screen and (max-width:820px){
    .ume{
        display: none;
}
    .magazine{
    padding:80px 0;

    background:
    url(../img/sp_flower_left.webp) no-repeat left top,
    url(../img/sp_flower_right.webp) no-repeat right top,
    #FDF5F9;

    background-size:37%,32%;
}
.yamatonokaze{
    background-size: 60%;
}
    .magazinePoint{
    gap:30px;
}
    .magazinePoint__item{
    font-size: 20px;
}
.magazineTel__small{
    font-size:20px;
}
.magazineTel__txt{
    font-size:22px;
}
}
@media screen and (max-width:768px){
.magazine{
    background-size: 40%, 35%;
}

.magazinePoint{
    flex-direction:column;
    gap:5px;

    width:fit-content;
    margin:40px auto;
}
.magazinePoint__item{
    font-size: 18px;
}

.magazineVisual{
    margin-top:50px;
}
.magazineVisual img{
    width:80%;
}
.magazineContact{
    width: 80%;
    margin:50px auto 0;
}
.magazineContact__text{
    font-size: 16px;
}
.magazineContact__free{
    font-size: 17px;
    font-weight: 700;
}
.magazineTel{
    width: 100%;
    padding:20px 15px 5px;
}
.magazineTel__small{
    font-size:14px;
}
.magazineTel__number{
    font-size:26px;
}
.magazineTel__txt{
    font-size:14px;
}

}
@media screen and (max-width:480px){
    .magazine{
    padding:80px 0 60px;
    background-size: 40%, 47%;
}
.magazineContact{
    width: 345px;
    margin:50px auto 0;
}
.yamatonokaze {
        padding: 80px 0 0;
    }
.magazine__top {
    padding: 80px 0 60px;
}
}

/* ==========================
TV番組
========================== */

.tv{
    padding:100px 0 50px;

    background:
    url(../img/wagara_top.webp) no-repeat left top,
    url(../img/wagara_bottom.webp) no-repeat right bottom,
    #F6EFEA;

    background-size:30%,30%;
}

.tv__inner{
    width:min(90%,1200px);
    margin:0 auto;
    display:flex;
    align-items:flex-start;
}

.tv__image{
    flex:0 0 38%;
}

.tv__image img{
    width:80%;
}

.tv__content{
    flex:1;
}

.tv__text{
    margin-top:25px;
}
@media screen and (max-width:1280px){
    .tv__inner{
    width:80%;
}
.tv .buttonArea{
    margin-top: 40px;
}
}
@media screen and (max-width:768px){

.tv{
    padding:80px 0 60px;
    background-size:80%,80%;
}

.tv__inner{
    width:80%;
    flex-direction:column;
    gap:40px;
}

.tv__image{
    width:100%;
}
.tv__image img{
    width:70%;
    margin: auto;
}

.tv__content{
    text-align:center;
}

.tv__content .section__lead{
    margin-top:0;
    text-align:left;
}

.tv__text{
    margin-top:20px;
    text-align:left;
}

}
@media screen and (max-width:480px){
    .tv__image img{
    width:100%;
}
.tv__content{
    width: 100%;
    text-align:center;
}
}
@media screen and (max-width:360px){
    .magazineContact{
    width: 90%;
}
.magazineTel__small{
    font-size:12px;
}
.magazineTel__number{
    font-size:20px;
}
.magazineTel__txt{
    font-size:12px;
}
.tv__inner{
    width:90%;
}
    .magazine__inner {
        width: 90%;
    }
}
/* ==========================
自社製品の企画・開発
========================== */

.product{
    padding:100px 0 80px;
}

.product__inner{
    width:min(90%,1200px);
    margin:0 auto;
    display:flex;
    align-items:flex-start;
    gap:40px;
}

.product__content{
    flex:1;
}

.product__image{
    width:38%;
}

.product__image img{
    width:100%;
    display:block;
}
@media screen and (max-width:768px){

.product{
    padding:80px 0;
}

.product__inner{
    width:80%;

    flex-direction:column;
    gap:40px;
}

.product__content{
    text-align:left;
}


.product__image{
    width:100%;
}
.product__image img{
    width:70%;
    margin: auto;
}

}
@media screen and (max-width:480px){
.product__image img{
    width:100%;
    display:block;
}
}


/*sitemap*/
.subpage_sitemap {
    padding: 100px 0 200px;
    background: url(../img/sakura04.webp) no-repeat;
    background-size: 25%;
    background-position: right bottom;
}
.sitemap{
    width: 70%;
    margin: auto;
    padding-bottom: 80px;
}
.sitemap__list{
    list-style: none;
    border-top: 1px solid #D9D9D9;
}

.sitemap__list li{
    border-bottom: 1px solid #D9D9D9;
}

.sitemap__list a{
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 20px 50px 20px 20px;

    color: #062C5E;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;

    transition: .3s;
}

.sitemap__list a::after{
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-top: 2px solid #062C5E;
    border-right: 2px solid #062C5E;

    transform: translateY(-50%) rotate(45deg);
}

@media (hover:hover){

    .sitemap__list a:hover{
        background: #F5F8FC;
    }

}

@media screen and (max-width:820px){
    .sitemap__list a{
        min-height: 64px;
        padding: 16px 40px 16px 16px;
        font-size: 16px;
    }
    .sitemap__list a::after{
        right: 16px;
    }
    .subpage_sitemap {
    padding: 80px 0 100px;
    background-size: 30%;
    }
}
@media screen and (max-width:480px){
    .subpage_sitemap {
    padding: 80px 0;
    background-size: 55%;
    }
}

/*coming soon*/
.comingsoon{
    text-align: center;
    font-size: 100px;
    background-color: #fff;
    padding: 90px 0;
    margin-bottom: 50px;
}
@media screen and (max-width:480px){
    .comingsoon {
    text-align: center;
    font-size: 40px;
    background-color: #fff;
    padding: 60px 0;
}
}
.access__map{
    position:relative;
}
.companyInfo__right{
    position:relative;
}
.companyInfo__right iframe{
    width:100%;
    height:70%;
}
.access__map .mapButton{
    position: absolute;
    left: 8px;
    top: 89px;
    z-index: 10;
    background: #ffffff;
    color: #1a73e8;
    padding: 0 0 0 12px;
    font-weight: 600;
    font-size: 16px;
}

@media screen and (max-width:1024px){
    .access__map .mapButton{
        display: none;
}
}

.station{
    margin-top: 20px;
}
.station p{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 18px;
}
.station .s__title{
    font-size: 18px;
    color: #062C5E;
    font-weight: 500;
}
.station .s__lead{
    font-size: 16px;
    font-weight: 400;
}
.station .s__title::before{
    content: "";
    width: 25px;
    height: 25px;
    background: url(../img/station.png) no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}
@media screen and (max-width:1024px){
    .station p{
    font-size: 14px;
}
}
