@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
body {
  font-family: "Noto Sans JP", sans-serif !important;
  color: #000;
}

* {
  word-break: break-all;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

a:link,
a:active,
a:hover,
a:focus {
    outline: none!important;
    -moz-outline-style: none;
}

img {
  outline: none;
  border: 0;
}

body ul, body p {
  margin: 0;
  padding: 0;
}

body li {
  list-style: none;
}

#page {
  overflow: hidden;
}

.helvetica {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

.hidden {
  visibility: hidden;
}

.only-sm { display: none; }
@media only screen and (max-width: 540px) {
  .only-sm { display: block; }
}

.center {
  text-align: center;
}

a.reset, a.reset:hover, a.reset:visited {
  color: #000;
  text-decoration: none;
}

/* wp styles */
#secondary,
#comments,
.nav-previous,
.nav-next,
.post-categories,
.navigation.post-navigation {
  display: none;
}

a.hover_line_effect {
  position: relative;
}

a.hover_line_effect::after {
  display: inline-block;
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

a.hover_line_effect:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top;
  /*左から右に向かう*/
}

#page {
  padding-top: 120px;
}
@media only screen and (max-width: 1200px) {
  #page {
    padding-top: 90px;
  }
}

@media only screen and (max-width: 770px) {
  #page {
    padding-top: 40px;
  }
}
.empty_message {
  margin: 90px auto 30px;
  font-size: 18px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .empty_message {
    font-size: 15px;
  }
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: flex-end;
  padding-left: 2.5%;
}

@media only screen and (max-width: 1200px) {
  header {
    height: 90px;
    padding-left: 16px;
  }
}
@media only screen and (max-width: 770px) {
  header {
    height: 42px;
    align-items: center;
    padding: 0 16px;
    width: 100%;
  }
}

header .title {
  display: flex;
  align-items: end;
  margin: 0;
  font-weight: bold;
  line-height: 1;
  padding-bottom: 10px;
  height: 100%;
}

header .title h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
  display: block;
  font-size: 1em;
}

@media only screen and (max-width: 1200px) {
  header .title {
    padding-bottom: 6px;
  }
}
@media only screen and (max-width: 770px) {
  header .title {
    padding-bottom:4px;
  }
}

header .title .header_logo {
  width: 396px;
  height: auto;
  max-width: max-content;
}

@media only screen and (max-width: 1200px) {
  header .title .header_logo {
    width: 296px;
    max-width: 296px;
    height: auto;
  }
}
@media only screen and (max-width: 770px) {
  header .title .header_logo{
    max-width: 120px;
    height: auto;
    margin-top: 4px;
  }
}

header .title a {
  word-break: keep-all;
}

