@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css");
* {
  box-sizing: border-box;
}
body {
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  margin: 0;
  color: #333;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul,ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1.5s;
  transition-delay: 0.75s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading .logo {
  width: 250px;
  height: 250px;
  background: url(../images/main_logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 1.75s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-property: transform, opacity;
  transition-delay: 1.0s;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading.loaded .logo {
  transition-delay: .5s;
  transform: scale(1.2);
}
#mouse_stalker {
  pointer-events: none;
  position: fixed;
  top: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: rgba(12, 65, 133, 0.5);
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
}
#mouse_stalker.is_active {
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  transition: 0.2s;
  background: rgba(255, 90, 95, 0.5);
}

/* header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 12px;
  z-index: 888;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-radius: 6px;
}
.header_inner h1 {
  width: 60px;
}
.menu {
  display: flex;
  list-style: none;
  gap: 20px;
}
.menu a {
  font-weight: bold;
}
.menu .contact a {
  background: #c2100e;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
}
.sp_nav {
  display: none;
}

/* コンテンツ */
.main_visual_area {
  height: calc(100vh - 100px);
  width: 100%;
  background-image: url(../images/mv_01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.main_visual_area::before {
  content: "";
  background: linear-gradient(to right,  rgba(19,19,19,0.55) 0%,rgba(28,28,28,0.5) 9%,rgba(43,43,43,0.46) 16%,rgba(43,43,43,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  width: 100%;
  height: 100%;
  mix-blend-mode: hard-light;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
}
/* animation */
@-webkit-keyframes passing-bar{
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar{
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt{
	0% { opacity: 0; }
	50% { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes passing-txt{
	0% { opacity:0; }
	50% { opacity:0; }
	100% { opacity:1; }
}
/* css */
.passing .passing-box {
	display: block;
}
.passing .passing-bar {
	position: relative;
	display: block;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar + .passing-bar {
	display: inline-block;
}
.passing .passing-bar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #c2100e;
}
.passing .passing-txt {
	opacity: 0;
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	font-size: 4.0rem;
	font-weight: bold;
	line-height: 1.2em;
  margin-bottom: 5px;
}
.passing .passing-txt.sub {
	font-size: 2.5rem;
}
.passing.move .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
  animation-delay: 2.0s;
}
.passing.move .passing-txt {
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation:passing-txt 0s ease .5s 1 normal forwards;
  animation-delay: 2.5s;
}
.main_copy {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 3;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  text-shadow: 5px 2px 8px #000;
}
.breadcrumbs{
  border: solid 1px #ccc;
  border-width: 1px 0;
  padding: 0 4%;
}
.breadcrumbs ul,
.breadcrumbs li{
  margin: 0;
  padding: 0;
}
.breadcrumbs a{
  color: #c2100e;
  text-decoration: none;
}
.breadcrumbs a:hover{
  color: #c2100e;
}
.breadcrumbs ul{
  display: flex;
  max-width: 1100px;
  margin: auto;
}
.breadcrumbs li{
  list-style: none;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  margin-right: 35px;
  position: relative;
}
.breadcrumbs li:before,
.breadcrumbs li:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  border-top: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
}
.breadcrumbs li:before{
  right: -40px;
  border-left: 15px solid #ccc;
}
.breadcrumbs li:after{
  right: -39px;
  border-left: 15px solid #fff;
}
.breadcrumbs li.active a{
  color: #000;
}
section {
  padding: 10vh 10% !important;
  margin: 0 auto;
  border-bottom: solid 1px #d7d7d7;
  background-color: #ffffff;
  background-image: linear-gradient(#e9e9e9 2px, transparent 2px), linear-gradient(90deg, #e9e9e9 2px, transparent 2px), linear-gradient(#e9e9e9 2px, transparent 2px), linear-gradient(90deg, #e9e9e9 2px, #f1f1f1 2px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -4px -4px, -4px -4px, -2px -2px, -2px -2px;
}
section:last-child {
  border: none;
}
.mw1100 {
  max-width: 1100px;
  margin: 0 auto;
}
section#our_mission {
  background: #fff;
}
.our_mission_text {
  font-size: 38px;
  text-align: left;
  margin-bottom: 1.0em;
}
.our_mission_desc {
  font-size: 24px;
  line-height: 1.7;
  margin-bottom: 1.0em;
  text-align: left;
  font-weight: bold;
}
#about_us {
  background: #f2f2f2;
}
h2 {
  font-size: 48px;
  margin-bottom: 1.0em;
}
h2:first-letter{
  color: #c2100e;
}
.h2_sub {
  display: block;
  font-size: 22px;
  position: relative;
  padding-left: 1.5em;
}
.h2_sub::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 15px;
  height: 2px;
  background: #333;
}
.h3Title {
  position: relative;
  padding: 1em 1em 1em 1.5em;
  border-top: #c2100e solid 1px;
  margin-bottom: 1.0em;
}
.h3Title::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-right: 24px solid transparent;
  border-left: 24px solid #c2100e;
  border-bottom: 24px solid transparent;
}
.text_style01 {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1.0em;
}
.text_style01 a {
  text-decoration: underline;
  color: #c2100e;
}
.business_content {
  display: flex;
  flex-direction: column;
  gap: 2%;
  width: 100%;
  padding: 50px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: #d9d9d9 5px 5px 10px 5px;
  right: 0;
  margin-top: 30px;
}
.business_content .text_style01 strong {
  color: #c2100e;
}
.flx {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}
h3.business_name {
  text-align: left;
  font-size: 2.4vw;
  word-break: keep-all;
}
h3.business_name .h3SubTitle {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #c2100e;
}
.business_img {
  overflow: hidden;
  border-radius: 6px;
  width: 40%;
}
.business_img img {
  width: 100%;
}
.link_btn {
  text-align: right;
}
.learn_more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 11.5rem;
  height: auto;
}
.learn_more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #c2100e;
  border-radius: 1.625rem;
}
.learn_more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.learn_more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.learn_more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.20rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.learn_more .button_text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 0 0.8rem 4rem;
  margin: 0;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
  text-transform: uppercase;
}
.learn_more:hover .circle {
  width: 100%;
}
.learn_more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.learn_more:hover .button_text {
  color: #fff;
}
.learn_more.typeB {
  width: 19rem;
}
.map_area {
  padding: 50px 10% !important;
  background: #c2100e;
}
iframe.googlemap {
  width: 100%;
  margin: 0 auto;
}

/* ボタン */
.background_btn02 {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  width: 100%;
  max-width: 400px;
  text-decoration: none;
  border: 1px solid #c2100e;
  padding: 1em 1em;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #fff 0%, #fff 50%, #c2100e 50%, #c2100e 100%);
  transition: background-position .8s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: background-position .8s cubic-bezier(0.19, 1, 0.22, 1);
}
.background_btn02:hover {
  background-position: 0 0;
  color: #c2100e;
}
a[target="_blank"]::after{
  content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-left: .7em;
}
/* footer */
footer {
  background: #333;
  color: #fff;
  padding: 0 4%;
}
.footer_inner {
  padding: 60px 0%;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer_inner .footer_logo {
  width: 120px;
}
.footer_menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: end;
}
.footer_menu li {
  font-size: 16px;
}
p.copyright {
  text-align: right;
  padding: 10px 10%;
}

/*************************************
  company
*************************************/
.sub .main_visual_area {
  height: 360px;
  background-position: center;
}
.bgWhiteBox {
  padding: 2em;
  background: #fff;
  border-radius: 6px;
  margin-bottom: 50px;
  position: relative;
}
.ceoImgRightAdjust {
  float: right;
  margin: 0 0 0 20px;
  text-align: left;
  max-width: 400px;
  width: 40%;
}
.ClearFix:after {
  content: "";
  display: block;
  clear: both;
}
.ceo_message_right_img {
  -webkit-mask-image: linear-gradient(270deg, white 40%, transparent);
    mask-image: linear-gradient(270deg, white 40%, transparent);
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
p.CEO_signature {
  text-align: right;
  font-size: 42px;
}
p.CEO_signature span {
  font-size: 20px;
  margin-right: 0.7em;
}
.table_style01 {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0px 15px;
  font-size: 16px;
}
.table_style01 th,
.table_style01 td {
  padding: 15px;
}
.table_style01 th {
  background: #c2100e;
  vertical-align: middle;
  text-align: left;
  width: 120px;
  overflow: visible;
  position: relative;
  color: #fff;
  font-weight: normal;
  font-size: 16px;
  border-radius: 6px 0 0 6px;
}
.table_style01 th:after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-left-color: #c2100e;
  border-width: 10px;
  margin-top: -10px;
}
/* firefox */
@-moz-document url-prefix() {
  .table_style01 th::after {
    float: right;
    padding: 0;
    left: 30px;
    top: 10px;
    content: " ";
    height: 0;
    width: 0;
    position: relative;
    pointer-events: none;
    border: 10px solid transparent;
    border-left: #295890 10px solid;
    margin-top: -10px;
  }
}
.table_style01 td {
  background: #f8f8f8;
  padding-left: 2em;
  border-radius: 0 6px 6px 0;
}

/*************************************
  contact
*************************************/
form#mail_form .privacy_check {
  text-align: center;
  padding: 1em;
}
form#mail_form input[type="button"]:disabled {
  background: #ddd;
  border: 1px solid #ddd;
}
form#mail_form input[type="button"]:disabled:hover {
  pointer-events: none;
  background: #ddd;
  border: 1px solid #ddd;
}
.thanks_title {
  font-size: 32px;
  margin-bottom: 1.7em;
}

