/* TOP SLIDER */
/* Hero */
.hero {
  /*padding: 10px 0 5px; */
  padding: 10px 0 12px;
  overflow: hidden;
}

.hero .swiper {
  overflow: visible;
}

/* slide */
.swiper-slide {
  border-radius: 16px;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0) scale(0.9);
  transform-origin: center center;
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (hover: hover) and (pointer: fine) {
  .swiper-slide:not(.swiper-slide-active):hover {
    transform: translateY(-4px) scale(1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 16px 32px rgba(0, 0, 0, 0.16);
  }

  .swiper-slide-active:hover {
    transform: translateY(-7px) scale(1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 16px 32px rgba(0, 0, 0, 0.16);
  }
}
.swiper-slide a,
.swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* stop animation  */
.heroSwiper.init .swiper-slide {
  transition: none;
}

/* pagination */
.swiper-pagination {
  position: relative;
 /* margin-top: 20px;*/
  margin-top: 33px;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: #E3E2E2;
}

.swiper-pagination-bullet-active {
  background: #021B5D;
}



/* sp */
@media (max-width: 767px) {
  .hero {
    padding: 10px 0 0;
  }

  .hero .swiper {
    overflow: hidden;
  }

  .swiper-slide {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 1;
    transform: none;
  }

  .swiper-slide img {
  display: block;
  width: 96%;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 10px;
}


  .swiper-slide-active {
    opacity: 1;
    transform: none;
  }

  .swiper-pagination {
    margin-top: 14px;
  }
}


/* 背景動画 */

.bg-video{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* z-index: -2; */
  z-index: 0;
}

.hero__content{
  position: relative;
  z-index: 1;
  padding: 19px 0 20px;
}
@media screen and (max-width: 960px) {
  .hero__content {
    padding: 13px 0 40px;
  }
}

.hero__content::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 170, 177, 0.46);
  z-index: 0;
}

.hero__content > *{
  position: relative;
  z-index: 1;
}



/* --------------------
  TOP PAGE hero__content
-------------------- */
/* Product search in the header (smartphone only) */
.sform-area{
    display: none;
  }

@media screen and (max-width: 960px) {
.sform-area{
    display: block;
    text-align: center;
    margin: 13px auto 0;
  }

.header-search{
  position: relative;
  width: 90%;
  margin: 0 auto;
}
}

/* -info-card- */
.info-card{
  max-width: 610px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  margin: 0 auto;
  border-radius:6px;
}

/* Top row */
.info-card__top{
  background: #d6ebee;
  padding: 12px 20px;
}

.info-card__shipping{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #ff5a5a;
  text-align: center;
}

.info-card__shipping-icon{
  display: block;
  width: 22px;
  height: auto;
  flex: 0 0 auto;
}

/* Lower section */
.info-card__bottom{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: #14b4bb;
  padding: 12px 20px;
}

.info-card__label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 22px;
  padding: 0 10px;
  border-radius: 4px;
  background: #ff5a5a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.info-card__link{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: opacity .25s ease;
}

.info-card__link:hover{
  opacity: .8;
  text-decoration: underline;
  color:#fff;
}

@media (max-width: 767px){
  .info-card{
  width: 96%;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  margin: 0 auto;
  border-radius:6px;
}

  .info-card__top{
    padding: 10px 16px;
  }

  .info-card__shipping{
    gap: 6px;
    font-size: 12px;
    line-height: 1.6;
  }

  .info-card__shipping-icon{
    width: 18px;
  }

  .info-card__bottom{
    gap: 14px;
    padding: 10px 16px;
  }

  .info-card__label{
    min-width: 50px;
    height: 20px;
    font-size: 11px;
  }

  .info-card__link{
    font-size: 13px;
  }
}


/* --------------------
   TOP PAGE Message Area
-------------------- */

.brand-message{
  padding: 120px 20px 140px;
  background: rgba(2, 27, 93, 0.8);
  color: #fff;
  text-align: center;
}

.brand-message__inner{
  max-width: 920px;
  margin: 0 auto;
}

.brand-message__logo{
  margin: 0 0 48px;
}

.brand-message__logo img{
  display: block;
  width: auto;
  max-width: 292px;
  height: auto;
  margin: 0 auto;
}

.brand-message__title{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 52px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

div#container h2.brand-message__title{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 52px;
  font-size: 24px!important;
  font-weight: 500;
  line-height: 1.4;
  color: #fff!important;
  border: none;
}

.brand-message__text{
  margin: 0 auto 72px;
}

.brand-message__text p{
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.6;
  color: #fff;
}
.sp_br{
    display: none;
  }

.brand-message__text p + p{
  margin-top: 4px;
}

.brand-message__button-wrap{
  margin: 0;
}