header .breadcrumbs {
  font-size: 20px;
  font-weight: normal;
  margin-left: 22px;
  margin-bottom: 5px;
  box-sizing: content-box;
  white-space: nowrap;
}
@media only screen and (max-width: 1200px) {
  header .breadcrumbs {
    margin-left: 12px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 770px) {
  header .breadcrumbs {
    margin-left: 8px;
    font-size: 12px;
    margin-right: auto;
    margin-bottom: 0px;
  }
}

header .nav {
  display: flex;
  justify-content: flex-end;
  width: 56%;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-left: auto;
}
@media only screen and (max-width: 1200px) {
  header .nav {
    font-size: 22px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 770px) {
  header .nav {
    display: none;
  }
}

header .nav li {
  cursor: pointer;
  margin-right: 28px;
}
@media only screen and (max-width: 770px) {
  header .nav li {
    margin-right: 16px;
  }
}

header .nav li a {
  word-break: keep-all;
}

header .nav li.contact {
  border: 2px solid #000;
  border-radius: 30px;
  padding: 0 22px;
  margin-right: 16px;
}
@media only screen and (min-width: 541px) and (max-width: 1024px) {
  header .nav li.contact {
    padding: 0 8px;
  }
}

header .drawer {
  display: none;
}
@media only screen and (max-width: 770px) {
  header .drawer {
    display: block;
  }
}

/*ハンバーガーアイコン*/
header .btn-burger {
  cursor: pointer;
  display: block;
  width: 44px;
  height: 32px;
  position: absolute;
  top: 4px;
  right: 7px;
}

/*ハンバーガーアイコンを作る三本線*/
header .icon, header .icon:before, header .icon:after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 3px;
  /*線の太さ*/
  width: 28px;
  /*線の長さ*/
  background-color: #444;
  border-radius: 2px;
  display: block;
  content: "";
  cursor: pointer;
  margin: auto;
}

/*三本線の間隔 */
header .icon:before {
  top: 10px;
  bottom: -9px; /* for safari*/
}

header .icon:after {
  top: -13px;
  bottom: 4px; /* for safari*/
}

/*チェックボックス非表示*/
header .nav-toggle {
  display: none;
}

/*アイコンをクリックしたら*/
header .nav-toggle:checked ~ .btn-burger .icon {
  background: transparent;
}

header .nav-toggle:checked ~ .btn-burger .icon:before {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
}

header .nav-toggle:checked ~ .btn-burger .icon:after {
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
}

header .icon,
header .icon:before,
header .icon:after {
  transition: all 0.8s;
}

header .nav-list a {
  display: block;
  text-decoration: none;
  color: #fff;
}

header .nav-list {
  list-style: none;
  display: none;
  margin: 0;
  padding-left: 20px;
}

header .nav-list li {
  margin: 0;
  padding: 10px;
}

#page .sp-menu {
  position: absolute;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
  position: fixed;
}

#page .sp-menu.open {
  display: block;
  background-color: #000;
  height: 100vh;
  width: 100%;
  padding: 16px;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 770px) {
  #page .sp-menu.open {
    opacity: 1;
    visibility: visible;
  }
}

#page .sp-menu.open a {
  color: #fff;
  display: block;
  font-size: 23px;
  padding: 5px 0;
}

/* footer */
footer {
  color: #fff;
}

@media only screen and (max-width: 540px) {
  footer .footer_image {
    height: 150px;
    width: 100%;
    background: url("/assets/images/common/footer_contact.png") no-repeat center center;
    background-size: cover;
  }
}

footer .footer_image img {
  display: block;
}
@media only screen and (max-width: 540px) {
  footer .footer_image img {
    display: none !important;
  }
}

footer .inner {
  background: #000;
  padding: 80px 0 52px;
  padding-top: 65px;
  display: flex;
  justify-content: space-evenly;
  position: relative;
}
@media only screen and (max-width: 540px) {
  footer .inner {
    display: block;
    padding: 30px 16px 52px;
    flex-wrap: wrap;
  }
}

footer .company {
  font-size: 42px;
  font-weight: bold;
}
@media only screen and (max-width: 960px) {
  footer .company {
    font-size: 36px;
  }
}
@media only screen and (max-width: 540px) {
  footer .company {
    font-size: 20px;
  }
}

footer .company span {
  display: block;
  font-size: 30px;
}
@media only screen and (max-width: 960px) {
  footer .company span {
    font-size: 22px;
  }
}
@media only screen and (max-width: 540px) {
  footer .company span {
    font-size: 17px;
  }
}

footer .address {
  font-weight: bold;
  margin-top: 16px;
  font-size: 28px;
}
@media only screen and (max-width: 960px) {
  footer .address {
    font-size: 22px;
  }
}
@media only screen and (max-width: 540px) {
  footer .address {
    font-size: 17px;
    margin-bottom: 14px;
  }
}

footer .footer_menu {
  font-weight: bold;
}

footer .footer_menu a {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 960px) {
  footer .footer_menu a {
    font-size: 25px;
  }
}
@media only screen and (max-width: 540px) {
  footer .footer_menu a {
    font-size: 19px;
  }
}