/*************************************
  PRIVACY POLICY
*************************************/
.privacy .privacy_wrap {
  background: #fff;
  border-radius: 6px;
  padding: 3.0em;
}
.privacy h3 {
  margin: 50px 0 20px 0;
  padding: 10px 0 10px 20px;
  font-size: 24px;
  border-left: 5px solid #f42f28;
}
.privacy .privacy_wrap ol {
  margin: 20px 0 0 3em;
}
.privacy .privacy_wrap ol li {
  position: relative;
  list-style: outside decimal;
  padding: 0 0 0 5px;
}
.privacy .privacy_wrap ol li::marker {
  font-size: 130%;
  font-weight: 700;
  color: #f42f28;
}
.privacy .privacy_wrap ol li ol {
  padding: 0px 0 0 1em;
}
.privacy .privacy_wrap li+li {
  margin-bottom: 15px;
}
.privacy .privacy_wrap li {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .text_style01,
  .background_btn02 {
    font-size: 14px;
  }
  .header_inner {
    padding: 15px 15px;
    align-items: start;
    border-radius: 6px;
  }
  .header_inner h1 {
    width: 46px;
  }
  .menu {
    display: none;
  }
  .sp_nav {
    display: block;
    padding-top: 2px;
  }
  .sp_nav::after {
    content: "menu";
    position: absolute;
    font-size: 12px;
    color: #333;
    bottom: -5px;
    right: 10px;
  }
  .sub .main_visual_area {
    height: 260px;
  }
  .main_copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    line-height: 2.5em;
    max-width: 400px;
  }
  .passing .passing-txt {
	  font-size: 2.4rem;
    margin-bottom: 5px;
  }
  .passing .passing-txt.sub {
	  font-size: 1.5rem;
  }
  .breadcrumbs li {
    font-size: 12px;
  }
  section {
    padding: 10vh 4% !important;
  }
  h2 {
    font-size: 36px;
  }
  .h2_sub {
    font-size: 18px;
  }
  .h2_sub::before {
    left: 5px;
    width: 11px;
  }
  #our_mission {
    display: block;
  }
  .our_mission_text {
    font-size: 24px;
    text-align: left;
    width: 100%;
    margin-bottom: 1em;
  }
  .our_mission_desc {
    font-size: 22px;
    width: 100%;
  }
  .business_content {
    padding: 20px;
  }
  .flx {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 30px;
  }
  .business_img {
    width: 100%;
  }
  h3.business_name {
    font-size: 5vw;
  }
  .learn_more {
    font-size: 14px;
  }
  .footer_inner {
    padding: 30px 4%;
    display: block;
  }
  .footer_left_column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer_menu {
    justify-content: center;
    margin: 2em 0 0;
  }
  .footer_menu li {
    font-size: 14px;
  }
  p.copyright {
    text-align: center;
    padding: 10px 4%;
    font-size: 12px;
  }
  .map_area {
    padding: 50px 4% !important;
  }
  .bgWhiteBox {
    padding: 20px;
  }
  .table_style01 th,.table_style01 td {
    width: 100%;
    font-size: 14px;
    display: block;
    border-radius: 0;
    padding: 10px;
  }
  .table_style01 th:after {
    content: none;
  }
  .ceoImgRightAdjust {
    float: none;
    margin: 0 auto 20px;
    text-align: left;
    max-width: 300px;
    width: 100%;
  }
  .ceo_message_right_img {
    -webkit-mask-image: initial;
    mask-image: initial;
  }
  p.CEO_signature {
    font-size: 28px;
  }
  p.CEO_signature span {
    font-size: 18px;
    display: block;
    margin: 0;
  }
  .privacy .privacy_wrap {
    padding: 1.5em;
  }
  .privacy h3 {
    margin: 24px 0 18px 0;
    padding: 6px 0 6px 10px;
    font-size: 18px;
  }
  .privacy .privacy_wrap ol {
    margin: 20px 0 0 1.5em;
  }
  .privacy .privacy_wrap li {
    font-size: 14px;
  }
  .privacy .privacy_wrap li+li {
    margin-bottom: 0.7em;
  }
}
@media screen and (max-device-width: 767px) {
  #mouse_stalker {
    display: none;
  }
  .our_mission_text {
    font-size: 20px;
  }
  .our_mission_desc {
    font-size: 16px;
  }
  section {
    padding: 6vh 4% !important;
  }
  .contents p.text_style01 {
    font-size: 14px;
  }
  h2 {
    font-size: 32px;
  }
  .h2_sub {
    font-size: 16px;
  }
  .h2_sub::before {
    left: 7px;
    width: 10px;
  }
  p.content_text {
    font-size: 14px;
  }
  .learn_more {
    margin-top: 15px;
    width: 11rem;
  }
  .learn_more .circle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .learn_more:hover .circle .icon.arrow {
    background: none;
    transform: translate(1rem, 0);
  }
  .learn_more .circle .icon.arrow::before {
    right: 30%;
    top: -0.24rem;
  }
  .learn_more .button_text {
    line-height: 16px;
  }
}