/* --------------------------------------------------
  company 共通
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --font-barlow: Barlow, sans-serif;
  --font-color: #101010;
  --filter-color: #00000080;
  --filter-color2: #00000040;
  --content-width: 1000px;
}

html{
  scroll-padding-top: 100px;
}

ul, dl{
  margin: 0;
  padding: 0;
}

a{
  color: var(--font-color);
}

.content-wrap{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1.5rem 0.5rem;
}

.content-wrap::after,
.clearfix::after{
  content: '';
  clear: both;
  display: block;
}

.btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 1.5rem;
  border-radius: 500px;
  color: #fff;
  width: 100%;
  max-width: 350px;
  text-align: left;
}

/* .btn, .orange-btn, .green-btn{
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-weight: normal;
  min-width: 160px;
} */

.btn.icon::after, .orange-btn.icon::after, .green-btn.icon::after{
  font: var(--fa-font-solid);
  content: "\f138";
  padding-top: 0.2rem;
  transition: transform 0.2s;
}

.btn:is(.icon), .btn:has(i),
.btn-orange:is(.icon), .btn-orange:has(i),
.btn-green:is(.icon), .btn-green:has(i){
  justify-content: space-between;
}


.btn:hover,
.btn:active,
.green-btn:hover,
.green-btn:active,
.orange-btn:hover,
.orange-btn:active{
  transform: scale(1.05);
  transition: all 1s;
}

.orange-border-btn{
  background-color: #fff;
  border-color: var(--orange-color);
  color:var(--orange-color);
}

/* --------------------------------------------------
  見出しの共通デザイン
-------------------------------------------------- */
h2{
  font-size: clamp(2rem, 1.591rem + 2.05vw, 3.125rem);
}

h2.barlow{
  font-family: var(--font-barlow);
  font-size: clamp(3.125rem, 2.67rem + 2.27vw, 4.375rem);
}

h2.barlow small{
  font-family: var(--font-family-sans-serif);
  font-size: 1rem;
}

h2.colum,
h2.pc-row{
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 8px;
}

h2.border{
  border-bottom: solid 2px var(--font-color);
}

h2.text-white.border{
  border-bottom: solid 2px #fff;
}

@media screen and (min-width: 768px) {
  h2.pc-row{
    flex-direction: row;
    gap: 8px;
  }
}

/* --------------------------------------------------
  header-menu のデザイン
-------------------------------------------------- */
.header-menu-wrap{
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 0.5rem;
  --menu-width: 1200px;
  --padding-value: calc((100dvw - var(--menu-width))/2);
  z-index: 900;
}

@media screen and (min-width: 1200px) {
  .header-menu-wrap{
    padding: 0 var(--padding-value);
  }
}

.header-menu{
  background: #10101099 0 0 no-repeat padding-box;
  border: 1px solid var(--font-color);
  box-shadow: 0 3px 6px #00000029;
  border-radius: 40px;
  opacity: 1;

  width: 100%;
  max-width: var(--menu-width);
  margin: 0 auto;
  padding: 0.3rem 1rem;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;

  position: relative;
}

.header-menu .orange-btn,
.header-menu .green-btn{
  min-width: 160px;
}

.header-menu h1{
  margin: 0;
}

@media screen and (min-width: 768px) {
  .header-menu{
    padding: 0.5rem 1.2rem;
  }
}

.header-menu::before{
  content: '';
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
  border-radius: 40px;
}

.header-menu > ul{
  list-style: none;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: relative;
}

.hamburger-space{
  width: 50px;
  height: 50px;
}

#hamburger-btn{
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1000;
}

#hamburger-btn span{
  display: inline-block;
  transition: all .5s;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 50%;
}

#hamburger-btn.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
  width: 45%;
}

#hamburger-btn.active span:nth-of-type(2) {
  opacity: 0;
}

#hamburger-btn.active span:nth-of-type(3){
  transform: translateY(-9px) rotate(45deg);
  width: 45%;
}

