@charset "UTF-8";
/* CSSリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

ul {
  list-style: none;
}

/* 変数定義 */
/* category color */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  min-width: 1240px;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    font-size: 15px;
  }
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

a:hover {
  opacity: 0.9;
}

.content_hide {
  overflow: hidden;
}

.sp_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

/* Header */
header #navi_ctl {
  transition: 0.5s;
}
header .navi_menu {
  position: fixed;
  z-index: 9;
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  header .navi_menu {
    padding: 20px 10px;
  }
}
header .navi_menu .logo a {
  display: flex;
  align-items: center;
}
header .navi_menu .logo a img {
  width: 67px;
  height: auto;
  margin-right: 20px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  header .navi_menu .logo a img {
    width: 45px;
  }
}
header .navi_menu .logo a h1 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .navi_menu .logo a h1 {
    font-size: 16px;
  }
}
header .navi_menu #menu {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  header .navi_menu #menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 100vw;
    background: rgba(51, 51, 51, 0.8);
    padding: 30px;
    display: block;
    box-sizing: border-box;
  }
}
header .navi_menu #menu ul {
  display: flex;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  header .navi_menu #menu ul {
    display: block;
    margin: 0;
    text-align: center;
    margin-bottom: 70px;
    padding-top: 25%;
  }
}
header .navi_menu #menu ul li {
  position: relative;
}
@media screen and (max-width: 768px) {
  header .navi_menu #menu ul li {
    margin-bottom: 20px;
  }
}
header .navi_menu #menu ul li a {
  padding: 5px 25px;
  color: #fff;
}
header .navi_menu #menu ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 10px;
  transform: translateY(-50%);
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  header .navi_menu #menu ul li::after {
    content: none;
  }
}
header .navi_menu #menu ul li:last-child::after {
  display: none;
}
header .navi_menu #menu ul li::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 1px;
  background: #CB162A;
  transition: 0.2s;
}
header .navi_menu #menu ul li:hover::before {
  width: 50px;
}
header .navi_menu #menu .contact {
  padding: 15px 50px;
  background: #CB162A;
  border-radius: 35px 0 0 35px;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .navi_menu #menu .contact {
    border-radius: 10px;
    display: table;
    margin: 0 auto;
  }
}
header .navi_menu #menu .contact::after {
  content: "";
  background-image: url(../image/link_arrow.svg);
  width: 7px;
  height: 13px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: 0.3s;
}
header .navi_menu #menu .contact:hover::after {
  right: 20px;
}
header .navi_menu #sp_menu {
  display: none;
}
@media screen and (max-width: 768px) {
  header .navi_menu #sp_menu {
    display: block;
    position: fixed;
    right: 20px;
    padding: 15px 5px;
  }
}
header .navi_menu #sp_menu span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  margin-bottom: 5px;
}
header .navi_menu #sp_menu span:nth-child(2) {
  margin-bottom: 0;
}
header .navi_menu #sp_menu #bar1, header .navi_menu #sp_menu #bar2 {
  transition: 0.3s;
}

/* Main */
main {
  max-width: 1920px;
  margin: 0 auto;
}

