@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&&family=Zen+Kaku+Gothic+New&display=swap");
/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			$

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
ブレークポイント定義
=================================*/
/*================================
size()関数
=================================*/
/*================================
color
=================================*/
/*================================
fadein animation
=================================*/
.fadein.anim_active {
  animation: fadein 0.6s forwards;
}

@keyframes fadein {
  0% {
    opacity: 1%;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes fadeleft {
  0% {
    opacity: 1%;
    visibility: hidden;
    transform: translateX(-2%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
@keyframes faderight {
  0% {
    opacity: 1%;
    visibility: hidden;
    transform: translateX(2%);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ttl_up {
  0% {
    transform: translateY(110%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scrollline {
  0%, 100%, 40% {
    top: 0;
    opacity: 1;
  }
  14% {
    top: 100%;
    opacity: 0;
  }
  16% {
    top: -100%;
    opacity: 0;
  }
}
.show .f_anim .ttl {
  display: inline-block;
  overflow: hidden;
}
.show .f_anim .in, .show .f_anim .inleft, .show .f_anim .inright {
  opacity: 1%;
  visibility: hidden;
}
.show .f_anim .inleft {
  transform: translateX(-2%);
}
.show .f_anim .inright {
  transform: translateX(2%);
}
.show .f_anim .up {
  display: inline-block;
  position: relative;
  z-index: 1;
  transform: translateY(110%);
}
.show .f_anim.anim_active .in {
  animation: fadein 1s forwards;
}
.show .f_anim.anim_active .in_001 {
  animation-delay: 0.2s;
}
.show .f_anim.anim_active .in_002 {
  animation-delay: 0.4s;
}
.show .f_anim.anim_active .in_003 {
  animation-delay: 0.6s;
}
.show .f_anim.anim_active .in_004 {
  animation-delay: 0.8s;
}
.show .f_anim.anim_active .in_005 {
  animation-delay: 1s;
}
.show .f_anim.anim_active .inleft {
  animation: fadeleft 1s forwards;
}
.show .f_anim.anim_active .inright {
  animation: faderight 1s forwards;
}
.show .f_anim.anim_active .up {
  animation: ttl_up 0.4s forwards;
}
.show .f_anim.anim_active .up_001 {
  animation-delay: 0.2s;
}
.show .f_anim.anim_active .up_002 {
  animation-delay: 0.4s;
}
.show .f_anim.anim_active .up_003 {
  animation-delay: 0.6s;
}
.show .f_anim.anim_active .up_004 {
  animation-delay: 0.8s;
}
.show .f_anim.anim_active .up_005 {
  animation-delay: 1s;
}
.show#home .mv.anim_active .mv_slide_wrap, .show#home .mv.anim_active .mv_slide_wrap #mv_slide {
  transform: translate(0, 0);
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			RESET

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, legend, input, label, textarea, p, blockquote, table, caption, tbody, tfoot, thead, th, td, option, figure, figcaption {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img, abbr, acronym {
  border: 0;
}

address, caption, cite, code, dfn, th, var, optgroup, strong, em, b, i {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

a, ins, del {
  text-decoration: none;
}

a {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  margin: 0;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

object, embed, th, td {
  vertical-align: top;
}

input, textarea, select {
  font-size: 1em;
}

picture, figure, audio {
  display: inline-block;
}

audio {
  max-width: 100%;
}

.clf::after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button],
input[type=reset] {
  -webkit-appearance: none;
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			COMMON

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
* {
  box-sizing: border-box;
  outline: none;
  font-family: "Noto Sans JP", serif;
  font-size: 3.7333333333vw;
  font-weight: 500;
  font-feature-settings: "palt";
}
@media screen and (min-width: 960px) {
  * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  * {
    font-size: 16px;
  }
}

body, a {
  color: #3b475c;
}

html,
body {
  overflow-x: clip;
  overflow-y: auto;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8f9fa;
  opacity: 0;
  padding: 0;
  position: relative;
}

body.show {
  opacity: 1;
  transition: 1s;
}

main {
  flex: 1;
}

@media screen and (min-width: 960px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc {
    display: block;
  }
}

/*================================
fonts
=================================*/
.en, .en * {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.kaku, .kaku * {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

/*================================
contents title
=================================*/
.en_title, .en_title * {
  font-size: 18.6666666667vw;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: #eaedf0;
}
@media screen and (min-width: 960px) {
  .en_title, .en_title * {
    font-size: 10.9375vw;
  }
}

.contents_title, .contents_title * {
  font-size: 5.8666666667vw;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .contents_title, .contents_title * {
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  .contents_title, .contents_title * {
    font-size: 34px;
  }
}

/*================================
link btn
=================================*/
.link_btn {
  width: 50.6666666667vw;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .link_btn {
    width: 13.1944444444vw;
    max-width: 190px;
  }
}
.link_btn a {
  display: block;
  width: 100%;
  padding: 3.2vw 0;
  border: 1px solid #3b5e92;
  position: relative;
  transition: all 0.6s;
}
@media screen and (min-width: 960px) {
  .link_btn a {
    padding: 0.8333333333vw 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 1440px) {
  .link_btn a {
    padding: 12px 0;
  }
}
@media screen and (min-width: 960px) {
  .link_btn a:before {
    content: "";
    width: 105%;
    height: 100%;
    background: #3b5e92;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.3s;
  }
}
.link_btn a span {
  color: #3b5e92;
  position: relative;
  z-index: 1;
  transition: all 0.6s;
}
@media screen and (min-width: 960px) {
  .link_btn a:hover {
    background: #3b5e92;
  }
  .link_btn a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .link_btn a:hover span {
    color: #fff;
  }
}

/*================================
contents
=================================*/
.inner {
  padding: 0 8vw;
}
@media screen and (min-width: 960px) {
  .inner {
    padding: 0;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			header / footer

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
/*================================
header
=================================*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 18.6666666667vw;
  padding: 0 5.3333333333vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
@media screen and (min-width: 960px) {
  header {
    justify-content: center;
    height: 9.7222222222vw;
    max-height: 140px;
    padding: 0;
    background: #f8f9fa;
  }
}
header .logo {
  width: 9.8666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  header .logo {
    width: 4.0277777778vw;
    max-width: 58px;
    margin: 0 5.2083333333vw 0 0;
  }
}
@media screen and (min-width: 1440px) {
  header .logo {
    margin-right: 75px;
  }
}
header .logo a {
  display: block;
  width: 100%;
}
header nav, header ul {
  height: 100%;
}
header nav ul {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 960px) {
  header nav ul li {
    margin-right: 4.0277777778vw;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li {
    margin-right: 58px;
  }
}
header nav ul li:last-child {
  margin-right: 0;
}
@media screen and (min-width: 960px) {
  header nav ul li.contact {
    padding-left: 3.3333333333vw;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li.contact {
    padding-left: 48px;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li.contact:before {
    content: "";
    width: 1px;
    height: 3.1944444444vw;
    max-height: 46px;
    background: #a9adaf;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 960px) {
  header nav ul li.contact a {
    padding-left: 1.9444444444vw;
    position: relative;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li.contact a {
    padding-left: 28px;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li.contact a:before {
    content: "";
    width: 1.4583333333vw;
    max-width: 21px;
    height: 0.9027777778vw;
    max-height: 13px;
    background: url("../images/common/icon_header_email.svg") no-repeat center center;
    background-size: 100%;
    position: absolute;
    top: 11%;
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li a .ja, header nav ul li a .ja span {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li a .ja, header nav ul li a .ja span {
    font-size: 14px;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li a .ja {
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li a .ja {
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 960px) {
  header nav ul li a .en {
    font-size: 0.6944444444vw;
    color: #3b5e92;
  }
}
@media screen and (min-width: 1440px) {
  header nav ul li a .en {
    font-size: 10px;
  }
}

/*================================
ハンバーガーメニュー
=================================*/
.btn_trigger {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}

.hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.btn_trigger_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8vw;
  height: 8vw;
  background: #f2f2f5;
  border-radius: 0.5333333333vw;
  position: fixed;
  top: 5.0666666667vw;
  right: 5.8666666667vw;
  transition: all 0.4s;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (min-width: 960px) {
  .btn_trigger_wrap {
    display: none;
  }
}
.btn_trigger_wrap button, .btn_trigger_wrap .line {
  width: 4.5333333333vw;
  height: 3.4666666667vw;
  cursor: pointer;
}
.btn_trigger_wrap .line {
  position: relative;
}
.btn_trigger_wrap .line span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #3b5e92;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.4s;
}
.btn_trigger_wrap .line span:nth-child(1) {
  top: 0;
}
.btn_trigger_wrap .line span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn_trigger_wrap .line span:nth-child(3) {
  bottom: 0;
}
.btn_trigger_wrap.active .line span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
}
.btn_trigger_wrap.active .line span:nth-of-type(2) {
  opacity: 0;
}
.btn_trigger_wrap.active .line span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-40deg);
}

/*================================
グローバルナビゲーション
=================================*/
.navi_open_wrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.navi_open_wrap::-webkit-scrollbar {
  display: none;
}
.navi_open_wrap.open {
  transform: translateX(0);
}
.navi_open_wrap .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 160vw;
  background: #3b5e92;
  position: relative;
}
.navi_open_wrap .inner * {
  color: #fff;
}
.navi_open_wrap .inner .nav .logo {
  width: 9.8666666667vw;
  position: absolute;
  top: 6.2666666667vw;
  left: 50%;
  transform: translateX(-50%);
}
.navi_open_wrap .inner .nav_main_link {
  width: 34.4vw;
  margin: 0 auto 29.8666666667vw;
}
.navi_open_wrap .inner .nav_main_link li {
  margin-bottom: 6.6666666667vw;
}
.navi_open_wrap .inner .nav_main_link li:last-child {
  margin-bottom: 0;
}
.navi_open_wrap .inner .nav_main_link li a {
  font-size: 4.2666666667vw;
}
.navi_open_wrap .inner .nav_external_link {
  width: 58.6666666667vw;
  margin: 0 auto;
}
.navi_open_wrap .inner .nav_external_link li {
  margin-bottom: 9.3333333333vw;
}
.navi_open_wrap .inner .nav_external_link li:last-child {
  margin-bottom: 0;
}
.navi_open_wrap .inner .nav_external_link li a {
  padding: 0 4.2666666667vw 0 10.6666666667vw;
  font-size: 4.2666666667vw;
  position: relative;
}
.navi_open_wrap .inner .nav_external_link li a:before, .navi_open_wrap .inner .nav_external_link li a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.navi_open_wrap .inner .nav_external_link li a:before {
  left: 0;
}
.navi_open_wrap .inner .nav_external_link li a:after {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background: url("../images/common/icon_blank_white.svg") no-repeat center center;
  background-size: 100%;
  right: 0;
}
.navi_open_wrap .inner .nav_external_link li.atic a:before {
  width: 7.6vw;
  height: 9.0666666667vw;
  background: url("../images/common/logo_atic_white.svg") no-repeat center center;
  background-size: 100%;
}
.navi_open_wrap .inner .nav_external_link li.actic a:before {
  width: 7.7333333333vw;
  height: 9.2vw;
  background: url("../images/common/logo_actic_white.svg") no-repeat center center;
  background-size: 100%;
}
.navi_open_wrap .inner .nav_external_link li.jsearch a:before {
  width: 7.7333333333vw;
  height: 9.2vw;
  background: url("../images/common/logo_jsearch_white.svg") no-repeat center center;
  background-size: 100%;
}
.navi_open_wrap .inner .nav_external_link li.coming_soon a {
  pointer-events: none;
}
.navi_open_wrap .inner .nav_external_link li.coming_soon a:after {
  content: none !important;
}
.navi_open_wrap .inner .nav .copyright {
  font-size: 3.2vw;
  text-align: center;
  color: #dee6ed;
  position: absolute;
  bottom: 4.6666666667vw;
  left: 50%;
  transform: translateX(-50%);
}

/*================================
footer
=================================*/
footer {
  padding: 16.9333333333vw 0 4vw;
  background: #3b5e92;
}
@media screen and (min-width: 960px) {
  footer {
    padding: 9.4444444444vw 0 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  footer {
    padding: 136px 0 24px;
  }
}
footer * {
  color: #fff;
}
@media screen and (min-width: 960px) {
  footer .inner {
    width: 83.3333333333vw;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .contents, footer .inner .information_wrap, footer .inner .nav {
    display: flex;
  }
}
footer .inner .contents {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents {
    justify-content: space-between;
    margin-bottom: 9.7222222222vw;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .contents {
    margin-bottom: 140px;
  }
}
footer .inner .contents .information_wrap {
  margin-bottom: 12vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .information_wrap {
    margin-bottom: 0;
    text-align: left;
  }
}
footer .inner .contents .information_wrap .logo_wrap {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .information_wrap .logo_wrap {
    width: 23.0555555556vw;
    max-width: 332px;
    margin-right: 2.0833333333vw;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .information_wrap .logo_wrap {
    margin-right: 30px;
  }
}
footer .inner .contents .information_wrap .logo_wrap .logo {
  width: 22.4vw;
  margin: 0 auto 9.0666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .information_wrap .logo_wrap .logo {
    width: 7.3611111111vw;
    max-width: 106px;
    margin: 0 0 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .information_wrap .logo_wrap .logo {
    margin-bottom: 28px;
  }
}
footer .inner .contents .information_wrap .logo_wrap .name {
  margin-bottom: 4vw;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .information_wrap .logo_wrap .name {
    margin-bottom: 0.8333333333vw;
    font-size: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .information_wrap .logo_wrap .name {
    margin-bottom: 12px;
    font-size: 20px;
  }
}
footer .inner .contents .information_wrap .logo_wrap .address {
  line-height: 1.75;
}
footer .inner .contents .information_wrap .map, footer .inner .contents .information_wrap .map iframe {
  width: 100%;
  height: 46.6666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .information_wrap .map, footer .inner .contents .information_wrap .map iframe {
    width: 22.7777777778vw;
    max-width: 328px;
    height: 12.7777777778vw;
    max-height: 184px;
  }
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav li a:hover {
    opacity: 0.6;
  }
}
footer .inner .contents .nav_main_link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 68vw;
  margin: 0 auto 14.2666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_main_link {
    display: block;
    width: auto;
    margin-right: 3.6111111111vw;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .nav_main_link {
    margin-right: 52px;
  }
}
footer .inner .contents .nav_main_link li {
  width: 50%;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_main_link li {
    width: 100%;
    margin-bottom: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .nav_main_link li {
    margin-bottom: 26px;
  }
}
footer .inner .contents .nav_main_link li:nth-child(2) {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_main_link li:nth-child(2) {
    margin-bottom: 1.8055555556vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .nav_main_link li:nth-child(2) {
    margin-bottom: 26px;
  }
}
footer .inner .contents .nav_main_link li:last-child {
  margin-bottom: 0;
}
footer .inner .contents .nav_main_link li a {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_main_link li a {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .nav_main_link li a {
    font-size: 18px;
  }
}
footer .inner .contents .nav_main_link li:nth-child(1) {
  order: 1;
}
footer .inner .contents .nav_main_link li:nth-child(2) {
  order: 3;
}
footer .inner .contents .nav_main_link li:nth-child(3) {
  order: 2;
}
footer .inner .contents .nav_main_link li:nth-child(4) {
  order: 4;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_main_link li:nth-child(1), footer .inner .contents .nav_main_link li:nth-child(2), footer .inner .contents .nav_main_link li:nth-child(3), footer .inner .contents .nav_main_link li:nth-child(4) {
    order: unset;
  }
}
footer .inner .contents .nav_external_link {
  width: 58.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_external_link {
    width: auto;
    margin: 0;
    padding-top: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .nav_external_link {
    padding-top: 6px;
  }
}
footer .inner .contents .nav_external_link li {
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_external_link li {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .nav_external_link li {
    margin-bottom: 30px;
  }
}
footer .inner .contents .nav_external_link li:last-child {
  margin-bottom: 0;
}
footer .inner .contents .nav_external_link li a {
  padding: 0 4.2666666667vw 0 10.6666666667vw;
  font-size: 4.2666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_external_link li a {
    padding: 0 1.3888888889vw 0 3.3333333333vw;
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .inner .contents .nav_external_link li a {
    padding: 0 20px 0 48px;
    font-size: 16px;
  }
}
footer .inner .contents .nav_external_link li a:before, footer .inner .contents .nav_external_link li a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
footer .inner .contents .nav_external_link li a:before {
  left: 0;
}
footer .inner .contents .nav_external_link li a:after {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background: url("../images/common/icon_blank_white.svg") no-repeat center center;
  background-size: 100%;
  right: 0;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_external_link li a:after {
    width: 0.8333333333vw;
    max-width: 12px;
    height: 0.9027777778vw;
    max-height: 13px;
  }
}
footer .inner .contents .nav_external_link li.atic a:before {
  width: 7.6vw;
  height: 9.0666666667vw;
  background: url("../images/common/logo_atic_white.svg") no-repeat center center;
  background-size: 100%;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_external_link li.atic a:before {
    width: 2.3611111111vw;
    max-width: 34px;
    height: 2.2916666667vw;
    max-height: 33px;
  }
}
footer .inner .contents .nav_external_link li.actic a:before {
  width: 7.7333333333vw;
  height: 9.2vw;
  background: url("../images/common/logo_actic_white.svg") no-repeat center center;
  background-size: 100%;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_external_link li.actic a:before {
    width: 2.3611111111vw;
    max-width: 34px;
    height: 2.4305555556vw;
    max-height: 35px;
  }
}
footer .inner .contents .nav_external_link li.jsearch a:before {
  width: 7.7333333333vw;
  height: 9.2vw;
  background: url("../images/common/logo_jsearch_white.svg") no-repeat center center;
  background-size: 100%;
}
@media screen and (min-width: 960px) {
  footer .inner .contents .nav_external_link li.jsearch a:before {
    width: 2.3611111111vw;
    max-width: 34px;
    height: 2.7777777778vw;
    max-height: 40px;
  }
}
footer .inner .contents .nav_external_link li.coming_soon a {
  pointer-events: none;
}
footer .inner .contents .nav_external_link li.coming_soon a:after {
  content: none !important;
}
footer .copyright {
  font-size: 2.6666666667vw;
  text-align: center;
  color: #dee6ed;
}
@media screen and (min-width: 960px) {
  footer .copyright {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  footer .copyright {
    font-size: 12px;
  }
}

/*||||||||||||||||||||||||||||||||||||||||||||||||||
----------------------------------------------------

			home

----------------------------------------------------
||||||||||||||||||||||||||||||||||||||||||||||||||||*/
#home {
  /*================================
  mv
  =================================*/
  /*================================
  principle
  =================================*/
  /*================================
  policy
  =================================*/
  /*================================
  group company
  =================================*/
  /*================================
  company
  =================================*/
  /*================================
  contact
  =================================*/
}
#home .container {
  margin-top: -18.6666666667vw;
  padding-top: 18.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .container {
    margin-top: -9.7222222222vw;
    padding-top: 9.7222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .container {
    margin-top: -140px;
    padding-top: 140px;
  }
}
#home .mv {
  width: 100%;
  margin-bottom: 18vw;
  padding-top: 33.3333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .mv {
    margin-bottom: 13.1944444444vw;
    padding-top: 15.2777777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .mv {
    margin-bottom: 190px;
    padding-top: 220px;
  }
}
#home .mv .catch_wrap {
  margin-bottom: 16vw;
  padding: 0 8vw;
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap {
    width: 76.0416666667vw;
    margin: 0 auto 2.8125vw;
    padding: 0;
  }
}
@media screen and (min-width: 1920px) {
  #home .mv .catch_wrap {
    margin-bottom: 54px;
  }
}
#home .mv .catch_wrap .catch *, #home .mv .catch_wrap .catch * * {
  font-size: 6.4vw;
  font-weight: 700;
  color: #3b475c;
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .catch *, #home .mv .catch_wrap .catch * * {
    font-size: 3.8888888889vw;
  }
}
#home .mv .catch_wrap .catch {
  margin-bottom: 4.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .catch {
    margin-bottom: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .mv .catch_wrap .catch {
    margin-bottom: 50px;
  }
}
#home .mv .catch_wrap .catch span, #home .mv .catch_wrap .catch span img {
  display: block;
}
#home .mv .catch_wrap .catch .ttl:nth-child(1) {
  width: 74.4vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .catch .ttl:nth-child(1) {
    width: 45.2083333333vw;
    max-width: 651px;
    margin-bottom: 2.6388888889vw;
  }
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .catch .ttl:nth-child(1) {
    margin-bottom: 38px;
  }
}
#home .mv .catch_wrap .catch .ttl:nth-child(2) {
  width: 83.2vw;
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .catch .ttl:nth-child(2) {
    width: 50.625vw;
    max-width: 729px;
  }
}
#home .mv .catch_wrap .small {
  letter-spacing: 0.28em;
}
#home .mv .catch_wrap .small * {
  font-size: 3.2vw;
  color: #5c6877;
}
@media screen and (min-width: 960px) {
  #home .mv .catch_wrap .small * {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .mv .catch_wrap .small * {
    font-size: 16px;
  }
}
#home .mv .mv_slide_wrap, #home .mv #mv_slide, #home .mv .swiper-wrapper, #home .mv .swiper-slide, #home .mv picture, #home .mv img {
  width: 100%;
  height: 100%;
}
#home .mv #mv_slide .swiper-slide {
  overflow: hidden;
}
#home .mv .mv_slide_wrap, #home .mv #mv_slide {
  transition: all 0.6s;
  transition-delay: 0.8s;
}
#home .mv .mv_slide_box {
  width: 100%;
  height: 100vw;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #home .mv .mv_slide_box {
    width: 68.9583333333vw;
    height: 35.4166666667vw;
    margin-left: auto;
    border-radius: 0.4166666667vw;
  }
}
#home .mv .mv_slide_box .mv_slide_wrap {
  transform: translate(-110%, 0);
  overflow: hidden;
}
#home .mv .mv_slide_box .mv_slide_wrap #mv_slide {
  transform: translate(110%, 0);
}
#home .mv .mv_slide_box .mv_slide_wrap #mv_slide .swiper-slide-active img, #home .mv .mv_slide_box .mv_slide_wrap #mv_slide .swiper-slide-active picture, #home .mv .mv_slide_box .mv_slide_wrap #mv_slide .swiper-slide-duplicate-active img, #home .mv .mv_slide_box .mv_slide_wrap #mv_slide .swiper-slide-duplicate-active picture, #home .mv .mv_slide_box .mv_slide_wrap #mv_slide .swiper-slide-prev img, #home .mv .mv_slide_box .mv_slide_wrap #mv_slide .swiper-slide-prev picture {
  animation: zoomOut 10s linear 0s normal both;
}
#home .mv .mv_slide_box .mv_slide_wrap #mv_slide img, #home .mv .mv_slide_box .mv_slide_wrap #mv_slide picture {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .mv .scrolldown {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 2.1333333333vw;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  #home .mv .scrolldown {
    left: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .mv .scrolldown {
    left: 50px;
  }
}
#home .mv .scrolldown_border {
  display: block;
  width: 2px;
  height: 17.6vw;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .mv .scrolldown_border {
    height: 4.5833333333vw;
    max-height: 66px;
  }
}
#home .mv .scrolldown_border:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #3b5e92;
  position: absolute;
  top: 0;
  left: 50%;
  animation: scrollline 3s ease-in-out infinite;
  transition: all 0.4s ease-in-out;
}
#home .mv .scrolldown_text {
  width: 4.1333333333vw;
  padding-right: 1.3333333333vw;
  font-weight: 300;
  writing-mode: sideways-lr;
  white-space: nowrap;
  color: #3b5e92;
}
@media screen and (min-width: 960px) {
  #home .mv .scrolldown_text {
    width: 1.0416666667vw;
    max-width: 15px;
    padding-right: 0.3472222222vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .mv .scrolldown_text {
    padding-right: 5px;
    font-size: 14px;
  }
}
#home .mv .scrolldown_text img {
  display: block;
}
#home .principle_wrap {
  margin-bottom: 32vw;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap {
    margin-bottom: 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .principle_wrap {
    margin-bottom: 200px;
  }
}
#home .principle_wrap .en_title {
  margin-bottom: 17.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .en_title {
    margin-bottom: 10.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .principle_wrap .en_title {
    margin-bottom: 150px;
  }
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner {
    width: 83.3333333333vw;
    max-width: 1200px;
    margin: 0 auto;
  }
}
#home .principle_wrap .inner .contents_title {
  margin-bottom: 7.7333333333vw;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents_title {
    margin-bottom: 4.7222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .principle_wrap .inner .contents_title {
    margin-bottom: 68px;
  }
}
#home .principle_wrap .inner .top_text {
  margin-bottom: 16.5333333333vw;
  font-size: 4vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .top_text {
    margin-bottom: 7.6388888889vw;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .principle_wrap .inner .top_text {
    margin-bottom: 110px;
    font-size: 18px;
  }
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents {
    display: flex;
    justify-content: center;
    position: relative;
  }
}
#home .principle_wrap .inner .contents .item {
  margin-bottom: 20vw;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents .item {
    margin-bottom: 0;
  }
}
#home .principle_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
#home .principle_wrap .inner .contents .item .icon {
  margin: 0 auto 5.3333333333vw;
}
#home .principle_wrap .inner .contents .item .icon_001 {
  width: 25.6vw;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents .item .icon_001 {
    width: 7.8472222222vw;
    max-width: 113px;
    margin-bottom: 3.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .principle_wrap .inner .contents .item .icon_001 {
    margin-bottom: 46px;
  }
}
#home .principle_wrap .inner .contents .item .icon_002 {
  width: 25.2vw;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents .item .icon_002 {
    width: 8.4027777778vw;
    max-width: 121px;
    margin-bottom: 3.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .principle_wrap .inner .contents .item .icon_002 {
    margin-bottom: 46px;
  }
}
#home .principle_wrap .inner .contents .item .icon_003 {
  width: 23.0666666667vw;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents .item .icon_003 {
    width: 7.0833333333vw;
    max-width: 102px;
    margin-bottom: 2.2222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .principle_wrap .inner .contents .item .icon_003 {
    margin-bottom: 32px;
  }
}
#home .principle_wrap .inner .contents .item .text {
  font-size: 4vw;
  line-height: 1.75;
  letter-spacing: 0.07em;
  text-indent: 0.07em;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents .item .text {
    font-size: 1.5277777778vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .principle_wrap .inner .contents .item .text {
    font-size: 22px;
  }
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents .item:nth-child(1), #home .principle_wrap .inner .contents .item:nth-child(3) {
    position: absolute;
    top: 0;
  }
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents .item:nth-child(1) {
    left: 0;
  }
}
@media screen and (min-width: 960px) {
  #home .principle_wrap .inner .contents .item:nth-child(3) {
    right: 0;
  }
}
#home .policy_wrap {
  margin-bottom: 26.6666666667vw;
  padding: 12.6666666667vw 0 20vw;
  background: #f2f2f5;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap {
    margin-bottom: 12.5vw;
    padding: 9.0277777778vw 0 20.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap {
    margin-bottom: 180px;
    padding: 130px 0 300px;
  }
}
#home .policy_wrap .en_title {
  margin-bottom: 12.6666666667vw;
  text-align: right;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .en_title {
    margin-bottom: 10.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .en_title {
    margin-bottom: 150px;
  }
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner {
    width: 92.3611111111vw;
    max-width: 1330px;
    margin: 0 auto;
  }
}
#home .policy_wrap .inner .contents_title {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .contents_title {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .contents_title {
    margin-bottom: 100px;
  }
}
#home .policy_wrap .inner .item_title_box {
  display: flex;
  height: 30.4vw;
  margin-bottom: 16vw;
  padding: 1.3333333333vw;
  background: #d7dde6;
  border-radius: 0.9333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box {
    justify-content: space-between;
    width: 67.3611111111vw;
    max-width: 970px;
    height: auto;
    margin: 0 auto 9.3055555556vw;
    padding: 0;
    background: transparent;
    border-radius: unset;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .item_title_box {
    margin-bottom: 134px;
  }
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box:before {
    content: "";
    width: 15.3472222222vw;
    max-width: 221px;
    height: 4.7916666667vw;
    max-height: 69px;
    background: url("../images/policy/dot_line_arrow.svg") no-repeat center center;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#home .policy_wrap .inner .item_title_box .item_title_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  height: 100%;
  border-radius: 0.9333333333vw;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap {
    width: 18.6111111111vw;
    max-width: 268px;
    height: 14.4444444444vw;
    max-height: 208px;
    background: #3b5e92;
    border-radius: 0.3472222222vw;
    cursor: unset;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap {
    border-radius: 5px;
  }
}
#home .policy_wrap .inner .item_title_box .item_title_wrap:before {
  content: "";
  width: 0;
  height: 0;
  border: 2.1333333333vw solid;
  border-color: transparent #3b5e92 #3b5e92 transparent;
  border-radius: 0 0 0.5333333333vw 0;
  bottom: -1.8666666667vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap:before {
    border-width: 1.1111111111vw;
    border-radius: 0 0 0.2777777778vw 0;
    bottom: -0.9722222222vw;
    opacity: 1;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap:before {
    border-width: 16px;
    border-radius: 0 0 4px 0;
    bottom: -14px;
  }
}
#home .policy_wrap .inner .item_title_box .item_title_wrap .icon {
  margin: 0 auto 1.3333333333vw;
}
#home .policy_wrap .inner .item_title_box .item_title_wrap .icon svg {
  display: block;
  width: 100%;
  height: auto;
}
#home .policy_wrap .inner .item_title_box .item_title_wrap .icon svg path {
  fill: #3b5e92;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap .icon svg path {
    fill: #f2f2f5;
  }
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap .icon {
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap .icon {
    margin-bottom: 10px;
  }
}
#home .policy_wrap .inner .item_title_box .item_title_wrap .icon_001 {
  width: 8.8vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap .icon_001 {
    width: 4.5833333333vw;
    max-width: 66px;
  }
}
#home .policy_wrap .inner .item_title_box .item_title_wrap .icon_002 {
  width: 7.8666666667vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap .icon_002 {
    width: 4.3055555556vw;
    max-width: 62px;
  }
}
#home .policy_wrap .inner .item_title_box .item_title_wrap .item_title {
  font-size: 4.2666666667vw;
  text-align: center;
  color: #3b5e92;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap .item_title {
    font-size: 1.5277777778vw;
    color: #f2f2f5;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .item_title_box .item_title_wrap .item_title {
    font-size: 22px;
  }
}
#home .policy_wrap .inner .item_title_box .item_title_wrap.current {
  background: #3b5e92;
}
#home .policy_wrap .inner .item_title_box .item_title_wrap.current:before {
  opacity: 1;
}
#home .policy_wrap .inner .item_title_box .item_title_wrap.current .icon svg path {
  fill: #f2f2f5;
}
#home .policy_wrap .inner .item_title_box .item_title_wrap.current .item_title {
  color: #f2f2f5;
}
#home .policy_wrap .inner .contents {
  margin-bottom: 16vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .contents {
    display: flex;
    justify-content: space-between;
    margin-bottom: 9.7222222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .contents {
    margin-bottom: 140px;
  }
}
#home .policy_wrap .inner .contents .item {
  display: none;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .contents .item {
    width: 46.5%;
  }
}
#home .policy_wrap .inner .contents .item .list_wrap .list {
  margin-bottom: 10.6666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list {
    margin-bottom: 6.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list {
    margin-bottom: 50px;
  }
}
#home .policy_wrap .inner .contents .item .list_wrap .list:last-child {
  margin-bottom: 0;
}
#home .policy_wrap .inner .contents .item .list_wrap .list .number {
  width: 16vw;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list .number {
    width: 6.25vw;
    max-width: 90px;
    left: 0;
    transform: unset;
  }
}
#home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap {
  position: relative;
  z-index: 1;
}
#home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title {
  font-size: 4.2666666667vw;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title {
    font-size: 24px;
  }
}
#home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title.line001 {
  margin-bottom: 7.3333333333vw;
  padding-top: 8vw;
}
#home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title.line002 {
  margin-bottom: 4vw;
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title.line001, #home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title.line002 {
    margin-bottom: 1.7361111111vw;
    padding-top: 0;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title.line001, #home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .list_title.line002 {
    margin-bottom: 25px;
  }
}
#home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .text {
  line-height: 2;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .text {
    padding-left: 5.5555555556vw;
    line-height: 2.5;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .contents .item .list_wrap .list .text_wrap .text {
    padding-left: 80px;
  }
}
#home .policy_wrap .inner .person_wrap {
  margin-bottom: 16vw;
  padding: 11.6vw 6.6666666667vw 15.7333333333vw;
  background: #fbfbfc;
  border-radius: 2.1333333333vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .person_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 83.3333333333vw;
    max-width: 1200px;
    margin: 0 auto 6.6666666667vw;
    padding: 6.25vw 11.1111111111vw 8.0555555556vw;
    border-radius: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .person_wrap {
    margin-bottom: 96px;
    padding: 90px 160px 116px;
    border-radius: 16px;
  }
}
#home .policy_wrap .inner .person_wrap .person_title_wrap {
  margin-bottom: 8vw;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .person_wrap .person_title_wrap {
    margin-bottom: 0;
  }
}
#home .policy_wrap .inner .person_wrap .person_title_wrap .icon {
  width: 13.3333333333vw;
  margin: 0 auto 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .person_wrap .person_title_wrap .icon {
    width: 4.5138888889vw;
    max-width: 65px;
    margin-bottom: 1.3888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .person_wrap .person_title_wrap .icon {
    margin-bottom: 20px;
  }
}
#home .policy_wrap .inner .person_wrap .person_title_wrap .person_title {
  font-size: 5.8666666667vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .person_wrap .person_title_wrap .person_title {
    font-size: 1.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .person_wrap .person_title_wrap .person_title {
    font-size: 28px;
  }
}
#home .policy_wrap .inner .person_wrap .person_title_wrap .person_title .small {
  font-size: 3.2vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .person_wrap .person_title_wrap .person_title .small {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .person_wrap .person_title_wrap .person_title .small {
    font-size: 18px;
  }
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .person_wrap .text_wrap {
    width: 34.7222222222vw;
    max-width: 500px;
  }
}
#home .policy_wrap .inner .person_wrap .text_wrap .text {
  line-height: 2;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .person_wrap .text_wrap .text {
    line-height: 2.5;
  }
}
#home .policy_wrap .inner .value_wrap {
  text-align: center;
}
#home .policy_wrap .inner .value_wrap .value_title_wrap {
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .value_wrap .value_title_wrap {
    margin-bottom: 2.4305555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .value_wrap .value_title_wrap {
    margin-bottom: 35px;
  }
}
#home .policy_wrap .inner .value_wrap .value_title_wrap * {
  color: #3b5e92;
}
#home .policy_wrap .inner .value_wrap .value_title_wrap .en {
  line-height: 1;
}
#home .policy_wrap .inner .value_wrap .value_title_wrap .en, #home .policy_wrap .inner .value_wrap .value_title_wrap .en * {
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .value_wrap .value_title_wrap .en, #home .policy_wrap .inner .value_wrap .value_title_wrap .en * {
    font-size: 2.3611111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .value_wrap .value_title_wrap .en, #home .policy_wrap .inner .value_wrap .value_title_wrap .en * {
    font-size: 34px;
  }
}
#home .policy_wrap .inner .value_wrap .value_title_wrap .ja, #home .policy_wrap .inner .value_wrap .value_title_wrap .ja * {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .value_wrap .value_title_wrap .ja, #home .policy_wrap .inner .value_wrap .value_title_wrap .ja * {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .policy_wrap .inner .value_wrap .value_title_wrap .ja, #home .policy_wrap .inner .value_wrap .value_title_wrap .ja * {
    font-size: 18px;
  }
}
#home .policy_wrap .inner .value_wrap .text {
  line-height: 2;
}
@media screen and (min-width: 960px) {
  #home .policy_wrap .inner .value_wrap .text {
    line-height: 2.5;
  }
}
#home .group_company_wrap {
  margin-bottom: 16vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap {
    margin-bottom: 8.3333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap {
    margin-bottom: 120px;
  }
}
#home .group_company_wrap .en_title {
  margin-bottom: 16vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .en_title {
    margin-bottom: 6.9444444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .en_title {
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner {
    width: 77.7777777778vw;
    max-width: 1120px;
    margin: 0 auto;
  }
}
#home .group_company_wrap .inner .contents_title {
  margin-bottom: 7.4666666667vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents_title {
    margin-bottom: 8.0555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents_title {
    margin-bottom: 116px;
  }
}
#home .group_company_wrap .inner .contents {
  padding: 21.3333333333vw 0 20.8vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents {
    padding: 7.9861111111vw 0 13.8888888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents {
    padding: 115px 0 200px;
  }
}
#home .group_company_wrap .inner .contents:before, #home .group_company_wrap .inner .contents:after {
  content: "";
  width: 15.2vw;
  height: 13.0666666667vw;
  background: url("../images/group_company/icon_parentheses.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents:before, #home .group_company_wrap .inner .contents:after {
    width: 9.7916666667vw;
    max-width: 141px;
    height: 8.4027777778vw;
    max-height: 121px;
  }
}
#home .group_company_wrap .inner .contents:before {
  top: 0;
  right: 0;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents:before {
    right: -9.7916666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents:before {
    right: -141px;
  }
}
#home .group_company_wrap .inner .contents:after {
  bottom: 0;
  left: 0;
  transform: scale(-1, -1);
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents:after {
    left: -9.7916666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents:after {
    left: -141px;
  }
}
#home .group_company_wrap .inner .contents .item {
  margin-bottom: 10.6666666667vw;
  padding-bottom: 10.6666666667vw;
  border-bottom: 1px solid #dee6ed;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 8.0555555556vw;
    border-bottom: none;
  }
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item {
    margin-bottom: 116px;
  }
}
#home .group_company_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
#home .group_company_wrap .inner .contents .item .logo_wrap {
  margin-bottom: 15.2vw;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap {
    margin-bottom: 0;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap {
  margin-bottom: 4vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap {
    margin-bottom: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap {
    margin-bottom: 14px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap .logo {
  width: 21.6vw;
  margin: 0 auto 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap .logo {
    width: 11.3888888889vw;
    max-width: 164px;
    margin-bottom: 2.6388888889vw;
  }
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap .logo {
    margin-bottom: 38px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap .name {
  font-size: 4.2666666667vw;
  font-weight: 600;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap .name {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .name_wrap .name {
    font-size: 24px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap .category {
  width: 39.4666666667vw;
  margin: 0 auto 4vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .category {
    width: 12.6388888889vw;
    max-width: 182px;
    margin-bottom: 0.3472222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .category {
    margin-bottom: 5px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap .category span {
  display: inline-block;
  width: 100%;
  padding: 0.8vw 0 1.0666666667vw;
  line-height: 1;
  color: #5c6877;
  border-radius: 0.5333333333vw;
  background: #eaedf0;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .category span {
    padding: 0.5555555556vw 0 0.6944444444vw;
    border-radius: 0.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .category span {
    padding: 8px 0 10px;
    border-radius: 2px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap ul {
  margin: 0 auto 1.3333333333vw;
  text-align: left;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap ul {
    margin-bottom: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap ul {
    margin-bottom: 16px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap ul.atic_list {
  width: 25.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap ul.atic_list {
    width: 7.6388888889vw;
    max-width: 110px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap ul.actic_list {
  width: 28vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap ul.actic_list {
    width: 8.3333333333vw;
    max-width: 120px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap ul.jsearch_list {
  width: 45.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap ul.jsearch_list {
    width: 13.8888888889vw;
    max-width: 200px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap ul li {
  font-size: 3.4666666667vw;
  line-height: 1.85;
  color: #5c6877;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap ul li {
    font-size: 1.0416666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap ul li {
    font-size: 15px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap ul li:before {
  content: "・";
}
#home .group_company_wrap .inner .contents .item .logo_wrap .site_link a {
  padding-bottom: 0.6666666667vw;
  color: #5c6877;
  border-bottom: 1px solid #5c6877;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .site_link a {
    padding: 0 0 0.3472222222vw 0.5555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .site_link a {
    padding: 0 0 5px 8px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap .site_link a span {
  display: inline-block;
  padding-right: 4.2666666667vw;
  font-size: 3.2vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .site_link a span {
    padding-right: 1.3888888889vw;
    font-size: 0.6944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .site_link a span {
    padding-right: 20px;
    font-size: 10px;
  }
}
#home .group_company_wrap .inner .contents .item .logo_wrap .site_link a span:before {
  content: "";
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background: url("../images/common/icon_blank_gray.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .site_link a span:before {
    width: 0.6944444444vw;
    max-width: 10px;
    height: 0.6944444444vw;
    max-height: 10px;
    right: 0.4166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .site_link a span:before {
    right: 6px;
  }
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .logo_wrap .site_link a:hover {
    opacity: 0.6;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap {
  padding: 0 5.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap {
    width: 59.0277777778vw;
    max-width: 850px;
    padding: 0 0 0 2.9166666667vw;
    border-left: 2px solid #dee6ed;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap {
    padding-left: 42px;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap * {
  line-height: 2;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap * {
    line-height: 1.85;
    letter-spacing: 0.1em;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap .list {
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list {
    margin-bottom: 2.0833333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list {
    margin-bottom: 30px;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap .list:last-child {
  margin-bottom: 0;
}
#home .group_company_wrap .inner .contents .item .text_wrap .list .item_title {
  display: flex;
  align-items: center;
  margin-bottom: 1.3333333333vw;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: unset;
  color: #3b5e92;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .item_title {
    margin-bottom: 0.6944444444vw;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .item_title {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap .list .item_title .ja {
  display: inline-block;
  padding-left: 1.3333333333vw;
  font-size: 2.9333333333vw;
  color: #3b5e92;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .item_title .ja {
    padding-left: 0.3472222222vw;
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .item_title .ja {
    padding-left: 5px;
    font-size: 12px;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap .list .parent li {
  padding-left: 2.4vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .parent li {
    padding-left: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .parent li {
    padding-left: 14px;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap .list .parent li:before {
  content: "";
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  background: #3b475c;
  border-radius: 50%;
  position: absolute;
  top: 3.2vw;
  left: 0;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .parent li:before {
    width: 0.5555555556vw;
    max-width: 8px;
    height: 0.5555555556vw;
    max-height: 8px;
    top: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .parent li:before {
    top: 12px;
  }
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .parent li .small {
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list .parent li .small {
    font-size: 14px;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap .list ol li dl dt {
  padding-left: 2.9333333333vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list ol li dl dt {
    padding-left: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list ol li dl dt {
    padding-left: 14px;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap .list ol li dl dt:before {
  content: "";
  width: 1.8666666667vw;
  height: 1.8666666667vw;
  background: #3b475c;
  border-radius: 50%;
  position: absolute;
  top: 3.2vw;
  left: 0;
}
@media screen and (min-width: 960px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list ol li dl dt:before {
    width: 0.5555555556vw;
    max-width: 8px;
    height: 0.5555555556vw;
    max-height: 8px;
    top: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .group_company_wrap .inner .contents .item .text_wrap .list ol li dl dt:before {
    top: 12px;
  }
}
#home .group_company_wrap .inner .contents .item .text_wrap .list ol li .child li:before {
  content: "・";
}
#home .company_wrap {
  margin-bottom: 26.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .company_wrap {
    margin-bottom: 16.6666666667vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .company_wrap {
    margin-bottom: 240px;
  }
}
#home .company_wrap .en_title {
  margin-bottom: 6.1333333333vw;
  text-align: right;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .en_title {
    margin-bottom: 8.1944444444vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .company_wrap .en_title {
    margin-bottom: 118px;
  }
}
#home .company_wrap .inner {
  padding-bottom: 3.4666666667vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner {
    width: 89.5833333333vw;
    max-width: 1720px;
    margin: 0 auto;
    padding-bottom: 6.25vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner {
    padding-bottom: 120px;
  }
}
#home .company_wrap .inner .contents {
  padding: 9.6vw 6.1333333333vw 55.2vw;
  background: #3b475c;
  border-radius: 2.1333333333vw;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents {
    width: 72.9166666667vw;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4.2708333333vw 6.4583333333vw 8.3333333333vw;
    border-radius: 0.8333333333vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents {
    padding: 82px 124px 160px;
    border-radius: 16px;
  }
}
#home .company_wrap .inner .contents .contents_title {
  margin-bottom: 13.0666666667vw;
  color: #fff;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .contents_title {
    margin-bottom: 8.0555555556vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .company_wrap .inner .contents .contents_title {
    margin-bottom: 116px;
  }
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .text_wrap {
    width: 28.8541666667vw;
    max-width: 554px;
  }
}
#home .company_wrap .inner .contents .text_wrap * {
  color: #fbfbfc;
}
#home .company_wrap .inner .contents .text_wrap dl {
  margin-bottom: 7.7333333333vw;
  padding: 0 1.8666666667vw 4vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .text_wrap dl {
    display: flex;
    margin-bottom: 0.8333333333vw;
    padding: 0 0 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .company_wrap .inner .contents .text_wrap dl {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}
#home .company_wrap .inner .contents .text_wrap dl:last-child {
  margin-bottom: 0;
}
#home .company_wrap .inner .contents .text_wrap dl:before, #home .company_wrap .inner .contents .text_wrap dl:after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#home .company_wrap .inner .contents .text_wrap dl:before {
  width: 20vw;
  background: #5c6877;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .text_wrap dl:before {
    width: 7.9166666667vw;
    max-width: 114px;
  }
}
#home .company_wrap .inner .contents .text_wrap dl:after {
  width: 100%;
  background: #dee6ed;
  z-index: 0;
}
#home .company_wrap .inner .contents .text_wrap dl dt, #home .company_wrap .inner .contents .text_wrap dl dd {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .text_wrap dl dt, #home .company_wrap .inner .contents .text_wrap dl dd {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .company_wrap .inner .contents .text_wrap dl dt, #home .company_wrap .inner .contents .text_wrap dl dd {
    font-size: 16px;
  }
}
#home .company_wrap .inner .contents .text_wrap dl dt {
  margin-bottom: 2.1333333333vw;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .text_wrap dl dt {
    width: 7.9166666667vw;
    max-width: 114px;
    margin-bottom: 0;
    text-align: center;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
  }
}
#home .company_wrap .inner .contents .text_wrap dl dd {
  width: 100%;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .text_wrap dl dd {
    padding-right: 1.6666666667vw;
    padding-left: 1.6666666667vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents .text_wrap dl dd {
    padding-right: 32px;
    padding-left: 32px;
  }
}
#home .company_wrap .inner .contents .text_wrap dl:last-child dl dt, #home .company_wrap .inner .contents .text_wrap dl:last-child dl dd {
  margin-bottom: 0;
}
#home .company_wrap .inner .contents .text_wrap dl:last-child dl dt:before, #home .company_wrap .inner .contents .text_wrap dl:last-child dl dd:before {
  content: none;
}
#home .company_wrap .inner .contents .company_slide_wrap {
  position: absolute;
  bottom: 0;
  right: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap {
    right: 0;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide {
  width: 75.8666666667vw;
  height: 51.0666666667vw;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide {
    width: 42.3958333333vw;
    max-width: 814px;
    height: 28.5416666667vw;
    max-height: 548px;
    margin: 0;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-slide {
  border-radius: 2.1333333333vw;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-slide {
    border-radius: 0.8333333333vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-slide {
    border-radius: 16px;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide img, #home .company_wrap .inner .contents .company_slide_wrap #company_slide picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination, #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination * {
  font-family: "Montserrat", sans-serif;
  color: #fff;
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination {
    padding-right: 1.9791666667vw;
    font-size: 1.3541666667vw;
    right: 0.9375vw;
    bottom: 0.9375vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination {
    padding-right: 38px;
    right: 18px;
    bottom: 18px;
    font-size: 26px;
  }
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination span {
    font-size: 1.875vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination span {
    font-size: 36px;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination .swiper-pagination-current {
  margin-right: 1.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination .swiper-pagination-current {
    margin-right: 0.5208333333vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination .swiper-pagination-current {
    margin-right: 10px;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination .swiper-pagination-total {
  margin-left: 1.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination .swiper-pagination-total {
    margin-left: 0.5208333333vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .swiper-pagination .swiper-pagination-total {
    margin-left: 10px;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap {
  position: absolute;
  bottom: 14.6666666667vw;
  left: -9.0666666667vw;
  z-index: 2;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap {
    position: absolute;
    bottom: 1.3541666667vw;
    left: -2.3958333333vw;
    z-index: 2;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap {
    bottom: 26px;
    left: -46px;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents {
  position: relative;
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-prev, #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-next {
  width: 5.3333333333vw;
  height: auto;
  margin: 0;
  position: unset;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  transform: unset;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-prev, #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-next {
    width: 1.3888888889vw;
    max-width: 20px;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-prev:after, #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-next:after {
  content: none;
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-prev .arrow, #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-next .arrow {
  width: 100%;
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-prev .arrow img, #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-next .arrow img {
  display: block;
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-prev {
  margin-bottom: 14.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-prev {
    margin-bottom: 1.875vw;
  }
}
@media screen and (min-width: 1920px) {
  #home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-prev {
    margin-bottom: 36px;
  }
}
#home .company_wrap .inner .contents .company_slide_wrap #company_slide .arrow_wrap .arrow_contents .swiper-button-next .arrow {
  transform: rotate3d(0, 0, 1, 180deg);
}
#home .contact_wrap {
  margin-bottom: 38.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap {
    margin-bottom: 20.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .contact_wrap {
    margin-bottom: 300px;
  }
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner {
    width: 62.5vw;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 8.3333333333vw;
  }
}
#home .contact_wrap .inner .contents_title {
  margin-bottom: 9.3333333333vw;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents_title {
    margin-bottom: 3.4722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .contact_wrap .inner .contents_title {
    margin-bottom: 50px;
  }
}
#home .contact_wrap .inner .top_text {
  margin-bottom: 13.3333333333vw;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .top_text {
    margin-bottom: 5.5555555556vw;
    font-size: 1.25vw;
    line-height: 2.2;
  }
}
@media screen and (min-width: 1440px) {
  #home .contact_wrap .inner .top_text {
    margin-bottom: 80px;
    font-size: 18px;
  }
}
#home .contact_wrap .inner .top_text * {
  font-size: 4vw;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .top_text * {
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .contact_wrap .inner .top_text * {
    font-size: 18px;
  }
}
#home .contact_wrap .inner .contents {
  width: 69.3333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents {
    display: flex;
    justify-content: space-between;
    width: auto;
    margin: 0;
  }
}
#home .contact_wrap .inner .contents .item {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item {
    display: flex;
    margin-bottom: 0;
  }
}
#home .contact_wrap .inner .contents .item:last-child {
  margin-bottom: 0;
}
#home .contact_wrap .inner .contents .item a {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item a {
    flex-direction: column;
    justify-content: unset;
    align-items: unset;
  }
}
#home .contact_wrap .inner .contents .item a .logo {
  width: 13.8666666667vw;
  margin-right: 3.7333333333vw;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item a .logo {
    width: 9.0277777778vw;
    max-width: 130px;
    margin: 0 auto 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .contact_wrap .inner .contents .item a .logo {
    margin-bottom: 12px;
  }
}
#home .contact_wrap .inner .contents .item a .name {
  width: 48.5333333333vw;
  padding: 1.8666666667vw 0 2.1333333333vw;
  text-align: center;
  border-radius: 0.5333333333vw;
  background: #eaedf0;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item a .name {
    width: 12.6388888889vw;
    max-width: 182px;
    margin: auto auto 0;
    padding: 0.5555555556vw 0 0.6944444444vw;
    border-radius: 0.1388888889vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .contact_wrap .inner .contents .item a .name {
    padding: 8px 0 10px;
    border-radius: 2px;
  }
}
#home .contact_wrap .inner .contents .item a .name span {
  display: inline-block;
  padding-right: 4vw;
  letter-spacing: 0.08em;
  color: #5c6877;
  position: relative;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item a .name span {
    padding-right: 0;
    font-size: 0.9722222222vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .contact_wrap .inner .contents .item a .name span {
    font-size: 14px;
    border-radius: 2px;
  }
}
#home .contact_wrap .inner .contents .item a .name span:before {
  content: "";
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  background: url("../images/common/icon_blank_gray.svg") no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item a .name span:before {
    content: none;
  }
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item a:hover {
    opacity: 0.6;
  }
}
#home .contact_wrap .inner .contents .item:nth-child(1) {
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item:nth-child(1) {
    margin-right: 0;
  }
}
#home .contact_wrap .inner .contents .item.coming_soon a {
  pointer-events: none;
}
#home .contact_wrap .inner .contents .item.coming_soon a .name_wrap {
  position: relative;
}
#home .contact_wrap .inner .contents .item.coming_soon a .name_wrap .name span {
  padding-right: 0;
}
#home .contact_wrap .inner .contents .item.coming_soon a .name_wrap .name span:before {
  content: none;
}
#home .contact_wrap .inner .contents .item.coming_soon a .name_wrap .coming_soon_text {
  font-size: 2.6666666667vw;
  text-align: center;
  white-space: nowrap;
  color: #5c6877;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  #home .contact_wrap .inner .contents .item.coming_soon a .name_wrap .coming_soon_text {
    font-size: 0.8333333333vw;
  }
}
@media screen and (min-width: 1440px) {
  #home .contact_wrap .inner .contents .item.coming_soon a .name_wrap .coming_soon_text {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.css.map */