/* メニューのデザイン*/
.nav_content {
  max-width: 320px;
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: -1.2rem;
  right: -100dvw;
  z-index: 99;
  background: #000000ab;

  transition: all .5s;
  opacity: 0;

  padding: 80px 8px 32px;

  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.nav_content::before{
  content: '';
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}

.nav_content.active {
  right: 0;
  opacity: 1;
}

@media screen and (min-width: 1200px) {
  #hamburger-btn.active{
    transition: all .5s;
    /* right: calc(var(--padding-value) * -1); */
  }
  .nav_content {
    max-width: unset;
    width: calc(320px + var(--padding-value));
  }
}

/*--------------------------------------------------
  ハンバーガーメニュー＆フッターメニューの共通化
-------------------------------------------------- */
.menu-list-wrap dl{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.menu-list-wrap dl > dt{
  color: #fff;
  font-weight: bold;
}

.menu-list-wrap dl > dd{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-list-wrap dl > dd > a{
  color: #fff;
  font-size: 1rem;
}

.nav_content .menu-list-wrap dl{
  align-items: center;
  max-width: 320px;
}

.nav_content .menu-list-wrap dl.btn-menu > dd{
  gap: 1.5rem;
}

.nav_content .menu-list-wrap dl > dt{
  display: block;
  border-top: solid 1px #fff;
  padding-top: 24px;
}

.nav_content .menu-list-wrap dl > dt,
.nav_content .menu-list-wrap dl > dd{
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.footer-menu-box dl{
  display: none;
  gap: 0.5rem;
}

.footer-menu-box dl.btn-menu{
  display: none!important;
}

.footer-menu-box dl.company-menu{
  display: flex;
}

.footer-menu-box dl > dt{
  border-bottom: solid 1px;
  padding-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .footer-menu-box dl{
    display: flex;
    flex-direction: row;
    gap: 1rem 2rem;
  }

  .footer-menu-box dl:not(:last-child){
    margin-bottom: 1rem;
  }

  .footer-menu-box dl > dt{
    border-bottom: unset;
    padding-bottom: unset;
    border-right: solid 1px;
    width: 220px;
    height: 100%;
  }

  .footer-menu-box dl > dd{
    flex-direction: row;
    flex-wrap: wrap;
    width: calc(100% - 220px);
    gap: 1rem;
  }
}

#page_top{
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-color: var(--font-color);
  border-radius: 10px;
  z-index: 50;
  transition: all .5s;
  transform: translateY(80px);
  opacity: 0;
}

#page_top.active{
  opacity: 0.8;
  transform: translateY(0px);
}

#page_top a{
  width: 50px;
  height: 50px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

#page_top a::before{
  font: var(--fa-font-solid);
  content: "\f077";
}

#page_top a::after{
  content: 'Top';
  font-size: 0.75rem;
}

