@charset "UTF-8";
/********************
* header
*********************/
.header {
  width: 1200px;
  max-width: 94%;
  margin: 0px auto;
  height: 80px;
  background-color: #fff;
  border-radius: 20px;
  z-index: 10000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
}
@media (max-width: 780px) {
  .header {
    height: 60px;
    position: absolute;
  }
}
@media (max-width: 480px) {
  .header {
    top: 10px;
  }
}
.header .header_inner {
  width: 96%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1500;
}
.header .header_menu__content.pc_content {
  width: 96%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 780px) {
  .header .header_menu__content.pc_content {
    display: none;
  }
}
.header .header_menu__content.pc_content .logo {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .header_menu__content.pc_content .gnav {
  max-width: 90%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 780px) {
  .header .header_menu__content.pc_content .gnav {
    height: 60px;
  }
}
.header .header_menu__content.pc_content .gnav .nav_lists {
  width: 540px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  text-align: center;
  margin: 0;
}
.header .header_menu__content.pc_content .gnav .nav_lists .nav_list {
  padding: 10px 10px;
}
.header .header_menu__content.pc_content .gnav .nav_lists .nav_list .link {
  text-decoration: none;
  color: #191919;
  letter-spacing: 0.06em;
  position: relative;
}
.header .header_menu__content.pc_content .gnav .nav_lists .nav_list .link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #D1161B;
  bottom: -5px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.5s;
}
.header .header_menu__content.pc_content .gnav .nav_lists .nav_list .link:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.header .header_menu__content.pc_content .gnav .nav_lists .nav_list .link.sublists_link {
  position: relative;
}
.header .header_menu__content.pc_content .gnav .nav_lists .nav_list .sublists {
  display: none;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  padding: 14px 20px;
  text-align: left;
  line-height: 2.4;
  border-radius: 10px;
}
.header .header_menu__content.pc_content .gnav .nav_lists .nav_list:hover .link.sublists_link ~ .sublists {
  display: block;
  position: absolute;
  top: 60px;
}
@media (max-width: 780px) {
  .header .header_inner .gnav {
    display: none;
  }
  .header .menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #191919;
    font-size: 46px;
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: -5px;
  }
  .header .header_modal {
    width: 0%;
    margin-right: auto;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    border-radius: 20px 0 0 20px;
    background: #fff;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.2);
    transition: width 1s ease;
  }
  .header .header_modal .sp_gnav {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    width: 93%;
    margin: 0 auto;
  }
  .header .header_modal .sp_gnav .toggle_head {
    width: 100%;
    margin: 0 auto 50px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 20px;
  }
  .header .header_modal .sp_gnav .toggle_head .menu-toggle {
    position: absolute;
    right: 4.2%;
    top: 8%;
  }
  .header .header_modal .sp_gnav .toggle_head .menu-toggle_close {
    display: none;
  }
  .header .header_modal .sp_gnav .nav_lists {
    flex-direction: column;
    align-items: flex-start;
  }
  .header .header_modal .sp_gnav .nav_lists .nav_list {
    margin: 20px 0;
    padding: 0;
  }
  .header .header_modal .sp_gnav .nav_lists .nav_list .link {
    text-decoration: none;
    color: #191919;
    text-transform: uppercase;
    font-family: "Futura", sans-serif;
    letter-spacing: 0.1em;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.5s;
    position: relative;
  }
  .header .header_modal.open {
    width: 94%;
    margin-right: auto;
    height: 100vh;
    z-index: 5000;
    transition: width 1s ease;
  }
  .header .header_modal.open .sp_gnav {
    width: 93%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  .header .header_modal.open .sp_gnav .menu-toggle_close {
    display: block;
    position: relative;
  }
  .header .header_modal.open .sp_gnav .menu-toggle_close span.line_01 {
    width: 3px;
    height: 30px;
    background-color: #000;
    display: block;
    transform: rotate(45deg);
    position: absolute;
    top: -25px;
    right: 15px;
  }
  .header .header_modal.open .sp_gnav .menu-toggle_close span.line_02 {
    width: 3px;
    height: 30px;
    background-color: #000;
    display: block;
    transform: rotate(135deg);
    position: absolute;
    top: -25px;
    right: 15px;
  }
}