footer .footer_menu a:hover, footer .footer_menu a:visited {
  color: #fff;
  text-decoration: none;
}

footer .footer_menu a:hover:after {
  background: #fff;
}

footer .footer_menu li {
  cursor: pointer;
}

footer .copyright {
  font-size: 16px;
  color: #ccc;
  margin-top: 86px;
}
@media only screen and (max-width: 540px) {
  footer .copyright {
    position: absolute;
    bottom: 12px;
    font-size: 14px;
  }
}

footer .footer_icon {
  margin: 0;
  padding: 0;
  border: 0;
  background-color: unset;
  position: absolute;
  right: 86px;
  bottom: 46px;
  display: block;
  cursor: pointer;
}

footer .footer_icon img {
  max-width: 92px;
  width: 92px;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  footer .footer_icon {
    right: 10px;
    bottom: 30px;
  }
}
@media only screen and (max-width: 960px) {
  footer .footer_icon {
    width: 60px;
    right: 10px;
  }
  footer .footer_icon img {
    width: 60px;
    height: auto;
  }
}
@media only screen and (max-width: 540px) {
  footer .footer_icon {
    display: block;
    right: 8px;
    bottom: 34px;
  }
  footer .footer_icon img {
    width: 48px;
    height: auto;
  }
}

/* parts sub_title */
.sub_title {
  color: #9e9e9e;
  font-size: 16px;
  margin: 0;
  padding: 0;
  display: block;
  font-weight: normal;
}
@media only screen and (max-width: 770px) {
  .sub_title {
    font-size: 13px;
  }
}

.sub_title .head {
  font-size: 42px;
  line-height: 1.3;
  font-weight: bold;
  display: block;
  color: #000;
}
@media only screen and (max-width: 770px) {
  .sub_title .head {
    font-size: 32px;
  }
}

/* parts view_more */
.view_more {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 12px 0 12px;
  margin: 0 auto 0;
  width: 210px;
  height: 60px;
  font-size: 18px;
}
@media only screen and (max-width: 960px) {
  .view_more {
    width: 190px;
    height: 50px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 560px) {
  .view_more {
    width: 170px;
    height: 40px;
    font-size: 16px;
  }
}

/* parts single_cate_toplink */
.single_cate_toplink {
  margin: 80px 0 100px;
  font-size: 22px;
  font-weight: bold;
}

.single_cate_toplink a {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 560px) {
  .single_cate_toplink {
    font-size: 20px;
    margin: 40px 0 50px;
  }
}

.single_cate_toplink img {
  display: block;
  width: 22px;
  transform: scale(-1, 1);
  margin-right: 8px;
}
@media only screen and (max-width: 560px) {
  .single_cate_toplink img {
    width: 16px;
    margin-right: 6px;
  }
}

.single_cate_toplink span {
  display: block;
}


#page .view_more span {
  position: relative;
  margin: 0 20px 0 0;
}

#page .view_more span::after {
  position: absolute;
  content: "";
  border-top: 2px solid #000;
  width: 18px;
  height: 2px;
  top: 14px;
  right: -29px;
}

@media only screen and (max-width: 960px) {
  #page .view_more span::after {
    top: 13px;
  }
}
@media only screen and (max-width: 560px) {
  #page .view_more span::after {
    top: 12px;
    width: 13px;
    right: -23px;
  }
}
/* parts paging */
.pnavi {
  display: flex;
  justify-content: center;
  font-size: 22px;
}

.pnavi.has_content {
  margin-bottom: 100px;
}

.pnavi a, .pnavi a:hover, .pnavi a:visited {
  color: #000;
  text-decoration: none;
  margin: 0 10px;
}

.pnavi span.current {
  text-decoration: underline;
  margin: 0 10px;
}

/* page top */
.top .slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.top .slider-container.maintain_height {
  height: 100vh;
}