.top_kv ul li img {
  width: 100%;
  height: auto;
  position: relative;
  max-height: 1080px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top_kv ul li img {
    height: 100vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top_kv ul li h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  color: #fff;
  text-align: center;
  width: 100%;
  filter: drop-shadow(2px 2px 3px rgba(85, 85, 85, 0.8));
}
@media screen and (max-width: 768px) {
  .top_kv ul li h2 {
    font-size: 25px;
  }
}
.top_kv ul li h2 span {
  display: block;
  font-size: 28px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top_kv ul li h2 span {
    font-size: 14px;
  }
}

/* Content */
.content {
  min-width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .content {
    max-width: inherit;
    min-width: inherit;
    width: 90%;
  }
}

.content_wide {
  width: 90%;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .content_wide {
    padding: 5%;
    width: 100%;
    margin: 50px auto 100px;
  }
}

/* News */
.news_wrap {
  display: flex;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .news_wrap {
    display: block;
    margin-top: 60px;
  }
}
.news_wrap .news_title {
  width: 200px;
  margin-right: 80px;
}
@media screen and (max-width: 768px) {
  .news_wrap .news_title {
    width: 100%;
    margin-right: 0;
  }
}
.news_wrap .news_title h2 {
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 190px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .news_wrap .news_title h2 {
    margin: 0 auto;
    font-size: 25px;
    width: 150px;
    height: 150px;
  }
}
.news_wrap .news_title a {
  display: table;
  font-size: 13px;
  margin: 50px auto 0;
  padding: 5px 60px 5px 20px;
  border: 1px solid #ccc;
  position: relative;
}
.news_wrap .news_title a:hover {
  background: #eee;
}
.news_wrap .news_title a::after {
  content: "";
  background-image: url(../image/link_arrow_black.svg);
  width: 7px;
  height: 13px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.news_wrap .news_title a:hover::after {
  right: 10px;
}
@media screen and (max-width: 768px) {
  .news_wrap .news_title a {
    margin-bottom: 50px;
  }
}
.news_wrap .news_list {
  width: calc(100% - 280px);
}
@media screen and (max-width: 768px) {
  .news_wrap .news_list {
    width: 90%;
    margin: 0 auto;
  }
}
.news_wrap .news_list ul li {
  border-bottom: 1px solid #ccc;
}
.news_wrap .news_list ul li:first-child {
  margin-top: -30px;
}
.news_wrap .news_list ul li a {
  display: flex;
  align-items: center;
  padding: 30px 0;
  transition: 0.3s;
}
.news_wrap .news_list ul li a:hover {
  background: #f7f7f7;
}
@media screen and (max-width: 768px) {
  .news_wrap .news_list ul li a {
    flex-wrap: wrap;
    padding-bottom: 15px;
  }
}
.news_wrap .news_list ul li a .date {
  margin-right: 30px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .news_wrap .news_list ul li a .date {
    margin-left: 0;
    font-size: 14px;
  }
}
.news_wrap .news_list ul li a .category {
  margin-right: 30px;
  padding: 5px 10px;
  background: #3455AF;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .news_wrap .news_list ul li a .category {
    padding: 2px 7px;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .news_wrap .news_list ul li a h3 {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
  }
}

/* About */
.about_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .about_wrap {
    display: block;
    margin-top: 50px;
  }
}
.about_wrap .text {
  width: 600px;
}
@media screen and (max-width: 768px) {
  .about_wrap .text {
    width: 100%;
  }
}
.about_wrap .text h2 {
  font-size: 32px;
  margin-bottom: 80px;
  position: relative;
}
.about_wrap .text h2::after {
  content: "ABOUT US";
  position: absolute;
  bottom: -15px;
  left: 0;
  font-size: 13px;
}
.about_wrap .text h3 {
  font-size: 24px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about_wrap .text h3 {
    font-size: 25px;
  }
}
.about_wrap .text p {
  line-height: 2.2em;
}
.about_wrap .image {
  width: calc(100% - 600px);
}
@media screen and (max-width: 768px) {
  .about_wrap .image {
    width: 100%;
    margin-top: 30px;
  }
}
.about_wrap .image ul li img {
  width: 100%;
}

/* works */
.works_wrap {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .works_wrap {
    margin-top: 100px;
  }
}
.works_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.works_wrap ul li {
  width: 320px;
  height: 320px;
  margin-bottom: 50px;
  box-sizing: border-box;
  transition: 0.3s;
}
.works_wrap ul li:not(:first-child):hover {
  padding: 10px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .works_wrap ul li {
    width: 48%;
    height: auto;
  }
  .works_wrap ul li:nth-child(1) {
    width: 240px;
    height: 240px;
    margin: 0 auto 50px;
  }
}
.works_wrap ul li .works_title_wrap {
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.works_wrap ul li .works_title_wrap .works_title {
  height: calc(100% - 22px);
  background: linear-gradient(-45deg, #294690 50%, #3355AE 50%);
  position: relative;
}
.works_wrap ul li .works_title_wrap .works_title h2 {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .works_wrap ul li .works_title_wrap .works_title h2 {
    font-size: 24px;
  }
}
.works_wrap ul li .works_title_wrap .works_title h2::after {
  content: "PROJECT";
  position: absolute;
  font-size: 12px;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}
.works_wrap ul li .works_title_wrap .works_title a {
  position: absolute;
  left: 50%;
  bottom: 25%;
  transform: translateX(-50%);
  padding: 10px 40px 10px 20px;
  text-align: center;
  background: #fff;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .works_wrap ul li .works_title_wrap .works_title a {
    font-size: 13px;
    padding: 10px 30px 10px 10px;
    display: table;
    width: 40%;
  }
}
.works_wrap ul li .works_title_wrap .works_title a:hover {
  background: #eee;
}
.works_wrap ul li .works_title_wrap .works_title a::after {
  content: "";
  background-image: url(../image/link_arrow_black.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 6px;
  height: 10px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.works_wrap ul li .works_title_wrap .works_title a:hover::after {
  right: 10px;
}
.works_wrap ul li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works_wrap ul li .place {
  font-size: 13px;
  margin-top: 10px;
}
.works_wrap ul li .name {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .works_wrap ul li .name {
    font-size: 15px;
  }
}

/* GOALS */
.goals_wrap {
  margin-top: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .goals_wrap {
    margin-top: 50px;
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .goals_wrap img {
    width: 100%;
  }
}
.goals_wrap a {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 60px 10px 30px;
  background: #CB162A;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .goals_wrap a {
    display: none;
  }
}
.goals_wrap a::after {
  content: "";
  background-image: url(../image/link_arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 8px;
  height: 13px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.goals_wrap a:hover::after {
  right: 20px;
}

.goals_wrap_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .goals_wrap_sp {
    display: block;
    margin-top: 100px;
  }
}
.goals_wrap_sp a img {
  width: 80%;
  display: block;
  margin: 0 auto;
}

/* recruit */
.recruit_wrap {
  display: flex;
  margin-top: 90px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .recruit_wrap {
    margin-top: 50px;
  }
}
.recruit_wrap .recruit_title_wrap {
  padding: 10px;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  height: 308px;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .recruit_wrap .recruit_title_wrap {
    width: 100%;
    border: 1px solid #ccc;
    height: inherit;
  }
}
.recruit_wrap .recruit_title_wrap .recruit_title {
  height: 286px;
  background: linear-gradient(30.5deg, #449349 50%, #50A856 50%);
  text-align: center;
  margin: 0 auto;
  padding-top: 40px;
  box-sizing: border-box;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .recruit_wrap .recruit_title_wrap .recruit_title {
    padding: 30px 10px 30px 10px;
    height: inherit;
  }
}
.recruit_wrap .recruit_title_wrap .recruit_title h2 {
  font-size: 32px;
  padding-right: 80px;
  display: table;
  margin: 0 auto 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit_wrap .recruit_title_wrap .recruit_title h2 {
    font-size: 25px;
  }
}
.recruit_wrap .recruit_title_wrap .recruit_title h2::after {
  content: "RECRUIT";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
}
.recruit_wrap .recruit_title_wrap .recruit_title p {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .recruit_wrap .recruit_title_wrap .recruit_title p {
    font-size: 16px;
    line-height: 2em;
  }
}
.recruit_wrap .recruit_title_wrap .recruit_title a {
  padding: 10px 60px 10px 30px;
  background: #fff;
  color: #459349;
  display: table;
  margin: 20px auto 0;
  position: relative;
}
.recruit_wrap .recruit_title_wrap .recruit_title a::after {
  content: "";
  position: absolute;
  background-image: url(../image/link_arrow_green.svg);
  background-repeat: no-repeat;
  width: 6px;
  height: 11px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.recruit_wrap .recruit_title_wrap .recruit_title a:hover::after {
  right: 20px;
}
.recruit_wrap .recruit_entry {
  background-image: url(../image/top_recruit_image.png);
  width: calc(100% - 500px);
  background-size: cover;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruit_wrap .recruit_entry {
    display: none;
  }
}
.recruit_wrap .recruit_entry .recruit_content {
  margin-right: 20px;
}
.recruit_wrap .recruit_entry .recruit_content h3 {
  font-size: 40px;
}
.recruit_wrap .recruit_entry .recruit_content a {
  display: table;
  padding: 20px 60px 20px 30px;
  margin-top: 20px;
  color: #fff;
  position: relative;
}
.recruit_wrap .recruit_entry .recruit_content a::after {
  content: "";
  position: absolute;
  background-image: url(../image/link_arrow.svg);
  background-repeat: no-repeat;
  width: 7px;
  height: 13px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.recruit_wrap .recruit_entry .recruit_content a:hover::after {
  right: 20px;
}

/* footer */
#fix_sdgs {
  position: fixed;
  right: 0;
  bottom: 25%;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  #fix_sdgs a img {
    width: 70px;
  }
}

.footer_wrap {
  padding: 90px 100px 0 90px;
  width: 90%;
  background: #3355AE;
  color: #fff;
  box-sizing: border-box;
  margin: 100px auto 0;
  border-radius: 100px 100px 0 0;
}
@media screen and (max-width: 768px) {
  .footer_wrap {
    padding: 50px 20px 0 20px;
    width: 96%;
    border-radius: 30px 30px 0 0;
  }
}
.footer_wrap .corporate {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .corporate {
    display: block;
    text-align: center;
  }
}
.footer_wrap .corporate h1 {
  font-size: 25px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .corporate h1 {
    margin-left: 0;
    font-size: 20px;
    margin-top: 10px;
  }
}
.footer_wrap .sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.footer_wrap .sns ul li a img {
  display: block;
  padding: 7px;
  background: #fff;
  border-radius: 10px;
}
.footer_wrap .factory {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .factory {
    justify-content: space-between;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer_wrap .factory h3 {
    width: 35%;
  }
}
.footer_wrap .factory dl {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer_wrap .factory dl {
    display: block;
    width: 65%;
  }
}
.footer_wrap .factory dl dd {
  margin-left: 20px;
}
.footer_wrap .factory dl dd a {
  color: #fff;
}
.footer_wrap .nintei {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .nintei {
    display: block;
  }
}
.footer_wrap .nintei img {
  height: 80px;
  display: block;
  margin: 0 20px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .nintei img {
    margin: 20px auto;
  }
}
.footer_wrap .page_link {
  margin-top: 50px;
}
.footer_wrap .page_link ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_wrap .page_link ul {
    display: block;
  }
}
.footer_wrap .page_link ul li {
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .footer_wrap .page_link ul li {
    padding: 0;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.footer_wrap .page_link ul li a {
  color: #fff;
}
.footer_wrap .copyright {
  font-size: 12px;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #ccc;
  text-align: center;
}

#back {
  position: fixed;
  bottom: -80px;
  right: 0;
  transition: 0.5s;
  z-index: 9;
  padding: 25px;
  background: #3455af;
}
#back:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #back {
    padding: 18px;
    background: #a73636;
  }
}
#back img {
  width: 20px;
  height: 20px;
}

/* etc */
.bg_orange {
  background: #F4B257;
}

.bg_blue {
  background: #6BA4DE;
}

/* slick */
.slick-dots li.slick-active button:before {
  font-size: 30px !important;
}

.slick-dots li button:before {
  font-size: 30px !important;
}

.slick-dots {
  bottom: 10px !important;
}

/* 下層ページ */
h3.page_section_title {
  font-size: 30px;
  color: #3455AE;
  text-align: center;
}
@media screen and (max-width: 768px) {
  h3.page_section_title {
    font-size: 24px;
  }
}

.page_kv {
  position: relative;
}
.page_kv img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_kv img {
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page_kv h2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 200px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .page_kv h2 {
    width: 190px;
    height: 160px;
    font-size: 26px;
  }
}
.page_kv h2::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, 25px);
  font-size: 13px;
  letter-spacing: 2px;
}
.page_kv .page_title_business::after {
  content: "BUSINESS";
}
.page_kv .page_title_product::after {
  content: "PRODUCT";
}
.page_kv .page_title_about::after {
  content: "ABOUT";
}
.page_kv .page_title_recruit::after {
  content: "RECRUIT";
}
.page_kv .page_title_news::after {
  content: "NEWS";
}
.page_kv .page_title_contact::after {
  content: "CONTACT";
}

.bg_light_blue {
  background: #F5FBFF;
}

/* 事業紹介 */
.page_business_wrap {
  width: 100%;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.page_business_wrap::before {
  content: "";
  position: absolute;
  width: 1450px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #F5FBFF;
  z-index: 0;
}
.page_business_wrap .page_business_concept {
  text-align: center;
  padding: 100px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept {
    padding: 50px 0;
  }
}
.page_business_wrap .page_business_concept h3 {
  font-size: 30px;
  line-height: 2em;
  letter-spacing: 3px;
  font-weight: normal;
  color: #3455AE;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept h3 {
    font-size: 24px;
    line-height: 1.8em;
    padding: 0 1em;
  }
}
.page_business_wrap .page_business_concept2_wrap {
  margin-bottom: 150px;
  position: relative;
  width: 95%;
  left: 5%;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept2_wrap {
    width: 100%;
    left: 0;
    margin-bottom: 100px;
  }
}
.page_business_wrap .page_business_concept2_wrap .page_business_concept2 {
  width: calc(100% + (100vw - 1200px) / 2);
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept2_wrap .page_business_concept2 {
    flex-wrap: wrap-reverse;
    width: 96%;
    margin: 0 auto;
  }
}
.page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_left {
  width: 25%;
  margin-right: 125px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_left {
    width: 85%;
    margin: 30px auto 0;
  }
}
.page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_left::before {
  content: "";
  position: absolute;
  background-image: url(../image/aoi_logo_concept2_bg.svg);
  width: 274px;
  height: 198px;
  background-repeat: no-repeat;
  top: 0px;
  right: -70px;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_left::before {
    width: 170px;
    top: 40px;
    right: 0;
    background-size: contain;
  }
}
.page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_left h3 {
  font-size: 24px;
  margin-bottom: 50px;
  color: #707070;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_left h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_left p {
  line-height: 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_left p {
    line-height: 2em;
  }
}
.page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_right {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_right {
    width: 100%;
  }
}
.page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_right img {
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_concept2_wrap .page_business_concept2 .content_right img {
    min-height: 200px;
  }
}
.page_business_wrap .page_business_content {
  position: relative;
  z-index: 1;
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_content {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}
.page_business_wrap .page_business_content img {
  display: block;
  width: 40%;
  min-height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 10px 10px 0;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_content img {
    width: 100%;
    border-radius: 0;
    min-height: 200px;
  }
}
.page_business_wrap .page_business_content div {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_content div {
    width: 85%;
    margin: 30px auto;
  }
}
.page_business_wrap .page_business_content div h3 {
  font-size: 24px;
  padding: 5px 20px;
  color: #fff;
  font-weight: normal;
  display: table;
  border-radius: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .page_business_content div h3 {
    font-size: 22px;
    margin-bottom: 20px;
    border-radius: 5px;
  }
}
.page_business_wrap .page_business_content div p {
  line-height: 1.7em;
}
.page_business_wrap .business_right {
  justify-content: end;
  flex-wrap: wrap-reverse;
}
.page_business_wrap .mr30 {
  margin-right: 30px;
}
.page_business_wrap .mr0 {
  margin-right: 0 !important;
  border-radius: 10px 0 0 10px !important;
}
@media screen and (max-width: 768px) {
  .page_business_wrap .mr0 {
    border-radius: 0 !important;
  }
}
.page_business_wrap .mb0 {
  margin-bottom: 0;
}
.page_business_wrap .doboku_color {
  background: #5085C3;
}
.page_business_wrap .tobi_color {
  background: #CC884D;
}
.page_business_wrap .daiku_color {
  background: #A7C94C;
}
.page_business_wrap .tekkin_color {
  background: #BC5287;
}
.page_business_wrap .pc_color {
  background: #bcb552;
}

/* 施工実績 */
.area_niigata {
  background: #E5B74F;
  color: #fff;
}

.area_hokkaido_tohoku {
  background: #71C3E8;
  color: #fff;
}

.area_koushinetsu_hokuriku {
  background: #EA9CBD;
  color: #fff;
}

.area_kantou {
  background: #5DBA5D;
  color: #fff;
}

.area_toukai_kinki {
  background: #C89CEA;
  color: #fff;
}

.area_kansai {
  background: #E54F90;
  color: #fff;
}

.area_chugoku_shikoku {
  background: #5DA5BA;
  color: #fff;
}

.area_kyushu_okinawa {
  background: #7194E8;
  color: #fff;
}

.select_category {
  width: 80%;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .select_category {
    width: 100%;
  }
}
.select_category ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.select_category ul li {
  margin-bottom: 20px;
}
.select_category ul li a {
  padding: 5px 20px;
  display: table;
  margin: 0 10px;
  border: 1px solid #ccc;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .select_category ul li a {
    font-size: 14px;
  }
}
.select_category ul li a.select {
  background: #CB162A;
  color: #fff;
  border: none;
}
.select_category ul li a.news_select {
  background: #3455AF;
  color: #fff;
  border: none;
}

.select_result {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .select_result {
    width: 90%;
    margin: 80px auto 0;
  }
}
.select_result h3 {
  display: table;
  font-size: 24px;
  padding: 0 60px;
  text-align: center;
  margin: 0 auto 50px;
  color: #707070;
  position: relative;
}
.select_result h3::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
  background: #CB162A;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.select_result h3::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 25px;
  background: #CB162A;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.select_result ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.select_result ul li {
  width: 30%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .select_result ul li {
    width: 48%;
  }
}
.select_result ul li a {
  padding: 0;
  margin: 0;
}
.select_result ul li a img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .select_result ul li a img {
    height: 150px;
  }
}
.select_result ul li a .category {
  font-size: 14px;
  color: #fff;
  display: table;
  padding: 5px 10px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .select_result ul li a .category {
    font-size: 13px;
    padding: 2px 7px;
  }
}
.select_result ul li a .news_category {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .select_result ul li a .news_category {
    display: block;
  }
}
.select_result ul li a .news_category .date {
  margin-top: 20px;
  margin-left: 10px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .select_result ul li a .news_category .date {
    margin-top: 10px;
    margin-left: 0;
  }
}
.select_result ul li a .pink {
  background: #EA9CBD;
}
.select_result ul li a .orange {
  background: #E5B74F;
}
.select_result ul li a .blue {
  background: #71C3E8;
}
.select_result ul li a .green {
  background: #5DBA5D;
}
.select_result ul li a .dark_blue {
  background: #3455AF;
}
.select_result ul li a .address {
  margin-top: 10px;
  font-size: 13px;
}
.select_result ul li a h4 {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .select_result ul li a h4 {
    font-size: 16px;
  }
}

