@charset "UTF-8";

:root{
  --yutaka-green: #3BB14D;
  --yutaka-yellow: #FFFF00;
  --yutaka-yellow2: #FFFFCD;
  --yutaka-blue: #1F4471;
  --bg-footer: #FFFF6A;
}

html{
  scroll-behavior: smooth;
  /* scroll-padding-top: 2rem; */
  scroll-padding-top: 0;
  font-size: 112.5%;
  background-color: var(--yutaka-green);
}

#page{
  background-color: #fff;
}

body{
  font-family: "Noto Sans JP", "NotoSansJP", sans-serif;
  /* font-size: calc((100vw - 320px) / 128 + .75rem); */
}

.logged-in{
  /* margin-top: 1px; */
}

a,
a:link,
a:visited{
  color: var(--yutaka-blue);
  text-decoration: underline;
}

a:hover{
  opacity: .8;
  text-decoration: none; 
}


/* ======= クラス */

.aligncenter{
  text-align: center;
}
.alignleft{
  text-align: left;
}
.alignright{
  text-align: right;
}

img.aligncenter{
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignleft{
  float: left;
  margin-right: 1.5rem;
}
img.alignright{
  float: right;
  margin-left: 1.5rem;
}

.attention{
  color: #D84B00;
  font-size: .85rem;
}
ul.attention{
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}
ul.attention li{
  text-indent: -1rem;
  margin-left: 1rem;
  margin-bottom: .5rem;
}

.fit img,
img.fit{
  width: 100%;
  height: auto;
}

.no-scroll{
  position: fixed;
  left: 0;
  right: 0;
  overflow: hidden;
}

.flex{ 
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.for-pc    { display: block; }
img.for-pc { display: inline-block; }
.for-sp,
img.for-sp { display: none; }

.inner{
  width: 1280px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* ======= ヘッダー */

.logo{
  width: 220px;
  flex-grow: 1;
  flex-shrink: 0;
  text-align: center;
}
.logo a{
  color: #000;
  text-decoration: none;
}

.catch{
  font-size: .6rem;
  margin-bottom: 1rem;
}

.page-header{
  background-color: #fff;
}

.page-header .inner{
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
}

.msg{
  background-color: var(--yutaka-yellow);
  color: #000;
  padding: .5rem .2rem;
  text-align: center;
  font-weight: bold;
  /* font-size: 1.2rem; */
}


/* ======= ナビゲーション */

.nav-header{
  flex-grow: 1;
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.utils{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.utils .nav-contact{
  display: flex;
  gap: 5px;
}

.utils .nav-contact img{
  height: 68px;
  width: auto;
}

.btn-contact-header,
.btn-fax-header{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 72px;
}

.btn-contact-header{
  
  background: #262727;
  border: 1px solid #000;
}
.btn-fax-header{
  background: #fff;
  border: 1px solid #000;
}

.menu-global .nav-list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  font-weight: bold;
  list-style: none;
  margin: 5px 0;
  padding: 0;
}
.menu-global a{
  display: block;
  padding: .3rem .5rem;
  color: #000;
  text-decoration: none;
  /* font-size: 1.2rem; */
}
.menu-global .nav-list li{
  margin-right: 1rem;
}
.menu-global .nav-list li:last-child{
  margin-right: 0;
}
.menu-global a:hover{
  color: var(--yutaka-green);
}

.btn-menu-burger,
.btn-menu-close,
#cb-mobile-menu{
  display: none;
}

.btn-menu-burger{
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  width: 45px;
  height: 45px;
}
.btn-menu-burger img{
  width: 100%;
  height: auto;
}


/* ======= フッター */

.page-footer{
  background-color: var(--bg-footer);
}

.page-footer .container{
  position: relative;
  margin-bottom: 1.5rem;
}

.footer-logo{
  position: absolute;
  right: 25px;
  bottom: 0;
  width: 30%;
  text-align: center;
  /* font-size: 1.125rem; */
}
.company-name{
  font-size: 1.4rem;
  font-weight: bold;
  margin: .5rem 0 .3rem;
}

.description{
  padding: .5rem;
  font-size: .75rem;
  color: rgba(0, 0, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.5);
}

.copyright{
  background-color: #fff;
  font-size: 1rem;
  text-align: center;
  padding: 1.5rem 1rem;
}

.nav-footer{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem 0 0;
}

.nav-footer ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-footer a{
  display: block;
  color: #000;
  padding: .5rem;
  text-decoration: none;
}
.nav-footer a:hover{
  /* opacity: .8; */
  opacity: 1;
  color: var(--yutaka-green);
  background-color: rgba(255, 255, 255, 0.8);
}

.nav-footer .col{
  width: 30%;
  flex-shrink: 0;
  font-weight:bold;
  font-size: 1.2rem;
}

.nav-footer .child,
.nav-footer .sub-menu{
  margin-left: 1rem;
  margin-bottom: 1rem;
  font-weight: normal;
  font-size: .9rem;
}


/* ======= コンテンツ */

main{
  padding:0;
}


/* ======= セクション */

.home-section{
  margin: 3rem 0;
}

.home .section-header{
  display: table;
  margin-bottom: 1.5rem;
}

.home .section-header .heading{
  height: 120px;
}
.home .section-header .heading img{
  width: auto;
  height: 100%;
}

.column-title .section-header .heading{
  height: 80px;
}

/* ------- お問い合わせ */
.contact{
  background-color: var(--yutaka-yellow2);
  padding: 2rem 0;
}

.contact ul{
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.contact ul img{
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.contact ul li{
  width: calc( 33.3% - 10px );
  /* flex-grow: 1; */
  flex-shrink: 0;
  background-color: #262727;
  border-radius: 5px;
  padding: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
}

/* a.btn-bordered{
  border: 1px solid #fff;
  display: block;
  padding: .8rem 2rem;
}
a.btn-bordered img{
  width: auto;
  height: 1.5rem;
} */


/* ======= トップページ */

.bnr-main-bottom{
  /* max-width: 1000px; */
  margin: 0 auto;
  padding: 2rem 0;
  text-align: center;
}

/* ======= スライド（トップページ） */
.cover{
  width: 100%;
  min-width: 1280px;
  height: 600px;
  overflow-x: hidden;
}

.cover .item{
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.cover .item::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}

.cover .item-thumb{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
}

.cover .item-img{
  /* height: 600px; */
  width: 100%;
  height: 100%;
}
.cover .item-img img,
.cover .item-img source
{
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.cover .item .inner{
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 120;
  padding: 0 2rem;
}

.cover .item-content{
  color: #fff;
  /* font-size: 1.3rem; */
  line-height: 1.8;
}

.cover .heading{
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 3rem;
}

/* ======= スライド（トップページ）Swiper アニメーション */

.swiper-slide-active .item-thumb,
.swiper-slide-duplicate-active .item-thumb,
.swiper-slide-prev .item-thumb {
  animation: zoomUp 9s linear 0s normal both;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}



/* ======= 最新情報（お知らせ・営業日カレンダー） */
.uptodate{
  margin-top: 0;
  /* font-size: 80%; */
}

.uptodate .inner{
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 2rem;
}

.column{
  width: 50%;
  flex-grow: 1;
  padding: 1.5rem;
  padding-top: 0;

}

.column-title{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}
.column-title .section-header{
  margin: 0;
}

.column-nav{
  padding: 1rem;
  padding-top: 60px;
  min-height: 120px;
}


/* ======= お知らせ（トップページ） */

.column.info{
  padding-left: 0;
  padding-right: 0;
}

.column.info .info-sns{
  padding-bottom: 0;
}

.info-sns .nav-item{
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #000;
  text-decoration: none;
}
.info-sns .heading{
  text-align: right;
  font-weight: bold;
  /* font-size: 1.2rem; */
}
.info-sns ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
  margin: 0;
}
.info-sns a{
  display: block;
}

.info-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li{
  border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.info .date{
  /* font-size: .85rem; */
  /* font-weight: bold; */
  margin-bottom: .5rem;
}

.info-list a{
  display: block;
  color: #000;
  text-decoration: none;
  padding: 1rem 0;
  margin: 0;
}
.info-list a:hover{
  color: var(--yutaka-green);
  opacity: .7;
}


/* ======= カレンダー（トップページ） */

.column.holidays{
  background-color: var(--yutaka-green);
  color: #fff;
  /* padding: 30px; */
}

.column.holidays .section-header .heading{
  color: #fff;
  /* transform: scaleX(.8);←うまくいかん */
}

.column.holidays .explain{
  list-style: none;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.column.holidays .explain .today::before{
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  
  border-radius: .5rem;
  background-color: black;
  margin-right: .3rem;
  margin-bottom: -.12rem;
}

.column.holidays .explain .closeday::before{
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #f66;
  margin-right: .3rem;
  margin-bottom: -.12rem;
}

.column.holidays .column-content{
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}


/* ======= セクション（トップページ：共通） */

.home-section .content-heading{
  color: var(--yutaka-green);
  font-weight: 600;
}
.home-section .content-heading .block-title{
  color: var(--yutaka-blue);
  font-weight: 900;
  font-size: 1.8rem;
  margin: 3rem 0 2rem;
}
.home-section .content-heading p{
  font-size: 1.2rem;
  line-height: 1.8;
}

.under-construction{
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
}


/* ======= サービス（トップページ） */

.service-item{
  position: relative;
  margin: 3rem 0;
}
.service-item:first-child{
  margin-top: 0;
}
.service-item:last-child{
  margin-bottom: 0;
}

.service-item .inner{
  min-height: 500px;
  display: flex;
  align-items: center;
}
.service-item:nth-child(2n) .inner{
  justify-content: flex-end;
}

.service-item-content{
  position: relative;
  z-index: 100;
  color: #fff;
  background-color: rgba(59, 177, 77, 0.9);
  padding: 2rem;
  width: 60%;
  font-size: 1.2rem;
}

.service-item-thumb{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item .heading{
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.service-list{
  list-style: none;
  padding: 0;
  margin: 2rem 0 1rem;
  font-weight: bold;
}
.service-list:last-child{
  margin-bottom: 0;
}

.service-list .note{
  font-size: 1rem;
  font-weight: normal;
}

.certification{
  font-size: .9rem;
  font-weight: normal;
}

.service-list li{
  margin: .5rem 0;
}

.service-list li::before{
  content: '';
  display: inline-block;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background-color: #fff;
  margin-right: .5rem;
  vertical-align: middle;
}


/* ===================== 会社概要（トップページ）
*/

.company-info{
  /* font-size: 1.2rem; */
}

.img-company-info{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 460px;
  height: 800px;
}


.map{
  background-color: #ddd;
}

/* 情報ブロック（共通） */

.content-block{
  position: relative;
  margin: 5rem 0;
}

/* 情報ブロック：サムネイル > 会社情報  */

.img-company-info.img1{
  
  top: 0;
  right: 0;
  object-position: 40% 0;
}

.content-block.address{
  padding-right: 500px;
}

.content-block.address dl{
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px; */
  font-size: 1.1rem;
  margin: 2rem 0;
  line-height: 1.6;
}
.content-block.address dl dt,
.content-block.address dl dd {
  padding: .5rem;
}
.content-block.address dl dt{
  width: 25%;
  font-weight: bold;
  text-align: left;
  padding-left: 0;
}
.content-block.address dl dd{
  width: 75%;
  font-weight: normal;
  text-align: left;
}


/* 情報ブロック：プライバシーポリシー */

.img-company-info.img2{
  top: 0;
  left: 0;
  object-position: 25% 50%;
}

.img-company-info.img3{
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
  object-position: 70% 0;
}

.content-block.privacy-policy{
  min-height: 1000px;
  padding: 5rem;
}

.content-block.privacy-policy .wrapper{
  border: 3px solid var(--yutaka-green);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  position: relative;
  z-index: 100;
  max-width: 960px;
  margin: auto;
}

.content-block.privacy-policy .heading{
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--yutaka-blue);
}

.content-block.privacy-policy dl{
  margin: 2rem 0 0;
}

.content-block.privacy-policy dl dt{
  font-weight: bold;
  font-size: 1.3rem;
  margin-bottom: .8rem;
}
.content-block.privacy-policy dl dd{
  margin-bottom: 2rem;
}
.content-block.privacy-policy dl dd:last-child{
  margin-bottom: 0;
}


/* ===================== 採用概要（トップページ）
*/

.recruit{
  /* font-size: 1.2rem; */
}

.recruit .content-block{
  margin: 3rem 0;
}

.recruit-info .block-item{
  padding: 10px;
  background-color: var(--yutaka-green);
  color: #fff;
  margin: 3rem 0;
}
.recruit-info .block-item:first-child{
  margin-top: 0;
}
.recruit-info .block-item:last-child{
  margin-bottom: 0;
}

.recruit-info .block-item-title{
  padding: 1rem;
}
.recruit-info .block-item-title .heading{
  color: var(--yutaka-yellow);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: .8rem;
}

.recruit-info .block-item-content{
  position: relative;
}

.btn-toggle{
  display: block;
  -webkit-appearance: none;
  border: 3px solid var(--yutaka-green);
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 auto;
  padding: .7rem 3rem;
  /* padding-left: 2rem; */
  border-radius: 4rem;
  color: #000;
  background-color: #fff;
  min-width: 240px;
  position: relative;
}
.btn-toggle::after{
  content: '';
  display: inline-block;
  background: url(../images/icon-angle-down.svg) no-repeat 50% 50% / contain;
  width: 1.5rem;
  height: 1rem;
  margin: 0 .8rem;
  margin-top: -.5rem;

  position: absolute;
  top: 50%;
  right: 0;

  /* transform: translate(-50%, -50%); */
  vertical-align: -0.1rem;
  /* translate: 0 -3px; */
  transition: rotate .5s;
}
.open .btn-toggle::after{
  rotate: 180deg;
}
.btn-toggle::before{
  content: attr(data-label1);
}
.open .btn-toggle::before{
  content: attr(data-label2);
}

.recruit-info .btn-toggle{
  transform: translate(-50%,-50%);
  position: absolute;
  top: 0;
  left: 50%;
}

.recruit-info .block-item-content .wrapper{
  display: grid;
  background-color: #fff;
  color: #000;
  padding: 2rem;
  padding-top: 3rem;
  margin-top: 2rem;
  /* overflow: hidden; */
  transition: .5s ease-out;
}
.recruit-info .block-item-content .wrapper > dl {
  overflow: hidden;
}

.recruit-info .accordion .wrapper{
  /* height: 0; */
  
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
}
.recruit-info .accordion.open .wrapper{
  /* height: 500px; */
  grid-template-rows: 1fr;
  padding-top: 3rem;
  padding-bottom: 2rem;
}


.recruit-info .block-item-content dl{
  display: flex;
  flex-wrap: wrap;
  /* padding: 1rem; */
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.3); */
}

.recruit-info .block-item-content dl dt,
.recruit-info .block-item-content dl dd {
  line-height: 1.6;
  padding: 1.5rem 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.recruit-info .block-item-content dl dt:first-of-type,
.recruit-info .block-item-content dl dd:first-of-type {
  border: 0;
}

.recruit-info .block-item-content dl dt{
  width: 20%;
  font-weight: bold;
}
.recruit-info .block-item-content dl dd{
  width: 80%;
}


/* ========================================
メインページ共通
*/

.cover {
  width: 100%;
  min-width: 1280px;
  height: 500px;
}

.cover-main .heading{
  font-size: 3.5rem;
}

.section-header .heading{
  color: var(--yutaka-green);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  /* letter-spacing: -.3rem; */
  letter-spacing: 0;
}

.section-content p{
  line-height: 1.8;
  margin: .5rem 0 1.3rem;
}
.section-content p:first-child{
  margin-top: 0;
}
.section-content p:last-child{
  margin-bottom: 0;
}

.flex.nowrap{
  flex-wrap: nowrap;
}

.flex-item.col1{
  flex: 0 1 32%;
}

.flex-item.col2{
  flex: 0 1 64%;
}
.flex-item.col3{
  flex: 0 1 100%;
}


/* ========================================
リビルトバッテリー
*/


/* ---------------------------
商品カテゴリー
*/

.products{
  margin: 3rem 0;
}

.products .section-header .heading{
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0;
}

.products ul{
  list-style: none;
  margin: 1rem 0 2rem;
  padding: 0;
}

.products .grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  margin-top: 2rem;
  gap: 3rem 3rem;
}

.btn-battery{
  display: block;
  text-align: center;
  background: #3BB14D no-repeat 50% 50% / cover;
}
.btn-battery img{
  max-width: 100%;
}

/* .btn-battery.domestic{
  background-image: url(../images/btn-battery-domestic-bg.jpg);
}
.btn-battery.european{
  background-image: url(../images/btn-battery-european-bg.jpg);
}
.btn-battery.hybrid{
  background-image: url(../images/btn-battery-hybrid-bg.jpg);
}
.btn-battery.idle-reduction{
  background-image: url(../images/btn-battery-idle-reduction-bg.jpg);
} */


/* ---------------------------
リビルトバッテリーとは 
*/

.rebuilt .explain{
  border: 1px solid #666;
  padding: 1rem;
}

.rebuilt .explain .title{
  color: #fff;
  background-color: var(--yutaka-green);
  text-align: center;
  padding: .3rem;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.rebuilt .explain ul{
  padding-left: 1.5rem;
}

.rebuilt .explain ul li{
  margin: .2rem 0;
}

.rebuilt .grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  margin-top: 2rem;
  gap: 3rem 3rem;
}

.rebuilt .grid-item{
  border: 5px solid var(--yutaka-green);
  background-color: var(--yutaka-green);
  color: #fff;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.rebuilt .grid-item .heading{
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: .5rem;
  color: var(--yutaka-yellow);
}

.rebuilt .item-content{
  padding: 2rem;
}

.rebuilt .item-thumb{
  background-color: #fff;
  text-align: center;
  height: 230px;
}
.rebuilt .item-thumb img{
  max-width: 100%;
}


/* ---------------------------
バッテリー再生の流れ 
*/

.main-section.flow{
  margin-top: 3rem;
  padding: 3rem 0;
  background-color: var(--yutaka-green);
  color: #fff;
}

.main-section.flow .section-header{
  margin-bottom: 3rem;
}

.main-section.flow .section-header .heading{
  color: #fff;
}

.flow-item{
  display: flex;
  margin: 3rem 0;
}

.flow-item:nth-child(even){
  flex-direction: row-reverse;
}

.flow-item .item-content,
.flow-item .item-thumb{
  width: 50%;
  min-height: 640px;
}

.flow-item .item-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: 0 4rem;
}

.flow-item .item-content .heading{
  position: relative;
  font-size: 2.5rem;
  color: var(--yutaka-yellow);
  text-align: center;
  margin-bottom: 2rem;
  min-height: 200px;
}

.flow-item .item-content .heading span,
.flow-item .item-content .heading::before{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.flow-item .item-content .heading span{
  display: block;
  width: 100%;
  z-index: 60;
}
.flow-item .item-content .heading::before{
  content: attr(data-step);
  font-size: 15rem;
  font-weight: 900;
  /* font-family: 'Impact', sans-serif; */
  font-family: "Overpass", sans-serif;
  font-style: italic;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.3);
  z-index: 50;
  top: 65%;
}
.flow-item .item-content .note{
  color: var(--yutaka-yellow);
  font-size: 13px;
}
.flow-item .item-content p{
  margin: .5rem 0;
}
.flow-item .item-content p:first-child{
  margin-top: 0;
}
.flow-item .item-content p:last-child{
  margin-bottom: 0;
}

.flow-item .item-content .btn-toggle{
  margin-top: 1.5rem;
}

.flow-item .item-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow.accordion .accordion-wrapper{
  overflow: hidden;
  transition: .5s ease-out;
  
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;
}
.flow.accordion.open .accordion-wrapper{
  
  grid-template-rows: 1fr;
  /* padding-top: 3rem; */
  padding-bottom: 2rem;
}

.flow.accordion .accordion-inner{
  overflow: hidden;
}

/* ---------------------------
注意事項
*/

.main-section.notes{
  margin-top: 0;
  padding: 3rem 0;
  background-color: var(--yutaka-yellow2);
}

.notes-item{
  border-bottom: 1px solid var(--yutaka-green);
  padding: 2rem 0;
}
.notes-item:first-child{
  padding-top: 0;
}
.notes-item:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.notes-item .heading{
  font-size: 2rem;
  color: var(--yutaka-green);
  margin-bottom: 1rem;
}
.notes-item .heading.child{
  font-size: 1.125rem;
  color: var(--yutaka-blue);
  margin-top: 2.5rem;
  margin-bottom: .5rem;
}

.notes-item p{
  margin-bottom: 1.5rem;
}

.notes-item dl{
  background-color: #fff;
  padding: 0 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
}
.notes-item dl:first-child{
  margin-top: 0;
}
.notes-item dl:last-child{
  margin-bottom: 0;
}

.notes-item dl dt,
.notes-item dl dd{
  padding: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}
.notes-item dl dt:first-of-type,
.notes-item dl dd:first-of-type {
  border: 0;
}

.notes-item dl dt{
  font-weight: bold;
  width: 30%;
}

.notes-item dl dd{
  padding-left: 0;
  padding-right: 0;
  width: 70%;
}

/* ---------------------------
Q & A 
*/

.main-section.questions{
  margin-top: 0;
  padding: 3rem 0;
  background-color: var(--yutaka-green);
  color: #fff;
}

/* 見出し・本文設定 */

.main-section.questions .section-header{
  margin-bottom: 3rem;
}

.main-section.questions .section-header .heading{
  color: #fff;
  letter-spacing: .3rem;
}

.questions-item{
  margin-bottom: 2rem;
}
.questions-item p{
  margin-bottom: 1rem;
}
.questions-item p:last-child{
  margin-bottom: 0;
}

.questions-item figure{
  text-align: center;
  margin: 2rem 0;
}
.questions-item figure img{
  max-width: 100%;
}

/* アコーディオン設定 */

.questions .accordion .accordion-wrapper{
  overflow: hidden;
  transition: .5s ease-out;
  padding: 2rem 3rem;
  
  display: grid;
  grid-template-rows: 0fr;
  padding-top: 0;
  padding-bottom: 0;

  background-color: #fff;
  border-radius: 0 1.5rem 1.5rem 1.5rem;
  margin-left: 2rem;
  color: #000;
}
.questions .accordion.open .accordion-wrapper{
  
  grid-template-rows: 1fr;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.questions .accordion .accordion-inner{
  overflow: hidden;
}

.questions .btn-toggle{
  display: block;
  -webkit-appearance: none;
  border: 3px solid var(--yutaka-green);
  color: var(--yutaka-green);
  background-color: var(--yutaka-yellow);
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto;
  padding: .4rem 3rem .7rem;
  padding-left: 2rem;
  border-radius: 4rem;
  min-width: 240px;
  position: relative;
}
.questions .btn-toggle::after{
  content: '';
  display: block;
  background: url(../images/icon-angle-down.svg) no-repeat 50% 50% / contain;
  width: 1.5rem;
  height: 1rem;

  position: absolute;
  top: 50%;
  right: 20px;
  /* transform: translateY(-50%); */
  margin-top: -.5rem;
  vertical-align: 0;

  transition: .5s;
  rotate: 0deg;
}
.questions .open .btn-toggle::after{
  rotate: 180deg;
}

.questions .btn-toggle::before{
  content: 'Q. ';
  font-size: 1.5rem;
  vertical-align: bottom;
  /* font-weight: 900; */
}


/* ---------------------------
使用済みバッテリーの買取・回収
*/

.main-section.pickup{
  margin-top: 0;
  padding: 3rem 0 10rem;
}

.main-section.pickup .section-header{
  margin-bottom: 2rem;
}

.main-section.pickup .area{
  background-color: rgba(255, 255, 67, 0.7);
  color: var(--yutaka-green);
  font-weight: 900;
  font-size: 1.5rem;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
}
.main-section.pickup .area strong{
  font-size: 2.5rem;
}

.main-section.pickup{
  position: relative;
}
.main-section.pickup::before{
  display: block;
  content: '';
  background: url(../images/img-bg-shizuoka.svg) no-repeat 50% 50% / contain;
  width: 900px;
  height: 650px;
  position: absolute;
  top: calc(50% + 50px);
  left: calc(50% - 250px);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.main-section.pickup .inner{
  position: relative;
  z-index: 10;
}

.main-section.pickup .flex{
  align-items: flex-start;
}

.main-section.pickup .section-content{
  width: 700px;
}

.main-section.pickup .section-thumbnail{
  width: 400px;
}
.main-section.pickup .section-thumbnail img{
  width: 400px;
  height: 400px;
  object-fit: cover;
}


/* ========================================
お知らせ
*/
.post main{
  padding: 3rem 0;
}

.post main .inner{
  width: 1000px;
}

.post .post-item{
  padding: 10px;
  background-color: var(--yutaka-green);
  color: #fff;
  margin: 3rem auto;
}
.post .post-item:first-child{
  margin-top: 0;
}
.post .post-item:last-child{
  margin-bottom: 0;
}

.post .post-item .article-header{
  padding: 1rem;
}
.post .post-item .article-header .heading{
  color: var(--yutaka-yellow);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: .5rem;
}

.post .post-item .article-content{
  
  background-color: #fff;
  color: #000;
  padding: 3rem;
  line-height: 1.8;
}

.post .post-item .article-content p{
  margin: 1rem 0;
}
.post .post-item .article-content p:first-child{
  margin-top: 0;
}
.post .post-item .article-content p:last-child{
  margin-bottom: 0;
}

.post .navigation{
  margin-top: 3rem;
  text-align: center;
}

.btn-return{
  display: inline-block;
  -webkit-appearance: none;
  border: 3px solid var(--yutaka-green);
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 auto;
  padding: .7rem 5rem .7rem 3rem;
  border-radius: 4rem;
  color: #000 !important;
  text-decoration: none !important;
  background-color: #fff;
  min-width: 240px;
  position: relative;
}
.btn-return::after{
  content: '';
  display: inline-block;
  background: url(../images/icon-angle-down.svg) no-repeat 50% 50% / contain;
  width: 1.5rem;
  height: 1rem;
  margin: 0 .8rem;
  margin-top: -.5rem;

  position: absolute;
  top: 50%;
  right: 0;

  vertical-align: -0.1rem;
  transform: rotate(180deg);
}

.btn-return:hover{
  opacity: .7;
}