.top .wrapper .slick-dots {
  width: auto;
  position: absolute;
  bottom: 5%;
  right: 2%;
}

.top .wrapper .slick-disabled {
  display: none !important;
}



@media only screen and (max-width: 720px) {
  .top .wrapper .slick-dots li {
    margin: 0;
  }
}



.top .wrapper .slick-dots li button:before {
  color: #fff;
}

.top .wrapper .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

.top .wrapper .slick-slider {
  position: relative;
}

.top .wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 16px;
  z-index: 10;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .slick-arrow {
    width: 56px;
  }
}
@media only screen and (max-width: 560px) {
  .top .wrapper .slick-arrow {
    width: 40px;
    left: 6px;
    top: 50%;
    transform: translate(0, -50%);
  }
}

.top .wrapper .slick-arrow.next-arrow {
  left: auto;
  right: 16px;
  transform: translate(0, -50%) scale(-1, 1);
}

@media only screen and (max-width: 560px) {
  .top .wrapper .slick-arrow.next-arrow {
    right: 6px;
  }
}

.top .wrapper .slider-container {
  margin-bottom: 30px;
}
@media only screen and (max-width: 560px) {
  .top .wrapper .slider-container {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 720px) {
  .top .wrapper .slider-container .slick-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
  }
}

.top .wrapper .slider-container .message {
  position: absolute;
  top: 40%;
  left: 4%;
  transform: translate(0, -50%);
  white-space: nowrap;
}
@media only screen and (max-width: 1200px) {
  .top .wrapper .slider-container .message {
    transform: translate(0, -50%) scale(0.7);
    transform-origin: left bottom;
  }
}
@media only screen and (max-width: 770px) {
  .top .wrapper .slider-container .message {
    transform: translate(0, -50%) scale(0.5);
    transform-origin: left bottom;
  }
}

.top .wrapper .slider-container .message .l {
  font-size: 50px;
  font-weight: bold;
}

.top .wrapper .slider-container .message .m {
  font-size: 32px;
  font-weight: bold;
}

.top .wrapper .slider-container .message .cap {
  font-size: 18px;
  margin-top: -12px;
}

.top .wrapper .news {
  margin: 50px 0 100px;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .news {
    margin: 40px 0 66px;
  }
}
@media only screen and (max-width: 560px) {
  .top .wrapper .news {
    margin: 30px 0 50px 0;
  }
}

@media only screen and (max-width: 560px) {
  .top .wrapper .news .empty_message {
    font-size: 15px;
    margin: 50px 0 70px 0;
  }
}

.top .wrapper .news .slider {
  margin: 0 auto 50px;
}

.top .wrapper .news .slick-list {
  overflow: visible;
  box-sizing: content-box;
  padding-bottom: 30px !important;
}

@media only screen and (max-width: 560px) {
  .top .wrapper .news .slick-list {
    padding-bottom: 26px !important;
  }
}

.top .wrapper .news .slider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  width: 666px;
  height: 438px;
}
@media only screen and (max-width: 560px) {
  .top .wrapper .news .slider {
    width: 320px;
    height: auto;
  }
}

.top .wrapper .news .slider a {
  position: relative;
}

.top .wrapper .news .news_title {
  position: absolute;
  bottom: -28px;
  right: 0;
  background: #000;
  color: #fff;
  min-width: 300px;
  width: 80%;
  height: 60px;
  padding: 0 16px 0 38px;
  line-height: 1;
  font-size: 19px;
  font-weight: normal;
}
@media only screen and (max-width: 560px) {
  .top .wrapper .news .news_title {
    padding: 0 8px 0 30px;
    height: auto;
    bottom: -23px;
    min-width: 170px;
  }
}

.top .wrapper .news .news_title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 2px;
  background: #fff;
}