/* pegenation */
nav.navigation.pagination {
  display: table;
  margin: 70px auto 0;
}
nav.navigation.pagination span.page-numbers.current {
  background: #3355AE;
  color: #fff;
}
nav.navigation.pagination .page-numbers {
  padding: 5px 13px;
  border: 1px solid #ccc;
}
nav.navigation.pagination a.next {
  border: 0;
}
nav.navigation.pagination a.prev {
  border: 0;
}

/* 会社概要 */
.about {
  padding-top: 100px;
}
.about .copy {
  margin-top: 50px;
  text-align: center;
  line-height: 2em;
}
.about dl {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  margin: 50px auto 0;
  line-height: 2em;
}
@media screen and (max-width: 768px) {
  .about dl {
    width: 90%;
  }
}
.about dl dt {
  width: 25%;
  border-bottom: 1px solid #3455AF;
  padding-left: 1em;
  box-sizing: border-box;
  margin: 1em 0 0;
}
@media screen and (max-width: 768px) {
  .about dl dt {
    width: 30%;
  }
}
.about dl dd {
  width: 75%;
  border-bottom: 1px solid #ccc;
  padding-left: 1em;
  box-sizing: border-box;
  margin: 1em 0 0;
}
@media screen and (max-width: 768px) {
  .about dl dd {
    width: 70%;
  }
}
.about .certificates {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .about .certificates {
    width: 90%;
  }
}
.about .certificates .certificate {
  width: 45%;
  margin-bottom: 30px;
}
.about .certificates .certificate img {
  width: 100%;
}
.about .certificates .certificate small {
  margin: 15px auto 0;
  display: table;
  font-size: 15px;
}
.about .certificates .certificate a {
  margin: 10px auto 0;
  display: table;
  padding: 5px 20px;
  background: #3455AF;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
}