.brand-message__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:14px;

  padding:12px 32px;
  border-radius:999px;

  background:#fff;
  color:#021B5D;
  border: 1px solid #fff;

  font-size:16px;
  font-weight:700;
  text-decoration:none;

  transition:
    background-color .25s ease,
    color .25s ease,
    box-shadow .25s ease,
    transform .25s ease;
}

/* Arrow */
.brand-message__button-arrow{
  transition:transform .25s ease;
  font-size:18px;
  line-height:1;
}

.brand-message__button:hover .brand-message__button-arrow{
  transform:translateX(3px);
}
/* hover */

.brand-message__button:hover{
  background:#021B5D;
  color:#fff;

  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.18);
  text-decoration: none;
}

/* tablet */
@media (max-width: 1024px){
  .brand-message{
    padding: 100px 20px 120px;
  }

  .brand-message__logo{
    margin-bottom: 40px;
  }

  .brand-message__logo img{
    max-width: 280px;
  }

  .brand-message__text{
    margin-bottom: 60px;
  }

  .brand-message__text p{
    font-size: 16px;
    line-height: 2;
  }
}

/* sp */
@media (max-width: 767px){
  .brand-message{
    padding: 72px 16px 90px;
  }

  .brand-message__logo{
    margin-bottom: 32px;
  }

  .brand-message__logo img{
    max-width: 193px;
  }

  div#container h2.brand-message__title{
    gap: 10px;
    margin-bottom: 36px;
    font-size: 20px!important;
    line-height: 1.4;
  }

  .brand-message__text{
    margin-bottom: 48px;
  }

  .brand-message__text p{
    font-size: 15px;
    line-height: 2;
  }
  .sp_br{
    display: block;
  }

  .brand-message__button{
    gap: 14px;
    min-height: 42px;
    padding: 0 22px 0 26px;
    font-size: 14px;
  }

}

/* --------------------
   TOP PAGE Product List
-------------------- */

.products-section{
  padding: 120px 0 100px;
  background: rgba(255,255,255,0.85);
}

.products-section__inner{
  width: min(960px, calc(100% - 22px));
  margin: 0 auto;
}

.products-section__title{
  margin: 0 0 80px;
  text-align: center;
}
div#container h2.products-section__title{
  margin: 0 0 80px;
  text-align: center;
  border: none;
}

.products-section__title img{
  display: inline-block;
  width: auto;
  max-width: 240px;
  height: auto;
}

/* Product List */
.products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 60px;
}

/* Link all product cards */
.product-card{
  display: block;
  color: #222;
  text-decoration: none;
  transition: transform .3s ease;
}

.product-card__image{
  position: relative;
  margin-bottom: 20px;
  text-align: center;
  overflow: hidden;
}

.product-card__image img{
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: transform .35s ease, filter .35s ease;
  border-radius: 6px;
}

.product-card__arrow{
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: #FA5A5A;
  color: #fff;
  line-height: 1;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  transform-origin: right bottom;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.product-card--pink .product-card__arrow{
  background: #FA5A5A;
}

.product-card--yellow .product-card__arrow{
  background: #FFCC41;
}

.product-card--blue .product-card__arrow{
  background: #517AEA;
}
.product-card__arrow span{
  display: inline-block;
  transform: translate(7px, 7px);
  font-weight: 700;
  transition: transform .3s ease;
    font-size: 15px;
}



@media (hover: hover){
  .product-card:hover{
    transform: translateY(-4px);
    text-decoration: none;
  }

  .product-card:hover .product-card__image img{
    transform: scale(1.03);
    filter: brightness(1.03);
    border-radius: 6px;
  }

  .product-card:hover .product-card__name{
    color: #021B5D;
    text-decoration: none;
  }

  .product-card:hover .product-card__arrow{
  transform: translateX(4px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,.12);
    
  }

  .product-card:hover .product-card__arrow span{
    transform: translate(8px, 7px);
  }

}
/* txt */
.product-card__body{
  width: 100%;
  margin: 0 auto;
}

div#container h3.product-card__name{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

.product-card__text{
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}

@media (max-width: 960px){
  .products-section{
    padding: 100px 0 80px;
  }
    .product-card__arrow{
    width: 32px;
    height: 32px;
  }
  .product-card__arrow span{
    display: inline-block;
    transform: translate(5px, 5px);
    font-weight: 700;
    transition: transform .3s ease;
    font-size: 13px;
  }
  .product-card:hover .product-card__arrow span{
    transform: translate(6px, 5px);
  }
}

@media (max-width: 767px){
  .products-section{
    padding: 72px 0 64px;
  }

  .products-section__inner{
    width: min(100%, calc(100% - 20px));

  }

  div#container h2.products-section__title{
    margin-bottom: 44px;
  }

  .products-section__title img{
    max-width: 180px;
  }

  .products-grid{
    grid-template-columns: repeat(2, 1fr);
    column-gap: 7px;
    row-gap: 30px;
  }

  .product-card__image{
    margin-bottom: 10px;
  }

  .product-card__image img{
    width: 100%;
    /*max-width: 220px;*/
    border-radius: 6px;
  }
  .product-card__body{
    max-width: none;
  }

  div#container h3.product-card__name{
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.01rem;
    color:#222;
  }

  .product-card__text{
    font-size: 13px;
    line-height: 1.7;
  }
}

