@charset "UTF-8";
/* フォント */
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,600,700,900&subset=japanese");
/* font-family: 'Noto Serif JP', serif; */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&subset=japanese");
/* font-family: 'Noto Sans JP', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Vollkorn&display=swap");
/* font-family: 'Vollkorn', sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap");
a:visited {
  color: unset;
}

body {
  font-size: 16px;
  font-family: "ryo-gothic-plusn", sans-serif;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  body {
    letter-spacing: 0.02em;
  }
}

body.page {
  margin-bottom: 0;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.post,
.page {
  margin: 0 !important;
}

.vertical-ja {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.vertical-en {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.futura {
  font-family: futura-pt, sans-serif;
}

@media screen and (max-width: 1111px) {
  .container {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.button-1 {
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: relative;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .button-1 {
    height: 35px;
    font-size: 12px;
  }
}
.button-1::after {
  content: "＞";
  position: absolute;
  right: 12px;
  transform: scale(0.5, 1.5);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .button-1::after {
    right: 6px;
    transform: scale(0.7, 1.5);
    top: 7px;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
}
.wp-pagenavi::before {
  content: "";
  width: 120px;
}
.wp-pagenavi::after {
  content: "";
  width: 120px;
}
.wp-pagenavi > * {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 14px;
  border: 1px solid #b60005;
  margin: 0 8px !important;
  color: #fff;
  background: #b60005;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi > * {
    width: 30px;
    height: 30px;
    margin: 0 4px !important;
  }
}
.wp-pagenavi > a {
  color: #000;
  background: #fff;
  border: 1px solid #000;
}
.wp-pagenavi > a.nextpostslink, .wp-pagenavi > a.previouspostslink {
  border: none;
  font-family: serif;
  position: relative;
  transform: scale(1, 2);
  font-weight: bold;
  background: unset;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi > a.nextpostslink, .wp-pagenavi > a.previouspostslink {
    width: 24px;
  }
}
.page-navi {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .page-navi {
    font-size: 12px;
  }
}
.page-navi .list {
  width: 33%;
}
.page-navi .list img {
  display: inline-block;
  margin-right: 10px;
}
.page-navi .prev {
  width: 33%;
}
.page-navi .prev a {
  position: relative;
  padding-left: 2em;
}
.page-navi .prev a::before {
  content: "<";
  font-size: 14px;
  line-height: 1;
  transform: scale(1, 2);
  position: absolute;
  left: 8px;
  top: -1px;
  font-weight: normal;
}
.page-navi .next {
  width: 33%;
}
.page-navi .next a {
  position: relative;
  padding-right: 2em;
}
.page-navi .next a::after {
  content: ">";
  font-size: 14px;
  line-height: 1;
  transform: scale(1, 2);
  position: absolute;
  right: 8px;
  top: -1px;
  font-weight: normal;
}

section.contact.common {
  background: #eee;
  padding-top: 95px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  section.contact.common {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}
section.contact.common .lead-1 {
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  section.contact.common .lead-1 {
    font-size: 18px;
  }
}
section.contact.common .lead-1 span {
  font-weight: 100;
  margin: 0 -0.5em;
}
section.contact.common h2 {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  section.contact.common h2 {
    font-size: 12px;
    margin-bottom: 18px;
  }
}
section.contact.common .lead-2 {
  font-size: 14px;
  line-height: calc(24 / 14);
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  section.contact.common .lead-2 {
    font-size: 12px;
    line-height: calc(40 / 24);
    margin-bottom: 18px;
  }
}
section.contact.common .box-1 {
  display: flex;
  flex-wrap: wrap;
}
section.contact.common .box-1 .box-1-1 {
  width: 50%;
  height: 120px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  section.contact.common .box-1 .box-1-1 {
    width: 100%;
    height: 75px;
    margin-bottom: 9px;
  }
}
section.contact.common .box-1 .box-1-1 .lead-3 {
  font-size: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}
section.contact.common .box-1 .box-1-1 .lead-3 img {
  margin-right: 6px;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  section.contact.common .box-1 .box-1-1 .lead-3 img {
    width: 25px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  section.contact.common .box-1 .box-1-1 .lead-3 {
    font-size: 27px;
  }
}
section.contact.common .box-1 .box-1-1 .lead-4 {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  section.contact.common .box-1 .box-1-1 .lead-4 {
    font-size: 12px;
  }
}
section.contact.common .box-1 .box-1-2 {
  width: 50%;
  height: 120px;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  section.contact.common .box-1 .box-1-2 {
    width: 100%;
    height: 75px;
  }
}
section.contact.common .box-1 .box-1-2 a {
  width: 100%;
}
section.contact.common .box-1 .box-1-2 a .lead-5 {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  position: relative;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  section.contact.common .box-1 .box-1-2 a .lead-5 {
    font-size: 14px;
    line-height: calc(42 / 28);
  }
}
section.contact.common .box-1 .box-1-2 a .lead-5::after {
  content: "＞";
  position: absolute;
  right: 30px;
  transform: scale(0.6, 1.34);
  color: #fff;
}
section.contact.common .box-1 .box-1-2 a .lead-5 img {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  section.contact.common .box-1 .box-1-2 a .lead-5 img {
    width: 25px;
    margin-top: -5px;
  }
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 140px;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
}
.modal__content .modal-box-1 {
  width: 310px;
  background: url("../images/modal-header.jpg") no-repeat center/cover;
  padding: 38px;
  color: #fff;
}
.modal__content .modal-box-1 p {
  font-size: 32px;
  position: relative;
  margin-bottom: 4px;
}
.modal__content .modal-box-1 p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 50px;
  border-top: 2px solid #fff;
}
.modal__content .modal-box-1 h3 {
  font-size: 14px;
}
.modal__content .modal-box-2 {
  width: calc(100% - 310px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 35px 37px 10px;
}
.modal__content .modal-box-2 p {
  font-size: 24px;
  line-height: 1;
}
.modal__content .modal-box-2 h4 {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: bold;
}
.modal__content .modal-box-2 .modal-box-2-1 {
  width: 282px;
  position: relative;
  border-bottom: 1px solid;
  padding-bottom: 5px;
  margin-bottom: 25px;
}
.modal__content .modal-box-2 .modal-box-2-1 a {
  display: block;
  position: absolute;
  right: 0;
  top: 2px;
}

header.site-header {
  width: 100%;
  z-index: 9999;
  position: absolute;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  header.site-header {
    margin-top: 0;
  }
}
header.site-header > .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  header.site-header > .container {
    display: none;
  }
}
header.site-header > .container-sp {
  height: 55px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header.site-header > .container-sp {
    display: none;
  }
}
header.site-header > .container-sp .site-branding-sp {
  padding-left: 12px;
}
header.site-header > .container-sp .site-branding-sp img {
  width: 166px;
}
header.site-header .main-navigation {
  width: calc(1000px - 236px);
}
header.site-header .main-navigation ul#primary-menu {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
}
header.site-header .main-navigation ul#primary-menu > .menu-item {
  margin-left: 30px;
}
header.site-header .main-navigation ul#primary-menu > .menu-item > a:hover {
  color: inherit;
}
header.site-header nav.drawer-nav {
  background: #b60005;
}

.drawer-toggle.open {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 65px;
  height: 55px;
  background: #b60005;
}
@media screen and (min-width: 768px) {
  .drawer-toggle.open {
    display: none;
  }
}
.drawer-toggle.open i {
  font-size: 30px;
  padding: 17px 0;
}

/* モバイルメニュー */
.drawer--left nav.drawer-nav {
  left: -90vw;
  z-index: 100;
}

nav.drawer-nav {
  padding: 10px;
  width: 90vw;
  max-width: 320px;
}
nav.drawer-nav a.close-button {
  position: absolute;
  right: -6px;
}
nav.drawer-nav .drawer-menu {
  padding-top: 20px;
  position: relative;
}
nav.drawer-nav .drawer-menu .logo {
  margin-bottom: 18px;
}
nav.drawer-nav .drawer-menu .close-button {
  width: 31px;
  font-size: 10px;
  position: absolute;
  right: 1px;
  top: 5px;
}
nav.drawer-nav .drawer-menu .close-button img {
  width: 30px;
}
nav.drawer-nav .drawer-menu .drawer-toggle {
  top: 0;
  right: 0px;
  text-align: center;
  color: #fff;
}
nav.drawer-nav .drawer-menu .drawer-toggle i {
  padding: 0;
  color: #fff;
}
nav.drawer-nav .drawer-menu ul#mobile-menu {
  list-style: none;
  padding: 0;
}
nav.drawer-nav .drawer-menu ul#mobile-menu > li > a {
  display: block;
  background: #fff;
  font-size: 13px;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 10px;
  position: relative;
  color: #000 !important;
}
nav.drawer-nav .drawer-menu ul#mobile-menu > li a {
  color: #000;
}
nav.drawer-nav .drawer-menu ul#mobile-menu > li ul.sub-menu {
  padding: 0px 0px 10px 0px;
  list-style: none;
}
nav.drawer-nav .drawer-menu ul#mobile-menu > li ul.sub-menu > li {
  border-bottom: 1px solid #b60005;
  margin-bottom: 12px;
}
nav.drawer-nav .drawer-menu ul#mobile-menu > li ul.sub-menu > li > a {
  font-size: 13px;
  color: #fff !important;
  padding-left: 13px;
  margin-top: 20px;
  display: block;
  position: relative;
}
nav.drawer-nav .drawer-menu ul#mobile-menu > li ul.sub-menu > li > a::after {
  position: absolute;
  content: "";
  width: 11px;
  height: 8px;
  right: 8px;
  top: 8px;
}

.sp-nav {
  display: flex;
  flex-wrap: wrap;
  height: 50px;
  position: sticky;
  bottom: 0;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}
.sp-nav a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-nav a img {
  height: 29px;
  width: auto;
}
.sp-nav a.tel {
  width: 50%;
  background: #10070e;
}
.sp-nav a.contact {
  width: 50%;
  background: #b60005;
}

body.page-service .site-branding,
body.page-message .site-branding,
body.page-company .site-branding,
body.page-recruit .site-branding,
body.page-contact .site-branding,
body.page-contact-success .site-branding,
body.page-privacy-policy .site-branding,
body.post-type-archive-news .site-branding,
body.post-type-archive-csr .site-branding,
body.single-news .site-branding,
body.single-csr .site-branding {
  width: 300px;
  height: 100px;
  background: #b60005;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: -30px;
}
body.page-service main.site-main,
body.page-message main.site-main,
body.page-company main.site-main,
body.page-recruit main.site-main,
body.page-contact main.site-main,
body.page-contact-success main.site-main,
body.page-privacy-policy main.site-main,
body.post-type-archive-news main.site-main,
body.post-type-archive-csr main.site-main,
body.single-news main.site-main,
body.single-csr main.site-main {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  body.page-service main.site-main,
body.page-message main.site-main,
body.page-company main.site-main,
body.page-recruit main.site-main,
body.page-contact main.site-main,
body.page-contact-success main.site-main,
body.page-privacy-policy main.site-main,
body.post-type-archive-news main.site-main,
body.post-type-archive-csr main.site-main,
body.single-news main.site-main,
body.single-csr main.site-main {
    padding-top: 55px;
  }
}
body.page-service header.site-header .main-navigation,
body.page-message header.site-header .main-navigation,
body.page-company header.site-header .main-navigation,
body.page-recruit header.site-header .main-navigation,
body.page-contact header.site-header .main-navigation,
body.page-contact-success header.site-header .main-navigation,
body.page-privacy-policy header.site-header .main-navigation,
body.post-type-archive-news header.site-header .main-navigation,
body.post-type-archive-csr header.site-header .main-navigation,
body.single-news header.site-header .main-navigation,
body.single-csr header.site-header .main-navigation {
  width: 100%;
}
body.page-service header.site-header ul#primary-menu,
body.page-message header.site-header ul#primary-menu,
body.page-company header.site-header ul#primary-menu,
body.page-recruit header.site-header ul#primary-menu,
body.page-contact header.site-header ul#primary-menu,
body.page-contact-success header.site-header ul#primary-menu,
body.page-privacy-policy header.site-header ul#primary-menu,
body.post-type-archive-news header.site-header ul#primary-menu,
body.post-type-archive-csr header.site-header ul#primary-menu,
body.single-news header.site-header ul#primary-menu,
body.single-csr header.site-header ul#primary-menu {
  color: #000;
}