/* 採用情報 */
.page_inlink {
  margin: 60px auto;
}
.page_inlink ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page_inlink ul li {
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .page_inlink ul li {
    margin: 0 10px 20px;
    font-size: 15px;
  }
}
.page_inlink ul li a {
  padding: 5px 20px;
  display: table;
  border: 1px solid #ccc;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .page_inlink ul li a {
    padding: 5px 10px;
  }
}

@media screen and (max-width: 768px) {
  .messege_title {
    margin-left: 0;
  }
}

.message {
  margin-top: 50px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .message {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
}
.message .text {
  width: 100%;
  margin-right: 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .message .text {
    width: 100%;
    margin-right: 0;
    text-align: left;
  }
}
.message .text h4 {
  font-size: 24px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .message .text h4 {
    margin-bottom: 30px;
  }
}
.message .text p {
  line-height: 1.7em;
}
.message .text .boss {
  margin-top: 30px;
  font-size: 15px;
}
.message .photo {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .message .photo {
    width: 100%;
    margin-bottom: 30px;
  }
}
.message .photo img {
  width: 100%;
}

.internship {
  padding: 50px;
  background: #F5FBFF;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .internship {
    box-sizing: border-box;
    padding: 30px;
  }
}
.internship .internship_box .internship_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.internship .internship_box .internship_contents div {
  padding: 30px;
  background: #fff;
  box-sizing: border-box;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .internship .internship_box .internship_contents div {
    width: 100%;
    margin-bottom: 30px;
  }
}
.internship .internship_box .internship_contents div h4 {
  padding: 5px 20px;
  font-size: 18px;
  background: #3455AF;
  margin-bottom: 35px;
  display: table;
  color: #fff;
}
.internship .internship_box .internship_contents div p {
  margin-bottom: 35px;
}
.internship .internship_box .internship_contents div ul {
  list-style-type: disc;
  padding-left: 1em;
}