@media only screen and (max-width: 560px) {
  .top .wrapper .news .news_title:before {
    width: 20px;
  }
}
.top .wrapper .news .news_title h3 {
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media only screen and (max-width: 560px) {
  .top .wrapper .news .news_title h3 {
    font-size: 16px;
  }
}

.top .wrapper .news .slider .news_item img {
  height: auto;
  width: 100%;
  max-width: 666px;
  max-height: 438px;
}

.top .wrapper .about {
  background: #fafafa;
  padding-top: 50px;
  margin: 90px 55px;
}

@media only screen and (max-width: 560px) {
  .top .wrapper .about {
    margin: 0 0 55px;
    padding-top: 30px;
  }
}

.top .wrapper .about .about_image {
  padding-left: 16px;
}

@media only screen and (max-width: 720px) {
  .top .wrapper .about .about_image {
    padding-left: 0;
  }
}

@media only screen and (max-width: 560px) {
  .top .wrapper .about .about_image img {
    width: 100%;
  }
}

.top .wrapper .about p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  padding-right: 16px;
}

@media only screen and (max-width: 720px) {
  .top .wrapper .about p {
    padding: 0;
  }
}

@media only screen and (max-width: 560px) {
  .top .wrapper .about p {
    font-size: 16px;
  }
}

@media only screen and (min-width: 45em) {
  .top .wrapper .about .row {
    /* 720px */
    display: flex;
    align-items: center;
  }
}

.top #page .wrapper .about .view_more {
  margin: 20px 0 0;
}

@media only screen and (max-width: 560px) {
  .top #page .wrapper .about .view_more {
    margin: 30px 0 30px;
  }
}
.top .wrapper .about .about_ex_images {
  display: flex;
  justify-content: center;
  padding: 0 6px;
  margin-top: 50px;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .about .about_ex_images {
    display: block;
  }
}
@media only screen and (max-width: 560px) {
  .top .wrapper .about .about_ex_images {
    margin-top: 30px;
  }
}

.top .wrapper .about .about_ex_images img {
  width: 50%;
  box-sizing: border-box;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .about .about_ex_images img {
    width: 100%;
  }
}

.top .wrapper .about .about_ex_images img:first-child {
  margin-right: 2px;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .about .about_ex_images img:first-child {
    margin-right: 0;
  }
}

.top .wrapper .about .about_ex_images img:last-child {
  margin-left: 2px;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .about .about_ex_images img:last-child {
    margin-left: 0;
  }
}

.top .wrapper .work .sub_title {
  margin: 0 0 30px 98px;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .work .sub_title {
    margin: 0 0 30px 26px;
  }
}

.top .wrapper .work .work_images {
  margin-bottom: 100px;
}
@media only screen and (max-width: 540px) {
  .top .wrapper .work .work_images {
    margin-bottom: 40px;
  }
}

.top .wrapper .work .work_item_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 6px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .work .work_item_wrapper {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 540px) {
  .top .wrapper .work .work_item_wrapper {
    margin-bottom: 20px;
  }
}

.top .wrapper .work .works_title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 10px;
}
@media only screen and (max-width: 540px) {
  .top .wrapper .work .works_title {
    font-size: 20px;
  }
}

.top .wrapper .work .works_title span {
  font-size: 18px;
  color: #787878;
  font-weight: normal;
}
@media only screen and (max-width: 540px) {
  .top .wrapper .work .works_title span {
    font-size: 16px;
  }
}

