@charset "utf-8";
:root {
  --hd-height: 4.25rem;
}

/*--------------------------------------------------------------------------------
  wrapper
--------------------------------------------------------------------------------*/
.l-wp {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-wp {
    display: grid;
    grid-template-columns: 1fr clamp(400px, calc(500 / 1400 * 100vw), 500px) 1fr;
  }
}

/* loop txt
----------------------------------------*/
@media screen and (min-width: 641px) {
  .l-wp-txtLoop {
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    z-index: -1;
  }
  .l-wp-txtLoop_item {
    white-space: nowrap;
    line-height: 1.1;
    font-size: 8rem;
    font-weight: 700;
    color: #FFF;
    padding-left: 1rem;
    padding-right: 1rem;
    animation: wp-txt-loop 25s infinite linear 0.1s both;
  }
}
@keyframes wp-txt-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@media screen and (max-width: 640px) {
  .l-wp-txtLoop {
    display: none;
  }
}

/*--------------------------------------------------------------------------------
  main
--------------------------------------------------------------------------------*/
.l-main {
  position: relative;
  background-color: #FFF;
  text-align: left;
  padding-top: var(--hd-height);
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .l-main {
    max-width: 500px;
  }
}
@media screen and (max-width: 960px) {
  .l-main {
    margin-left: auto;
    margin-right: auto;
  }
}

/*--------------------------------------------------------------------------------
  main > header
--------------------------------------------------------------------------------*/
.l-hd {
  width: 100%;
  min-width: 300px;
  z-index: 2000;
  position: fixed;
  top: 0;
  overflow: hidden;
}
.l-hd_inner {
  height: var(--hd-height);
  text-align: left;
  background-color: #FFF;
  display: flex;
  align-items: center;
  align-content: space-between;
}
html.is-gNav-open {
  overflow: hidden;
}
html.is-gNav-open .l-hd {
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 961px) {
  .l-hd {
    max-width: clamp(400px, calc(500 / 1400 * 100vw), 500px);
  }
}
@media screen and (min-width: 641px) and (max-width: 960px) {
  .l-hd {
    max-width: 500px;
  }
}
@media print, screen and (max-width:500px) {
  .l-hd_inner {
    font-size: max(0.8em, 3vw);
  }
}

/* title
----------------------------------------*/
.l-hd-ttl {
  flex-grow: 2;
}
.l-hd-ttl a {
  display: flex;
  column-gap: 0.75rem;
  padding: 0 1rem;
}
.l-hd-ttl a,
.l-hd-ttl a:visited,
.l-hd-ttl a:hover {
  color: inherit;
  text-decoration: none;
}
.l-hd-ttl .logo {
  font-weight: normal;
  line-height: 1.25;
  font-size: var(--fs-l);
  font-family: var(--ff-mgo);
  font-weight: 900;
  letter-spacing: -0.1rem;
}
.l-hd-ttl .logo small {
  display: block;
  font-size: var(--fs-3s);
  font-weight: 500;
  letter-spacing: normal;
}
.l-hd-ttl .sub {
  font-family: var(--ff-mgo);
  font-weight: 600;
  font-size: var(--fs-3s);
  border: 1px solid var(--pink);
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.1rem;
  padding: 0.5em;
  margin-bottom: 0.1rem;
  border-radius: 0.25rem;
  align-self: flex-end;
}