@media (max-width: 499px){
    .product-card__arrow{
    width: 26px;
    height: 26px;
  }
  .product-card__arrow span{
    display: inline-block;
    transform: translate(4px, 5px);
    font-weight: 700;
    transition: transform .3s ease;
    font-size: 11px;
  }
  .product-card:hover .product-card__arrow span{
    transform: translate(5px, 5px);
  }
  }

/* --------------------
  TOP PAGE　About Charging Plus
-------------------- */

.about-section{
  padding: 120px 0 140px;
  background:rgba(2, 27, 93, 0.9);
  color: #fff;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.about-section__inner{
  width: min(1157px, calc(100% - 40px));
  margin: 0 auto;
}

.about-section__title{
  margin: 0 0 100px;
  text-align: center;
}
div#container h2.about-section__title{
  margin: 0 0 100px;
  text-align: center;
  border: none;
}

div#container h2.about-section__title img{
  display: inline-block;
  width: auto;
  max-width: 418px;
  height: auto;
}

.about-block{
  display: grid;
  grid-template-columns: 518px minmax(0, 1fr);
  align-items: center;
  gap: 60px;
}

.about-block + .about-block{
  margin-top: 120px;
}
/* RIGHT */
.about-block--image-right .about-block__text{ order: 1; } .about-block--image-right .about-block__image{ order: 2; } 
/* LEFT */
.about-block--image-left .about-block__image{ order: 1; } .about-block--image-left .about-block__text{ order: 2; }

/* TXT */
.about-block__text{
  min-width: 0;
}

div#container h3.about-block__heading{
  margin: 0 0 34px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff!important;
  letter-spacing: 0.1rem;
}

div#container h3.about-block__heading{
  margin: 0 0 34px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.1rem;
}

.about-block__body{
  margin-bottom: 40px;
}

.about-block__body p{
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
  color: #fff;
}

.about-block__body p + p{
  margin-top: 14px;
}

/* IMAGE */
/* COMMON */
.about-block__image{
  height: 470px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
}

/* RIGHT */
.about-block--image-right .about-block__image{
  width: calc(50vw + 80px);
  margin-right: calc(50% - 50vw);
  border-radius: 102px 0 0 102px;
}

/* LEFT */
.about-block--image-left .about-block__image{
  width: calc(50vw + 240px);
  margin-left: calc(50% - 50vw);
  border-radius: 0 102px 102px 0;
}

.about-block__image--sea{
  background-image: url("/user_data/packages/common/img/top/about-ph01.jpg");
}

.about-block__image--coral{
  background-image: url("/user_data/packages/common/img/top/about-ph02-kakou.jpg");
}

.about-block__image--veg{
  background-image: url("/user_data/packages/common/img/top/about-ph03.jpg");
 
}

.about-section .brand-message__button-wrap{
  margin: 0;

}

@media (max-width: 1024px){
  .about-section{
    padding: 100px 0 110px;
  }

  div#container h2.about-section__title{
    margin-bottom: 72px;
  }

  div#container h2.about-section__title img{
    max-width: 340px;
  }

  .about-block,
  .about-block--image-left{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-block + .about-block{
    margin-top: 72px;
  }

  div#container h3.about-block__heading{
    margin-bottom: 24px;
  }

  .about-block__body{
    margin-bottom: 30px;
  }
  
  .about-block__image{
    width: auto;
    margin: 0 calc(50% - 50vw);
    order: -1;
  }

  .about-block--image-right .about-block__image{
    margin-left: 3%;
    width:100vw;
  }
  .about-block--image-left .about-block__image{
    width:calc(100vw - 7%);
  }

/* RIGHT */
  .about-block--image-right .about-block__text{
    order: 1; 
  } 
  .about-block--image-right .about-block__image{
    order: 2;
  } 
/* LEFT */
  .about-block--image-left .about-block__image{
    order: 2;
  }
  .about-block--image-left .about-block__text{ 
    order: 1;
  }
  .about-section .brand-message__button-wrap{
  text-align: center;
  }

  }