.top .wrapper .work .work_images .empty_message {
  margin: 30px auto 60px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top .wrapper .work .work_images .work_item {
  width: 50%;
  box-sizing: border-box;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .work .work_images .work_item {
    width: 100%;
  }
}

.top .wrapper .work .work_images .work_item:nth-child(odd) {
  padding-right: 2px;
}

.top .wrapper .work .work_images .work_item:nth-child(even) {
  padding-left: 2px;
}
@media only screen and (max-width: 720px) {
  .top .wrapper .work .work_images .work_item:nth-child(odd),
  .top .wrapper .work .work_images .work_item:nth-child(even) {
    padding: 0 6px;
  }
}
@media only screen and (max-width: 560px) {
  .top .wrapper .work .work_images .work_item:nth-child(odd),
  .top .wrapper .work .work_images .work_item:nth-child(even) {
    padding: 0;
  }
}


.top .wrapper .work .work_images .work_item p {
  margin: 8px 0 28px;
  line-height: 1.7;
  height: 82px;
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media only screen and (max-width: 560px) {
  .top .wrapper .work .work_images .work_item p {
    font-size: 16px;
  }
}

.top .wrapper .work .view_more {
  margin-bottom: 50px;
}

/* page news */
body.news .grid .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 4px;
  width: 100%;
}
@media only screen and (max-width: 720px) {
  body.news .grid .row {
    display: block;
    margin: 0;
    padding: 0 4px;
  }
}

body.news .grid .row article {
  width: calc(33.333333% - 5.6px);
  /* 計算を使用して幅を設定し、右側に4pxのマージンを持たせる */
  box-sizing: border-box;
  /* コンテンツボックスに合わせてボーダーボックスを設定 */
  margin-right: 4px;
  /* 右側のマージンを追加 */
  margin-bottom: 50px;
  /* 下側のマージンを追加 */
}
@media only screen and (max-width: 720px) {
  body.news .grid .row article {
    width: 100%;
  }
}

body.news .grid .row article:nth-child(3n) {
  margin-right: 0;
}

body.news .grid .row article a:hover {
  color: #969696;
}

body.news .grid .row article h3 {
  margin: 0;
  padding: 16px 16px 7px;
  font-size: 28px;
}




body.news .grid .row article .cap {
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding: 0 16px;
  color: #000;
}

body.news .grid .row article img {
  width: 100%;
}

/* page about */
body.about .main {
  height: 560px;
  width: 100%;
  background: url("/assets/images/about/main.png") no-repeat center center;
  background-color: #030303;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  body.about .main {
    height: 308px;
  }
}

body.about .main .sub_title,
body.about .main .sub_title .head {
  color: #fff;
}

body.about .greeting {
  padding: 90px 0 100px;
  background-color: #fafafa;
}
@media only screen and (max-width: 770px) {
  body.about .greeting {
    padding: 80px 0 70px;
  }
}
@media only screen and (max-width: 540px) {
  body.about .greeting {
    padding: 60px 0 50px;
  }
}

body.about .greeting .about_text {
  margin-top: 46px;
  font-size: 24px;
  line-height: 1.8;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  body.about .greeting .about_text {
    font-size: 19px;
  }
}
@media only screen and (max-width: 770px) {
  body.about .greeting .about_text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 540px) {
  body.about .greeting .about_text {
    font-size: 16px;
    text-align: left;
    padding: 0 16px;
    line-height: 1.8;
  }
}

body.about .strength {
  padding: 90px 0 100px;
  background-color: #fff;
}
@media only screen and (max-width: 770px) {
  body.about .strength {
    padding: 66px 0 58px;
  }
}
@media only screen and (max-width: 540px) {
  body.about .strength {
    padding: 56px 0 46px;
  }
}

body.about .strength .sub_title {
  margin-bottom: 48px;
}

body.about .strength .strength_flexbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
@media only screen and (max-width: 540px) {
  body.about .strength .strength_flexbox {
    flex-direction: column;
    padding: 0 16px;
    margin-top: 30px;
  }
}

body.about .strength .strength_flexbox:nth-child(even) {
  flex-flow: row-reverse;
}
@media only screen and (max-width: 540px) {
  body.about .strength .strength_flexbox:nth-child(even) {
    flex-direction: column;
  }
}

body.about .strength .strength_flexbox .image {
  width: 50%;
}
@media only screen and (max-width: 540px) {
  body.about .strength .strength_flexbox .image {
    width: 100%;
  }
  body.about .strength .strength_flexbox .image img {
    width: 100%;
  }
}