/* entry button
----------------------------------------*/
.l-hd-btn.c-btn {
  font-weight: 700;
  font-size: var(--fs-n);
  padding-left: 2em;
  padding-right: 2em;
}
html.is-gNav-open .l-hd-btn {
  display: none;
}
@media print, screen and (min-width:1201px) {
  .l-hd-btn.c-btn {
    padding-left: 1.75em;
    padding-right: 1.75em;
  }
}
@media print, screen and (max-width:340px), (min-width:961px) and (max-width:1200px) {
  .l-hd-btn.c-btn {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}

/* menu button
----------------------------------------*/
@media print, screen and (min-width:501px) {
  :root {
    --gNavBtn-icon-width: 25px;
    --gNavBtn-icon-height: 18px;
    --gNavBtn-icon-line: 3px;
    --gNavBtn-icon-center: 8px;
  }
}
@media print, screen and (max-width:500px) {
  :root {
    --gNavBtn-icon-width: 20px;
    --gNavBtn-icon-height: 14px;
    --gNavBtn-icon-line: 2px;
    --gNavBtn-icon-center: 6px;
  }
}
.l-gNavBtn {
  align-self: stretch;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  z-index: 3000;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-gNavBtn_icon,
.l-gNavBtn_icon span,
.l-gNavBtn_icon span:before,
.l-gNavBtn_icon span:after {
  display: inline-block;
}
.l-gNavBtn_icon {
  position: relative;
  width: var(--gNavBtn-icon-width);
  height: var(--gNavBtn-icon-height);
  transition: all 0.1s ease-out;
}
.l-gNavBtn_icon span {
  position: absolute;
  right: 0;
  height: var(--gNavBtn-icon-line);
  transition: all 0.2s ease-out;
  background-color: var(--blue);
}
.l-gNavBtn.is-close .l-gNavBtn_icon span {
  background-color: var(--blue);
}
.l-gNavBtn_icon span:nth-of-type(1) {
  width: 100%;
  top: 0;
}
.l-gNavBtn_icon span:nth-of-type(2) {
  width: 100%;
  top: 50%;
}
.l-gNavBtn_icon span:nth-of-type(3) {
  width: 100%;
  top: 100%;
}
.l-gNavBtn.is-close .l-gNavBtn_icon span:nth-of-type(1) {
  transform: translateY(calc(var(--gNavBtn-icon-height) / 2)) rotate(-45deg);
}
.l-gNavBtn.is-close .l-gNavBtn_icon span:nth-of-type(2) {
  opacity: 0;
}
.l-gNavBtn.is-close .l-gNavBtn_icon span:nth-of-type(3) {
  transform: translateY(calc(-1 * (var(--gNavBtn-icon-height) / 2))) rotate(45deg);
}

/*--------------------------------------------------------------------------------
  main > global navigation
--------------------------------------------------------------------------------*/
.l-gNav {
  width: 100%;
  flex: 1;
  height: 0;
  opacity: 0;
  transition: opacity 0.3s var(--cubic-bezier);
  pointer-events: none;
}
html.is-gNav-open .l-gNav {
  height: 100%;
  opacity: 1;
  background-color: #FFF;
  overflow-y: auto;
  pointer-events: auto;
}
.l-gNav a,
.l-gNav a:visited,
.l-gNav a:hover {
  text-decoration: none;
}
.l-gNav-item {
  padding: 0.5rem var(--side-space) var(--space-s) var(--side-space);
}

/* menu
----------------------------------------*/
.l-gNavMenu {
  list-style: none;
  font-size: 1.05em;
  font-family: var(--ff-mgo);
  font-weight: 500;
}
.l-gNavMenu a {
  display: block;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.l-gNavMenu a,
.l-gNavMenu a:visited,
.l-gNavMenu a:hover {
  color: inherit;
}
@media (hover: hover) {
  .l-gNavMenu a:hover {
    color: var(--blue);
  }
}

/* button
----------------------------------------*/
.l-gNavMenuBtn {
  list-style: none;
  margin-top: 0.5rem;
  padding-top: var(--space-s);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.l-gNavMenuBtn li {
  text-align: center;
  width: 100%;
}
.l-gNavMenuBtn a {
  display: block;
}
.l-gNavMenuBtn_entry a {
  font-size: var(--fs-l);
  font-weight: 700;
}

/*--------------------------------------------------------------------------------
  main > ページタイトル
--------------------------------------------------------------------------------*/
.l-pgttl {
  background: url("../image/pgttl-bg.svg") no-repeat center top;
  background-size: 130% auto;
  background-color: var(--bblue20);
  text-align: center;
  padding: calc(var(--space-s) + 0.5rem) var(--side-space);
}
.l-pgttl--mv {
  padding: calc(var(--space-s) + 0.5rem) var(--side-space) 0 var(--side-space);
  position: relative;
}
.l-pgttl .jp {
  font-weight: 900;
  font-family: var(--ff-mgo);
  font-size: var(--fs-4l);
  color: var(--blue);
  line-height: 1.3;
  padding-top: 0.5rem;
  position: relative;
}
.l-pgttl .jp:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25em;
  background: url("../image/pgttl-dot.svg") no-repeat center center;
  background-size: contain;
  margin: 1rem 0;
}
.l-pgttl .jp small {
  display: block;
  font-size: 55%;
  padding-bottom: 0.25rem;
}
.l-pgttl .en {
  font-weight: 700;
  color: var(--bblue);
  line-height: 1;
}
.l-pgttl--mv:before {
  content: "";
  width: 100%;
  height: var(--space-m);
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FFF;
}
.l-pgttl--mv .mv {
  margin-top: var(--space-s);
}
.l-pgttl--mv .mv img {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
}

/*--------------------------------------------------------------------------------
  main > footer
--------------------------------------------------------------------------------*/
.l-ft {
  padding: var(--space-s) var(--side-space);
}
.l-ft-ttl {
  font-size: var(--fs-2l);
  font-family: var(--ff-mgo);
  font-weight: 900;
  letter-spacing: -0.1rem;
}
.l-ft-ttl small {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: var(--fs-3s);
  font-weight: 700;
  letter-spacing: normal;
}
.l-ft-ttl a,
.l-ft-ttl a:hover {
  color: inherit;
  text-decoration: none;
}
.l-ft address {
  line-height: 1.6;
  padding-top: 0.5rem;
}
.l-ft-tel {
  padding-top: 0.5rem;
}

/* link button
----------------------------------------*/
.l-ft-links {
  /*padding-top: var(--space-s);*/
  margin-top: -2em;
  list-style: none;
  line-height: 1.5;
  display: flex;
  gap: 0.75rem;
}
.l-ft-links a,
.l-ft-links a:visited,
.l-ft-links a:hover {
  color: inherit;
  text-decoration: none;
}
.l-ft-links li .inner,
.l-ft-links li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.l-ft-links li {
  width: calc((99.9% - 0.75rem) / 2);
  border-radius: 0.5rem;
  text-align: center;
  overflow: hidden;
  background-color: #FFF;
}
.l-ft-links li .inner {
  height: 100%;
  padding: 1rem 0.5rem;
}
.l-ft-links_insta {
  color: #FFF;
  font-weight: 700;
  font-size: var(--fs-l);
}
.l-ft-links_insta .inner {
  background: url("../image/insta-bg.webp") no-repeat center center;
  background-size: cover;
}
.l-ft-links_insta .icon {
  width: 100%;
  padding-top: 0.25rem;
}
.l-ft-links_insta .svg-icon {
  width: 2rem;
  height: 2rem;
  filter: #FFF;
  color: #FFF;
}
.l-ft-links_hp {
  color: #FFF;
  font-family: var(--ff-mgo);
  font-size: var(--fs-m);
  font-weight: 700;
  letter-spacing: -0.05rem;
}
.l-ft-links_hp .inner {
  background-color: var(--bblue);
}
.l-ft-links_hp small {
  width: 100%;
  font-size: 80%;
  font-weight: 500;
  letter-spacing: inherit;
}
@media (hover: hover) {
  .l-ft-links .inner {
    transition: var(--hover-trans);
  }
  .l-ft-links .js_linkBox:hover .inner {
    opacity: 0.7;
  }
}


/*追加 アクセス案内　新着求人情報*/
.pink{
	color: var(--pink);
}

.guide{
	border: #e3e3e3 1px solid; /*境界線の指定*/
    padding:20px;
}

.guide > dt:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: var(--space-3s);
}
.guide > dt {
    /*margin-top: var(--space-3s);*/
    font-family: var(--ff-mgo);
    font-size: var(--fs-m);
    font-weight: 700;
	color: var(--pink);
    /*color: var(--bblue);*/
    text-indent: -0.5em;
}

.guide-tag {
    margin-top: 0.5rem;
}

.guide-tag {
    list-style: none;
    display: flex
;
    flex-wrap: wrap;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    line-height: 1;
}

.guide-tag li {
    padding: 0.2em;
}
/* copyright
----------------------------------------*/
.l-copy {
  padding-top: var(--space-s);
  font-size: var(--fs-2s);
  color: var(--gray);
}

/*--------------------------------------------------------------------------------
  left
--------------------------------------------------------------------------------*/
.l-left {
  text-align: left;
  position: relative;
}
.l-left_inner {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  padding: var(--space-s) var(--side-space);
}
@media screen and (max-width: 960px) {
  .l-left {
    display: none;
  }
}

/* title
----------------------------------------*/
.l-side-ttl {
  font-weight: normal;
  line-height: 1.4;
  font-size: var(--fs-2l);
  font-family: var(--ff-mgo);
  font-weight: 900;
  letter-spacing: -0.1rem;
}
.l-side-ttl a,
.l-side-ttl a:visited,
.l-side-ttl a:hover {
  color: inherit;
  text-decoration: none;
}
.l-side-ttl small {
  display: block;
  font-size: var(--fs-3s);
  font-weight: 700;
  letter-spacing: normal;
}

/* menu
----------------------------------------*/
.l-sNav {
  padding-top: var(--space-s);
  display: flex;
  justify-content: center;
}
.l-sNavMenu {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  text-align: left;
  font-size: var(--fs-m);
  font-family: var(--ff-mgo);
  font-weight: 500;
}
.l-sNavMenu a {
  display: inline-block;
  padding: 0.5rem 0;
}
.l-sNavMenu a,
.l-sNavMenu a:visited,
.l-sNavMenu a:hover {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .l-sNavMenu a:hover {
    color: var(--blue);
  }
}

/*--------------------------------------------------------------------------------
  right
--------------------------------------------------------------------------------*/
.l-right {
  position: relative;
}
.l-right_inner {
  height: 100vh;
  min-height: 800px;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-s);
  row-gap: var(--space-s);
}
.l-right_top {
  width: min(100%, 480px);
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--space-s);
  padding-bottom: var(--space-s);
}
.l-right_bottom {
  text-align: left;
  width: min(100%, 260px);
  padding-bottom: calc(var(--space-s) + 7rem);
}
@media screen and (max-width: 960px) {
  .l-right {
    display: none;
  }
}

