@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-toyopet: #005952;
  --color-hac-base: #005952;
  --color-chubase-red: #F40013;
  --color-hac-base: #0F5E75;
  --color-kinto: #20A5C0;
  --color-main: #1F1F1F;
  --color-light-blue: #44A0BE;
  --color-blue: #178BD2;
  --color-red: #DB0011;
  --color-red02: #E54956;
  --color-pink: #EB6B76;
  --color-orange: #F28212;
  --color-gold: #B18B31;
  --color-light-gray: #C8C8C8;
  --color-white-blue: #E1ECEF;
  --color-gray: #DEE4E8;
  --color-blue-gray-light: rgba(235, 241, 245, 0.9);
  --color-blue-gray: #8E9FA4;
  --color-used: #EC1223;
  --color-light-green: #46B41E;
  --color-dark-green: #3A4246;
  --color-green: #00A941;
  --color-green02: #46B196;
  --color-green03: #00CDA4;
  --color-02: #556168;
  --color-03: #2970C0;
  --color-navy: #38405C;
  --color-sub-txt: #818181;
  --color-sub-txt-v02: #6F6F6F;
  --color-sub: #9D9D9D;
  --color-sub-line05: #d6d6d6;
  /*表*/
  --color-table: #494949;
  /*Table*/
  --color-table-bg: #F2F2F2;
  --color-table-menu: #79888D;
  /*===================== Gradient =====================*/
  --gradient-green-blue: linear-gradient(90deg,#78B50F 1%,#69D04D 35%,#38B5CE 72%,#3C64A1 100%);
  --gradient-red-yellow: linear-gradient(90deg,#F05353,#E7B500);
  /*===================== Font =====================*/
  --font-montserrat: "Montserrat", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-bungee: "Bungee", sans-serif;
  /*===================== CONT radius =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*================================= 見出し =================================*/
/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*======================= PCLG-VW =======================*/
/*================================= マウスオーバー =================================*/
/*================================= コンテンツ 角丸 =================================*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flipcard01 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flipcard02 {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*================================= メニュー左寄せ =================================*/
/*================================================ 企業情報 ================================================*/
.sec-profile-wrap {
  background-color: #fff;
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .sec-profile-wrap {
    border-radius: 10px;
  }
}
.sec-profile-wrap {
  padding: calc(90 / 750 * 100vw) calc(65 / 750 * 100vw);
  box-sizing: border-box;
  margin-bottom: calc(50 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .sec-profile-wrap {
    padding: calc(80 / 1366 * 100vw) 56px;
    margin-bottom: calc(50 / 1366 * 100vw);
  }
}
.sec-profile-wrap a.brand-link {
  display: block;
  color: #fff;
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .sec-profile-wrap a.brand-link {
    border-radius: 10px;
  }
}
.sec-profile-wrap a.brand-link {
  position: relative;
  padding: calc(50 / 750 * 100vw) 0 calc(53 / 750 * 100vw);
  margin-top: calc(120 / 750 * 100vw);
  text-align: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
}
@media screen and (min-width: 768px) {
  .sec-profile-wrap a.brand-link {
    padding: calc(77 / 1366 * 100vw) 0 calc(81 / 1366 * 100vw);
    transition: all 0.2s;
    margin-top: calc(90 / 1366 * 100vw);
  }
  .sec-profile-wrap a.brand-link:hover {
    transform: scale(0.98);
  }
  .sec-profile-wrap a.brand-link:hover::after {
    transform: translate(-50%, 0) scale(1.05);
  }
  .sec-profile-wrap a.brand-link:hover .m-btm-square .arrow svg:nth-of-type(1) {
    transform: translate(120%, 0);
  }
  .sec-profile-wrap a.brand-link:hover .m-btm-square .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
  .sec-profile-wrap a.brand-link:hover h3 {
    transform: scale(1.1);
  }
  .sec-profile-wrap a.brand-link:hover h3 .en {
    letter-spacing: 0.01em;
  }
}
.sec-profile-wrap a.brand-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url(../../myimg/profile/brand-link-bg_sp.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .sec-profile-wrap a.brand-link::after {
    background-image: url(../../myimg/profile/brand-link-bg_pc.webp);
  }
}
.sec-profile-wrap a.brand-link h3 {
  transition: all 0.3s;
}
.sec-profile-wrap a.brand-link h3 span {
  display: block;
  transition: all 0.3s;
}
.sec-profile-wrap a.brand-link h3 span.ja {
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: 0.2em;
  line-height: 1.2em;
  font-size: calc(18 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .sec-profile-wrap a.brand-link h3 span.ja {
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
  }
}
.sec-profile-wrap a.brand-link h3 span.en {
  font-size: calc(60 / 750 * 100vw);
  line-height: 1.2em;
  font-family: var(--font-montserrat);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .sec-profile-wrap a.brand-link h3 span.en {
    font-size: clamp(35px, 60 / 1366 * 100vw, 1000px);
  }
}
.sec-profile-wrap a.brand-link span.m-btm-square {
  display: none;
  position: absolute;
  bottom: calc(20 / 750 * 100vw);
  right: calc(20 / 750 * 100vw);
  width: calc(50 / 750 * 100vw);
  height: calc(50 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .sec-profile-wrap a.brand-link span.m-btm-square {
    bottom: 20px;
    right: 20px;
    width: clamp(0px, 40 / 1366 * 100vw, 1000px);
    height: clamp(0px, 40 / 1366 * 100vw, 1000px);
  }
}

.sec-profile-data .sec-profile-data-inner {
  border-top: 1px solid var(--color-light-gray);
  padding: calc(50 / 750 * 100vw) 0;
  font-size: calc(28 / 750 * 100vw);
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .sec-profile-data .sec-profile-data-inner {
    display: flex;
    justify-content: flex-start;
    padding: 2.28em 0;
    line-height: 1.8em;
    font-size: clamp(10px, 18 / 1366 * 100vw, 20px);
  }
}
.sec-profile-data .sec-profile-data-inner:first-child {
  border-top: none;
  padding-top: 0;
}
.sec-profile-data .sec-profile-data-inner:last-child {
  padding-bottom: 0;
}
.sec-profile-data dt {
  line-height: 1.2em;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .sec-profile-data dt {
    line-height: 1.8em;
    width: 28%;
    margin-bottom: 0;
  }
}
.sec-profile-data dd {
  font-weight: 400;
  line-height: 1.96em;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .sec-profile-data dd {
    line-height: 1.8em;
    width: 72%;
  }
}/*# sourceMappingURL=profile.css.map */