body.about .strength .strength_flexbox .strength_texts {
  padding: 0 4%;
  width: 50%;
}
@media only screen and (max-width: 540px) {
  body.about .strength .strength_flexbox .strength_texts {
    width: 100%;
    padding: 0;
  }
}

body.about .strength .strength_flexbox .strength_title {
  font-size: 42px;
  padding: 0;
  margin: 0 0 43px;
}
@media only screen and (max-width: 1200px) {
  body.about .strength .strength_flexbox .strength_title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 770px) {
  body.about .strength .strength_flexbox .strength_title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 540px) {
  body.about .strength .strength_flexbox .strength_title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

body.about .strength .strength_flexbox .strength_title span.cap {
  font-size: 16px;
  color: #9e9e9e;
  display: block;
  font-weight: normal;
}
@media only screen and (max-width: 540px) {
  body.about .strength .strength_flexbox .strength_title span.cap {
    font-size: 14px;
    font-weight: normal;
  }
}

body.about .strength .strength_flexbox .strength_text {
  color: #000;
  font-size: 19px;
  line-height: 1.6;
}
@media only screen and (max-width: 1200px) {
  body.about .strength .strength_flexbox .strength_text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 770px) {
  body.about .strength .strength_flexbox .strength_text {
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.8;
  }
}

body.about .company_area {
  padding: 0 60px 0;
}
@media only screen and (max-width: 540px) {
  body.about .company_area {
    padding: 0 16px 0;
  }
}

body.about .company_area .company_lists {
  font-size: 20px;
  margin-top: 24px;
}
@media only screen and (max-width: 770px) {
  body.about .company_area .company_lists {
    font-size: 16px;
  }
}
@media only screen and (max-width: 540px) {
  body.about .company_area .company_lists {
    font-size: 15px;
  }
}

body.about .company_area .company_lists .list {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  min-height: 80px;
  padding: 0 20px;
  color: #000;
  line-height: 1.6;
  padding: 18px 0;
}
@media only screen and (max-width: 540px) {
  body.about .company_area .company_lists .list {
    min-height: 50px;
    padding: 12px 0;
  }
}

body.about .company_area .company_lists .list .list_title {
  width: 24%;
  min-width: 120px;
  white-space: nowrap;
}
@media only screen and (max-width: 540px) {
  body.about .company_area .company_lists .list .list_title {
    min-width: 90px;
  }
}

body.about .company_area .map {
  padding: 60px 0 120px;
}
@media only screen and (max-width: 540px) {
  body.about .company_area .map {
    padding: 30px 0 60px;
  }
}

@media only screen and (max-width: 540px) {
  body.about .company_area .map iframe {
    height: 340px;
  }
}

/* page privacy_policy */
body.privacy_policy .head {
  font-size: 72px;
}
@media only screen and (max-width: 770px) {
  body.privacy_policy .head {
    font-size: 58px;
  }
}
@media only screen and (max-width: 540px) {
  body.privacy_policy .head {
    font-size: 37px;
  }
}

body.privacy_policy .main {
  padding: 30px 0 33px;
}

body.privacy_policy .main_text {
  margin: 30px auto 0;
  width: 66%;
  font-size: 16px;
  color: #000;
  line-height: 1.8;
}
@media only screen and (max-width: 540px) {
  body.privacy_policy .main_text {
    width: 100%;
    padding: 0 16px;
    font-size: 15px;
  }
}

body.privacy_policy .list {
  padding: 0 10%;
}
@media only screen and (max-width: 540px) {
  body.privacy_policy .list {
    padding: 0 16px;
  }
}

body.privacy_policy dl dt {
  color: #000;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 770px) {
  body.privacy_policy dl dt {
    font-size: 20px;
  }
}
@media only screen and (max-width: 540px) {
  body.privacy_policy dl dt {
    font-size: 18px;
  }
}

body.privacy_policy dl dd {
  margin: 0 0 46px;
  font-weight: bold;
  line-height: 1.8;
  font-size: 16px;
}
@media only screen and (max-width: 540px) {
  body.privacy_policy dl dd {
    font-size: 14px;
  }
}

body.privacy_policy .mailto {
  border-bottom: 2px solid #ccc;
  padding-bottom: 2px;
  white-space: nowrap;
}

body.privacy_policy .address {
  margin: 12px 0 100px;
}
@media only screen and (max-width: 540px) {
  body.privacy_policy .address {
    margin: 10px 0 60px;
  }
}

/* page works */
body.work .works_wrap ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 6px;
}