/* movie
----------------------------------------*/
.l-side-movie {
  width: 100%;
}
.l-side-movie_ttl {
  position: relative;
  line-height: 1.5;
  font-family: var(--ff-mgo);
  font-size: 110%;
  font-weight: 500;
  text-align: center;
  animation: 3s ani-movie_ttl infinite;
  padding-left: 1.5em;
  padding-right: 1.5em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-3s);
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 0.5rem;
}
.l-side-movie_ttl:before,
.l-side-movie_ttl:after {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  background: var(--black);
}
.l-side-movie_ttl:before { left: 0; transform: rotate(-30deg); }
.l-side-movie_ttl:after { right: 0; transform: rotate(30deg); }
@keyframes ani-movie_ttl {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.5em); }
}
.l-side-movie iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
}
@media screen and (max-width: 1400px) {
  .l-side-movie iframe {
    aspect-ratio: 4 / 3;
  }
}

/* QR
----------------------------------------*/
.l-side-qr {
  background-color: #FFF;
  border-radius: 1rem;
  padding: 0.75rem;
  font-family: var(--ff-mgo);
  font-weight: 500;
  font-size: 90%;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-side-qr_txt {
  flex: 1;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* link button
----------------------------------------*/
.l-side-links {
  list-style: none;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}
.l-side-links a,
.l-side-links a:visited,
.l-side-links a:hover {
  color: inherit;
  text-decoration: none;
}
.l-side-links li,
.l-side-links a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.l-side-links li {
  border-radius: 9999px;
  overflow: hidden;
  text-align: center;
  position: relative;
  background-color: #FFF;
}
.l-side-links li a {
  width: 100%;
  padding: 0.75rem 0.5rem;
}
.l-side-links_insta {
  color: #FFF;
  font-weight: 700;
  font-size: var(--fs-m);
}
.l-side-links_insta a {
  background: url("../image/insta-bg.webp") no-repeat center center;
  background-size: 150% 200%;
}
.l-side-links_insta .svg-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.75rem;
  filter: #FFF;
  color: #FFF;
}
.l-side-links_hp {
  color: #FFF;
  font-family: var(--ff-mgo);
  font-weight: 700;
  letter-spacing: -0.05rem;
}
.l-side-links_hp a {
  background-color: var(--bblue);
}
.l-side-links_hp small {
  width: 100%;
  font-size: 80%;
  font-weight: 500;
  letter-spacing: inherit;
}
@media (hover: hover) {
  .l-side-links {
    transition: var(--hover-trans);
  }
  .l-side-links a:hover {
    opacity: 0.7;
  }
}
