@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400..900;1,400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

body, div, span, ol, ul, li, table, tr, th, td, dl, dt, dd, img, a, p, h1, h2, h3, h4, h5, h6, nav, header, footer, section, article, form, input, textarea, button, text {
  font-family: "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  /*font-family: "Besley", "Inter", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;*/
  padding: 0;
  margin: 0;
  border: none;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  box-sizing: border-box;
  letter-spacing: 0.02em;
}

html, body {
  position: relative;
  font-size: 16px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  background-color: #fff;
}





/* - - - - - - - - - - - layout (common) - - - - - - - - - - - */

img, video, object {
  max-width: 100%;
  height: auto;
}

body, th, td {
  color: #1a1a1a;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
  transition: all .2s ease-in-out;
}

a:visited {
  color: #1a1a1a;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #303030;
  text-decoration: none;
}

ul li {
  list-style-type: none;
}

img {
  display: block;
  vertical-align: top;
  border-style: none;
}

video {
  display: block;
}

object {
  vertical-align: top;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.small {
  font-size: 13px;
}

.red {
  color: #E32020;
}

.note {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

::selection {
  background: rgba(26,26,26,0.25);
  color: #fff;
}

::-moz-selection {
  background: rgba(26,26,26,0.25);
  color: #fff;
}

sub, sup {
  font-size: 65%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.55em;
}

sub {
  bottom: -0em;
}

.link_new {
  padding-right: 16px;
  /*background: url("../images/icn_new_gr.png") right center / 9px 9px no-repeat;*/
}

/* scroll animation */
.sc_animation,
.sc_animation::before,
.sc_animation::after {
  transition: all .8s cubic-bezier(0.19, 1, 0.22, 1);
}





/*==================================================================================================================================*/



/*layout (pc) */



/*==================================================================================================================================*/

/* - - - - - - - - - - - - - - - - - (common) - - - - - - - - - - - - - - - - - */

.cnt_pc { display: block !important; }
.cnt_pc_inline { display: inline !important; }
.cnt_pc_inlineblock { display: inline-block !important; }
.cnt_pc_flex { display: flex !important; }
.cnt_pc_inlineflex { display: inline-flex !important; }
.cnt_pc_table { display: table !important; }
.cnt_pc_tablecell { display: table-cell !important; }
.cnt_pc_tablerow { display: table-row !important; }
.cnt_sp { display: none !important; }
.cnt_sp_inline { display: none !important; }
.cnt_sp_inlineblock { display: none !important; }
.cnt_sp_flex { display: none !important; }
.cnt_sp_inlineflex { display: none !important; }
.cnt_sp_table { display: none !important; }
.cnt_sp_tablecell { display: none !important; }
.cnt_sp_tablerow { display: none !important; }





/* - - - - - - - - - - - - - - - - - (header) - - - - - - - - - - - - - - - - - */

.bg_sky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../images/bg_sky.png") top center / 720px 720px repeat;
  background-attachment: fixed;
}

.bg_gry {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../images/bg_gry.png") top center / 720px 720px repeat;
  background-attachment: fixed;
  opacity: 0;
}

noscript p {
  display: block;
  padding: 8px;
  color: #c00;
  font-size: 1.1rem;
  font-weight: bold;
  border: 5px solid #c00;
  background: #fff;
}

#assist {
  position: absolute;
  left: -9999px;
}

#headfix {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  padding: 16px;
  transition: transform .6s cubic-bezier(0.19, 1, 0.22, 1);
}

#header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  margin: 0 auto;
}

#header h1 {
  position: relative;
  z-index: 99999;
}

#header h1 a {
  display: flex;
  align-items: center;
  padding: 18px 32px 18px;
  text-decoration: none;
  background: #fff;
  border-radius: 5px;
}

.logo_wh {
  display: none;
}

body.top .logo_cl {
  display: none;
}

body.top .logo_wh {
  display: block;
}

body.top #header.opened .logo_cl {
  display: block;
}

body.top #header.opened .logo_wh {
  display: none;
}





/* - - - - - - - - - - - - - - - - - (nav) - - - - - - - - - - - - - - - - - */

/* spmenu */

a.spmenu {
  display: block;
  position: fixed;
  top: 0;
  right: 40px;
  cursor: pointer;
  margin: 0 0 0 0;
  padding: 29px 49px 0;
  width: 138px;
  height: 76px;
  border-radius: 0px 0px 5px 5px;
  background: #397cbf;
  z-index: 99999;
  color: #fff;
  text-decoration: none;
}

a.spmenu:hover {
  top: -4px;
  border-radius: 0px 0px 16px 16px;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-trigger {
  position: relative;
  width: 39px;
  height: 18px;
  float: none;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.top .menu-trigger span,
#header.opened .menu-trigger span {
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 8px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  width: 20px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-8px) rotate(315deg);
}





/* hd_nav */

.hd_nav {
  display: flex;
  gap: 12px;
  position: fixed;
  top: 0;
  right: 190px;
  z-index: 99999;
  transition: all .2s ease-in-out;
}

.hd_nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 138px;
  height: 76px;
  border-radius: 0px 0px 5px 5px;
  background: #b3483e;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.hd_nav a span {
  display: block;
  font-weight: 500;
  font-size: 11px;
}

.hd_nav a:hover {
  transform: translate(0, -4px);
}

.hd_nav a:hover {
  border-radius: 0px 0px 16px 16px;
}





/* mnav */

nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 0 0;
  background: url("../images/bg_gry.png") top center / 720px 720px repeat;
  background-attachment: fixed;
  z-index: 9999;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display:none;
}

.nav_logo a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 26px 40px 25px;
  text-decoration: none;
}

#mnav {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 160px 0 100px;
  text-align: left;
  line-height: 1.5;
}

.mnav {
  flex-basis: 27%;
  max-width: 27%;
  width: 27%;
  display: block;
}

.mnav p {
  margin: 0 0 28px;
}

/*.mnav p.current {
  opacity: 0.4;
}*/

.mnav .comingsoon,
#gnav .comingsoon,
#fnav .comingsoon {
  opacity: 0.2;
  pointer-events: none;
}

.disabled {
  pointer-events: none;
}

.mnav p > a,
.mnav p > span {
  display: block;
  text-decoration: none;
}

.mnav p > a:hover {
  transform: translate(5px, 0);
}

.mnav p > a span,
.mnav p > span span {
  display: block;
  padding: 8px 0 0 0;
  font-weight: 500;
  font-size: 12px;
}

.mnav_cnt {
  margin: 0 0 65px;
}

ul.mnav,
ul.mnav_btn li {
  text-align: left;
  line-height: 1.7;
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

ul.mnav.active,
.mnav.active ul.mnav_btn li {
  opacity: 1;
  transform: translate(0, 0);
}

ul.mnav:nth-child(1), ul.mnav_btn li:nth-child(1) { transition-delay: .1s; }
ul.mnav:nth-child(2), ul.mnav_btn li:nth-child(2) { transition-delay: .2s; }
ul.mnav:nth-child(3), ul.mnav_btn li:nth-child(3) { transition-delay: .3s; }
ul.mnav:nth-child(4), ul.mnav_btn li:nth-child(4) { transition-delay: .4s; }
ul.mnav:nth-child(5), ul.mnav_btn li:nth-child(5) { transition-delay: .5s; }
ul.mnav:nth-child(6), ul.mnav_btn li:nth-child(6) { transition-delay: .6s; }

ul.mnav_btn li + li:has(span) {
  padding: 10px 0 0;
}

ul.mnav_btn li a {
  display: block;
  padding: 4px 0 4px;
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
}

ul.mnav_btn li a:hover {
  transform: translate(5px, 0);
}

/*ul.mnav_btn li a.current {
  color: #999;
}*/

ul.mnav_btn li span {
  display: inline-block;
  font-weight: 500;
  text-decoration: underline;
  font-size: 12px;
  line-height: 1.3;
}

ul.mnav_btn li dl {
  display: flex;
  padding: 5px 0 0;
}

ul.mnav_btn li dl dt {
  flex-basis: 3.6em;
  max-width: 3.6em;
  width: 3.6em;
}

ul.mnav_btn li dl dd a {
  display: block;
  padding: 3px 0 0px;
}





/* gnav */

#gnav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 240px;
  height: 100%;
  opacity: 0;
  visibility: visible;
  transition: opacity .25s ease, visibility 0s linear 0s;
}

#gnav.is-ready {
  opacity: 1;
}

#gnav.hide{
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility 0s linear .25s;
}

ul.gnav {
  padding: 125px 0 0 53px;
}

ul.gnav > li {
  position: relative;
  transition: all .3s cubic-bezier(0.19, 1, 0.22, 1);
}

ul.gnav > li > a {
  position: relative;
  display: block;
  padding: 5px 10px 17px;
  text-decoration: none;
}

ul.gnav > li > a::before {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: block;
  content: "";
  width: 0%;
  height: 3px;
  background: #1a1a1a;
  transition: all .34s cubic-bezier(0.19, 1, 0.22, 1);
}

ul.gnav > li:nth-child(1).active > a::before { width: 61%; }
ul.gnav > li:nth-child(2).active > a::before { width: 31%; }
ul.gnav > li:nth-child(3).active > a::before { width: 73%; }
ul.gnav > li:nth-child(4).active > a::before { width: 68%; }
ul.gnav > li:nth-child(5).active > a::before { width: 40%; }
ul.gnav > li:nth-child(6).active > a::before { width: 68%; }

ul.gnav > li > div {
  display: none;
  position: absolute;
  top: 31px;
  right: 0;
  width: 220px;
  padding: 0 20px;
  border-radius: 10px;
  background: #505050;
  z-index: 2;
}

.gnav_cnt {
}

ul.gnav_btn {
  line-height: 1.7;
  text-align: left;
}

ul.gnav_btn li {
  padding: 7px 0;
}

ul.gnav_btn li:not(:last-child) {
  border-bottom: 2px dotted rgba(255,255,255,0.20);
}

ul.gnav_btn li > a {
  position: relative;
  display: block;
  margin: 0 -13px 0;
  padding: 7px 40px 7px 13px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

ul.gnav_btn li > a:hover {
  background: #1a1a1a;
}

ul.gnav_btn li a::before {
  position: absolute;
  top: 50%;
  right: 13px;
  display: block;
  content: "";
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

ul.gnav_btn li a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

ul.gnav_btn li a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

ul.gnav_btn li > span {
  padding: 7px 0;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
}

ul.gnav_btn li > dl {
  display: block;
  padding: 5px 0 0;
}

ul.gnav_btn li > dl dt {
}

ul.gnav_btn li > dl dt span {
  display: inline-block;
  font-weight: 500;
  text-decoration: underline;
  font-size: 12px;
  line-height: 1.3;
  color: #fff;
}

ul.gnav_btn li > dl dd a {
  position: relative;
  display: block;
  margin: 0 -13px 0;
  padding: 6px 40px 6px 13px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
}

ul.gnav_btn li > dl dd a:hover {
  background: #1a1a1a;
}

.shitteru {
  display: none;
  margin: 0 0 19px 40px;
}

.shitteru li {
  position: relative;
}

.shitteru li span {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, 0);
}





/* - - - - - - - - - - - - - - - - - (footer) - - - - - - - - - - - - - - - - - */

.pagetop {
  position: fixed;
  bottom: 36px;
  right: 44px;
  z-index: 99;
}

.pagetop a {
  position: relative;
  display: block;
  width: 85px;
  transform-origin: bottom;
}

.pagetop a:hover {
  transform: scale(1,0.97);
}

#footer {
  position: relative;
  width: 100%;
}

.ft_entry {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ft_entry_ph {
  position: relative;
  width: 100%;
}

.ft_entry_txt {
  position: absolute;
  top: 17%;
  left: 2.6%;
  right: 2.6%;
  transform-origin: 50% 50%;
  animation: ftEntrySpin 80s linear infinite;
}

@keyframes ftEntrySpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

.ft_entry_txt img {
  width: 100%;
}

.ft_entry_cnt {
  position: absolute;
  top: 52%;
  left: 50%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

.ft_entry_cnt h3 {
  display: inline-block;
  margin: 0 auto 17px;
}

.ft_entry_cnt p {
  margin: 0 0 49px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}

.ft_entry_btns {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.ft_entry_btns li {
  flex-basis: 240px;
  flex-shrink: 0;
}

.ft_entry_cnt a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 240px;
  padding: 20px 40px 19px;
  background: #454545;
  border-radius: 100vw;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.ft_entry_cnt a:hover {
  background: #636363;
}

.ft_entry_cnt a::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

@keyframes btnArrow {
  from, to { transform: translate(0, -50%); opacity: 1; }
  50% { transform: translate(100%, -50%); opacity: 0; }
  51% { transform: translate(-100%, -50%); opacity: 0; }
  100% { transform: translate(0, -50%); opacity: 1; }
}

.ft_entry_cnt a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

#fnav {
  position: relative;
  margin: -20px 0 0;
  padding: 72px 2.6% 34px;
  background: #fff;
  /*background: url("../images/bg_gry.png") top center / 720px 720px repeat;*/
  border: 3px solid #1a1a1a;
  border-radius: 20px 20px 0px 0px;
  text-align: left;
}

.fnav_cnt {
  display: flex;
  justify-content: space-between;
}

.fnav_title {
  flex-basis: 27.7%;
  max-width: 376.51px;
  width: 27.7%;
}

.ft_logo {
  display: block;
  margin: 0 0 64px;
}

.ft_logo img {
  width: 100%;
}

a.btn_corp {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 240px;
  padding: 20px 40px 19px;
  background: #454545;
  border-radius: 100vw;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

a.btn_corp:hover {
  background: #636363;
}

a.btn_corp::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_nwin_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

a.btn_corp:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.fnav_list {
  flex-basis: 62.4%;
  max-width: 62.4%;
  width: 62.4%;
  display: flex;
  justify-content: space-between;
}

.fnav_list > li {
  flex-basis: 28.3%;
  max-width: 28.3%;
  width: 28.3%;
}

.fnav_list p {
  margin: 0 0 20px;
}

.fnav_list p > a,
.fnav_list p > span {
  display: block;
  text-decoration: none;
}

.fnav_list p > a:hover {
  transform: translate(5px, 0);
}

.fnav_list p > a span,
.fnav_list p > span span {
  display: block;
  padding: 8px 0 0 0;
  font-weight: 500;
  font-size: 12px;
}

.fnav_list_cnt {
  margin: 0 0 60px;
}

ul.fnav_list,
ul.fnav_list_btn li {
  text-align: left;
  line-height: 1.7;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

ul.fnav_list_btn li + li:has(span) {
  padding: 10px 0 0;
}

ul.fnav_list_btn li a {
  display: block;
  padding: 3px 0 3px;
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;}

ul.fnav_list_btn li a:hover {
  transform: translate(5px, 0);
}

ul.fnav_list_btn li span {
  display: block;
  padding: 3px 0 3px;
  font-size: 13px;
  text-decoration: underline;
}

.ft_link {
  margin: 0 auto 32px;
}

.ft_link a {
  display: inline-block;
  padding: 0 15px 0 0;
  background: url("../images/icn_new_bk.png") right center / 10px auto no-repeat;
  font-weight: 500;
  text-decoration: underline;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.ft_link a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.copyright {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: left;
}










/* - - - - - - - - - - - - - - - - - (content top) - - - - - - - - - - - - - - - - - */

/* top mv */

#topmv_wrapeer {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url("../images/bg_top_mv.png") center center / cover no-repeat;
}

.top_mv_cnt {
  position: relative;
  width: 100%;
  height: 100%;
}

.top_mv_cnt img {
  width: 100%;
}

.top_mv_space {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv_cloud_s {
  position: absolute;
  top: 35%;
  left: 0%;
  display: flex;
  width: max-content;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
  opacity: 0;
}

.mv_cloud_s img {
  width: 911px;
  margin-right: 200px;
}

.mv_cloud_l {
  position: absolute;
  top: 22%;
  left: 0%;
  display: flex;
  width: max-content;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
  opacity: 0;
}

.mv_cloud_l img {
  width: 1191px;
  margin-right: 300px;
}

.top_mv_cnt.sc_animation .mv_cloud_s {
  animation: fadeIn 4.0s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 0.7s;
}

.top_mv_cnt.sc_animation .mv_cloud_l {
  animation: fadeIn 4.0s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 1.5s;
}

.top_mv_cnt.noanim .mv_cloud_s,
.top_mv_cnt.noanim .mv_cloud_l {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}

.mv_sun {
  position: absolute;
  top: 47px;
  left: 42%;
  width: 409px;
}


.top_mv_cnt.sc_animation .mv_sun {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  will-change: transform, opacity;
}

.top_mv_cnt.active .mv_sun {
  animation: popIn 0.4s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 1.0s;
  transform-origin: center;
}

.top_mv_cnt.noanim .mv_sun {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}

.popin {
  opacity: 0;
  will-change: transform, opacity;
}

.popin.active {
  animation: popIn 0.5s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 0.6s;
  transform-origin: center;
}

.top_mv_cnt.active .mv_sun img {
  animation: spin 36.0s linear infinite !important;
  transform-origin: center;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.92);
  }
  40% {
    opacity: 0.6;
    transform: translateY(-6px) scale(1,1.03);
  }
  70% {
    opacity: 1;
    transform: translateY(3px) scale(1,0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.mv_build {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
}

.top_mv_cnt.active .mv_build {
  animation: popIn 0.4s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 3.0s;
}

.top_mv_cnt.noanim .mv_build {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}

.mv_tree {
  position: absolute;
  bottom: 27px;
  right: 0;
  width: 36.4%;
  opacity: 0;
}

.top_mv_cnt.active .mv_tree {
  animation: popIn 0.4s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 3.5s;
}

.top_mv_cnt.noanim .mv_tree {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}

.mv_people {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}

.mv_people li {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.43%;
  opacity: 0;
}

.top_mv_cnt.active .mv_people li {
  animation: popIn 0.3s cubic-bezier(.2,1.3,.3,1) both;
}

.top_mv_cnt.noanim .mv_people li {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}

.top_mv_cnt .mv_people li:nth-child(1) { left: 16%; }
.top_mv_cnt .mv_people li:nth-child(2) { left: 32%; }
.top_mv_cnt .mv_people li:nth-child(3) { left: 42%; }
.top_mv_cnt .mv_people li:nth-child(4) { left: 47%; }
.top_mv_cnt .mv_people li:nth-child(5) { left: 57%; }
.top_mv_cnt .mv_people li:nth-child(6) { left: 79%; }
.top_mv_cnt .mv_people li:nth-child(7) { left: 82%; }
.top_mv_cnt .mv_people li:nth-child(8) { left: 85%; }

.top_mv_cnt.active .mv_people li:nth-child(1) { animation-delay: 4.5s; }
.top_mv_cnt.active .mv_people li:nth-child(2) { animation-delay: 4.0s; }
.top_mv_cnt.active .mv_people li:nth-child(3) { animation-delay: 5.0s; }
.top_mv_cnt.active .mv_people li:nth-child(4) { animation-delay: 4.8s; }
.top_mv_cnt.active .mv_people li:nth-child(5) { animation-delay: 4.2s; }
.top_mv_cnt.active .mv_people li:nth-child(6) { animation-delay: 4.9s; }
.top_mv_cnt.active .mv_people li:nth-child(7) { animation-delay: 4.4s; }
.top_mv_cnt.active .mv_people li:nth-child(8) { animation-delay: 4.7s; }

.mv_cars {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100px;
  overflow: hidden;
  opacity: 0;
}

.top_mv_cnt.sc_animation .mv_cars {
  animation: fadeIn 2.0s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 5.0s;
}

.top_mv_cnt.noanim .mv_cars {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}

.mv_cars li {
  position: absolute;
  bottom: 0;
  width: 5.97%;
  animation: carMove 30s linear infinite;
}

.top_mv_cnt.noanim .mv_cars li {
  animation: carMove 30s linear infinite !important;
}

.mv_cars li:nth-child(1) { animation-delay: 0s; }
.mv_cars li:nth-child(2) { animation-delay: -10s; animation-duration: 34s; }
.mv_cars li:nth-child(3) { animation-delay: -19s; animation-duration: 26s; }

.top_mv_cnt.noanim .mv_cars li:nth-child(1) { animation-delay: 0s !important; }
.top_mv_cnt.noanim .mv_cars li:nth-child(2) { animation-delay: -10s !important; animation-duration: 34s !important; }
.top_mv_cnt.noanim .mv_cars li:nth-child(3) { animation-delay: -19s !important; animation-duration: 26s !important; }

@keyframes carMove {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120vw);
  }
}

.mv_copy_jp {
  position: absolute;
  top: 17.4%;
  left: 7.8%;
  width: 30.7%;
}

.mv_copy_jp img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  transform: translate(0,30px);
  opacity: 0;
}

.top_mv_cnt.sc_animation .mv_copy_jp img {
  animation: fadeUp 2.0s cubic-bezier(.2,1.3,.3,1) both;
}

.top_mv_cnt.noanim .mv_copy_jp img {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}

.top_mv_cnt.sc_animation .mv_copy_jp img:nth-child(1) { animation-delay: 5s; }
.top_mv_cnt.sc_animation .mv_copy_jp img:nth-child(2) { animation-delay: 5.6s; }
.top_mv_cnt.sc_animation .mv_copy_jp img:nth-child(3) { animation-delay: 6.2s; }
.top_mv_cnt.sc_animation .mv_copy_jp img:nth-child(4) { animation-delay: 6.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translate(0,0); }
}

.mv_copy_en {
  position: absolute;
  top: 14%;
  right: 5.14%;
  width: 153px;
  transform: translate(0,30px);
  opacity: 0;
}

.top_mv_cnt.sc_animation .mv_copy_en {
  animation: fadeUp 2.0s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 6.8s;
}

.top_mv_cnt.noanim .mv_copy_en {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}





/* top_content */

.top_lead_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: blur(40px);
  background-color: rgba(131,191,232,0.60);
  opacity: 0;
}

.top_lead {
  position: relative;
  padding: 400px 0 100px;
  color: #fff;
}

.top_lead p {
  width: 70%;
  max-width: 1086px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  text-align: left;
  color: #fff;
}

.top_lead p span {
}

.top_lead_txt .char {
  transition: opacity 0.05s linear;
}

.top_cnt {
  position: relative;
  overflow: hidden;
}

.top_cnt .comingsoon {
  pointer-events: none;
}

.top_cnt .comingsoon,
.top_cnt .comingsoon img {
  -ms-filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
  filter: grayscale(1);
  opacity: 0.22;
}

.top_cnt_inner {
  position: relative;
}

.content_r {
  position: relative;
  width: calc(100% - 304px);
  margin: 0 0 0 auto;
}

h3.top_for_title {
  margin: 135px auto 30px;
}

h3.top_for_title img {
  width: 86.6%;
}

.for_slider_wrapper {
  position: relative;
  margin: 0 auto 130px;
}

.for_slider {
  position: relative;
}

.for_slider a {
  display: block;
  text-decoration: none;
}

.for_ph {
  position: relative;
  width: 90%;
  max-width: 1026px;
  margin: 0 auto 40px;
  padding: 30px 0 0;
}

.for_ph_img {
  transition: all .3s ease;
}

.for_slider a:hover .for_ph_img  {
  transform: scale(1.01);
}

.for_ph_num {
  position: absolute;
  top: 13.5%;
  left: 5.6%;
  width: 9.6%;
}

.for_ph_copy {
  position: absolute;
  top: 2.5%;
  right: 5.6%;
  width: 11.7%;
  max-width: 120px;
}

.btn_arrow_cir {
  position: absolute;
  bottom: 11%;
  right: 5.6%;
  width: 64px;
  height: 64px;
  background: #454545;
  border-radius: 100vw;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn_arrow_cir::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(-50%, -50%);
}

a:hover .btn_arrow_cir {
  background: #1a1a1a;
}

a:hover .btn_arrow_cir::after {
  animation: btnArrow50 .4s ease-in-out 0s 1 normal running none;
}

@keyframes btnArrow50 {
  from, to { transform: translate(-50%, -50%); opacity: 1; }
  50% { transform: translate(100%, -50%); opacity: 0; }
  51% { transform: translate(-100%, -50%); opacity: 0; }
  100% { transform: translate(-50%, -50%); opacity: 1; }
}

.for_copy {
  margin: 0 auto 25px;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  text-decoration: none;
}

.for_title {
  width: 90%;
  max-width: 660px;
  margin: 0 auto 25px;
}

.for_slider_cloud1 {
  position: absolute;
  top: 39%;
  right: -188px;
  width: 446px;
}

.for_slider_cloud2 {
  position: absolute;
  top: 47%;
  left: -11px;
  width: 283px;
}

.for_slider_cloud3 {
  position: absolute;
  top: 65%;
  right: 23%;
  width: 162px;
}

.slick-dots {
  position: absolute;
  bottom: -15px;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 3px;
  cursor: pointer;
}

.slick-dots li button {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  padding: 0px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
  opacity: 1;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button {
  position: relative;
  width: 14px;
  height: 14px;
  padding: 0;
  opacity: 1;
  background: url("../images/icn_dot.png") center center / cover no-repeat;
  transition: all .2s ease-in-out;
}

.slick-dots li.slick-active button {
  opacity: 1;
  background: url("../images/icn_dot_on.png") center center / cover no-repeat;
}

.slick-dots li button:before{
  content: none !important;
}

.slick-dots li button:before{
  content: none !important;
  display: none !important;
}

.slick-dots li button{
  position: relative;
  width: 14px;
  height: 14px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  transform: none;
}

.slick-dots li.slick-active button{
  /* 1px枠を内側に */
  box-shadow: none;
  border-radius: 100vw;
}

.slick-dots li.slick-active button::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100vw;
  z-index: 0;
  pointer-events: none;

  background: conic-gradient(
    from 0deg,
    #b3483e 0deg,
    #b3483e var(--angle, 0deg),
    transparent var(--angle, 0deg),
    transparent 360deg
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 1px),
    #000 calc(100% - 1px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 1px),
    #000 calc(100% - 1px)
  );
}

