main {
  padding: 0;
}
@media screen and (min-width: 769px) {
  main {
    padding: 0;
  }
}

.mv > .inner {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .mv > .inner {
    max-width: 2500px;
  }
}
@media screen and (min-width: 769px) {
  .mv > .inner {
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 1200px) {
  .mv > .inner {
    width: calc(100% - 160px);
  }
}

.news {
  margin: -20px 0 20px;
}
.news > .inner {
  padding: 30px 12px;
  background-color: #fff;
  border-radius: 16px;
}
.news__header {
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 25px;
}
.news__header .ttl {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.news__link {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.news__link a {
  margin-left: auto;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  grid-gap: 16px;
}
.news__link a img {
  width: 44px;
  height: 44px;
  padding: 0 16px;
  background-color: #E9EDEF;
  border-radius: 50%;
  display: block;
}
.news__nav {
  margin-bottom: 10px;
}
.news__nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px;
}
.news__nav a {
  width: 100%;
  height: 40px;
  background-color: #F3F5F6;
  border-radius: 8px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__nav a:hover {
  background-color: #E9EDEF;
  font-weight: 500;
  opacity: 1;
}
.news__nav a.current {
  background-color: #0080CB;
  color: #fff;
}
.news__body {
  position: relative;
}
.news__body__item {
  padding: 26px 0 20px;
  border-bottom: 1px solid #DBDBDB;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.news__body__item__date {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
}
.news__body__item__txt {
  width: calc(100% - 30px);
}
.news__body__item__link {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news__body__item:hover .news__body__item__link {
  background-color: #F3F5F6;
}
.news__body__item .category {
  height: 20px;
  margin: 5px 5px 5px 0;
  color: #0080CB;
  white-space: nowrap;
}
.news__tab {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.news__tab.all {
  position: relative;
}
.news__tab.current {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 576px) {
  .news {
    margin: -40px 0 30px;
  }
}
@media screen and (min-width: 769px) {
  .news {
    margin: -60px 0 35px;
  }
  .news__header {
    padding-right: 0;
    margin-bottom: 30px;
    justify-content: flex-start;
  }
  .news__nav ul {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 12px;
  }
  .news__body__item {
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .news__body__item__date {
    width: auto;
    flex-shrink: 0;
  }
  .news__body__item__txt {
    width: 100%;
    padding: 0 15px 0 20px;
  }
  .news__body__item__link {
    width: 45px;
    height: 45px;
    align-self: center;
  }
  .news__body__item .category {
    margin: 0 5px 8px;
  }
}
@media screen and (min-width: 1024px) {
  .news {
    margin: -80px 0 40px;
  }
  .news > .inner {
    padding: 48px 96px;
  }
  .news__header .ttl {
    font-size: 28px;
  }
  .news__link a img {
    width: 80px;
    height: 80px;
    padding: 0 32px;
  }
  .news__nav {
    margin-bottom: 28px;
  }
  .news__body__item {
    padding: 26px 0 20px;
  }
  .news__body__item__txt {
    width: 100%;
    padding: 0 15px 0 34px;
  }
  .news__body__item__link {
    width: 64px;
    height: 64px;
    align-self: center;
  }
  .news__body__item .category {
    height: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .news {
    margin: -108px 0 42px;
  }
}

.menu {
  padding: 45px 0 70px;
  background-color: #E9EDEF;
}
.menu__ttl {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.menu__list {
  display: grid;
  grid-gap: 20px;
}
.menu__listItem {
  padding: 0 16px 0 0;
  background-color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 10px;
}
.menu__listItem .img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.menu__listItem .txt {
  width: 100%;
}
.menu__listItem .arrow {
  width: 25px;
  height: 25px;
  padding: 5px;
  background-color: #E9EDEF;
  border-radius: 50%;
  flex-shrink: 0;
}
.menu__listItem:hover {
  opacity: 0.6;
}
@media screen and (min-width: 769px) {
  .menu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .menu {
    padding: 90px 0 140px;
  }
  .menu__ttl {
    margin-bottom: 30px;
    font-size: 28px;
  }
  .menu__list {
    grid-gap: 30px 32px;
  }
  .menu__listItem {
    padding: 0 32px 0 0;
    font-size: 22px;
    grid-gap: 16px;
  }
  .menu__listItem .img {
    width: 120px;
    height: 120px;
  }
  .menu__listItem .txt {
    padding-left: 16px;
  }
  .menu__listItem .arrow {
    width: 48px;
    height: 48px;
    padding: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .menu__listItem {
    font-size: 24px;
  }
  .menu__listItem .img {
    width: 144px;
    height: 144px;
  }
}

.machizukuri {
  margin-bottom: 45px;
}
.machizukuri__mv {
  width: 100%;
  height: 250px;
}
.machizukuri > .inner {
  max-width: 480px;
  padding-top: 20px;
}
.machizukuri .ttl {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
.machizukuri p {
  letter-spacing: 0.1em;
  text-align: center;
}
.machizukuri .btn {
  margin-top: 16px;
  background-color: #0080CB;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .machizukuri {
    margin-bottom: 90px;
  }
  .machizukuri__mv {
    height: 462px;
  }
  .machizukuri .ttl {
    font-size: 24px;
  }
  .machizukuri .btn {
    max-width: 352px;
    font-size: 18px;
  }
}

.dx {
  margin-bottom: 45px;
}
.dx__mv {
  width: 100%;
  height: 250px;
}
.dx > .inner {
  max-width: 480px;
  padding-top: 20px;
}
.dx .ttl {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
.dx p {
  letter-spacing: 0.1em;
  text-align: center;
}
.dx .btn {
  margin-top: 16px;
  background-color: #0080CB;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .dx {
    margin-bottom: 90px;
  }
  .dx__mv {
    height: 462px;
  }
  .dx .ttl {
    font-size: 24px;
  }
  .dx .btn {
    max-width: 352px;
    font-size: 18px;
  }
}

.zaitaku {
  margin-bottom: 50px;
}
.zaitaku__img {
  width: 100%;
  height: 200px;
}
.zaitaku__txtWrap {
  width: 100%;
  max-width: 272px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.zaitaku__txtWrap .ttl {
  width: 100%;
  height: 64px;
  padding-top: 12px;
  margin: -32px auto -20px;
  background-color: #fff;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.zaitaku__txtWrap p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.7143;
}
.zaitaku__link {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 16px;
}
.zaitaku__link img {
  width: 44px;
  height: 44px;
  padding: 0 16px;
  background-color: #E9EDEF;
  border-radius: 50%;
  display: block;
}
@media screen and (min-width: 769px) {
  .zaitaku {
    margin-bottom: 80px;
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0 25px;
  }
  .zaitaku__img {
    width: 50.8%;
    height: auto;
  }
  .zaitaku__txtWrap {
    width: calc(49.2% - 25px);
    max-width: 458px;
    padding: 0 20px 0 0;
    margin: 0 auto 0 0;
    flex-shrink: 0;
  }
  .zaitaku__txtWrap .ttl {
    width: 100%;
    height: auto;
    padding-top: 0;
    margin: 0 0 18px;
    border-radius: 0;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-align: left;
  }
  .zaitaku__txtWrap p {
    margin-bottom: 24px;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.75;
  }
  .zaitaku__link {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1024px) {
  .zaitaku {
    margin-bottom: 105px;
    grid-gap: 32px 50px;
  }
  .zaitaku__txtWrap {
    width: calc(49.2% - 50px);
  }
  .zaitaku__txtWrap .ttl {
    font-size: 24px;
    margin: 0 0 24px;
  }
  .zaitaku__link img {
    width: 80px;
    height: 80px;
    padding: 0 32px;
  }
}
@media screen and (min-width: 1200px) {
  .zaitaku {
    grid-gap: 32px 96px;
  }
  .zaitaku__img {
    height: 358px;
  }
  .zaitaku__txtWrap {
    width: calc(49.2% - 96px);
    max-width: 448px;
    padding: 0;
  }
  .zaitaku__txtWrap p {
    margin-bottom: 32px;
    font-size: 16px;
  }
}
.sustainability {
  margin-bottom: 40px;
}
.sustainability__mv {
  width: 100%;
  height: 250px;
}
.sustainability > .inner {
  max-width: 480px;
  margin-top: -70px;
}
.sustainability .ttl {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
.sustainability p {
  letter-spacing: 0.1em;
  text-align: center;
}
.sustainability__link {
  width: 100%;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 16px;
}
.sustainability__link img {
  width: 44px;
  height: 44px;
  padding: 0 16px;
  background-color: #E9EDEF;
  border-radius: 50%;
  display: block;
}
@media screen and (min-width: 769px) {
  .sustainability__mv {
    max-width: 1376px;
    height: auto;
    margin: 0 auto;
  }
  .sustainability__mv img {
    position: relative;
  }
}
@media screen and (min-width: 1024px) {
  .sustainability {
    margin-bottom: 80px;
  }
  .sustainability > .inner {
    margin-top: -100px;
  }
  .sustainability .ttl {
    font-size: 24px;
  }
  .sustainability__link img {
    width: 80px;
    height: 80px;
    padding: 0 32px;
  }
}
@media screen and (min-width: 1200px) {
  .sustainability > .inner {
    margin-top: -140px;
  }
}

.mirai {
  /*margin-bottom: 55px;*/
margin-top:40px;
}
.mirai__mv {
  width: 100%;
padding:60px 30px;
background:url(/re_img/company/index/mirai_bg.jpg) no-repeat center center;
margin-bottom:40px;
text-align:center;
    background-size: cover;
}
.mirai__mv a{
display:block;
}
.mirai__mv a span.catch{
    display: inline-block;
    max-width: 400px;
}
.mirai > .inner {
width:70%;
  max-width: 480px;
  padding-top: 20px;
}
.mirai p {
  letter-spacing: 0.1em;
  text-align: center;
}
.mirai .btn {
  margin-top: 16px;
  background-color: #0080CB;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .mirai__mv {
    height: auto;
    margin: 0 auto;
  }
  .mirai__mv img {
    position: relative;
  }
}
@media screen and (min-width: 1024px) {
  .mirai {
    margin-bottom: 112px;
  }
  .mirai .btn {
    max-width: 352px;
    font-size: 18px;
  }
}

.info {
  padding-bottom: 40px;
}
.info .inner {
  max-width: 100%;
}
@media screen and (min-width: 769px) {
  .info {
    padding-bottom: 112px;
  }
}
.info__ttl {
  width: 100%;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6667;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .info__ttl {
    font-size: 20px;
  }
}
.info__bnr {
  width: 100%;
  margin-bottom: 30px;
  display: grid;
  grid-gap: 20px;
}
.info__bnr__link {
  width: 72%;
  margin: 0 auto;
  display: block;
}
.info__bnr__link img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 769px) {
  .info__bnr {
    max-width: 736px;
    margin: 0 auto 30px;
    grid-template-columns: repeat(2, 1fr);
  }
  .info__bnr__link {
    width: 100%;
    max-width: 352px;
  }
}
@media screen and (min-width: 1024px) {
  .info__bnr {
    margin-bottom: 56px;
  }
}
.info__recruit {
  margin-bottom: 30px;
}
.info__recruit__link {
  width: 100%;
  max-width: 928px;
  margin: 0 auto;
  display: block;
}
.info__recruit__link img {
  width: 100%;
  display: block;
}



/*add*/


@media only screen and (max-width: 769px) {

.mirai__mv {
padding:30px 30px;

}

.news__body__item {
    padding: 15px 0 15px;
}

.menu {
    padding: 25px 0 25px;
}

.news__link.disp_sp{
margin-top:15px;
}

.news > .inner {
    padding: 30px 12px 0px 12px;
}


.sustainability p,
.machizukuri p,
.dx p {
    font-size: 90%;
line-height:1.6;
}







}