.recruit_contact {
  padding: 60px 30px;
  background: #3455af;
  color: #fff;
  display: table;
  margin: 50px auto;
}

.read {
  text-align: center;
  margin: 50px 0;
}

.recruit_link {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .recruit_link {
    flex-wrap: wrap;
  }
}
.recruit_link a {
  display: block;
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .recruit_link a {
    margin-bottom: 20px;
  }
}
.recruit_link a img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .recruit_link a img {
    width: 200px;
  }
}

/* SDGs */
.page_sdgs_concept {
  margin: 100px 0;
}
.page_sdgs_concept h2 {
  font-size: 48px;
  font-weight: normal;
  text-align: center;
  color: #3455AE;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page_sdgs_concept h2 {
    font-size: 24px;
  }
}
.page_sdgs_concept p {
  text-align: center;
}
.page_sdgs_concept .box {
  margin-top: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page_sdgs_concept .box {
    flex-direction: column-reverse;
    margin-top: 100px;
  }
}
.page_sdgs_concept .box p {
  margin-right: 70px;
  line-height: 2em;
  font-size: 18px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page_sdgs_concept .box p {
    margin-right: 0;
    font-size: 16px;
  }
}
.page_sdgs_concept .box img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page_sdgs_concept .box img {
    margin-bottom: 30px;
  }
}