h3.top_joyolife_career_title {
  margin: 0 auto 58px;
}

h3.top_joyolife_career_title span {
  display: block;
  margin: 0 auto 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
}

h3.top_joyolife_career_title img {
  /*width: 40%;*/
  margin: 0 auto;
}

.top_joblife_movie_wrapper_w100 {
  position: relative;
  width: 100%;
}

.top_joblife_movie_wrapper {
  position: relative;
  width: 90%;
  max-width: 778px;
  margin: 0 auto 200px;
  border-radius: 20px;
  background: #b1b1b1;
  border: 3px solid #1a1a1a;
  overflow: hidden;
  aspect-ratio: 1.778 / 1;
}

.top_joblife_movie_wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_joblife_movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_joblife_marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 177px;
  left: -304px;
  width: 100vw;
  opacity: 0.2;
}

.top_joblife_marquee > span {
  display: block;
  width: 1241px;
  min-width: 1241px;
  animation: marquee 32s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 3rem));
  }
}

h3.top_reasons_title {
  margin: 0 auto 60px;
}

h3.top_reasons_title + p {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}

.top_reasons_wrapper {
  position: relative;
  margin: -18px auto 170px;
}

.top_reasons_slider {
  width: 74%;
  margin: 0 15% 0 11%;
}

.top_reasons_slider li {
  
}

.top_reasons_shoulder {
  position: absolute;
  top: -170px;
  right: 10.6%;
  width: 181px;
}

.top_reasons_balloon {
  position: absolute;
  top: 43%;
  left: 0%;
  width: 171.5px;
}

.btn_reasons_more {
  position: absolute;
  bottom: 82px;
  right: 10.6%;
  width: 240px;
}

.btn_reasons_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 64px;
  padding: 10px 35px 10px 10px;
  border-radius: 100vw;
  background: #454545;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn_reasons_more a:hover {
  background: #1a1a1a;
}

.btn_reasons_more a::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.btn_reasons_more a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_photo_slider {
  left: -304px;
  width: 100vw;
}

.top_about_title {
  display: flex;
  justify-content: flex-start;
  padding: 176px 0 44px;
}

.top_about_title > img {
  margin: 0 12% 0 0;
}

.top_about_title span {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}

.top_about_title + p {
  margin: 0 auto 60px;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-align: left;
}

.top_about_column {
  display: flex;
  justify-content: space-between;
  padding: 0 3.5% 0 0;
}

.top_about_l {
  flex-basis: 70%;
  max-width: 70%;
  width: 70%;
  position: relative;
  margin: 0 -7% 0 0;
  padding: 0 0 48px;
}

.top_about_l_ph2 {
  position: absolute;
  top: -19%;
  left: 57%;
  width: 71px;
}

.top_about_r {
  flex-basis: 37%;
  max-width: 37%;
  width: 37%;
  position: relative;
}