/* --------------------------------------------------
  top以外のheader共通デザイン
-------------------------------------------------- */
.header-wrap{
  height: 200px;
  background-image: url(../images/header-bg-img.jpg);
  background-repeat: no-repeat;
  max-width: 100%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.header-wrap::before{
  content:'';
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  z-index: -1;
  background-color: var(--filter-color);
}

.header-wrap h2{
  position: absolute;
  bottom: 15%;
  text-align: center;
  display: block;
  width: 100%;
  color: #FFFFFF;
}

/* --------------------------------------------------
  footerのデザイン
-------------------------------------------------- */
.footer-wrap{
  background-color: var(--font-color);
  padding: 1rem 1rem 2rem;
  color: #fff;
}

.footer-menu-box{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 2rem 0;
}

.footer-contact-box{
  border: solid 1px;
  padding: 1.5rem 1rem;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.footer-contact-box .tel-number a{
  color: #fff;
  text-decoration: none;
}

/* --------------------------------------------------
  tab-menuのオーバーライド
-------------------------------------------------- */
.tab-menu{
  --tab-active-bg-color: #1DACD9;
}
.tab-menu label{
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  position: relative;
}

.tab-menu label span{
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}

.tab-menu label span::after{
  content: '';
  position: absolute;
  max-width: 100px;
  width: 70%;
  height: 5px;
  background-color: var(--tab-active-bg-color);
  border-radius: 10px;
  bottom: 10px;
  display: inline-block;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.tab-menu label:hover span::after,
.tab-menu label:active span::after{
  background-color: #fff;
}

.tab-menu label:has(:checked) span{
  font-size: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
}

.tab-menu label:has(:checked) span::after{
  content: unset;
}

.tab-menu label:has(:checked)::before{
  bottom: -14px;
  width: 30px;
  height: 15px;
}

/* --------------------------------------------------
  index.php のデザイン
-------------------------------------------------- */
.top-header-wrap{
  position: relative;
  height: 85vh;
}

.top-header-wrap::before{
  content: '';
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: -100px;
  z-index: 1;
  background-color: var(--filter-color);
}

.top-header-wrap::after{
  content: '';
  position: absolute;
  width: 100%;
  background-image: url(../images/wave_sp.svg);
  background-repeat: repeat-x;
  background-size: 100% auto;
  z-index: 1;
  bottom: calc(8% * -1);
  height: 20%;
}

@media screen and (min-width: 768px) {
  .top-header-wrap::after{
    background-image: url(../images/wave_pc.svg);
  }
}

.top-header-wrap .top-motto{
  position: absolute;
  width: 100%;
  max-width: 1200px;
  top: 60vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  padding-left: 1rem;
  font-family: var(--font-maru-sans-serif);
}

.top-header-wrap .top-motto h2{
  font-size: clamp(1.75rem, 0.932rem + 4.09vw, 4rem);
}

.recruit-top-message-box{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.recruit-top-message-box .message-box{
  margin: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit-top-message-box .img-box{
  max-width: 600px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .recruit-top-message-box{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .recruit-top-message-box .img-box{
    order: 2;
  }

  .recruit-top-message-box .message-box{
    order: 1;
    margin: 0;
    flex-direction: column;
    background-color: var(--blue-color);
    color: #fff;
  }

  .recruit-top-message-box .message-box .btn{
    border-color: var(--blue-color);
    background-color: #fff;
    color: var(--blue-color);
  }

}

.mySwiper{
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.mySwiper .swiper-slide {
  background-position: center;
  background-size: cover;
}

.mySwiper .swiper-slide img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mySwiper .swiper-slide[class*=-prev] img {
  opacity: 0;
}

.mySwiper .swiper-slide[class*=-active] img {
  transition-delay: 0s;
  transform: scale(1.10);
  transition: all 9s;
}

.top-box{
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 16px 16px;
}

.top-news-wrap{
  background-color: var(--font-color);
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.top-news-wrap a {
  color: #FFFFFF;
}

.info-box {
  width: 100%;
  border-style: none;
  overflow: hidden;
}

.news-box{
  margin: 0 auto;
  font-family: 游ゴシック, Yu Gothic, 游ゴシック体, YuGothic, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, sans-serif;
  font-size: 1rem;
}

.news-box p{
  margin: 0;
}

.news-box a{
  text-decoration: none;
  font-weight: bold;
}

.news-box ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem 1rem;
  padding: 0;
  margin: 0;
}

.news-box ul a{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.news-box ul li .date{
  display: inline-block;
  width: 7em;
}

.news-box ul li .label{
  display: inline-block;
  font-size: 0.8rem;
  border: solid 1px;
  padding: 0.1rem 0.3rem;
  border-radius: 5px;
  width: 80px;
  height: 100%;
  text-align: center;
}

.news-box ul li .text{
  display: inline-block;
  width: 100%;
  text-decoration: underline;
}

@media screen and (min-width: 768px){
  .news-box ul li .text{
    width: calc(100% - 7rem - 80px - 2rem);
  }
}

.news-box .goto-news-list {
  margin: 1rem 0;
  text-align: right;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.8;
}

.x-btn{
  display: flex;
  max-width: 450px;
  width: 100%;
  background: var(--font-color);
  color: #fff;
  border-radius: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.5rem;
  margin-left: auto;
}

.x-btn i{
  font-size: 1.2rem;
}

.recruit-wrap{
  display: grid;
  gap: 32px;
}

@media screen and (min-width: 768px) {
  .recruit-wrap{
    grid-template-columns: 1fr 1fr;
  }
}

.recruit-box{
  padding: 16px 0;
}

.recruit-box .item{
  position: relative;
  display: block;
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  transition: all 1s;
}

.recruit-box .item:hover,
.recruit-box .item:active{
  transform: scale(1.05);
}


.recruit-box .item:not(:last-child){
  margin-bottom: 24px;
}

.recruit-box .item::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--filter-color2);
  border-radius: 20px;
}

.recruit-box .title{
  position: absolute;
  display: block;
  bottom: 10px;
  color: #fff;
  font-size: 1.3rem;
  width: 100%;
  text-align: center;
}

.recruit-box .item-img img{
  border-radius: 20px;
}

.company-box,
.job-box{
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

.company-box ul,
.job-box ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-box ul li a,
.job-box ul li a{
  font-size: 1.3rem;
  color: #8fb8cd;
}

.company-box .img-box img,
.job-box .img-box img{
  border-radius: 20px;
}

@media screen and (min-width: 768px) {
  .company-box{
    grid-template-columns: 1fr 1.5fr;
  }

  .job-box{
    grid-template-columns: 1.5fr 1fr;
  }

  .job-box div:nth-child(1){
    order: 2;
  }

  .job-box div:nth-child(2){
    order: 1;
  }
}

.interview-box{
  list-style: none;
}

.interview-box .item{
  position: relative;
  display: block;
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  transition: all .5s;
}

.interview-box .item:hover,
.interview-box .item:active{
  transform: scale(1.05);
}

.interview-box .item::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--filter-color2);
  border-radius: 20px;
}

.interview-box .title{
  position: absolute;
  display: block;
  bottom: 10px;
  color: #fff;
  font-size: 1.3rem;
  width: 100%;
  text-align: center;
}

.interview-box .item-img img{
  border-radius: 20px;
}

/* --------------------------------------------------
  recruit-guidelines.php のデザイン
-------------------------------------------------- */
.guidelines-box{
  display: block;
  margin: 2rem auto;
  max-width: 800px;
  border: solid 1px var(--font-color);
  padding: 1rem;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .guidelines-box{
    padding: 1rem 2rem;
  }
}

.guidelines-box h3{
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
}

.guidelines-box img{
  width: 100%;
  max-width: 300px;
}

/* --------------------------------------------------
  faq.php のデザイン
-------------------------------------------------- */
details.faq-content{
  background-color: var(--back-gray-color);
  padding: 1.5rem;
  transition: all .5s;
}

details.faq-content:not(:last-child){
  margin-bottom: 1rem;
}

details.faq-content > summary{
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  list-style: none;
  padding-left: 2rem;
  position: relative;
  border-bottom: dashed 1px;
  padding-bottom: 0.5rem;
}

details.faq-content.blue > summary{
  color: #2193B7;
}

details.faq-content.green > summary{
  color: var(--green-color);
}

details.faq-content.orange > summary{
  color: var(--orange-color);
}

details.faq-content > summary::before{
  font: var(--fa-font-solid);
  content: '\51';
  position: absolute;
  left: 0;
  top: 7px;
}

/* マーカーを消す(safari) */
details.faq-content > summary::-webkit-details-marker {
  display:none;
}

details.faq-content > .faq-box{
  font-size: 1rem;
}

details.faq-content > .faq-box .img-center{
  max-width: 250px;
  margin: 1rem auto;
}

details.faq-content > .faq-box .img-left,
details.faq-content > .faq-box .img-right{
  width: 30%;
  max-width: 200px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
details.faq-content > .faq-box .img-left{
  float: left;
  margin-right: 0.5rem;
}
details.faq-content > .faq-box .img-right{
  float: right;
  margin-left:0.5rem;
}

details.faq-content > .faq-box p{
  margin-bottom: 0;
}

details.faq-content > .faq-box a{
  color: var(--blue-color)!important;
}

/* --------------------------------------------------
  message.php のデザイン
-------------------------------------------------- */
.president-box h3 span{
  display: inline-block;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  color: var(--blue-color);
  margin-bottom: 0.3rem;
}

.recruitment-person-box{
  padding: 1.5rem;
  border: solid 1px var(--font-color);
}

/* --------------------------------------------------
  menber_list.php のデザイン
-------------------------------------------------- */
.member-list{
  list-style: none;
}

.member-list > li > a{
  display: inline-block;
  position: relative;
  box-shadow: 0px 3px 20px var(--filter-color);
  border-radius: 10px;
  overflow: hidden;
  max-width: 320px;
  max-height: 500px;
  transition: all .5s;
}

.member-list > li > a:hover,
.member-list > li > a:active{
  transform: scale(1.05);
}

.member-list > li > a span{
  display: block;
  position: absolute;
  right: 0;
  bottom: 20px;
  background-color: var(--font-color);
  color: #fff;
  font-size: clamp(1.375rem, 1.148rem + 1.14vw, 2rem);
  text-align: right;
  padding: 0.3rem 12px 0.3rem 20px;
}

.member-list > li > a span small{
  display: block;
  width: 100%;
  font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
}

/* --------------------------------------------------
  menber●.php のデザイン
-------------------------------------------------- */
.member-header{
  margin-top: 3rem;
}

.profile-box{
  border-bottom: solid 1px var(--font-color);
  font-size: 1rem;
  margin: 2rem 0;
}

.profile-box h3 span.part{
  padding-right: 1rem;
  border-right: solid 1px;
  margin-right: 1rem;
}

.schedule-box{
  background-image: url(../images/schedule-bg-img.jpeg);
  position: relative;
  z-index: 0;
}

.schedule-dl{
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5rem;
}

.schedule-dl dt{
  font-family: var(--font-barlow);
  width: 75px;
  background-color: var(--blue-color);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  height: 100%;
  padding: 0.3rem 0.8rem;
}

.schedule-dl dd{
  width: calc(100% - 75px);
  padding: 0.3rem 0 0 1rem;
  position: relative;
}

.schedule-dl dd:not(:last-child)::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateY(30px);
  left: -35px;
  width: 5px;
  background: var(--blue-color);
}

/* --------------------------------------------------
  data-iwate.php のデザイン
-------------------------------------------------- */
.data-iwate-box{
  list-style: none;
}

.data-iwate-box h1{
  line-height: 1.5;
}

/* --------------------------------------------------
  job-deliver-news.php のデザイン
-------------------------------------------------- */
.deliver-menu{
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.deliver-menu li{
  list-style-type: none;
  position: relative;
  width: 160px;
  height: 60px;
  padding-right: 30px;
  font-weight: bold;
}

.deliver-menu li::before{
  content: counter(list-item);
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-color);
  font-size: 1.5rem;
}

.deliver-menu li:not(:last-child)::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border-width: 30px 0 30px 30px;
  border-style: solid;
  border-color: transparent transparent transparent var(--back-blue-color);
}

.deliver-menu li a{
  display: flex;
  /* justify-content: center; */
  align-items: center;
  background: var(--back-blue-color);
  padding: 0.5rem 0 0.5rem 1.7rem;
  font-size: 1rem;
  height: 100%;
}

/** アンカーリンクのズレ防止のためオーバーライド */
.deliver-wrap .fade-in-ele{
  transform: translateY(0);
}


/* --------------------------------------------------
  naitei-faq.php のデザイン
-------------------------------------------------- */
.faq-box .faq-ul{
  margin-top: 1rem;
  padding-left: 1.5rem;
  line-height: 1.8rem;
}

.faq-box .faq-ul li:not(:last-child){
  margin-bottom: 1rem;
}

.graph-wrap{
  max-height: 600px;
  width: 100%;
  max-width: 650px;
  margin-top: 1rem;
}

/* --------------------------------------------------
  pagination
-------------------------------------------------- */
.pagination {
  list-style: none;
  padding: 0;
  margin: 3rem 0 1rem;
  text-align: center;
  color: #aaa;
}

.pagination li {
  display: inline-block;
  border: 1px solid #eee;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 4px 15px;
}