.wide-wrap {
  width: 100%;
  background: #F5FBFF;
  padding: 80px 0;
}
.wide-wrap .sdgs_content {
  padding: 50px;
  margin-top: 80px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .wide-wrap .sdgs_content {
    box-sizing: border-box;
    padding: 40px;
  }
}
.wide-wrap .sdgs_content .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .wide-wrap .sdgs_content .title {
    display: block;
  }
}
.wide-wrap .sdgs_content .title h4 {
  font-size: 32px;
  height: 125;
  width: 285px;
  font-weight: normal;
  padding-top: 34px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
  display: block;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .wide-wrap .sdgs_content .title h4 {
    font-size: 26px;
    height: inherit;
    width: inherit;
    font-weight: normal;
    text-align: center;
    display: block;
    box-sizing: border-box;
    padding: 20px 20px;
    border: 1px solid #ccc;
    margin-bottom: 30px;
  }
}
.wide-wrap .sdgs_content .title div {
  display: flex;
}
@media screen and (max-width: 768px) {
  .wide-wrap .sdgs_content .title div {
    justify-content: space-between;
  }
}
.wide-wrap .sdgs_content .title div img {
  width: 100%;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .wide-wrap .sdgs_content .title div img {
    width: 33%;
    margin-left: 0;
  }
}
.wide-wrap .sdgs_content ul {
  list-style: disc;
}
.wide-wrap .sdgs_content h5 {
  padding: 5px 20px;
  margin-top: 50px;
  background: #3455AF;
  display: table;
  color: #fff;
  margin-bottom: 1em;
}