.top_about_movie_wrapper {
  width: 71%;
  margin: -196px 0 0 auto;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.top_about_movie {
  width: 100%;
  aspect-ratio: 0.8 / 1;
  object-fit: cover;
}

.top_about_btn_star {
  position: absolute;
  top: 34%;
  right: 55%;
  width: 42px;
}

.top_about_btn {
  position: absolute;
  bottom: 18px;
  right: 0;
  width: 100%;
}

.top_about_btn li {
  margin: 0 0 2px;
}

.top_about_btn li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 80px;
  padding: 5px 70px 5px 40px;
  border-radius: 10px;
  background: #454545;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

.top_about_btn li a:hover {
  background: #1a1a1a;
}

.top_about_btn li a::before {
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_about_btn li a::after {
  position: absolute;
  top: 50%;
  right: 32px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_about_btn li a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_about_b_ph1 {
  width: 30%;
  max-width: 340px;
  margin: 0 33% 160px auto;
}

.top_about_b_ph2 {
  position: absolute;
  top: 30px;
  left: 16.5%;
  width: 84px;
}

.top_about_b {
  position: relative;
}

h3.top_work_people_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 7.5% 0 0;
}

h3.top_work_people_title > img {
  flex-basis: 50.5%;
  max-width: 525px;
  width: 50.5%;
  margin: 0 30px 0 0;
}

h3.top_work_people_title span {
  flex-basis: 30%;
  max-width: 307px;
  width: 30%;
}

h3.top_work_people_title + p {
  margin: -15px auto 140px;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-align: left;
}

.top_work {
  position: relative;
  margin: 0 0 30px 5%;
}

.btn_work_more {
  position: absolute;
  bottom: 18%;
  right: 4%;
}

.btn_work_more a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 400px;
  height: 80px;
  padding: 5px 70px 5px 40px;
  border-radius: 10px;
  background: #454545;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

.btn_work_more a:hover {
  background: #1a1a1a;
}

.btn_work_more a::before {
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.btn_work_more a::after {
  position: absolute;
  top: 50%;
  right: 32px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.btn_work_more a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_people {
  margin: 0 auto 160px;
  padding: 0 30px 0 10px;
}

.top_people_slider.slick-dotted.slick-slider {
  margin-bottom: 0;
  border-bottom: 3px solid #1a1a1a;
}

.top_people_column {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 95px;
}

.top_people_l {
  flex-basis: 39%;
  max-width: 39%;
  width: 39%;
}

.top_people_l img {
  transform: translate(0,30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(.2,1.3,.3,1), opacity 0.8s cubic-bezier(.2,1.3,.3,1);
}

.slick-current .top_people_l img {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.top_people_r {
  flex-basis: 53%;
  max-width: 53%;
  width: 53%;
  position: relative;
  padding: 50px 0;
  text-align: left;
  line-height: 1.9;
}

.top_people_r::before {
  position: absolute;
  top: 0%;
  left: -8%;
  display: block;
  content: "";
  width: 34%;
  height: 42%;
  background: url("../images/pic_top_04_05.png") center top / contain no-repeat;
  z-index: -1;
}

.top_people_copy {
  margin: 0 auto 35px;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.02em;
  transform: translate(0,30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(.2,1.3,.3,1), opacity 0.8s cubic-bezier(.2,1.3,.3,1);
}

.slick-current .top_people_copy {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.0s;
}

.brown {
  color: #b3483e;
}

.blue {
  color: #397cbf;
}

.top_people_copy span {
  font-weight: 500;
}

.top_people_name {
  margin: 0 auto 15px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  transform: translate(0,30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(.2,1.3,.3,1), opacity 0.8s cubic-bezier(.2,1.3,.3,1);
}

.slick-current .top_people_name {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.1s;
}

.top_people_prof {
  font-size: 12px;
  letter-spacing: 0.02em;
  transform: translate(0,30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(.2,1.3,.3,1), opacity 0.8s cubic-bezier(.2,1.3,.3,1);
}

.slick-current .top_people_prof {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.2s;
}

.btn_people_more {
  position: absolute;
  bottom: 52px;
  right: 0;
  width: 240px;
  transform: translate(0,30px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(.2,1.3,.3,1), opacity 0.8s cubic-bezier(.2,1.3,.3,1);
}

.slick-current .btn_people_more {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 1.3s;
}

.btn_people_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 64px;
  padding: 10px 35px 10px 10px;
  border-radius: 100vw;
  background: #454545;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn_people_more a:hover {
  background: #1a1a1a;
}

.btn_people_more a::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.btn_people_more a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_people_btn {
  width: 38px;
  margin: 0 auto;
  padding: 38px 0 0;
}

.top_people_btn a:hover {
  opacity: 0.7;
}

.top_people_slider .slick-dots {
  position: absolute;
  bottom: -34px;
  display: flex;
  justify-content: flex-end;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: auto;
  bottom: -90px;
  width: 24px;
  height: 24px;
  transition: all .3s ease;
}

.slick-prev {
  left: calc(50% - 100px);
  background: url("../images/icn_prev_bk.png") center center / cover no-repeat;
}

.slick-prev:hover,
.slick-prev:focus {
  background: url("../images/icn_prev_bk.png") center center / cover no-repeat;
  opacity: 0.7;
}

.slick-next {
  right: calc(50% - 100px);
  background: url("../images/icn_next_bk.png") center center / cover no-repeat;
}

.slick-next:hover,
.slick-next:focus {
  background: url("../images/icn_next_bk.png") center center / cover no-repeat;
  opacity: 0.7;
}

.slick-prev:before {
  content: '';
}

.slick-next:before {
  content: '';
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: .25;
}

h3.top_life_career_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 7.5% 50px 0;
}

h3.top_life_career_title > img {
  flex-basis: 51.4%; /* 534/1040 */
  max-width: 534px;
  width: 51.4%;
  margin: 0 30px 0 0;
}

h3.top_life_career_title span {
  flex-basis: 97px;
  max-width: 97px;
  width: 97px;
  display: block;
  margin: 60px 0 0 30px;
}

h3.top_life_career_title span:last-child {
  margin: -14px 0 0;
}

.top_life_career_column {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 112px;
}

.top_life_career_l {
  flex-basis: 36%;
  max-width: 36%;
  width: 36%;
  z-index: 2;
}

.top_life_career_l p {
  margin: 0 auto 58px;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-align: left;
}

.top_life_career_btn {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.prj_cnt .top_life_career_btn {
  max-width: 100%;
  margin-top: 90px;
}

.top_life_career_btn li {
  margin: 0 0 4px;
}

.top_life_career_btn li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 80px;
  padding: 5px 70px 5px 40px;
  border-radius: 10px;
  background: #454545;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

.top_life_career_btn li a:hover {
  background: #1a1a1a;
}

.top_life_career_btn li a::before {
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_life_career_btn li a::after {
  position: absolute;
  top: 50%;
  right: 32px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_life_career_btn li a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_life_career_r {
  flex-basis: 71%;
  max-width: 71%;
  width: 71%;
  position: relative;
  margin: 0 0 0 -7%;
}

.top_life_career_r img {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.top_life_career_r_ill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

h3.top_recruit_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 5.8% 50px 0;
}

h3.top_recruit_title > div {
  flex-basis: 44%; /* 464 / 1070 */
  max-width: 464px;
  width: 44%;
  margin: 0 0 220px 0;
}

h3.top_recruit_title > div img {
  width: 100%;
}

h3.top_recruit_title > div img + p {
  margin: 44px auto 0;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-align: left;
}

h3.top_recruit_title ul {
  flex-basis: 38%;
  max-width: 400px;
  width: 38%;
}

h3.top_recruit_title ul li {
  margin: 0 0 4px;
}

h3.top_recruit_title ul li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 80px;
  padding: 5px 70px 5px 40px;
  border-radius: 10px;
  background: #454545;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

h3.top_recruit_title ul li a:hover {
  background: #1a1a1a;
}

h3.top_recruit_title ul li a::before {
  position: absolute;
  top: 50%;
  right: 14px;
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

h3.top_recruit_title ul li a::after {
  position: absolute;
  top: 50%;
  right: 32px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

h3.top_recruit_title ul li a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_opencompany {
  position: relative;
  width: 95%;
  max-width: 1059px;
  margin: 0 auto 200px 10px;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
}

.top_opencompany > img {
  border-radius: 17px;
}

.top_opencompany_title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.top_opencompany_title h3 {
  width: 90%;
  max-width: 393px;
  margin: 0 auto 40px;
}

.btn_opencompany_more {
  width: 90%;
  max-width: 240px;
  margin: 0 auto;
}

.btn_opencompany_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 10px 35px 10px 10px;
  border-radius: 100vw;
  background: #454545;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn_opencompany_more a:hover {
  background: #1a1a1a;
}

.btn_opencompany_more a::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.btn_opencompany_more a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_opencompany_ill1 {
  position: absolute;
  top: -30px;
  left: 9%;
  width: 76px;
}

.top_opencompany_ill2 {
  position: absolute;
  top: -30px;
  right: 18%;
  width: 76px;
}

.top_opencompany_ill3 {
  position: absolute;
  bottom: -30px;
  left: 18%;
  width: 76px;
}

.top_opencompany_ill4 {
  position: absolute;
  bottom: -30px;
  right: 4%;
  width: 260px;
}





/* - - - - - - - - - - - - - - - - - (content) - - - - - - - - - - - - - - - - - */

/* content */

.cnt {
  position: relative;
}

.cnt_inner {
  position: relative;
}





/* zoom */

.zoom {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.zoom img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover .zoom img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}





/* mv */

.mv {
  position: relative;
}

.mv_cnt {
  position: relative;
  z-index: 2;
}





/* - - - - - - - - - - - - - - - - - (content for_ibaraki) - - - - - - - - - - - - - - - - - */

/* for_ibaraki */

main {
  /*overflow: hidden;*/
}

.mv_for {
  position: relative;
  margin: 0 auto 200px;
}

.h2_for {
  width: 86%;
  max-width: 1228px;
  margin: 0 auto;
  padding: 170px 0 53px;
}

.mv_for_ph_wrapper {
  position: relative;
  margin: 0 auto 50px;
}

.mv_for_ph {
  position: relative;
  width: 86%;
  max-width: 1228px;
  margin: 0 auto;
}

.mv_for_ph_num {
  position: absolute;
  top: 10%;
  left: 5.8%;
  width: 10%;
  max-width: 126px;
}

.mv_for_ph_copy {
  position: absolute;
  top: -2.5%;
  right: 3.5%;
  width: 13%;
  max-width: 154px;
}

.mv_for_cloud {
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
}

.mv_for p {
  position: relative;
  margin: 0 auto 50px;
  font-weight: 600;
  font-size: 3.9vw;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: center;
}

.for_prf_name {
  width: 86%;
  max-width: 664px;
  margin: 0 auto;
}

.for_prologue {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 91%;
  max-width: 1312px;
  margin: 0 auto 210px;
  text-align: left;
}

.for_prologue_l {
  flex-basis: 59%;
  max-width: 59%;
  width: 59%;
  padding: 0 6.3% 0 0;
  border-right: 3px solid #1a1a1a;
  opacity: 0;
}

.for_prologue_l.active {
  animation: fadeIn 0.8s cubic-bezier(.2,1.3,.3,1) both;
}

.for_prologue_l h3 {
  margin: 0 auto 35px;
}

.prologue_slider {
  margin: 0 auto 44px;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  box-shadow: 10px 10px 0px #1a1a1a;
  overflow: hidden;
}

.prologue_slider li {
  overflow: hidden;
  aspect-ratio: 1.6 / 1;
}

.prologue_slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prologue_slider .slick-dots {
  bottom: 16px;
  left: 20px;
  justify-content: flex-start;
  width: auto;
}

.for_prologue_l p {
  font-weight: 500;
  font-size: 18px;
  line-height: 36px;
}

.for_prologue_r {
  flex-basis: 41%;
  max-width: 41%;
  width: 41%;
  padding: 0 0 0 6%;
  text-align: center;
  opacity: 0;
}

.for_prologue_r.active {
  animation: fadeIn 0.8s cubic-bezier(.2,1.3,.3,1) both;
}

.for_prof_title {
  position: relative;
  margin: 0 auto 35px;
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
  text-align: right;
}

.for_icon_title {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto 32px;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.for_icon_title img {
  flex-basis: 55px;
  max-width: 55px;
  width: 55px;
  margin: 0 15px 0 0;
}

.for_icon_title span {
  font-weight: 500;
}

.prof_box {
  display: flex;
  align-items: center;
  margin: 0 auto 24px;
  column-gap: 24px;
}

.prof_ph {
  flex-basis: 174px;
  max-width: 174px;
  width: 174px;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.prof_box p:last-child {
  flex: 1;
  line-height: 1.6;
  text-align: left;
}

.prof_box p:last-child span {
  display: block;
  margin: 0 auto 5px;
  font-weight: 400;
  font-size: 13px;
}

.prof_box p:last-child span.prj_prof_name {
  font-weight: 500;
  font-size: 20px;
}

.prof_x {
  width: 54px;
  margin: 30px auto 45px;
  text-align: center;
}

.for_prologue_r > p {
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

p.then_note,
.for_prologue_r > p.then_note {
  font-weight: 400;
  text-align: right;
  font-size: 13px;
}

.mv_interview p.then_note {
  margin: 0 26px 0;
}

.for_q {
  position: absolute;
  top: -60px;
  left: 0;
}

.for_chapter_title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  padding: 0 4% 48px 0;
}

.for_chapter_title img {
  padding: 0 0 0 0;
}

.for_chapter_title span {
  display: block;
  margin: 25px 0 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-align: right;
}

h4.cnt_prj_subttl {
  position: relative;
  margin: 0 auto 92px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.8;
  text-align: center;
}

.prj_column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin: 0 auto 200px;
  padding: 0 4% 0 0;
  text-align: left;
  line-height: 1.8;
}

.prj_ph {
  flex-basis: 38.3%;
  max-width: 38.3%;
  width: 38.3%;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  box-shadow: 10px 10px 0px #1a1a1a;
  overflow: hidden;
  aspect-ratio: 0.955 / 1;
}

.prj_ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prj_cnt {
  flex-basis: 56%;
  max-width: 56%;
  width: 56%;
}

.prj_text {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  margin: 0 0 24px;
}

.prj_text .name {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 78px;
  max-width: 78px;
  width: 78px;
  height: 34px;
  border-radius: 100vw;
  font-weight: 600;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.bg_blue {
  background: #397cbf;
}

.bg_brown {
  background: #b3483e;
}

.prj_text p:last-child {
  flex-basis: calc(100% - 98px);
  max-width: calc(100% - 98px);
  width: calc(100% - 98px);
}

.for_ph_w100h100 {
  margin-bottom: 200px;
  width: 100%;
}

.for_ph_w100h100 p {
  position: relative;
}

.for_ph_w100h100 p span {
  display: block;
  height: 100vh;
}

.for_ph_w100h100 .for_ph_full01{
  /*position: -webkit-sticky;*/
  position: sticky;
  top: 0;
  z-index: 1;
  border-top: 3px solid #1a1a1a;
}

.for_ph_w100h100 .for_ph_full02{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  width: 100%;
  height: 100vh;
  will-change: opacity;
  border-bottom: 3px solid #1a1a1a;
}

.for_ph_w100h100 .for_ph_full02.is-fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.for_ph_w100h100 p span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.for_ph_w100 {
  margin-bottom: 200px;
  width: 100%;
}

.for_ph_w100 p {
  border-top: 3px solid #1a1a1a;
  border-bottom: 3px solid #1a1a1a;
}

.for_ph_w100 p span {
  overflow: hidden;
  aspect-ratio: 1.8 / 1;
}

.for_ph_w100 p span img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1.8 / 1;
}

.prj_end {
  position: relative;
  display: inline-block;
  margin: 0 auto 160px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

.prj_end_ill01 {
  position: absolute;
  top: -149px;
  right: -9px;
  width: 139px;
}

.prj_end_ill02 {
  position: absolute;
  top: 8px;
  right: -119px;
  width: 139px;
}

.prj_end_ill03 {
  position: absolute;
  top: -20px;
  left: -159px;
  width: 139px;
}

.cnt_for_other {
  position: relative;
  z-index: 2;
}

.for_other_bg {
  position: absolute;
  bottom: -114px;
  left: 0;
  width: 100%;
}

h3.for_other_title {
  width: 90%;
  max-width: 372px;
  margin: 0 auto 20px;
}

h3.for_other_title + p {
  margin: 0 auto 54px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
}

.for_other {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: center;
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.for_other li {
  flex-basis: 47%;
  max-width: 47%;
  width: 47%;
}

.for_other li a {
  position: relative;
  display: block;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  text-decoration: none;
  overflow: hidden;
}

.for_other li a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 17px;
  background: #c5cddd;
  transition: all .3s ease;
  mix-blend-mode: multiply;
}

.for_other li a:hover::after {
  opacity: 0;
}

.for_other_num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-weight: 500;
  font-size: 13px;
  text-align: right;
  color: #fff;
  z-index: 2;
}

.for_other_copy {
  position: absolute;
  left: 5%;
  bottom: 10%;
  width: 90%;
  z-index: 2;
}

.for_other_copy p {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}

.for_other_copy img {
  width: 100%;
  max-width: 386px;
  margin: 0 auto;
}





/* - - - - - - - - - - - - - - - - - (content about) - - - - - - - - - - - - - - - - - */

/* about */





/* future */





/* business */





/* - - - - - - - - - - - - - - - - - (content work_people) - - - - - - - - - - - - - - - - - */

/* work */

.man_balloon {
  position: relative;
  max-width: 310px;
  margin: 0 auto 24px 0;
}

.man_balloon_l {
  position: relative;
  max-width: 372px;
  margin: 30px auto 0 0;
}

.man_balloon div {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  position: absolute;
  top: 39%;
  right: 7%;
  width: 63%;
  white-space: nowrap;
}

.man_balloon.man_balloon_l div {
  top: 34%;
  right: 6%;
  width: 68%;
}

.man_balloon .text_track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: marquee4 var(--marquee-duration, 15s) linear infinite; /* 可変 */
}

.man_balloon .text {
  display: inline-block;
  white-space: nowrap;
  padding-right: 1rem;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.02em;
  line-height: 1;
}

@keyframes marquee4 {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

.snav_ph {
  margin: 0 40px -80px;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.detail_snav.works_snav li {
  flex-basis: 31%;
}

.detail_snav.works_snav li:first-child {
  flex-basis: 31%;
}

.w-40 {
  margin: 0 40px 0 0;
}

.works_lead {
  margin: -40px auto 60px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.works_lead span {
  display: block;
  margin: 0 auto 15px;
  font-weight: 500;
  font-size: 22px;
}

.works_ph_l {
  width: 100%;
  max-width: 977px;
  margin: 0 auto 150px;
}

.works_phbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: -50px 40px 120px 0;
  text-align: left;
  line-height: 2;
}

.works_phbox_l {
  position: relative;
  flex-basis: 62%;
}

.works_phbox_l .ph {
  border: 3px solid #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
}

.works_phbox_r {
  position: relative;
  flex-basis: 33%;
}

.works_phbox_r h4 {
  margin: 0 0 30px;
  padding: 0 15% 0 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
}

.works_phbox_r p {
  padding: 0 15% 0 0;
  font-weight: 400;
}

.course_column {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.course_column_inner {
  flex: 1;
}

.course_column_inner .works_phbox_r {
  flex-basis: 100%;
  width: 100%;
}

.course_column_inner .works_phbox_r p {
  padding: 0 0 0 0;
}

.works_area {
  font-weight: 500;
}

.idx_new {
  position: absolute;
  top: -15px;
  left: 14px;
  width: 118px;
}

.works_jobbox {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 8.5% 60px 0;
  text-align: left;
  line-height: 2;
}

.works_jobbox_l {
  flex-basis: 23%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  padding: 40px 0 0;
  border-top: 3px solid #1a1a1a;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}

.works_jobbox_l .job_icon {
  flex-basis: 70px;
}

.works_jobbox_r {
  flex-basis: 70%;
  padding: 40px 0 0;
  border-top: 3px solid #1a1a1a;
}

.works_jobbox_r h4 {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.6;
  color: #397cbf;
}

.works_jobbox_r h4.brown {
  color: #b3483e;
}

.btn_job_int {
  margin: 52px 0 0;
}

.btn_job_int a {
  position: relative;
  display: block;
  text-align: left;
  text-decoration: none;
}

.btn_job_int a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #d7dbdd;
  mix-blend-mode: multiply;
}

.job_int_ph {
  position: relative;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
  aspect-ratio: 2.589 / 1;
}

.job_int_ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn_job_int a:hover .ph_n {
  opacity: 0;
}

.job_int_pp {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.job_int_txt {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: #fff;
  z-index: 2;
}

.job_int_job {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: #1a1a1a;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.job_int_name {
  margin: 10px 0 8px;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.2;
}

.job_int_div {
  margin: 0 0 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
}

.btn_works_index_more {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: auto;
}

.btn_works_index_more {
  display: inline-block;
  width: auto;
  padding: 20px 10% 20px 10%;
  border-radius: 100vw;
  background: #454545;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn_job_int a:hover .btn_works_index_more {
  background: #1a1a1a;
}

.btn_works_index_more::after {
  position: absolute;
  top: 50%;
  right: 7%;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.btn_job_int a:hover .btn_works_index_more::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}





/* people */

.h3_bk_cir {
  position: relative;
  margin: 0 40px 120px 0;
  padding: 0 0 10px 25px;
  border-bottom: 3px solid #1a1a1a;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: left;
}

.h3_bk_cir::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: #1a1a1a;
  border-radius: 100vw;
}

.people_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 40px 80px 0;
  padding: 0 0 60px;
  border-bottom: 1px solid rgba(26,26,26,0.20);
}

.people_list li {
  flex-basis: 48%;
}

.people_list li a {
  position: relative;
  display: block;
  text-align: left;
  text-decoration: none;
}

.pp_ph {
  position: relative;
  margin: 0 0 28px;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
  aspect-ratio: 1.553 / 1;
}

.pp_ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph_n {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.people_list li a:hover .ph_n {
  opacity: 0;
}

.pp_job {
  position: absolute;
  top: 13px;
  right: 13px;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 4px;
  background: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

.pp_txt_column {
  display: flex;
  justify-content: space-between;
}

.pp_txt_l {
  flex-basis: 65%;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.pp_txt_r {
  flex-basis: 120px;
  line-height: 1.2;
}

.pp_name {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 18px;
}

.pp_div {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 12px;
}





/* interview */

.mv_interview {
  position: relative;
  margin: 0 auto 140px;
}

.h2_interview {
  width: 74%;
  margin: 0 auto 0 0;
  padding: 108px 40px 0;
}

.mv_interview_ph_wrapper {
  position: relative;
  width: 72%;
  margin: -14px auto 0;
  padding: 0 20px 20px 0;
}

.mv_interview_ph_wrapper::before {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: #1a1a1a;
  border-radius: 20px;
}

.mv_interview_ph {
  position: relative;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.mv_interview_ph p {
  background: #fff;
}

.mv_interview_shoulder {
  position: absolute;
  top: -14.5%;
  right: -10%;
  width: 203px;
}

.interview_mv_copy {
  position: relative;
  margin: 0 26px 0;
  padding: 0 16% 0 0;
  font-weight: 500;
  font-size: 56px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: left;
  color: #f1b46e;
  mix-blend-mode: exclusion;
  z-index: 2;
}

.interview_mv_copy > span {
  font-weight: 500;
  color: #f1b46e;
}

.int_job {
  position: relative;
  margin: -90px 26px 18px;
  text-align: left;
  z-index: 2;
}

.int_job span {
  display: inline-block;
  margin: 0 0 18px;
  padding: 17px 20px;
  border-radius: 4px;
  background: #1a1a1a;
  font-weight: 500;
  font-size: 22px;
  text-align: left;
  color: #fff;
}

.interview_prof {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 13%;
  padding: 20px;
  text-align: left;
  line-height: 1.6;
}

.int_name {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 20px;
}

.int_div {
  margin: 0 0 26px;
  font-weight: 500;
  font-size: 13px;
}

.int_career {
  position: absolute;
  top: 0;
  right: 4.7%;
}

.int_career_cnt {
  position: relative;
  width: 80%;
  max-width: 918px;
  margin: 0 auto 100px;
  padding: 85px 0 0 0;
  line-height: 1.8;
  text-align: left;
}

.int_career_ttl {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 116px;
  padding: 10px 90px 10px 7%;
  border-radius: 20px;
  background: #b3483e;
  border: 3px solid #1a1a1a;
  cursor: pointer;
  transition: background .4s cubic-bezier(0.19, 1, 0.22, 1);
  font-weight: 500;
  font-size: 20px;
  text-align: left;
  color: #fff;
}

.int_career_ttl:hover {
  background: #C0544A;
}

.int_career_ttl::after {
  position: absolute;
  top: 50%;
  right: 25px;
  display: block;
  content: "";
  width: 64px;
  height: 64px;
  background: url("../images/icn_open_whcir.png") center center / 64px 64px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(0deg) translate(0, -50%);
  transform-origin: top center;
}

.int_career_ttl.selected::after {
  background: url("../images/icn_close_whcir.png") center center / 64px 64px no-repeat;
  transform: rotate(90deg) translate(0, -50%);
}

.int_career_txt {
  position: relative;
  padding: 20px 0 0;
}

.int_career_txt::before {
  position: absolute;
  top: 0;
  bottom: 10px;
  left: 53px;
  display: block;
  content: "";
  width: 3px;
  background: url("../../info/images/line_dot2.png") bottom center / 3px auto no-repeat;
  opacity: 0.2;
}

.int_career_txt ul {
  text-align: left;
  margin: 0 0 0 96px;
}

.int_career_txt ul li {
  display: flex;
  position: relative;
  margin: 0 0 10px;
  padding: 9px 15px 9px 6%;
  border-radius: 10px;
  background: #fff;
  border: 3px solid #1a1a1a;
  font-weight: 500;
}

.int_career_txt ul li:last-child {
  position: relative;
  margin: 0 0 0;
  padding: 0 0 0 6.5%;
  background-color: transparent;
  border: none;
  font-weight: 500;
}

.int_career_txt ul li::before {
  position: absolute;
  top: 50%;
  left: -43px;
  display: block;
  content: "";
  width: 72px;
  height: 1px;
  background: #1a1a1a;
  z-index: -1;
}

.int_career_txt ul li::after {
  position: absolute;
  top: 50%;
  left: -52px;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  background: #1a1a1a;
  border-radius: 2px;
  transform: rotate(45deg) translate(0, -50%);
}

.int_career_txt ul li:last-child::after {
  left: -49px;
}

.int_career_txt ul li span {
  flex: 0 0 180px;
  display: inline-block;
  width: 180px;
  font-weight: 400;
}

.int_num {
  position: absolute;
  top: 0;
  right: 5.5%;
}

h3.int_q {
  position: relative;
  margin: 0 10% 38px;
  padding: 0 0 0 22px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

h3.int_q::before {
  position: absolute;
  top: 8px;
  left: 4px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: #1a1a1a;
  border-radius: 100vw;
}

h4.int_a {
  margin: 0 10% 38px;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.8;
  text-align: left;
}

.int_txt {
  margin: 0 13% 125px 23%;
  line-height: 2;
  text-align: left;
}

.int_txt span.small {
  display: block;
  padding: 44px 0 0;
  line-height: 1.6;
}

.int_ph {
  position: relative;
  padding: 40px 0 150px;
}

.int_balloon {
  position: absolute;
  top: 5px;
  display: block;
  width: 245px;
}

.int_balloon.sr { right: 16%; }
.int_balloon.mm { right: 6%; }
.int_balloon.ym { right: 35%; }
.int_balloon.mk { right: 3%; }
.int_balloon.sk { right: 6%; }
.int_balloon.hk { right: 6%; }
.int_balloon.ak { right: 34%; }

.int_ph_group {
  position: relative;
  width: 100%;
  max-width: 836px;
  margin: 0 auto 120px;
}

.int_ph_group li:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

html {
  scrollbar-gutter: stable;
}

body.is-scroll-locked {
  position: fixed;
  left: 0;
  width: 100%;
}

.int_oneday {
  margin: 0 auto 200px;
  padding: 0 40px 0 0;
}

h3.h3_oneday {
  margin: 0 auto 120px;
}

h3.h3_oneday img {
  margin: 0 auto;
}

.oneday_slider {
  position: relative;
  padding: 120px 0 0;
  overflow: hidden;
}

.oneday_slider li {
  padding: 0 30px 0 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.oneday_slider li span {
  display: block;
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 28px;
}

.oneday_slider .slick-list {
  overflow: visible;
}

.oneday_slider .slick-slide {
}

.oneday_slider .slick-slide.slick-current {
}

.oneday_slider .slick-slide:not(.slick-active) {
}

.oneday_slider .slick-prev {
  position: absolute;
  left: auto;
  right: 66px;
  top: 0;
  width: 56px;
  height: 56px;
  z-index: 999;
  text-indent: -9999px;
  background: url("../images/btn_oneday_prev.png") center center / cover no-repeat transparent !important;
  transform: translate(0, 0);
  transition: all .2s ease-in-out;
}

.oneday_slider .slick-next {
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  width: 56px;
  height: 56px;
  z-index: 999;
  text-indent: -9999px;
  background: url("../images/btn_oneday_next.png") center center / cover no-repeat transparent !important;
  transform: translate(0, 0);
  transition: all .2s ease-in-out;
}

.oneday_slider .slick-prev:hover,
.oneday_slider .slick-prev:focus,
.oneday_slider .slick-prev:active {
  transform: translate(-3px, 0);
}

.oneday_slider .slick-next:hover,
.oneday_slider .slick-next:focus,
.oneday_slider .slick-next:active {
  transform: translate(3px, 0);
}

.oneday_slider .slick-prev.slick-disabled,
.oneday_slider .slick-next.slick-disabled {
  cursor: default;
  opacity: 0.2;
}

.oneday_slider .slick-dots {
  position: absolute;
  bottom: auto;
  top: 100px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  box-sizing: border-box;
}

.oneday_slider .slick-dots li {
  flex: 1;
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin: 0 0;
  padding: 0 0;
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
}

.oneday_slider .slick-dots li button {
  display: block;
  width: 100%;
  height: 2px;
  padding: 0px;
  cursor: pointer;
  opacity: 1;
  background: #1a1a1a;
}

.oneday_slider .slick-dots li button:hover,
.oneday_slider .slick-dots li button:focus {
  outline: none;
}

.oneday_slider .slick-dots li button:hover:before,
.oneday_slider .slick-dots li button:focus:before {
  opacity: 1;
}

.oneday_slider .slick-dots li button:before {
  font-family: 'slick';
  font-size: 0;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  text-align: center;
  opacity: 1;
  background: #eee;
  transition: all .2s ease-in-out;
}

.oneday_slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background: #1a1a1a;
  color: transparent;
}

.oneday_slider .slick-dots li.slick-active button::after{
  content: "";
  position: absolute;
  inset: 0;
  top: -4px;
  border-radius: 0;
  z-index: 0;
  pointer-events: auto;
  height: 6px;
  background: #1a1a1a;
  -webkit-mask: none;
  mask: none;
}

.interview_ph_w100 {
  margin-bottom: 200px;
  width: 100%;
}

.interview_ph_w100 p {
}

.cnt_interview_other {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h3.int_other_title {
  margin: 0 auto 20px;
}

h3.int_other_title img {
  margin: 0 auto;
}

h3.int_other_title + p {
  margin: 0 auto 54px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
}

.btn_int_other {
  position: relative;
}

.btn_int_other a {
  position: relative;
  display: block;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  text-decoration: none;
  overflow: hidden;
}

.btn_int_other a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 17px;
  background: #c5cddd;
  transition: all .3s ease;
  mix-blend-mode: multiply;
}

.btn_int_other a:hover::after {
  opacity: 0;
}

.int_other_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}

.int_other_copy span {
  display: block;
  margin: 0 0 15px;
  font-weight: 500;
  font-size: 13px;
}





/* - - - - - - - - - - - - - - - - - (content life_career) - - - - - - - - - - - - - - - - - */

/* life_career */





/* map */

.mv_map {
  position: relative;
  margin: 0 auto 90px;
}

.h2_map {
  width: 74%;
  margin: 0 auto 0 0;
  padding: 170px 40px 0;
}

.h2_map + p {
  position: relative;
  margin: 40px 40px 0;
  padding: 0 0 0 22px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
}

.h2_map + p::before {
  position: absolute;
  top: 10px;
  left: 4px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: #1a1a1a;
  border-radius: 100vw;
}

.map_lead {
  width: 84%;
  margin: 0 auto 110px;
  padding: 0 0 0 33%;
  text-align: left;
  line-height: 1.8;
}

.map_lead h3 {
  margin: 0 0 18px;
  font-weight: 500;
  font-size: 28px;
}

.map_lead p {
  font-weight: 500;
  font-size: 18px;
}

.map_snav {
  display: flex;
  justify-content: space-between;
  width: 84%;
  max-width: 1200px;
  margin: 0 auto 35px;
}

.map_snav li {
  flex-basis: 31%;
  max-width: 370px;
}

.map_snav li a {
  position: relative;
  display: block;
}

.map_snav li a > img {
  transition: opacity .3s ease;
}

.map_snav li a:hover > img {
  opacity: 0;
}

.map_snav li a > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity .3s ease;
  opacity: 0;
}

.map_snav li a:hover > span {
  opacity: 1;
}

.map_snav + p {
  width: 84%;
  max-width: 1200px;
  margin: 0 auto 70px;
  text-align: right;
  font-size: 13px;
}

.map_case_marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  left: -304px;
  width: 100vw;
}

.map_case_marquee > span {
  display: block;
  width: 1464px;
  min-width: 1464px;
  animation: marquee 32s linear infinite;
}

.map_title {
  position: relative;
  margin: 0 auto 62px;
}

.map_title_e {
  padding: 78px 0 2px;
}

.map_title_e img {
  margin: 0 auto;
}

h3.map_title_j {
  padding: 0 0 22px;
  text-align: center;
  font-weight: 500;
  font-size: 33px;
  line-height: 1.6;
}

h3.map_title_j::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  width: 56px;
  height: 3px;
  background: #1a1a1a;
  transform: translate(-50%, 0);
}

h3.map_title_j span {
  display: inline-block;
  padding: 0 8px;
  font-weight: 500;
  font-size: 44px;
}

h3.map_title_j span.brown {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 56px;
}

.map_case_ph_wrapper {
  position: relative;
  margin: 0 20px 130px 0;
  padding: 0 20px 20px 0;
}

.map_case_ph_wrapper::before {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: #1a1a1a;
  border-radius: 20px;
}

.map_case_ph {
  position: relative;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.map_case_shoulder {
  position: absolute;
  top: -30px;
  right: 0%;
  width: 35%;
  max-width: 416px;
}

.map_case_prof {
  position: absolute;
  bottom: 14%;
  right: 11%;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}

.map_case_prof.bk {
  color: #1a1a1a;
}

.map_case_prof span {
  display: block;
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 22px;
}

.map_case_timeline {
  position: relative;
}

.cl_cir {
  position: absolute;
  top: -55px;
  left: -51px;
  display: block;
  content: "";
  width: 270px;
  height: 270px;
  animation: spin 36.0s linear infinite;
}

.cl_line {
  position: absolute;
  top: 80px;
  bottom: 0;
  left: 83px;
  display: block;
  content: "";
  width: 3px;
  background: url("../../life_career/images/line_dot.png") center bottom / 3px auto no-repeat;
  mix-blend-mode: multiply;
}

.cl_timebox {
  position: relative;
  text-align: left;
  line-height: 1.8;
}

.cl_e {
  position: absolute;
  top: -59px;
  right: 8px;
  z-index: -1;
}

.cl_timebox.career .cl_timebox_inner {
  position: relative;
  margin: 0 40px 50px 165px;
  padding: 60px 95px;
  background: #fff;
  border: 3px solid #1a1a1a;
  border-radius: 20px;
}

.cl_timebox.life .cl_timebox_inner {
  position: relative;
  margin: 0 40px 50px 165px;
  padding: 40px 95px;
  background: #e4e8e4;
  border: 3px solid #1a1a1a;
  border-radius: 20px;
}

.cl_timebox.nobg .cl_timebox_inner {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  position: relative;
  margin: 0 40px 115px 165px;
  padding: 0 98px;
}

.cl_timebox.career + .cl_timebox.life,
.cl_timebox.life + .cl_timebox.career {
  margin-top: 115px;
}

.cl_timebox:last-child {
  margin-bottom: 250px;
}

.cl_timebox.career .cl_timebox_inner::after {
  position: absolute;
  top: 74px;
  left: -42px;
  display: block;
  content: "";
  width: 42px;
  height: 41px;
  background: url("../../life_career/images/icn_tri_wh.png") center center / cover no-repeat;
}

.cl_timebox.life .cl_timebox_inner::after {
  position: absolute;
  top: 74px;
  left: -42px;
  display: block;
  content: "";
  width: 42px;
  height: 41px;
  background: url("../../life_career/images/icn_tri_gr.png") center center / cover no-repeat;
}

.cl_timebox.nobg .cl_timebox_inner::after {
  position: absolute;
  top: 32px;
  left: -42px;
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  background: rgba(26,26,26,0.20);
}

.cl_ex {
  flex-basis: 12px;
  max-width: 12px;
  width: 12px;
}

.cl_mark {
  position: absolute;
  top: 65px;
  left: -96px;
  width: 25px;
}

.cl_timebox.nobg .cl_mark {
  top: 20px;
  left: -93px;
}

.cl_shouler {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  padding: 6px 23px;
  border-radius: 100vw;
  background: #e4e4e4;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
}

.cl_subtitle {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 22px;
}

h3.cl_title {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 32px;
}

.cl_timebox.life h3.cl_title {
  margin: 0 0 10px;
  font-size: 28px;
  color: #007e00;
}

.cl_timebox p {
  flex: 1;
  font-weight: 500;
  font-size: 18px;
}

.cl_archive {
  position: relative;
  bottom: -30px;
  padding: 0 0 0;
  text-align: center;
}

.cl_archive h4 {
  display: inline-block;
  margin: 0 auto 20px;
  padding: 0 20px;
  background: #397cbf;
  border: 3px solid #1a1a1a;
  border-radius: 15px;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}

.cl_archive p {
  margin: 0 auto 32px;
  font-weight: 500;
  font-size: 16px;
}

.cl_archive p:has(span) {
  display: inline-block;
  margin: 0 auto 12px;
}

.cl_archive p span {
  display: inline-block;
  padding: 0 15px;
  border-radius: 100vw;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1a;
}

.for_ph_w100h100 .case_now_future {
  position: absolute;
  top: 50%;
  right: 3%;
  width: 42%;
  height: auto;
  padding: 46px 56px;
  border-radius: 20px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(50px);
  --webkit-backdrop-filter: blur(50px);
  transform: translate(0, -50%);
}

.for_ph_w100h100 .case_now_future.left {
  right: auto;
  left: 3%;
}

.for_ph_w100h100 span.case_nf_e {
  position: relative;
  display: block;
  margin: 0 auto 14px;
  width: auto;
  height: auto;
}

.for_ph_w100h100 span.case_now_future .case_nf_e img {
  width: auto;
  height: auto;
  margin: 0 auto;
}

.for_ph_w100h100 span.case_nf_j {
  position: relative;
  display: block;
  margin: 0 auto 30px;
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.7;
  text-align: center;
  color: #fff;
}

.for_ph_w100h100 span.case_nf_t {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
  color: #fff;
}

.for_ph_w100h100 span.idx_now_future {
  display: none;
  opacity: 0;
  position: fixed;
  top: 140px;
  left: 40px;
  z-index: 2;
  width: auto;
  height: auto;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.for_ph_w100h100:has(.is-fixed) span.idx_now_future {
  display: block;
  opacity: 1;
}

.for_ph_w100h100 span.idx_now_future img {
  width: auto;
  height: auto;
  object-fit: none;
}





/* welfare */





/* life */





/* - - - - - - - - - - - - - - - - - (content info) - - - - - - - - - - - - - - - - - */

/* info */

.mv_info {
  position: relative;
  margin: 0 auto 60px;
}

.h2_info {
  width: 74%;
  margin: 0 auto 0 0;
  padding: 170px 40px 0;
}

.h2_info + p {
  position: relative;
  margin: 50px 40px 0;
  font-weight: 500;
  font-size: 27px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: left;
}

.info_ph_large {
  margin: 0 40px 160px;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.info_message {
  margin: 0 40px 120px 0;
  padding: 60px 9.4% 90px;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #1a1a1a;
  box-shadow: 20px 20px 0px #1a1a1a;
}

.info_message h3 {
  margin: 0 auto 60px;
  font-weight: 500;
  font-size: 32px;
  line-height: 2;
  text-align: left;
}

.info_message h3 span {
  font-weight: 500;
}

.info_message p {
  line-height: 2;
  text-align: left;
}

.info_person {
  margin: 0 auto 150px;
}

.info_person h3 {
  margin: 0 auto 40px;
}

.info_person h3 img {
  width: 90%;
  max-width: 250px;
  margin: 0 auto;
}

.info_person p {
  line-height: 2;
  text-align: left;
}

.info_person_ph {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  background: url("../../info/images/pic_person_bg.png") center center / cover no-repeat;
}

.info_person_ph span {
  position: absolute;
  width: 127px;
}

.info_person_ph span:nth-child(2) {
  top: -50px;
  right: 6px;
}

.info_person_ph span:nth-child(3) {
  bottom: -40px;
  right: -22px;
}

.info_person_ph span:nth-child(4) {
  bottom: -28px;
  left: 24px;
}

.info_person_marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 177px;
  left: -304px;
  width: 100vw;
  opacity: 0.2;
}

.info_person_marquee > span {
  display: block;
  width: 3780px;
  min-width: 3780px;
  animation: marquee 60s linear infinite;
}

.top_people:has(.info_slider) {
  margin-bottom: 60px;
}

.top_people_slider.info_slider .top_people_column {
  padding: 0 0 52px;
}

.top_people_slider.info_slider .top_people_r::before {
  top: 4%;
  left: -4%;
  width: 102px;
  opacity: 0.2;
}

.top_people_slider.info_slider .slick-prev {
  bottom: -56px;
  left: 0;
}

.top_people_slider.info_slider .slick-next {
  bottom: -56px;
  left: 56px;
}

.top_people_slider.info_slider .top_people_copy {
  font-size: 26px;
}

.top_people_slider.info_slider .slick-current .top_people_prof {
  transition-delay: 1.0s;
}

ul.thumbnail {
  position: absolute;
  bottom: 36px;
  right: 40px;
}

.thumbnail, .thumbnail * { pointer-events: auto; }

ul.thumbnail .slick-track {
  transform: unset !important;
  display: flex;
  justify-content: space-between;
  width: 362px;
  height: 79px;
}

ul.thumbnail li {
  flex-basis: 110px;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}

ul.thumbnail li img {
  transition: opacity .8s ease;
}

ul.thumbnail li.slick-current img {
  opacity: 0.4;
}





/* detail */

.detail_snav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 3%;
  width: 84%;
  max-width: 1200px;
  margin: 0 auto 156px;
  padding: 55px 45px;
  border-radius: 10px;
  background: rgba(255,255,255,0.80);
  border: 3px solid #1a1a1a;
  backdrop-filter: blur(50px);
  --webkit-backdrop-filter: blur(50px);
}

.detail_snav li {
  flex-basis: 21%;
}

.detail_snav li:first-child {
  position: relative;
  flex-basis: 28%;
  padding: 3px 4px 3px 25px;
  font-weight: 500;
  font-size: 17px;
  text-align: left;
}

.detail_snav li:first-child::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  background: #1a1a1a;
  border-radius: 100vw;
}

.detail_snav li a {
  position: relative;
  display: block;
  padding: 4px 4px 4px 36px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 500;
  text-align: left;
  text-decoration: none;
}

.detail_snav li:last-child a {
  border-right: none;
}

.detail_snav li a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background: #454545;
  border-radius: 100vw;
  transition: background .3s ease;
}

.detail_snav li a:hover::before {
  background: #1a1a1a;
}

.detail_snav li a::after {
  position: absolute;
  top: 6px;
  left: 6px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_b_wh.png") center center / 12px 12px no-repeat;
}

.detail_snav li a:hover::after {
  animation: btnArrowBottom .4s ease-in-out 0s 1 normal running none;
}

@keyframes btnArrowBottom {
  from, to { transform: translate(0, 0); opacity: 1; }
  50% { transform: translate(0, 100%); opacity: 0; }
  51% { transform: translate(0, -100%); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}

.detail_title {
  margin: 0 40px 80px 0;
  padding: 34px 20px 38px;
  border-radius: 20px;
  background: #b3483e;
  box-shadow: 10px 10px 0px #1a1a1a;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

.detail_title.bg_blue {
  background: #397cbf;
}

.detail_title span {
  display: block;
  margin: 0 auto 8px;
  font-size: 12px;
}

.detail_cnt {
  margin: 0 40px 160px 0;
  padding: 47px 6.8%;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #1a1a1a;
  text-align: left;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 32px 32px;
  text-align: left;
}

table th {
  padding: 0 45px 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  vertical-align: top;
  white-space: nowrap;
}

table th span {
  display: block;
  font-size: 14px;
}

table td {
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 2;
  vertical-align: top;
}

.flow_cnt {
  margin: 0 40px 140px 0;
text-align: left;
}

.flow_cnt_inner {
  position: relative;
  width: 90%;
  max-width: 868px;
  margin: 0 auto;
}

.flow_cnt_inner::before {
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 6px;
  display: block;
  content: "";
  width: 3px;
  background: url("../../info/images/line_dot2.png") center bottom / 3px auto no-repeat;
}

ul.flow_list {
  margin: 0 0 0 180px;
}

ul.flow_list li {
  display: flex;
  align-items: center;
  min-height: 144px;
  position: relative;
  margin: 0 0 20px;
  padding: 20px 13%;
  border-radius: 20px;
  background: #f5f7fa;
  border: 3px solid #1a1a1a;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  color: #397cbf;
}

ul.flow_list li::before {
  position: absolute;
  top: 50%;
  left: -188px;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background: url("../../life_career/images/icn_cir.png") center center / 25px 25px no-repeat;
  transform: translate(0, -50%);
}

ul.flow_list li:last-child::before {
  background: url("../../life_career/images/icn_squ.png") center center / 25px 25px no-repeat;
}

ul.flow_list li::after {
  position: absolute;
  top: 50%;
  left: -135px;
  display: block;
  content: "";
  width: 100px;
  height: 1px;
  background: rgba(26,26,26,0.20);
}

ul.flow_list li a {
  color: #397cbf;
}

ul.flow_list li span {
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1a;
}

body.no_bg_sky #footer .bg_sky {
  display: none !important;
}

.faq_cnt {
  position: relative;
  width: 90%;
  max-width: 936px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: left;
}

.faq_q {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 120px;
  margin: 20px 0 0;
  padding: 10px 120px 10px 10px;
  background: #e0b4b1;
  border: 3px solid #1a1a1a;
  color: #1a1a1a;
  cursor: pointer;
  transition: background .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq_q:hover {
  background: #D7A09C;
}

.faq_q p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 110px;
  width: 110px;
  min-width: 110px;
  height: 100%;
  min-height: 100px;
  padding: 0 10px 0 0;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
}

.faq_q div {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 100px;
  padding: 20px 0 20px 40px;
  border-left: 1px dashed #1a1a1a;
  font-weight: 500;
  font-size: 18px;
  text-align: left;
}

.faq_q::after {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  background: url("../../info/images/icn_open_bk.png") center center / 27px 27px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(0deg) translate(0, -50%);
  transform-origin: top center;
}

.faq_q.selected::after {
  background: url("../../info/images/icn_close_bk.png") center center / 27px 27px no-repeat;
  transform: rotate(90deg) translate(0, -50%);
}

.faq_a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 10px 40px 10px 10px;
  background: #fff;
  border: 3px solid #1a1a1a;
  border-top: none;
  font-size: 15px;
  text-align: left;
}

.faq_a p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 110px;
  width: 110px;
  min-width: 110px;
  height: 100%;
  min-height: 100px;
  padding: 0 10px 0 0;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  color: #b3483e;
}

.faq_a div {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 100px;
  padding: 20px 0 20px 40px;
  border-left: 1px dashed #1a1a1a;
  font-size: 15px;
  text-align: left;
}







/* - - - - - - - - - - - - - - - - - (content open_company) - - - - - - - - - - - - - - - - - */

/* open_company */

.oc_lead {
  margin: 0 40px 60px;
  text-align: left;
}

.oc_lead_inner {
  width: 90%;
  max-width: 500px;
  margin: 0 0 0 auto;
}

.oc_lead_ph {
  max-width: 309px;
  margin: 0 auto 24px 0;
}

.oc_lead_inner p {
  font-size: 18px;
  line-height: 1.8;
}

.detail_snav.oc_snav li {
  flex-basis: 38%;
}

.detail_snav.oc_snav li:first-child {
  flex-basis: 16%;
}

.detail_snav.oc_snav li.oc_note {
  flex-basis: 100%;
  padding: 20px 0 0 0;
  padding-left: calc(16% + 36px);
  text-align: left;
}

.oc_note_out {
  position: absolute;
  bottom: -35px;
  right: 0;
  text-align: right;
}

.oc_cnt {
  position: relative;
  padding: 20px 0 0;
}

.oc_ph {
  position: absolute;
  top: 48px;
  right: 40px;
}

.oc_ph01 {
  width: 61%;
  margin: 0 0 52px auto;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.oc_ph02 {
  width: 24%;
  margin: 0 0 0 auto;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.oc_num {
  position: relative;
  margin: 0 0 30px;
  padding: 0 30px;
}

.oc_copy {
  position: relative;
  margin: 0 0 64px;
  max-width: 522px;
}

.oc_txt {
  position: relative;
  width: 67%;
  margin: 0 auto 95px 0;
  padding: 64px 40px 80px;
  border-radius: 20px;
  background: url("../images/bg_gry.png") top center / 720px 720px repeat;
  border: 3px solid #1a1a1a;
  box-shadow: 10px 10px 0px #1a1a1a;
  font-size: 18px;
  line-height: 1.8;
  text-align: left;
}

.oc_cnt h4 {
  margin: 0 auto 20px;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

.oc_detail {
  margin: 0 40px 96px 0;
  padding: 47px 6.8%;
  border-radius: 20px;
  background: #fff;
  border: 3px solid #1a1a1a;
}

.oc_entry {
  position: relative;
  margin: 0 40px 200px 0;
}

.cnt:last-child .oc_entry {
  margin-bottom: 80px;
}

.oc_entry p {
  margin: 0 auto 45px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

.oc_entry span {
  position: absolute;
  display: block;
  width: 139px;
}

.oc_entry span.oc_ill01 {
  top: 0;
  right: 10%;
}

.oc_entry span.oc_ill02 {
  bottom: -10%;
  left: 15%;
}

.oc_entry span.oc_ill03 {
  bottom: -46%;
  right: 23%;
}





/*==================================================================================================================================*/



/*layout (tablet) */



/*==================================================================================================================================*/

@media only screen and (min-width: 1000px) and (max-width: 1200px) {






/* - - - - - - - - - - - - - - - - - (nav) - - - - - - - - - - - - - - - - - */





/* - - - - - - - - - - - - - - - - - (footer) - - - - - - - - - - - - - - - - - */





/* - - - - - - - - - - - - - - - - - (content top) - - - - - - - - - - - - - - - - - */





/* - - - - - - - - - - - - - - - - - (content xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx) - - - - - - - - - - - - - - - - - */

/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */





/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */





/* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx */





}





/*==================================================================================================================================*/



/*layout (smartphone) */



/*==================================================================================================================================*/

@media only screen and (min-width: 1px) and (max-width: 999px) {

/* - - - - - - - - - - - - - - - - - (common) - - - - - - - - - - - - - - - - - */

.cnt_pc { display: none !important; }
.cnt_pc_inline { display: none !important; }
.cnt_pc_inlineblock { display: none !important; }
.cnt_pc_flex { display: none !important; }
.cnt_pc_inlineflex { display: none !important; }
.cnt_pc_table { display: none !important; }
.cnt_pc_tablecell { display: none !important; }
.cnt_pc_tablerow { display: none !important; }
.cnt_sp { display: block !important; }
.cnt_sp_inline { display: inline !important; }
.cnt_sp_inlineblock { display: inline-block !important; }
.cnt_sp_flex { display: flex !important; }
.cnt_sp_inlineflex { display: inline-flex !important; }
.cnt_sp_table { display: table !important; }
.cnt_sp_tablecell { display: table-cell !important; }
.cnt_sp_tablerow { display: table-row !important; }

html, body {
  font-size: 15px;
}





/* - - - - - - - - - - - - - - - - - (header) - - - - - - - - - - - - - - - - - */

.bg_sky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../images/bg_sky.png") top center / 720px 720px repeat;
  background-attachment: fixed;
}

.bg_gry {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../images/bg_gry.png") top center / 720px 720px repeat;
  background-attachment: fixed;
  opacity: 0;
}

noscript p {
  display: block;
  padding: 8px;
  color: #c00;
  font-size: 1.1rem;
  font-weight: bold;
  border: 5px solid #c00;
  background: #fff;
}

#assist {
  position: absolute;
  left: -9999px;
}

#headfix {
  position: fixed;
  top: 0;
  z-index: 99999;
  width: 100%;
  padding: 10px;
  transition: transform .6s cubic-bezier(0.19, 1, 0.22, 1);
}

#header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  margin: 0 auto;
}

#header h1 {
  position: relative;
  z-index: 99999;
}

#header h1 a {
  display: flex;
  align-items: center;
  padding: 7px 15px 7px;
  text-decoration: none;
  background: #fff;
  border-radius: 5px;
}

#header h1 a img {
  width: 187px;
}

.logo_wh {
  width: 199px;
  display: none;
}

.logo_cl {
  width: 199px;
}

body.top .logo_cl {
  display: none;
}

body.top .logo_wh {
  display: block;
}

body.top #header.opened .logo_cl {
  display: block;
}

body.top #header.opened .logo_wh {
  display: none;
}





/* - - - - - - - - - - - - - - - - - (nav) - - - - - - - - - - - - - - - - - */

/* spmenu */

a.spmenu {
  display: block;
  position: fixed;
  top: 0;
  right: 20px;
  cursor: pointer;
  margin: 0 0 0 0;
  padding: 18px 33px 0;
  width: 92px; /*138*/
  height: 50px; /*76*/
  border-radius: 0px 0px 5px 5px;
  background: #397cbf;
  z-index: 99999;
  color: #fff;
  text-decoration: none;
}

a.spmenu:hover {
  top: -4px;
  border-radius: 0px 0px 16px 16px;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .6s cubic-bezier(0.19, 1, 0.22, 1);
}

.menu-trigger {
  position: relative;
  width: 26px;
  height: 14px;
  float: none;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.top .menu-trigger span,
#header.opened .menu-trigger span {
  background-color: #fff;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 6px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  width: 13px;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-6px) rotate(315deg);
}





/* hd_nav */

.hd_nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  position: fixed;
  top: auto;
  bottom: -106px;
  left: 0;
  right: auto;
  z-index: 99999;
  transition: all .3s ease-in-out;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.15);
  width: 100%;
  height: 106px;
  padding: 20px;
  opacity: 0;
  transform: translateZ(0);
  will-change: transform;
}

.hd_nav li {
  flex: 1;
}

#header.opened .hd_nav {
  bottom: 0;
  opacity: 1;
}

.hd_nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 66px;
  border-radius: 5px 5px 5px 5px;
  background: #b3483e;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
}

.hd_nav a span {
  display: block;
  font-weight: 500;
  font-size: 11px;
}

.hd_nav a:hover {
  transform: translate(0, 0);
}

.hd_nav a:hover {
  border-radius: 5px 5px 5px 5px;
}





/* mnav */

nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  padding: 0 0 0;
  background: url("../images/bg_gry.png") top center / 720px 720px repeat;
  background-attachment: fixed;
  z-index: 9999;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display:none;
}

.nav_logo a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 12px 20px 12px;
  text-decoration: none;
}

.nav_logo a img {
  width: 199px;
}

#mnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 63px auto 0;
  padding: 22px 7% 170px;
  text-align: left;
  line-height: 1.5;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.mnav {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  display: block;
}

.mnav p {
  margin: 0 0 24px;
}

.mnav p.navopen.selected {
  margin: 0 0 10px;
}

.mnav p > a,
.mnav p > span {
  position: relative;
  display: block;
  padding: 0 10% 10px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.mnav p > a img,
.mnav p > span img {
  width: 80%;
}

.mnav p.navopen > a::after,
.mnav p.navopen > span::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "";
  width: 46px;
  height: 46px;
  backdrop-filter: blur(30px);
  background: url("../images/icn_open_wh.png") center center / cover no-repeat;
  border-radius: 100vw;
  transition: all .3s ease;
  transform: rotate(0deg);
}

.mnav p.navopen.selected > a::after,
.mnav p.navopen.selected > span::after {
  background: url("../images/icn_close_wh.png") center center / cover no-repeat;
  transform: rotate(90deg);
}

.mnav p > a:hover {
  transform: translate(5px, 0);
}

.mnav p > a span,
.mnav p > span span {
  display: block;
  padding: 8px 0 0 0;
  font-weight: 500;
  font-size: 12px;
}

.mnav_cnt {
  margin: 0 0 40px;
}

ul.mnav,
ul.mnav_btn li {
  text-align: left;
  line-height: 1.7;
  opacity: 0;
  transform: translate(-50px, 0);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

ul.mnav.active,
.mnav.active ul.mnav_btn li {
  opacity: 1;
  transform: translate(0, 0);
}

ul.mnav:nth-child(1), ul.mnav_btn li:nth-child(1) { transition-delay: .1s; }
ul.mnav:nth-child(2), ul.mnav_btn li:nth-child(2) { transition-delay: .2s; }
ul.mnav:nth-child(3), ul.mnav_btn li:nth-child(3) { transition-delay: .3s; }
ul.mnav:nth-child(4), ul.mnav_btn li:nth-child(4) { transition-delay: .4s; }
ul.mnav:nth-child(5), ul.mnav_btn li:nth-child(5) { transition-delay: .5s; }
ul.mnav:nth-child(6), ul.mnav_btn li:nth-child(6) { transition-delay: .6s; }

ul.mnav_btn li + li:has(span) {
  padding: 10px 0 0;
}

ul.mnav_btn li a,
ul.mnav_btn li div {
  display: block;
  padding: 7px 0 7px;
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

ul.mnav_btn li a:hover {
  transform: translate(5px, 0);
}

/*ul.mnav_btn li a.current {
  color: #999;
}*/

ul.mnav_btn li span {
  display: inline-block;
  font-weight: 500;
  text-decoration: underline;
  font-size: 12px;
  line-height: 1.3;
}

ul.mnav_btn li dl {
  display: flex;
  padding: 5px 0 0;
}

ul.mnav_btn li dl dt {
  flex-basis: 3.6em;
  max-width: 3.6em;
  width: 3.6em;
}

ul.mnav_btn li dl dd a {
  display: block;
  padding: 3px 0 0px;
}





/* gnav */

#gnav {
  display: none;
}





/* - - - - - - - - - - - - - - - - - (footer) - - - - - - - - - - - - - - - - - */

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 13px;
  z-index: 99;
}

.pagetop a {
  position: relative;
  display: block;
  width: 45px;
  transform-origin: bottom;
}

.pagetop a:hover {
  transform: scale(1,0.97);
}

#footer {
  position: relative;
  width: 100%;
}

.ft_entry {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ft_entry_ph {
  position: relative;
  width: 100%;
}

.ft_entry_txt {
  position: absolute;
  top: 5%;
  left: -44%;
  right: -44%;
  transform-origin: 50% 50%;
  animation: ftEntrySpin 80s linear infinite;
}

.ft_entry_txt img {
  width: 100%;
}

.ft_entry_cnt {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 80%;
  height: auto;
  transform: translate(-50%, -50%);
}

.ft_entry_cnt h3 {
  display: inline-block;
  width: 114px;
  margin: 0 auto 17px;
}

.ft_entry_cnt p {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
}

.ft_entry_btns {
  display: block;
  gap: 15px;
}

.ft_entry_btns li {
  flex-basis: 240px;
  flex-shrink: 0;
  width: 240px;
  margin: 0 auto 15px;
}

.ft_entry_cnt a {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 240px;
  padding: 20px 40px 19px;
  background: #454545;
  border-radius: 100vw;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.ft_entry_cnt a:hover {
  background: #636363;
}

.ft_entry_cnt a::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.ft_entry_cnt a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

#fnav {
  position: relative;
  margin: -20px 0 0;
  padding: 55px 5% 22px;
  background: #fff;
  border: 3px solid #1a1a1a;
  border-radius: 20px 20px 0px 0px;
  text-align: left;
}

.fnav_cnt {
  display: flex;
  justify-content: space-between;
}

.fnav_title {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.ft_logo {
  display: block;
  width: 276px;
  margin: 0 auto 32px;
}

.ft_logo img {
  width: 100%;
}

a.btn_corp {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 115px;
  padding: 18px 40px 17px;
  background: #454545;
  border-radius: 100vw;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

a.btn_corp:hover {
  background: #636363;
}

a.btn_corp::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_nwin_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

a.btn_corp:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.fnav_list {
  flex-basis: 62.4%;
  max-width: 62.4%;
  width: 62.4%;
  display: none;
  justify-content: space-between;
}

.fnav_list > li {
  flex-basis: 28.3%;
  max-width: 28.3%;
  width: 28.3%;
}

.fnav_list p {
  margin: 0 0 20px;
}

.fnav_list p > a,
.fnav_list p > span {
  display: block;
  text-decoration: none;
}

.fnav_list p > a:hover {
  transform: translate(5px, 0);
}

.fnav_list p > a span,
.fnav_list p > span span {
  display: block;
  padding: 8px 0 0 0;
  font-weight: 500;
  font-size: 12px;
}

.fnav_list_cnt {
  margin: 0 0 60px;
}

ul.fnav_list,
ul.fnav_list_btn li {
  text-align: left;
  line-height: 1.7;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

ul.fnav_list_btn li + li:has(span) {
  padding: 10px 0 0;
}

ul.fnav_list_btn li a {
  display: block;
  padding: 3px 0 3px;
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
  text-decoration: none;}

ul.fnav_list_btn li a:hover {
  transform: translate(5px, 0);
}

ul.fnav_list_btn li span {
  display: block;
  padding: 3px 0 3px;
  font-size: 13px;
  text-decoration: underline;
}

.ft_link {
  margin: 0 auto 32px;
}

.ft_link a {
  display: inline-block;
  padding: 0 15px 0 0;
  background: url("../images/icn_new_bk.png") right top 21px / 10px auto no-repeat;
  font-weight: 500;
  text-decoration: underline;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.ft_link a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.copyright {
  padding-right: 15%;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: left;
}










/* - - - - - - - - - - - - - - - - - (content top) - - - - - - - - - - - - - - - - - */

/* top mv */

#topmv_wrapeer {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url("../images/bg_top_mv.png") center center / cover no-repeat;
}

.top_mv_cnt {
  position: relative;
  width: 100%;
  height: 100%;
}

.top_mv_cnt img {
  width: 100%;
}

.top_mv_space {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv_cloud_s {
  position: absolute;
  top: 35%;
  left: 0%;
  display: flex;
  width: max-content;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
  opacity: 0;
}

.mv_cloud_s img {
  width: 400px;
  margin-right: 200px;
}

.mv_cloud_l {
  position: absolute;
  top: 22%;
  left: 0%;
  display: flex;
  width: max-content;
  overflow: hidden;
  white-space: nowrap;
  will-change: transform;
  opacity: 0;
}

.mv_cloud_l img {
  width: 600px;
  margin-right: 300px;
}

.top_mv_cnt.sc_animation .mv_cloud_s {
  animation: fadeIn 8.0s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 1.5s;
}

.top_mv_cnt.sc_animation .mv_cloud_l {
  animation: fadeIn 8.0s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 2.5s;
}

.mv_sun {
  position: absolute;
  top: 72px;
  left: 42%;
  width: 150px;
}


.top_mv_cnt.sc_animation .mv_sun {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  will-change: transform, opacity;
}

.top_mv_cnt.active .mv_sun {
  animation: popIn 0.4s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 1.0s;
  transform-origin: center;
}

.top_mv_cnt.noanim .mv_sun {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none !important;
}

.popin {
  opacity: 0;
  will-change: transform, opacity;
}

.popin.active {
  animation: popIn 0.5s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 0.6s;
  transform-origin: center;
}

.top_mv_cnt.active .mv_sun img{
  animation: spin 36.0s linear infinite;
  transform-origin: center;
}

.mv_build {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 180%;
  min-width: 180%;
  opacity: 0;
  margin: 0 -40%;
}

.top_mv_cnt.active .mv_build {
  animation: popIn 0.4s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 3.0s;
}

.mv_tree {
  position: absolute;
  bottom: 13px;
  right: 0;
  width: 60%;
  opacity: 0;
}

.top_mv_cnt.active .mv_tree {
  animation: popIn 0.4s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 3.5s;
}

.mv_people {
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 100%;
}

.mv_people li {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4%;
  opacity: 0;
}

.top_mv_cnt.active .mv_people li {
  animation: popIn 0.3s cubic-bezier(.2,1.3,.3,1) both;
}

.top_mv_cnt .mv_people li:nth-child(1) { left: 16%; }
.top_mv_cnt .mv_people li:nth-child(2) { left: 32%; }
.top_mv_cnt .mv_people li:nth-child(3) { left: 42%; }
.top_mv_cnt .mv_people li:nth-child(4) { left: 47%; }
.top_mv_cnt .mv_people li:nth-child(5) { left: 57%; }
.top_mv_cnt .mv_people li:nth-child(6) { left: 79%; }
.top_mv_cnt .mv_people li:nth-child(7) { left: 82%; }
.top_mv_cnt .mv_people li:nth-child(8) { left: 85%; }

.top_mv_cnt.active .mv_people li:nth-child(1) { animation-delay: 4.5s; }
.top_mv_cnt.active .mv_people li:nth-child(2) { animation-delay: 4.0s; }
.top_mv_cnt.active .mv_people li:nth-child(3) { animation-delay: 5.0s; }
.top_mv_cnt.active .mv_people li:nth-child(4) { animation-delay: 4.8s; }
.top_mv_cnt.active .mv_people li:nth-child(5) { animation-delay: 4.2s; }
.top_mv_cnt.active .mv_people li:nth-child(6) { animation-delay: 4.9s; }
.top_mv_cnt.active .mv_people li:nth-child(7) { animation-delay: 4.4s; }
.top_mv_cnt.active .mv_people li:nth-child(8) { animation-delay: 4.7s; }

.mv_cars {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100px;
  overflow: hidden;
  opacity: 0;
}

.top_mv_cnt.sc_animation .mv_cars {
  animation: fadeIn 2.0s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 5.0s;
}

.mv_cars li {
  position: absolute;
  bottom: 0;
  width: 12%;
  animation: carMove 30s linear infinite;
}

.mv_cars li:nth-child(1) { animation-delay: 0s; }
.mv_cars li:nth-child(2) { animation-delay: -10s; animation-duration: 34s; }
.mv_cars li:nth-child(3) { animation-delay: -19s; animation-duration: 26s; }

.mv_copy_jp {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 70%;
}

.mv_copy_jp img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  transform: translate(0,30px);
  opacity: 0;
}

.top_mv_cnt.sc_animation .mv_copy_jp img {
  animation: fadeUp 2.0s cubic-bezier(.2,1.3,.3,1) both;
}

.top_mv_cnt.sc_animation .mv_copy_jp img:nth-child(1) { animation-delay: 5s; }
.top_mv_cnt.sc_animation .mv_copy_jp img:nth-child(2) { animation-delay: 5.6s; }
.top_mv_cnt.sc_animation .mv_copy_jp img:nth-child(3) { animation-delay: 6.2s; }
.top_mv_cnt.sc_animation .mv_copy_jp img:nth-child(4) { animation-delay: 6.8s; }

.mv_copy_en {
  position: absolute;
  top: 10%;
  right: 3%;
  width: 80px;
  transform: translate(0,30px);
  opacity: 0;
}

.top_mv_cnt.sc_animation .mv_copy_en {
  animation: fadeUp 2.0s cubic-bezier(.2,1.3,.3,1) both;
  animation-delay: 6.8s;
}





/* top_content */

.top_lead_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: blur(40px);
  background-color: rgba(131,191,232,0.60);
  opacity: 0;
}

.top_lead {
  position: relative;
  padding: 400px 0 100px;
  color: #fff;
}

.top_lead p {
  width: 80%;
  max-width: 1086px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  text-align: left;
  color: #fff;
}

.top_lead p span {
}

.top_lead_txt .char {
  transition: opacity 0.05s linear;
}

.top_cnt {
  position: relative;
  overflow: hidden;
}

.top_cnt_inner {
  position: relative;
}

.content_r {
  position: relative;
  width: 100%;
  margin: 0 0 0 0;
}

h3.top_for_title {
  width: 90%;
  margin: 60px auto 50px;
}

h3.top_for_title img {
  width: 84%;
}

.for_slider_wrapper {
  position: relative;
  margin: 0 auto 70px;
}

.for_slider {
  position: relative;
}

.for_slider a {
  display: block;
  text-decoration: none;
}

.for_slider a:hover {
  opacity: 0.7;
  transform: translate(3px, 3px);
}

.for_ph {
  position: relative;
  width: 90%;
  max-width: 1026px;
  margin: 0 auto 20px;
  padding: 15px 0 0;
}

.for_ph_img {
  transition: all .3s ease;
}

.for_slider a:hover .for_ph_img  {
  transform: scale(1.02);
}

.for_ph_num {
  position: absolute;
  top: 13.5%;
  left: 5.6%;
  width: 9.6%;
}

.for_ph_copy {
  position: absolute;
  top: 2.5%;
  right: 5.6%;
  width: 11.7%;
  max-width: 120px;
}

.btn_arrow_cir {
  position: absolute;
  bottom: 11%;
  right: 5.6%;
  width: 32px;
  height: 32px;
  background: #454545;
  border-radius: 100vw;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn_arrow_cir::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(-50%, -50%);
}

a:hover .btn_arrow_cir {
  background: #1a1a1a;
}

a:hover .btn_arrow_cir::after {
  animation: btnArrow50 .4s ease-in-out 0s 1 normal running none;
}

.for_copy {
  margin: 0 auto 18px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: center;
  text-decoration: none;
}

.for_title {
  width: 90%;
  max-width: 660px;
  margin: 0 auto 18px;
}

.for_slider_cloud1 {
  position: absolute;
  top: 26%;
  right: -120px;
  width: 210px;
}

.for_slider_cloud2 {
  position: absolute;
  top: 30%;
  left: -60px;
  width: 120px;
}

.for_slider_cloud3 {
  position: absolute;
  top: 45%;
  right: 23%;
  width: 80px;
}

.slick-dots {
  position: absolute;
  bottom: -15px;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 3px;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  width: 14px;
  height: 14px;
  padding: 0px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
  opacity: 1;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button::before {
  font-family: 'slick';
  font-size: 0;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  content: '';
  text-align: center;
  opacity: 1;
  background: url("../images/icn_dot.png") center center / cover no-repeat;
  transition: all .2s ease-in-out;
}

.slick-dots li.slick-active button::before {
  opacity: 1;
  background: url("../images/icn_dot_on.png") center center / cover no-repeat;
}

h3.top_joyolife_career_title {
  margin: 0 auto 30px;
}

h3.top_joyolife_career_title span {
  display: block;
  margin: 0 auto 15px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

h3.top_joyolife_career_title img {
  width: 70%;
  margin: 0 auto;
}

.top_joblife_movie_wrapper_w100 {
  position: relative;
  width: 100%;
}

.top_joblife_movie_wrapper {
  position: relative;
  width: 80%;
  max-width: 778px;
  margin: 0 auto 80px;
  border-radius: 15px;
  background: #b1b1b1;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.top_joblife_movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_joblife_marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100vw;
  opacity: 0.2;
}

.top_joblife_marquee > span {
  display: block;
  width: 600px;
  min-width: 600px;
  animation: marquee 32s linear infinite;
}

h3.top_reasons_title {
  width: 90%;
  margin: 0 auto 20px;
}

h3.top_reasons_title img {
  width: 56%;
}

h3.top_reasons_title + p {
  width: 90%;
  margin: 0 auto;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: left;
}

.top_reasons_wrapper {
  position: relative;
  margin: 0 auto 50px;
}

.top_reasons_slider {
  width: 90%;
  margin: 0 auto 0 auto;
}

.top_reasons_slider li {
  
}

.top_reasons_shoulder {
  position: absolute;
  top: -10px;
  right: 3%;
  width: 70px;
}

.top_reasons_balloon {
  position: absolute;
  top: 60%;
  left: 3%;
  width: 80px;
}

.btn_reasons_more {
  position: absolute;
  bottom: 20px;
  right: 3%;
  width: 120px;
}

.btn_reasons_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  padding: 10px 35px 10px 10px;
  border-radius: 100vw;
  background: #454545;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn_reasons_more a:hover {
  background: #1a1a1a;
}

.btn_reasons_more a::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.btn_reasons_more a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_photo_slider {
  left: 0;
  width: 100vw;
}

.top_about_title {
  display: flex;
  justify-content: flex-start;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0 20px;
}

.top_about_title > img {
  width: 42%;
  margin: 0 4% 0 0;
}

.top_about_title span {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: left;
}

.top_about_title + p {
  width: 90%;
  margin: 0 auto 60px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-align: left;
}

.top_about_column {
  display: flex;
  justify-content: space-between;
  padding: 0 3% 0 3%;
}

.top_about_l {
  flex-basis: 70%;
  max-width: 70%;
  width: 70%;
  position: relative;
  margin: 0 -27% 0 0;
  padding: 0 0 100px;
}

.top_about_l_ph1 {
  border: 2px solid #1a1a1a;
  border-radius: 14px;
  overflow: hidden;
}

.top_about_l_ph2 {
  position: absolute;
  top: -19%;
  left: 57%;
  width: 30px;
}

.top_about_r {
  flex-basis: 57%;
  max-width: 57%;
  width: 57%;
  position: relative;
}

.top_about_movie_wrapper {
  width: 54%;
  margin: -70px 0 0 auto;
  border-radius: 15px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.top_about_movie {
  width: 100%;
  aspect-ratio: 0.8 / 1;
  object-fit: cover;
}

.top_about_btn_star {
  position: absolute;
  top: 28%;
  right: 30%;
  width: 20px;
}

.top_about_btn {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 100%;
}

.top_about_btn li {
  margin: 0 0 2px;
}

.top_about_btn li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 46px;
  padding: 5px 50px 5px 20px;
  border-radius: 10px;
  background: #454545;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

.top_about_btn li a:hover {
  background: #1a1a1a;
}

.top_about_btn li a::before {
  position: absolute;
  top: 50%;
  right: 8px;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_about_btn li a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_about_b_ph1 {
  width: 60%;
  max-width: 340px;
  margin: 0 15% 100px auto;
}

.top_about_b_ph2 {
  position: absolute;
  top: 30px;
  left: 11%;
  width: 40px;
}

.top_about_b {
  position: relative;
}

h3.top_work_people_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 0 0;
  width: 90%;
  margin: 0 auto;
}

h3.top_work_people_title > img {
  flex-basis: 50.5%;
  max-width: 525px;
  width: 50.5%;
  margin: 0 10px 0 0;
}

h3.top_work_people_title span {
  flex-basis: 48%;
  max-width: 307px;
  width: 48%;
}

h3.top_work_people_title + p {
  margin: -15px auto 60px 5%;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-align: left;
}

.top_work {
  position: relative;
  margin: 0 0 50px 5%;
}

.btn_work_more {
  position: absolute;
  bottom: 6%;
  right: 3%;
}

.btn_work_more a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  height: 46px;
  padding: 5px 50px 5px 20px;
  border-radius: 10px;
  background: #454545;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

.btn_work_more a:hover {
  background: #1a1a1a;
}

.btn_work_more a::before {
  position: absolute;
  top: 50%;
  right: 8px;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.btn_work_more a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_people {
  margin: 0 auto 70px;
  padding: 0 5% 0 5%;
}

.top_people_slider.slick-dotted.slick-slider {
  margin-bottom: 0;
  border-bottom: 3px solid #1a1a1a;
}

.top_people_column {
  position: relative;
  display: block;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 15px;
}

.top_people_l {
  flex-basis: 50%;
  max-width: 50%;
  width: 50%;
  margin: 0 auto;
}

.top_people_r {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  position: relative;
  padding: 10px 0;
  text-align: left;
  line-height: 1.9;
}

.top_people_r::before {
  position: absolute;
  top: 0%;
  left: 0%;
  display: block;
  content: "";
  width: 34%;
  height: 42%;
  background: url("../images/pic_top_04_05.png") center top / contain no-repeat;
  z-index: -1;
}

.top_people_copy {
  margin: 0 auto 10px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-align: center;
}

.brown {
  color: #b3483e;
}

.blue {
  color: #397cbf;
}

.top_people_copy span {
  font-weight: 500;
}

.top_people_name {
  margin: 0 auto 7px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.top_people_prof {
  font-size: 11px;
  letter-spacing: 0.02em;
}

.btn_people_more {
  position: absolute;
  bottom: 30px;
  right: 2%;
  width: 120px;
}

.btn_people_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  padding: 10px 35px 10px 10px;
  border-radius: 100vw;
  background: #454545;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn_people_more a:hover {
  background: #1a1a1a;
}

.btn_people_more a::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.btn_people_more a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_people_btn {
  width: 38px;
  margin: 0 auto;
  padding: 38px 0 0;
}

.top_people_btn a:hover {
  opacity: 0.7;
}

.top_people_slider .slick-dots {
  position: absolute;
  bottom: -26px;
  display: flex;
  justify-content: center;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: auto;
  bottom: -90px;
  width: 24px;
  height: 24px;
  transition: all .3s ease;
}

.slick-prev {
  left: calc(50% - 70px);
  background: url("../images/icn_prev_bk.png") center center / cover no-repeat;
}

.slick-prev:hover,
.slick-prev:focus {
  background: url("../images/icn_prev_bk.png") center center / cover no-repeat;
  opacity: 0.7;
}

.slick-next {
  right: calc(50% - 70px);
  background: url("../images/icn_next_bk.png") center center / cover no-repeat;
}

.slick-next:hover,
.slick-next:focus {
  background: url("../images/icn_next_bk.png") center center / cover no-repeat;
  opacity: 0.7;
}

.slick-prev:before {
  content: '';
}

.slick-next:before {
  content: '';
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: .25;
}

h3.top_life_career_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 20px 0;
  width: 90%;
  margin: 0 auto;
}

h3.top_life_career_title > img {
  flex-basis: 51.4%; /* 534/1040 */
  max-width: 534px;
  width: 51.4%;
  margin: 0 10px 0 0;
}

h3.top_life_career_title span {
  flex-basis: 45px;
  max-width: 45px;
  width: 45px;
  display: block;
  margin: 20px 0 0 10px;
}

h3.top_life_career_title span:last-child {
  margin: -14px 0 0;
}

.top_life_career_column {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 70px;
}

.top_life_career_l {
  flex-basis: 100%;
  max-width: 400px;
  width: 100%;
  z-index: 2;
  margin: -60px 0 0;
}

h3.top_life_career_title + p {
  width: 90%;
  margin: 0 auto 20px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-align: left;
}

.top_life_career_btn {
  width: 85%;
  max-width: 500px;
  margin: 0 auto;
}

.prj_cnt .top_life_career_btn {
  width: 100%;
  max-width: 100%;
  margin-top: 90px;
  margin-bottom: 90px;
}

.top_life_career_btn li {
  margin: 0 0 4px;
}

.top_life_career_btn li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 46px;
  padding: 5px 50px 5px 20px;
  border-radius: 10px;
  background: #454545;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

.prj_cnt .top_life_career_btn li a {
  height: 86px;
}

.top_life_career_btn li a:hover {
  background: #1a1a1a;
}

.top_life_career_btn li a::before {
  position: absolute;
  top: 50%;
  right: 8px;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_life_career_btn li a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

.top_life_career_btn li a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_life_career_r {
  flex-basis: 100%;
  max-width: 799px;
  width: 100%;
  position: relative;
  margin: 0 0 0 0%;
}

.top_life_career_r_ill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

h3.top_recruit_title {
  display: block;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0 20px 0;
  width: 90%;
  margin: 0 auto 40px;
}

h3.top_recruit_title > div {
  flex-basis: 100%; /* 464 / 1070 */
  max-width: 464px;
  width: 100%;
  margin: 0 0 20px 0;
}

h3.top_recruit_title > div img {
  width: 51%;
}

h3.top_recruit_title > div img + p {
  margin: 20px auto 0;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-align: left;
}

h3.top_recruit_title ul {
  flex-basis: 85%;
  max-width: 400px;
  width: 85%;
  margin: 0 auto;
}

h3.top_recruit_title ul li {
  margin: 0 0 4px;
}

h3.top_recruit_title ul li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 46px;
  padding: 5px 50px 5px 20px;
  border-radius: 10px;
  background: #454545;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
  color: #fff;
  text-decoration: none;
}

h3.top_recruit_title ul li a:hover {
  background: #1a1a1a;
}

h3.top_recruit_title ul li a::before {
  position: absolute;
  top: 50%;
  right: 8px;
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 100vw;
  transform: translate(0, -50%);
}

h3.top_recruit_title ul li a::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  border-radius: 100vw;
  transform: translate(0, -50%);
}

h3.top_recruit_title ul li a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_opencompany {
  position: relative;
  width: 90%;
  max-width: 1059px;
  margin: 0 auto 80px auto;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
}

.top_opencompany > img {
  border-radius: 17px;
}

.top_opencompany_title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.top_opencompany_title h3 {
  width: 90%;
  max-width: 393px;
  margin: 0 auto 20px;
}

.btn_opencompany_more {
  width: 90%;
  max-width: 240px;
  margin: 0 auto;
}

.btn_opencompany_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 46px;
  padding: 10px 35px 10px 10px;
  border-radius: 100vw;
  background: #454545;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn_opencompany_more a:hover {
  background: #1a1a1a;
}

.btn_opencompany_more a::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.btn_opencompany_more a:hover::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}

.top_opencompany_ill1 {
  position: absolute;
  top: -30px;
  left: 4%;
  width: 38px;
}

.top_opencompany_ill2 {
  position: absolute;
  top: -30px;
  right: 10%;
  width: 38px;
}

.top_opencompany_ill3 {
  position: absolute;
  bottom: -30px;
  left: 10%;
  width: 38px;
}

.top_opencompany_ill4 {
  position: absolute;
  bottom: -50px;
  right: -2%;
  width: 120px;
}





/* - - - - - - - - - - - - - - - - - (content) - - - - - - - - - - - - - - - - - */

/* content */

.cnt {
  position: relative;
}

.cnt_inner {
  position: relative;
}





/* zoom */

.zoom {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.zoom img {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover .zoom img {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}





/* mv */

.mv {
  position: relative;
}

.mv_cnt {
  position: relative;
  z-index: 2;
}





/* - - - - - - - - - - - - - - - - - (content for_ibaraki) - - - - - - - - - - - - - - - - - */

/* for_ibaraki */

main {
  /*overflow: hidden;*/
}

.mv_for {
  position: relative;
  margin: 0 auto 80px;
}

.h2_for {
  width: 86%;
  max-width: 1228px;
  margin: 0 auto;
  padding: 80px 0 40px;
}

.mv_for_ph_wrapper {
  position: relative;
  margin: 0 auto 30px;
}

.mv_for_ph {
  position: relative;
  width: 86%;
  max-width: 1228px;
  margin: 0 auto;
}

.mv_for_ph_num {
  position: absolute;
  top: 10%;
  left: 5.8%;
  width: 10%;
  max-width: 126px;
}

.mv_for_ph_copy {
  position: absolute;
  top: -2.5%;
  right: 3.5%;
  width: 13%;
  max-width: 154px;
}

.mv_for_cloud {
  position: absolute;
  bottom: -20%;
  left: 0;
  width: 100%;
}

.mv_for p {
  position: relative;
  margin: 0 auto 25px;
  font-weight: 600;
  font-size: 3.9vw;
  letter-spacing: 0.1em;
  line-height: 1.9;
  text-align: center;
}

.for_prf_name {
  width: 86%;
  max-width: 664px;
  margin: 0 auto;
}

.for_prologue {
  display: block;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 90%;
  max-width: 1312px;
  margin: 0 auto 80px;
  text-align: left;
}

.for_prologue_l {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  padding: 0 0 20px 0;
  border-right: none;
  border-bottom: 3px solid #1a1a1a;
  opacity: 0;
}

.for_prologue_l.active {
  animation: fadeIn 0.8s cubic-bezier(.2,1.3,.3,1) both;
}

.for_prologue_l h3 {
  margin: 0 auto 20px;
}

.for_prologue_l h3 img {
  width: 63%;
}

.prologue_slider {
  margin: 0 auto 30px;
  border-radius: 15px;
  border: 3px solid #1a1a1a;
  box-shadow: 10px 10px 0px #1a1a1a;
  overflow: hidden;
}

.prologue_slider .slick-dots {
  bottom: 16px;
  left: 20px;
  justify-content: flex-start;
  width: auto;
}

.for_prologue_l p {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
}

.for_prologue_r {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  padding: 20px 0 0 0;
  text-align: center;
  opacity: 0;
}

.for_prologue_r.active {
  animation: fadeIn 0.8s cubic-bezier(.2,1.3,.3,1) both;
}

.for_prof_title {
  position: relative;
  margin: 0 auto 35px;
  font-weight: 500;
  font-size: 17px;
  line-height: 2;
  text-align: right;
}

.for_icon_title {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto 32px;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.for_icon_title img {
  flex-basis: 45px;
  max-width: 45px;
  width: 45px;
  margin: 0 15px 0 0;
}

.for_icon_title span {
  font-weight: 500;
}

.prof_box {
  display: flex;
  align-items: center;
  margin: 0 auto 24px;
  column-gap: 24px;
}

.prof_ph {
  flex-basis: 174px;
  max-width: 174px;
  width: 174px;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.prof_box p:last-child {
  flex: 1;
  line-height: 1.6;
  text-align: left;
}

.prof_box p:last-child span {
  display: block;
  margin: 0 auto 5px;
  font-weight: 400;
  font-size: 13px;
}

.prof_x {
  width: 54px;
  margin: 30px auto 45px;
  text-align: center;
}

.for_prologue_r > p {
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}

p.then_note,
.for_prologue_r > p.then_note {
  font-weight: 400;
  text-align: right;
  font-size: 12px;
}

.mv_interview p.then_note {
  margin: 0 5% 0;
}

.for_q {
  position: absolute;
  top: -30px;
  left: 0;
}

.for_chapter_title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  padding: 0 5% 30px 5%;
}

.for_chapter_title img {
  width: 75%;
  padding: 0 0 0 0;
}

.for_chapter_title span {
  display: block;
  margin: 25px 0 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  text-align: right;
}

h4.cnt_prj_subttl {
  position: relative;
  width: 90%;
  margin: 0 auto 25px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

.prj_column {
  display: block;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 90%;
  margin: 0 auto 60px;
  padding: 0 0 0 0;
  text-align: left;
  line-height: 1.8;
}

.prj_ph {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0 0 40px;
  border-radius: 15px;
  border: 3px solid #1a1a1a;
  box-shadow: 10px 10px 0px #1a1a1a;
  overflow: hidden;
}

.prj_cnt {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0 0 40px;
}

.prj_text {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  margin: 0 0 24px;
}

.prj_text .name {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 78px;
  max-width: 78px;
  width: 78px;
  height: 34px;
  border-radius: 100vw;
  font-weight: 600;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.bg_blue {
  background: #397cbf;
}

.bg_brown {
  background: #b3483e;
}

.prj_text p:last-child {
  flex-basis: calc(100% - 98px);
  max-width: calc(100% - 98px);
  width: calc(100% - 98px);
}

.for_ph_w100h100.no_fix {
  margin-bottom: 100px;
  width: 100%;
}

.for_ph_w100h100.no_fix p {
  position: relative;
}

.for_ph_w100h100.no_fix p span {
  display: block;
  height: auto;
}

.for_ph_w100h100.no_fix .for_ph_full01{
  /*position: -webkit-relative;*/
  position: relative;
  top: 0;
  z-index: 1;
  border-top: 3px solid #1a1a1a;
}

.for_ph_w100h100.no_fix .for_ph_full01:not(.cnt_pc) {
  border-bottom: 3px solid #1a1a1a;
}

.for_ph_w100h100.no_fix .for_ph_full02{
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  width: 100%;
  height: auto;
  will-change: opacity;
  border-bottom: 3px solid #1a1a1a;
}

.for_ph_w100h100.no_fix .for_ph_full02:not(.cnt_pc) {
  border-top: 3px solid #1a1a1a;
}

.for_ph_w100h100.no_fix .for_ph_full02.is-fixed{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.for_ph_w100h100.no_fix p span img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.for_ph_w100 {
  margin-bottom: 80px;
  width: 100%;
}

.for_ph_w100 p {
  border-top: 3px solid #1a1a1a;
  border-bottom: 3px solid #1a1a1a;
  overflow: hidden;
  aspect-ratio: 1.8 / 1;
}

.for_ph_w100 p img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prj_end {
  position: relative;
  display: inline-block;
  margin: 0 0 80px;
  padding: 0 8%;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

.prj_end_ill01 {
  position: absolute;
  top: -35px;
  right: 1%;
  width: 8%;
}

.prj_end_ill02 {
  position: absolute;
  top: 70px;
  right: 1%;
  width: 8%;
}

.prj_end_ill03 {
  position: absolute;
  top: 20px;
  left: 1%;
  width: 8%;
}

.cnt_for_other {
  position: relative;
  z-index: 2;
  margin: 0 auto 80px;
}

.for_other_bg {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
}

h3.for_other_title {
  width: 90%;
  max-width: 372px;
  margin: 0 auto 20px;
}

h3.for_other_title img {
  width: 70%;
  margin: 0 auto;
}

h3.for_other_title + p {
  margin: 0 auto 54px;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

.for_other {
  display: block;
  /*justify-content: space-between;*/
  justify-content: center;
  position: relative;
  width: 88%;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.for_other li {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 20px;
}

.for_other li a {
  position: relative;
  display: block;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  text-decoration: none;
  overflow: hidden;
}

.for_other li a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 17px;
  background: #c5cddd;
  transition: all .3s ease;
  mix-blend-mode: multiply;
}

.for_other li a:hover::after {
  opacity: 0;
}

.for_other_num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-weight: 500;
  font-size: 11px;
  text-align: right;
  color: #fff;
  z-index: 2;
}

.for_other_copy {
  position: absolute;
  left: 5%;
  bottom: 10%;
  width: 90%;
  z-index: 2;
}

.for_other_copy p {
  margin: 0 0 15px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

.for_other_copy img {
  width: 100%;
  max-width: 386px;
  margin: 0 auto;
}





/* - - - - - - - - - - - - - - - - - (content about) - - - - - - - - - - - - - - - - - */

/* about */





/* future */





/* business */





/* - - - - - - - - - - - - - - - - - (content work_people) - - - - - - - - - - - - - - - - - */

/* work */

.man_balloon {
  position: relative;
  max-width: 280px;
  margin: 0 auto 24px 0;
}

.man_balloon_l {
  position: relative;
  max-width: 300px;
  margin: 30px auto 0 0;
}

.man_balloon div {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  position: absolute;
  top: 39%;
  right: 7%;
  width: 63%;
  white-space: nowrap;
}

.man_balloon.man_balloon_l div {
  top: 34%;
  right: 6%;
  width: 68%;
}

.man_balloon .text_track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  animation: marquee4 var(--marquee-duration, 15s) linear infinite; /* 可変 */
}

.man_balloon .text {
  display: inline-block;
  white-space: nowrap;
  padding-right: 1rem;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.snav_ph {
  margin: 0 2% -30px;
  border-radius: 15px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.detail_snav.works_snav li {
  flex-basis: 100%;
}

.detail_snav.works_snav li:first-child {
  flex-basis: 100%;
}

.w-40 {
  margin: 0 5% 0 5%;
}

.works_lead {
  margin: -20px auto 30px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.works_lead span {
  display: block;
  margin: 0 auto 15px;
  font-weight: 500;
  font-size: 18px;
}

.works_ph_l {
  width: 100%;
  max-width: 977px;
  margin: 0 auto 70px;
}

.works_phbox {
  display: block;
  justify-content: space-between;
  align-items: flex-start;
  margin: -25px 5% 60px 5%;
  text-align: left;
  line-height: 2;
}

.works_phbox_l {
  position: relative;
  flex-basis: 62%;
}

.works_phbox_l .ph {
  margin: 0 0 20px;
  border: 3px solid #1a1a1a;
  border-radius: 20px;
  overflow: hidden;
}

.works_phbox_r {
  position: relative;
  flex-basis: 33%;
}

.works_phbox_r h4 {
  margin: 0 0 20px;
  padding: 0 0 0 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
}

.works_phbox_r p {
  padding: 0 0 0 0;
  font-weight: 400;
}

.course_column {
  display: block;
  justify-content: space-between;
  gap: 5%;
}

.course_column_inner {
  flex: 1;
}

.course_column_inner .works_phbox_r {
  flex-basis: 100%;
  width: 100%;
}

.course_column_inner .works_phbox_r p {
  padding: 0 0 0 0;
}

.works_area {
  font-weight: 500;
}

.idx_new {
  position: absolute;
  top: -12px;
  left: 12px;
  width: 80px;
}

.works_jobbox {
  display: block;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 5% 40px 5%;
  text-align: left;
  line-height: 2;
}

.works_jobbox_l {
  flex-basis: 23%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
  padding: 25px 0 0;
  border-top: 3px solid #1a1a1a;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}

.works_jobbox_l .job_icon {
  flex-basis: 70px;
}

.works_jobbox_r {
  flex-basis: 70%;
  padding: 20px 0 0;
  border-top: none;
}

.works_jobbox_r h4 {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: #397cbf;
}

.works_jobbox_r h4.brown {
  color: #b3483e;
}

.btn_job_int {
  margin: 25px 0 0;
}

.btn_job_int a {
  position: relative;
  display: block;
  text-align: left;
  text-decoration: none;
}

.btn_job_int a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #d7dbdd;
  mix-blend-mode: multiply;
}

.job_int_ph {
  position: relative;
  border-radius: 15px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
  aspect-ratio: 2 / 1;
}

.job_int_ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn_job_int a:hover .ph_n {
  opacity: 0;
}

.job_int_pp {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 52px;
}

.job_int_txt {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  z-index: 2;
}

.job_int_job {
  display: inline-block;
  padding: 1px 7px;
  border-radius: 4px;
  background: #1a1a1a;
  font-weight: 500;
  font-size: 9px;
  color: #fff;
}

.job_int_name {
  margin: 4px 0 2px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
}

.job_int_div {
  margin: 0 0 2px;
  font-weight: 500;
  font-size: 9px;
  line-height: 1.2;
}

.btn_works_index_more {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: auto;
}

.btn_works_index_more {
  display: inline-block;
  width: auto;
  padding: 10px 6% 10px 6%;
  border-radius: 100vw;
  background: #454545;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.btn_job_int a:hover .btn_works_index_more {
  background: #1a1a1a;
}

.btn_works_index_more::after {
  position: absolute;
  top: 50%;
  right: 3%;
  width: 12px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/icn_arrow_r_wh.png") center center / 12px 12px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate(0, -50%);
}

.btn_job_int a:hover .btn_works_index_more::after {
  animation: btnArrow .4s ease-in-out 0s 1 normal running none;
}





/* people */

.h3_bk_cir {
  position: relative;
  margin: 0 5% 50px 5%;
  padding: 0 0 10px 20px;
  border-bottom: 3px solid #1a1a1a;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: left;
}

.h3_bk_cir::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  background: #1a1a1a;
  border-radius: 100vw;
}

.people_list {
  display: block;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 5% 0 5%;
  padding: 0 0 0;
  border-bottom: none;
}

.people_list li {
  flex-basis: 48%;
  margin: 0 0 35px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(26,26,26,0.20);
}

.people_list li a {
  position: relative;
  display: block;
  text-align: left;
  text-decoration: none;
}

.pp_ph {
  position: relative;
  margin: 0 0 10px;
  border-radius: 15px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
  aspect-ratio: 1.8 / 1;
}

.pp_ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ph_n {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.people_list li a:hover .ph_n {
  opacity: 0;
}

.pp_job {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-block;
  padding: 7px 12px;
  border-radius: 4px;
  background: #1a1a1a;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.pp_txt_column {
  display: block;
  justify-content: space-between;
}

.pp_txt_l {
  margin: 0 0 10px;
  flex-basis: 65%;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.pp_txt_r {
  flex-basis: 120px;
  line-height: 1.2;
}

.pp_name {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 18px;
}

.pp_div {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 12px;
}





/* interview */

.mv_interview {
  position: relative;
  margin: 0 auto 70px;
}

.h2_interview {
  width: 90%;
  margin: 0 5% 0;
  padding: 80px 0 0;
}

.mv_interview_ph_wrapper {
  position: relative;
  width: 90%;
  margin: 30px auto 0;
  padding: 0 6px 6px 0;
}

.mv_interview_ph_wrapper::before {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #1a1a1a;
  border-radius: 15px;
}

.mv_interview_ph {
  position: relative;
  border-radius: 15px;
  border: 3px solid #1a1a1a;
  overflow: hidden;
}

.mv_interview_shoulder {
  position: absolute;
  top: -15px;
  right: -10px;
  width: 100px;
}

.interview_mv_copy {
  position: relative;
  margin: 0px 5% 15px 7%;
  padding: 0 0 0 0;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: left;
  color: #f1b46e;
  mix-blend-mode: exclusion;
  z-index: 2;
}

.interview_mv_copy > span {
  font-weight: 500;
  color: #f1b46e;
}

.int_job {
  position: relative;
  width: 90%;
  margin: -24px auto 0;
  text-align: left;
  z-index: 2;
}

.int_job span {
  display: inline-block;
  margin: 0 0 18px;
  padding: 12px 15px;
  border-radius: 4px;
  background: #1a1a1a;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  color: #fff;
}

.interview_prof {
  position: relative;
  bottom: 0;
  right: 0;
  width: 90%;
  padding: 0 5%;
  text-align: left;
  line-height: 1.6;
}

.int_name {
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 20px;
}

.int_div {
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 13px;
}

.int_career {
  position: absolute;
  top: 0;
  right: 3.5%;
  width: 270px;
}

.int_career_cnt {
  position: relative;
  width: 90%;
  max-width: 918px;
  margin: 0 auto 60px;
  padding: 45px 0 0 0;
  line-height: 1.8;
  text-align: left;
}

.int_career_ttl {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 80px;
  padding: 10px 70px 10px 5%;
  border-radius: 20px;
  background: #b3483e;
  border: 3px solid #1a1a1a;
  cursor: pointer;
  transition: background .4s cubic-bezier(0.19, 1, 0.22, 1);
  font-weight: 500;
  font-size: 17px;
  text-align: left;
  color: #fff;
}

.int_career_ttl:hover {
  background: #C0544A;
}

.int_career_ttl::after {
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  content: "";
  width: 46px;
  height: 46px;
  background: url("../images/icn_open_whcir.png") center center / 46px 46px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(0deg) translate(0, -50%);
  transform-origin: top center;
}

.int_career_ttl.selected::after {
  background: url("../images/icn_close_whcir.png") center center / 46px 46px no-repeat;
  transform: rotate(90deg) translate(0, -50%);
}

.int_career_txt {
  position: relative;
  padding: 10px 0 0;
}

.int_career_txt::before {
  position: absolute;
  top: 0;
  bottom: 10px;
  left: 23px;
  display: block;
  content: "";
  width: 3px;
  background: url("../../info/images/line_dot2.png") bottom center / 3px auto no-repeat;
  opacity: 0.2;
}

.int_career_txt ul {
  text-align: left;
  margin: 0 0 0 66px;
}

.int_career_txt ul li {
  display: block;
  position: relative;
  margin: 0 0 10px;
  padding: 9px 15px 9px 5%;
  border-radius: 10px;
  background: #fff;
  border: 3px solid #1a1a1a;
  font-weight: 500;
}

.int_career_txt ul li:last-child {
  position: relative;
  margin: 0 0 0;
  padding: 0 0 0 5.5%;
  background-color: transparent;
  border: none;
  font-weight: 500;
}

.int_career_txt ul li::before {
  position: absolute;
  top: 50%;
  left: -43px;
  display: block;
  content: "";
  width: 42px;
  height: 1px;
  background: #1a1a1a;
  z-index: -1;
}

.int_career_txt ul li::after {
  position: absolute;
  top: 50%;
  left: -52px;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  background: #1a1a1a;
  border-radius: 2px;
  transform: rotate(45deg) translate(0, -50%);
}

.int_career_txt ul li:last-child::after {
  left: -49px;
}

.int_career_txt ul li span {
  display: block;
  width: auto;
  font-weight: 400;
}

.int_num {
  position: absolute;
  top: 0;
  right: 5%;
  width: 50%;
}

h3.int_q {
  position: relative;
  margin: 0 5% 20px;
  padding: 0 0 0 22px;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  text-align: left;
}

h3.int_q::before {
  position: absolute;
  top: 7px;
  left: 4px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: #1a1a1a;
  border-radius: 100vw;
}

h4.int_a {
  margin: 0 5% 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  text-align: left;
}

.int_txt {
  margin: 0 5% 80px 12%;
  line-height: 2;
  text-align: left;
}

.int_ph {
  position: relative;
  padding: 10px 0 80px;
}

.int_balloon {
  position: absolute;
  top: -55px;
  display: block;
  width: 35%;
}

.int_balloon.sr { right: 8%; }
.int_balloon.mm { right: 3%; }
.int_balloon.ym { right: 17%; }
.int_balloon.mk { right: 1.5%; }
.int_balloon.sk { right: 3%; }
.int_balloon.hk { right: 3%; }
.int_balloon.ak { right: 17%; }

.int_ph_group {
  position: relative;
  width: 100%;
  max-width: 836px;
  margin: 0 auto 80px;
}

.int_ph_group li:not(:first-child) {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  margin: -30% 0 0;
}

html {
  scrollbar-gutter: stable;
}

body.is-scroll-locked {
  position: fixed;
  left: 0;
  width: 100%;
}

.int_oneday {
  margin: 0 auto 30px;
  padding: 0 0 0 0;
}

h3.h3_oneday {
  width: 90%;
  margin: 0 auto 50px;
}

h3.h3_oneday img {
  width: 80%;
  margin: 0 auto;
}

.oneday_slider {
  position: relative;
  padding: 60px 0 0 5%;
  overflow: hidden;
}

.oneday_slider li {
  padding: 0 20px 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.oneday_slider li span {
  display: block;
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 20px;
}

.oneday_slider .slick-list {
  overflow: visible;
}

.oneday_slider .slick-slide {
}

.oneday_slider .slick-slide.slick-current {
}

.oneday_slider .slick-slide:not(.slick-active) {
}

.oneday_slider .slick-prev {
  position: absolute;
  left: auto;
  right: 56px;
  top: 0;
  width: 36px;
  height: 36px;
  z-index: 999;
  text-indent: -9999px;
  background: url("../images/btn_oneday_prev.png") center center / cover no-repeat transparent !important;
  transform: translate(0, 0);
  transition: all .2s ease-in-out;
}

.oneday_slider .slick-next {
  position: absolute;
  left: auto;
  right: 10px;
  top: 0;
  width: 36px;
  height: 36px;
  z-index: 999;
  text-indent: -9999px;
  background: url("../images/btn_oneday_next.png") center center / cover no-repeat transparent !important;
  transform: translate(0, 0);
  transition: all .2s ease-in-out;
}

.oneday_slider .slick-prev:hover,
.oneday_slider .slick-prev:focus,
.oneday_slider .slick-prev:active {
  transform: translate(-3px, 0);
}

.oneday_slider .slick-next:hover,
.oneday_slider .slick-next:focus,
.oneday_slider .slick-next:active {
  transform: translate(3px, 0);
}

.oneday_slider .slick-prev.slick-disabled,
.oneday_slider .slick-next.slick-disabled {
  cursor: default;
  opacity: 0.2;
}

.oneday_slider .slick-dots {
  position: absolute;
  bottom: auto;
  top: 50px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  box-sizing: border-box;
}

.oneday_slider .slick-dots li {
  flex: 1;
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  margin: 0 0;
  padding: 0 0;
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
}

.oneday_slider .slick-dots li button {
  display: block;
  width: 100%;
  height: 2px;
  padding: 0px;
  cursor: pointer;
  opacity: 1;
  background: #1a1a1a;
}

.oneday_slider .slick-dots li button:hover,
.oneday_slider .slick-dots li button:focus {
  outline: none;
}

.oneday_slider .slick-dots li button:hover:before,
.oneday_slider .slick-dots li button:focus:before {
  opacity: 1;
}

.oneday_slider .slick-dots li button:before {
  font-family: 'slick';
  font-size: 0;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  text-align: center;
  opacity: 1;
  background: #eee;
  transition: all .2s ease-in-out;
}

.oneday_slider .slick-dots li.slick-active button:before {
  opacity: 1;
  background: #1a1a1a;
  color: transparent;
}

.oneday_slider .slick-dots li.slick-active button::after{
  content: "";
  position: absolute;
  inset: 0;
  top: -4px;
  border-radius: 0;
  z-index: 0;
  pointer-events: auto;
  height: 6px;
  background: #1a1a1a;
  -webkit-mask: none;
  mask: none;
}

.interview_ph_w100 {
  margin-bottom: 80px;
  width: 100%;
}

.interview_ph_w100 p {
}

.cnt_interview_other {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 60px;
}

h3.int_other_title {
  width: 80%;
  margin: 0 auto 20px;
}

h3.int_other_title img {
  margin: 0 auto;
}

h3.int_other_title + p {
  margin: 0 auto 30px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
}

.btn_int_other {
  position: relative;
}

.btn_int_other a {
  position: relative;
  display: block;
  border-radius: 20px;
  border: 3px solid #1a1a1a;
  text-decoration: none;
  overflow: hidden;
}

.btn_int_other a::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 17px;
  background: #c5cddd;
  transition: all .3s ease;
  mix-blend-mode: multiply;
}

.btn_int_other a:hover::after {
  opacity: 0;
}

.int_other_copy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}

.int_other_copy span {
  display: block;
  margin: 0 0 8px;
  font-weight: 500;
  font-size: 13px;
}





/* - - - - - - - - - - - - - - - - - (content life_career) - - - - - - - - - - - - - - - - - */

/* life_career */





/* map */

.mv_map {
  position: relative;
  margin: 0 auto 50px;
}

.h2_map {
  width: 84%;
  margin: 0 auto 0 0;
  padding: 80px 5% 0;
}

.h2_map + p {
  position: relative;
  margin: 20px 5% 0;
  padding: 0 0 0 22px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  text-align: left;
}

.h2_map + p::before {
  position: absolute;
  top: 10px;
  left: 4px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: #1a1a1a;
  border-radius: 100vw;
}

.map_lead {
  width: 84%;
  margin: 0 auto 50px;
  padding: 0 0 0 0%;
  text-align: left;
  line-height: 1.8;
}

.map_lead h3 {
  margin: 0 0 12px;
  font-weight: 500;
  font-size: 20px;
}

.map_lead p {
  font-weight: 500;
  font-size: 16px;
}

.map_snav {
  display: block;
  justify-content: space-between;
  width: 64%;
  max-width: 1200px;
  margin: 0 auto 20px;
}

.map_snav li {
  flex-basis: 100%;
  max-width: 100%;
  margin: 0 auto 20px;
}

.map_snav li a {
  position: relative;
  display: block;
}

.map_snav li a > img {
  transition: opacity .3s ease;
}

.map_snav li a:hover > img {
  opacity: 0;
}

.map_snav li a > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity .3s ease;
  opacity: 0;
}

.map_snav li a:hover > span {
  opacity: 1;
}

.map_snav + p {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: right;
  font-size: 12px;
}

.map_case_marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  left: -0;
  width: 100vw;
}

.map_case_marquee > span {
  display: block;
  width: 900px;
  min-width: 900px;
  animation: marquee 32s linear infinite;
}

.map_title {
  position: relative;
  margin: 0 auto 62px;
}

.map_title_e {
  padding: 34px 0 2px;
}

.map_title_e img {
  margin: 0 auto;
}

h3.map_title_j {
  padding: 0 0 22px;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
}

h3.map_title_j::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  content: "";
  width: 32px;
  height: 2px;
  background: #1a1a1a;
  transform: translate(-50%, 0);
}

h3.map_title_j span {
  display: inline-block;
  padding: 0 8px;
  font-weight: 500;
  font-size: 24px;
}

h3.map_title_j span.brown {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-size: 30px;
}

.map_case_ph_wrapper {
  position: relative;
  margin: 0 10px 80px 10px;
  padding: 0 10px 10px 0;
}

.map_case_ph_wrapper::before {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: calc(100% - 20px);
  height: calc(100% - 10px);
  background: #1a1a1a;
  border-radius: 15px;
}

.map_case_ph {
  position: relative;
  border-radius: 15px;
  border: 2px solid #1a1a1a;
  overflow: hidden;
}

.map_case_ph img {
  width: 160%;
  min-width: 160%;
  margin: 0 -20% 0 -40%;
}

.map_case_shoulder {
  position: absolute;
  top: -30px;
  right: -1%;
  width: 50%;
  max-width: 50%;
}

.map_case_prof {
  position: absolute;
  bottom: 7%;
  right: 6%;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}

.map_case_prof.bk {
  color: #1a1a1a;
}

.map_case_prof span {
  display: block;
  margin: 0 0 5px;
  font-weight: 500;
  font-size: 17px;
}

.map_case_timeline {
  position: relative;
}

.cl_cir {
  position: absolute;
  top: 8px;
  left: -41px;
  display: block;
  content: "";
  width: 135px;
  height: 135px;
  animation: spin 36.0s linear infinite;
}

.cl_line {
  position: absolute;
  top: 80px;
  bottom: 0;
  left: 25px;
  display: block;
  content: "";
  width: 3px;
  background: url("../../life_career/images/line_dot.png") center bottom / 3px auto no-repeat;
  mix-blend-mode: multiply;
}

.cl_timebox {
  position: relative;
  text-align: left;
  line-height: 1.8;
}

.cl_e {
  position: absolute;
  top: -38px;
  right: 8px;
  z-index: -1;
  width: 70%;
}

.cl_timebox.life .cl_e {
  width: 39%;
}

.cl_timebox.career .cl_timebox_inner {
  position: relative;
  margin: 0 5% 50px 65px;
  padding: 30px 12px 30px;
  background: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 15px;
}

.cl_timebox.life .cl_timebox_inner {
  position: relative;
  margin: 0 5% 50px 65px;
  padding: 30px 12px 30px;
  background: #e4e8e4;
  border: 2px solid #1a1a1a;
  border-radius: 15px;
}

.cl_timebox.nobg .cl_timebox_inner {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin: 0 5% 70px 70px;
  padding: 0 10px;
}

.cl_timebox.career + .cl_timebox.life,
.cl_timebox.life + .cl_timebox.career {
  margin-top: 80px;
}

.cl_timebox:last-child {
  margin-bottom: 120px;
}

.cl_timebox.career .cl_timebox_inner::after {
  position: absolute;
  top: 74px;
  left: -28px;
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  background: url("../../life_career/images/icn_tri_wh.png") right top / contain no-repeat;
}

.cl_timebox.life .cl_timebox_inner::after {
  position: absolute;
  top: 74px;
  left: -28px;
  display: block;
  content: "";
  width: 28px;
  height: 28px;
  background: url("../../life_career/images/icn_tri_gr.png") right top / contain no-repeat;
}

.cl_timebox.nobg .cl_timebox_inner::after {
  position: absolute;
  top: 32px;
  left: -28px;
  display: block;
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(26,26,26,0.20);
}

.cl_ex {
  flex-basis: 9px;
  max-width: 9px;
  width: 9px;
  min-width: 9px;
}

.cl_mark {
  position: absolute;
  top: 65px;
  left: -51px;
  width: 21px;
}

.cl_timebox.nobg .cl_mark {
  top: 20px;
  left: -54px;
}

.cl_shouler {
  position: absolute;
  top: 7px;
  right: 7px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100vw;
  background: #e4e4e4;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.5;
}

.cl_subtitle {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 16px;
}

h3.cl_title {
  margin: 0 0 15px;
  font-weight: 500;
  font-size: 20px;
}

.cl_timebox.life h3.cl_title {
  margin: 0 0 10px;
  font-size: 20px;
  color: #007e00;
}

.cl_timebox p {
  flex: 1;
  font-weight: 500;
  font-size: 15px;
}

.cl_archive {
  position: relative;
  bottom: -15px;
  padding: 0 0 0;
  text-align: center;
}

.cl_archive h4 {
  display: inline-block;
  margin: 0 auto 12px;
  padding: 0 15px;
  background: #397cbf;
  border: 2px solid #1a1a1a;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}

.cl_archive p {
  margin: 0 auto 12px;
  font-weight: 500;
  font-size: 16px;
}

.cl_archive p:has(span) {
  display: inline-block;
  margin: 0 auto 0px;
}

.cl_archive p span {
  display: inline-block;
  padding: 0 0;
  border-radius: 100vw;
  background: #fff;
  font-weight: 500;
  font-size: 13px;
  color: #1a1a1a;
  letter-spacing: 0;
}

.for_ph_w100h100 .for_ph_full01 > img {
}

.for_ph_w100h100 .for_ph_full02 > img {
}

.for_ph_w100h100 .case_now_future {
  position: absolute;
  top: auto;
  bottom: 5%;
  right: 4%;
  width: 92%;
  height: auto;
  padding: 18px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(30px);
  --webkit-backdrop-filter: blur(30px);
  transform: translate(0, 0);
}

.for_ph_w100h100 .case_now_future.left {
  right: 4%;
  left: 4%;
}

.for_ph_w100h100 span.case_nf_e {
  position: relative;
  display: block;
  margin: 0 auto 8px;
  width: auto;
  height: auto;
}

.for_ph_w100h100 span.case_now_future .case_nf_e img {
  width: 80px;
  height: auto;
  margin: 0 auto;
}

.for_ph_w100h100 .for_ph_full02 span.case_now_future .case_nf_e img {
  width: 153px;
}

.for_ph_w100h100 span.case_nf_j {
  position: relative;
  display: block;
  margin: 0 auto 8px;
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}

.for_ph_w100h100 span.case_nf_t {
  position: relative;
  display: block;
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  color: #fff;
}

.for_ph_w100h100 span.idx_now_future {
  display: none;
  opacity: 0;
  position: fixed;
  top: 80px;
  left: 5%;
  z-index: 2;
  width: 120px;
  height: 26px;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.for_ph_w100h100:has(.is-fixed) span.idx_now_future {
  display: block;
  opacity: 1;
}

.for_ph_w100h100 span.idx_now_future img {
  width: 120px;
  height: 26px;
  object-fit: contain;
}





/* welfare */





/* life */





/* - - - - - - - - - - - - - - - - - (content info) - - - - - - - - - - - - - - - - - */

/* info */

.mv_info {
  position: relative;
  margin: 0 auto 30px;
}

.h2_info {
  width: 50%;
  margin: 0 auto 0 0;
  padding: 80px 5% 0;
}

.h2_info + p {
  position: relative;
  margin: 20px 5% 0;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: left;
}

.info_ph_large {
  margin: 0 5% 50px;
  border-radius: 15px;
  border: 2px solid #1a1a1a;
  overflow: hidden;
}

.info_message {
  margin: 0 8% 60px 5%;
  padding: 25px 5% 25px;
  border-radius: 15px;
  background: #fff;
  border: 2px solid #1a1a1a;
  box-shadow: 10px 10px 0px #1a1a1a;
}

.info_message h3 {
  margin: 0 auto 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
  text-align: left;
}

.info_message h3 span {
  font-weight: 500;
}

.info_message p {
  line-height: 2;
  text-align: left;
}

.info_person {
  margin: 0 auto 80px;
}

.info_person h3 {
  margin: 0 auto 40px;
}

.info_person h3 img {
  width: 80%;
  max-width: 250px;
  margin: 0 auto;
}

.info_person p {
  line-height: 2;
  text-align: left;
}

.info_person_ph {
  position: relative;
  width: 90%;
  max-width: 920px;
  margin: 0 auto;
  background: url("../../info/images/pic_person_bg.png") center center / cover no-repeat;
}

.info_person_ph span {
  position: absolute;
  width: 65px;
}

.info_person_ph span:nth-child(2) {
  top: -30px;
  right: 10px;
}

.info_person_ph span:nth-child(3) {
  bottom: -30px;
  right: 8px;
}

.info_person_ph span:nth-child(4) {
  bottom: -30px;
  left: 10px;
}

.info_person_marquee {
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100vw;
  opacity: 0.2;
}

.info_person_marquee > span {
  display: block;
  width: 1200px;
  min-width: 1200px;
  animation: marquee 60s linear infinite;
}

.top_people:has(.info_slider) {
  margin-bottom: 60px;
}

.top_people_slider.info_slider .top_people_column {
  padding: 0 0 80px;
}

.top_people_slider.info_slider .top_people_r::before {
  top: 0%;
  left: -0%;
  width: 80px;
  opacity: 0.2;
}

.top_people_slider.info_slider .slick-prev {
  bottom: -50px;
  left: 0;
}

.top_people_slider.info_slider .slick-next {
  bottom: -50px;
  left: 36px;
}

.top_people_slider.info_slider .top_people_copy {
  font-size: 20px;
}

.top_people_slider.info_slider .slick-current .top_people_prof {
  transition-delay: 1.0s;
}

ul.thumbnail {
  position: absolute;
  bottom: 28px;
  right: 2.5%;
}

ul.thumbnail .slick-track {
  transform: unset !important;
  display: flex;
  justify-content: space-between;
  width: 290px;
  height: 63px;
}

ul.thumbnail li {
  flex-basis: 88px;
  background: #fff;
  border-radius: 8px;
}

ul.thumbnail li img {
  transition: opacity .8s ease;
}

ul.thumbnail li.slick-current img {
  opacity: 0.4;
}





/* detail */

.detail_snav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 2%;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 20px 15px;
  border-radius: 10px;
  background: rgba(255,255,255,0.80);
  border: 3px solid #1a1a1a;
  backdrop-filter: blur(50px);
  --webkit-backdrop-filter: blur(50px);
}

.detail_snav li {
  flex-basis: auto;
}

.detail_snav li:first-child {
  position: relative;
  flex-basis: 100%;
  margin-bottom: 8px;
  padding: 3px 4px 3px 25px;
  font-weight: 500;
  font-size: 17px;
  text-align: left;
}

.detail_snav li:first-child::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  background: #1a1a1a;
  border-radius: 100vw;
}

.detail_snav li a {
  position: relative;
  display: block;
  padding: 4px 14px 4px 26px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  font-size: 14px;
}

.detail_snav li:last-child a {
  border-right: none;
}

.detail_snav li a::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: #454545;
  border-radius: 100vw;
  transition: background .3s ease;
}

.detail_snav li a:hover::before {
  background: #1a1a1a;
}

.detail_snav li a::after {
  position: absolute;
  top: 6px;
  left: 4px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background: url("../images/icn_arrow_b_wh.png") center center / 10px 10px no-repeat;
}

.detail_snav li a:hover::after {
  animation: btnArrowBottom .4s ease-in-out 0s 1 normal running none;
}

.detail_title {
  margin: 0 8% 50px 5%;
  padding: 20px 10px 20px;
  border-radius: 15px;
  background: #b3483e;
  box-shadow: 10px 10px 0px #1a1a1a;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  color: #fff;
}

.detail_title.bg_blue {
  background: #397cbf;
}

.detail_title span {
  display: block;
  margin: 0 auto 5px;
  font-size: 11px;
}

.detail_cnt {
  margin: 0 5% 80px 5%;
  padding: 20px 5%;
  border-radius: 15px;
  background: #fff;
  border: 2px solid #1a1a1a;
  text-align: left;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 30px;
  text-align: left;
}

table th {
  display: block;
  padding: 0 0 10px 0;
  border-bottom: none;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  vertical-align: top;
  white-space: nowrap;
}

table th span {
  display: block;
  font-size: 13px;
}

table td {
  display: block;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  line-height: 2;
  vertical-align: top;
}

.flow_cnt {
  margin: 0 5% 80px 5%;
text-align: left;
}

.flow_cnt_inner {
  position: relative;
  width: 100%;
  max-width: 868px;
  margin: 0 auto;
}

.flow_cnt_inner::before {
  position: absolute;
  top: 50px;
  bottom: 0;
  left: 10px;
  display: block;
  content: "";
  width: 3px;
  background: url("../../info/images/line_dot2.png") center bottom / 3px auto no-repeat;
}

ul.flow_list {
  margin: 0 0 0 50px;
}

ul.flow_list li {
  display: block;
  align-items: center;
  min-height: auto;
  position: relative;
  margin: 0 0 20px;
  padding: 20px 5%;
  border-radius: 15px;
  background: #f5f7fa;
  border: 2px solid #1a1a1a;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.6;
  color: #397cbf;
}

ul.flow_list li::before {
  position: absolute;
  top: 50%;
  left: -51px;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url("../../life_career/images/icn_cir.png") center center / 20px 20px no-repeat;
  transform: translate(0, -50%);
}

ul.flow_list li:last-child::before {
  background: url("../../life_career/images/icn_squ.png") center center / 20px 20px no-repeat;
}

ul.flow_list li::after {
  position: absolute;
  top: 50%;
  left: -28px;
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(26,26,26,0.20);
}

ul.flow_list li a {
  color: #397cbf;
}

ul.flow_list li span {
  font-weight: 500;
  font-size: 14px;
  color: #1a1a1a;
}

body.no_bg_sky #footer .bg_sky {
  display: none !important;
}

.faq_cnt {
  position: relative;
  width: 90%;
  max-width: 936px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: left;
}

.faq_q {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 70px;
  margin: 20px 0 0;
  padding: 5px 70px 5px 5px;
  background: #e0b4b1;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  cursor: pointer;
  transition: background .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq_q:hover {
  background: #D7A09C;
}

.faq_q p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 60px;
  width: 60px;
  min-width: 60px;
  height: 100%;
  min-height: 60px;
  padding: 0 5px 0 0;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
}

.faq_q div {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 70px;
  padding: 10px 10px 10px 10px;
  border-left: 1px dashed #1a1a1a;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
}

.faq_q::after {
  position: absolute;
  top: 50%;
  right: 5px;
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../info/images/icn_open_bk.png") center center / 22px 22px no-repeat;
  transition: all .4s cubic-bezier(0.19, 1, 0.22, 1);
  transform: rotate(0deg) translate(0, -50%);
  transform-origin: top center;
}

.faq_q.selected::after {
  background: url("../../info/images/icn_close_bk.png") center center / 22px 22px no-repeat;
  transform: rotate(90deg) translate(0, -50%);
}

.faq_a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 5px 10px 5px 5px;
  background: #fff;
  border: 2px solid #1a1a1a;
  border-top: none;
  font-size: 15px;
  text-align: left;
}

.faq_a p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 60px;
  width: 60px;
  min-width: 60px;
  height: 100%;
  min-height: 60px;
  padding: 0 5px 0 0;
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  color: #b3483e;
}

.faq_a div {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 60px;
  padding: 10px 10px 10px 10px;
  border-left: 1px dashed #1a1a1a;
  font-size: 15px;
  text-align: left;
}







/* - - - - - - - - - - - - - - - - - (content open_company) - - - - - - - - - - - - - - - - - */

/* open_company */

.h2_info.h2_oc {
  width: 67%;
}

.oc_lead {
  margin: 0 5% 50px;
  text-align: left;
}

.oc_lead_inner {
  width: 100%;
  max-width: 500px;
  margin: 0 0 0 0;
}

.oc_lead_ph {
  max-width: 309px;
  margin: 0 auto 24px 0;
}

.oc_lead_inner p {
  font-size: 16px;
  line-height: 1.8;
}

.detail_snav.oc_snav li {
  margin-bottom: 8px;
  flex-basis: 100%;
  letter-spacing: 0;
}

.detail_snav.oc_snav li a {
  border: none;
}

.detail_snav.oc_snav li:first-child {
  flex-basis: 100%;
}

.detail_snav.oc_snav li.oc_note {
  flex-basis: 100%;
  padding: 10px 0 0 0;
  padding-left: 26px;
  text-align: left;
}

.oc_note_out {
  position: absolute;
  bottom: -35px;
  right: 0;
  text-align: right;
}

.oc_cnt {
  position: relative;
  padding: 0 0 0;
}

.oc_ph {
  position: absolute;
  top: 15px;
  right: 5%;
}

.oc_ph01 {
  width: 52%;
  margin: 0 0 25px auto;
  border-radius: 15px;
  border: 2px solid #1a1a1a;
  overflow: hidden;
}

.oc_ph02 {
  width: 24%;
  margin: 0 0 0 auto;
  border-radius: 10px;
  border: 2px solid #1a1a1a;
  overflow: hidden;
}

.oc_num {
  position: relative;
  width: 45%;
  margin: 0 0 30px;
  padding: 0 30px;
}

.oc_copy {
  position: relative;
  margin: 0 5% 40px;
  max-width: 65%;
}

.oc_txt {
  position: relative;
  width: auto;
  margin: 0 8% 45px 5%;
  padding: 25px 5% 25px;
  border-radius: 15px;
  background: url("../images/bg_gry.png") top center / 720px 720px repeat;
  border: 2px solid #1a1a1a;
  box-shadow: 10px 10px 0px #1a1a1a;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
}

.oc_cnt h4 {
  margin: 0 auto 20px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

.oc_detail {
  margin: 0 5% 80px;
  padding: 25px 5%;
  border-radius: 15px;
  background: #fff;
  border: 2px solid #1a1a1a;
}

.oc_entry {
  position: relative;
  margin: 0 5% 120px;
}

.cnt:last-child .oc_entry {
  margin-bottom: 50px;
}

.oc_entry p {
  margin: 0 auto 50px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

.oc_entry span {
  position: absolute;
  display: block;
  width: 56px;
}

.oc_entry span.oc_ill01 {
  top: auto;
  bottom: 14%;
  right: -2%;
}

.oc_entry span.oc_ill02 {
  bottom: -11%;
  left: -2%;
}

.oc_entry span.oc_ill03 {
  bottom: -19%;
  right: 2%;
}





}





/* - - - - - - - - - - - - - - - - - (print) - - - - - - - - - - - - - - - - - */

@media print {
  .hd_nav { position: absolute; }
  .aos-init { opacity: 1 !important; transform: translateZ(0); }
  .pagetop, .bg_sky, .bg_gry, #gnav { display: none !important; }
  #topmv_wrapeer { background-image: none !important; }
  .sc_animation, .popin { opacity: 1; }
  /*.content_r { width: 100%; }*/
}





/* - - - - - - - - - - - /end - - - - - - - - - - - */