@media (max-width: 780px) {
  .header {
    background-color: transparent;
    box-shadow: none;
  }
}
@media (max-width: 780px) {
  .header .header_inner .hamburger-menu__content.sp_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }
}
.header .header_inner .hamburger-menu__content.sp_content .logo {
  display: none;
}
@media (max-width: 780px) {
  .header .header_inner .hamburger-menu__content.sp_content .logo {
    display: block;
    width: 50px;
    max-width: 40%;
    z-index: 1;
  }
  .header .header_inner .hamburger-menu__content.sp_content .logo img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .header .header_inner .hamburger-menu__content.sp_content .logo {
    max-width: 60%;
  }
}
.header .header_inner .hamburger-menu__content.sp_content .header-logo__content {
  display: none;
}
@media (max-width: 780px) {
  .header .header_inner .hamburger-menu__content.sp_content .header-logo__content {
    display: block;
    width: 100px;
    max-width: 40%;
    z-index: 1;
  }
  .header .header_inner .hamburger-menu__content.sp_content .header-logo__content img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 480px) {
  .header .header_inner .hamburger-menu__content.sp_content .header-logo__content {
    max-width: 60%;
  }
}
.header .header_inner .hamburger-menu__content.sp_content .contact-link {
  display: none;
}
@media (max-width: 780px) {
  .header .header_inner .hamburger-menu__content.sp_content .contact-link {
    background-color: #D1161B;
    color: #fff;
    width: 90px;
    height: 65px;
    border-radius: 25px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    right: 95px;
    top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 10px;
    font-weight: bold;
    z-index: 1000;
  }
  .header .header_inner .hamburger-menu__content.sp_content .contact-link::before {
    content: "";
    margin-bottom: 5px;
    width: 15px;
    height: 10px;
    background-image: url(../images/common/mail-icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-check {
  display: none;
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-btn {
  background-color: #fff;
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-btn span.line1 {
  animation: dot-anime01 0.5s ease forwards;
}
@keyframes dot-anime01 {
  0% {
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 35%;
    top: 35%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-btn span.line2 {
  animation: dot-anime02 0.5s ease forwards;
}
@keyframes dot-anime02 {
  0% {
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 35%;
    top: 65%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-btn span.line3 {
  animation: dot-anime03 0.5s ease forwards;
}
@keyframes dot-anime03 {
  0% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-btn span.line4 {
  animation: dot-anime04 0.5s ease forwards;
}
@keyframes dot-anime04 {
  0% {
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 65%;
    top: 35%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-btn span.line5 {
  animation: dot-anime05 0.5s ease forwards;
}
@keyframes dot-anime05 {
  0% {
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 65%;
    top: 65%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-btn span.menu {
  display: none;
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-btn span.close {
  display: block;
  color: #fff;
  background-color: #fff;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-btn {
  display: none;
}
@media (max-width: 780px) {
  .header .header_inner .hamburger-menu__content.sp_content .hamburger-btn {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 1000;
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-btn .line {
  display: none;
}
@media (max-width: 780px) {
  .header .header_inner .hamburger-menu__content.sp_content .hamburger-btn .line {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background-color: #D1161B;
    transition: 1s;
    position: absolute;
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-btn .line1 {
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  animation: dot-anime01-re 0.5s ease forwards;
}
@keyframes dot-anime01-re {
  0% {
    left: 35%;
    top: 35%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-btn .line2 {
  left: 30%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  animation: dot-anime02-re 0.5s ease forwards;
}
@keyframes dot-anime02-re {
  0% {
    left: 35%;
    top: 65%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-btn .line3 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  animation: dot-anime03-re 0.5s ease forwards;
}
@keyframes dot-anime03-re {
  0% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-btn .line4 {
  left: 70%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  animation: dot-anime04-re 0.5s ease forwards;
}
@keyframes dot-anime04-re {
  0% {
    left: 65%;
    top: 35%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-btn .line5 {
  left: 70%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  animation: dot-anime05-re 0.5s ease forwards;
}
@keyframes dot-anime05-re {
  0% {
    left: 65%;
    top: 65%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  50% {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  100% {
    left: 70%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-btn .close {
  display: none;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav {
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s;
  height: 100vh;
  width: 100%;
  background-color: #D1161B;
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner {
  width: 100%;
  height: 100%;
  background-color: #D1161B;
  margin: 0 auto;
  padding: 80px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .scroll-box {
  overflow-y: scroll;
  height: 90%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .hamburger-menu_gnav_lists {
  width: 100%;
  margin: 50px 0 50px;
  padding-top: 80px;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .hamburger-menu_gnav_lists .link {
  color: #fff;
  text-transform: uppercase;
  font-family: kozuka-mincho-pro, serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 0 20px 10px;
  position: relative;
  border-bottom: 1px solid #fff;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .hamburger-menu_gnav_lists .link:after {
  content: "";
  height: 45px;
  width: 45px;
  background-image: url(../images/common/common-arrow_white.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .hamburger-menu_gnav_lists .sublists {
  border-bottom: 1px solid #fff;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .hamburger-menu_gnav_lists .sublists .sublist .link {
  border: none;
  text-indent: 1em;
  padding: 12px 0 12px 10px;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .hamburger-menu_cta {
  margin: 30px auto 0;
  background-color: #fff;
  border: 1px solid #35BE51;
  border-radius: 15px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .hamburger-menu_cta .text {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .hamburger-close-btn {
  width: 100%;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .btn {
  position: relative;
  height: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin: 0 auto;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .btn .base_btn {
  width: 400px;
  max-width: 60%;
  height: 50px;
  color: #fff;
}
@media (max-width: 780px) {
  .header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .btn .base_btn {
    color: #D1161B;
  }
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .btn .base_btn span {
  color: #fff;
  border-color: #fff;
}
.header .header_inner .hamburger-menu__content.sp_content .hamburger-menu__gnav .hamburger-menu__gnav__inner .btn .base_btn span::before {
  border-color: #fff;
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .header-logo__content .orange-logo {
  display: none;
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .header-logo__content .white-logo {
  display: block;
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .hamburger-menu__gnav {
  visibility: visible;
  opacity: 1;
  z-index: 100;
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .contact-link {
  color: #D1161B;
  background-color: #fff;
}
.header .header_inner .hamburger-menu__content.sp_content #hamburger-check:checked ~ .contact-link::before {
  background-image: url(../images/common/mail-icon_orange.png);
}

body.body.toppage.hidden {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}
body.modal-open header {
  display: none;
}

/********************
* footer
*********************/
.footer {
  padding: 40px 0 0;
  background-color: #fff;
}
.footer .footer_inner {
  width: 1200px;
  max-width: 94%;
  margin: 0px auto 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 780px) {
  .footer .footer_inner {
    flex-direction: column;
  }
}
.footer .footer_inner .imgbox {
  width: 50%;
}
@media (max-width: 780px) {
  .footer .footer_inner .imgbox {
    width: 100%;
    text-align: center;
    margin: 0 0 40px;
  }
}
.footer .footer_inner .imgbox .img {
  margin: 0 0 10px;
  width: 60px;
}
.footer .footer_inner .imgbox .name {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
@media (max-width: 780px) {
  .footer .footer_inner .imgbox .name {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}
@media (max-width: 480px) {
  .footer .footer_inner .imgbox .name {
    font-size: 14px;
  }
}
.footer .footer_inner .imgbox .add {
  margin: 0 0 6px;
}
.footer .footer_inner .f_navbox {
  width: 50%;
  align-items: flex-start;
}
@media (max-width: 780px) {
  .footer .footer_inner .f_navbox {
    width: 100%;
  }
}
.footer .footer_inner .f_navbox .f_box {
  width: 50%;
}
.footer .footer_inner .f_navbox .f_box .f_nav .list {
  margin: 0 0 12px;
}
.footer .footer_inner .f_navbox .f_box .f_nav .list .link {
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer .footer_inner .f_navbox .f_box .f_nav .parlist {
  font-weight: 600;
}
.footer .footer_inner .f_navbox .f_box .f_nav .parlist .sublists {
  margin: 10px 0 0;
}
.footer .footer_inner .f_navbox .f_box .f_nav .parlist .sublists .sublist {
  margin: 0 0 8px 1em;
}
.footer .footer_inner .f_navbox .f_box .f_nav .parlist .sublists .sublist .sublink {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 780px) {
  .footer .footer_inner .f_navbox .f_box .f_nav .parlist .sublists .sublist .sublink {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer .footer_inner .f_navbox .f_box .f_nav .parlist .sublists .sublist .sublink {
    font-size: 10px;
  }
}
.footer .f_bnr {
  width: 1200px;
  max-width: 94%;
  margin: 0 auto 20px;
  display: flex;
  align-items: self-start;
  flex-direction: column;
}
@media (max-width: 780px) {
  .footer .f_bnr {
    align-items: center;
  }
}
.footer .f_bnr .link {
  margin: 0 10px 10px 0;
  border-radius: 4px;
}
@media (max-width: 780px) {
  .footer .f_bnr .link {
    margin: 0 0 10px;
  }
}
.footer .f_bnr .link .bnr {
  width: 300px;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
.footer .copy {
  border-top: 1px solid #191919;
  text-align: center;
  padding: 14px 0;
  font-size: 12px;
}

/********************
* fv_anime
*********************/
.fv_contents {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv_text_contents {
  position: fixed;
  left: 0;
  right: 0;
  height: 100vh;
  min-height: 600px;
  max-height: 840px;
  z-index: 999999;
  animation: fv_contents 4.5s forwards;
}
.fv_text_contents .fv_text {
  position: fixed;
  left: 0;
  right: 0;
  top: 38%;
  display: block;
  text-align: center;
  font-size: 70px;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin: 0 auto 10px;
  animation: bright 4s forwards;
  transform: scale(1.1);
  z-index: 10000;
}
@media (max-width: 780px) {
  .fv_text_contents .fv_text {
    font-size: 7vw;
  }
}
@media (max-width: 480px) {
  .fv_text_contents .fv_text {
    font-size: 13vw;
  }
  .fv_text_contents .fv_text .min {
    font-size: 11vw;
  }
}
.fv_text_contents .fv_text .submidashi {
  font-size: 22px;
  letter-spacing: 0.06em;
  display: block;
  margin: 10px 0 0;
}
@media (max-width: 780px) {
  .fv_text_contents .fv_text .submidashi {
    font-size: 3.2vw;
  }
}
@media (max-width: 480px) {
  .fv_text_contents .fv_text .submidashi {
    font-size: 5.2vw;
  }
}
@keyframes fv_contents {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  95% {
    opacity: 0;
    display: block;
  }
  100% {
    display: none;
  }
}
@keyframes bright {
  0% {
    opacity: 0;
    transform: scale(1.1);
    z-index: 10000;
  }
  30% {
    opacity: 0.6;
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
  }
}

.transitionAnimationMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: linear-gradient(#000, #000), url("https://ics-creative.github.io/241025_mask_composite/assets/mask_circle.svg");
          mask-image: linear-gradient(#000, #000), url("https://ics-creative.github.io/241025_mask_composite/assets/mask_circle.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 0 0, center center;
          mask-position: 0 0, center center;
  -webkit-mask-size: 100% 100%, 0 0;
          mask-size: 100% 100%, 0 0;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation-timing-function: var(--ease-out-quart);
  animation-fill-mode: forwards;
}

.transitionAnimationMask0 {
  animation-duration: 1s;
  animation-delay: 2.8s;
}
.transitionAnimationMask0.isActive {
  animation-name: maskAnimation;
}

.transitionAnimationMask1 {
  background-color: #ECC120;
  animation-duration: 1.2s;
  animation-delay: 2.6s;
}
.transitionAnimationMask1.isActive {
  animation-name: maskAnimation;
}

.transitionAnimationMask2 {
  background-color: #EEAC1B;
  animation-duration: 1.5s;
  animation-delay: 2.4s;
}
.transitionAnimationMask2.isActive {
  animation-name: maskAnimation;
}

.transitionAnimationMask3 {
  background-color: #E67B19;
  animation-duration: 1.8s;
  animation-delay: 2.2s;
}
.transitionAnimationMask3.isActive {
  animation-name: maskAnimation;
}

.transitionAnimationMask4 {
  background-color: #D1161B;
  animation-duration: 2.1s;
  animation-delay: 2s;
}
.transitionAnimationMask4.isActive {
  animation-name: maskAnimation;
}

@keyframes maskAnimation {
  0% {
    -webkit-mask-size: 100% 100%, 0 0;
            mask-size: 100% 100%, 0 0;
  }
  100% {
    -webkit-mask-size: 300% 300%, 300% 300%;
            mask-size: 300% 300%, 300% 300%;
    display: none;
  }
}
/********************
* toppage
*********************/
/*toppage common*/
.toppage .section {
  padding: 150px 0 80px;
}
@media (max-width: 780px) {
  .toppage .section {
    padding: 100px 0 50px;
  }
}
@media (max-width: 480px) {
  .toppage .section {
    padding: 70px 0 50px;
  }
}

.section .toppagettl {
  position: relative;
  font-size: 28px;
  letter-spacing: 0.06em;
  margin: 0 0 24px;
}
@media (max-width: 780px) {
  .section .toppagettl {
    font-size: 20px;
  }
}
.section .toppagettl .en {
  position: absolute;
  font-size: 100px;
  letter-spacing: 0.06em;
  bottom: -8px;
  text-transform: uppercase;
  font-family: "Futura", sans-serif;
  color: #D1161B;
  opacity: 0.4;
  z-index: -1;
}
@media (max-width: 780px) {
  .section .toppagettl .en {
    font-size: 70px;
  }
}
@media (max-width: 480px) {
  .section .toppagettl .en {
    font-size: 50px;
  }
}

/*toppage fv*/
.toppage .fv_sec {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 840px;
}
@media (max-width: 480px) {
  .toppage .fv_sec {
    height: 85vh;
    min-height: 400px;
  }
}
.toppage .fv_sec .bg_cir {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  background-image: linear-gradient(200deg, #ECC120, #EEAC1B, #E67B19, #D1161B);
  border-radius: 40% 60% 40% 50%/60% 60% 50% 60%;
  position: absolute;
  top: 3%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.toppage .fv_sec .member {
  width: 1000px;
  max-width: 94%;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.toppage .fv_sec .slider_content {
  display: flex;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.toppage .fv_sec .slider_content .slider {
  width: 100%;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 480px) {
  .toppage .fv_sec .slider_content .slider {
    width: 240%;
  }
}
.toppage .fv_sec .slider_content .slider .slide {
  margin: 0 30px 0 0;
}
.toppage .fv_sec .inner {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.toppage .fv_sec .inner .fv_text {
  text-align: center;
  position: relative;
  top: -45px;
  left: 0;
  right: 0;
}
@media (max-width: 480px) {
  .toppage .fv_sec .inner .fv_text {
    top: 0;
  }
}
.toppage .fv_sec .inner .fv_text .midashi {
  font-size: 70px;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin: 0 0 10px;
}
@media (max-width: 780px) {
  .toppage .fv_sec .inner .fv_text .midashi {
    font-size: 7vw;
  }
}
@media (max-width: 480px) {
  .toppage .fv_sec .inner .fv_text .midashi {
    font-size: 13vw;
  }
  .toppage .fv_sec .inner .fv_text .midashi .min {
    font-size: 11vw;
  }
}
.toppage .fv_sec .inner .fv_text .submidashi {
  font-size: 22px;
  letter-spacing: 0.06em;
}
@media (max-width: 780px) {
  .toppage .fv_sec .inner .fv_text .submidashi {
    font-size: 3.2vw;
  }
}
@media (max-width: 480px) {
  .toppage .fv_sec .inner .fv_text .submidashi {
    font-size: 5.2vw;
  }
}

.toppage .news_box {
  width: 1000px;
  max-width: 96%;
  height: 80px;
  margin: 0 auto 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}
@media (max-width: 780px) {
  .toppage .news_box {
    height: 60px;
  }
}
.toppage .news_box .inner .f_boxs {
  align-items: center;
  justify-content: flex-start;
  padding: 0 10% 0 0;
  position: relative;
}
.toppage .news_box .inner .f_boxs::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 33.333%;
  height: 30px;
  width: 30px;
  background-image: url(../images/common/arrow_red.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 780px) {
  .toppage .news_box .inner .f_boxs::after {
    width: 20px;
    height: 20px;
  }
}
.toppage .news_box .inner .f_boxs .ttl_box {
  background-color: #D1161B;
  height: 80px;
  width: 120px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 780px) {
  .toppage .news_box .inner .f_boxs .ttl_box {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .toppage .news_box .inner .f_boxs .ttl_box {
    width: 100px;
  }
}
.toppage .news_box .inner .f_boxs .ttl_box .text {
  color: #fff;
  font-family: "Futura", sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 780px) {
  .toppage .news_box .inner .f_boxs .ttl_box .text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .toppage .news_box .inner .f_boxs .ttl_box .text {
    font-size: 16px;
  }
}
.toppage .news_box .inner .f_boxs .text_box {
  padding: 20px 10px;
  max-width: 80%;
}
@media (max-width: 780px) {
  .toppage .news_box .inner .f_boxs .text_box {
    padding: 0;
    max-width: 70%;
  }
}
@media (max-width: 480px) {
  .toppage .news_box .inner .f_boxs .text_box {
    max-width: 65%;
  }
}
.toppage .news_box .inner .f_boxs .text_box .link {
  display: flex;
  align-items: center;
}
@media (max-width: 480px) {
  .toppage .news_box .inner .f_boxs .text_box .link {
    display: block;
  }
}
.toppage .news_box .inner .f_boxs .text_box .link .date {
  letter-spacing: 0.06em;
  margin: 0 20px;
  font-family: "Futura", sans-serif;
}
@media (max-width: 480px) {
  .toppage .news_box .inner .f_boxs .text_box .link .date {
    margin: 0 10px 5px;
    display: block;
    font-size: 10px;
  }
}
.toppage .news_box .inner .f_boxs .text_box .link .ttl {
  letter-spacing: 0.06em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .toppage .news_box .inner .f_boxs .text_box .link .ttl {
    margin: 0 0 0 10px;
  }
}

/*toppage service*/
.toppage .service_sec {
  position: relative;
}
.toppage .service_sec .logobg {
  width: 600px;
  max-width: 70%;
  height: 600px;
  background-image: url(../images/common/bg_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: -50px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 780px) {
  .toppage .service_sec .logobg {
    width: 300px;
    max-width: 70%;
    height: 300px;
    right: -8%;
  }
}
.toppage .service_sec .f_boxs {
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 42px;
}
@media (max-width: 480px) {
  .toppage .service_sec .f_boxs {
    flex-direction: column;
  }
}
.toppage .service_sec .f_boxs .img_box {
  width: 33%;
}
@media (max-width: 480px) {
  .toppage .service_sec .f_boxs .img_box {
    width: 100%;
    margin: 0 0 10px;
  }
}
.toppage .service_sec .f_boxs .text_box {
  width: 65%;
}
@media (max-width: 480px) {
  .toppage .service_sec .f_boxs .text_box {
    width: 100%;
  }
}
.toppage .service_sec .f_boxs .text_box .midashi {
  font-size: 24px;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  font-weight: 600;
}
@media (max-width: 780px) {
  .toppage .service_sec .f_boxs .text_box .midashi {
    font-size: 20px;
    margin: 0 0 10px;
  }
}
.toppage .service_sec .f_boxs .text_box .text {
  line-height: 1.75;
  margin: 0 0 30px;
}
@media (max-width: 780px) {
  .toppage .service_sec .f_boxs .text_box .text {
    margin: 0 0 20px;
  }
}
.toppage .service_sec .f_boxs .text_box .base_btn {
  margin: 0;
}
@media (max-width: 480px) {
  .toppage .service_sec .f_boxs .text_box .base_btn {
    margin: 0 auto;
  }
}
.toppage .service_sec .f_boxs.lastboxs {
  margin: 0 0 62px;
}
.toppage .service_sec .youtube_bnr {
  margin: 42px 0 0;
}
@media (max-width: 780px) {
  .toppage .service_sec .youtube_bnr {
    margin: 22px 0 0;
  }
}
.toppage .service_sec .youtube_bnr img {
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
}

/*toppage company*/
.toppage .coompany_sec .f_boxs {
  justify-content: space-between;
}
@media (max-width: 480px) {
  .toppage .coompany_sec .f_boxs {
    flex-direction: column;
  }
}
.toppage .coompany_sec .f_boxs .box {
  width: 490px;
  max-width: 49%;
  height: 230px;
  margin: 0 0 10px;
  overflow: hidden;
  transition: 0.4s;
}
@media (max-width: 780px) {
  .toppage .coompany_sec .f_boxs .box {
    height: 170px;
  }
}
@media (max-width: 480px) {
  .toppage .coompany_sec .f_boxs .box {
    max-width: 100%;
  }
}
.toppage .coompany_sec .f_boxs .box .link {
  height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: left;
  position: relative;
  padding: 20px;
}
.toppage .coompany_sec .f_boxs .box .link:hover .bg {
  transform: scale(1.05);
  transition: 0.4s;
}
@media (max-width: 780px) {
  .toppage .coompany_sec .f_boxs .box .link {
    height: 170px;
    padding: 20px 10px 20px 10px;
  }
}
.toppage .coompany_sec .f_boxs .box .link .bg {
  width: 100%;
  height: 230px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 0 10px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media (max-width: 780px) {
  .toppage .coompany_sec .f_boxs .box .link .bg {
    height: 170px;
  }
}
.toppage .coompany_sec .f_boxs .box .link .text {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: block;
}
.toppage .coompany_sec .f_boxs .box .link .text::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  background-image: url(../images/common/arrow_wh.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 780px) {
  .toppage .coompany_sec .f_boxs .box .link .text {
    font-size: 14px;
    letter-spacing: 0em;
  }
  .toppage .coompany_sec .f_boxs .box .link .text::after {
    width: 20px;
    height: 20px;
    right: 10px;
  }
}
.toppage .coompany_sec .f_boxs .box01 .bg {
  background-image: url(../images/top/company_01.jpg);
}
.toppage .coompany_sec .f_boxs .box02 .bg {
  background-image: url(../images/top/company_02.jpg);
}
.toppage .coompany_sec .f_boxs .box03 .bg {
  background-image: url(../images/top/company_03.jpg);
}
.toppage .coompany_sec .f_boxs .box04 .bg {
  background-image: url(../images/top/company_04.jpg);
}

/*toppage news*/
.toppage .news_sec .news_lists {
  margin-bottom: 63px;
}
@media (max-width: 780px) {
  .toppage .news_sec .news_lists {
    margin: 40px 0 45px;
  }
}
.toppage .news_sec .news_lists .list {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top: 1px solid #F5F5F5;
  border-bottom: 1px solid #F5F5F5;
}
@media (max-width: 780px) {
  .toppage .news_sec .news_lists .list {
    height: 80px;
  }
}
.toppage .news_sec .news_lists .list .link {
  width: 96%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 50px;
  transition: 0.4s;
  position: relative;
}
@media (max-width: 780px) {
  .toppage .news_sec .news_lists .list .link {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 10%;
  }
}
.toppage .news_sec .news_lists .list .link .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  .toppage .news_sec .news_lists .list .link .info {
    width: initial;
  }
}
.toppage .news_sec .news_lists .list .link .info .date {
  color: #6E6C6C;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-right: 20px;
}
@media (max-width: 780px) {
  .toppage .news_sec .news_lists .list .link .info .date {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-right: 5px;
  }
}
.toppage .news_sec .news_lists .list .link .info .category {
  color: #6E6C6C;
  padding: 4px 6px;
  width: 110px;
  border: 1px solid #6E6C6C;
  text-align: center;
}
@media (max-width: 780px) {
  .toppage .news_sec .news_lists .list .link .info .category {
    width: auto;
    font-size: 10px;
    padding: 2px 5px;
    letter-spacing: 0.05em;
  }
}
.toppage .news_sec .news_lists .list .link .title {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8888;
  color: #191919;
  width: 60%;
  max-width: 600px;
}
@media (max-width: 780px) {
  .toppage .news_sec .news_lists .list .link .title {
    font-size: 13px;
    letter-spacing: 0.05em;
    width: 100%;
  }
}
.toppage .news_sec .news_lists .list .link .title .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toppage .news_sec .news_lists .list .link::after {
  content: "";
  position: absolute;
  right: 30px;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/common/arrow_red.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 780px) {
  .toppage .news_sec .news_lists .list .link::after {
    width: 20px;
    height: 20px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .toppage .news_sec .news_lists .list .link::after {
    right: 5px;
  }
}

/*toppage faq*/
.faq_boxs .faq_box {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  padding: 0px 20px;
  border-radius: 20px;
  margin: 0 0 20px;
}
@media (max-width: 780px) {
  .faq_boxs .faq_box {
    padding: 0;
  }
}
.faq_boxs .faq_box .qa_q {
  padding: 20px 70px 20px 20px;
  position: relative;
}
@media (max-width: 780px) {
  .faq_boxs .faq_box .qa_q {
    padding: 15px 70px 15px 15px;
  }
}
.faq_boxs .faq_box .qa_q .text {
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.75;
  display: flex;
  align-items: center;
}
.faq_boxs .faq_box .qa_q .text::before {
  content: "Q";
  font-family: "Futura", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #D1161B;
  margin: 0 20px 0 0;
  position: relative;
}
@media (max-width: 480px) {
  .faq_boxs .faq_box .qa_q .text {
    line-height: 1.65;
  }
}
.faq_boxs .faq_box .qa_q::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 3rem;
  height: 30px;
  width: 30px;
  background-image: url(../images/top/qa_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  transition: 0.4s;
}
@media (max-width: 780px) {
  .faq_boxs .faq_box .qa_q::after {
    height: 20px;
    width: 20px;
  }
}
.faq_boxs .faq_box .qa_q.active::after {
  transform: rotate(0deg);
  transition: 0.4s;
}
.faq_boxs .faq_box .qa_a {
  max-height: 0;
  overflow: hidden;
  padding: 0 40px 0 20px;
  transition: max-height var(--transition-duration) ease, padding var(--transition-duration) ease;
}
.faq_boxs .faq_box .qa_a .text {
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.75;
  display: flex;
  align-items: flex-start;
}
.faq_boxs .faq_box .qa_a .text::before {
  content: "A";
  font-family: "Futura", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #ECC120;
  margin: 0 20px 0 0;
  position: relative;
  top: -1rem;
}
.faq_boxs .faq_box .qa_a.show {
  padding: 20px 40px 20px 20px;
  max-height: 1000px;
  transition: 1.4s;
}

/********************
* subpage
*********************/
/********************
* subpage common
*********************/
.subpage .section {
  padding: 150px 0 80px;
}
@media (max-width: 780px) {
  .subpage .section {
    padding: 100px 0 50px;
  }
}
@media (max-width: 480px) {
  .subpage .section {
    padding: 70px 0 50px;
  }
}
.subpage .sec_ttl {
  padding: 0;
}
.subpage .sec_ttl .inner {
  text-align: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0 0;
}
@media (max-width: 780px) {
  .subpage .sec_ttl .inner {
    height: 350px;
  }
}
@media (max-width: 480px) {
  .subpage .sec_ttl .inner {
    height: 250px;
  }
}
.subpage .sec_ttl .inner .subpage_ttl {
  font-size: 40px;
  letter-spacing: 0.04em;
  margin: 30px 0 0;
}
@media (max-width: 780px) {
  .subpage .sec_ttl .inner .subpage_ttl {
    font-size: 32px;
    margin: 0;
  }
}
@media (max-width: 480px) {
  .subpage .sec_ttl .inner .subpage_ttl {
    font-size: 24px;
  }
}
.subpage .sec_ttl .inner .subpage_ttl .en {
  font-size: 120px;
  color: #fff;
  opacity: 0.4;
  position: absolute;
  left: 0;
  right: 0;
  top: 130px;
  font-family: "Futura", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  z-index: -1;
}
@media (max-width: 780px) {
  .subpage .sec_ttl .inner .subpage_ttl .en {
    font-size: 100px;
  }
}
@media (max-width: 480px) {
  .subpage .sec_ttl .inner .subpage_ttl .en {
    font-size: 17vw;
    top: 40%;
  }
}
.subpage .section .inner .ttl_box {
  margin: 0 0 34px;
}
@media (max-width: 780px) {
  .subpage .section .inner .ttl_box {
    margin: 0 0 24px;
  }
}
@media (max-width: 480px) {
  .subpage .section .inner .ttl_box {
    margin: 0 0 20px;
  }
}
.subpage .section .inner .ttl_box .ttl {
  position: relative;
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0 0 5px;
}
@media (max-width: 780px) {
  .subpage .section .inner .ttl_box .ttl {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .subpage .section .inner .ttl_box .ttl {
    font-size: 20px;
  }
}
.subpage .section .inner .ttl_box .ttl::before {
  content: "";
  width: 80px;
  height: 100px;
  background-image: url("../images/common/subpage_midashi.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -25px;
  bottom: 14px;
  z-index: -1;
}
@media (max-width: 780px) {
  .subpage .section .inner .ttl_box .ttl::before {
    width: 50px;
    height: 60px;
    left: 0;
    bottom: 20px;
  }
}
@media (max-width: 480px) {
  .subpage .section .inner .ttl_box .ttl::before {
    bottom: 12px;
  }
}
.subpage .section .inner .ttl_box .subtext {
  line-height: 1.75;
  letter-spacing: 0.06em;
}

/*pagenation*/
.breadcrumbs {
  width: 1000px;
  max-width: 96%;
  text-align: right;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 10px 0;
  margin: 0 auto 30px;
}
@media (max-width: 780px) {
  .breadcrumbs {
    font-size: 12px;
  }
}

/********************
* subpage recruitment
* subpage bpo
*********************/
.service .sec_headline {
  padding-bottom: 0;
}
.service .sec_headline .logobg {
  width: 600px;
  max-width: 70%;
  height: 600px;
  background-image: url(../images/common/bg_logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 20px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 780px) {
  .service .sec_headline .logobg {
    width: 300px;
    max-width: 70%;
    height: 300px;
    right: -8%;
  }
}
.service .sec_headline .inner .midashi {
  font-size: 32px;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 32px;
}
@media (max-width: 780px) {
  .service .sec_headline .inner .midashi {
    font-size: 26px;
  }
}
.service .sec_headline .inner .text {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media (max-width: 780px) {
  .service .sec_headline .inner .text {
    font-size: 16px;
  }
}
.service .sec_nayami {
  padding-bottom: 20px;
}
.service .sec_nayami .inner .midashi {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 30px;
}
@media (max-width: 780px) {
  .service .sec_nayami .inner .midashi {
    font-size: 20px;
  }
}
.service .sec_nayami .inner .lists {
  margin: 0 0 50px;
}
.service .sec_nayami .inner .lists .list {
  margin: 0 0 20px;
  letter-spacing: 0.04rem;
  text-align: center;
  padding: 25px 20px;
  line-height: 1.75;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.service .sec_nayami .inner .lists .list:last-of-type {
  margin: 0;
}
@media (max-width: 780px) {
  .service .sec_nayami .inner .lists .list {
    margin: 0 0 16px;
    padding: 20px 10px;
  }
}
.service .sec_nayami .inner .btm_box {
  text-align: center;
}
.service .sec_nayami .inner .btm_box .btm_text {
  position: relative;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-weight: 500;
  display: inline;
}
@media (max-width: 780px) {
  .service .sec_nayami .inner .btm_box .btm_text {
    font-size: 20px;
  }
}
.service .sec_nayami .inner .btm_box .btm_text .before {
  width: 40px;
  height: 100%;
  background-image: url(../images/recruitment/nayami_icon01.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -5em;
  bottom: 0;
}
@media (max-width: 480px) {
  .service .sec_nayami .inner .btm_box .btm_text .before {
    left: -2em;
  }
}
.service .sec_nayami .inner .btm_box .btm_text .after {
  width: 40px;
  height: 100%;
  background-image: url(../images/recruitment/nayami_icon02.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: -2.5em;
  bottom: 0;
}
.service .sec_solution .bg_cir01 {
  width: 700px;
  max-width: 70%;
  height: 400px;
  background-image: linear-gradient(200deg, #ECC120, #EEAC1B, #E67B19, #D1161B);
  border-radius: 40% 60% 40% 50%/60% 60% 50% 60%;
  position: absolute;
  top: 22%;
  left: -4%;
  z-index: -1;
}
.service .sec_solution .bg_cir02 {
  width: 600px;
  max-width: 60%;
  height: 550px;
  background-image: linear-gradient(170deg, #ECC120, #EEAC1B, #E67B19, #D1161B);
  border-radius: 50% 70% 50% 40%/60% 40% 60% 60%;
  position: absolute;
  top: 50%;
  right: -4%;
  z-index: -1;
}
.service .sec_solution .inner .sol_contents .sol_box {
  border-radius: 10px;
  margin: 0 0 20px;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.service .sec_solution .inner .sol_contents .sol_box:last-of-type {
  margin: 0;
}
@media (max-width: 780px) {
  .service .sec_solution .inner .sol_contents .sol_box {
    margin: 0 0 15px;
  }
}
.service .sec_solution .inner .sol_contents .sol_box .f_boxs {
  padding: 30px 30px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 780px) {
  .service .sec_solution .inner .sol_contents .sol_box .f_boxs {
    padding: 24px 20px;
  }
}
@media (max-width: 480px) {
  .service .sec_solution .inner .sol_contents .sol_box .f_boxs {
    position: relative;
  }
}
.service .sec_solution .inner .sol_contents .sol_box .f_boxs .img_box {
  width: 150px;
  max-width: 15%;
}
@media (max-width: 480px) {
  .service .sec_solution .inner .sol_contents .sol_box .f_boxs .img_box {
    display: none;
  }
}
.service .sec_solution .inner .sol_contents .sol_box .f_boxs .img_box .img {
  width: 100px;
  display: block;
  margin: 0 auto;
}
.service .sec_solution .inner .sol_contents .sol_box .f_boxs .text_box {
  width: 800px;
  max-width: 85%;
  padding-left: 20px;
}
@media (max-width: 480px) {
  .service .sec_solution .inner .sol_contents .sol_box .f_boxs .text_box {
    width: 100%;
    max-width: 100%;
    padding-left: 0px;
    position: relative;
  }
}
.service .sec_solution .inner .sol_contents .sol_box .f_boxs .text_box .midashi {
  font-size: 24px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0 0 20px;
}
@media (max-width: 780px) {
  .service .sec_solution .inner .sol_contents .sol_box .f_boxs .text_box .midashi {
    font-size: 24px;
    margin: 0 0 14px;
  }
}
@media (max-width: 480px) {
  .service .sec_solution .inner .sol_contents .sol_box .f_boxs .text_box .midashi {
    font-size: 20px;
    margin: 0 0 16px;
    padding: 10px 0 0 40px;
  }
  .service .sec_solution .inner .sol_contents .sol_box .f_boxs .text_box .midashi::before {
    content: "";
    width: 40px;
    height: 50px;
    position: absolute;
    top: -5px;
    left: -10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.service .sec_solution .inner .sol_contents .sol_box .f_boxs .text_box .text {
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media (max-width: 480px) {
  .service .sec_solution .inner .sol_contents .sol_box01 .f_boxs .img_box {
    max-width: 18%;
    padding: 5px 0 0;
  }
  .service .sec_solution .inner .sol_contents .sol_box05 .f_boxs .img_box {
    max-width: 14%;
  }
}
.service .sec_ex .bg_cir03 {
  width: 800px;
  max-width: 80%;
  height: 700px;
  background-image: linear-gradient(210deg, #ECC120, #EEAC1B, #E67B19, #D1161B);
  border-radius: 50% 70% 40% 70%/50% 60% 40% 70%;
  position: absolute;
  top: 0%;
  left: -2%;
  z-index: -1;
}
.service .sec_ex .inner .ex_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service .sec_ex .inner .ex_contents .ex_box {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  width: 490px;
  max-width: 49%;
  margin: 0 0 20px;
  border-radius: 10px;
  background-color: #fff;
}
@media (max-width: 780px) {
  .service .sec_ex .inner .ex_contents .ex_box {
    width: 100%;
    max-width: 100%;
  }
}
.service .sec_ex .inner .ex_contents .ex_box .ex_box_inner {
  padding: 20px 20px 30px;
}
.service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs {
  justify-content: flex-start;
}
@media (max-width: 780px) {
  .service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs {
    flex-direction: column;
  }
}
.service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs .img_box {
  width: 70px;
  margin: 0 10px 10px 0;
}
@media (max-width: 780px) {
  .service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs .img_box {
    width: 50px;
  }
}
@media (max-width: 480px) {
  .service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs .img_box {
    margin: 0 0px 10px;
  }
}
.service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs .text_box .midashi {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs .text_box .midashi {
    text-align: center;
  }
}
.service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .f_boxs .text_box .midashi .subtext {
  display: block;
  font-size: 14px;
}
.service .sec_ex .inner .ex_contents .ex_box .ex_box_inner hr {
  margin: 0 0 20px;
  height: 3px;
  border: none;
  background-image: linear-gradient(270deg, #ECC120, #EEAC1B, #E67B19, #D1161B);
}
@media (max-width: 780px) {
  .service .sec_ex .inner .ex_contents .ex_box .ex_box_inner hr {
    margin: 0 0 14px;
  }
}
.service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .ex_subbox .submidashi {
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 780px) {
  .service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .ex_subbox .submidashi {
    margin: 0 0 14px;
  }
}
@media (max-width: 480px) {
  .service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .ex_subbox .submidashi {
    font-size: 16px;
  }
}
.service .sec_ex .inner .ex_contents .ex_box .ex_box_inner .ex_subbox .text {
  letter-spacing: 0.04em;
  line-height: 1.75;
}
.service .sec_flow .inner .flow_contents .flow_box {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  margin: 0 0 20px;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: flex-start;
}
.service .sec_flow .inner .flow_contents .flow_box:last-of-type {
  margin: 0;
}
@media (max-width: 780px) {
  .service .sec_flow .inner .flow_contents .flow_box {
    margin: 0 0 15px;
  }
}
.service .sec_flow .inner .flow_contents .flow_box .num_box {
  width: 150px;
  max-width: 15%;
  padding: 10px 10px;
}
@media (max-width: 780px) {
  .service .sec_flow .inner .flow_contents .flow_box .num_box {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .service .sec_flow .inner .flow_contents .flow_box .num_box {
    position: absolute;
    height: 70%;
    left: 0;
    top: 0;
  }
}
.service .sec_flow .inner .flow_contents .flow_box .num_box .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background-color: #D1161B;
  z-index: -1;
  border-radius: 10px 0 0 10px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
@media (max-width: 780px) {
  .service .sec_flow .inner .flow_contents .flow_box .num_box .bg {
    border-radius: 10px 0 0 0px;
    width: 100px;
  }
}
.service .sec_flow .inner .flow_contents .flow_box .num_box .num {
  font-size: 40px;
  color: #fff;
  font-family: "Futura", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 780px) {
  .service .sec_flow .inner .flow_contents .flow_box .num_box .num {
    font-size: 32px;
  }
}
.service .sec_flow .inner .flow_contents .flow_box .text_box {
  padding-left: 20px;
  padding: 30px 30px 30px 0;
  width: 100%;
}
@media (max-width: 780px) {
  .service .sec_flow .inner .flow_contents .flow_box .text_box {
    padding: 20px 20px 20px 0;
  }
}
@media (max-width: 480px) {
  .service .sec_flow .inner .flow_contents .flow_box .text_box {
    padding: 20px 20px;
  }
}
.service .sec_flow .inner .flow_contents .flow_box .text_box .midashi {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 8px;
}
@media (max-width: 480px) {
  .service .sec_flow .inner .flow_contents .flow_box .text_box .midashi {
    text-align: center;
    font-size: 16px;
  }
}
.service .sec_flow .inner .flow_contents .flow_box .text_box .text {
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media (max-width: 480px) {
  .service .sec_flow .inner .flow_contents .flow_box .text_box .text {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .recruitment .sec_solution .inner .sol_contents .sol_box01 .midashi::before {
    background-image: url(../images/recruitment/sol_01.png);
  }
  .recruitment .sec_solution .inner .sol_contents .sol_box02 .midashi::before {
    background-image: url(../images/recruitment/sol_02.png);
  }
  .recruitment .sec_solution .inner .sol_contents .sol_box03 .midashi::before {
    background-image: url(../images/recruitment/sol_03.png);
  }
  .recruitment .sec_solution .inner .sol_contents .sol_box04 .midashi::before {
    background-image: url(../images/recruitment/sol_04.png);
  }
  .recruitment .sec_solution .inner .sol_contents .sol_box05 .midashi::before {
    background-image: url(../images/recruitment/sol_05.png);
  }
  .service_bpo .sec_solution .inner .sol_contents .sol_box01 .midashi::before {
    background-image: url(../images/bpo/sol_01.png);
  }
  .service_bpo .sec_solution .inner .sol_contents .sol_box02 .midashi::before {
    background-image: url(../images/bpo/sol_02.png);
  }
  .service_bpo .sec_solution .inner .sol_contents .sol_box03 .midashi::before {
    background-image: url(../images/bpo/sol_03.png);
  }
  .service_bpo .sec_solution .inner .sol_contents .sol_box04 .midashi::before {
    background-image: url(../images/bpo/sol_04.png);
  }
  .service_bpo .sec_solution .inner .sol_contents .sol_box05 .midashi::before {
    background-image: url(../images/bpo/sol_05.png);
  }
}
/********************
* subpage company
*********************/
@media (max-width: 780px) {
  .company .sec_ttl .inner .subpage_ttl .en {
    font-size: 15vw;
  }
}
.company .section {
  background-color: #fff;
}
.company .section .ttl {
  position: relative;
  font-size: 28px;
  letter-spacing: 0.06em;
  margin: 0;
}
@media (max-width: 780px) {
  .company .section .ttl {
    font-size: 24px;
  }
}
.company .section .ttl .en {
  position: absolute;
  font-size: 100px;
  letter-spacing: 0.06em;
  bottom: -30px;
  text-transform: uppercase;
  font-family: "Futura", sans-serif;
  opacity: 0.4;
  z-index: -1;
}
@media (max-width: 780px) {
  .company .section .ttl .en {
    font-size: 80px;
    bottom: -21px;
  }
}
@media (max-width: 480px) {
  .company .section .ttl .en {
    font-size: 17vw;
    bottom: -17px;
  }
}
.company .section .mvv_contents {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  clip-path: polygon(0% 900%, 0% 0%, 100% 0%);
}
@media (max-width: 780px) {
  .company .section .mvv_contents {
    clip-path: polygon(0% 970%, 0% 0%, 100% 0%);
  }
}
.company .section .mvv_contents .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.company .section .mvv_contents .wh_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
}
.company .section .mvv_contents.mvv_target.mvv_open .bg {
  width: 0%;
  animation: w_anime 2s forwards;
}
.company .section .mvv_contents.mvv_target.mvv_open .wh_bg {
  width: 0%;
}
@keyframes w_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.company .sec_mission {
  padding: 150px 0 0px;
}
@media (max-width: 780px) {
  .company .sec_mission {
    padding: 100px 0 0px;
  }
}
.company .sec_mission .inner .ttl .en {
  color: #ECC120;
}
.company .sec_mission .inner .mvv_contents .bg {
  background-image: linear-gradient(180deg, #ECC120, #EEAC1B);
}
.company .sec_mission .inner .mvv_contents .mvv_box {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
  padding: 40px 0 45px;
}
@media (max-width: 480px) {
  .company .sec_mission .inner .mvv_contents .mvv_box {
    padding: 30px 20px;
  }
}
.company .sec_mission .inner .mvv_contents .mvv_box .midashi {
  font-size: 52px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 780px) {
  .company .sec_mission .inner .mvv_contents .mvv_box .midashi {
    font-size: 32px;
  }
}
.company .sec_mission .inner .mvv_contents .mvv_box .midashi .big {
  font-size: 62px;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media (max-width: 780px) {
  .company .sec_mission .inner .mvv_contents .mvv_box .midashi .big {
    font-size: 42px;
  }
}
.company .sec_mission .inner .mvv_contents .mvv_box .text {
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-size: 20px;
}
@media (max-width: 780px) {
  .company .sec_mission .inner .mvv_contents .mvv_box .text {
    font-size: 16px;
    padding: 0 50px 0 0;
  }
}
.company .sec_vision {
  padding: 150px 0 0px;
}
@media (max-width: 780px) {
  .company .sec_vision {
    padding: 100px 0 0px;
  }
}
.company .sec_vision .inner .ttl .en {
  color: #EEAC1B;
}
.company .sec_vision .inner .mvv_contents .bg {
  background-image: linear-gradient(180deg, #EEAC1B, #E67B19);
}
.company .sec_vision .inner .mvv_contents .mvv_box {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
  padding: 40px 0 45px;
}
@media (max-width: 480px) {
  .company .sec_vision .inner .mvv_contents .mvv_box {
    padding: 30px 20px;
  }
}
.company .sec_vision .inner .mvv_contents .mvv_box .midashi {
  font-size: 52px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
}
.company .sec_vision .inner .mvv_contents .mvv_box .midashi .br_block {
  display: inline-block;
}
@media (max-width: 780px) {
  .company .sec_vision .inner .mvv_contents .mvv_box .midashi {
    font-size: 38px;
  }
}
.company .sec_vision .inner .mvv_contents .mvv_box .midashi .big {
  font-size: 62px;
  letter-spacing: 0.04em;
  line-height: 1.75;
}
@media (max-width: 780px) {
  .company .sec_vision .inner .mvv_contents .mvv_box .midashi .big {
    font-size: 42px;
  }
}
.company .sec_vision .inner .mvv_contents .mvv_box .text {
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-size: 20px;
}
.company .sec_value {
  padding: 150px 0 0px;
}
@media (max-width: 780px) {
  .company .sec_value {
    padding: 100px 0 0px;
  }
}
.company .sec_value .inner .ttl .en {
  color: #E67B19;
}
.company .sec_value .inner .mvv_contents .bg {
  background-image: linear-gradient(180deg, #E67B19, #D1161B);
}
.company .sec_value .inner .mvv_contents .mvv_box {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
  padding: 40px 0 30px;
}
@media (max-width: 480px) {
  .company .sec_value .inner .mvv_contents .mvv_box {
    padding: 30px 20px;
  }
}
.company .sec_value .inner .mvv_contents .mvv_box .f_boxs {
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 780px) {
  .company .sec_value .inner .mvv_contents .mvv_box .f_boxs {
    flex-direction: column;
  }
}
.company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box {
  position: relative;
  text-align: center;
  width: 490px;
  max-width: 49%;
  margin: 0 0 20px;
  padding: 35px 0 0;
}
@media (max-width: 780px) {
  .company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
}
.company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .midashi {
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #fff;
  font-weight: bold;
  margin: 0 0 10px;
}
@media (max-width: 780px) {
  .company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .midashi {
    font-size: 30px;
    padding: 0 0 0 20px;
    margin: 0px;
  }
}
@media (max-width: 480px) {
  .company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .midashi {
    font-size: 24px;
    padding: 0 0 0 10px;
  }
}
.company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .midashi .en {
  font-size: 60px;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.2;
  z-index: -1;
}
@media (max-width: 780px) {
  .company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .midashi .en {
    font-size: 52px;
  }
}
@media (max-width: 480px) {
  .company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .midashi .en {
    font-size: 38px;
  }
}
.company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .text {
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-size: 20px;
}
@media (max-width: 780px) {
  .company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .text {
    font-size: 16px;
    padding: 0 0 0 20px;
  }
}
@media (max-width: 480px) {
  .company .sec_value .inner .mvv_contents .mvv_box .f_boxs .value_box .text {
    font-size: 14px;
    padding: 0 0 0 10px;
  }
}
.company .sec_message {
  padding: 150px 0 0px;
  overflow: hidden;
}
@media (max-width: 780px) {
  .company .sec_message {
    padding: 100px 0 0px;
  }
}
.company .sec_message .inner .ttl .en {
  color: #D1161B;
}
.company .sec_message .inner .message_contents {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 100px;
  padding: 60px 0;
}
.company .sec_message .inner .message_contents:last-of-type {
  margin: 0 calc(50% - 50vw) 60px;
  margin-bottom: 0;
}
@media (max-width: 780px) {
  .company .sec_message .inner .message_contents {
    padding: 50px 0 20px;
  }
}
.company .sec_message .inner .message_contents .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #D1161B;
  margin: 0 calc(50% - 50vw);
  clip-path: polygon(0% 580%, 0% 0%, 100% 0%);
}
.company .sec_message .inner .message_contents .wh_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
}
.company .sec_message .inner .message_contents .message_box {
  width: 85%;
  margin: 0 calc(50% - 50vw);
  margin: 0 0 auto;
  padding: 40px 20% 45px 10%;
  background-color: #fff;
  position: relative;
  opacity: 0;
}
@media (max-width: 780px) {
  .company .sec_message .inner .message_contents .message_box {
    width: 87%;
    padding: 30px 10% 35px 4%;
  }
}
.company .sec_message .inner .message_contents .message_box .message_box_inner {
  width: 800px;
  max-width: 100%;
  margin: 0 0 0 auto;
}
.company .sec_message .inner .message_contents .message_box .message_box_inner .midashi {
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  font-weight: bold;
  margin: 0 0 20px;
}
@media (max-width: 780px) {
  .company .sec_message .inner .message_contents .message_box .message_box_inner .midashi {
    font-size: 18px;
  }
}
.company .sec_message .inner .message_contents .message_box .message_box_inner .midashi .submidashi {
  display: block;
  font-size: 18px;
  text-align: right;
}
@media (max-width: 780px) {
  .company .sec_message .inner .message_contents .message_box .message_box_inner .midashi .submidashi {
    font-size: 14px;
  }
}
.company .sec_message .inner .message_contents .message_box .message_box_inner .text {
  line-height: 2;
  letter-spacing: 0.04em;
}
.company .sec_message .inner .message_contents .message_box .message_box_inner .text:last-of-type {
  padding: 20px 30px 0 0;
}
@media (max-width: 780px) {
  .company .sec_message .inner .message_contents .message_box .message_box_inner .text {
    line-height: 1.65;
  }
}
.company .sec_message .inner .message_contents .message_box .message_box_inner .text .red {
  color: #D1161B;
  font-weight: 600;
}
.company .sec_message .inner .message_contents .message_box .message_box_inner .lists {
  line-height: 2;
  padding-left: 1rem;
  margin: 18px 0 0px;
}
.company .sec_message .inner .message_contents .message_box .message_box_inner .lists .list::before {
  content: "●";
  color: #D1161B;
  margin: 0 10px 0 0;
}
.company .sec_message .inner .message_contents .img_box {
  position: absolute;
  left: 80%;
  bottom: 0;
  width: 400px;
  max-width: 40%;
}
@media (max-width: 780px) {
  .company .sec_message .inner .message_contents .img_box {
    left: 81%;
  }
}
.company .sec_message .inner .message_contents .img_box .img {
  position: relative;
  z-index: 100;
}
.company .sec_message .inner .message_contents .img_box .name {
  position: absolute;
  z-index: 500;
  bottom: 45px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
@media (max-width: 780px) {
  .company .sec_message .inner .message_contents .img_box .name {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .company .sec_message .inner .message_contents .img_box .name {
    font-size: 8px;
    bottom: 10px;
  }
}
.company .sec_message .inner .message_contents.mvv_target.mvv_open .bg {
  width: 0%;
  animation: w_anime 2s forwards;
}
.company .sec_message .inner .message_contents.mvv_target.mvv_open .wh_bg {
  width: 0%;
}
.company .sec_message .inner .message_contents.mvv_target.mvv_open .message_box {
  opacity: 0;
  animation: w_anime02 2s forwards;
}
.company .sec_message .inner .message_contents.mvv_target.mvv_open .message_box h3, .company .sec_message .inner .message_contents.mvv_target.mvv_open .message_box p, .company .sec_message .inner .message_contents.mvv_target.mvv_open .message_box ul, .company .sec_message .inner .message_contents.mvv_target.mvv_open .message_box .img_box {
  opacity: 0;
  animation: 0.6s w_anime03 2s forwards;
}
@keyframes w_anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes w_anime02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes w_anime03 {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.company .parallax {
  height: 500px;
  width: 100%;
  position: relative;
}
@media (max-width: 780px) {
  .company .parallax {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .company .parallax {
    height: 300px;
  }
}
.company .parallax .bg {
  height: 500px;
  width: 100%;
  background-image: url(../images/company/parallax.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 13%;
}
@media (max-width: 780px) {
  .company .parallax .bg {
    height: 400px;
  }
}
@media (max-width: 480px) {
  .company .parallax .bg {
    height: 300px;
  }
}
.company .sec_member {
  position: relative;
  z-index: 100;
}
.company .sec_member .inner .ttl .en {
  color: #fff;
}
@media (max-width: 480px) {
  .company .sec_member .inner .ttl .en {
    font-size: 17vw;
    bottom: -30%;
  }
}
.company .sec_member .inner .member_contents {
  margin: 50px 0 0;
}
.company .sec_member .inner .member_contents .f_boxs {
  justify-content: space-between;
}
.company .sec_member .inner .member_contents .f_boxs input[type=checkbox] {
  display: none;
}
.company .sec_member .inner .member_contents .f_boxs .member_box {
  width: 300px;
  max-width: 30%;
  border-radius: 150px 150px 0 0;
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 480px) {
  .company .sec_member .inner .member_contents .f_boxs .member_box {
    max-width: 49%;
  }
}
.company .sec_member .inner .member_contents .f_boxs .member_box .link {
  cursor: pointer;
}
.company .sec_member .inner .member_contents .f_boxs .member_box .link:hover {
  opacity: 0.8;
  transition: 0.4s;
}
.company .sec_member .inner .member_contents .f_boxs .member_box .img {
  margin: 0 0 10px;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .f_boxs .member_box .img {
    margin: 0 0 6px;
  }
}
.company .sec_member .inner .member_contents .f_boxs .member_box .name {
  font-size: 18px;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  font-weight: 600;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .f_boxs .member_box .name {
    font-size: 16px;
  }
}
.company .sec_member .inner .member_contents .f_boxs .member_box .div {
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 20px;
  padding: 4px 8px;
  color: #fff;
  border: 1px solid #fff;
  width: 200px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .f_boxs .member_box .div {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .company .sec_member .inner .member_contents .f_boxs .member_box .div {
    font-size: 10px;
  }
}
.company .sec_member .inner .member_contents .popup_contents {
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.4392156863);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.company .sec_member .inner .member_contents .popup_contents .popup_box {
  width: 1000px;
  max-width: 96%;
  height: 80vh;
  background-color: #D1161B;
  padding: 60px 0 20px;
  position: relative;
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .popup_close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: block;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1000;
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .popup_close:hover {
  opacity: 0.8;
  transition: 0.4s;
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .popup_close .line01 {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #D1161B;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .popup_close .line02 {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #D1161B;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(135deg);
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box {
  width: 900px;
  max-width: 96%;
  height: 85%;
  display: block;
  margin: 0 auto 30px;
  background-color: #fff;
  border-radius: 10px;
  background-position: 100% 100%;
  background-size: 33%;
  overflow: scroll;
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box {
  padding: 30px 30px;
  position: relative;
  width: 600px;
  max-width: 66%;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box {
    max-width: 70%;
    padding: 20px 0px 20px 20px;
  }
}
@media (max-width: 480px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box {
    max-width: 90%;
  }
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .name {
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0 0 6px;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .name {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .name {
    font-size: 18px;
  }
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .name .en {
  font-size: 18px;
  font-weight: 500;
  display: block;
  font-family: "Futura", sans-serif;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .name .en {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .name .en {
    font-size: 14px;
  }
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .div {
  font-size: 14px;
  letter-spacing: 0.04em;
  border-radius: 20px;
  padding: 4px 10px;
  color: #fff;
  text-align: center;
  background-color: #D1161B;
  width: 200px;
  max-width: 90%;
  margin: 0 0 20px;
  display: inline-block;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .div {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .div {
    font-size: 10px;
    width: auto;
  }
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .midashi {
  font-size: 22px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  display: inline;
  background: linear-gradient(transparent 75%, #D1161B 0%);
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .midashi {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .midashi {
    font-size: 16px;
  }
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .text {
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin: 10px 0 10px;
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .sns_lists {
  margin: 30px 0 40px;
  display: flex;
  align-items: center;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .sns_lists {
    margin: 20px 0 20px;
  }
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .sns_lists .list {
  margin: 0 30px 0 0;
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .sns_lists .list .link .icon {
  width: 50px;
}
@media (max-width: 780px) {
  .company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .text_box .sns_lists .list .link .icon {
    width: 35px;
  }
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .img_box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  max-width: 32%;
}
.company .sec_member .inner .member_contents .popup_contents .popup_box .info_box .img_box .img {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.company .sec_company .inner .ttl .en {
  color: #D1161B;
}
@media (max-width: 480px) {
  .company .sec_company .inner .ttl .en {
    font-size: 15vw;
    bottom: -30%;
  }
}
.company .sec_company .inner .company_contents {
  margin: 50px 0 0;
}
@media (max-width: 780px) {
  .company .sec_company .inner .company_contents {
    margin: 40px 0 0;
  }
}
@media (max-width: 480px) {
  .company .sec_company .inner .company_contents {
    margin: 35px 0 0;
  }
}
.company .sec_company .inner .company_contents .table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 10px;
}
.company .sec_company .inner .company_contents .table tr .th {
  color: #D1161B;
  padding: 30px 10px;
  border-bottom: 1px solid #D1161B;
  width: 200px;
  max-width: 25%;
  letter-spacing: 0.04em;
}
@media (max-width: 780px) {
  .company .sec_company .inner .company_contents .table tr .th {
    padding: 20px 10px;
    width: 150px;
  }
}
@media (max-width: 480px) {
  .company .sec_company .inner .company_contents .table tr .th {
    padding: 20px 10px;
    width: 100px;
  }
}
.company .sec_company .inner .company_contents .table tr .td {
  letter-spacing: 0.04em;
  line-height: 1.75;
  border-bottom: 1px solid #D1161B;
}
.company .sec_company .inner .company_contents .table tr:last-of-type th {
  border: none;
}
.company .sec_company .inner .company_contents .table tr:last-of-type td {
  border: none;
}
.company .sec_company .inner .company_contents .map iframe {
  max-width: 100%;
}
@media (max-width: 780px) {
  .company .sec_company .inner .company_contents .map iframe {
    height: 300px;
  }
}

/********************
* news
*********************/
.news .article {
  padding: 50px 0 80px;
}
@media (max-width: 480px) {
  .news .article {
    padding: 30px 0 50px;
  }
}
.news .article .inner {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
}
.news .article .inner .news_lists {
  margin-bottom: 63px;
}
@media (max-width: 780px) {
  .news .article .inner .news_lists {
    margin: 40px 0 45px;
  }
}
.news .article .inner .news_lists .list {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-top: 1px solid #F5F5F5;
  border-bottom: 1px solid #F5F5F5;
}
@media (max-width: 780px) {
  .news .article .inner .news_lists .list {
    height: 80px;
  }
}
.news .article .inner .news_lists .list .link {
  width: 96%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-right: 50px;
  transition: 0.4s;
  position: relative;
}
@media (max-width: 780px) {
  .news .article .inner .news_lists .list .link {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-right: 10%;
  }
}
.news .article .inner .news_lists .list .link .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 20px;
  flex-wrap: wrap;
}
@media (max-width: 780px) {
  .news .article .inner .news_lists .list .link .info {
    width: initial;
  }
}
.news .article .inner .news_lists .list .link .info .date {
  color: #6E6C6C;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-right: 20px;
}
@media (max-width: 780px) {
  .news .article .inner .news_lists .list .link .info .date {
    font-size: 10px;
    letter-spacing: 0.3em;
    margin-right: 5px;
  }
}
.news .article .inner .news_lists .list .link .info .category {
  color: #6E6C6C;
  padding: 4px 6px;
  width: 110px;
  border: 1px solid #6E6C6C;
  text-align: center;
}
@media (max-width: 780px) {
  .news .article .inner .news_lists .list .link .info .category {
    width: auto;
    font-size: 10px;
    padding: 2px 5px;
    letter-spacing: 0.05em;
  }
}
.news .article .inner .news_lists .list .link .title {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.8888;
  color: #191919;
  width: 60%;
  max-width: 600px;
}
@media (max-width: 780px) {
  .news .article .inner .news_lists .list .link .title {
    font-size: 13px;
    letter-spacing: 0.05em;
    width: 100%;
  }
}
.news .article .inner .news_lists .list .link .title .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .article .inner .news_lists .list .link::after {
  content: "";
  position: absolute;
  right: 30px;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../images/common/arrow_red.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 780px) {
  .news .article .inner .news_lists .list .link::after {
    width: 20px;
    height: 20px;
    right: 15px;
  }
}
@media (max-width: 480px) {
  .news .article .inner .news_lists .list .link::after {
    right: 5px;
  }
}

/********************
* contact
*********************/
.contact .sec_headline .inner .f_boxs {
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 480px) {
  .contact .sec_headline .inner .f_boxs {
    justify-content: center;
  }
}
.contact .sec_headline .inner .f_boxs .text_box {
  width: 50%;
}
@media (max-width: 780px) {
  .contact .sec_headline .inner .f_boxs .text_box {
    width: 68%;
  }
}
@media (max-width: 480px) {
  .contact .sec_headline .inner .f_boxs .text_box {
    width: 100%;
    margin: 0 0 20px;
  }
}
.contact .sec_headline .inner .f_boxs .text_box .text {
  line-height: 1.75;
  letter-spacing: 0.04em;
}
.contact .sec_headline .inner .f_boxs .bnr_box {
  width: 400px;
  max-width: 46%;
  height: 120px;
}
@media (max-width: 780px) {
  .contact .sec_headline .inner .f_boxs .bnr_box {
    width: 31%;
  }
}
@media (max-width: 480px) {
  .contact .sec_headline .inner .f_boxs .bnr_box {
    width: 90%;
    max-width: 90%;
    height: 100px;
  }
}
.contact .sec_headline .inner .f_boxs .bnr_box .link {
  display: block;
  width: 100%;
  height: 120px;
  background-image: url(../images/contact/bnr_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  border: 4px solid #ECC120;
}
@media (max-width: 480px) {
  .contact .sec_headline .inner .f_boxs .bnr_box .link {
    height: 100px;
  }
}
.contact .sec_headline .inner .f_boxs .bnr_box .link .text_box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact .sec_headline .inner .f_boxs .bnr_box .link .text_box .text01 {
  color: #fff;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.contact .sec_headline .inner .f_boxs .bnr_box .link .text_box .text01::before {
  content: "";
  width: 100%;
  height: 6px;
  display: block;
  background-color: #ECC120;
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: -1;
}
@media (max-width: 780px) {
  .contact .sec_headline .inner .f_boxs .bnr_box .link .text_box .text01 {
    font-size: 16px;
  }
}
.contact .sec_headline .inner .f_boxs .bnr_box .link .text_box .text01 .big {
  font-size: 24px;
}
@media (max-width: 780px) {
  .contact .sec_headline .inner .f_boxs .bnr_box .link .text_box .text01 .big {
    font-size: 18px;
  }
}
.contact .sec_headline .inner .f_boxs .bnr_box .link .text_box .text02 {
  color: #fff;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media (max-width: 780px) {
  .contact .sec_headline .inner .f_boxs .bnr_box .link .text_box .text02 {
    font-size: 14px;
  }
}
.contact .sec_form {
  padding: 0 0 80px;
  border-bottom: 2px solid #D1161B;
}
.contact .sec_form .inner .form_content {
  padding: 60px 0;
  border-radius: 14px;
  background: #f1f1f1;
}
@media (max-width: 780px) {
  .contact .sec_form .inner .form_content {
    padding: 40px 0;
  }
}
.contact .sec_form .inner .form_content .ttl {
  font-size: 30px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 30px;
}
@media (max-width: 780px) {
  .contact .sec_form .inner .form_content .ttl {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .contact .sec_form .inner .form_content .ttl {
    font-size: 18px;
  }
}

/********************
* archive jobs
*********************/
.jobs .archives {
  padding: 50px 0 80px;
}
.jobs .archives .inner {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
}
.jobs .archives .inner .jobs_contents .job_boxs {
  margin: 0 0 40px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .title {
  background-color: #D1161B;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.75;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 20px;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 480px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .title {
    padding: 10px 10px;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs {
  width: 900px;
  max-width: 96%;
  margin: 20px auto;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs {
    margin: 10px auto 10px;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .img_box {
  width: 400px;
  max-width: 40%;
}
@media (max-width: 480px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .img_box {
    max-width: 100%;
    width: 100%;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .img_box .thumnail {
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .img_box .tags {
  margin: 14px 0 0;
}
@media (max-width: 480px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .img_box .tags {
    margin: 10px 0 0;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .img_box .tags .lists .tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  background-color: #D1161B;
  color: #fff;
  margin: 0 10px 8px 0;
  border-radius: 10px;
}
@media (max-width: 780px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .img_box .tags .lists .tag {
    font-size: 12px;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box {
  width: 500px;
  max-width: 58%;
}
@media (max-width: 480px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box {
    max-width: 100%;
    width: 100%;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
}
@media (max-width: 480px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table {
    margin: 0 0 10px;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table tr:last-of-type th, .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table tr:last-of-type td {
  border: none;
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table tr th {
  color: #D1161B;
  letter-spacing: 0.04em;
  line-height: 1.75;
  width: 140px;
  padding: 10px 0;
  border-bottom: 1px solid #D1161B;
}
@media (max-width: 780px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table tr th {
    width: 100px;
  }
}
@media (max-width: 780px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table tr th {
    width: 80px;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table tr td {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid #D1161B;
}
@media (max-width: 480px) {
  .jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .table tr td {
    font-size: 12px;
  }
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .f_boxs .text_box .appeal {
  line-height: 1.75;
}
.jobs .archives .inner .jobs_contents .job_boxs .job_box .btn_box {
  padding: 10px 0 30px;
}

/********************
* news single
*********************/
.single .article .inner {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
}
.single .article .inner .container {
  padding: 60px 0;
  border-radius: 14px;
  background: #f1f1f1;
  margin: 0 0 20px;
}
@media (max-width: 780px) {
  .single .article .inner .container {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .single .article .inner .container {
    padding: 30px 0;
  }
}
.single .article .inner .container .article_content {
  width: 800px;
  max-width: 94%;
  margin: 0 auto;
}
.single .article .inner .container .article_content .info {
  margin: 0 0 8px;
}
.single .article .inner .container .article_content .info .date {
  margin: 0 0 8px;
  letter-spacing: 0.06em;
}
.single .article .inner .container .article_content .info .lists .category {
  padding: 2px 10px;
  background-color: #D1161B;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 5px;
  display: inline;
  margin: 0 6px 0 0;
}
.single .article .inner .container .article_content .title {
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.75;
  font-weight: 600;
  margin: 0 0 8px;
}
@media (max-width: 780px) {
  .single .article .inner .container .article_content .title {
    font-size: 24px;
    line-height: 1.65;
  }
}
@media (max-width: 480px) {
  .single .article .inner .container .article_content .title {
    font-size: 18px;
    line-height: 1.65;
  }
}
.single .article .inner .container .article_content .content h2 {
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  color: #fff;
  background-color: #D1161B;
  padding: 4px 8px 4px 10px;
  margin: 6px 0 6px;
  border-radius: 10px;
}
@media (max-width: 780px) {
  .single .article .inner .container .article_content .content h2 {
    font-size: 24px;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .single .article .inner .container .article_content .content h2 {
    font-size: 18px;
    border-radius: 4px;
  }
}
.single .article .inner .container .article_content .content h3 {
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  border-bottom: 2px solid #D1161B;
  margin: 6px 0 6px;
  padding: 0 0 0 10px;
}
@media (max-width: 780px) {
  .single .article .inner .container .article_content .content h3 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .single .article .inner .container .article_content .content h3 {
    font-size: 16px;
  }
}
.single .article .inner .container .article_content .content h4 {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  border-left: 18px solid #D1161B;
  padding: 0 0 0 10px;
  margin: 6px 0 6px;
}
@media (max-width: 780px) {
  .single .article .inner .container .article_content .content h4 {
    font-size: 16px;
    border-left: 14px solid #D1161B;
    padding: 0 0 0 8px;
  }
}
@media (max-width: 480px) {
  .single .article .inner .container .article_content .content h4 {
    font-size: 14px;
    border-left: 12px solid #D1161B;
    padding: 0 0 0 6px;
  }
}
.single .article .inner .container .article_content .content p {
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin: 0 0 6px;
}
.single .article .inner .container .article_content .content ul {
  padding-left: 1.2em;
  margin: 10px 0 10px;
}
.single .article .inner .container .article_content .content ul li {
  list-style: initial;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.single .article .inner .container .article_content .content img {
  margin: 10px 0;
}
.single .article .inner .container .article_content .content table {
  margin: 10px 0;
  width: 100%;
  letter-spacing: 0.04em;
  line-height: 1.65;
}
.single .article .inner .container .article_content .content button {
  letter-spacing: 0.04em;
  line-height: 1.65;
}
.single .article .inner .pagenation {
  margin: 40px 0 60px;
}
.single .article .inner .pagenation .pager_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 40px;
  width: 500px;
  max-width: 100%;
}
.single .article .inner .pagenation .pager_text a {
  width: 50%;
}
.single .article .inner .pagenation .pager_text .before_btn {
  width: 200px;
  max-width: 49%;
  margin: 0 auto;
  color: #D1161B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
  line-height: inherit;
}
.single .article .inner .pagenation .pager_text .before_btn::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -1px;
  height: 20px;
  width: 20px;
  background-image: url(../images/common/arrow_red.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
}
@media (max-width: 780px) {
  .single .article .inner .pagenation .pager_text .before_btn {
    justify-content: flex-end;
    max-width: 60%;
  }
  .single .article .inner .pagenation .pager_text .before_btn::after {
    left: 0px;
  }
}
@media (max-width: 480px) {
  .single .article .inner .pagenation .pager_text .before_btn::after {
    height: 15px;
    width: 15px;
    bottom: 0px;
  }
}
.single .article .inner .pagenation .pager_text .next_btn {
  width: 200px;
  max-width: 49%;
  margin: 0 auto;
  color: #D1161B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
  line-height: inherit;
}
.single .article .inner .pagenation .pager_text .next_btn::after {
  content: "";
  position: absolute;
  right: -15px;
  bottom: -1px;
  height: 20px;
  width: 20px;
  background-image: url(../images/common/arrow_red.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 780px) {
  .single .article .inner .pagenation .pager_text .next_btn {
    justify-content: flex-start;
    max-width: 60%;
  }
  .single .article .inner .pagenation .pager_text .next_btn::after {
    right: 0px;
  }
}
@media (max-width: 480px) {
  .single .article .inner .pagenation .pager_text .next_btn::after {
    height: 15px;
    width: 15px;
    bottom: 0px;
  }
}

/********************
* single jobs
*********************/
.jobs-single .article .inner .container .article_content .info .lists .tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  background-color: #D1161B;
  color: #fff;
  margin: 0 10px 10px 0;
  border-radius: 10px;
}
@media (max-width: 780px) {
  .jobs-single .article .inner .container .article_content .info .lists .tag {
    font-size: 12px;
  }
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs {
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 10px;
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs .img_box {
  width: 320px;
  max-width: 40%;
}
@media (max-width: 480px) {
  .jobs-single .article .inner .container .article_content .content .headline .f_boxs .img_box {
    max-width: 100%;
    width: 100%;
  }
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs .img_box .thumnail {
  height: 240px;
  display: flex;
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs .img_box .thumnail img {
  width: 100%;
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box {
  width: 450px;
  max-width: 58%;
}
@media (max-width: 480px) {
  .jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box {
    max-width: 100%;
    width: 100%;
  }
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box .table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box .table tr:last-of-type th, .jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box .table tr:last-of-type td {
  border: none;
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box .table tr th {
  color: #D1161B;
  letter-spacing: 0.04em;
  line-height: 1.75;
  width: 140px;
  padding: 10px 0;
  border-bottom: 1px solid #D1161B;
}
@media (max-width: 780px) {
  .jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box .table tr th {
    width: 100px;
  }
}
@media (max-width: 780px) {
  .jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box .table tr th {
    width: 80px;
  }
}
.jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box .table tr td {
  white-space: pre-wrap;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid #D1161B;
}
@media (max-width: 480px) {
  .jobs-single .article .inner .container .article_content .content .headline .f_boxs .text_box .table tr td {
    font-size: 12px;
  }
}
.jobs-single .article .inner .container .article_content .content .appeal_box {
  margin: 0 0 20px;
}
.jobs-single .article .inner .container .article_content .content .appeal_box .text {
  white-space: pre-wrap;
  letter-spacing: 0.04em;
  line-height: 1.75em;
}
.jobs-single .article .inner .container .article_content .content .job_info, .jobs-single .article .inner .container .article_content .content .entry_info {
  margin: 0 0 20px;
}
.jobs-single .article .inner .container .article_content .content .job_info .table, .jobs-single .article .inner .container .article_content .content .entry_info .table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
}
.jobs-single .article .inner .container .article_content .content .job_info .table tr:last-of-type th, .jobs-single .article .inner .container .article_content .content .job_info .table tr:last-of-type td, .jobs-single .article .inner .container .article_content .content .entry_info .table tr:last-of-type th, .jobs-single .article .inner .container .article_content .content .entry_info .table tr:last-of-type td {
  border: none;
}
.jobs-single .article .inner .container .article_content .content .job_info .table tr th, .jobs-single .article .inner .container .article_content .content .entry_info .table tr th {
  color: #D1161B;
  letter-spacing: 0.04em;
  line-height: 1.75;
  width: 140px;
  padding: 10px 0;
  border-bottom: 1px solid #D1161B;
}
@media (max-width: 780px) {
  .jobs-single .article .inner .container .article_content .content .job_info .table tr th, .jobs-single .article .inner .container .article_content .content .entry_info .table tr th {
    width: 100px;
  }
}
@media (max-width: 780px) {
  .jobs-single .article .inner .container .article_content .content .job_info .table tr th, .jobs-single .article .inner .container .article_content .content .entry_info .table tr th {
    width: 90px;
  }
}
.jobs-single .article .inner .container .article_content .content .job_info .table tr td, .jobs-single .article .inner .container .article_content .content .entry_info .table tr td {
  font-size: 14px;
  white-space: pre-wrap;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding: 10px 0 10px 4px;
  border-bottom: 1px solid #D1161B;
}
@media (max-width: 480px) {
  .jobs-single .article .inner .container .article_content .content .job_info .table tr td, .jobs-single .article .inner .container .article_content .content .entry_info .table tr td {
    font-size: 12px;
  }
}
.jobs-single .article .inner .container .article_content .entry_form {
  max-height: 0;
  overflow: hidden;
  padding: 0 40px 0 20px;
  transition: max-height var(--transition-duration) ease, padding var(--transition-duration) ease;
}
.jobs-single .article .inner .container .article_content .entry_form .text {
  position: relative;
  letter-spacing: 0.04em;
  line-height: 1.75;
  display: flex;
  align-items: flex-start;
}
.jobs-single .article .inner .container .article_content .entry_form .text::before {
  content: "A";
  font-family: "Futura", sans-serif;
  font-size: 30px;
  font-weight: bold;
  color: #ECC120;
  margin: 0 20px 0 0;
  position: relative;
  top: -1rem;
}
.jobs-single .article .inner .container .article_content .entry_form.show {
  padding: 60px 40px 20px 20px;
  max-height: 2000px;
  transition: 1.4s;
}
@media (max-width: 780px) {
  .jobs-single .article .inner .container .article_content .entry_form.show {
    padding: 50px 10px 15px 10px;
  }
}
.jobs-single .article .inner .pagenation {
  margin: 30px 0px 40px;
}

/********************
* page
*********************/
.page .sec_content {
  padding: 60px 0 50px;
}
.page .sec_content .inner {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
}
.page .sec_content .inner h2 {
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  color: #fff;
  background-color: #D1161B;
  padding: 4px 8px 4px 10px;
  margin: 20px 0 6px;
  border-radius: 10px;
}
@media (max-width: 780px) {
  .page .sec_content .inner h2 {
    font-size: 24px;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .page .sec_content .inner h2 {
    font-size: 18px;
    border-radius: 4px;
  }
}
.page .sec_content .inner h3 {
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  border-bottom: 2px solid #D1161B;
  margin: 16px 0 6px;
  padding: 0 0 0 10px;
}
@media (max-width: 780px) {
  .page .sec_content .inner h3 {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .page .sec_content .inner h3 {
    font-size: 16px;
  }
}
.page .sec_content .inner h4 {
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  border-left: 18px solid #D1161B;
  padding: 0 0 0 10px;
  margin: 16px 0 6px;
}
@media (max-width: 780px) {
  .page .sec_content .inner h4 {
    font-size: 16px;
    border-left: 14px solid #D1161B;
    padding: 0 0 0 8px;
  }
}
@media (max-width: 480px) {
  .page .sec_content .inner h4 {
    font-size: 14px;
    border-left: 12px solid #D1161B;
    padding: 0 0 0 6px;
  }
}
.page .sec_content .inner p {
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin: 0 0 20px;
}
.page .sec_content .inner ul {
  padding-left: 1.2em;
  margin: 10px 0 10px;
}
.page .sec_content .inner ul li {
  list-style: initial;
  line-height: 1.65;
  letter-spacing: 0.04em;
}
.page .sec_content .inner img {
  margin: 10px 0;
}
.page .sec_content .inner table {
  margin: 10px 0;
  width: 100%;
  letter-spacing: 0.04em;
  line-height: 1.65;
}
.page .sec_content .inner button {
  letter-spacing: 0.04em;
  line-height: 1.65;
}/*# sourceMappingURL=style.css.map */