@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: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
    font-weight: 600;
    line-height: 1.2;
}
@media screen and (max-width:1024px){
.header__inner{
    width: 85%;
}
.sectiontitle__text{
    font-size: 32px;
}
}
@media (max-width: 768px){
    .sectiontitle__text{
        font-size: 28px;
    }
}

/* =========================
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;
}
@media screen and (max-width:1024px){
    .mv{
    padding-top: 70px;
}
}
@media screen and (max-width: 768px){
    .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: 768px){

    .mvSwiper__arrow{
        display: none;
    }

}
/* =========================
pagination
========================= */
.mvControl{
    margin-top: 32px;

    display: flex;
    align-items: center;
    width: fit-content;
    margin-inline: auto;
    justify-content: center;
}
/* =========================
矢印
========================= */
.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;
}
}
/* =========================
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;
}
.sectiontitle img{
    width: 40px;
}

.sectiontitle{
    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__meta{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    flex-shrink: 0;
}
.newsItem__title{
    flex: 1;
    min-width: 0;
    font-size: 20px;
    font-weight: 500;
    padding-left: 10%;
    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: bold;
    color: #ffffff;
}
.newsItem__body{
    display: none;
    padding-left: 10%;
}

.newsItem.is-open .newsItem__body{
    display: block;
}
.newsItem__content{
    margin-bottom: 20px;
    font-size: 16px;
}
/* color */
.newsItem__category--gold{
    background: #D4B481;
}
.newsItem__category--pink{
    background: #D56193;
}
.newsItem__category--blue{
    background: #4266AD;
}
.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:1024px){
    .news{
    width: 80%;
    margin: 60px auto;
}
.sectiontitle img{
    width: 30px;
    left:52%;
}
.newsCategory{
    margin-bottom: 40px;
}
.newsItem__title{
    font-size: 16px;
    padding-left: 11%;
}
.newsItem__body{
    display: none;
    padding-left: 11%;
}

.newsItem.is-open .newsItem__body{
    display: block;
}
.newsItem__content{
    margin-bottom: 20px;
    font-size: 16px;
}
}
@media screen and (max-width:768px){
.sectiontitle img{
    width: 25px;
    top: 45%;
    left: 60%;
}
.newsItem__right{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}
.newsItem__title{
    padding-left: 0%;
}
.newsItem__body{
    padding-left: 0;
}
.commonButton{
    width: 200px;
    font-size:16px;
    padding: 5px 10px;
    margin: 40px auto;
}
.commonButton::after{
    font-size: 24px;
    right: 20px;
    top: 44%;
}
}

/* =================================
事業内容
================================= */
.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;
    line-height:1.6;
    margin-bottom:37px;
    font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
    font-weight: 600;
    color: #062C5E;
    text-align: center;
}
.section__lead{
    font-size: 24px;
    display:inline-block;
}

.serviceList{
    list-style:none;
    font-size:26px;
    line-height:1.6;
    font-family:"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:"Times New Roman","Yu Mincho","游明朝",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;
}
.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{
    padding:8dvb 0 0;
    background:#FBF7F4 url(../img/sakura03.webp) no-repeat;
    background-size: 35%;
    background-position: 100% 1%;
}
    .service__inner{
    width:min(86%,350px);
    margin:0 auto;
}
.serviceList__item{
    align-items:flex-start;
    gap:10px;
}
    .subtitle__blue{
    font-size:20px;
}
.section__lead{
    font-size: 16px;
}

.serviceList{
    font-size:16px;
    margin:40px auto 40px;
}

.serviceList__item::before{
    margin-top:4px;
    font-size:18px;
}
.serviceGallery{
    margin-top:50px;
}
.serviceGallery__item{
    aspect-ratio:2 / 1;
    overflow:hidden;
}
.serviceGallery{
        grid-template-columns:repeat(2,1fr);
    }
}

/* =================================
会報誌・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%;
}
.media__item img{
    width: auto;
    height: 400px;
    margin: 0 auto 40px;
}
.magazine{
    padding:100px 0 30px;
    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 30px;
    background:
        url(../img/wagara_top.webp) no-repeat left top,
        url(../img/wagara_bottom.webp) no-repeat right bottom,
        #f6efea;
    background-size: 60%;
}
@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%;
}
.magazine{
    padding:60px 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%;
}
.yamatonokaze{
    padding:60px 0 30px;
    background-size: 80%;
}
}
.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%;
}
}
.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%;
    }

}
.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:"Times New Roman","Yu Mincho","游明朝",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:bold;
    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%;
    min-height:400px;
}

.companyInfo__right iframe{
    width:100%;
    height:100%;
}
@media screen and (max-width:680px){
    .sp-br{
    display:none;
}
    .companyInfo{
    padding:40px 0;
}
    .companyInfo__inner{
        flex-direction:column;
        gap:0;
    }

    .companyInfo__left,
    .companyInfo__right{
        width:100%;
    }

    .companyInfo__right{
        min-height:0;
    }
}
@media screen and (max-width:460px){
    .sp-br{
        display:block;
    }
     .companyInfo{
    padding:80px 0;
    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%,1100px);
    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%,1100px);
    margin:0 auto;
    position:relative;
}

.footer__copy{
    font-family:"Times New Roman","Yu Mincho","游明朝",serif;
    font-size:12px;
    color:#fff;
    text-align:center;
}

.footerSubNav{
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
}

.footerSubNav__list{
    display:flex;
    align-items:center;
    gap:10px;

    list-style:none;
}

.footerSubNav__list li{
    color:#fff;
    font-size:14px;
}

.footerSubNav__list a{
    color:#fff;
    text-decoration:none;
}

@media screen and (max-width:560px){

    .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;
        gap:15px;
        align-items: center;
    }

    .footer__copy{
        text-align:left;
    }

    .footerSubNav{
        position:static;
        transform:none;
    }
}
.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{
    padding-top:120px;
}

.pageMv{
    padding:80px 0;
    background:#FBF7F4;
}

.pageMv__title{
    text-align:center;
}

.newsArchive__section{
    padding:100px 0;
}
