@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  line-height: 24px;
  -webkit-animation: fadein 1s forwards;
  animation: fadein 1s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 500px) {
  h2 {
    font-size: 27px;
  }
}

.h2__title {
  text-align: center;
  margin: 100px 0;
}
.h2__title--sub {
  display: block;
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 20px;
  margin-top: 20px;
}

.h2__Orange {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 8px solid #f86f00;
  margin-bottom: 80px;
  margin-top: 20px;
}
@media screen and (max-width: 500px) {
  .h2__Orange {
    border-bottom: 5px solid #f86f00;
    margin-bottom: 40px;
  }
}

.flexReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.pc {
  display: block;
}
@media screen and (max-width: 1279px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 1279px) {
  .sp {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .sp {
    display: block;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: white;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .header {
    padding: 10px;
  }
}

.siteName {
  width: auto;
}
.siteName img {
  height: 100%;
  max-height: 58px;
}
@media screen and (max-width: 1279px) {
  .siteName img {
    max-height: 58px;
  }
}
@media screen and (max-width: 500px) {
  .siteName img {
    max-height: 40px;
  }
}

.nav__list {
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav__list a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav__list a:hover {
  color: #f86f00;
}
.nav__listItem:not(:last-child) {
  margin-right: 24px;
}
@media screen and (max-width: 500px) {
  .nav__listItem:not(:last-child) {
    margin-right: 10px;
  }
}
.nav__btn {
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: #f86f00;
  border: 2px solid #f86f00;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
}
.nav__btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.nav__btn:hover:after {
  border-color: #f86f00;
}
@media screen and (max-width: 500px) {
  .nav__btn {
    font-size: 14px;
    padding: 10px 5px;
  }
}
.nav__btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.nav__btn:hover:after {
  background-color: #f86f00;
}
.nav__btn::after {
  content: "";
  background-color: white;
  display: inline-block;
  width: 25px;
  height: 20px;
  margin: -3px 0 0 10px;
  -webkit-mask: url("../img/icon_mail.svg");
  mask: url("../img/icon_mail.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .nav__btn::after {
    width: 20px;
    height: 16px;
    margin: -3px 0 0 5px;
  }
}
@media screen and (max-width: 1279px) {
  .nav .pc {
    display: none;
  }
}

.overlay {
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 100;
}

.hmbIcon {
  cursor: pointer;
  position: relative;
  height: 58px;
  width: 58px;
  border-radius: 3px;
  background: #f86f00;
  z-index: 300;
}
.hmbIcon span {
  background-color: white;
  height: 2px;
  left: 11px;
  position: absolute;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 35px;
}
.hmbIcon--top {
  top: 15px;
}
.hmbIcon--center {
  top: 29px;
}
.hmbIcon--bottom {
  top: 42px;
}
@media screen and (max-width: 500px) {
  .hmbIcon {
    height: 39px;
    width: 39px;
    border-radius: 2px;
  }
  .hmbIcon span {
    height: 2px;
    left: 5px;
    width: 28px;
  }
  .hmbIcon--top {
    top: 10px;
  }
  .hmbIcon--center {
    top: 19px;
  }
  .hmbIcon--bottom {
    top: 28px;
  }
}

.hmbMenu {
  background-color: #f3f3f3;
  overflow-y: auto;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  max-width: 600px;
  z-index: 200;
  top: 118px;
  opacity: 0;
  right: 0;
  pointer-events: none;
}
@media screen and (max-width: 1279px) {
  .hmbMenu {
    margin: 0;
  }
}
@media screen and (max-width: 500px) {
  .hmbMenu {
    top: 60px;
  }
}
.hmbMenu__list {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hmbMenu__item {
  width: 280px;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
}
.hmbMenu__item a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hmbMenu__item a:hover {
  color: #f86f00;
}
.hmbMenu__childItem {
  font-size: 14px;
  padding: 20px 0 0 16px;
  font-weight: normal;
}
.hmbMenu__childItem::before {
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  margin-right: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #f86f00;
  border-right: 2px solid #f86f00;
  color: #f86f00;
}

.hmbOpen .hmbMenu {
  opacity: 1;
  right: 0;
  pointer-events: all;
}
.hmbOpen .hmbIcon--top {
  top: 28px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 500px) {
  .hmbOpen .hmbIcon--top {
    top: 19px;
  }
}
.hmbOpen .hmbIcon--center {
  display: none;
}
.hmbOpen .hmbIcon--bottom {
  top: 28px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 500px) {
  .hmbOpen .hmbIcon--bottom {
    top: 19px;
  }
}
.hmbOpen .overlay {
  opacity: 0.8;
  visibility: visible;
}

.main {
  max-width: 1280px;
  margin: 0 auto;
  margin-bottom: 120px;
  -webkit-animation: fadein 3s forwards;
  animation: fadein 3s forwards;
}
@media screen and (max-width: 1023px) {
  .main {
    margin-bottom: 40px;
  }
}

.footer {
  background-color: #f3f3f3;
  width: 100%;
  padding: 80px 0 90px;
  position: absolute;
}
@media screen and (max-width: 1023px) {
  .footer {
    padding: 60px 0 90px;
  }
}
.footer__copyright {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: #f86f00;
  text-align: center;
  color: white;
  font-size: 12px;
  padding: 10px 0;
}
@media screen and (max-width: 1279px) {
  .footer__copyright {
    font-size: 10px;
  }
}
@media screen and (max-width: 500px) {
  .footer__copyright {
    text-align: left;
    padding-left: 10px;
  }
}
.footer__topBtn {
  position: absolute;
  right: 30px;
  font-size: 14px;
}
@media screen and (max-width: 500px) {
  .footer__topBtn {
    right: 10px;
  }
}
.footer__topBtn span::before {
  content: "";
  display: inline-block;
  height: 11px;
  width: 11px;
  margin-right: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: 2px solid white;
  border-right: 2px solid white;
  color: white;
  vertical-align: middle;
}
.footer__btnArea {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}
.footer__btnArea a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__btnArea a:hover {
  color: #f86f00;
}
.footer__btn {
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: #f86f00;
  border: 2px solid #f86f00;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  transition: all 0.3s;
}
.footer__btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.footer__btn:hover:after {
  border-color: #f86f00;
}
@media screen and (max-width: 500px) {
  .footer__btn {
    font-size: 14px;
    padding: 10px 5px;
  }
}
.footer__btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.footer__btn:hover:after {
  background-color: #f86f00;
}
.footer__btn::after {
  content: "";
  background-color: white;
  display: inline-block;
  width: 25px;
  height: 20px;
  margin: -5px 0 0 10px;
  -webkit-mask: url("../img/icon_dl.svg");
  mask: url("../img/icon_dl.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 500px) {
  .footer__btn::after {
    width: 20px;
    height: 16px;
    margin: -3px 0 0 5px;
  }
}

.footerNav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footerNav a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footerNav a:hover {
  color: #f86f00;
}
.footerNav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 30px;
  row-gap: 20px;
  -webkit-column-gap: 76px;
  -moz-column-gap: 76px;
  column-gap: 76px;
}
.footerNav__item {
  font-weight: bold;
}
.footerNav__childList {
  font-weight: normal;
}
.footerNav__addr {
  margin: 18px 0;
}
@media screen and (max-width: 1279px) {
  .footerNav__logo img {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .footerNav {
    padding: 10px;
  }
  .footerNav__logo img {
    width: 100%;
  }
}

.breadcrumb {
  background: #fafafa;
}
.breadcrumb a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.breadcrumb a:hover {
  color: #f86f00;
}
@media screen and (max-width: 500px) {
  .breadcrumb {
    font-size: 10px;
  }
}
.breadcrumb__list {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 22px 0;
}
@media screen and (max-width: 1279px) {
  .breadcrumb__list {
    padding: 22px 0;
  }
}
@media screen and (max-width: 500px) {
  .breadcrumb__list {
    padding: 11px 0;
  }
}
.breadcrumb__item {
  display: inline;
}
.breadcrumb__item:last-child a {
  pointer-events: none;
}
.breadcrumb__item::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: -4px 5px 0;
  vertical-align: middle;
}
@media screen and (max-width: 500px) {
  .breadcrumb__item::after {
    width: 5px;
    height: 5px;
  }
}
.breadcrumb__item:last-child:after {
  content: "";
  border: none;
}

.fv {
  position: relative;
}
.fv__img {
  width: 100%;
}
.fv__copy {
  position: absolute;
  width: 100%;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
}
@media screen and (max-width: 500px) {
  .fv__copy {
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%);
  }
}
.fv__copy--main {
  text-align: center;
  font-size: 46px;
  line-height: 64px;
  font-weight: bold;
  text-shadow: 2px 2px 8px #333;
}
@media screen and (max-width: 1279px) {
  .fv__copy--main {
    font-size: 32px;
    line-height: 44px;
  }
}
@media screen and (max-width: 500px) {
  .fv__copy--main {
    font-size: 18px;
    line-height: 26px;
  }
}
.fv__copy--main span {
  color: #f86f00;
  text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
}
@media screen and (max-width: 500px) {
  .fv__copy--main span {
    color: #f86f00;
    text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
  }
}
.fv__copy--sub {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  text-shadow: 2px 2px 6px #333;
  text-align: center;
}
.fv__copy--btn {
  display: block;
  width: 174px;
  margin: 50px auto 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: #f86f00;
  border: 2px solid #f86f00;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 1279px) {
  .fv__copy--btn {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 500px) {
  .fv__copy--btn {
    margin: 10px auto 0;
  }
}
.fv__copy--btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.fv__copy--btn:hover:after {
  border-color: #f86f00;
}
@media screen and (max-width: 500px) {
  .fv__copy--btn {
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 500px) {
  .fv__copy--btn {
    font-size: 14px;
    padding: 6px 5px;
  }
}
.fv__copy--btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.fv__copy--btn:hover:after {
  border-color: #f86f00;
}
.fv__copy--btn:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: 2px solid white;
  border-right: 2px solid white;
  vertical-align: text-top;
}
@media screen and (max-width: 500px) {
  .fv__copy--btn {
    width: 130px;
    font-size: 12px;
    padding: 2px 10px;
  }
  .fv__copy--btn:after {
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    vertical-align: text-top;
  }
}

.news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  width: 96%;
  margin: 120px auto 0;
}
@media screen and (max-width: 1023px) {
  .news {
    display: block;
    margin: 40px auto 0;
  }
}
.news__title {
  padding-right: 40px;
  border-right: solid 8px #f86f00;
}
@media screen and (max-width: 1023px) {
  .news__title {
    padding: 0;
    margin-bottom: 20px;
    border-right: none;
    text-align: center;
  }
}
@media screen and (max-width: 1023px) {
  .news__underLine {
    padding-bottom: 10px;
    width: 100px;
    margin: 0 auto;
    border-bottom: solid 8px #f86f00;
  }
}
@media screen and (max-width: 500px) {
  .news__underLine {
    padding-bottom: 6px;
    border-bottom: solid 5px #f86f00;
  }
}
@media screen and (max-width: 1023px) {
  .news__content {
    max-width: 650px;
    margin: 0 auto;
  }
}
.news__item {
  max-width: 650px;
  position: relative;
  padding: 0 0 10px 100px;
}
.news__date {
  position: absolute;
  display: inline-block;
  margin-left: -100px;
}

.philosophy {
  text-align: center;
  margin: 80px auto 0;
}
@media screen and (max-width: 500px) {
  .philosophy {
    margin: 40px auto 0;
  }
}
.philosophy__bg {
  background-color: #fafafa;
}
.philosophy__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 500px) {
  .philosophy__item {
    display: block;
  }
}
.philosophy__item--left {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .philosophy__item--left {
    width: 100%;
  }
}
.philosophy__item--right {
  width: 50%;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .philosophy__item--right {
    width: 100%;
  }
}
.philosophy__img {
  width: 100%;
}
.philosophy__tx {
  width: 94%;
  margin: 40px auto;
  max-width: 504px;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .philosophy__tx {
    padding-bottom: 20px;
  }
}
.philosophy__num {
  color: #f86f00;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
.philosophy__main {
  font-size: 20px;
  font-weight: bold;
  line-height: 31px;
  margin-bottom: 20px;
}
.philosophy__btn {
  display: block;
  width: 150px;
  margin: 30px auto 30px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: #f86f00;
  border: 2px solid #f86f00;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
  transition: all 0.3s;
}
@media screen and (max-width: 1279px) {
  .philosophy__btn {
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 500px) {
  .philosophy__btn {
    margin: 10px auto 30px;
  }
}
.philosophy__btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.philosophy__btn:hover:after {
  border-color: #f86f00;
}
@media screen and (max-width: 500px) {
  .philosophy__btn {
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 500px) {
  .philosophy__btn {
    font-size: 14px;
    padding: 6px 5px;
  }
}
.philosophy__btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.philosophy__btn:hover:after {
  border-color: #f86f00;
}
.philosophy__btn:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -5px;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid white;
  border-right: 2px solid white;
  vertical-align: middle;
}
@media screen and (max-width: 500px) {
  .philosophy__btn {
    width: 130px;
    font-size: 14px;
    padding: 2px 10px;
  }
  .philosophy__btn:after {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    margin-left: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
}

.company {
  position: relative;
}
.company__img {
  width: 100%;
}
.company__copy {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
}
@media screen and (max-width: 500px) {
  .company__copy {
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%);
  }
}
.company__copy--main {
  max-width: 1000px;
  margin: 0 0 0 140px;
  font-size: 46px;
  line-height: 64px;
  font-weight: bold;
  text-shadow: 2px 2px 8px #333;
}
@media screen and (max-width: 1279px) {
  .company__copy--main {
    font-size: 27px;
    line-height: 44px;
    margin: 0 2%;
  }
}
@media screen and (max-width: 500px) {
  .company__copy--main {
    font-size: 17px;
    line-height: 26px;
    margin: 0 2%;
  }
}
.company__copy--sub {
  max-width: 500px;
  margin: 20px 0 0 140px;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  text-shadow: 2px 2px 6px #333;
}

.companyMenu {
  margin: 120px auto 0;
}
.companyMenu a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.companyMenu a:hover {
  color: #f86f00;
}
@media screen and (max-width: 1279px) {
  .companyMenu {
    margin: 40px auto 0;
  }
}
.companyMenu__list {
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  width: 96%;
  max-width: 1000px;
}
@media screen and (max-width: 1279px) {
  .companyMenu__list {
    -webkit-column-gap: 2%;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }
}
.companyMenu__item {
  width: 50%;
  position: relative;
}
.companyMenu__img {
  width: 100%;
}
.companyMenu__btn {
  position: absolute;
  bottom: 7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 150px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: #f86f00;
  border: 2px solid #f86f00;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
  transition: all 0.3s;
}
.companyMenu__btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.companyMenu__btn:hover:after {
  border-color: #f86f00;
}
@media screen and (max-width: 500px) {
  .companyMenu__btn {
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 500px) {
  .companyMenu__btn {
    font-size: 14px;
    padding: 6px 5px;
  }
}
.companyMenu__btn:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.companyMenu__btn:hover:after {
  border-color: #f86f00;
}
.companyMenu__btn:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -5px;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid white;
  border-right: 2px solid white;
  vertical-align: middle;
}
@media screen and (max-width: 500px) {
  .companyMenu__btn {
    width: 130px;
    font-size: 14px;
    padding: 2px 10px;
  }
  .companyMenu__btn:after {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    margin-left: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
}

.director {
  width: 96%;
  max-width: 1200px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1279px) {
  .director {
    margin: 40px auto 0;
  }
}

.president {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
}
@media screen and (max-width: 500px) {
  .president {
    display: block;
  }
}
.president__img {
  width: 43%;
}
.president__img img {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .president__img {
    width: 96%;
    max-width: 480px;
    margin: 0 auto;
  }
}
.president__info {
  width: 67%;
  margin: auto;
}
@media screen and (max-width: 500px) {
  .president__info {
    width: 96%;
  }
}
.president__infoName {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
}
.president__infoName span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  .president__infoName {
    margin-top: 30px;
  }
}
.president__infoRecord {
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
}
.president__infoRecord li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 7px;
  -moz-column-gap: 7px;
  column-gap: 7px;
}
.president__infoRecord--year {
  text-align: right;
  width: 24%;
}
.president__infoRecord--tx {
  width: 76%;
}

.memberList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
@media screen and (max-width: 500px) {
  .memberList {
    display: block;
  }
}
.memberList__item {
  width: 31%;
  margin-top: 60px;
}
@media screen and (max-width: 500px) {
  .memberList__item {
    width: 96%;
    margin: 60px auto 0;
  }
}

.member__img img {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .member__info {
    width: 96%;
  }
}
.member__infoName {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.member__infoName span {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}
.member__infoRecord {
  font-size: 14px;
  line-height: 24px;
  margin-top: 20px;
}
.member__infoRecord li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
.member__infoRecord li ::after {
  content: "";
}
.member__infoRecord--year {
  text-align: right;
  width: 35%;
}
.member__infoRecord--tx {
  width: 65%;
}

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

.expertise {
  position: relative;
}
.expertise__img {
  width: 100%;
}
.expertise__copy {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
}
@media screen and (max-width: 500px) {
  .expertise__copy {
    top: 55%;
    left: 50%;
    -webkit-transform: translate(-50%, -55%);
    transform: translate(-50%, -55%);
  }
}
.expertise__copy--main {
  max-width: 1000px;
  margin: 0 0 0 140px;
  font-size: 46px;
  line-height: 64px;
  font-weight: bold;
  text-shadow: 2px 2px 8px #333;
}
@media screen and (max-width: 1279px) {
  .expertise__copy--main {
    font-size: 27px;
    line-height: 44px;
    margin: 0 2%;
  }
}
@media screen and (max-width: 500px) {
  .expertise__copy--main {
    font-size: 17px;
    line-height: 26px;
    margin: 0 2%;
  }
}
.expertise__copy--sub {
  max-width: 500px;
  margin: 20px 0 0 140px;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  text-shadow: 2px 2px 6px #333;
}

.expertiseMenu {
  text-align: center;
  margin: 120px auto 0;
}
@media screen and (max-width: 1279px) {
  .expertiseMenu {
    margin: 40px auto 0;
  }
}
.expertiseMenu__acd {
  min-height: 100%;
}
.expertiseMenu__acd--check {
  display: none;
}
.expertiseMenu__acd--label {
  background: #f86f00;
  color: white;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  padding: 10px;
  width: 280px;
  position: relative;
}
.expertiseMenu__acd--label span::after {
  content: "";
  display: inline-block;
  color: white;
  width: 12px;
  height: 12px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  position: absolute;
  right: 8%;
  top: 45%;
  -webkit-transform: translateY(-45%) rotate(135deg);
  transform: translateY(-45%) rotate(135deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.expertiseMenu__acdContent {
  color: #f86f00;
  font-size: 17px;
  font-weight: bold;
  height: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 280px;
  margin: 0 auto;
  visibility: hidden;
}
.expertiseMenu__acd--check:checked + .expertiseMenu__acd--label + .expertiseMenu__acdContent {
  opacity: 1;
  height: 100%;
  visibility: visible;
}
.expertiseMenu__acd--check:checked + .expertiseMenu__acd--label span::after {
  top: 60%;
  -webkit-transform: translateY(-60%) rotate(-45deg);
  transform: translateY(-60%) rotate(-45deg);
}
.expertiseMenu__list {
  border: 2px solid #f86f00;
}
.expertiseMenu__item {
  padding: 10px;
  border-top: 2px solid #f86f00;
  position: relative;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.expertiseMenu__item:nth-of-type(1) {
  border-top: none;
}
.expertiseMenu__item::after {
  content: "";
  display: inline-block;
  color: #f86f00;
  width: 12px;
  height: 12px;
  border-top: 2px solid #f86f00;
  border-right: 2px solid #f86f00;
  position: absolute;
  right: 8%;
  top: 45%;
  -webkit-transform: translateY(-45%) rotate(135deg);
  transform: translateY(-45%) rotate(135deg);
}
.expertiseMenu__item:hover {
  background-color: #f86f00;
  color: white;
}
.expertiseMenu__item:hover::after {
  border-top: 2px solid white;
  border-right: 2px solid white;
  color: white;
}
.expertiseMenu__item a {
  display: block;
}

.expertiseCont {
  margin-top: 150px;
}
@media screen and (max-width: 500px) {
  .expertiseCont {
    margin-top: 80px;
  }
}
.expertiseCont__list {
  background-color: #fafafa;
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}
.expertiseCont__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.expertiseCont__item--tx {
  margin: auto;
  width: 40%;
  font-size: 36px;
  line-height: 44px;
  font-weight: bold;
  margin-left: 5%;
}
@media screen and (max-width: 1279px) {
  .expertiseCont__item--tx {
    font-size: 22px;
    line-height: 30px;
  }
}
@media screen and (max-width: 500px) {
  .expertiseCont__item--tx {
    font-size: 14px;
    line-height: 20px;
  }
}
.expertiseCont__item--tx span {
  display: block;
  font-size: 22px;
  color: #f86f00;
  font-weight: normal;
}
@media screen and (max-width: 1279px) {
  .expertiseCont__item--tx span {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 500px) {
  .expertiseCont__item--tx span {
    font-size: 11px;
    margin-bottom: 0;
  }
}
.expertiseCont__item--img {
  width: 60%;
}
.expertiseCont__item--img img {
  width: 100%;
}
.expertiseCont__item:nth-child(even) .expertiseCont__item--tx {
  margin-right: 7%;
}

.expertiseNote {
  text-align: right;
  width: 96%;
  margin: 15px auto 0;
  max-width: 1200px;
}

.contact {
  margin: auto;
  height: 100%;
  overflow: hidden;
  padding: 18px;
  width: 96%;
  max-width: 1000px;
}

.contact__phonesection {
  margin: 30px auto 90px auto;
}

.contact__phonesection p {
  margin-bottom: 16px;
}

.contact__phonesection--phonenumber {
  font-weight: bold;
  font-size: 20.8px;
  margin-bottom: 6px;
}

.contact__formSection dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .contact__formSection dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }
}

.contact__formSection dl dt {
  width: 30%;
  font-weight: bold;
  font-size: 16px;
  padding: 0 12px;
}
@media screen and (max-width: 500px) {
  .contact__formSection dl dt {
    width: 100%;
    margin-bottom: 8px;
    padding: 0;
  }
}

.contact__formSection input,
.contact__formSection select,
.contact__formSection textarea {
  border: 1px solid #333;
  font-size: 100%;
}

.contact__formSection dl dd {
  width: 70%;
}
@media screen and (max-width: 500px) {
  .contact__formSection dl dd {
    width: 100%;
  }
}

.contact__formSection dd input {
  width: 100%;
  height: 50px;
  padding: 15px 25px;
}

.contact__formSection textarea {
  width: 100%;
  min-height: 200px;
  height: 100%;
  resize: vertical;
  padding: 15px 25px;
}

.submit_aria {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: #f86f00;
  border: 2px solid #f86f00;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
  transition: all 0.3s;
  width: 280px;
  text-align: center;
  position: relative;
}
.submit_aria:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.submit_aria:hover:after {
  border-color: #f86f00;
}
@media screen and (max-width: 500px) {
  .submit_aria {
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 500px) {
  .submit_aria {
    font-size: 14px;
    padding: 6px 5px;
  }
}
.submit_aria:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.submit_aria:hover:after {
  border-color: #f86f00;
}
.submit_aria:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-top: -5px;
  margin-left: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid white;
  border-right: 2px solid white;
  vertical-align: middle;
}
@media screen and (max-width: 500px) {
  .submit_aria {
    width: 130px;
    font-size: 14px;
    padding: 2px 10px;
  }
  .submit_aria:after {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    margin-left: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
}
.submit_aria::after {
  position: absolute;
  top: 60%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.submit_aria input {
  border: none;
}

/* ----
.submit_aria input,
.submit_aria button{
    @include btn_round;
    transition: all 0.3s;
    width: 280px;
    text-align: center;
}

.submit_aria input:hover,
.submit_aria button:hover{
    @include hoverBtn;
}

.submit_aria input{
    margin-right: 24px;
}
*/
/*プライバシーポリシーチェック*/
.policy_check {
  text-align: center;
  font-size: 16px;
  margin-bottom: 60px;
}

/* 元々のチェックボックス（非表示） */
.policy_check input[type=checkbox] {
  display: none;
}

/* チェックボックスの代わりを成すラベル */
.policy_check input[type=checkbox] + span {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}

/* ラベルの左に表示させる正方形のボックス□ */
.policy_check input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color: #585753; /* 枠の色変更 お好きな色を */
  background-color: #FFF; /* 背景の色変更 お好きな色を */
}

/* チェックが入った時のレ点 */
.policy_check input[type=checkbox]:checked + span::after {
  content: "";
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -9px;
  top: 50%;
  left: 3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #333; /* チェックの色変更 お好きな色を */
}

/*セレクトボックスカスタム*/
.contact__formSection dd select {
  width: 100%;
  height: 50px;
  padding: 15px 25px;
}

.contact_select {
  position: relative;
  z-index: 1;
}

.contact_select .icon {
  position: absolute;
  z-index: 2;
  right: 1px;
  top: 1px;
  background: #fff;
  width: 50px;
  height: calc(100% - 2px);
  pointer-events: none;
}

.contact_select .icon:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-left: 2px solid #333;
}

.contact_thanks .contact_thanks_message {
  margin: 100px auto 90px auto;
  text-align: center;
  font-size: 16px;
  line-height: 2;
}

.contact_thanks .contact_thanks_message h3 {
  font-weight: bold;
  font-size: 1.75em;
  margin-bottom: 24px;
}

.contact_thanks .contact_thanks_message p {
  margin-bottom: 18px;
}

.contact_thanks .contact_thanks_message a {
  display: block;
  width: 280px;
  margin: auto;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: #f86f00;
  border: 2px solid #f86f00;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 18px 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 100px;
  padding: 12px 10px;
}
.contact_thanks .contact_thanks_message a:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.contact_thanks .contact_thanks_message a:hover:after {
  border-color: #f86f00;
}
@media screen and (max-width: 500px) {
  .contact_thanks .contact_thanks_message a {
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media screen and (max-width: 500px) {
  .contact_thanks .contact_thanks_message a {
    font-size: 14px;
    padding: 6px 5px;
  }
}
.contact_thanks .contact_thanks_message a a {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_thanks .contact_thanks_message a a:hover {
  color: #f86f00;
}

.contact_thanks .contact_thanks_message a:hover {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact_thanks .contact_thanks_message a:hover:hover {
  background: white;
  border: 2px solid #f86f00;
  color: #f86f00;
}
.contact_thanks .contact_thanks_message a:hover:hover:after {
  border-color: #f86f00;
}

.contact_thanks .contact__phonesection {
  margin: 0 auto;
  text-align: center;
}

.contact_thanks .contact__phonesection p {
  margin-bottom: 6px;
}

.privacypolicy {
  width: 96%;
  max-width: 1000px;
  margin: 100px auto 0;
}
@media screen and (max-width: 1279px) {
  .privacypolicy {
    margin: 40px auto 0;
  }
}
.privacypolicy p {
  margin-bottom: 20px;
}
.privacypolicy ol {
  list-style-type: decimal;
  margin-left: 1em;
}
.privacypolicy li {
  margin-bottom: 20px;
}
.privacypolicy li:last-child {
  margin-bottom: 0;
}

.information {
  width: 96%;
  max-width: 1000px;
  margin: 100px auto 0;
  font-size: 16px;
  line-height: 31px;
}
@media screen and (max-width: 1279px) {
  .information {
    margin: 40px auto 0;
  }
}
.information__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .information__content {
    margin-bottom: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
  }
}
.information__content--title {
  width: 30%;
  font-weight: bold;
  font-size: 16px;
  padding: 0 12px;
}
@media screen and (max-width: 500px) {
  .information__content--title {
    text-align: center;
    width: 100%;
    margin-bottom: 8px;
    padding: 0;
  }
}
.information__content--tx {
  width: 70%;
}
@media screen and (max-width: 500px) {
  .information__content--tx {
    text-align: center;
    width: 100%;
  }
}
.information__map {
  display: block;
}
.information__map iframe {
  width: 100%;
  height: 340px;
}

.breadcrumb__item.archive {
  display: none;
}

.mwform-checkbox-field-text {
  text-indent: -9999px;
}

.submit_aria .wpcf7-spinner {
  vertical-align: middle;
  margin-right: -45px;
}