.box-header-contact {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 310px;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .box-header-contact {
    display: none;
  }
}
.box-header-contact .box-a {
  width: 230px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.box-header-contact .box-a .lead-a {
  font-size: 13px;
}
.box-header-contact .box-a .lead-b {
  font-size: 27px;
  line-height: 1;
}
.box-header-contact .box-a .lead-b img {
  display: inline-block;
  vertical-align: 0px;
  margin-right: 4px;
}
.box-header-contact a {
  display: flex;
}
.box-header-contact .box-b {
  width: 80px;
  background: #000;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 9px;
}
.box-header-contact .box-b img {
  margin-bottom: 10px;
}
.box-header-contact .box-b .lead-c {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  footer.site-footer {
    position: relative;
  }
}
footer.site-footer .box-1 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer.site-footer .box-1 {
    padding-bottom: 35px;
  }
}
footer.site-footer .box-1 > * {
  display: flex;
  flex-wrap: wrap;
}
footer.site-footer .box-1 .box-1-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  footer.site-footer .box-1 .box-1-1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
footer.site-footer .box-1 .box-1-1 .logo {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  footer.site-footer .box-1 .box-1-1 .logo {
    width: 210px;
  }
}
footer.site-footer .box-1 .box-1-1 .lead-3 {
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  footer.site-footer .box-1 .box-1-1 .lead-3 {
    font-size: 12px;
    display: inline-block;
  }
}
footer.site-footer .box-1 .box-1-2 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  footer.site-footer .box-1 .box-1-2 {
    display: none;
  }
}
footer.site-footer .box-1 .box-1-2 .box-1-2-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 28px;
}
footer.site-footer .box-1 .box-1-2 .box-1-2-1 ul {
  font-size: 14px;
  margin-right: 46px;
  line-height: calc(24 / 14);
}
footer.site-footer .box-1 .box-1-2 .box-1-2-1 ul:last-of-type {
  margin-right: 0;
}
footer.site-footer .box-1 .box-1-2 .box-1-2-1 ul li.child a {
  position: relative;
  padding-left: 1.3em;
  color: #fff !important;
}
footer.site-footer .box-1 .box-1-2 .box-1-2-1 ul li.child a::before {
  font-size: 13px;
  position: absolute;
  left: 0;
  top: -3px;
  content: "＞";
  margin-right: 6px;
  transform: scale(0.5, 1.2);
}
footer.site-footer .box-1 .box-1-2 .box-1-2-1 ul li a {
  color: #fff !important;
}
footer.site-footer .box-1 .box-1-2 .box-1-2-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer.site-footer .box-1 .box-1-2 .box-1-2-2 ul {
  font-size: 14px;
  line-height: calc(24 / 14);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
footer.site-footer .box-1 .box-1-2 .box-1-2-2 ul li {
  margin-right: 42px;
}
footer.site-footer .box-1 .box-1-2 .box-1-2-2 ul li a {
  position: relative;
  padding-left: 1.1em;
  color: #fff !important;
}
footer.site-footer .box-1 .box-1-2 .box-1-2-2 ul li a::before {
  content: "|";
  position: absolute;
  left: 2px;
  top: -5px;
}
footer.site-footer .box-2 {
  position: relative;
}
@media screen and (max-width: 767px) {
  footer.site-footer .box-2 {
    position: unset;
  }
}
footer.site-footer .box-2 .box-2-1 {
  font-size: 12px;
  display: flex;
  align-items: center;
  height: 40px;
}
@media screen and (max-width: 767px) {
  footer.site-footer .box-2 .box-2-1 {
    font-size: 10px;
    letter-spacing: 0;
    text-align: center;
    height: 45px;
  }
}
footer.site-footer .box-2 .box-2-2 a {
  background: #b60005;
  height: 40px;
  width: 310px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  footer.site-footer .box-2 .box-2-2 a {
    right: calc((100% - 310px) / 2);
    height: 36px;
  }
}

body.home .drawer-toggle.open {
  background: none !important;
}
body.home .menu-item a {
  color: #fff !important;
}
body.home .menu-item a:hover {
  color: #fff;
}
body.home section.header {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.home section.header {
    height: 450px;
    position: relative;
  }
}
body.home section.header .box-scroll {
  position: absolute;
  bottom: 30px;
  z-index: 3;
}
body.home section.header .top-overray {
  background: url("../images/overray15.png") no-repeat center/cover;
  z-index: 1;
  width: 100%;
  height: 100%;
}
body.home section.header .mutsumi-logo {
  position: absolute;
  width: 305px;
  z-index: 2;
  top: calc(50% + 11px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body.home section.header .mutsumi-logo .mutsumi-heading {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
}
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-logo {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-corporate {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-01,
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-02,
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-03,
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-04,
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-05,
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-06,
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-07,
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-08,
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-title-09 {
  opacity: 1;
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-line {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
body.home section.header .mutsumi-logo .mutsumi-heading.is-loaded .mutsumi-heading-tagline {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
body.home section.header .mutsumi-logo .mutsumi-heading-logo {
  opacity: 0;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s;
  transition: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s;
  line-height: 1;
  margin-bottom: 15px;
}
body.home section.header .mutsumi-logo .mutsumi-heading-logo .icon-logo {
  display: inline-block;
  background-image: url("../images/logo-header.png?ver=1.0");
  background-repeat: no-repeat;
  background-position: 0px 0px;
  width: 41px;
  height: 36px;
}
body.home section.header .mutsumi-logo .mutsumi-heading-corporate {
  opacity: 0;
  margin-top: 6px;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s;
  transition: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s;
}
body.home section.header .mutsumi-logo .mutsumi-heading-title {
  position: relative;
  margin-top: 14px;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
body.home section.header .mutsumi-logo .mutsumi-heading-line {
  opacity: 0;
  width: 20px;
  height: 1px;
  background: #ffffff;
  margin: auto;
  display: block;
  margin-top: 30px;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s;
  transition: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.8s;
}
body.home section.header .mutsumi-logo .mutsumi-heading-tagline {
  color: #fff;
  display: inline-block;
  opacity: 0;
  margin-top: 8px;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s;
  transition: 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) 1.2s;
}
body.home section.header .mutsumi-logo .mutsumi-heading-tagline:before,
body.home section.header .mutsumi-logo .mutsumi-heading-tagline:after {
  position: absolute;
  content: " ";
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  top: 12px;
  margin: auto;
}
body.home section.header .mutsumi-logo .mutsumi-heading-tagline:before {
  left: -30px;
}
body.home section.header .mutsumi-logo .mutsumi-heading-tagline:after {
  right: -30px;
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-01,
body.home section.header .mutsumi-logo .mutsumi-heading-title-02,
body.home section.header .mutsumi-logo .mutsumi-heading-title-03,
body.home section.header .mutsumi-logo .mutsumi-heading-title-04,
body.home section.header .mutsumi-logo .mutsumi-heading-title-05,
body.home section.header .mutsumi-logo .mutsumi-heading-title-06,
body.home section.header .mutsumi-logo .mutsumi-heading-title-07 {
  display: block;
  float: left;
  opacity: 0;
  -webkit-transition: 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: 1.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-01,
body.home section.header .mutsumi-logo .mutsumi-heading-title-07 {
  -webkit-transition: 1.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0s;
  transition: 1.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0s;
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-02,
body.home section.header .mutsumi-logo .mutsumi-heading-title-06 {
  -webkit-transition: 1.78s cubic-bezier(0.22, 0.61, 0.36, 1) 0.03s;
  transition: 1.78s cubic-bezier(0.22, 0.61, 0.36, 1) 0.03s;
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-03,
body.home section.header .mutsumi-logo .mutsumi-heading-title-05 {
  -webkit-transition: 1.69s cubic-bezier(0.22, 0.61, 0.36, 1) 0.09s;
  transition: 1.69s cubic-bezier(0.22, 0.61, 0.36, 1) 0.09s;
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-04 {
  -webkit-transition: 1.63s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s;
  transition: 1.63s cubic-bezier(0.22, 0.61, 0.36, 1) 0.18s;
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-01 {
  -webkit-transform: translateX(34px);
  -ms-transform: translateX(34px);
  transform: translateX(34px);
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-02 {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-03 {
  -webkit-transform: translateX(14px);
  -ms-transform: translateX(14px);
  transform: translateX(14px);
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-04 {
  -webkit-transform: translateX(4px);
  -ms-transform: translateX(4px);
  transform: translateX(4px);
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-05 {
  -webkit-transform: translateX(-6px);
  -ms-transform: translateX(-6px);
  transform: translateX(-6px);
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-06 {
  -webkit-transform: translateX(-16px);
  -ms-transform: translateX(-16px);
  transform: translateX(-16px);
}
body.home section.header .mutsumi-logo .mutsumi-heading-title-07 {
  -webkit-transform: translateX(-26px);
  -ms-transform: translateX(-26px);
  transform: translateX(-26px);
}
body.home section.header .mutsumi-logo .text-header {
  margin: 0 4.5px;
  text-indent: -200vw;
}
body.home section.header .mutsumi-logo .text-header.text-mutsumi-01 {
  display: inline-block;
  background-image: url("../images/text-m.png");
  background-repeat: no-repeat;
  width: 48px;
  height: 40px;
}
body.home section.header .mutsumi-logo .text-header.text-mutsumi-02 {
  display: inline-block;
  background-image: url("../images/text-u.png");
  background-repeat: no-repeat;
  width: 36px;
  height: 41px;
}
body.home section.header .mutsumi-logo .text-header.text-mutsumi-03 {
  display: inline-block;
  background-image: url("../images/text-t.png");
  background-repeat: no-repeat;
  width: 27px;
  height: 40px;
}
body.home section.header .mutsumi-logo .text-header.text-mutsumi-04 {
  display: inline-block;
  background-image: url("../images/text-s.png");
  background-repeat: no-repeat;
  width: 30px;
  height: 42px;
}
body.home section.header .mutsumi-logo .text-header.text-mutsumi-05 {
  display: inline-block;
  background-image: url("../images/text-u.png");
  background-repeat: no-repeat;
  width: 36px;
  height: 41px;
}
body.home section.header .mutsumi-logo .text-header.text-mutsumi-06 {
  display: inline-block;
  background-image: url("../images/text-m.png");
  background-repeat: no-repeat;
  width: 48px;
  height: 40px;
}
body.home section.header .mutsumi-logo .text-header.text-mutsumi-07 {
  display: inline-block;
  background-image: url("../images/text-i.png");
  background-repeat: no-repeat;
  width: 14px;
  height: 40px;
}
body.home section.header .top-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
body.home section.header .top-slide .slick-list {
  height: 100%;
}
body.home section.header .top-slide .slick-track {
  height: 100%;
}
body.home section.header .top-slide .slick-slide * {
  height: 100%;
  background-position: center;
  background-size: cover;
}
body.home section.header .top-slide .slide1 {
  background-image: url("../images/slide-1.jpg?ver=1.2");
}
body.home section.header .top-slide .slide2 {
  background-image: url("../images/slide-2.jpg?ver=1.2");
}
body.home section.header .top-slide .slide3 {
  background-image: url("../images/slide-3.jpg?ver=1.2");
}
body.home section.header .top-slide .slide4 {
  background-image: url("../images/slide-4.jpg?ver=1.2");
}
body.home section.header .top-slide .slide5 {
  background-image: url("../images/slide-5.jpg?ver=1.2");
}
body.home section.header .top-slide .slide6 {
  background-image: url("../images/slide-6.jpg?ver=1.2");
}
body.home section.header .top-slide .slide7 {
  background-image: url("../images/slide-7.jpg?ver=1.2");
}
body.home section.header .top-slide .slide8 {
  background-image: url("../images/slide-8.jpg?ver=1.1");
}
body.home section.header .top-slide .slide9 {
  background-image: url("../images/slide-9.jpg?ver=1.1");
}
body.home section.header .top-slide .slide10 {
  background-image: url("../images/slide-10.jpg?ver=1.1");
}
body.home section.header .top-slide .slick-active {
  -webkit-animation-name: cool-effect;
  -moz-animation-name: cool-effect;
  animation-name: cool-effect;
  -webkit-animation-duration: 8s;
  -moz-animation-duration: 8s;
  animation-duration: 8s;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: alternate;
  -moz-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-transform-origin: 50% 50% 0;
  -moz-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
}
body.home section.service {
  margin: 100px 50px;
  background: url("../images/home-2.jpg") no-repeat center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home section.service {
    background: url("../images/home-sp-2.jpg") no-repeat center/cover;
    margin: 35px 15px 25px;
  }
}
body.home section.service .slide-animation {
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.home section.service .slide-animation div {
  position: absolute;
  width: 25%;
  height: 100%;
  display: block;
  background: #f1f1f1;
}
body.home section.service .slide-animation div:nth-of-type(1) {
  right: 0%;
}
body.home section.service .slide-animation div:nth-of-type(2) {
  right: 25%;
}
body.home section.service .slide-animation div:nth-of-type(3) {
  right: 50%;
}
body.home section.service .slide-animation div:nth-of-type(4) {
  right: 75%;
}
body.home section.service .slide-animation div.go:nth-of-type(1) {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
  transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
}
body.home section.service .slide-animation div.go:nth-of-type(2) {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.1s;
  transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.1s;
}
body.home section.service .slide-animation div.go:nth-of-type(3) {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.2s;
  transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.2s;
}
body.home section.service .slide-animation div.go:nth-of-type(4) {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.3s;
  transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.3s;
}
body.home section.service .box-1 {
  padding: 50px 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home section.service .box-1 {
    height: 225px;
  }
}
body.home section.service .box-1 .box-1-1 {
  background: url("../images/home-3.svg") no-repeat center/contain;
  width: 333px;
  height: 450px;
  padding: 45px;
}
@media screen and (max-width: 767px) {
  body.home section.service .box-1 .box-1-1 {
    display: none;
  }
}
body.home section.service .box-1 .box-1-1 h2 {
  font-size: 24px;
}
body.home section.service .box-1 .box-1-1 .lead-2 {
  font-size: 16px;
  color: #b60005;
  margin-bottom: 37px;
  display: inline-block;
  position: relative;
}
body.home section.service .box-1 .box-1-1 .lead-2::after {
  content: "ー";
  position: absolute;
  right: -2.5em;
  transform: scale(1.5, 0.3);
}
body.home section.service .box-1 .box-1-1 .lead-3 {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 52px;
  letter-spacing: 0.1em;
}
body.home section.service .box-1 .box-1-1 .button-1 {
  color: #000;
  border: 1px solid #000;
}
body.home section.service .box-1 .box-1-2 {
  width: 90px;
  height: 300px;
  position: absolute;
  right: 70px;
  top: 0;
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  padding-top: 1em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.home section.service .box-1 .box-1-2 {
    width: 60px;
    height: 190px;
    right: unset;
    left: 16px;
    padding-top: 0.5em;
  }
}
body.home section.service .box-1 .box-1-2::after {
  z-index: 1;
  top: 0;
  right: 0;
  position: absolute;
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
body.home section.service .box-1 .box-1-2.go::after {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.2s;
  transition: 1s cubic-bezier(0.65, 0.05, 0.36, 1) 0.2s;
}
body.home section.service .box-1 .box-1-2 .text-1 {
  font-size: 28px;
  letter-spacing: 0.23em;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  body.home section.service .box-1 .box-1-2 .text-1 {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
body.home section.service .box-1 .box-1-2 .text-2 {
  font-size: 14px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  body.home section.service .box-1 .box-1-2 .text-2 {
    font-size: 10px;
    letter-spacing: 0;
  }
}
body.home section.service .box-1 .box-1-2 .text-2::after {
  content: "ー";
  margin-top: 1em;
  transform: scale(1.5, 0.3);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  body.home section.service .box-1 .box-1-2 .text-2::after {
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  body.home section.service-2 .box-2 {
    display: none;
  }
}
body.home section.service-2 .box-2 .box-1-1 h2 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  body.home section.service-2 .box-2 .box-1-1 h2 {
    font-size: 16px;
    line-height: 1;
  }
}
body.home section.service-2 .box-2 .box-1-1 .lead-2 {
  font-size: 16px;
  color: #b60005;
  margin-bottom: 37px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home section.service-2 .box-2 .box-1-1 .lead-2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
body.home section.service-2 .box-2 .box-1-1 .lead-2::after {
  content: "ー";
  position: absolute;
  right: -2.5em;
  transform: scale(1.5, 0.3);
}
@media screen and (max-width: 767px) {
  body.home section.service-2 .box-2 .box-1-1 .lead-2::after {
    right: -1.5em;
    transform: scale(1, 0.3);
  }
}
body.home section.service-2 .box-2 .box-1-1 .lead-3 {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 52px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  body.home section.service-2 .box-2 .box-1-1 .lead-3 {
    font-size: 12px;
    line-height: calc(40 / 24);
    margin-bottom: 24px;
  }
}
body.home section.service-2 .box-2 .box-1-1 .button-1 {
  color: #000;
  border: 1px solid #000;
  margin: 0 auto;
}
body.home section.works {
  padding-top: 40px;
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  body.home section.works {
    padding-top: 50px;
    padding-bottom: 85px;
  }
}
body.home section.works .box-1 h2 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-1 h2 {
    font-size: 16px;
    line-height: 1;
  }
}
body.home section.works .box-1 .lead-2 {
  font-size: 16px;
  color: #b60005;
  margin-bottom: 44px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-1 .lead-2 {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
body.home section.works .box-1 .lead-2::after {
  content: "ー";
  position: absolute;
  right: -2.5em;
  transform: scale(1.5, 0.3);
}
@media screen and (max-width: 767px) {
  body.home section.works .box-1 .lead-2::after {
    right: -1.5em;
    transform: scale(1, 0.3);
  }
}
body.home section.works .box-2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -4px;
}
body.home section.works .box-2 .box-2-1 {
  width: calc(33% - 5px);
  margin-left: 4px;
  margin-right: 4px;
  margin-bottom: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 35px 30px;
  position: relative;
  overflow: hidden;
  height: 400px;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1 {
    width: 100%;
    height: 225px;
    padding: 0 15px 12px;
  }
}
body.home section.works .box-2 .box-2-1:nth-of-type(1) {
  background: url("../images/home-4.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1:nth-of-type(1) {
    background: url("../images/home-sp-4.jpg") no-repeat center/cover;
  }
}
body.home section.works .box-2 .box-2-1:nth-of-type(2) {
  background: url("../images/home-5.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1:nth-of-type(2) {
    background: url("../images/home-sp-5.jpg") no-repeat center/cover;
  }
}
body.home section.works .box-2 .box-2-1:nth-of-type(3) {
  background: url("../images/home-6.jpg") no-repeat center/cover;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1:nth-of-type(3) {
    background: url("../images/home-sp-6.jpg") no-repeat center/cover;
  }
}
body.home section.works .box-2 .box-2-1 .lead-1 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1 .lead-1 {
    font-size: 16px;
  }
}
body.home section.works .box-2 .box-2-1 .lead-2 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1 .lead-2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
body.home section.works .box-2 .box-2-1 h3 {
  font-size: 14px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 100%;
  text-align: center;
  padding: 2px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1 h3 {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
body.home section.works .box-2 .box-2-1 .lead-3 {
  font-size: 14px;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1 .lead-3 {
    font-size: 12px;
    margin-bottom: 6px;
  }
}
body.home section.works .box-2 .box-2-1 .lead-4 {
  font-size: 14px;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1 .lead-4 {
    font-size: 12px;
  }
}
body.home section.works .box-2 .box-2-1 .lead-5 {
  font-size: 14px;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.home section.works .box-2 .box-2-1 .lead-5 {
    font-size: 12px;
  }
}
body.home section.works .box-2 .box-2-1:before {
  position: absolute;
  content: " ";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
}
body.home section.works .box-2 .box-2-1.go:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.8s cubic-bezier(0.65, 0.05, 0.36, 1) 1s;
  transition: 0.8s cubic-bezier(0.65, 0.05, 0.36, 1) 1s;
}
body.home section.vision {
  height: 430px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  body.home section.vision {
    height: unset;
  }
}
body.home section.vision .box-1 {
  width: 65%;
  background: url("../images/home-7.jpg") no-repeat center/cover;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  body.home section.vision .box-1 {
    border: 1px solid #fff;
    margin-left: -1px;
  }
}
@media screen and (max-width: 767px) {
  body.home section.vision .box-1 {
    height: 175px;
    width: calc(100% - 25px);
    background: url("../images/home-sp-7.jpg") no-repeat center/cover;
  }
}
body.home section.vision .box-2 {
  width: 35%;
}
@media screen and (min-width: 768px) {
  body.home section.vision .box-2 > * {
    border: 1px solid #fff;
    margin-right: -1px;
  }
}
@media screen and (max-width: 767px) {
  body.home section.vision .box-2 {
    width: 100%;
  }
}
body.home section.vision .box-2 .box-2-1 {
  height: 165px;
  background: #070a10;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 65px;
}
@media screen and (max-width: 767px) {
  body.home section.vision .box-2 .box-2-1 {
    height: 235px;
    padding-left: 25px;
    align-items: flex-end;
    padding-bottom: 23px;
    margin-top: -150px;
  }
}
body.home section.vision .box-2 .box-2-1 .lead-1 {
  font-size: 18px;
  line-height: calc(28 / 18);
}
@media screen and (max-width: 767px) {
  body.home section.vision .box-2 .box-2-1 .lead-1 {
    font-size: 14px;
    line-height: calc(40 / 28);
  }
}
body.home section.vision .box-2 .box-2-2 {
  height: 265px;
  background: #b60005;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 65px;
}
@media screen and (max-width: 767px) {
  body.home section.vision .box-2 .box-2-2 {
    height: 140px;
    padding-left: 25px;
  }
}
body.home section.vision .box-2 .box-2-2 h2 {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.home section.vision .box-2 .box-2-2 h2 {
    font-size: 16px;
  }
}
body.home section.vision .box-2 .box-2-2 .lead-1 {
  font-size: 14px;
  color: #fff;
  position: relative;
  margin-bottom: 35px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  body.home section.vision .box-2 .box-2-2 .lead-1 {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
body.home section.vision .box-2 .box-2-2 .lead-1::after {
  content: "ー";
  position: absolute;
  right: -3em;
  transform: scale(1.5, 0.3);
}
@media screen and (max-width: 767px) {
  body.home section.vision .box-2 .box-2-2 .lead-1::after {
    right: -1.5em;
    transform: scale(1, 0.3);
  }
}
body.home section.vision .box-2 .box-2-2 .button-1 {
  background: #fff;
  color: #b60005;
}
body.home section.activities {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  body.home section.activities {
    padding-top: 55px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  body.home section.activities .container {
    width: 100%;
    max-width: 800px !important;
    margin-left: auto;
    margin-right: auto;
  }
}
body.home section.activities .box-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.home section.activities .box-1 .box-1-1 {
  padding-top: 24px;
  padding-left: 24px;
  width: 300px;
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-1 {
    padding-top: 0;
    padding-left: 0;
    width: 100%;
  }
}
body.home section.activities .box-1 .box-1-1 h2 {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-1 h2 {
    font-size: 16px;
    line-height: 1;
  }
}
body.home section.activities .box-1 .box-1-1 .lead-1 {
  font-size: 16px;
  color: #b60005;
  margin-bottom: 44px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-1 .lead-1 {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
body.home section.activities .box-1 .box-1-1 .lead-1::after {
  content: "ー";
  position: absolute;
  right: -2.5em;
  transform: scale(1.5, 0.3);
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-1 .lead-1::after {
    right: -1.5em;
    transform: scale(1, 0.3);
  }
}
body.home section.activities .box-1 .box-1-1 .lead-2 {
  font-size: 14px;
  line-height: calc(24 / 14);
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-1 .lead-2 {
    font-size: 12px;
    line-height: calc(40 / 24);
    margin-bottom: 24px;
  }
}
body.home section.activities .box-1 .box-1-1 ul {
  font-size: 14px;
  letter-spacing: -0.05em;
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-1 ul {
    margin-top: 25px;
    text-align: center;
    font-size: 12px;
    margin-bottom: 35px;
  }
}
body.home section.activities .box-1 .box-1-1 ul li {
  border-bottom: 1px solid #000;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-1 ul li {
    padding-bottom: 5px;
  }
}
body.home section.activities .box-1 .box-1-1 .button-1 {
  color: #fff;
  background: #000;
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-1 .button-1 {
    margin: 0 auto;
  }
}
body.home section.activities .box-1 .box-1-1 .box-1-1-1 {
  margin-right: -25px;
}
@media screen and (min-width: 768px) {
  body.home section.activities .box-1 .box-1-1 .box-1-1-1 {
    display: none;
  }
}
body.home section.activities .box-1 .box-1-1 .box-1-1-1 .box-1-2-1 {
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  body.home section.activities .box-1 .box-1-2 {
    display: none;
  }
}
body.home section.activities .box-1 .box-1-2 .box-1-2-1 {
  margin-bottom: 6px;
}
body.home .line-1 {
  border-top: 1px solid #aaa;
}
body.home section.information {
  padding-top: 110px;
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  body.home section.information {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  body.home section.information .container {
    width: 100%;
    max-width: 800px !important;
    margin-left: auto;
    margin-right: auto;
  }
}
body.home section.information .lead-1 {
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  body.home section.information .lead-1 {
    font-size: 18px;
  }
}
body.home section.information .lead-1 span {
  font-weight: 100;
  margin: 0 -0.5em;
}
body.home section.information h2 {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 47px;
}
@media screen and (max-width: 767px) {
  body.home section.information h2 {
    font-size: 12px;
  }
}
body.home section.information ul {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  body.home section.information ul {
    margin-bottom: 30px;
  }
}
body.home section.information ul li {
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 92px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.home section.information ul li {
    height: unset;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
body.home section.information ul li:last-of-type {
  border-bottom: 1px solid #eee;
}
body.home section.information ul li .date {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-align: center;
  width: 100px;
  height: 32px;
  background: #eee;
}
@media screen and (max-width: 767px) {
  body.home section.information ul li .date {
    font-size: 10px;
    width: 75px;
    height: 20px;
  }
}
body.home section.information ul li .category {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-align: center;
  width: 100px;
  height: 32px;
  background: #b60005;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.home section.information ul li .category {
    font-size: 10px;
    width: 75px;
    height: 20px;
  }
}
body.home section.information ul li a {
  display: inline-block;
  width: calc(100% - 228px);
  margin-left: 28px;
  padding-right: 55px;
  color: #000 !important;
}
@media screen and (max-width: 767px) {
  body.home section.information ul li a {
    margin-top: 7px;
    width: 100%;
    margin-left: unset;
    padding-right: 38px;
    position: relative;
  }
}
body.home section.information ul li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 55px;
  background: url("../images/home-10.svg") no-repeat center;
}
@media screen and (max-width: 767px) {
  body.home section.information ul li a::after {
    width: 28px;
  }
}
body.home section.information ul li a h3 {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  body.home section.information ul li a h3 {
    font-size: 12px;
  }
}
body.home section.information .button-1 {
  border: 2px solid #000;
  margin: 0 auto;
}

body.page-company section.header {
  height: 500px;
  position: relative;
  background: url("../images/company-1.jpg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.page-company section.header {
    height: 200px;
    background: url("../images/company-sp-1.jpg") no-repeat center/cover;
  }
}
body.page-company section.header p.lead-1 {
  font-size: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-company section.header p.lead-1 {
    font-size: 36px;
  }
}
body.page-company section.header h1 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-company section.header h1 {
    font-size: 12px;
  }
}
body.page-company section.outline {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.page-company section.outline {
    padding-top: 35px;
    padding-bottom: 48px;
  }
}
body.page-company section.outline .box-1 {
  display: flex;
  flex-wrap: wrap;
}
body.page-company section.outline .box-1 .box-1-1 {
  height: 400px;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-company section.outline .box-1 .box-1-1 {
    height: 225px;
    width: 100%;
    margin-bottom: 22px;
  }
}
body.page-company section.outline .box-1 .box-1-1::before {
  content: "";
  display: block;
  background: url("../images/company-2.jpg") no-repeat center/cover;
  width: 50vw;
  height: 100%;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 767px) {
  body.page-company section.outline .box-1 .box-1-1::before {
    width: calc(100vw - 25px);
    background: url("../images/company-sp-2.jpg") no-repeat center/cover;
  }
}
body.page-company section.outline .box-1 .box-1-2 {
  width: 50%;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  body.page-company section.outline .box-1 .box-1-2 {
    width: 100%;
    padding-left: unset;
  }
}
body.page-company section.outline .box-1 .box-1-2 h2 {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-company section.outline .box-1 .box-1-2 h2 {
    font-size: 16px;
  }
}
body.page-company section.outline .box-1 .box-1-2 .lead-1 {
  font-size: 16px;
  color: #b60005;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  body.page-company section.outline .box-1 .box-1-2 .lead-1 {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
body.page-company section.outline .box-1 .box-1-2 .lead-2 {
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  body.page-company section.outline .box-1 .box-1-2 .lead-2 {
    font-size: 12px;
    line-height: calc(40 / 24);
  }
}
body.page-company section.profile {
  background: #f6f6f6;
  padding-top: 114px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  body.page-company section.profile {
    padding-top: 46px;
    padding-bottom: 50px;
  }
}
body.page-company section.profile h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  body.page-company section.profile h2 {
    font-size: 16px;
  }
}
body.page-company section.profile .lead-1 {
  color: #b60005;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-company section.profile .lead-1 {
    font-size: 12px;
  }
}
body.page-company section.profile table {
  font-size: 14px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body.page-company section.profile table {
    font-size: 12px;
    line-height: calc(40 / 24);
  }
}
body.page-company section.profile table tr th {
  font-weight: bold;
  width: 20%;
  padding-left: 30px;
  padding-top: 37px;
  padding-bottom: 37px;
  text-align: left;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 767px) {
  body.page-company section.profile table tr th {
    padding-left: 0;
    padding-top: 17px;
    padding-bottom: 17px;
    width: 25px;
    vertical-align: top;
    line-height: calc(40 / 24);
  }
}
body.page-company section.profile table tr td {
  width: 80%;
  padding-left: 30px;
  border-bottom: 1px solid #aaa;
  padding-top: 37px;
  padding-bottom: 37px;
}
@media screen and (max-width: 767px) {
  body.page-company section.profile table tr td {
    padding-left: 12px;
    padding-top: 17px;
    padding-bottom: 17px;
    width: 75%;
  }
}
body.page-company section.profile table tr td .lead-2 {
  line-height: calc(38 / 14);
}
@media screen and (max-width: 767px) {
  body.page-company section.profile table tr td .lead-2 {
    line-height: calc(40 / 24);
    margin-bottom: 0.5em;
  }
}
body.page-company section.profile table tr td .lead-3 {
  line-height: calc(24 / 14);
  padding-left: 1.3em;
}
@media screen and (max-width: 767px) {
  body.page-company section.profile table tr td .lead-3 {
    line-height: calc(40 / 24);
  }
}
body.page-company section.profile table tr td .lead-4 {
  line-height: calc(38 / 14);
  margin: -10px 0;
}
@media screen and (max-width: 767px) {
  body.page-company section.profile table tr td .lead-4 {
    line-height: calc(40 / 24);
    margin: unset;
  }
}
body.page-company section.access {
  padding-top: 110px;
  padding-bottom: 118px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.page-company section.access {
    padding-top: 46px;
    padding-bottom: 50px;
    position: relative;
  }
}
body.page-company section.access .box-1 {
  padding-left: 67px;
}
@media screen and (max-width: 767px) {
  body.page-company section.access .box-1 {
    padding-left: unset;
  }
}
body.page-company section.access .box-1 h2 {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-company section.access .box-1 h2 {
    font-size: 16px;
    text-align: center;
  }
}
body.page-company section.access .box-1 .lead-1 {
  font-size: 16px;
  color: #b60005;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.page-company section.access .box-1 .lead-1 {
    font-size: 12px;
    text-align: center;
    margin-bottom: 22px;
  }
}
body.page-company section.access .map {
  position: relative;
  height: 500px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  body.page-company section.access .map {
    height: 225px;
    position: unset;
    margin-bottom: 21px;
  }
}
body.page-company section.access .map #map {
  width: calc(100% + ((100vw - 1000px) / 2));
  height: 500px;
  background: #abdbff;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  body.page-company section.access .map #map {
    width: 100vw;
    height: 225px;
  }
}
body.page-company section.access .box-2 {
  padding-left: 67px;
  padding-right: 50px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  body.page-company section.access .box-2 {
    padding-left: unset;
    padding-right: unset;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  body.page-company section.access .box-2 .box-2-2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
body.page-company section.access .box-2 .box-2-2 .lead-2 {
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  body.page-company section.access .box-2 .box-2-2 .lead-2 {
    display: inline-block;
    margin-bottom: 15px;
  }
}
body.page-company section.access .box-2 .button-1 {
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  body.page-company section.access .box-2 .button-1 {
    height: 42px;
    width: 160px;
  }
}
body.page-company section.history {
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.page-company section.history {
    padding-bottom: 50px;
  }
}
body.page-company section.history .box-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1 {
    flex-direction: column;
    align-items: center;
    justify-content: unset;
  }
}
body.page-company section.history .box-1-1 {
  width: 240px;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-1 {
    width: 160px;
    margin-bottom: 25px;
  }
}
body.page-company section.history .box-1-1 .box-1-1-1 {
  background: #000;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-1 .box-1-1-1 {
    height: 42px;
  }
}
body.page-company section.history .box-1-1 .box-1-1-1 h2 {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-1 .box-1-1-1 h2 {
    font-size: 16px;
    top: -4px;
    position: relative;
  }
}
body.page-company section.history .box-1-1 .box-1-1-2 {
  background: #b60005;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-1 .box-1-1-2 {
    width: 120px;
    height: 20px;
    margin: -12px auto 0;
  }
}
body.page-company section.history .box-1-1 .box-1-1-2 .lead-1 {
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-1 .box-1-1-2 .lead-1 {
    font-size: 12px;
  }
}
body.page-company section.history .box-1-2 {
  width: calc(100% - 310px);
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-2 {
    width: 100%;
  }
}
body.page-company section.history .box-1-2 .box-1-2-1 {
  position: absolute;
  width: calc((100% + ((100vw - 1000px))));
  left: 0;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-2 .box-1-2-1 {
    width: 100%;
  }
}
body.page-company section.history .box-1-2 .box-1-2-1 table {
  width: 100%;
  font-size: 14px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-2 .box-1-2-1 table {
    font-size: 12px;
  }
}
body.page-company section.history .box-1-2 .box-1-2-1 table tr {
  border-top: 1px solid #aaa;
}
body.page-company section.history .box-1-2 .box-1-2-1 table tr:last-of-type {
  border-bottom: 1px solid #aaa;
}
body.page-company section.history .box-1-2 .box-1-2-1 table tr th {
  width: 230px;
  padding-left: 30px;
  padding-top: 37px;
  padding-bottom: 37px;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-2 .box-1-2-1 table tr th {
    display: flex;
    width: 100%;
    padding-left: 22px;
    padding-top: 16px;
    padding-bottom: 5px;
  }
}
body.page-company section.history .box-1-2 .box-1-2-1 table tr td {
  padding-left: 25px;
  padding-top: 37px;
  padding-bottom: 37px;
}
@media screen and (max-width: 767px) {
  body.page-company section.history .box-1-2 .box-1-2-1 table tr td {
    display: flex;
    width: 100%;
    padding-left: 22px;
    padding-bottom: 16px;
    padding-top: unset;
  }
}

body.page-service section.header {
  height: 500px;
  position: relative;
  background: url("../images/service-1.jpg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.page-service section.header {
    height: 200px;
    background: url("../images/service-sp-1.jpg") no-repeat center/cover;
  }
}
body.page-service section.header p.lead-1 {
  font-size: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-service section.header p.lead-1 {
    font-size: 36px;
  }
}
body.page-service section.header h1 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-service section.header h1 {
    font-size: 12px;
  }
}
body.page-service section.beginning {
  padding-top: 120px;
  padding-bottom: 125px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.page-service section.beginning {
    padding-top: 36px;
    padding-bottom: 46px;
  }
}
body.page-service section.beginning .box-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  body.page-service section.beginning .box-1 {
    flex-flow: wrap-reverse;
  }
}
body.page-service section.beginning .box-1 .box-1-1 {
  width: 262px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  body.page-service section.beginning .box-1 .box-1-1 {
    width: 100%;
  }
}
body.page-service section.beginning .box-1 .box-1-1 .lead-1 {
  font-size: 28px;
  font-weight: bold;
  line-height: calc(40 / 28);
}
@media screen and (max-width: 767px) {
  body.page-service section.beginning .box-1 .box-1-1 .lead-1 {
    font-size: 16px;
    line-height: calc(46 / 32);
  }
}
body.page-service section.beginning .box-1 .box-1-1 hr {
  border-top: 1px solid #b60005;
  width: 100px;
  margin-top: 25px;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  body.page-service section.beginning .box-1 .box-1-1 hr {
    width: 50px;
    margin-top: 12.5px;
    margin-bottom: 20px;
  }
}
body.page-service section.beginning .box-1 .box-1-1 .lead-2 {
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  body.page-service section.beginning .box-1 .box-1-1 .lead-2 {
    font-size: 12px;
    line-height: calc(40 / 24);
  }
}
body.page-service section.beginning .box-1 .box-1-2 {
  height: 445px;
  width: calc(50% + 140px);
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-service section.beginning .box-1 .box-1-2 {
    height: 225px;
    width: 100%;
    margin-bottom: 20px;
  }
}
body.page-service section.beginning .box-1 .box-1-2::after {
  content: "";
  display: block;
  background: url("../images/service-2.jpg") no-repeat center/cover;
  width: calc(50vw + 140px);
  height: 100%;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 767px) {
  body.page-service section.beginning .box-1 .box-1-2::after {
    background: url("../images/service-sp-2.jpg") no-repeat center/cover;
    left: unset;
    right: -25px;
  }
}
body.page-service .line-1 {
  border-top: 1px solid #a2a1a1;
}
body.page-service section.work {
  padding-top: 112px;
}
@media screen and (max-width: 767px) {
  body.page-service section.work {
    padding-top: 45px;
  }
}
body.page-service section.work h2 {
  font-size: 28px;
  font-weight: bold;
  line-height: calc(40 / 28);
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-service section.work h2 {
    font-size: 16px;
  }
}
body.page-service section.work .lead-1 {
  text-align: center;
  font-size: 16px;
  color: #b60005;
  margin-bottom: 95px;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .lead-1 {
    font-size: 12px;
    margin-bottom: 36px;
  }
}
body.page-service section.work .box-1 {
  padding-left: 50px;
  padding-right: 50px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 {
    padding-left: 25px;
    padding-right: 25px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .container {
    padding-left: unset;
    padding-right: unset;
  }
}
body.page-service section.work .box-1 h3 {
  font-size: 28px;
  background: #000;
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 0.3em 2.5em;
  letter-spacing: 0.2em;
  position: relative;
  height: 55px;
  margin-left: 45px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 h3 {
    margin-left: 0;
    font-size: 16px;
    height: 30px;
    padding: 0.2em 2em;
  }
}
body.page-service section.work .box-1 h3::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 55px;
  background: #b60005;
  left: -16px;
  top: 0;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 h3::before {
    width: 8px;
    height: 30px;
    left: -8px;
  }
}
body.page-service section.work .box-1 .box-1-1 {
  height: 500px;
  margin-top: -27px;
  margin-bottom: -45px;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-1 {
    margin-top: -15px;
    width: 100vw;
    left: 0;
    position: unset;
    margin-left: -25px;
    height: 200px;
    z-index: -1;
    margin-bottom: -20px;
  }
}
body.page-service section.work .box-1:nth-of-type(1) .box-1-1 {
  background: url("../images/service-3.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1:nth-of-type(1) .box-1-1 {
    background: url("../images/service-sp-3.jpg") no-repeat center/cover;
  }
}
body.page-service section.work .box-1:nth-of-type(2) .box-1-1 {
  background: url("../images/service-4.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1:nth-of-type(2) .box-1-1 {
    background: url("../images/service-sp-4.jpg") no-repeat center/cover;
  }
}
body.page-service section.work .box-1:nth-of-type(3) .box-1-1 {
  background: url("../images/service-5.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1:nth-of-type(3) .box-1-1 {
    background: url("../images/service-sp-5.jpg") no-repeat center/cover;
  }
}
body.page-service section.work .box-1 .box-1-2 {
  max-width: 1000px;
  width: 100%;
  background: #fff;
  box-shadow: 15px 15px 12px -7px rgba(0, 0, 0, 0.15);
  margin-left: 60px;
  padding: 35px 40px 40px;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-2 {
    margin-left: unset;
    padding: 18px 25px;
  }
}
body.page-service section.work .box-1 .box-1-2 .lead-2 {
  font-size: 28px;
  line-height: calc(40 / 28);
  letter-spacing: 0.2em;
  font-weight: bold;
  margin-bottom: 24px;
  margin-left: 35px;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-2 .lead-2 {
    font-size: 16px;
    margin-left: unset;
    margin-bottom: 20px;
    padding-left: 6px;
    padding-right: 6px;
  }
}
body.page-service section.work .box-1 .box-1-2 table {
  margin-bottom: 0;
  border-bottom: 1px solid #000;
}
body.page-service section.work .box-1 .box-1-2 table tr {
  border-top: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
}
body.page-service section.work .box-1 .box-1-2 table tr td {
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-2 table tr td {
    display: flex;
    width: 100%;
    align-items: unset;
    height: unset;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: -1px;
  }
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-2 table tr td.hidden {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-2 table tr td:first-of-type {
    border-bottom: 1px solid #000;
  }
}
body.page-service section.work .box-1 .box-1-2 table tr td:first-of-type::after {
  position: absolute;
  content: "";
  border-right: 1px solid #000;
  width: 1px;
  height: calc(100% - 32px);
  right: 0;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-2 table tr td:first-of-type::after {
    border-right: unset;
  }
}
body.page-service section.work .box-1 .box-1-2 table tr td h4 {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-2 table tr td h4 {
    font-size: 13px;
  }
}
body.page-service section.work .box-1 .box-1-2 table tr td .lead-3 {
  text-align: center;
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  body.page-service section.work .box-1 .box-1-2 table tr td .lead-3 {
    text-align: left;
    font-size: 12px;
    line-height: calc(40 / 24);
  }
  body.page-service section.work .box-1 .box-1-2 table tr td .lead-3 br {
    display: none;
  }
}
body.page-service section.result {
  padding-bottom: 140px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-service section.result {
    padding-bottom: 35px;
  }
}
body.page-service section.result .box-1 {
  background: #000;
  position: absolute;
  height: 650px;
  width: calc(50vw + 165px);
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  body.page-service section.result .box-1 {
    width: 150px;
    margin-top: 55px;
    height: calc(100% - 130px - 55px);
  }
}
body.page-service section.result .box-2 {
  width: 245px;
  margin-left: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  body.page-service section.result .box-2 {
    margin-left: unset;
    width: 100%;
  }
}
body.page-service section.result .box-2 h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  body.page-service section.result .box-2 h2 {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
  }
}
body.page-service section.result .box-2 .lead-1 {
  color: #b60005;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body.page-service section.result .box-2 .lead-1 {
    font-size: 12px;
    text-align: center;
  }
}
body.page-service section.result .box-3 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -5px;
}
@media screen and (max-width: 767px) {
  body.page-service section.result .box-3 {
    margin: unset;
    width: calc(100vw - 25px);
  }
}
body.page-service section.result .box-3 img {
  width: calc(50% - 10px);
  margin: 0px 5px 10px;
}
@media screen and (max-width: 767px) {
  body.page-service section.result .box-3 img {
    width: calc(100vw - 25px);
    margin: 0 0 15px;
  }
}

body.page-message section.header {
  height: 500px;
  position: relative;
  background: url("../images/message-1.jpg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.page-message section.header {
    height: 200px;
    background: url("../images/message-sp-1.jpg") no-repeat center/cover;
  }
}
body.page-message section.header p.lead-1 {
  font-size: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-message section.header p.lead-1 {
    font-size: 36px;
  }
}
body.page-message section.header h1 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-message section.header h1 {
    font-size: 12px;
  }
}
body.page-message section.policy {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
body.page-message section.policy .box-1 {
  position: relative;
  height: 560px;
}
body.page-message section.policy .box-1 .container {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .container {
    flex-direction: row-reverse;
  }
}
body.page-message section.policy .box-1 .box-1-1 {
  width: calc(100vw - ((100vw - 1000px) / 2) - 40px);
  height: 560px;
  background: url("../images/message-2.jpg") no-repeat center/cover;
  left: 0;
  top: 0;
  position: absolute;
}
@media screen and (max-width: 1111px) {
  body.page-message section.policy .box-1 .box-1-1 {
    width: calc(100vw - 40px);
    background: url("../images/message-sp-2.jpg") no-repeat center/cover;
  }
}
body.page-message section.policy .box-1 .box-1-2 {
  background: #000;
  width: calc(50vw + 55px);
  height: 560px;
  position: absolute;
  right: 0;
  top: 50px;
  z-index: -1;
}
body.page-message section.policy .box-1 .box-1-3 {
  z-index: 10;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  flex-direction: row-reverse;
}
body.page-message section.policy .box-1 .box-1-3 p.vertical-ja {
  display: inline-block;
  background: #fff;
  font-size: 26px;
  padding-top: 0.3em;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .box-1-3 p.vertical-ja {
    font-size: 16px;
  }
}
body.page-message section.policy .box-1 .box-1-3 p.vertical-ja:nth-of-type(1) {
  margin-top: -1em;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .box-1-3 p.vertical-ja:nth-of-type(1) {
    margin-right: 30px;
  }
}
body.page-message section.policy .box-1 .box-1-3 p.vertical-ja:nth-of-type(2) {
  margin-right: 50px;
  margin-top: 1em;
  padding-bottom: 0.3em;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .box-1-3 p.vertical-ja:nth-of-type(2) {
    margin-right: 20px;
  }
}
body.page-message section.policy .box-1 .box-1-3 p.vertical-ja:nth-of-type(3) {
  margin-right: 50px;
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .box-1-3 p.vertical-ja:nth-of-type(3) {
    margin-right: 20px;
    margin-top: 4em;
  }
}
body.page-message section.policy .box-1 .box-1-4 {
  position: relative;
  z-index: 10;
  color: #fff;
  max-width: 430px;
  width: 100%;
  margin-left: auto;
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .box-1-4 {
    margin-left: unset;
    margin-right: auto;
    padding-top: 15px;
  }
}
body.page-message section.policy .box-1 .box-1-4 .lead-1 {
  font-size: 45px;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .box-1-4 .lead-1 {
    font-size: 32px;
  }
}
body.page-message section.policy .box-1 .box-1-4 hr {
  border-bottom: 2px solid #b60005;
  width: 50px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .box-1-4 hr {
    width: 35px;
    margin-bottom: 27px;
  }
}
body.page-message section.policy .box-1 .box-1-4 .lead-2 {
  font-size: 14px;
  line-height: calc(28 / 14);
}
@media screen and (max-width: 767px) {
  body.page-message section.policy .box-1 .box-1-4 .lead-2 {
    font-size: 12px;
    line-height: calc(40 / 24);
  }
}
body.page-message section.philosophy {
  background: #eee;
  padding-top: 115px;
  padding-bottom: 110px;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
body.page-message section.philosophy .lead-1 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .lead-1 {
    font-size: 30px;
  }
}
body.page-message section.philosophy h2 {
  font-size: 16px;
  font-weight: bold;
  color: #b60005;
  margin-bottom: 48px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy h2 {
    font-size: 12px;
    margin-bottom: 18px;
  }
}
body.page-message section.philosophy .lead-2 {
  font-size: 14px;
  line-height: calc(28 / 14);
  width: 100%;
  max-width: 710px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .lead-2 {
    font-size: 12px;
    line-height: calc(40 / 24);
    margin-bottom: 35px;
  }
}
body.page-message section.philosophy .box-1 {
  width: 820px;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-1 {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }
}
body.page-message section.philosophy .box-1 .box-1-1 {
  background: url("../images/message-3.png") no-repeat center/contain;
  width: 328px;
  height: 328px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-1 .box-1-1 {
    width: 235px;
    height: 235px;
  }
}
body.page-message section.philosophy .box-1 .box-1-1 hr {
  border-top: 1px solid #fff;
  width: 180px;
  margin-top: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-1 .box-1-1 hr {
    width: 150px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
body.page-message section.philosophy .box-1 .image-1 {
  margin-left: 55px;
  margin-right: 55px;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-1 .image-1 {
    width: 17px;
    height: 17px;
    margin-top: 23px;
    margin-bottom: 23px;
  }
}
body.page-message section.philosophy .box-1 .box-1-1.red {
  background: url("../images/message-4.png") no-repeat center/contain;
}
body.page-message section.philosophy .box-1 .box-1-1.red hr {
  width: 223px;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-1 .box-1-1.red hr {
    width: 170px;
  }
}
body.page-message section.philosophy .box-1 .lead-3 {
  color: #fff;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-1 .lead-3 {
    font-size: 25px;
  }
}
body.page-message section.philosophy .box-1 .lead-4 {
  color: #fff;
  font-size: 18px;
  line-height: calc(32 / 18);
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-1 .lead-4 {
    font-size: 15px;
    line-height: calc(50 / 30);
  }
}
body.page-message section.philosophy .box-1 .image-2 {
  margin-top: -65px;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-1 .image-2 {
    height: 31.5px;
    width: 12.5px;
    margin-top: 25px;
  }
}
body.page-message section.philosophy .box-2 {
  text-align: center;
}
body.page-message section.philosophy .box-2 .lead-5 {
  color: #fff;
  font-size: 34px;
  line-height: calc(52 / 38);
  background: #000;
  display: inline-block;
  padding: 17px 40px;
  position: relative;
  box-shadow: 6px 6px 0px 0px #b60005;
}
@media screen and (max-width: 767px) {
  body.page-message section.philosophy .box-2 .lead-5 {
    font-size: 19px;
    line-height: calc(52 / 38);
    padding: 11px 50px;
  }
}
body.page-message section.message {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body.page-message section.message {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
body.page-message section.message .box-1 {
  display: flex;
  flex-wrap: wrap;
}
body.page-message section.message .box-1 .box-1-1 {
  height: 380px;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-message section.message .box-1 .box-1-1 {
    width: 100%;
    height: 225px;
    margin-bottom: 35px;
  }
}
body.page-message section.message .box-1 .box-1-1::before {
  content: "";
  display: block;
  background: url("../images/message-5.jpg") no-repeat center/cover;
  width: 50vw;
  height: 100%;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 767px) {
  body.page-message section.message .box-1 .box-1-1::before {
    width: 100vw;
    right: -25px;
    background: url("../images/message-sp-5.jpg") no-repeat center/cover;
  }
}
body.page-message section.message .box-1 .box-1-2 {
  width: 50%;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  body.page-message section.message .box-1 .box-1-2 {
    width: 100vw;
    padding-left: unset;
  }
}
body.page-message section.message .box-1 .box-1-2 .lead-1 {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  body.page-message section.message .box-1 .box-1-2 .lead-1 {
    text-align: center;
    font-size: 30px;
    width: 100%;
  }
}
body.page-message section.message .box-1 .box-1-2 h2 {
  font-size: 16px;
  font-weight: bold;
  color: #b60005;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  body.page-message section.message .box-1 .box-1-2 h2 {
    text-align: center;
    font-size: 12px;
    width: 100%;
    margin-bottom: 17px;
  }
}
body.page-message section.message .box-1 .box-1-2 .lead-2 {
  font-size: 14px;
  line-height: calc(28 / 14);
}
@media screen and (max-width: 767px) {
  body.page-message section.message .box-1 .box-1-2 .lead-2 {
    font-size: 12px;
    line-height: calc(40 / 24);
  }
}

body.page-contact,
body.page-contact-success {
  /* Change Autocomplete styles in Chrome*/
}
body.page-contact section.header,
body.page-contact-success section.header {
  height: 500px;
  position: relative;
  background: url("../images/contact-1.jpg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.page-contact section.header,
body.page-contact-success section.header {
    background: url("../images/contact-sp-1.jpg") no-repeat center/cover;
    height: 200px;
  }
}
body.page-contact section.header p.lead-1,
body.page-contact-success section.header p.lead-1 {
  font-size: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-contact section.header p.lead-1,
body.page-contact-success section.header p.lead-1 {
    font-size: 36px;
  }
}
body.page-contact section.header h1,
body.page-contact-success section.header h1 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-contact section.header h1,
body.page-contact-success section.header h1 {
    font-size: 12px;
  }
}
body.page-contact section.form,
body.page-contact-success section.form {
  padding-top: 115px;
  padding-bottom: 120px;
}
body.page-contact section.form form.wpcf7-form.sent,
body.page-contact-success section.form form.wpcf7-form.sent {
  position: relative;
}
body.page-contact section.form form.wpcf7-form.sent::after,
body.page-contact-success section.form form.wpcf7-form.sent::after {
  width: 100%;
  height: 100%;
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form,
body.page-contact-success section.form {
    padding-top: 45px;
    padding-bottom: 40px;
  }
}
body.page-contact section.form h2,
body.page-contact-success section.form h2 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form h2,
body.page-contact-success section.form h2 {
    font-size: 16px;
  }
}
body.page-contact section.form .lead-1,
body.page-contact-success section.form .lead-1 {
  font-size: 16px;
  color: #b60005;
  text-align: center;
  margin-bottom: 58px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .lead-1,
body.page-contact-success section.form .lead-1 {
    font-size: 12px;
    margin-bottom: 13px;
  }
}
body.page-contact section.form .lead-2,
body.page-contact-success section.form .lead-2 {
  font-size: 14px;
  line-height: calc(24 / 14);
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .lead-2,
body.page-contact-success section.form .lead-2 {
    font-size: 12px;
    margin-bottom: 22px;
  }
}
body.page-contact section.form .lead-2 span,
body.page-contact-success section.form .lead-2 span {
  color: #b60005;
}
body.page-contact section.form .box-1,
body.page-contact-success section.form .box-1 {
  border: 8px solid #eceff1;
  text-align: center;
  padding: 25px 15px 25px;
  max-width: 780px;
  width: 100%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-1,
body.page-contact-success section.form .box-1 {
    padding: 14px 5px 13px;
  }
}
body.page-contact section.form .box-1 .text-1,
body.page-contact-success section.form .box-1 .text-1 {
  font-size: 28px;
  margin-right: 18px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-1 .text-1,
body.page-contact-success section.form .box-1 .text-1 {
    font-size: 27px;
    margin-right: 0;
    width: 100%;
    display: block;
  }
}
body.page-contact section.form .box-1 .text-2,
body.page-contact-success section.form .box-1 .text-2 {
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-1 .text-2,
body.page-contact-success section.form .box-1 .text-2 {
    font-size: 11px;
  }
}
body.page-contact section.form .box-1 .lead-3,
body.page-contact-success section.form .box-1 .lead-3 {
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-1 .lead-3,
body.page-contact-success section.form .box-1 .lead-3 {
    font-size: 12px;
  }
}
body.page-contact section.form .box-1 .lead-5,
body.page-contact-success section.form .box-1 .lead-5 {
  font-size: 20px;
  line-height: calc(40 / 20);
  font-weight: bold;
  margin-bottom: 12px;
}
body.page-contact section.form .box-2 table,
body.page-contact-success section.form .box-2 table {
  border-spacing: 0px 12px;
  border-collapse: separate;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-2 table,
body.page-contact-success section.form .box-2 table {
    margin-bottom: 5px;
  }
}
body.page-contact section.form .box-2 table tr th,
body.page-contact-success section.form .box-2 table tr th {
  background: #eceff1;
  width: 250px;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  padding-left: 33px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-2 table tr th,
body.page-contact-success section.form .box-2 table tr th {
    display: block;
    width: 100%;
    font-size: 12px;
    padding-left: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}
body.page-contact section.form .box-2 table tr th .required,
body.page-contact-success section.form .box-2 table tr th .required {
  margin-left: 9px;
  color: #b60005;
}
body.page-contact section.form .box-2 table tr td,
body.page-contact-success section.form .box-2 table tr td {
  font-size: 14px;
  width: calc(100% - 250px);
  padding-left: 50px;
  padding-top: 19px;
  padding-bottom: 19px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-2 table tr td,
body.page-contact-success section.form .box-2 table tr td {
    display: block;
    width: 100%;
    font-size: 12px;
    padding-left: 0;
    width: 100%;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
body.page-contact section.form .box-2 table tr td input,
body.page-contact section.form .box-2 table tr td textarea,
body.page-contact-success section.form .box-2 table tr td input,
body.page-contact-success section.form .box-2 table tr td textarea {
  padding: 13px 0 13px 20px;
  width: 100%;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-2 table tr td input,
body.page-contact section.form .box-2 table tr td textarea,
body.page-contact-success section.form .box-2 table tr td input,
body.page-contact-success section.form .box-2 table tr td textarea {
    padding: 6px 0 6px 14px;
  }
}
body.page-contact section.form .box-2 table tr td .wpcf7-radio,
body.page-contact-success section.form .box-2 table tr td .wpcf7-radio {
  display: flex;
  flex-direction: column;
  color: #000;
}
body.page-contact section.form .box-2 table tr td .wpcf7-radio .wpcf7-list-item,
body.page-contact-success section.form .box-2 table tr td .wpcf7-radio .wpcf7-list-item {
  line-height: 2.1;
}
body.page-contact section.form .box-2 table tr td .wpcf7-radio .wpcf7-list-item input,
body.page-contact-success section.form .box-2 table tr td .wpcf7-radio .wpcf7-list-item input {
  width: 1em;
}
body.page-contact section.form .box-2 hr,
body.page-contact-success section.form .box-2 hr {
  border-top: 1px solid #eceff1;
  margin-bottom: 68px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .box-2 hr,
body.page-contact-success section.form .box-2 hr {
    display: none;
  }
}
body.page-contact section.form .privacypolicy,
body.page-contact-success section.form .privacypolicy {
  text-align: center;
  font-size: 14px;
  line-height: calc(24 / 14);
}
body.page-contact section.form .privacypolicy .privacy-policy-check,
body.page-contact-success section.form .privacypolicy .privacy-policy-check {
  letter-spacing: 0;
  margin-bottom: 57px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form .privacypolicy .privacy-policy-check,
body.page-contact-success section.form .privacypolicy .privacy-policy-check {
    margin-bottom: 16px;
  }
}
body.page-contact section.form .privacypolicy .privacy-policy-check a,
body.page-contact-success section.form .privacypolicy .privacy-policy-check a {
  margin-left: 0.7em;
  text-decoration: underline;
}
body.page-contact section.form .form-btn,
body.page-contact-success section.form .form-btn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
body.page-contact section.form a.confirm,
body.page-contact section.form a.send-button,
body.page-contact section.form a.edit-button,
body.page-contact-success section.form a.confirm,
body.page-contact-success section.form a.send-button,
body.page-contact-success section.form a.edit-button {
  border: 2px solid #000;
  width: 200px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  position: relative;
  letter-spacing: 0.1em;
  margin: 0 15px 15px;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form a.confirm,
body.page-contact section.form a.send-button,
body.page-contact section.form a.edit-button,
body.page-contact-success section.form a.confirm,
body.page-contact-success section.form a.send-button,
body.page-contact-success section.form a.edit-button {
    width: 160px;
    height: 42px;
    font-size: 12px;
    letter-spacing: 0;
  }
}
body.page-contact section.form a.confirm::after,
body.page-contact section.form a.send-button::after,
body.page-contact section.form a.edit-button::after,
body.page-contact-success section.form a.confirm::after,
body.page-contact-success section.form a.send-button::after,
body.page-contact-success section.form a.edit-button::after {
  top: 15px;
  content: "＞";
  position: absolute;
  right: 12px;
  transform: scale(0.7, 1.3);
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-contact section.form a.confirm::after,
body.page-contact section.form a.send-button::after,
body.page-contact section.form a.edit-button::after,
body.page-contact-success section.form a.confirm::after,
body.page-contact-success section.form a.send-button::after,
body.page-contact-success section.form a.edit-button::after {
    right: 5px;
    top: 11px;
  }
}
body.page-contact section.form a.confirm input,
body.page-contact section.form a.send-button input,
body.page-contact section.form a.edit-button input,
body.page-contact-success section.form a.confirm input,
body.page-contact-success section.form a.send-button input,
body.page-contact-success section.form a.edit-button input {
  background: none;
  border-radius: 0;
  border: none;
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
}
body.page-contact input:-webkit-autofill,
body.page-contact input:-webkit-autofill:hover,
body.page-contact input:-webkit-autofill:focus,
body.page-contact textarea:-webkit-autofill,
body.page-contact textarea:-webkit-autofill:hover,
body.page-contact textarea:-webkit-autofill:focus,
body.page-contact select:-webkit-autofill,
body.page-contact select:-webkit-autofill:hover,
body.page-contact select:-webkit-autofill:focus,
body.page-contact-success input:-webkit-autofill,
body.page-contact-success input:-webkit-autofill:hover,
body.page-contact-success input:-webkit-autofill:focus,
body.page-contact-success textarea:-webkit-autofill,
body.page-contact-success textarea:-webkit-autofill:hover,
body.page-contact-success textarea:-webkit-autofill:focus,
body.page-contact-success select:-webkit-autofill,
body.page-contact-success select:-webkit-autofill:hover,
body.page-contact-success select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
body.page-contact .confirmed-display,
body.page-contact-success .confirmed-display {
  display: none !important;
}
body.page-contact .custom-wpcf7c-confirmed table input,
body.page-contact .custom-wpcf7c-confirmed table input:focus,
body.page-contact-success .custom-wpcf7c-confirmed table input,
body.page-contact-success .custom-wpcf7c-confirmed table input:focus {
  border: unset !important;
  outline-width: 0 !important;
  background: transparent !important;
}
body.page-contact .custom-wpcf7c-confirmed table .wpcf7-select,
body.page-contact-success .custom-wpcf7c-confirmed table .wpcf7-select {
  background: transparent !important;
}
body.page-contact .custom-wpcf7c-confirmed table select,
body.page-contact-success .custom-wpcf7c-confirmed table select {
  border: unset !important;
  outline-width: 0 !important;
  background: transparent !important;
}
body.page-contact .custom-wpcf7c-confirmed table textarea,
body.page-contact-success .custom-wpcf7c-confirmed table textarea {
  border: unset !important;
  outline-width: 0 !important;
  background: transparent !important;
}
body.page-contact .custom-wpcf7c-confirmed table .select > span::after,
body.page-contact-success .custom-wpcf7c-confirmed table .select > span::after {
  display: none !important;
}
body.page-contact .custom-wpcf7c-confirmed table .wpcf7c-conf::placeholder,
body.page-contact-success .custom-wpcf7c-confirmed table .wpcf7c-conf::placeholder {
  color: transparent;
}
body.page-contact .custom-wpcf7c-confirmed .confirmed-display,
body.page-contact-success .custom-wpcf7c-confirmed .confirmed-display {
  display: flex !important;
}
body.page-contact .custom-wpcf7c-confirmed .confirmed-hidden,
body.page-contact-success .custom-wpcf7c-confirmed .confirmed-hidden {
  display: none !important;
}

body.page-contact-success .box-1 {
  margin-bottom: 0 !important;
}

body.page-privacy-policy section.header {
  height: 500px;
  position: relative;
  background: url("../images/privacy-policy-1.jpg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.header {
    height: 200px;
    background: url("../images/privacy-policy-sp-1.jpg") no-repeat center/cover;
  }
}
body.page-privacy-policy section.header p.lead-1 {
  font-size: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.header p.lead-1 {
    font-size: 36px;
  }
}
body.page-privacy-policy section.header h1 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.header h1 {
    font-size: 12px;
  }
}
body.page-privacy-policy section.privacy-policy {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.privacy-policy {
    padding-top: 44px;
  }
}
body.page-privacy-policy section.privacy-policy .container {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  body.page-privacy-policy section.privacy-policy .container {
    width: 100%;
    max-width: 900px !important;
    margin-left: auto;
    margin-right: auto;
  }
}
body.page-privacy-policy section.privacy-policy h2 {
  font-size: 28px;
  font-weight: bold;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.privacy-policy h2 {
    font-size: 16px;
    text-align: center;
  }
}
body.page-privacy-policy section.privacy-policy .lead-2 {
  font-size: 18px;
  color: #b60005;
  margin-bottom: 52px;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.privacy-policy .lead-2 {
    font-size: 12px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
  }
}
body.page-privacy-policy section.privacy-policy .lead-3 {
  font-size: 14px;
  line-height: calc(28 / 14);
  margin-bottom: 95px;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.privacy-policy .lead-3 {
    font-size: 12px;
    line-height: calc(40 / 24);
    margin-bottom: 47px;
  }
}
body.page-privacy-policy section.privacy-policy hr {
  width: 100%;
  border-top: 1px solid #b5b5b5;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.privacy-policy hr {
    margin-bottom: 14px;
  }
}
body.page-privacy-policy section.privacy-policy hr::before {
  content: "";
  width: 100px;
  position: absolute;
  border-top: 2px solid #b60005;
  left: 0;
  top: -2px;
}
body.page-privacy-policy section.privacy-policy h3 {
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: bold;
  margin-bottom: 20px;
  width: 27%;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.privacy-policy h3 {
    font-size: 15px;
    width: 100%;
    margin-bottom: 17px;
  }
}
body.page-privacy-policy section.privacy-policy .lead-4 {
  font-size: 14px;
  line-height: calc(28 / 14);
  margin-bottom: 95px;
  width: 73%;
}
@media screen and (max-width: 767px) {
  body.page-privacy-policy section.privacy-policy .lead-4 {
    width: 100%;
    font-size: 12px;
    line-height: calc(40 / 24);
    margin-bottom: 48px;
  }
}

body.post-type-archive-news section.header,
body.tax-news-cat section.header {
  height: 500px;
  position: relative;
  background: url("../images/news-header-1.jpg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.header,
body.tax-news-cat section.header {
    height: 200px;
    background: url("../images/news-header-sp-1.jpg") no-repeat center/cover;
  }
}
body.post-type-archive-news section.header p.lead-1,
body.tax-news-cat section.header p.lead-1 {
  font-size: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.header p.lead-1,
body.tax-news-cat section.header p.lead-1 {
    font-size: 36px;
  }
}
body.post-type-archive-news section.header h1,
body.tax-news-cat section.header h1 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.header h1,
body.tax-news-cat section.header h1 {
    font-size: 12px;
  }
}
body.post-type-archive-news section.list,
body.tax-news-cat section.list {
  padding-top: 120px;
  padding-bottom: 120px;
}
body.post-type-archive-news section.list .container,
body.tax-news-cat section.list .container {
  max-width: 900px !important;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.list,
body.tax-news-cat section.list {
    padding-top: 45px;
    padding-bottom: 60px;
  }
}
body.post-type-archive-news section.list h2,
body.tax-news-cat section.list h2 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
body.post-type-archive-news section.list .lead-1,
body.tax-news-cat section.list .lead-1 {
  font-size: 16px;
  text-align: center;
  color: #b60005;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.list .lead-1,
body.tax-news-cat section.list .lead-1 {
    margin-bottom: 18px;
  }
}
body.post-type-archive-news section.list .box-menu,
body.tax-news-cat section.list .box-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.list .box-menu,
body.tax-news-cat section.list .box-menu {
    margin: 0 -5px 36px;
  }
}
body.post-type-archive-news section.list .box-menu a,
body.tax-news-cat section.list .box-menu a {
  display: flex;
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin: 10px 12px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.list .box-menu a,
body.tax-news-cat section.list .box-menu a {
    margin: 10px 5px;
    font-size: 12px;
    width: 30%;
    height: 37px;
  }
}
body.post-type-archive-news section.list .box-menu a:nth-of-type(1),
body.tax-news-cat section.list .box-menu a:nth-of-type(1) {
  background: #b60005;
  color: #fff;
}
body.post-type-archive-news section.list .box-menu a:nth-of-type(2),
body.tax-news-cat section.list .box-menu a:nth-of-type(2) {
  background: #000;
  color: #fff;
}
body.post-type-archive-news section.list .box-menu a:nth-of-type(3),
body.tax-news-cat section.list .box-menu a:nth-of-type(3) {
  border: 1px solid #000;
}
body.post-type-archive-news section.list .news-list,
body.tax-news-cat section.list .news-list {
  margin-bottom: 48px;
}
body.post-type-archive-news section.list .news-list .news-list-item,
body.tax-news-cat section.list .news-list .news-list-item {
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-wrap: wrap;
}
body.post-type-archive-news section.list .news-list .news-list-item .cat,
body.tax-news-cat section.list .news-list .news-list-item .cat {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 24px;
  color: #fff;
  background: #b60005;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.list .news-list .news-list-item .cat,
body.tax-news-cat section.list .news-list .news-list-item .cat {
    font-size: 12px;
    width: 60px;
    height: 20px;
  }
}
body.post-type-archive-news section.list .news-list .news-list-item .cat.topics,
body.tax-news-cat section.list .news-list .news-list-item .cat.topics {
  background: #000;
}
body.post-type-archive-news section.list .news-list .news-list-item time,
body.tax-news-cat section.list .news-list .news-list-item time {
  font-size: 14px;
  letter-spacing: 0;
  margin-left: 14px;
  margin-top: 9px;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.list .news-list .news-list-item time,
body.tax-news-cat section.list .news-list .news-list-item time {
    font-size: 10px;
  }
}
body.post-type-archive-news section.list .news-list .news-list-item h4,
body.tax-news-cat section.list .news-list .news-list-item h4 {
  width: 100%;
  margin-bottom: 44px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.list .news-list .news-list-item h4,
body.tax-news-cat section.list .news-list .news-list-item h4 {
    font-size: 12px;
    margin-bottom: 28px;
  }
}
body.post-type-archive-news section.list .news-list .news-list-item h4 a,
body.tax-news-cat section.list .news-list .news-list-item h4 a {
  color: #000 !important;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-news section.list .news-list .news-list-item h4 a,
body.tax-news-cat section.list .news-list .news-list-item h4 a {
    padding-right: 30px;
    display: block;
  }
}
body.post-type-archive-news section.list .news-list .news-list-item h4::after,
body.tax-news-cat section.list .news-list .news-list-item h4::after {
  content: ">";
  color: #b60005;
  font-size: 14px;
  line-height: 1;
  transform: scale(1, 2);
  position: absolute;
  right: 8px;
  top: calc(50% - 0.5em);
  font-weight: normal;
}

body.single-news section.header {
  padding-top: 120px;
  padding-bottom: 56px;
}
@media screen and (max-width: 767px) {
  body.single-news section.header {
    padding-top: 47px;
    padding-bottom: 50px;
  }
}
body.single-news section.header .heading-1 {
  text-align: center;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  body.single-news section.header .heading-1 {
    font-size: 36px;
    margin-bottom: 2px;
  }
}
body.single-news section.header h1 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  body.single-news section.header h1 {
    font-size: 12px;
  }
}
body.single-news section.content {
  padding-bottom: 130px;
}
@media screen and (max-width: 767px) {
  body.single-news section.content {
    padding-bottom: 60px;
  }
}
body.single-news section.content .container {
  max-width: 800px !important;
}
body.single-news section.content .news-header {
  border-top: 1px solid #b5b5b5;
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  body.single-news section.content .news-header {
    padding-top: 30px;
  }
}
body.single-news section.content .news-header p.category {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 25px;
  background: #b60005;
  color: #fff;
  font-size: 15px;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  body.single-news section.content .news-header p.category {
    width: 60px;
    height: 18px;
    font-size: 10px;
  }
}
body.single-news section.content .news-header p.category.topics {
  background: #000;
}
body.single-news section.content .news-header time {
  font-size: 14px;
  height: 25px;
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  body.single-news section.content .news-header time {
    font-size: 10px;
  }
}
body.single-news section.content .news-header h2.title {
  margin-top: 14px;
  margin-bottom: 44px;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  line-height: calc(24 / 20);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  body.single-news section.content .news-header h2.title {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
body.single-news section.content .news-content {
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 80px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  body.single-news section.content .news-content {
    padding-bottom: 56px;
    margin-bottom: 23px;
  }
}
body.single-news section.content .news-content p > img {
  max-width: unset;
}
@media screen and (max-width: 767px) {
  body.single-news section.content .news-content p > img {
    width: calc(100% + 50px);
    margin: 0 -25px 28px;
  }
}
body.single-news section.content .news-content p {
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  body.single-news section.content .news-content p {
    font-size: 12px;
  }
}

body.post-type-archive-csr section.header,
body.tax-csr-cat section.header {
  height: 500px;
  position: relative;
  background: url("../images/csr-header-1.jpg") no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.header,
body.tax-csr-cat section.header {
    background: url("../images/csr-header-sp-1.jpg") no-repeat center/cover;
    height: 200px;
  }
}
body.post-type-archive-csr section.header p.lead-1,
body.tax-csr-cat section.header p.lead-1 {
  font-size: 60px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.header p.lead-1,
body.tax-csr-cat section.header p.lead-1 {
    font-size: 36px;
  }
}
body.post-type-archive-csr section.header h1,
body.tax-csr-cat section.header h1 {
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.header h1,
body.tax-csr-cat section.header h1 {
    font-size: 12px;
  }
}
body.post-type-archive-csr section.lead,
body.tax-csr-cat section.lead {
  padding-top: 115px;
  padding-bottom: 108px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.lead,
body.tax-csr-cat section.lead {
    padding-top: 48px;
    padding-bottom: 60px;
  }
}
body.post-type-archive-csr section.lead h2,
body.tax-csr-cat section.lead h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.lead h2,
body.tax-csr-cat section.lead h2 {
    font-size: 16px;
  }
}
body.post-type-archive-csr section.lead .lead-1,
body.tax-csr-cat section.lead .lead-1 {
  font-size: 16px;
  color: #b60005;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.lead .lead-1,
body.tax-csr-cat section.lead .lead-1 {
    font-size: 12px;
  }
}
body.post-type-archive-csr section.lead .lead-2,
body.tax-csr-cat section.lead .lead-2 {
  font-size: 14px;
  line-height: 28px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.lead .lead-2,
body.tax-csr-cat section.lead .lead-2 {
    text-align: left;
    font-size: 12px;
    line-height: calc(40 / 24);
  }
}
body.post-type-archive-csr section.list,
body.tax-csr-cat section.list {
  padding-bottom: 70px;
  background: #f8f8f8;
}
body.post-type-archive-csr section.list h2,
body.tax-csr-cat section.list h2 {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  top: -20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list h2,
body.tax-csr-cat section.list h2 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
body.post-type-archive-csr section.list .box-select,
body.tax-csr-cat section.list .box-select {
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
  /* Style the arrow inside the select element: */
  /* Point the arrow upwards when the select box is open (active): */
  /* style the items (options), including the selected item: */
  /* Style items (options): */
  /* Hide the items when the select box is closed: */
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list .box-select,
body.tax-csr-cat section.list .box-select {
    margin-bottom: 40px;
  }
}
body.post-type-archive-csr section.list .box-select .custom-select,
body.tax-csr-cat section.list .box-select .custom-select {
  position: relative;
  font-family: Arial;
  width: 230px;
  height: 50px;
  margin: 0 10px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list .box-select .custom-select,
body.tax-csr-cat section.list .box-select .custom-select {
    font-size: 12px;
    width: 120px;
    height: 35px;
    margin: 0 4px;
  }
}
body.post-type-archive-csr section.list .box-select .custom-select select,
body.tax-csr-cat section.list .box-select .custom-select select {
  display: none;
  /*hide original SELECT element: */
}
body.post-type-archive-csr section.list .box-select .select-selected,
body.tax-csr-cat section.list .box-select .select-selected {
  background-color: DodgerBlue;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 50px !important;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list .box-select .select-selected,
body.tax-csr-cat section.list .box-select .select-selected {
    padding-left: 40px !important;
    height: 35px;
  }
}
body.post-type-archive-csr section.list .box-select .cat .select-selected,
body.tax-csr-cat section.list .box-select .cat .select-selected {
  background-color: #000;
}
body.post-type-archive-csr section.list .box-select .year .select-selected,
body.tax-csr-cat section.list .box-select .year .select-selected {
  background-color: #b60005;
}
body.post-type-archive-csr section.list .box-select .year .select-selected::before,
body.tax-csr-cat section.list .box-select .year .select-selected::before {
  background-image: url("../images/icon-cal.png");
}
body.post-type-archive-csr section.list .box-select .select-selected:after,
body.tax-csr-cat section.list .box-select .select-selected:after {
  position: absolute;
  content: "";
  top: calc(50% - 2px);
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list .box-select .select-selected:after,
body.tax-csr-cat section.list .box-select .select-selected:after {
    border: 4px solid transparent;
  }
}
body.post-type-archive-csr section.list .box-select .select-selected::before,
body.tax-csr-cat section.list .box-select .select-selected::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 17px;
  background: url("../images/icon-folder.png") no-repeat center/contain;
  left: 1em;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list .box-select .select-selected::before,
body.tax-csr-cat section.list .box-select .select-selected::before {
    width: 20px;
  }
}
body.post-type-archive-csr section.list .box-select .select-selected.select-arrow-active:after,
body.tax-csr-cat section.list .box-select .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list .box-select .select-selected.select-arrow-active:after,
body.tax-csr-cat section.list .box-select .select-selected.select-arrow-active:after {
    top: 18px;
  }
}
body.post-type-archive-csr section.list .box-select .select-items div,
body.post-type-archive-csr section.list .box-select .select-selected,
body.tax-csr-cat section.list .box-select .select-items div,
body.tax-csr-cat section.list .box-select .select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}
body.post-type-archive-csr section.list .box-select .select-items,
body.tax-csr-cat section.list .box-select .select-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
body.post-type-archive-csr section.list .box-select .select-items a,
body.tax-csr-cat section.list .box-select .select-items a {
  color: #fff;
}
body.post-type-archive-csr section.list .box-select .cat .select-items,
body.tax-csr-cat section.list .box-select .cat .select-items {
  background-color: #000;
}
body.post-type-archive-csr section.list .box-select .year .select-items,
body.tax-csr-cat section.list .box-select .year .select-items {
  background-color: #b60005;
}
body.post-type-archive-csr section.list .box-select .select-hide,
body.tax-csr-cat section.list .box-select .select-hide {
  display: none;
}
body.post-type-archive-csr section.list .box-select .select-items div:hover,
body.post-type-archive-csr section.list .box-select .same-as-selected,
body.tax-csr-cat section.list .box-select .select-items div:hover,
body.tax-csr-cat section.list .box-select .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
body.post-type-archive-csr section.list ul.csr-list,
body.tax-csr-cat section.list ul.csr-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item {
  max-width: 470px;
  width: 100%;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item {
    margin: 0 -13px 25px;
    display: block;
    width: calc(100% + 26px);
    max-width: calc(100% + 26px);
  }
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item > img,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item > img {
    width: 100%;
  }
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail {
  position: relative;
  top: -20px;
  background: #fff;
  width: calc(100% - 50px);
  margin-left: auto;
  padding: 0 28px 28px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail {
    width: calc(100% - 25px);
    top: -10px;
    padding-bottom: 16px;
  }
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail::after,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail::after {
  position: absolute;
  width: 11px;
  height: 122px;
  content: "";
  background: url("../images/csr-post-subtitle.png") no-repeat center/contain;
  right: -7px;
  top: calc((100% - 122px) / 2);
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail::after,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail::after {
    width: 9px;
    right: -5px;
  }
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail p.cat,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail p.cat {
  width: 300px;
  height: 40px;
  font-size: 14px;
  color: #fff;
  background: #000;
  display: flex;
  align-items: center;
  font-weight: bold;
  position: relative;
  top: -24px;
  left: -28px;
  padding-left: 55px;
  border-left: 5px solid #b60005;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail p.cat,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail p.cat {
    font-size: 11px;
    height: 30px;
    padding-left: 40px;
    top: -15px;
  }
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail p.cat::before,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail p.cat::before {
  position: absolute;
  content: "";
  width: 26px;
  height: 17px;
  background: url("../images/icon-folder.png") no-repeat center/contain;
  left: 1em;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail p.cat::before,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail p.cat::before {
    width: 20px;
  }
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail h3,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail h3 {
  font-size: 24px;
  line-height: calc(36 / 24);
  font-weight: bold;
  margin-bottom: 4px;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail h3,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail h3 {
    font-size: 16px;
  }
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail h3 a,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail h3 a {
  color: #000 !important;
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail time,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail time {
  font-size: 14px;
  color: #dcdcdc;
  letter-spacing: 0;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail time,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail time {
    font-size: 10px;
  }
}
body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail p.description,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail p.description {
  border-top: 1px solid #dcdcdc;
  padding-top: 10px;
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  body.post-type-archive-csr section.list ul.csr-list li.csr-list-item .post-detail p.description,
body.tax-csr-cat section.list ul.csr-list li.csr-list-item .post-detail p.description {
    font-size: 11px;
  }
}

body.single-csr section.header {
  padding-top: 120px;
  padding-bottom: 56px;
}
body.single-csr section.header .heading-1 {
  text-align: center;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 22px;
}
body.single-csr section.header h1 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
body.single-csr section.content {
  margin-bottom: 130px;
}
body.single-csr section.content .container {
  max-width: 780px !important;
}
body.single-csr section.content .csr-header {
  width: 100%;
  border-top: 1px solid #b5b5b5;
}
body.single-csr section.content .post-number {
  width: 190px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #b60005;
  color: #fff;
  margin: 0 auto 28px;
  position: relative;
  top: -12px;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
}
body.single-csr section.content .image-wrapper {
  position: relative;
}
body.single-csr section.content .image-wrapper::after {
  position: absolute;
  width: 11px;
  height: 122px;
  content: "";
  background: url("../images/csr-post-subtitle.png") no-repeat center/contain;
  right: -7px;
  top: calc((100% - 122px) / 2);
}
body.single-csr section.content .box-1 {
  max-width: 595px;
  width: 100%;
  margin: 0 auto;
}
body.single-csr section.content .box-1 .box-1-1 {
  background: #fff;
  width: 150px;
  margin-top: -35px;
  padding: 12px;
  z-index: 2;
  position: relative;
  margin-left: -12px;
  margin-bottom: 15px;
}
body.single-csr section.content .box-1 .box-1-1 .lead-1 {
  color: #b60005;
}
body.single-csr section.content .box-1 .box-1-1 .category {
  font-size: 14px;
  line-height: calc(24 / 14);
  font-weight: bold;
}
body.single-csr section.content .box-1 h2.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 6px;
}
body.single-csr section.content .box-1 time {
  display: inline-block;
  font-size: 14px;
  color: #a5a7ab;
  letter-spacing: 0;
  margin-bottom: 54px;
}
body.single-csr section.content hr {
  max-width: 700px;
  width: 100%;
  border-top: 1px solid #b5b5b5;
  margin: 0 auto 33px;
}
body.single-csr section.content .csr-content {
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 80px;
  margin-bottom: 60px;
}
body.single-csr section.content .csr-content .container {
  font-size: 14px;
  line-height: calc(28 / 14);
  max-width: 595px !important;
  width: 100%;
  margin: 0 auto;
}

body.page-recruit section.header {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.header {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: unset;
  }
}
body.page-recruit section.header .heading-1 {
  text-align: center;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.header .heading-1 {
    font-size: 36px;
  }
}
body.page-recruit section.header h1 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.header h1 {
    font-size: 12px;
  }
}
body.page-recruit section.lead-1 {
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-1 {
    margin-bottom: 30px;
  }
}
body.page-recruit section.lead-1 .container {
  position: relative;
  height: 500px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-1 .container {
    height: unset;
  }
}
body.page-recruit section.lead-1 .image-1 {
  position: absolute;
  height: 500px;
  width: calc(100vw - ((100vw - 1000px) / 2));
  top: 0;
  left: calc(((100vw - 1000px) / 2) * -1);
  background: url("../images/recruit-1.jpg") no-repeat center right/cover;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-1 .image-1 {
    left: 0;
    height: 175px;
    width: calc(100% - 25px);
    background: url("../images/recruit-sp-1.jpg") no-repeat center right/cover;
  }
}
body.page-recruit section.lead-1 .box-1 {
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-direction: row-reverse;
  width: 100%;
  padding-right: 65px;
  padding-top: 325px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-1 .box-1 {
    padding: unset;
    top: 95px;
    left: 20px;
    width: 100%;
  }
}
body.page-recruit section.lead-1 .box-1 > p {
  display: inline-block;
  background: #fff;
  font-size: 30px;
  padding-top: 0.3em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-1 .box-1 > p {
    font-size: 15px;
  }
}
body.page-recruit section.lead-1 .box-1 > p:nth-of-type(1) {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-1 .box-1 > p:nth-of-type(1) {
    margin-right: auto;
    margin-left: 6px;
  }
}
body.page-recruit section.lead-2 {
  overflow: hidden;
  font-size: 16px;
  line-height: calc(32 / 16);
  letter-spacing: 0;
  padding-bottom: 105px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 {
    padding-bottom: 52px;
  }
}
body.page-recruit section.lead-2 .box-1 {
  margin-bottom: 65px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-1 {
    margin-bottom: 45px;
  }
}
body.page-recruit section.lead-2 .box-1 .box-1-1 {
  width: 50%;
  position: relative;
  padding-top: 70px;
  left: -33px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-1 .box-1-1 {
    width: 100%;
    padding-top: 25px;
    order: 3;
    left: -25px;
  }
}
body.page-recruit section.lead-2 .box-1 .box-1-1 img {
  height: 300px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-1 .box-1-1 img {
    height: 175px;
  }
}
body.page-recruit section.lead-2 .box-1 .box-1-2 {
  width: 50%;
  position: relative;
  top: 0px;
  left: 27px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-1 .box-1-2 {
    width: 100%;
    left: unset;
  }
}
body.page-recruit section.lead-2 .box-1 .box-1-2 img {
  margin-bottom: 56px;
  position: relative;
  left: 26px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-1 .box-1-2 img {
    left: unset;
    margin-right: 57px;
    height: 74px;
    margin-left: auto;
    margin-bottom: 44px;
  }
}
body.page-recruit section.lead-2 .box-1 .box-1-2 .lead-1 {
  position: relative;
  left: -12px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-1 .box-1-2 .lead-1 {
    left: 15px;
    font-size: 11px;
    line-height: calc(50 / 22);
  }
}
body.page-recruit section.lead-2 .box-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-2 {
    margin-bottom: 35px;
  }
}
body.page-recruit section.lead-2 .box-2 .lead-2 {
  position: relative;
  display: flex;
  align-items: center;
  left: 70px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-2 .lead-2 {
    left: 0;
    font-size: 11px;
    line-height: calc(50 / 22);
    margin-bottom: 53px;
    width: 100%;
    text-align: center;
    display: inline-block;
  }
}
body.page-recruit section.lead-2 .box-2 img {
  position: relative;
  right: -50px;
}
body.page-recruit section.lead-2 .box-3 {
  display: flex;
  flex-wrap: wrap;
}
body.page-recruit section.lead-2 .box-3 .box-3-1 {
  width: 50%;
  position: relative;
  left: 57px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-3 .box-3-1 {
    left: -25px;
    display: flex;
    align-items: center;
  }
}
body.page-recruit section.lead-2 .box-3 .box-3-2 {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  left: 47px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-2 .box-3 .box-3-2 {
    font-size: 11px;
    line-height: calc(50 / 22);
    left: 13px;
  }
}
body.page-recruit section.image-1 {
  height: 443px;
  background: url("../images/recruit-6.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.image-1 {
    height: 200px;
    background: url("../images/recruit-sp-6.jpg") no-repeat center/cover;
  }
}
body.page-recruit section.lead-3 {
  padding-top: 104px;
  padding-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-3 {
    padding-top: 55px;
    padding-bottom: 90px;
  }
}
body.page-recruit section.lead-3::after {
  position: absolute;
  background: url("../images/recruit-7.png") no-repeat center/contain;
  content: "";
  width: 215px;
  height: 295px;
  top: -30px;
  right: calc(((100vw - 1000px) / 2) - 65px);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-3::after {
    right: 19px;
    height: 128px;
    top: -15px;
    width: 100%;
    background-position: right top;
  }
}
body.page-recruit section.lead-3 .box-1 {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-3 .box-1 {
    flex-direction: column-reverse;
  }
}
body.page-recruit section.lead-3 .box-1 .box-1-1 {
  width: 50%;
  position: relative;
  left: 60px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-3 .box-1 .box-1-1 {
    width: 100%;
    left: unset;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-3 .box-1 .box-1-1 img {
    width: 49%;
    height: 100%;
  }
}
body.page-recruit section.lead-3 .box-1 .box-1-1 img:nth-of-type(1) {
  margin-bottom: 7px;
}
body.page-recruit section.lead-3 .box-1 .box-1-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  left: 60px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-3 .box-1 .box-1-2 {
    width: 100%;
    left: unset;
    text-align: center;
    margin-bottom: 55px;
  }
}
body.page-recruit section.lead-3 .box-1 .box-1-2 h3 {
  font-weight: bold;
  font-size: 30px;
  line-height: calc(48 / 30);
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-3 .box-1 .box-1-2 h3 {
    font-size: 22.5px;
    line-height: calc(60 / 45);
  }
}
body.page-recruit section.lead-3 .box-1 .box-1-2 .lead-1 {
  font-size: 16px;
  line-height: calc(32 / 16);
}
@media screen and (max-width: 767px) {
  body.page-recruit section.lead-3 .box-1 .box-1-2 .lead-1 {
    font-size: 11px;
    line-height: calc(50 / 22);
    letter-spacing: 0;
  }
}
body.page-recruit section.merit {
  overflow: hidden;
  background: #eeeeee;
  padding-top: 136px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit {
    padding-top: 55px;
    padding-bottom: 16px;
  }
}
body.page-recruit section.merit .lead-1 {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .lead-1 {
    font-size: 30px;
  }
}
body.page-recruit section.merit h2 {
  font-size: 16px;
  color: #b60005;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit h2 {
    font-size: 12px;
    margin-bottom: 35px;
  }
}
body.page-recruit section.merit h3 {
  font-size: 24px;
  line-height: calc(40 / 24);
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit h3 {
    font-size: 16px;
    line-height: calc(40 / 32);
    margin-bottom: 30px;
  }
}
body.page-recruit section.merit h3::after {
  content: "";
  border-top: 1px solid #b60005;
  width: 30px;
  position: absolute;
  bottom: -19px;
  left: 0;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit h3::after {
    bottom: -15px;
  }
}
body.page-recruit section.merit .lead-2 {
  font-size: 14px;
  line-height: calc(24 / 14);
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .lead-2 {
    font-size: 12px;
  }
}
body.page-recruit section.merit .box-1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 84px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-1 {
    position: relative;
  }
  body.page-recruit section.merit .box-1::after {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 1px solid #b5b5b5;
    bottom: -42px;
  }
}
body.page-recruit section.merit .box-1 .box-1-1 {
  display: flex;
  order: 2;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-1 .box-1-1 {
    order: 1;
    width: 100%;
    align-items: start;
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-1 .box-1-1 img {
    width: 49.5%;
    margin-right: unset;
  }
}
body.page-recruit section.merit .box-1 .box-1-1 img:nth-of-type(1) {
  margin-right: 5px;
}
body.page-recruit section.merit .box-1 .box-1-2 {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 360px;
  padding: 0 55px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-1 .box-1-2 {
    order: 2;
    width: 100%;
    padding: 0 25px;
  }
}
body.page-recruit section.merit .box-2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 84px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-2 {
    position: relative;
  }
  body.page-recruit section.merit .box-2::after {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 1px solid #b5b5b5;
    bottom: -42px;
  }
}
body.page-recruit section.merit .box-2 .box-2-1 {
  display: flex;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-2 .box-2-1 {
    margin-bottom: 28px;
  }
  body.page-recruit section.merit .box-2 .box-2-1 img {
    height: 100%;
    width: 100%;
  }
}
body.page-recruit section.merit .box-2 .box-2-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 340px;
  padding: 0 45px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-2 .box-2-2 {
    width: 100%;
    padding: 0 25px;
  }
}
body.page-recruit section.merit .box-8 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 {
    flex-wrap: wrap;
  }
}
body.page-recruit section.merit .box-8 h3 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 h3 {
    text-align: left;
  }
}
body.page-recruit section.merit .box-8 h3::after {
  left: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 h3::after {
    left: 0;
  }
}
body.page-recruit section.merit .box-8 > * {
  width: 48%;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 > * {
    width: 100%;
  }
}
body.page-recruit section.merit .box-8 > * > * {
  border-bottom: 1px solid #b5b5b5;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 > * > * {
    padding-left: 25px;
    padding-right: 25px;
  }
}
body.page-recruit section.merit .box-8 .box-left {
  position: relative;
}
body.page-recruit section.merit .box-8 .box-left::after {
  content: "";
  position: absolute;
  right: -4%;
  top: 0;
  height: 100%;
  width: 1px;
  border-right: 1px solid #b5b5b5;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-left::after {
    display: none;
  }
}
body.page-recruit section.merit .box-8 .box-3 {
  padding-top: 30px;
  padding-bottom: 55px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-3 {
    padding-top: 0;
    padding-bottom: 42px;
  }
}
body.page-recruit section.merit .box-8 .box-4 {
  padding-top: 55px;
  padding-bottom: 42px;
  border-bottom: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-4 {
    position: relative;
  }
  body.page-recruit section.merit .box-8 .box-4::after {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 1px solid #b5b5b5;
    bottom: 0px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-4 {
    padding-top: 42px;
    padding-bottom: 14px;
  }
}
body.page-recruit section.merit .box-8 .box-4 .box-4-1 {
  order: 2;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-4 .box-4-1 {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -25px 27px;
  }
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-4 .box-4-1 img {
    width: 49%;
    height: 100%;
  }
}
body.page-recruit section.merit .box-8 .box-4 .box-4-1 img:nth-of-type(1) {
  margin-bottom: 5px;
}
body.page-recruit section.merit .box-8 .box-4 .box-4-2 {
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-4 .box-4-2 {
    order: 2;
  }
}
body.page-recruit section.merit .box-8 .box-5 {
  padding-top: 30px;
  padding-bottom: 57px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-5 {
    padding-top: 42px;
    padding-bottom: 16px;
  }
}
body.page-recruit section.merit .box-8 .box-5 .box-5-1 {
  order: 2;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-5 .box-5-1 {
    order: 1;
    margin: 0 -25px 27px;
  }
}
body.page-recruit section.merit .box-8 .box-5 .box-5-2 {
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.merit .box-8 .box-5 .box-5-2 {
    order: 2;
  }
}
body.page-recruit section.merit .box-8 .box-6 {
  padding-top: 53px;
  padding-bottom: 55px;
}
body.page-recruit section.merit .box-8 .box-7 {
  padding-top: 53px;
  border-bottom: 0;
  padding-bottom: 40px;
}
body.page-recruit section.voice {
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
body.page-recruit section.voice .container {
  max-width: 900px !important;
}
body.page-recruit section.voice img {
  width: 100%;
}
body.page-recruit section.voice .box-1 {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: row-reverse;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  width: 400px;
  padding-top: 28px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-1 {
    font-size: 19px;
    width: 100%;
    position: relative;
    justify-content: flex-start;
    padding-right: 45px;
  }
}
body.page-recruit section.voice .box-1 > p {
  padding: 0 12px;
}
body.page-recruit section.voice .box-1 .lead-1-1 {
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-2 {
    margin-top: -24px;
  }
}
body.page-recruit section.voice .box-2 .lead-1 {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 5px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-2 .lead-1 {
    font-size: 30px;
    text-align: left;
  }
}
body.page-recruit section.voice .box-2 h2 {
  font-size: 16px;
  font-weight: bold;
  color: #b60005;
  margin-bottom: 30px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-2 h2 {
    font-size: 12px;
    text-align: left;
  }
}
body.page-recruit section.voice .box-2 .lead-2 {
  font-size: 14px;
  line-height: calc(28 / 14);
  text-align: right;
  margin-bottom: 76px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-2 .lead-2 {
    font-size: 12px;
    text-align: left;
  }
}
body.page-recruit section.voice .box-3 {
  display: flex;
  flex-wrap: wrap;
}
body.page-recruit section.voice .box-3 > * {
  position: relative;
}
body.page-recruit section.voice .box-3 > * > div {
  position: absolute;
  left: 18px;
  bottom: 15px;
}
body.page-recruit section.voice .box-3 .number {
  font-size: 14px;
  color: #fff;
  background: #b60005;
  padding: 2px;
  display: inline-block;
  line-height: 1;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-3 .number {
    font-size: 10px;
  }
}
body.page-recruit section.voice .box-3 h4 {
  font-size: 22px;
  font-weight: bold;
  line-height: calc(28 / 22);
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0px 0px 5px #555;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-3 h4 {
    font-size: 15px;
  }
}
body.page-recruit section.voice .box-3 .lead-1 {
  font-size: 14px;
  line-height: calc(18 / 14);
  color: #fff;
  text-shadow: 0px 0px 5px #555;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-3 .lead-1 {
    font-size: 13px;
  }
}
body.page-recruit section.voice .box-3 .lead-1 span {
  font-size: 12px;
}
body.page-recruit section.voice .box-3 .box-3-1 {
  margin-top: auto;
  width: 500px;
  height: 370px;
  display: flex;
  align-items: flex-end;
  margin-right: 10px;
  margin-bottom: 10px;
  border-left: 15px solid #b60005;
  background: url("../images/recruit-16.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-3 .box-3-1 {
    height: 225px;
    background: url("../images/recruit-sp-16.jpg") no-repeat top center/cover;
    width: calc(100vw - 25px);
    margin-right: 0;
    margin-left: -25px;
    border-left: unset;
    border-right: 9px solid #b50005;
    margin-bottom: 21px;
  }
}
body.page-recruit section.voice .box-3 .box-3-2 {
  width: 390px;
  height: 540px;
  margin-bottom: 10px;
  background: url("../images/recruit-17.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-3 .box-3-2 {
    height: 225px;
    background: url("../images/recruit-sp-17.jpg") no-repeat top center/cover;
    margin-right: -25px;
    width: calc(100vw - 25px);
    margin-bottom: 21px;
  }
}
body.page-recruit section.voice .box-3 .box-3-3 {
  width: 390px;
  height: 520px;
  margin-right: 10px;
  overflow: hidden;
  background: url("../images/recruit-18.jpg") no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-3 .box-3-3 {
    height: 225px;
    background: url("../images/recruit-sp-18.jpg") no-repeat top center/cover;
    width: calc(100vw - 25px);
    margin-right: 0;
    margin-left: -25px;
    border-left: unset;
    margin-bottom: 21px;
  }
}
body.page-recruit section.voice .box-3 .box-3-4 {
  width: 55%;
  height: 520px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-3 .box-3-4 {
    height: 225px;
    margin-bottom: 21px;
    width: calc(100vw - 25px);
    margin-right: -25px;
  }
}
body.page-recruit section.voice .box-3 .box-3-4::after {
  position: absolute;
  content: "";
  width: calc(((100vw - 900px) / 2) + 500px);
  height: 100%;
  left: 0;
  top: 0;
  background: url("../images/recruit-19.jpg") no-repeat center/cover;
  z-index: -1;
  border-bottom: 15px solid #000;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.voice .box-3 .box-3-4::after {
    width: 100%;
    background: url("../images/recruit-sp-19.jpg") no-repeat top center/cover;
    border-bottom: 0;
    border-left: 9px solid #000;
  }
}
body.page-recruit section.voice .box-3 .box-3-4 .lead-1 {
  margin-bottom: 15px;
}
body.page-recruit section.requirements {
  background: #eeeeee;
  padding-top: 95px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements {
    padding-top: 55px;
    padding-bottom: 63px;
  }
}
body.page-recruit section.requirements .container {
  max-width: 900px !important;
}
body.page-recruit section.requirements h2 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements h2 {
    font-size: 16px;
  }
}
body.page-recruit section.requirements .lead-1 {
  font-size: 16px;
  color: #b60005;
  text-align: center;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .lead-1 {
    font-size: 12px;
  }
}
body.page-recruit section.requirements .box-1 {
  background: #fff;
  padding: 25px 50px 15px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-1 {
    padding: 10px 12.5px 5px;
    margin: 0 -12.5px 32px;
  }
}
body.page-recruit section.requirements .box-1 table {
  font-size: 14px;
  line-height: calc(24 / 14);
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-1 table {
    font-size: 12px;
    line-height: calc(40 / 24);
  }
}
body.page-recruit section.requirements .box-1 table tr th {
  font-weight: bold;
  width: 20%;
  padding-left: 30px;
  padding-top: 34px;
  padding-bottom: 34px;
  text-align: left;
  border-bottom: 1px solid #b60005;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-1 table tr th {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 90px;
    padding-left: 7px;
    text-align: left;
  }
}
body.page-recruit section.requirements .box-1 table tr td {
  width: 80%;
  padding-left: 90px;
  border-bottom: 1px solid #aaa;
  padding-top: 34px;
  padding-bottom: 34px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-1 table tr td {
    padding-top: 20px;
    padding-bottom: 20px;
    width: calc(100% - 90px);
    padding-left: 16px;
  }
}
body.page-recruit section.requirements .box-1 table tr td span {
  color: #fff;
}
body.page-recruit section.requirements .box-1 table tr:last-of-type > * {
  border-bottom: 0;
}
body.page-recruit section.requirements .box-2 {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-2 {
    margin: 0 -12.5px;
  }
}
body.page-recruit section.requirements .box-2 .box-2-1 {
  background: #000;
  padding: 24px 15px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-2 .box-2-1 {
    padding: 16px 15px;
  }
}
body.page-recruit section.requirements .box-2 .box-2-1 h3 {
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-2 .box-2-1 h3 {
    font-size: 16px;
  }
}
body.page-recruit section.requirements .box-2 .box-2-1 .lead-2 {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-2 .box-2-1 .lead-2 {
    font-size: 12px;
  }
}
body.page-recruit section.requirements .box-2 .box-2-2 {
  background: #b60005;
  font-size: 14px;
  line-height: calc(24 / 14);
  padding: 36px 15px 28px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-2 .box-2-2 {
    font-size: 12px;
    padding: 16px 15px 18px;
  }
}
body.page-recruit section.requirements .box-2 .box-2-2 .lead-4 span {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  body.page-recruit section.requirements .box-2 .box-2-2 .lead-4 span {
    font-size: 30px;
    display: block;
  }
}