@media (max-width: 767px){
  .about-section{
    padding: 72px 0 84px;
  }

  .about-section__inner{
  width: min(100%, calc(100% - 60px));
  margin: 0 auto;
}

  div#container h2.about-section__title{
    margin-bottom: 48px;
  }

  div#container h2.about-section__title img{
    max-width: 250px;
  }

  .about-block{
    gap: 24px;
  }

  .about-block + .about-block{
    margin-top: 60px;
  }

  div#container h3.about-block__heading{
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.6;
  }

  .about-block__body{
    margin-bottom: 24px;
  }

  .about-block__body p{
    font-size: 14px;
    line-height: 1.9;
  }
  .about-block__image{
    height: 360px;
    margin-top: 40px;
  }

  .about-block--image-right .about-block__image{
    margin-left: 0;
    border-radius: 60px 0 0 60px;
  }
  .about-block--image-left .about-block__image{
    border-radius: 0 60px 60px 0;
  }
}

/* --------------------
   TOP PAGE NEWS LIST
-------------------- */

.news-section{
  padding: 120px 0 140px;
  background: #fff;
  scroll-margin-top: 120px;
}

.news-section__inner{
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.news-section__title{
  margin: 0 0 72px;
  text-align: center;
}
div#container h2.news-section__title{
  margin: 0 0 72px;
  text-align: center;
  border: none;
}
.news-section__title img{
  display: inline-block;
  width: auto;
  max-width: 200px;
  height: auto;
}

/* List */
.news-list{
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e3e3e3;
}

.news-list__item{
  border-bottom: 1px solid #e3e3e3;
}

.news-list__link{
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  column-gap: 28px;
  padding: 34px 24px;
  color: #021B5D;
  text-decoration: none;
  transition: background-color .25s ease, opacity .25s ease;
}

.news-list__date{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #535353;
  white-space: nowrap;
}

.news-list__text{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: #021B5D;
}

/* Button area */
.news-section__button-wrap{
  margin: 78px 0 0;
  text-align: center;
}

/* brand-message__button color inverted version */
.brand-message__button--reverse{
  background: #021B5D;
  color: #fff;
  border: 1px solid transparent;
}

.brand-message__button--reverse .brand-message__button-arrow{
  color: #fff;
}

.brand-message__button--reverse:hover{
  background: #fff;
  color: #021B5D;
  border-color: #021B5D;
}

.brand-message__button--reverse:hover .brand-message__button-arrow{
  color: #021B5D;
}

@media (hover: hover){
  .news-list__link:hover{
    background: rgba(2, 27, 93, 0.04);
  }
}

@media (max-width: 960px){
  .news-section{
    padding: 100px 0 110px;
  }

  div#container h2.news-section__title{
    margin-bottom: 56px;
  }

  .news-list__link{
    grid-template-columns: 190px minmax(0, 1fr);
    column-gap: 20px;
    padding: 28px 16px;
  }

  .news-list__date{
    font-size: 16px;
  }

  .news-list__text{
    font-size: 16px;
  }

  .news-section__button-wrap{
    margin-top: 60px;
  }
}

@media (max-width: 767px){
  .news-section{
    padding: 72px 0 84px;
  }

  .news-section__inner{
    width: min(100%, calc(100% - 32px));
  }

  div#container h2.news-section__title{
    margin-bottom: 40px;
  }

  .news-section__title img{
    max-width: 150px;
  }

  .news-list__link{
    grid-template-columns: 1fr;
    row-gap: 8px;
    padding: 18px 8px;
  }

  .news-list__date{
    font-size: 14px;
  }

  .news-list__text{
    font-size: 15px;
    line-height: 1.6;
  }

  .news-section__button-wrap{
    margin-top: 44px;
  }
}


/* ニュースブロック修正20260416 */

.news-list {
  margin-top: 32px;
}

.news-list__item {
  margin: 0;

}

.news-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
  cursor: pointer;
}

.news-list__head-main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 58px;
  padding:0 17px;
}

.news-list__date {
  display: block;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #535353;
  white-space: nowrap;
}

.news-list__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
  color: #021B5D;
  min-width: 0;
}

.news-list__title a {
  color: inherit;
  text-decoration: none;
}

.news-list__title a:hover {
  opacity: 0.7;
}

/* + / - アイコン */
.news-list__icon {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.news-list__icon::before,
.news-list__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #333;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease;
}

.news-list__icon::before {
  width: 12px;
  height: 1px;
}

.news-list__icon::after {
  width: 1px;
  height: 12px;
}

.news-list__item.is-open .news-list__icon::after {
  opacity: 0;
}

/* 開閉本文 */
.news-list__body {
  height: 0;
  overflow: hidden;
  margin: 0;
  transition: height .35s ease;
}

.news-list__body-inner {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
}

@media (max-width: 767px) {
  .news-list__head-main {
    display: block;
  }

  .news-list__date {
    margin-bottom: 6px;
  }

  .news-list__head {
  padding: 20px 0;
}

}

.hero__content,
.brand-message,
.products-section,
.about-section,
.news-section{
  position: relative;
  z-index: 1;
}