/* 施工事例個別用　DL */
.product_about {
  padding-top: 30px;
}

/* お問合せ */
.page_contact_concept {
  padding: 100px 0;
}
.page_contact_concept p {
  text-align: center;
  line-height: 1.8em;
}

.page_contact_wrap dl.form_box {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 100px;
  background: #e3f9e4;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page_contact_wrap dl.form_box {
    padding: 50px 30px;
    display: block;
  }
}
.page_contact_wrap dl.form_box dt {
  width: 30%;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .page_contact_wrap dl.form_box dt {
    margin-bottom: 0.5em;
    width: 100%;
  }
}
.page_contact_wrap dl.form_box dt p span {
  position: relative;
  font-size: 10px;
  color: #c33;
  top: -0.5em;
  left: 5px;
}
.page_contact_wrap dl.form_box dt p.caption {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .page_contact_wrap dl.form_box dt.last p {
    margin-bottom: 0.5em;
  }
}
.page_contact_wrap dl.form_box dd {
  width: 70%;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .page_contact_wrap dl.form_box dd {
    width: 100%;
  }
}
.page_contact_wrap dl.form_box dd input[type=text], .page_contact_wrap dl.form_box dd textarea, .page_contact_wrap dl.form_box dd select, .page_contact_wrap dl.form_box dd input {
  padding: 7px 20px;
  font-size: 16px;
  border: 0;
  width: 100%;
  color: #555;
}
.page_contact_wrap dl.form_box dd .select_box {
  padding: 7px 20px;
  font-size: 16px;
  border: 0;
  color: #555;
  width: auto;
}
.page_contact_wrap dl.form_box dd textarea {
  height: 10em;
  padding: 20px;
}
.page_contact_wrap dl.form_box .last {
  margin-bottom: 0;
}
.page_contact_wrap .privacy {
  margin-top: 100px;
  padding: 30px;
  background: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .page_contact_wrap .privacy {
    margin-top: 50px;
  }
}
.page_contact_wrap .privacy .privacy_text {
  height: 10em;
  overflow-y: scroll;
}
.page_contact_wrap .privacy .privacy_text h3 {
  margin-bottom: 2em;
  font-size: 16px;
}
.page_contact_wrap .privacy .privacy_text p {
  font-size: 14px;
}
.page_contact_wrap .privacy_check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .page_contact_wrap .privacy_check {
    margin: 40px auto;
    width: 80%;
  }
}
.page_contact_wrap .privacy_check p {
  margin-left: 1em;
  font-size: 15px;
}
.page_contact_wrap .wpcf7-list-item {
  margin-left: 0;
  display: flex;
}
.page_contact_wrap .wpcf7-list-item input {
  margin-right: 1em;
}
.page_contact_wrap .submit_button {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .page_contact_wrap .submit_button {
    margin-top: 50px;
  }
}
.page_contact_wrap .submit_button .input_button p {
  display: flex;
  justify-content: center;
  position: relative;
}
.page_contact_wrap .submit_button .input_button p::after {
  content: "";
  position: absolute;
  background-image: url(../image/link_arrow.svg);
  width: 7px;
  height: 13px;
  background-repeat: no-repeat;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: 0.3s;
}
.page_contact_wrap .submit_button .input_button p:hover::after {
  right: 20px;
}
.page_contact_wrap .submit_button .input_button p:hover {
  cursor: pointer;
  opacity: 0.9;
}
.page_contact_wrap .submit_button .input_button p input {
  padding: 7px 70px 7px 60px;
  border: 0;
  border-radius: 20px;
  background: #3455AF;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}
.page_contact_wrap .submit_button .input_button_return {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .page_contact_wrap .submit_button .input_button_return {
    margin-right: 15px;
  }
}
.page_contact_wrap .submit_button .input_button_return p {
  display: flex;
  justify-content: center;
  position: relative;
}
.page_contact_wrap .submit_button .input_button_return p::after {
  content: "";
  position: absolute;
  background-image: url(../image/link_arrow_black.svg);
  width: 7px;
  height: 13px;
  background-repeat: no-repeat;
  top: 5px;
  left: 30px;
  transform: rotate(180deg) translateY(-50%);
  transition: 0.3s;
}
.page_contact_wrap .submit_button .input_button_return p:hover::after {
  left: 20px;
}
.page_contact_wrap .submit_button .input_button_return p:hover {
  cursor: pointer;
  opacity: 0.9;
}
.page_contact_wrap .submit_button .input_button_return p input {
  padding: 7px 60px 7px 70px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}

/* contact-form-7 */
.wpcf7-spinner {
  display: none !important;
}

/* contact thanks */
.page_contact_thanks {
  text-align: center;
  line-height: 1.7em;
}
.page_contact_thanks h2 {
  font-size: 30px;
  color: #3455AE;
}
@media screen and (max-width: 768px) {
  .page_contact_thanks h2 {
    font-size: 20px;
  }
}
.page_contact_thanks p {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .page_contact_thanks p {
    width: 85%;
    font-size: 15px;
    margin: 0 auto 2em;
  }
}
.page_contact_thanks p a {
  border-bottom: 1px solid #ccc;
}

/* news single */
article.news {
  width: 80%;
  margin: 90px auto 0;
}
article.news .news_category_and_date {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
article.news .news_category_and_date .category {
  padding: 5px 20px;
  background: #3455AF;
  color: #fff;
  font-size: 14px;
  margin-right: 20px;
}
article.news .news_category_and_date .date {
  font-size: 14px;
}
article.news h2 {
  font-size: 30px;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  article.news h2 {
    font-size: 24px;
  }
}
article.news .news_content figcaption {
  display: none;
}
article.news .news_content p {
  margin: 1.5em 0;
}
article.news .news_content a {
  border-bottom: 1px solid #ccc;
}
article.news .return_page {
  padding: 7px 60px 7px 70px;
  border: 1px solid #ccc;
  border-radius: 20px;
  display: table;
  margin: 100px auto;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}
article.news .return_page::after {
  content: "";
  position: absolute;
  background-image: url(../image/link_arrow_black.svg);
  width: 7px;
  height: 13px;
  background-repeat: no-repeat;
  top: 3px;
  left: 30px;
  transform: rotate(180deg) translateY(-50%);
  transition: 0.3s;
}
article.news .return_page:hover::after {
  left: 20px;
}

article.product {
  width: 80%;
  margin: 90px auto 0;
}
article.product h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  article.product h2 {
    margin-bottom: 20px;
  }
}
article.product .category {
  margin-bottom: 50px;
}
article.product .category span, article.product .category a {
  padding: 5px 20px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  article.product .category span, article.product .category a {
    display: inline-block;
    margin-bottom: 10px;
  }
}
article.product .category a {
  border: 0;
}
article.product .product_content img {
  width: 100%;
}
article.product .product_content figcaption {
  display: none;
}
article.product .product_content p {
  margin: 1.5em 0;
}
article.product .product_award {
  text-align: center;
}
article.product .return_page {
  padding: 7px 60px 7px 70px;
  border: 1px solid #ccc;
  border-radius: 20px;
  display: table;
  margin: 100px auto;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
}
article.product .return_page::after {
  content: "";
  position: absolute;
  background-image: url(../image/link_arrow_black.svg);
  width: 7px;
  height: 13px;
  background-repeat: no-repeat;
  top: 3px;
  left: 30px;
  transform: rotate(180deg) translateY(-50%);
  transition: 0.3s;
}
article.product .return_page:hover::after {
  left: 20px;
}/*# sourceMappingURL=style.css.map */