@media only screen and (max-width: 540px) {
  body.work .works_wrap ul {
    padding: 0 6px;
  }
}

body.work .works_wrap .empty_message {
  padding: 90px 0;
}

body.work .works_wrap li:first-child {
  width: 100%;
}

body.work .works_wrap li figure {
  padding: 0;
  margin: 0;
}

body.work .works_wrap li {
  width: 48.55%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 540px) {
  body.work .works_wrap li {
    margin-bottom: 20px;
  }
}

body.work .works_wrap li img {
  width: 100%;
  height: auto;
}

body.work .works_wrap .works_title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 10px;
}
@media only screen and (max-width: 540px) {
  body.work .works_wrap .works_title {
    font-size: 20px;
  }
}

body.work .works_wrap .works_title span {
  font-size: 18px;
  color: #787878;
  margin-left: 2px;
}
@media only screen and (max-width: 540px) {
  body.work .works_wrap .works_title span {
    font-size: 16px;
    font-weight: normal;
  }
}

/* 404 not found */
.not_found_content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  font-size: 18px;
  text-align: center;
  line-height: 2;
  color: #000;
}

.not_found_content .num {
  font-size: 29px;
}

/* news more */
/* body.customize-support article {
  padding: 30px;
  font-size: 22px;
  padding: 0 10%;
}
@media only screen and (max-width: 540px) {
  body.customize-support article {
    padding: 0 6px;
    font-size: 17px;
  }
}

body.customize-support article img {
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  body.customize-support article img {
    width: 100%;
  }
} */

/* post works */
.entry-content.works {
  margin: 0;
  padding: 0 8%;
}
@media only screen and (max-width: 770px) {
  .entry-content.works  {
    padding: 0 16px;
  }
}


.entry-content.works figure {
  text-align: center;
}

.entry-content.works .content_page_title {
  font-weight: bold;
  font-size: 28px;
  margin: 24px 0 26px;
  padding: 0;
  padding-right: 20px;

}
@media only screen and (max-width: 770px) {
  .entry-content.works .content_page_title {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 26px;
    margin-bottom: 20px;
  }
}

.entry-content.works .content_page_title span {
  font-size: 25px;
  color: #787878;
  font-weight: normal;
}
@media only screen and (max-width: 770px) {
  .entry-content.works .content_page_title span {
    font-size: 16px;
  }
}

.entry-content.works p {
  font-size: 18px;
  margin: 16px 0;
  line-height: 1.7;
  color: #333;
}
@media only screen and (max-width: 770px) {
  .entry-content.works p {
    font-size: 18px;
    margin: 12px 0;
  }
}
@media only screen and (max-width: 540px) {
  .entry-content.works p {
    font-size: 16px;
  }
}

/* post news */
.entry-content.news {
  margin: 0;
  padding: 0 8%;
}

.entry-content.news h1 {
  color: #000;
}

@media only screen and (max-width: 540px) {
  .entry-content.news {
    padding: 16px;
  }
}

.entry-content.news p {
  color: #333;
  line-height: 1.7;
  font-size: 18px;
}

@media only screen and (max-width: 540px) {
  .entry-content.news p {
    font-size: 16px;
  }
}


.entry-content.news figure {
  text-align: center;
}